Customizer: Make a string translatable, see [33413].

see #32715.
Built from https://develop.svn.wordpress.org/trunk@33460


git-svn-id: http://core.svn.wordpress.org/trunk@33427 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-07-28 13:25:25 +00:00
parent 5d3fba37f2
commit fd320b5c6e
2 changed files with 2 additions and 2 deletions

View File

@ -764,7 +764,7 @@ final class WP_Customize_Nav_Menus {
<button type="button" class="not-a-button" aria-expanded="false"> <button type="button" class="not-a-button" aria-expanded="false">
<span class="screen-reader-text"><?php <span class="screen-reader-text"><?php
/* translators: %s: Title of a section with menu items */ /* translators: %s: Title of a section with menu items */
printf( 'Toggle section: %s', esc_html( $available_item_type['title'] ) ); ?></span> printf( __( 'Toggle section: %s' ), esc_html( $available_item_type['title'] ) ); ?></span>
<span class="toggle-indicator" aria-hidden="true"></span> <span class="toggle-indicator" aria-hidden="true"></span>
</button> </button>
</h4> </h4>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-beta4-33459'; $wp_version = '4.3-beta4-33460';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.