mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Customize: Fix string translations for singular vs plural after [41812].
Props felipeelia, tobifjellner, SergeyBiryukov. See #42112. Fixes #42170. Built from https://develop.svn.wordpress.org/trunk@41816 git-svn-id: http://core.svn.wordpress.org/trunk@41650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5123283cf7
commit
c1ede53374
@ -414,7 +414,7 @@ final class WP_Customize_Nav_Menus {
|
||||
'page_label' => get_post_type_object( 'page' )->labels->singular_name,
|
||||
/* translators: %s: menu location */
|
||||
'menuLocation' => _x( '(Currently set to: %s)', 'menu' ),
|
||||
'locationsTitle' => _n( 'Menu Location', 'Menu Locations', $num_locations ),
|
||||
'locationsTitle' => 1 === $num_locations ? __( 'Menu Location' ) : __( 'Menu Locations' ),
|
||||
'locationsDescription' => $locations_description,
|
||||
'menuNameLabel' => __( 'Menu Name' ),
|
||||
'newMenuNameDescription' => __( 'If your theme has multiple menus, giving them clear names will help you manage them.' ),
|
||||
@ -584,10 +584,10 @@ final class WP_Customize_Nav_Menus {
|
||||
}
|
||||
|
||||
$this->manager->add_section( 'menu_locations', array(
|
||||
'title' => _nx( 'View Location', 'View All Locations', $num_locations, 'menu locations' ),
|
||||
'title' => 1 === $num_locations ? _x( 'View Location', 'menu locations' ) : _x( 'View All Locations', 'menu locations' ),
|
||||
'panel' => 'nav_menus',
|
||||
'priority' => 30,
|
||||
'description' => $description
|
||||
'description' => $description,
|
||||
) );
|
||||
|
||||
$choices = array( '0' => __( '— Select —' ) );
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-beta1-41815';
|
||||
$wp_version = '4.9-beta1-41816';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user