diff --git a/lib/compat/wordpress-6.5/script-loader.php b/lib/compat/wordpress-6.5/script-loader.php new file mode 100644 index 0000000000000..8f40ca3ffc353 --- /dev/null +++ b/lib/compat/wordpress-6.5/script-loader.php @@ -0,0 +1,101 @@ +query( 'wp-date', 'registered' ) ) { + global $wp_locale; + // Calculate the timezone abbr (EDT, PST) if possible. + $timezone_string = get_option( 'timezone_string', 'UTC' ); + $timezone_abbr = ''; + + if ( ! empty( $timezone_string ) ) { + $timezone_date = new DateTime( 'now', new DateTimeZone( $timezone_string ) ); + $timezone_abbr = $timezone_date->format( 'T' ); + } + + $gmt_offset = get_option( 'gmt_offset', 0 ); + + $scripts->registered['wp-date']->extra['after'] = array( + false, + sprintf( + 'wp.date.setSettings( %s );', + wp_json_encode( + array( + 'l10n' => array( + 'locale' => get_user_locale(), + 'months' => array_values( $wp_locale->month ), + 'monthsShort' => array_values( $wp_locale->month_abbrev ), + 'weekdays' => array_values( $wp_locale->weekday ), + 'weekdaysShort' => array_values( $wp_locale->weekday_abbrev ), + 'meridiem' => (object) $wp_locale->meridiem, + 'relative' => array( + /* translators: %s: Duration. */ + 'future' => __( '%s from now', 'gutenberg' ), + /* translators: %s: Duration. */ + 'past' => __( '%s ago', 'gutenberg' ), + /* translators: One second from or to a particular datetime, e.g., "a second ago" or "a second from now". */ + 's' => __( 'a second', 'gutenberg' ), + /* translators: %s: Duration in seconds from or to a particular datetime, e.g., "4 seconds ago" or "4 seconds from now". */ + 'ss' => __( '%d seconds', 'gutenberg' ), + /* translators: One minute from or to a particular datetime, e.g., "a minute ago" or "a minute from now". */ + 'm' => __( 'a minute', 'gutenberg' ), + /* translators: %s: Duration in minutes from or to a particular datetime, e.g., "4 minutes ago" or "4 minutes from now". */ + 'mm' => __( '%d minutes', 'gutenberg' ), + /* translators: %s: One hour from or to a particular datetime, e.g., "an hour ago" or "an hour from now". */ + 'h' => __( 'an hour', 'gutenberg' ), + /* translators: %s: Duration in hours from or to a particular datetime, e.g., "4 hours ago" or "4 hours from now". */ + 'hh' => __( '%d hours', 'gutenberg' ), + /* translators: %s: One day from or to a particular datetime, e.g., "a day ago" or "a day from now". */ + 'd' => __( 'a day', 'gutenberg' ), + /* translators: %s: Duration in days from or to a particular datetime, e.g., "4 days ago" or "4 days from now". */ + 'dd' => __( '%d days', 'gutenberg' ), + /* translators: %s: One month from or to a particular datetime, e.g., "a month ago" or "a month from now". */ + 'M' => __( 'a month', 'gutenberg' ), + /* translators: %s: Duration in months from or to a particular datetime, e.g., "4 months ago" or "4 months from now". */ + 'MM' => __( '%d months', 'gutenberg' ), + /* translators: %s: One year from or to a particular datetime, e.g., "a year ago" or "a year from now". */ + 'y' => __( 'a year', 'gutenberg' ), + /* translators: %s: Duration in years from or to a particular datetime, e.g., "4 years ago" or "4 years from now". */ + 'yy' => __( '%d years', 'gutenberg' ), + ), + 'startOfWeek' => (int) get_option( 'start_of_week', 0 ), + ), + 'formats' => array( + /* translators: Time format, see https://www.php.net/manual/datetime.format.php */ + 'time' => get_option( 'time_format', __( 'g:i a', 'default' ) ), + /* translators: Date format, see https://www.php.net/manual/datetime.format.php */ + 'date' => get_option( 'date_format', __( 'F j, Y', 'default' ) ), + /* translators: Date/Time format, see https://www.php.net/manual/datetime.format.php */ + 'datetime' => __( 'F j, Y g:i a', 'default' ), + /* translators: Abbreviated date/time format, see https://www.php.net/manual/datetime.format.php */ + 'datetimeAbbreviated' => __( 'M j, Y g:i a', 'default' ), + ), + 'timezone' => array( + 'offset' => (float) $gmt_offset, + 'string' => $timezone_string, + 'abbr' => $timezone_abbr, + 'formattedOffset' => str_replace( array( '.25', '.5', '.75' ), array( ':15', ':30', ':45' ), (string) $gmt_offset ), + ), + ) + ) + ), + ); + } +} + +add_action( 'wp_default_scripts', 'gutenberg_update_wp_date_timezone_settings' ); diff --git a/lib/load.php b/lib/load.php index 38111d9ed5d3d..5f29d9011b9b0 100644 --- a/lib/load.php +++ b/lib/load.php @@ -124,6 +124,7 @@ function gutenberg_is_experiment_enabled( $name ) { // WordPress 6.5 compat. require __DIR__ . '/compat/wordpress-6.5/block-patterns.php'; require __DIR__ . '/compat/wordpress-6.5/class-wp-navigation-block-renderer.php'; +require __DIR__ . '/compat/wordpress-6.5/script-loader.php'; // Experimental features. require __DIR__ . '/experimental/block-editor-settings-mobile.php'; diff --git a/packages/components/src/date-time/time/timezone.tsx b/packages/components/src/date-time/time/timezone.tsx index 9fac1ec094ed8..475b3f96f1973 100644 --- a/packages/components/src/date-time/time/timezone.tsx +++ b/packages/components/src/date-time/time/timezone.tsx @@ -30,7 +30,7 @@ const TimeZone = () => { const zoneAbbr = '' !== timezone.abbr && isNaN( Number( timezone.abbr ) ) ? timezone.abbr - : `UTC${ offsetSymbol }${ timezone.offset }`; + : `UTC${ offsetSymbol }${ timezone.formattedOffset }`; const timezoneDetail = 'UTC' === timezone.string diff --git a/packages/date/src/index.js b/packages/date/src/index.js index 3267f6cce9235..65dd7994e7592 100644 --- a/packages/date/src/index.js +++ b/packages/date/src/index.js @@ -31,9 +31,10 @@ import deprecated from '@wordpress/deprecated'; /** * @typedef TimezoneConfig - * @property {string} offset Offset setting. - * @property {string} string The timezone as a string (e.g., `'America/Los_Angeles'`). - * @property {string} abbr Abbreviation for the timezone. + * @property {string} offset Offset setting. + * @property {string} string The timezone as a string (e.g., `'America/Los_Angeles'`). + * @property {string} abbr Abbreviation for the timezone. + * @property {string} formattedOffset Offset setting with decimals formatted to minutes. */ /* eslint-disable jsdoc/valid-types */ @@ -63,8 +64,8 @@ const WP_ZONE = 'WP'; // See: https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC const VALID_UTC_OFFSET = /^[+-][0-1][0-9](:?[0-9][0-9])?$/; -// Changes made here will likely need to be made in `lib/client-assets.php` as -// well because it uses the `setSettings()` function to change these settings. +// Changes made here will likely need to be synced with Core in the file +// src/wp-includes/script-loader.php in `wp_default_packages_inline_scripts()`. /** @type {DateSettings} */ let settings = { l10n: { @@ -132,7 +133,7 @@ let settings = { datetime: 'F j, Y g: i a', datetimeAbbreviated: 'M j, Y g: i a', }, - timezone: { offset: '0', string: '', abbr: '' }, + timezone: { offset: '0', string: '', abbr: '', formattedOffset: '0' }, }; /** diff --git a/packages/editor/src/components/post-schedule/label.js b/packages/editor/src/components/post-schedule/label.js index e2b511ead762b..fa2f8a060e5f7 100644 --- a/packages/editor/src/components/post-schedule/label.js +++ b/packages/editor/src/components/post-schedule/label.js @@ -102,7 +102,7 @@ function getTimezoneAbbreviation() { } const symbol = timezone.offset < 0 ? '' : '+'; - return `UTC${ symbol }${ timezone.offset }`; + return `UTC${ symbol }${ timezone.formattedOffset }`; } function isTimezoneSameAsSiteTimezone( date ) {