Make WordPress Core

Ticket #43803: 43803.2.diff

File 43803.2.diff, 4.9 KB (added by ianbelanger, 8 years ago)
  • src/wp-admin/includes/dashboard.php

     
    11271127                                'https://make.wordpress.org/community/meetups-landing-page',
    11281128                                __( 'Meetups' ),
    11291129                                /* translators: accessibility text */
    1130                                 __( '(opens in a new window)' )
     1130                                __( '(opens in a new tab)' )
    11311131                        );
    11321132                ?>
    11331133
     
    11391139                                'https://central.wordcamp.org/schedule/',
    11401140                                __( 'WordCamps' ),
    11411141                                /* translators: accessibility text */
    1142                                 __( '(opens in a new window)' )
     1142                                __( '(opens in a new tab)' )
    11431143                        );
    11441144                ?>
    11451145
     
    11521152                                esc_url( _x( 'https://wordpress.org/news/', 'Events and News dashboard widget' ) ),
    11531153                                __( 'News' ),
    11541154                                /* translators: accessibility text */
    1155                                 __( '(opens in a new window)' )
     1155                                __( '(opens in a new tab)' )
    11561156                        );
    11571157                ?>
    11581158        </p>
  • src/wp-admin/includes/meta-boxes.php

     
    6565        '%1$s<span class="screen-reader-text"> %2$s</span>',
    6666        $preview_button_text,
    6767        /* translators: accessibility text */
    68         __( '(opens in a new window)' )
     68        __( '(opens in a new tab)' )
    6969);
    7070?>
    7171<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

     
    698698                                /* translators: 1: number of stars (used to determine singular/plural), 2: number of reviews */
    699699                                $aria_label = esc_attr(
    700700                                        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 ),
    702702                                                $key,
    703703                                                number_format_i18n( $ratecount )
    704704                                        )
  • src/wp-includes/class-wp-customize-manager.php

     
    42444244                                <label for="{{ elementPrefix }}customize-preview-link-input" class="screen-reader-text"><?php esc_html_e( 'Preview Link' ); ?></label>
    42454245                                <a href="" target="">
    42464246                                        <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>
    42484248                                </a>
    42494249                                <input id="{{ elementPrefix }}customize-preview-link-input" readonly tabindex="-1" class="preview-control-element" data-component="input">
    42504250                                <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>
     
    54635463                        esc_url( __( 'https://codex.wordpress.org/CSS' ) ),
    54645464                        __( 'Learn more about CSS' ),
    54655465                        /* translators: accessibility text */
    5466                         __( '(opens in a new window)' )
     5466                        __( '(opens in a new tab)' )
    54675467                );
    54685468                $section_description .= '</p>';
    54695469
     
    54845484                                sprintf(
    54855485                                        '<span class="screen-reader-text"> %s</span>',
    54865486                                        /* translators: accessibility text */
    5487                                         __( '(opens in a new window)' )
     5487                                        __( '(opens in a new tab)' )
    54885488                                )
    54895489                        );
    54905490                        $section_description .= '</p>';
  • src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php

     
    5454                                                                        sprintf(
    5555                                                                                '<span class="screen-reader-text"> %s</span>',
    5656                                                                                /* translators: accessibility text */
    57                                                                                 __( '(opens in a new window)' )
     57                                                                                __( '(opens in a new tab)' )
    5858                                                                        )
    5959                                                                );
    6060                                                                ?>
  • src/wp-includes/widgets/class-wp-widget-custom-html.php

     
    306306                                sprintf(
    307307                                        '<span class="screen-reader-text"> %s</span>',
    308308                                        /* translators: accessibility text */
    309                                         __( '(opens in a new window)' )
     309                                        __( '(opens in a new tab)' )
    310310                                )
    311311                        );
    312312                        $content .= '</p>';