Changeset 42005
- Timestamp:
- 10/24/2017 10:34:05 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r41987 r42005 290 290 if ( $can_publish ) : 291 291 if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> 292 <input name="original_publish" type="hidden" id="original_publish" value="<?php e sc_attr_e('Schedule')?>" />293 <?php submit_button( _ _( 'Schedule' ), 'primary large', 'publish', false ); ?>292 <input name="original_publish" type="hidden" id="original_publish" value="<?php echo esc_attr_x( 'Schedule', 'post action/button label' ); ?>" /> 293 <?php submit_button( _x( 'Schedule', 'post action/button label' ), 'primary large', 'publish', false ); ?> 294 294 <?php else : ?> 295 295 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" /> -
trunk/src/wp-includes/script-loader.php
r41997 r42005 552 552 'updating' => __( 'Updating' ), 553 553 'schedule' => _x( 'Schedule', 'customizer changeset action/button label' ), 554 'scheduled' => _ _( 'Scheduled' ),554 'scheduled' => _x( 'Scheduled', 'customizer changeset status' ), 555 555 'invalid' => __( 'Invalid' ), 556 556 'saveBeforeShare' => __( 'Please save your changes in order to share the preview.' ),
Note: See TracChangeset
for help on using the changeset viewer.