From ea8635a465a62df53306636729b64b5d5f8146de Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 19 Apr 2014 19:45:14 +0000 Subject: [PATCH] Customizer: Correct reference to the 'Add new image' button. props jjeaton. see #27890, for trunk. Built from https://develop.svn.wordpress.org/trunk@28170 git-svn-id: http://core.svn.wordpress.org/trunk@28001 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-control.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-customize-control.php b/wp-includes/class-wp-customize-control.php index df440744bd..3541ebf98d 100644 --- a/wp-includes/class-wp-customize-control.php +++ b/wp-includes/class-wp-customize-control.php @@ -853,11 +853,11 @@ class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {

Add new, your theme recommends a header size of %s × %s pixels.' ), $width, $height ); + printf( __( 'While you can crop images to your liking after clicking Add new image, your theme recommends a header size of %s × %s pixels.' ), $width, $height ); } elseif ( $width ) { - printf( __( 'While you can crop images to your liking after clicking Add new, your theme recommends a header width of %s pixels.' ), $width ); + printf( __( 'While you can crop images to your liking after clicking Add new image, your theme recommends a header width of %s pixels.' ), $width ); } else { - printf( __( 'While you can crop images to your liking after clicking Add new, your theme recommends a header height of %s pixels.' ), $height ); + printf( __( 'While you can crop images to your liking after clicking Add new image, your theme recommends a header height of %s pixels.' ), $height ); } ?>