Skip to content

Commit

Permalink
Implement more generic pre-publish prompts; fixes #10750. (#11009)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmonster committed Oct 24, 2018
1 parent 0601e79 commit 87ca7af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ function PostPublishPanelPrepublish( {
prePublishBodyText = __( 'When you’re ready, submit your work for review, and an Editor will be able to approve it for you.' );
} else if ( isBeingScheduled ) {
prePublishTitle = __( 'Are you ready to schedule?' );
prePublishBodyText = __( 'Your post will be published at the specified date and time.' );
prePublishBodyText = __( 'Your work will be published at the specified date and time.' );
} else {
prePublishTitle = __( 'Are you ready to publish?' );
prePublishBodyText = __( 'Double-check your settings, then use the button to publish your post.' );
prePublishBodyText = __( 'Double-check your settings before publishing.' );
}

return (
Expand Down

0 comments on commit 87ca7af

Please sign in to comment.