- Timestamp:
- 08/30/2018 12:35:08 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-header-image-control.php
r43571 r43596 183 183 _e( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image that matches the size of your video — you’ll be able to crop your image once you upload it for a perfect fit.' ); 184 184 } elseif ( $width && $height ) { 185 /* translators: %s: header size in pixels */186 185 printf( 186 /* translators: %s: header size in pixels */ 187 187 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header size of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 188 188 sprintf( '<strong>%s × %s</strong>', $width, $height ) 189 189 ); 190 190 } elseif ( $width ) { 191 /* translators: %s: header width in pixels */192 191 printf( 192 /* translators: %s: header width in pixels */ 193 193 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header width of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 194 194 sprintf( '<strong>%s</strong>', $width ) 195 195 ); 196 196 } else { 197 /* translators: %s: header height in pixels */198 197 printf( 198 /* translators: %s: header height in pixels */ 199 199 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header height of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 200 200 sprintf( '<strong>%s</strong>', $height )
Note: See TracChangeset
for help on using the changeset viewer.