Make WordPress Core


Ignore:
Timestamp:
09/10/2015 08:29:18 PM (9 years ago)
Author:
wonderboymusic
Message:

After [33970], swap UTF-8 characters for their \u2026 escape sequence.

See #32875.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/script-loader.php

    r33970 r34013  
    565565            'ajax_nonce' => wp_create_nonce( 'updates' ),
    566566            'l10n'       => array(
    567                 'updating'          => __( 'Updating' ),
     567                'updating'          => __( 'Updating\u2026' ),
    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\u2026' ),
    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\u2026 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\u2026' ),
    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.