I18N: Add context for Next/Previous strings in the jQuery UI datepicker.
Follow-up to [37849]. Props timse201, anupkankale. Fixes #65005. Built from https://develop.svn.wordpress.org/trunk@62188 git-svn-id: http://core.svn.wordpress.org/trunk@61468 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -2020,8 +2020,8 @@ function wp_localize_jquery_ui_datepicker() {
|
||||
'currentText' => __( 'Today' ),
|
||||
'monthNames' => array_values( $wp_locale->month ),
|
||||
'monthNamesShort' => array_values( $wp_locale->month_abbrev ),
|
||||
'nextText' => __( 'Next' ),
|
||||
'prevText' => __( 'Previous' ),
|
||||
'nextText' => _x( 'Next', 'datepicker: navigate to next month' ),
|
||||
'prevText' => _x( 'Previous', 'datepicker: navigate to previous month' ),
|
||||
'dayNames' => array_values( $wp_locale->weekday ),
|
||||
'dayNamesShort' => array_values( $wp_locale->weekday_abbrev ),
|
||||
'dayNamesMin' => array_values( $wp_locale->weekday_initial ),
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '7.1-alpha-62187';
|
||||
$wp_version = '7.1-alpha-62188';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
||||
Reference in New Issue
Block a user