Make WordPress Core

Changeset 33970


Ignore:
Timestamp:
09/09/2015 04:38:31 AM (10 years ago)
Author:
wonderboymusic
Message:

Round 2 of: We should use ellipses … / … instead of three dots/periods ... e.g Loading… not Loading...

Props yoavf.
Fixes #32875.

Location:
trunk/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-press-this.php

    r33734 r33970  
    14961496                    <button type="button" class="publish-button split-button-primary" aria-live="polite">
    14971497                        <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&hellip;' ); ?></span>
    14991499                    </button><button type="button" class="split-button-toggle" aria-haspopup="true" aria-expanded="false">
    15001500                        <i class="dashicons dashicons-arrow-down-alt2"></i>
  • trunk/src/wp-admin/includes/post.php

    r33773 r33970  
    15861586            <p class="wp-tab-first" tabindex="0">
    15871587            <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&hellip;'); ?></span>
    15891589            <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span>
    15901590            </p>
  • trunk/src/wp-admin/theme-install.php

    r33153 r33970  
    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' ),
  • trunk/src/wp-admin/themes.php

    r33866 r33970  
    138138        'addNew'            => __( 'Add New Theme' ),
    139139        'search'            => __( 'Search Installed Themes' ),
    140         'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis)
     140        'searchPlaceholder' => __( 'Search installed themes&hellip;' ), // placeholder (no ellipsis)
    141141        'themesFound'       => __( 'Number of Themes found: %d' ),
    142142        'noThemesFound'     => __( 'No themes found. Try a different search.' ),
  • trunk/src/wp-includes/class-wp-customize-manager.php

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

    r33282 r33970  
    438438                <?php if ( count( $this->controls ) > 4 ) : ?>
    439439                    <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&hellip;' ); ?></span>
     441                        <input type="text" id="themes-filter" placeholder="<?php esc_attr_e( 'Search installed themes&hellip;' ); ?>" />
    442442                    </label></p>
    443443                <?php endif; ?>
  • trunk/src/wp-includes/class-wp-editor.php

    r33835 r33970  
    927927            'Color' => __( 'Color' ),
    928928            'Custom color' => __( 'Custom color' ),
    929             'Custom...' => _x( 'Custom...', 'label for custom color' ),
     929            'Custom…' => _x( 'Custom…', 'label for custom color' ),
    930930            'No color' => __( 'No color' ),
    931931
     
    10291029            'Insert Read More tag' => __( 'Insert Read More tag' ),
    10301030            'Insert Page Break tag' => __( 'Insert Page Break tag' ),
    1031             'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
     1031            'Read more…' => __( 'Read more…' ), // Title on the placeholder inside the editor
    10321032            'Distraction-free writing mode' => __( 'Distraction-free writing mode' ),
    10331033            'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
  • trunk/src/wp-includes/script-loader.php

    r33902 r33970  
    565565            'ajax_nonce' => wp_create_nonce( 'updates' ),
    566566            'l10n'       => array(
    567                 'updating'          => __( 'Updating...' ),
     567                'updating'          => __( 'Updating' ),
    568568                'updated'           => __( 'Updated!' ),
    569569                /* translators: Error string for a failed update */
    570570                'updateFailed'      => __( 'Update Failed: %s' ),
    571571                /* translators: Plugin name and version */
    572                 'updatingLabel'     => __( 'Updating %s...' ),
     572                'updatingLabel'     => __( 'Updating %s' ),
    573573                /* translators: Plugin name and version */
    574574                'updatedLabel'      => __( '%s updated!' ),
     
    576576                'updateFailedLabel' => __( '%s update failed' ),
    577577                /* translators: JavaScript accessible string */
    578                 'updatingMsg'       => __( 'Updating... please wait.' ),
     578                'updatingMsg'       => __( 'Updating please wait.' ),
    579579                /* translators: JavaScript accessible string */
    580580                'updatedMsg'        => __( 'Update completed successfully.' ),
     
    614614        did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array(
    615615            'setThumbnail' => __( 'Use as featured image' ),
    616             'saving' => __( 'Saving...' ),
     616            'saving' => __( 'Saving' ),
    617617            'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ),
    618618            'done' => __( 'Done' )
Note: See TracChangeset for help on using the changeset viewer.