diff --git a/src/wp-includes/class-wp-customize-section.php b/src/wp-includes/class-wp-customize-section.php
index 2c4db4ef4b..82541878ba 100644
--- a/src/wp-includes/class-wp-customize-section.php
+++ b/src/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;
}
?>