Ticket #43803: 43803.2.diff
| File 43803.2.diff, 4.9 KB (added by , 8 years ago) |
|---|
-
src/wp-admin/includes/dashboard.php
1127 1127 'https://make.wordpress.org/community/meetups-landing-page', 1128 1128 __( 'Meetups' ), 1129 1129 /* translators: accessibility text */ 1130 __( '(opens in a new window)' )1130 __( '(opens in a new tab)' ) 1131 1131 ); 1132 1132 ?> 1133 1133 … … 1139 1139 'https://central.wordcamp.org/schedule/', 1140 1140 __( 'WordCamps' ), 1141 1141 /* translators: accessibility text */ 1142 __( '(opens in a new window)' )1142 __( '(opens in a new tab)' ) 1143 1143 ); 1144 1144 ?> 1145 1145 … … 1152 1152 esc_url( _x( 'https://wordpress.org/news/', 'Events and News dashboard widget' ) ), 1153 1153 __( 'News' ), 1154 1154 /* translators: accessibility text */ 1155 __( '(opens in a new window)' )1155 __( '(opens in a new tab)' ) 1156 1156 ); 1157 1157 ?> 1158 1158 </p> -
src/wp-admin/includes/meta-boxes.php
65 65 '%1$s<span class="screen-reader-text"> %2$s</span>', 66 66 $preview_button_text, 67 67 /* translators: accessibility text */ 68 __( '(opens in a new window)' )68 __( '(opens in a new tab)' ) 69 69 ); 70 70 ?> 71 71 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview-<?php echo (int) $post->ID; ?>" id="post-preview"><?php echo $preview_button; ?></a> -
src/wp-admin/includes/plugin-install.php
698 698 /* translators: 1: number of stars (used to determine singular/plural), 2: number of reviews */ 699 699 $aria_label = esc_attr( 700 700 sprintf( 701 _n( 'Reviews with %1$d star: %2$s. Opens in a new window.', 'Reviews with %1$d stars: %2$s. Opens in a new window.', $key ),701 _n( 'Reviews with %1$d star: %2$s. Opens in a new tab.', 'Reviews with %1$d stars: %2$s. Opens in a new tab.', $key ), 702 702 $key, 703 703 number_format_i18n( $ratecount ) 704 704 ) -
src/wp-includes/class-wp-customize-manager.php
4244 4244 <label for="{{ elementPrefix }}customize-preview-link-input" class="screen-reader-text"><?php esc_html_e( 'Preview Link' ); ?></label> 4245 4245 <a href="" target=""> 4246 4246 <span class="preview-control-element" data-component="url"></span> 4247 <span class="screen-reader-text"><?php _e( '(opens in a new window)' ); ?></span>4247 <span class="screen-reader-text"><?php _e( '(opens in a new tab)' ); ?></span> 4248 4248 </a> 4249 4249 <input id="{{ elementPrefix }}customize-preview-link-input" readonly tabindex="-1" class="preview-control-element" data-component="input"> 4250 4250 <button class="customize-copy-preview-link preview-control-element button button-secondary" data-component="button" data-copy-text="<?php esc_attr_e( 'Copy' ); ?>" data-copied-text="<?php esc_attr_e( 'Copied' ); ?>" ><?php esc_html_e( 'Copy' ); ?></button> … … 5463 5463 esc_url( __( 'https://codex.wordpress.org/CSS' ) ), 5464 5464 __( 'Learn more about CSS' ), 5465 5465 /* translators: accessibility text */ 5466 __( '(opens in a new window)' )5466 __( '(opens in a new tab)' ) 5467 5467 ); 5468 5468 $section_description .= '</p>'; 5469 5469 … … 5484 5484 sprintf( 5485 5485 '<span class="screen-reader-text"> %s</span>', 5486 5486 /* translators: accessibility text */ 5487 __( '(opens in a new window)' )5487 __( '(opens in a new tab)' ) 5488 5488 ) 5489 5489 ); 5490 5490 $section_description .= '</p>'; -
src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
54 54 sprintf( 55 55 '<span class="screen-reader-text"> %s</span>', 56 56 /* translators: accessibility text */ 57 __( '(opens in a new window)' )57 __( '(opens in a new tab)' ) 58 58 ) 59 59 ); 60 60 ?> -
src/wp-includes/widgets/class-wp-widget-custom-html.php
306 306 sprintf( 307 307 '<span class="screen-reader-text"> %s</span>', 308 308 /* translators: accessibility text */ 309 __( '(opens in a new window)' )309 __( '(opens in a new tab)' ) 310 310 ) 311 311 ); 312 312 $content .= '</p>';