Changeset 45932 for trunk/src/wp-includes/media-template.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media-template.php
r45926 r45932 164 164 165 165 $alt_text_description = sprintf( 166 /* translators: 1: link to tutorial, 2: additional link attributes, 3: accessibility text*/166 /* translators: 1: Link to tutorial, 2: Additional link attributes, 3: Accessibility text. */ 167 167 __( '<a href="%1$s" %2$s>Describe the purpose of the image%3$s</a>. Leave empty if the image is purely decorative.' ), 168 168 esc_url( 'https://www.w3.org/WAI/tutorials/images/decision-tree' ), … … 170 170 sprintf( 171 171 '<span class="screen-reader-text"> %s</span>', 172 /* translators: accessibility text*/172 /* translators: Accessibility text. */ 173 173 __( '(opens in a new tab)' ) 174 174 ) … … 276 276 <?php 277 277 printf( 278 /* translators: %s: maximum allowed file size*/278 /* translators: %s: Maximum allowed file size. */ 279 279 __( 'Maximum upload file size: %s.' ), 280 280 esc_html( size_format( $max_upload_size ) ) … … 286 286 <p class="suggested-dimensions"> 287 287 <?php 288 /* translators: 1: suggested width number, 2: suggested height number. */288 /* translators: 1: Suggested width number, 2: Suggested height number. */ 289 289 printf( __( 'Suggested image dimensions: %1$s by %2$s pixels.' ), '{{data.suggestedWidth}}', '{{data.suggestedHeight}}' ); 290 290 ?> … … 408 408 <div class="dimensions"><strong><?php _e( 'Dimensions:' ); ?></strong> 409 409 <?php 410 /* translators: 1: a number of pixels wide, 2: anumber of pixels tall. */410 /* translators: 1: A number of pixels wide, 2: A number of pixels tall. */ 411 411 printf( __( '%1$s by %2$s pixels' ), '{{ data.width }}', '{{ data.height }}' ); 412 412 ?> … … 598 598 <div class="dimensions"> 599 599 <?php 600 /* translators: 1: a number of pixels wide, 2: anumber of pixels tall. */600 /* translators: 1: A number of pixels wide, 2: A number of pixels tall. */ 601 601 printf( __( '%1$s by %2$s pixels' ), '{{ data.width }}', '{{ data.height }}' ); 602 602 ?>
Note: See TracChangeset
for help on using the changeset viewer.