Skip to content
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

Post Editor: Revert "Save" button to "Update" #63399

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Modified post editor button name
  • Loading branch information
rohitmathur-7 committed Jul 11, 2024
commit 66d12c9f2631dee3d456e091a366649eab7a50d9
4 changes: 2 additions & 2 deletions packages/editor/src/components/post-publish-button/label.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function PublishButtonLabel() {
! isAutosaving
) {
/* translators: button label text should, if possible, be under 16 characters. */
return __( 'Saving…' );
return __( 'Updating…' );
}
if ( ! hasPublishAction ) {
// TODO: this is because "Submit for review" string is too long in some languages.
Expand All @@ -79,7 +79,7 @@ export default function PublishButtonLabel() {
! [ 'future', 'publish' ].includes( postStatus ) ) ||
( ! postStatusHasChanged && postStatus === 'future' )
) {
return __( 'Save' );
return __( 'Update' );
}
if ( isBeingScheduled ) {
return __( 'Schedule' );
Expand Down
Loading