Administration: Change all the occurrences of "(opens in a new window)" to "(opens in a new tab)".

Props chetan200891, ianbelanger, afercia.
Fixes #43803.

git-svn-id: https://develop.svn.wordpress.org/trunk@43174 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2018-05-05 09:44:21 +00:00
parent b7f30ca067
commit 6d2bcaa9b3
8 changed files with 13 additions and 13 deletions

View File

@@ -1127,7 +1127,7 @@ function wp_dashboard_events_news() {
'https://make.wordpress.org/community/meetups-landing-page',
__( 'Meetups' ),
/* translators: accessibility text */
__( '(opens in a new window)' )
__( '(opens in a new tab)' )
);
?>
@@ -1139,7 +1139,7 @@ function wp_dashboard_events_news() {
'https://central.wordcamp.org/schedule/',
__( 'WordCamps' ),
/* translators: accessibility text */
__( '(opens in a new window)' )
__( '(opens in a new tab)' )
);
?>
@@ -1152,7 +1152,7 @@ function wp_dashboard_events_news() {
esc_url( _x( 'https://wordpress.org/news/', 'Events and News dashboard widget' ) ),
__( 'News' ),
/* translators: accessibility text */
__( '(opens in a new window)' )
__( '(opens in a new tab)' )
);
?>
</p>

View File

@@ -65,7 +65,7 @@ $preview_button = sprintf(
'%1$s<span class="screen-reader-text"> %2$s</span>',
$preview_button_text,
/* translators: accessibility text */
__( '(opens in a new window)' )
__( '(opens in a new tab)' )
);
?>
<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>

View File

@@ -706,7 +706,7 @@ if ( ! empty( $api->ratings ) && array_sum( (array) $api->ratings ) > 0 ) {
/* translators: 1: number of stars (used to determine singular/plural), 2: number of reviews */
$aria_label = esc_attr(
sprintf(
_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 ),
_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 ),
$key,
number_format_i18n( $ratecount )
)