Ticket #32875: 32875.diff
File 32875.diff, 7.5 KB (added by , 10 years ago) |
---|
-
src/wp-admin/includes/class-wp-press-this.php
1466 1466 <div class="split-button-head"> 1467 1467 <button type="button" class="publish-button split-button-primary" aria-live="polite"> 1468 1468 <span class="publish"><?php echo ( current_user_can( 'publish_posts' ) ) ? __( 'Publish' ) : __( 'Submit for Review' ); ?></span> 1469 <span class="saving-draft"><?php _e( 'Saving ...' ); ?></span>1469 <span class="saving-draft"><?php _e( 'Saving…' ); ?></span> 1470 1470 </button><button type="button" class="split-button-toggle" aria-haspopup="true" aria-expanded="false"> 1471 1471 <i class="dashicons dashicons-arrow-down-alt2"></i> 1472 1472 <span class="screen-reader-text"><?php _e('More actions'); ?></span> -
src/wp-admin/includes/post.php
1582 1582 <div class="post-locked-avatar"></div> 1583 1583 <p class="wp-tab-first" tabindex="0"> 1584 1584 <span class="currently-editing"></span><br /> 1585 <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>1585 <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> 1586 1586 <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span> 1587 1587 </p> 1588 1588 <?php -
src/wp-admin/theme-install.php
45 45 'l10n' => array( 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' ), 51 51 'error' => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ), -
src/wp-admin/themes.php
110 110 'l10n' => array( 111 111 'addNew' => __( 'Add New Theme' ), 112 112 'search' => __( 'Search Installed Themes' ), 113 'searchPlaceholder' => __( 'Search installed themes ...' ), // placeholder (no ellipsis)113 'searchPlaceholder' => __( 'Search installed themes…' ), // placeholder (no ellipsis) 114 114 'themesFound' => __( 'Number of Themes found: %d' ), 115 115 'noThemesFound' => __( 'No themes found. Try a different search.' ), 116 116 ), -
src/wp-includes/class-wp-customize-manager.php
627 627 'activeSections' => array(), 628 628 'activeControls' => array(), 629 629 'l10n' => array( 630 'loading' => __( 'Loading ...' ),630 'loading' => __( 'Loading…' ), 631 631 ), 632 632 ); 633 633 -
src/wp-includes/class-wp-customize-section.php
431 431 <div id="customize-container"></div> 432 432 <?php if ( count( $this->controls ) > 4 ) : ?> 433 433 <p><label for="themes-filter"> 434 <span class="screen-reader-text"><?php _e( 'Search installed themes ...' ); ?></span>435 <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes ...' ); ?>" />434 <span class="screen-reader-text"><?php _e( 'Search installed themes…' ); ?></span> 435 <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes…' ); ?>" /> 436 436 </label></p> 437 437 <?php endif; ?> 438 438 <div class="theme-browser rendered"> -
src/wp-includes/class-wp-editor.php
920 920 921 921 'Color' => __( 'Color' ), 922 922 'Custom color' => __( 'Custom color' ), 923 'Custom ...' => _x( 'Custom...', 'label for custom color' ),923 'Custom…' => _x( 'Custom…', 'label for custom color' ), 924 924 'No color' => __( 'No color' ), 925 925 926 926 // Spelling, search/replace plugins … … 1022 1022 'Toolbar Toggle' => __( 'Toolbar Toggle' ), 1023 1023 'Insert Read More tag' => __( 'Insert Read More tag' ), 1024 1024 'Insert Page Break tag' => __( 'Insert Page Break tag' ), 1025 'Read more ...' => __( 'Read more...' ), // Title on the placeholder inside the editor1025 'Read more…' => __( 'Read more…' ), // Title on the placeholder inside the editor 1026 1026 'Distraction-free writing mode' => __( 'Distraction-free writing mode' ), 1027 1027 'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar 1028 1028 'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar -
src/wp-includes/script-loader.php
549 549 did_action( 'init' ) && $scripts->localize( 'updates', '_wpUpdatesSettings', array( 550 550 'ajax_nonce' => wp_create_nonce( 'updates' ), 551 551 'l10n' => array( 552 'updating' => __( 'Updating ...' ),552 'updating' => __( 'Updating…' ), 553 553 'updated' => __( 'Updated!' ), 554 554 /* translators: Error string for a failed update */ 555 555 'updateFailed' => __( 'Update Failed: %s' ), 556 556 /* translators: Plugin name and version */ 557 'updatingLabel' => __( 'Updating %s ...' ),557 'updatingLabel' => __( 'Updating %s…' ), 558 558 /* translators: Plugin name and version */ 559 559 'updatedLabel' => __( '%s updated!' ), 560 560 /* translators: Plugin name and version */ 561 561 'updateFailedLabel' => __( '%s update failed' ), 562 562 /* translators: JavaScript accessible string */ 563 'updatingMsg' => __( 'Updating ...please wait.' ),563 'updatingMsg' => __( 'Updating… please wait.' ), 564 564 /* translators: JavaScript accessible string */ 565 565 'updatedMsg' => __( 'Update completed successfully.' ), 566 566 /* translators: JavaScript accessible string */ … … 598 598 $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 ); 599 599 did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( 600 600 'setThumbnail' => __( 'Use as featured image' ), 601 'saving' => __( 'Saving ...' ),601 'saving' => __( 'Saving…' ), 602 602 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), 603 603 'done' => __( 'Done' ) 604 604 ) );