Customize: Add missing word in error message about already published changesets.

Introduced in [41626].

Fixes #42144.


git-svn-id: https://develop.svn.wordpress.org/trunk@41790 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pascal Birchler 2017-10-08 09:24:21 +00:00
parent 938d225f96
commit 17e5b0f5b8

View File

@ -2489,7 +2489,7 @@ final class WP_Customize_Manager {
if ( 'publish' === $existing_status || 'trash' === $existing_status ) {
return new WP_Error(
'changeset_already_published',
__( 'The previous set of changes already been published. Please try saving your current set of changes again.' ),
__( 'The previous set of changes has already been published. Please try saving your current set of changes again.' ),
array(
'next_changeset_uuid' => wp_generate_uuid4(),
)