Ticket #44360: 44360.wp-admin-includes-image-edit.php.diff
File 44360.wp-admin-includes-image-edit.php.diff, 847 bytes (added by , 6 years ago) |
---|
-
wp-admin/includes/image-edit.php
57 57 <p><?php _e( 'You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.' ); ?></p> 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><?php printf( 61 /* translators: Original Dimensions %s: 1: width 2: times 3: height */ 62 __( 'Original dimensions %s' ), $meta['width'] . ' × ' . $meta['height'] ); ?></p> 61 63 <?php endif ?> 62 64 <div class="imgedit-submit"> 63 65