diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index b80853f664..1c954d04ec 100644
|
a
|
b
|
function wp_localize_jquery_ui_datepicker() { |
| 2020 | 2020 | 'currentText' => __( 'Today' ), |
| 2021 | 2021 | 'monthNames' => array_values( $wp_locale->month ), |
| 2022 | 2022 | 'monthNamesShort' => array_values( $wp_locale->month_abbrev ), |
| 2023 | | 'nextText' => __( 'Next' ), |
| 2024 | | 'prevText' => __( 'Previous' ), |
| | 2023 | 'nextText' => _x( 'Next', 'datepicker: navigate to next month' ), |
| | 2024 | 'prevText' => _x( 'Previous', 'datepicker: navigate to previous month' ), |
| 2025 | 2025 | 'dayNames' => array_values( $wp_locale->weekday ), |
| 2026 | 2026 | 'dayNamesShort' => array_values( $wp_locale->weekday_abbrev ), |
| 2027 | 2027 | 'dayNamesMin' => array_values( $wp_locale->weekday_initial ), |