I18N: Add a context for "Schedule" string.
Props Mirucon. Fixes #42165. Built from https://develop.svn.wordpress.org/trunk@41898 git-svn-id: http://core.svn.wordpress.org/trunk@41732 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0c73d35816
commit
97bab0459a
|
@ -4535,7 +4535,7 @@ final class WP_Customize_Manager {
|
|||
if ( $current_user_can_publish ) {
|
||||
$status_choices[] = array(
|
||||
'status' => 'future',
|
||||
'label' => __( 'Schedule' ),
|
||||
'label' => _x( 'Schedule', 'customizer status' ),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -550,7 +550,7 @@ function wp_default_scripts( &$scripts ) {
|
|||
'saveDraft' => __( 'Save Draft' ),
|
||||
'draftSaved' => __( 'Draft Saved' ),
|
||||
'updating' => __( 'Updating' ),
|
||||
'schedule' => __( 'Schedule' ),
|
||||
'schedule' => _x( 'Schedule', 'customizer status' ),
|
||||
'scheduled' => __( 'Scheduled' ),
|
||||
'invalid' => __( 'Invalid' ),
|
||||
'saveBeforeShare' => __( 'Please save your changes in order to share the preview.' ),
|
||||
|
@ -676,7 +676,7 @@ function wp_default_scripts( &$scripts ) {
|
|||
'showcomm' => __('Show more comments'),
|
||||
'endcomm' => __('No more comments found.'),
|
||||
'publish' => __('Publish'),
|
||||
'schedule' => __('Schedule'),
|
||||
'schedule' => _x('Schedule', 'post status'),
|
||||
'update' => __('Update'),
|
||||
'savePending' => __('Save as Pending'),
|
||||
'saveDraft' => __('Save Draft'),
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-beta2-41897';
|
||||
$wp_version = '4.9-beta2-41898';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue