diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
index 7a268ab..1f7632d 100644
|
a
|
b
|
function wp_dashboard_events_news() { |
| 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 | |
| … |
… |
function wp_dashboard_events_news() { |
| 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 | |
| … |
… |
function wp_dashboard_events_news() { |
| 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> |
diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php
index f9e4701..a8d39ec 100644
|
a
|
b
|
$preview_button = sprintf( |
| 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> |
diff --git a/src/wp-admin/includes/plugin-install.php b/src/wp-admin/includes/plugin-install.php
index 445412d..9b1052b 100644
|
a
|
b
|
if ( ! empty( $api->ratings ) && array_sum( (array) $api->ratings ) > 0 ) { |
| 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 | ) |
diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php
index db21cb3..6da71a1 100644
|
a
|
b
|
final class WP_Customize_Manager { |
| 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> |
| … |
… |
final class WP_Customize_Manager { |
| 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 | |
| … |
… |
final class WP_Customize_Manager { |
| 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>'; |
diff --git a/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php b/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
index 2fda036..f6474f6 100644
|
a
|
b
|
class WP_Customize_Nav_Menu_Locations_Control extends WP_Customize_Control { |
| 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 | ?> |
diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php
index 89203d7..826f41c 100644
|
a
|
b
|
function comments_popup_script() { |
| 3745 | 3745 | } |
| 3746 | 3746 | |
| 3747 | 3747 | /** |
| 3748 | | * Adds element attributes to open links in new windows. |
| | 3748 | * Adds element attributes to open links in new tabs. |
| 3749 | 3749 | * |
| 3750 | 3750 | * @since 0.71 |
| 3751 | 3751 | * @deprecated 4.5.0 |
| 3752 | 3752 | * |
| 3753 | | * @param string $text Content to replace links to open in a new window. |
| | 3753 | * @param string $text Content to replace links to open in a new tab. |
| 3754 | 3754 | * @return string Content that has filtered links. |
| 3755 | 3755 | */ |
| 3756 | 3756 | function popuplinks( $text ) { |
diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php
index 6f9e77c..134d780 100644
|
a
|
b
|
function wp_auth_check_html() { |
| 5630 | 5630 | <div class="wp-auth-fallback"> |
| 5631 | 5631 | <p><b class="wp-auth-fallback-expired" tabindex="0"><?php _e( 'Session expired' ); ?></b></p> |
| 5632 | 5632 | <p><a href="<?php echo esc_url( $login_url ); ?>" target="_blank"><?php _e( 'Please log in again.' ); ?></a> |
| 5633 | | <?php _e( 'The login page will open in a new window. After logging in you can close it and return to this page.' ); ?></p> |
| | 5633 | <?php _e( 'The login page will open in a new tab. After logging in you can close it and return to this page.' ); ?></p> |
| 5634 | 5634 | </div> |
| 5635 | 5635 | </div> |
| 5636 | 5636 | </div> |
diff --git a/src/wp-includes/widgets/class-wp-widget-custom-html.php b/src/wp-includes/widgets/class-wp-widget-custom-html.php
index 068d6f7..9da1791 100644
|
a
|
b
|
class WP_Widget_Custom_HTML extends WP_Widget { |
| 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>'; |