diff --git a/packages/editor/src/components/post-schedule/label.js b/packages/editor/src/components/post-schedule/label.js index b6b4430624763b..e2b511ead762b1 100644 --- a/packages/editor/src/components/post-schedule/label.js +++ b/packages/editor/src/components/post-schedule/label.js @@ -33,7 +33,7 @@ export function getFullPostScheduleLabel( dateAttribute ) { const timezoneAbbreviation = getTimezoneAbbreviation(); const formattedDate = dateI18n( - // translators: If using a space between 'g:i' and 'a', use a non-breaking sapce. + // translators: If using a space between 'g:i' and 'a', use a non-breaking space. _x( 'F j, Y g:i\xa0a', 'post schedule full date format' ), date ); @@ -62,7 +62,7 @@ export function getPostScheduleLabel( return sprintf( // translators: %s: Time of day the post is scheduled for. __( 'Today at %s' ), - // translators: If using a space between 'g:i' and 'a', use a non-breaking sapce. + // translators: If using a space between 'g:i' and 'a', use a non-breaking space. dateI18n( _x( 'g:i\xa0a', 'post schedule time format' ), date ) ); } @@ -74,14 +74,14 @@ export function getPostScheduleLabel( return sprintf( // translators: %s: Time of day the post is scheduled for. __( 'Tomorrow at %s' ), - // translators: If using a space between 'g:i' and 'a', use a non-breaking sapce. + // translators: If using a space between 'g:i' and 'a', use a non-breaking space. dateI18n( _x( 'g:i\xa0a', 'post schedule time format' ), date ) ); } if ( date.getFullYear() === now.getFullYear() ) { return dateI18n( - // translators: If using a space between 'g:i' and 'a', use a non-breaking sapce. + // translators: If using a space between 'g:i' and 'a', use a non-breaking space. _x( 'F j g:i\xa0a', 'post schedule date format without year' ), date );