I18N: Use consistent pattern for placeholder references in a translator comment in `media_upload_max_image_resize()`.
See #43523. git-svn-id: https://develop.svn.wordpress.org/trunk@42984 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
031a90a6b3
commit
b7ab3c7064
|
@ -2872,7 +2872,7 @@ function media_upload_max_image_resize() {
|
|||
<p class="hide-if-no-js"><label>
|
||||
<input name="image_resize" type="checkbox" id="image_resize" value="true"<?php echo $checked; ?> />
|
||||
<?php
|
||||
/* translators: %1$s is link start tag, %2$s is link end tag, %3$d is width, %4$d is height*/
|
||||
/* translators: 1: link start tag, 2: link end tag, 3: width, 4: height */
|
||||
printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).' ), $a, $end, (int) get_option( 'large_size_w', '1024' ), (int) get_option( 'large_size_h', '1024' ) );
|
||||
?>
|
||||
</label></p>
|
||||
|
|
Loading…
Reference in New Issue