I18N: Use a consistent translator comment ("accessibility text") for strings used in aria-label attributes.

See #32000.
Built from https://develop.svn.wordpress.org/trunk@40033


git-svn-id: http://core.svn.wordpress.org/trunk@39970 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2017-01-31 08:55:41 +00:00
parent cb46332a82
commit a6215fd8ac
3 changed files with 5 additions and 5 deletions

View File

@ -57,7 +57,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array(
'noThemesFound' => __( 'No themes found. Try a different search.' ),
'collapseSidebar' => __( 'Collapse Sidebar' ),
'expandSidebar' => __( 'Expand Sidebar' ),
/* translators: hidden accessibility text */
/* translators: accessibility text */
'selectFeatureFilter' => __( 'Select one or more Theme features to filter by' ),
),
'installedThemes' => array_keys( $installed_themes ),

View File

@ -651,11 +651,11 @@ function wp_default_scripts( &$scripts ) {
'updatedLabel' => __( '%s updated!' ),
/* translators: %s: Plugin name and version */
'updateFailedLabel' => __( '%s update failed' ),
/* translators: JavaScript accessible string */
/* translators: Accessibility text */
'updatingMsg' => __( 'Updating... please wait.' ), // No ellipsis.
/* translators: JavaScript accessible string */
/* translators: Accessibility text */
'updatedMsg' => __( 'Update completed successfully.' ),
/* translators: JavaScript accessible string */
/* translators: Accessibility text */
'updateCancel' => __( 'Update canceled.' ),
'beforeunload' => __( 'Updates may not complete if you navigate away from this page.' ),
'installNow' => __( 'Install Now' ),

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.8-alpha-40032';
$wp_version = '4.8-alpha-40033';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.