Changeset 34233
- Timestamp:
- 09/16/2015 11:58:41 AM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r34087 r34233 628 628 'activeControls' => array(), 629 629 'l10n' => array( 630 'loading' => __( 'Loading...' ), 630 'loading' => __( 'Loading...' ), // no ellipsis 631 631 ), 632 632 ); -
trunk/src/wp-includes/class-wp-editor.php
r34087 r34233 927 927 'Color' => __( 'Color' ), 928 928 'Custom color' => __( 'Custom color' ), 929 'Custom...' => _x( 'Custom...', 'label for custom color' ), 929 'Custom...' => _x( 'Custom...', 'label for custom color' ), // no ellipsis 930 930 'No color' => __( 'No color' ), 931 931 … … 1029 1029 'Insert Read More tag' => __( 'Insert Read More tag' ), 1030 1030 '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 (no ellipsis) 1032 1032 'Distraction-free writing mode' => __( 'Distraction-free writing mode' ), 1033 1033 'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar -
trunk/src/wp-includes/script-loader.php
r34087 r34233 565 565 'ajax_nonce' => wp_create_nonce( 'updates' ), 566 566 'l10n' => array( 567 'updating' => __( 'Updating...' ), 567 'updating' => __( 'Updating...' ), // no ellipsis 568 568 'updated' => __( 'Updated!' ), 569 569 /* translators: Error string for a failed update */ 570 570 'updateFailed' => __( 'Update Failed: %s' ), 571 571 /* translators: Plugin name and version */ 572 'updatingLabel' => __( 'Updating %s...' ), 572 'updatingLabel' => __( 'Updating %s...' ), // no ellipsis 573 573 /* translators: Plugin name and version */ 574 574 'updatedLabel' => __( '%s updated!' ), … … 576 576 'updateFailedLabel' => __( '%s update failed' ), 577 577 /* translators: JavaScript accessible string */ 578 'updatingMsg' => __( 'Updating... please wait.' ), 578 'updatingMsg' => __( 'Updating... please wait.' ), // no ellipsis 579 579 /* translators: JavaScript accessible string */ 580 580 'updatedMsg' => __( 'Update completed successfully.' ), … … 614 614 did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( 615 615 'setThumbnail' => __( 'Use as featured image' ), 616 'saving' => __( 'Saving...' ), 616 'saving' => __( 'Saving...' ), // no ellipsis 617 617 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), 618 618 'done' => __( 'Done' )
Note: See TracChangeset
for help on using the changeset viewer.