PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | src/presenters/admin/help-link-presenter.php +3 -2 18.428.5 View file →
@@ -71,9 +71,10 @@
71 71 $new_tab_message = '';
72 72
73 73 if ( $this->opens_in_new_browser_tab ) {
74 74 $target_blank_attribute = ' target="_blank"';
75 - $new_tab_message = ' ' . \__( '(Opens in a new browser tab)', 'wordpress-seo' );
75 + /* translators: Hidden accessibility text. */
76 + $new_tab_message = ' ' . \__( '(Opens in a new browser tab)', 'wordpress-seo' );
76 77 }
77 78
78 79 return \sprintf(
79 80 '<a href="%1$s"%2$s class="yoast_help yoast-help-link dashicons"><span class="yoast-help-icon" aria-hidden="true"></span><span class="screen-reader-text">%3$s</span></a>',
@@ -78,8 +79,8 @@
78 79 return \sprintf(
79 80 '<a href="%1$s"%2$s class="yoast_help yoast-help-link dashicons"><span class="yoast-help-icon" aria-hidden="true"></span><span class="screen-reader-text">%3$s</span></a>',
80 81 \esc_url( $this->link ),
81 82 $target_blank_attribute,
82 - \esc_html( $this->link_text . $new_tab_message )
83 + \esc_html( $this->link_text . $new_tab_message ),
83 84 );
84 85 }
85 86 }