Changeset 43174
- Timestamp:
- 05/05/2018 09:44:21 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r43006 r43174 1128 1128 __( 'Meetups' ), 1129 1129 /* translators: accessibility text */ 1130 __( '(opens in a new window)' )1130 __( '(opens in a new tab)' ) 1131 1131 ); 1132 1132 ?> … … 1140 1140 __( 'WordCamps' ), 1141 1141 /* translators: accessibility text */ 1142 __( '(opens in a new window)' )1142 __( '(opens in a new tab)' ) 1143 1143 ); 1144 1144 ?> … … 1153 1153 __( 'News' ), 1154 1154 /* translators: accessibility text */ 1155 __( '(opens in a new window)' )1155 __( '(opens in a new tab)' ) 1156 1156 ); 1157 1157 ?> -
trunk/src/wp-admin/includes/meta-boxes.php
r42827 r43174 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 ?> -
trunk/src/wp-admin/includes/plugin-install.php
r42998 r43174 707 707 $aria_label = esc_attr( 708 708 sprintf( 709 _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 ),709 _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 ), 710 710 $key, 711 711 number_format_i18n( $ratecount ) -
trunk/src/wp-includes/class-wp-customize-manager.php
r42875 r43174 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"> … … 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>'; … … 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 ); -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
r42343 r43174 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 ); -
trunk/src/wp-includes/deprecated.php
r42710 r43174 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 */ -
trunk/src/wp-includes/functions.php
r43162 r43174 5633 5633 <p><b class="wp-auth-fallback-expired" tabindex="0"><?php _e( 'Session expired' ); ?></b></p> 5634 5634 <p><a href="<?php echo esc_url( $login_url ); ?>" target="_blank"><?php _e( 'Please log in again.' ); ?></a> 5635 <?php _e( 'The login page will open in a new window. After logging in you can close it and return to this page.' ); ?></p>5635 <?php _e( 'The login page will open in a new tab. After logging in you can close it and return to this page.' ); ?></p> 5636 5636 </div> 5637 5637 </div> -
trunk/src/wp-includes/widgets/class-wp-widget-custom-html.php
r42343 r43174 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 );
Note: See TracChangeset
for help on using the changeset viewer.