diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index e164da51bc..42d42b3f87 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -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 ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 79aae4cd43..442d7b8814 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.