Ticket #27890: 27890.diff
File 27890.diff, 1.5 KB (added by , 11 years ago) |
---|
-
wp-includes/class-wp-customize-control.php
853 853 <p class="customizer-section-intro"> 854 854 <?php 855 855 if ( $width && $height ) { 856 printf( __( 'While you can crop images to your liking after clicking <strong>Add new </strong>, your theme recommends a header size of <strong>%s × %s</strong> pixels.' ), $width, $height );856 printf( __( 'While you can crop images to your liking after clicking <strong>Add new image</strong>, your theme recommends a header size of <strong>%s × %s</strong> pixels.' ), $width, $height ); 857 857 } elseif ( $width ) { 858 printf( __( 'While you can crop images to your liking after clicking <strong>Add new </strong>, your theme recommends a header width of <strong>%s</strong> pixels.' ), $width );858 printf( __( 'While you can crop images to your liking after clicking <strong>Add new image</strong>, your theme recommends a header width of <strong>%s</strong> pixels.' ), $width ); 859 859 } else { 860 printf( __( 'While you can crop images to your liking after clicking <strong>Add new </strong>, your theme recommends a header height of <strong>%s</strong> pixels.' ), $height );860 printf( __( 'While you can crop images to your liking after clicking <strong>Add new image</strong>, your theme recommends a header height of <strong>%s</strong> pixels.' ), $height ); 861 861 } 862 862 ?> 863 863 </p>