Make WordPress Core

Ticket #32875: 32875.diff

File 32875.diff, 7.5 KB (added by yoavf, 10 years ago)
  • src/wp-admin/includes/class-wp-press-this.php

     
    14661466                                <div class="split-button-head">
    14671467                                        <button type="button" class="publish-button split-button-primary" aria-live="polite">
    14681468                                                <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&hellip;' ); ?></span>
    14701470                                        </button><button type="button" class="split-button-toggle" aria-haspopup="true" aria-expanded="false">
    14711471                                                <i class="dashicons dashicons-arrow-down-alt2"></i>
    14721472                                                <span class="screen-reader-text"><?php _e('More actions'); ?></span>
  • src/wp-admin/includes/post.php

     
    15821582                        <div class="post-locked-avatar"></div>
    15831583                        <p class="wp-tab-first" tabindex="0">
    15841584                        <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&hellip;'); ?></span>
    15861586                        <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span>
    15871587                        </p>
    15881588                        <?php
  • src/wp-admin/theme-install.php

     
    4545        'l10n' => array(
    4646                'addNew' => __( 'Add New Theme' ),
    4747                'search' => __( 'Search Themes' ),
    48                 'searchPlaceholder' => __( 'Search themes...' ), // placeholder (no ellipsis)
     48                'searchPlaceholder' => __( 'Search themes&hellip;' ), // placeholder (no ellipsis)
    4949                'upload' => __( 'Upload Theme' ),
    5050                'back'   => __( 'Back' ),
    5151                'error'  => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;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

     
    110110        'l10n' => array(
    111111                'addNew'            => __( 'Add New Theme' ),
    112112                'search'            => __( 'Search Installed Themes' ),
    113                 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis)
     113                'searchPlaceholder' => __( 'Search installed themes&hellip;' ), // placeholder (no ellipsis)
    114114                'themesFound'       => __( 'Number of Themes found: %d' ),
    115115                'noThemesFound'     => __( 'No themes found. Try a different search.' ),
    116116        ),
  • src/wp-includes/class-wp-customize-manager.php

     
    627627                        'activeSections' => array(),
    628628                        'activeControls' => array(),
    629629                        'l10n' => array(
    630                                 'loading'  => __( 'Loading ...' ),
     630                                'loading'  => __( 'Loading' ),
    631631                        ),
    632632                );
    633633
  • src/wp-includes/class-wp-customize-section.php

     
    431431                                <div id="customize-container"></div>
    432432                                <?php if ( count( $this->controls ) > 4 ) : ?>
    433433                                        <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&hellip;' ); ?></span>
     435                                                <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes&hellip;' ); ?>" />
    436436                                        </label></p>
    437437                                <?php endif; ?>
    438438                                <div class="theme-browser rendered">
  • src/wp-includes/class-wp-editor.php

     
    920920
    921921                        'Color' => __( 'Color' ),
    922922                        'Custom color' => __( 'Custom color' ),
    923                         'Custom...' => _x( 'Custom...', 'label for custom color' ),
     923                        'Custom…' => _x( 'Custom…', 'label for custom color' ),
    924924                        'No color' => __( 'No color' ),
    925925
    926926                        // Spelling, search/replace plugins
     
    10221022                        'Toolbar Toggle' => __( 'Toolbar Toggle' ),
    10231023                        'Insert Read More tag' => __( 'Insert Read More tag' ),
    10241024                        'Insert Page Break tag' => __( 'Insert Page Break tag' ),
    1025                         'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
     1025                        'Read more…' => __( 'Read more…' ), // Title on the placeholder inside the editor
    10261026                        'Distraction-free writing mode' => __( 'Distraction-free writing mode' ),
    10271027                        'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
    10281028                        'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar
  • src/wp-includes/script-loader.php

     
    549549                did_action( 'init' ) && $scripts->localize( 'updates', '_wpUpdatesSettings', array(
    550550                        'ajax_nonce' => wp_create_nonce( 'updates' ),
    551551                        'l10n'       => array(
    552                                 'updating'          => __( 'Updating...' ),
     552                                'updating'          => __( 'Updating' ),
    553553                                'updated'           => __( 'Updated!' ),
    554554                                /* translators: Error string for a failed update */
    555555                                'updateFailed'      => __( 'Update Failed: %s' ),
    556556                                /* translators: Plugin name and version */
    557                                 'updatingLabel'     => __( 'Updating %s...' ),
     557                                'updatingLabel'     => __( 'Updating %s' ),
    558558                                /* translators: Plugin name and version */
    559559                                'updatedLabel'      => __( '%s updated!' ),
    560560                                /* translators: Plugin name and version */
    561561                                'updateFailedLabel' => __( '%s update failed' ),
    562562                                /* translators: JavaScript accessible string */
    563                                 'updatingMsg'       => __( 'Updating... please wait.' ),
     563                                'updatingMsg'       => __( 'Updating please wait.' ),
    564564                                /* translators: JavaScript accessible string */
    565565                                'updatedMsg'        => __( 'Update completed successfully.' ),
    566566                                /* translators: JavaScript accessible string */
     
    598598                $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 );
    599599                did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array(
    600600                        'setThumbnail' => __( 'Use as featured image' ),
    601                         'saving' => __( 'Saving...' ),
     601                        'saving' => __( 'Saving' ),
    602602                        'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ),
    603603                        'done' => __( 'Done' )
    604604                ) );