Customizer: Make labels of the menu item reorder buttons translatable.

see #32576.
Built from https://develop.svn.wordpress.org/trunk@32888


git-svn-id: http://core.svn.wordpress.org/trunk@32859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-06-20 18:40:25 +00:00
parent 8fe9d04bf9
commit 1d953f8258
2 changed files with 5 additions and 5 deletions

View File

@ -587,10 +587,10 @@ final class WP_Customize_Nav_Menus {
<?php <?php
printf( printf(
'<button type="button" class="menus-move-up">%1$s</button><button type="button" class="menus-move-down">%2$s</button><button type="button" class="menus-move-left">%3$s</button><button type="button" class="menus-move-right">%4$s</button>', '<button type="button" class="menus-move-up">%1$s</button><button type="button" class="menus-move-down">%2$s</button><button type="button" class="menus-move-left">%3$s</button><button type="button" class="menus-move-right">%4$s</button>',
esc_html( 'Move up' ), __( 'Move up' ),
esc_html( 'Move down' ), __( 'Move down' ),
esc_html( 'Move one level up' ), __( 'Move one level up' ),
esc_html( 'Move one level down' ) __( 'Move one level down' )
); );
?> ?>
</div> </div>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-alpha-32887'; $wp_version = '4.3-alpha-32888';
/** /**
* 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.