Skip to content

Commit

Permalink
Fix: #52886 Make all the 'Loading' strings consistent (#52901)
Browse files Browse the repository at this point in the history
* Fix: #52886 Make all the 'Loading' strings consistent

* Updated as per the request
  • Loading branch information
ducksblock committed Aug 13, 2023
1 parent 4f4f8e5 commit b81557b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -100,7 +100,7 @@ function NavigationMenuSelector( {
let selectorLabel = '';

if ( isCreatingMenu || isResolvingNavigationMenus ) {
selectorLabel = __( 'Loading …' );
selectorLabel = __( 'Loading…' );
} else if ( noMenuSelected || noBlockMenus || menuUnavailable ) {
// Note: classic Menus may be available.
selectorLabel = __( 'Choose or create a Navigation menu' );
Expand Down
Expand Up @@ -32,7 +32,7 @@ export default function NavigationPlaceholder( {
}

if ( isResolvingMenus ) {
speak( __( 'Loading Navigation block setup options.' ) );
speak( __( 'Loading navigation block setup options' ) );
}

if ( hasResolvedMenus ) {
Expand Down
Expand Up @@ -157,7 +157,7 @@ export default function SidebarNavigationScreenPages() {
<>
{ ( isLoadingPages || isLoadingTemplates ) && (
<ItemGroup>
<Item>{ __( 'Loading pages' ) }</Item>
<Item>{ __( 'Loading pages' ) }</Item>
</ItemGroup>
) }
{ ! ( isLoadingPages || isLoadingTemplates ) && (
Expand Down
Expand Up @@ -132,7 +132,7 @@ export default function SidebarNavigationScreenPatterns() {
footer={ footer }
content={
<>
{ isLoading && __( 'Loading patterns' ) }
{ isLoading && __( 'Loading patterns' ) }
{ ! isLoading && (
<>
{ ! hasTemplateParts && ! hasPatterns && (
Expand Down
Expand Up @@ -63,7 +63,7 @@ export default function SidebarNavigationScreenTemplates() {
}
content={
<>
{ isLoading && __( 'Loading templates' ) }
{ isLoading && __( 'Loading templates' ) }
{ ! isLoading && (
<ItemGroup>
{ ! templates?.length && (
Expand Down

0 comments on commit b81557b

Please sign in to comment.