Changeset 45926 for trunk/src/wp-admin/includes/image-edit.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image-edit.php
r45616 r45926 58 58 </div> 59 59 <?php if ( isset( $meta['width'], $meta['height'] ) ) : ?> 60 <p><?php printf( __( 'Original dimensions %s' ), $meta['width'] . ' × ' . $meta['height'] ); ?></p> 60 <p> 61 <?php 62 printf( 63 /* translators: %s: image width and height in pixels */ 64 __( 'Original dimensions %s' ), 65 $meta['width'] . ' × ' . $meta['height'] 66 ); 67 ?> 68 </p> 61 69 <?php endif ?> 62 70 <div class="imgedit-submit"> … … 86 94 <div class="imgedit-help"> 87 95 <p> 88 <?php 89 _e( 'Discard any changes and restore the original image.' ); 90 91 if ( ! defined( 'IMAGE_EDIT_OVERWRITE' ) || ! IMAGE_EDIT_OVERWRITE ) { 92 echo ' ' . __( 'Previously edited copies of the image will not be deleted.' ); 93 } 94 95 ?> 96 <?php 97 _e( 'Discard any changes and restore the original image.' ); 98 99 if ( ! defined( 'IMAGE_EDIT_OVERWRITE' ) || ! IMAGE_EDIT_OVERWRITE ) { 100 echo ' ' . __( 'Previously edited copies of the image will not be deleted.' ); 101 } 102 ?> 96 103 </p> 97 104 <div class="imgedit-submit">
Note: See TracChangeset
for help on using the changeset viewer.