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

See #32875.


git-svn-id: https://develop.svn.wordpress.org/trunk@34013 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-09-10 20:29:18 +00:00
parent 9b193ad5a4
commit 8ed569b1ea
3 changed files with 7 additions and 7 deletions

View File

@ -627,7 +627,7 @@ final class WP_Customize_Manager {
'activeSections' => array(),
'activeControls' => array(),
'l10n' => array(
'loading' => __( 'Loading' ),
'loading' => __( 'Loading\u2026' ),
),
);

View File

@ -926,7 +926,7 @@ final class _WP_Editors {
'Color' => __( 'Color' ),
'Custom color' => __( 'Custom color' ),
'Custom…' => _x( 'Custom…', 'label for custom color' ),
'Custom\u2026' => _x( 'Custom\u2026', 'label for custom color' ),
'No color' => __( 'No color' ),
// Spelling, search/replace plugins
@ -1028,7 +1028,7 @@ final class _WP_Editors {
'Toolbar Toggle' => __( 'Toolbar Toggle' ),
'Insert Read More tag' => __( 'Insert Read More tag' ),
'Insert Page Break tag' => __( 'Insert Page Break tag' ),
'Read more…' => __( 'Read more…' ), // Title on the placeholder inside the editor
'Read more\u2026' => __( 'Read more\u2026' ), // Title on the placeholder inside the editor
'Distraction-free writing mode' => __( 'Distraction-free writing mode' ),
'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar

View File

@ -564,18 +564,18 @@ function wp_default_scripts( &$scripts ) {
did_action( 'init' ) && $scripts->localize( 'updates', '_wpUpdatesSettings', array(
'ajax_nonce' => wp_create_nonce( 'updates' ),
'l10n' => array(
'updating' => __( 'Updating' ),
'updating' => __( 'Updating\u2026' ),
'updated' => __( 'Updated!' ),
/* translators: Error string for a failed update */
'updateFailed' => __( 'Update Failed: %s' ),
/* translators: Plugin name and version */
'updatingLabel' => __( 'Updating %s' ),
'updatingLabel' => __( 'Updating %s\u2026' ),
/* translators: Plugin name and version */
'updatedLabel' => __( '%s updated!' ),
/* translators: Plugin name and version */
'updateFailedLabel' => __( '%s update failed' ),
/* translators: JavaScript accessible string */
'updatingMsg' => __( 'Updating please wait.' ),
'updatingMsg' => __( 'Updating\u2026 please wait.' ),
/* translators: JavaScript accessible string */
'updatedMsg' => __( 'Update completed successfully.' ),
/* translators: JavaScript accessible string */
@ -613,7 +613,7 @@ function wp_default_scripts( &$scripts ) {
$scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 );
did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array(
'setThumbnail' => __( 'Use as featured image' ),
'saving' => __( 'Saving' ),
'saving' => __( 'Saving\u2026' ),
'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ),
'done' => __( 'Done' )
) );