-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make 'All pages' view label consistent with template and patterns #59009
Conversation
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Size Change: -9 B (0%) Total Size: 1.7 MB
ℹ️ View Unchanged
|
I check your changes. all looks good. |
Flaky tests detected in 1b245be. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/7932980581
|
@@ -49,7 +49,7 @@ const DEFAULT_PAGE_BASE = { | |||
export const DEFAULT_VIEWS = { | |||
page: [ | |||
{ | |||
title: _x( 'All', 'pages' ), | |||
title: _x( 'All pages', 'pages' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: _x( 'All pages', 'pages' ), | |
title: __( 'All pages' ), |
Context may no longer be necessary.
Note: If you apply this suggestion, you will also need to remove _x
from the import statement to pass the lint check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's true, good suggestion :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
…9009) Co-authored-by: jameskoster <jameskoster@git.wordpress.org> Co-authored-by: oandregal <oandregal@git.wordpress.org> Co-authored-by: t-hamano <wildworks@git.wordpress.org> Co-authored-by: huzaifaalmesbah <huzaifaalmesbah@git.wordpress.org>
I just cherry-picked this PR to the cherry-pick-beta-2 branch to get it included in the next release: 35f7226 |
…9009) Co-authored-by: jameskoster <jameskoster@git.wordpress.org> Co-authored-by: oandregal <oandregal@git.wordpress.org> Co-authored-by: t-hamano <wildworks@git.wordpress.org> Co-authored-by: huzaifaalmesbah <huzaifaalmesbah@git.wordpress.org>
What?
Update the label on the data view for all pages.
Why?
So that it's consistent with patterns and templates.
References