Skip to content

Commit

Permalink
Implement more generic pre-publish prompts; fixes WordPress#10750. (W…
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmonster authored and antpb committed Oct 26, 2018
1 parent 911d266 commit 1724ace
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 1724ace

Please sign in to comment.