-
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
Navigation: Add the draft status to the navigation title #51967
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { __, sprintf } from '@wordpress/i18n'; | ||
import { decodeEntities } from '@wordpress/html-entities'; | ||
|
||
// Copied from packages/block-library/src/navigation/edit/navigation-menu-selector.js. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is tracked here #51446 |
||
export default function buildNavigationLabel( title, id, status ) { | ||
if ( ! title?.rendered ) { | ||
/* translators: %s is the index of the menu in the list of menus. */ | ||
return sprintf( __( '(no title %s)' ), id ); | ||
} | ||
|
||
if ( status === 'publish' ) { | ||
return decodeEntities( title?.rendered ); | ||
} | ||
|
||
return sprintf( | ||
// translators: %1s: title of the menu; %2s: status of the menu (draft, pending, etc.). | ||
__( '%1$s (%2$s)' ), | ||
decodeEntities( title?.rendered ), | ||
status | ||
); | ||
} | ||
Comment on lines
+8
to
+24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not for now but I wonder if in future we could define some of these defaults centrally in packages/core-data/src/entities.js and avoid having to repeat ourselves. |
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.
This is starting to seem strange. It's like we should just pass the entire Post 😄
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.
I did wonder that too