diff --git a/wp-includes/class-wp-customize-section.php b/wp-includes/class-wp-customize-section.php index 2c4db4ef4b..82541878ba 100644 --- a/wp-includes/class-wp-customize-section.php +++ b/wp-includes/class-wp-customize-section.php @@ -401,11 +401,9 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {

manager->is_theme_active() ) { - /* translators: %s: theme name */ - printf( __( 'Active theme %s' ), $this->title ); + echo '' . __( 'Active theme' ) . ' ' . $this->title; } else { - /* translators: %s: theme name */ - printf( __( 'Previewing theme %s' ), $this->title ); + echo '' . __( 'Previewing theme' ) . ' ' . $this->title; } ?> @@ -420,11 +418,9 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {

manager->is_theme_active() ) { - /* translators: %s: theme name */ - printf( __( 'Active theme %s' ), $this->title ); + echo '' . __( 'Active theme' ) . ' ' . $this->title; } else { - /* translators: %s: theme name */ - printf( __( 'Previewing theme %s' ), $this->title ); + echo '' . __( 'Previewing theme' ) . ' ' . $this->title; } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 0b1f5fae93..b111ea1c21 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta1-33077'; +$wp_version = '4.3-beta1-33078'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.