Make WordPress Core


Ignore:
Timestamp:
04/16/2018 06:36:03 PM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Use consistent pattern for placeholder references in a translator comment in media_upload_max_image_resize().

See #43523.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/media.php

    r42875 r42984  
    28732873<input name="image_resize" type="checkbox" id="image_resize" value="true"<?php echo $checked; ?> />
    28742874<?php
    2875     /* translators: %1$s is link start tag, %2$s is link end tag, %3$d is width, %4$d is height*/
     2875    /* translators: 1: link start tag, 2: link end tag, 3: width, 4: height */
    28762876    printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d &times; %4$d).' ), $a, $end, (int) get_option( 'large_size_w', '1024' ), (int) get_option( 'large_size_h', '1024' ) );
    28772877?>
Note: See TracChangeset for help on using the changeset viewer.