Changeset 44417
- Timestamp:
- 01/07/2019 01:48:32 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/updates.js
r43347 r44417 719 719 .removeClass( 'updating-message' ) 720 720 .text( wp.updates.l10n.installNow ) 721 .attr( 'aria-label', wp.updates.l10n. installNowLabel.replace( '%s', pluginName ) );721 .attr( 'aria-label', wp.updates.l10n.pluginInstallNowLabel.replace( '%s', pluginName ) ); 722 722 723 723 wp.a11y.speak( errorMessage, 'assertive' ); … … 1932 1932 .removeClass( 'updating-message' ) 1933 1933 .text( wp.updates.l10n.installNow ) 1934 .attr( 'aria-label', wp.updates.l10n. installNowLabel.replace( '%s', pluginName ) );1934 .attr( 'aria-label', wp.updates.l10n.pluginInstallNowLabel.replace( '%s', pluginName ) ); 1935 1935 1936 1936 wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' ); -
trunk/src/wp-admin/import.php
r43571 r44417 62 62 <?php if ( ! empty( $_GET['invalid'] ) ) : ?> 63 63 <div class="error"> 64 <p><strong><?php _e( 'ERROR:' ); ?></strong> 64 <p><strong><?php _e( 'ERROR:' ); ?></strong> 65 65 <?php 66 66 /* translators: %s: importer slug */ … … 156 156 esc_attr( $data[0] ), 157 157 /* translators: %s: Importer name */ 158 esc_attr( sprintf( __( 'Install %s ' ), $data[0] ) ),158 esc_attr( sprintf( __( 'Install %s now' ), $data[0] ) ), 159 159 __( 'Install Now' ) 160 160 );
Note: See TracChangeset
for help on using the changeset viewer.