Skip to content

Commit

Permalink
Apply i18n functions (#36301)
Browse files Browse the repository at this point in the history
  • Loading branch information
getdave committed Nov 8, 2021
1 parent b9187f0 commit e5c5b82
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -46,7 +46,7 @@ const ExistingMenusDropdown = ( {
>
{ ( { onClose } ) => (
<>
<MenuGroup label="Menus">
<MenuGroup label={ __( 'Menus' ) }>
{ canSwitchNavigationMenu &&
navigationMenus.map( ( menu ) => {
return (
Expand All @@ -63,7 +63,7 @@ const ExistingMenusDropdown = ( {
);
} ) }
</MenuGroup>
<MenuGroup label="Classic Menus">
<MenuGroup label={ __( 'Classic Menus' ) }>
{ menus.map( ( menu ) => {
return (
<MenuItem
Expand Down

0 comments on commit e5c5b82

Please sign in to comment.