Menus: Replace "drop down" (noun) with "dropdown" in a few strings.
This makes the spelling more consistent with other instances of the word in core. Follow-up to [23844], [27676]. Props NekoJonez, mukesh27, SergeyBiryukov. Fixes #55661. Built from https://develop.svn.wordpress.org/trunk@53391 git-svn-id: http://core.svn.wordpress.org/trunk@52980 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3a48bc354d
commit
f4d9778c98
|
@ -624,7 +624,7 @@ if ( ! $locations_screen ) : // Main tab.
|
|||
);
|
||||
|
||||
$menu_management = '<p>' . __( 'The menu management box at the top of the screen is used to control which menu is opened in the editor below.' ) . '</p>';
|
||||
$menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the drop down and click Select</strong>' ) . '</li>';
|
||||
$menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the dropdown and click Select</strong>' ) . '</li>';
|
||||
$menu_management .= '<li>' . __( 'If you have not yet created any menus, <strong>click the ’create a new menu’ link</strong> to get started' ) . '</li></ul>';
|
||||
$menu_management .= '<p>' . __( 'You can assign theme locations to individual menus by <strong>selecting the desired settings</strong> at the bottom of the menu editor. To assign menus to all theme locations at once, <strong>visit the Manage Locations tab</strong> at the top of the screen.' ) . '</p>';
|
||||
|
||||
|
@ -652,7 +652,7 @@ if ( ! $locations_screen ) : // Main tab.
|
|||
);
|
||||
else : // Locations tab.
|
||||
$locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>';
|
||||
$locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location’s drop down.</strong> When you are finished, <strong>click Save Changes</strong>' ) . '</li>';
|
||||
$locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location’s dropdown.</strong> When you are finished, <strong>click Save Changes</strong>' ) . '</li>';
|
||||
$locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent ’Edit’ link</strong>' ) . '</li>';
|
||||
$locations_overview .= '<li>' . __( 'To add a new menu instead of assigning an existing one, <strong>click the ’Use new menu’ link</strong>. Your new menu will be automatically assigned to that theme location' ) . '</li></ul>';
|
||||
|
||||
|
|
|
@ -1204,12 +1204,12 @@ function wp_dropdown_pages( $args = '' ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Filters the HTML output of a list of pages as a drop down.
|
||||
* Filters the HTML output of a list of pages as a dropdown.
|
||||
*
|
||||
* @since 2.1.0
|
||||
* @since 4.4.0 `$parsed_args` and `$pages` added as arguments.
|
||||
*
|
||||
* @param string $output HTML output for drop down list of pages.
|
||||
* @param string $output HTML output for dropdown list of pages.
|
||||
* @param array $parsed_args The parsed arguments array. See wp_dropdown_pages()
|
||||
* for information on accepted arguments.
|
||||
* @param WP_Post[] $pages Array of the page objects.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53390';
|
||||
$wp_version = '6.1-alpha-53391';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue