Changeset 33970
- Timestamp:
- 09/09/2015 04:38:31 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-press-this.php
r33734 r33970 1496 1496 <button type="button" class="publish-button split-button-primary" aria-live="polite"> 1497 1497 <span class="publish"><?php echo ( current_user_can( 'publish_posts' ) ) ? __( 'Publish' ) : __( 'Submit for Review' ); ?></span> 1498 <span class="saving-draft"><?php _e( 'Saving ...' ); ?></span>1498 <span class="saving-draft"><?php _e( 'Saving…' ); ?></span> 1499 1499 </button><button type="button" class="split-button-toggle" aria-haspopup="true" aria-expanded="false"> 1500 1500 <i class="dashicons dashicons-arrow-down-alt2"></i> -
trunk/src/wp-admin/includes/post.php
r33773 r33970 1586 1586 <p class="wp-tab-first" tabindex="0"> 1587 1587 <span class="currently-editing"></span><br /> 1588 <span class="locked-saving hidden"><img src="<?php echo esc_url( admin_url( 'images/spinner-2x.gif' ) ); ?>" width="16" height="16" /> <?php _e('Saving revision ...'); ?></span>1588 <span class="locked-saving hidden"><img src="<?php echo esc_url( admin_url( 'images/spinner-2x.gif' ) ); ?>" width="16" height="16" /> <?php _e('Saving revision…'); ?></span> 1589 1589 <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span> 1590 1590 </p> -
trunk/src/wp-admin/theme-install.php
r33153 r33970 46 46 'addNew' => __( 'Add New Theme' ), 47 47 'search' => __( 'Search Themes' ), 48 'searchPlaceholder' => __( 'Search themes ...' ), // placeholder (no ellipsis)48 'searchPlaceholder' => __( 'Search themes…' ), // placeholder (no ellipsis) 49 49 'upload' => __( 'Upload Theme' ), 50 50 'back' => __( 'Back' ), -
trunk/src/wp-admin/themes.php
r33866 r33970 138 138 'addNew' => __( 'Add New Theme' ), 139 139 'search' => __( 'Search Installed Themes' ), 140 'searchPlaceholder' => __( 'Search installed themes ...' ), // placeholder (no ellipsis)140 'searchPlaceholder' => __( 'Search installed themes…' ), // placeholder (no ellipsis) 141 141 'themesFound' => __( 'Number of Themes found: %d' ), 142 142 'noThemesFound' => __( 'No themes found. Try a different search.' ), -
trunk/src/wp-includes/class-wp-customize-manager.php
r33892 r33970 628 628 'activeControls' => array(), 629 629 'l10n' => array( 630 'loading' => __( 'Loading ...' ),630 'loading' => __( 'Loading…' ), 631 631 ), 632 632 ); -
trunk/src/wp-includes/class-wp-customize-section.php
r33282 r33970 438 438 <?php if ( count( $this->controls ) > 4 ) : ?> 439 439 <p><label for="themes-filter"> 440 <span class="screen-reader-text"><?php _e( 'Search installed themes ...' ); ?></span>441 <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes ...' ); ?>" />440 <span class="screen-reader-text"><?php _e( 'Search installed themes…' ); ?></span> 441 <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes…' ); ?>" /> 442 442 </label></p> 443 443 <?php endif; ?> -
trunk/src/wp-includes/class-wp-editor.php
r33835 r33970 927 927 'Color' => __( 'Color' ), 928 928 'Custom color' => __( 'Custom color' ), 929 'Custom ...' => _x( 'Custom...', 'label for custom color' ),929 'Custom…' => _x( 'Custom…', 'label for custom color' ), 930 930 'No color' => __( 'No color' ), 931 931 … … 1029 1029 'Insert Read More tag' => __( 'Insert Read More tag' ), 1030 1030 'Insert Page Break tag' => __( 'Insert Page Break tag' ), 1031 'Read more ...' => __( 'Read more...' ), // Title on the placeholder inside the editor1031 'Read more…' => __( 'Read more…' ), // Title on the placeholder inside the editor 1032 1032 'Distraction-free writing mode' => __( 'Distraction-free writing mode' ), 1033 1033 'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar -
trunk/src/wp-includes/script-loader.php
r33902 r33970 565 565 'ajax_nonce' => wp_create_nonce( 'updates' ), 566 566 'l10n' => array( 567 'updating' => __( 'Updating ...' ),567 'updating' => __( 'Updating…' ), 568 568 'updated' => __( 'Updated!' ), 569 569 /* translators: Error string for a failed update */ 570 570 'updateFailed' => __( 'Update Failed: %s' ), 571 571 /* translators: Plugin name and version */ 572 'updatingLabel' => __( 'Updating %s ...' ),572 'updatingLabel' => __( 'Updating %s…' ), 573 573 /* translators: Plugin name and version */ 574 574 'updatedLabel' => __( '%s updated!' ), … … 576 576 'updateFailedLabel' => __( '%s update failed' ), 577 577 /* translators: JavaScript accessible string */ 578 'updatingMsg' => __( 'Updating ...please wait.' ),578 'updatingMsg' => __( 'Updating… please wait.' ), 579 579 /* translators: JavaScript accessible string */ 580 580 'updatedMsg' => __( 'Update completed successfully.' ), … … 614 614 did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( 615 615 'setThumbnail' => __( 'Use as featured image' ), 616 'saving' => __( 'Saving ...' ),616 'saving' => __( 'Saving…' ), 617 617 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), 618 618 'done' => __( 'Done' )
Note: See TracChangeset
for help on using the changeset viewer.