Customizer: Make panel title translatable too.
props michalzuber. see #27406. Built from https://develop.svn.wordpress.org/trunk@29135 git-svn-id: http://core.svn.wordpress.org/trunk@28919 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6ef23ea006
commit
d617598716
|
@ -131,7 +131,7 @@ do_action( 'customize_controls_print_scripts' );
|
||||||
/* translators: %s is the theme name in the Customize/Live Preview pane */
|
/* translators: %s is the theme name in the Customize/Live Preview pane */
|
||||||
echo sprintf( __( 'You are previewing %s' ), '<strong class="theme-name">' . $wp_customize->theme()->display('Name') . '</strong>' );
|
echo sprintf( __( 'You are previewing %s' ), '<strong class="theme-name">' . $wp_customize->theme()->display('Name') . '</strong>' );
|
||||||
} else {
|
} else {
|
||||||
/* translators: %s is the site title in the Customize pane */
|
/* translators: %s is the site/panel title in the Customize pane */
|
||||||
echo sprintf( __( 'You are customizing %s' ), '<strong class="theme-name site-title">' . get_bloginfo( 'name' ) . '</strong>' );
|
echo sprintf( __( 'You are customizing %s' ), '<strong class="theme-name site-title">' . get_bloginfo( 'name' ) . '</strong>' );
|
||||||
}
|
}
|
||||||
?></span>
|
?></span>
|
||||||
|
|
|
@ -245,8 +245,8 @@ class WP_Customize_Panel extends WP_Customize_Section {
|
||||||
<li class="accordion-section control-section<?php if ( empty( $this->description ) ) echo ' cannot-expand'; ?>">
|
<li class="accordion-section control-section<?php if ( empty( $this->description ) ) echo ' cannot-expand'; ?>">
|
||||||
<div class="accordion-section-title" tabindex="0">
|
<div class="accordion-section-title" tabindex="0">
|
||||||
<span class="preview-notice"><?php
|
<span class="preview-notice"><?php
|
||||||
/* translators: %s is the panel title in the Customize/Live Preview pane */
|
/* translators: %s is the site/panel title in the Customize pane */
|
||||||
echo sprintf( 'You are customizing %s', '<strong class="panel-title">' . esc_html( $this->title ) . '</strong>' );
|
echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title">' . esc_html( $this->title ) . '</strong>' );
|
||||||
?></span>
|
?></span>
|
||||||
</div>
|
</div>
|
||||||
<?php if ( ! empty( $this->description ) ) : ?>
|
<?php if ( ! empty( $this->description ) ) : ?>
|
||||||
|
|
Loading…
Reference in New Issue