Make WordPress Core

Ticket #47235: 47235.6.diff

File 47235.6.diff, 20.2 KB (added by garrett-eclipse, 4 years ago)

Refresh to remove unintended qunit string changes

  • src/js/_enqueues/vendor/codemirror/csslint.js

     
    83908390
    83918391        });
    83928392
    8393         // Back to normal rules that we don't need to test
     8393        // Go to normal rules that we don't need to test
    83948394        parser.addListener("endfontface", function() {
    83958395            fontFaceRule = false;
    83968396
  • src/js/media/views/attachments/browser.js

     
    126126        }, 200 ),
    127127
    128128        editSelection: function( modal ) {
    129                 // When editing a selection, move focus to the "Return to library" button.
     129                // When editing a selection, move focus to the "Go to library" button.
    130130                modal.$( '.media-button-backToLibrary' ).focus();
    131131        },
    132132
  • src/wp-admin/about.php

     
    270270                <div class="return-to-dashboard">
    271271                        <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
    272272                                <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>">
    273                                         <?php is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard &rarr; Updates' ); ?>
     273                                        <?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard &rarr; Updates' ); ?>
    274274                                </a> |
    275275                        <?php endif; ?>
    276276                        <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
  • src/wp-admin/css/about.css

     
    10101010        width: 100%;
    10111011}
    10121012
    1013 /* Return to Dashboard Home link */
     1013/* Go to Dashboard Home link */
    10141014
    10151015.about-wrap .return-to-dashboard {
    10161016        margin: 30px 0 0 -5px;
  • src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php

     
    4848                        'plugins_page' => sprintf(
    4949                                '<a href="%s" target="_parent">%s</a>',
    5050                                self_admin_url( 'plugins.php' ),
    51                                 __( 'Return to Plugins page' )
     51                                __( 'Go to Plugins page' )
    5252                        ),
    5353                        'updates_page' => sprintf(
    5454                                '<a href="%s" target="_parent">%s</a>',
    5555                                self_admin_url( 'update-core.php' ),
    56                                 __( 'Return to WordPress Updates page' )
     56                                __( 'Go to WordPress Updates page' )
    5757                        ),
    5858                );
    5959
  • src/wp-admin/includes/class-bulk-theme-upgrader-skin.php

     
    4848                        'themes_page'  => sprintf(
    4949                                '<a href="%s" target="_parent">%s</a>',
    5050                                self_admin_url( 'themes.php' ),
    51                                 __( 'Return to Themes page' )
     51                                __( 'Go to Themes page' )
    5252                        ),
    5353                        'updates_page' => sprintf(
    5454                                '<a href="%s" target="_parent">%s</a>',
    5555                                self_admin_url( 'update-core.php' ),
    56                                 __( 'Return to WordPress Updates page' )
     56                                __( 'Go to WordPress Updates page' )
    5757                        ),
    5858                );
    5959
  • src/wp-admin/includes/class-language-pack-upgrader-skin.php

     
    7575                        'updates_page' => sprintf(
    7676                                '<a href="%s" target="_parent">%s</a>',
    7777                                self_admin_url( 'update-core.php' ),
    78                                 __( 'Return to WordPress Updates page' )
     78                                __( 'Go to WordPress Updates page' )
    7979                        ),
    8080                );
    8181
  • src/wp-admin/includes/class-plugin-installer-skin.php

     
    107107                        $install_actions['activate_plugin'] = sprintf(
    108108                                '<a class="button button-primary" href="%s" target="_parent">%s</a>',
    109109                                wp_nonce_url( 'plugins.php?action=activate&amp;from=press-this&amp;plugin=' . urlencode( $plugin_file ), 'activate-plugin_' . $plugin_file ),
    110                                 __( 'Activate Plugin &amp; Return to Press This' )
     110                                __( 'Activate Plugin &amp; Go to Press This' )
    111111                        );
    112112                } else {
    113113                        $install_actions['activate_plugin'] = sprintf(
     
    130130                        $install_actions['importers_page'] = sprintf(
    131131                                '<a href="%s" target="_parent">%s</a>',
    132132                                admin_url( 'import.php' ),
    133                                 __( 'Return to Importers' )
     133                                __( 'Go to Importers' )
    134134                        );
    135135                } elseif ( 'web' === $this->type ) {
    136136                        $install_actions['plugins_page'] = sprintf(
    137137                                '<a href="%s" target="_parent">%s</a>',
    138138                                self_admin_url( 'plugin-install.php' ),
    139                                 __( 'Return to Plugin Installer' )
     139                                __( 'Go to Plugin Installer' )
    140140                        );
    141141                } elseif ( 'upload' === $this->type && 'plugins' === $from ) {
    142142                        $install_actions['plugins_page'] = sprintf(
    143143                                '<a href="%s">%s</a>',
    144144                                self_admin_url( 'plugin-install.php' ),
    145                                 __( 'Return to Plugin Installer' )
     145                                __( 'Go to Plugin Installer' )
    146146                        );
    147147                } else {
    148148                        $install_actions['plugins_page'] = sprintf(
    149149                                '<a href="%s" target="_parent">%s</a>',
    150150                                self_admin_url( 'plugins.php' ),
    151                                 __( 'Return to Plugins page' )
     151                                __( 'Go to Plugins page' )
    152152                        );
    153153                }
    154154
  • src/wp-admin/includes/class-plugin-upgrader-skin.php

     
    9898                        'plugins_page'    => sprintf(
    9999                                '<a href="%s" target="_parent">%s</a>',
    100100                                self_admin_url( 'plugins.php' ),
    101                                 __( 'Return to Plugins page' )
     101                                __( 'Go to Plugins page' )
    102102                        ),
    103103                );
    104104
  • src/wp-admin/includes/class-theme-installer-skin.php

     
    155155                        $install_actions['themes_page'] = sprintf(
    156156                                '<a href="%s" target="_parent">%s</a>',
    157157                                self_admin_url( 'theme-install.php' ),
    158                                 __( 'Return to Theme Installer' )
     158                                __( 'Go to Theme Installer' )
    159159                        );
    160160                } elseif ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) {
    161161                        $install_actions['themes_page'] = sprintf(
    162162                                '<a href="%s" target="_parent">%s</a>',
    163163                                self_admin_url( 'themes.php' ),
    164                                 __( 'Return to Themes page' )
     164                                __( 'Go to Themes page' )
    165165                        );
    166166                }
    167167
  • src/wp-admin/includes/class-theme-upgrader-skin.php

     
    124124                $update_actions['themes_page'] = sprintf(
    125125                        '<a href="%s" target="_parent">%s</a>',
    126126                        self_admin_url( 'themes.php' ),
    127                         __( 'Return to Themes page' )
     127                        __( 'Go to Themes page' )
    128128                );
    129129
    130130                /**
  • src/wp-admin/includes/class-wp-privacy-policy-content.php

     
    424424                                $content .= '</div>';
    425425                        }
    426426
    427                         $content .= '<a href="#wpbody" class="return-to-top"><span aria-hidden="true">&uarr; </span> ' . __( 'Return to top' ) . '</a>';
     427                        $content .= '<a href="#wpbody" class="return-to-top"><span aria-hidden="true">&uarr; </span> ' . __( 'Go to top' ) . '</a>';
    428428
    429429                        $content .= '</div>'; // End of .privacy-text-section.
    430430                }
  • src/wp-admin/includes/network.php

     
    145145                        __( 'You cannot use port numbers such as %s.' ),
    146146                        '<code>' . $has_ports . '</code>'
    147147                ) . '</p>';
    148                 echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Return to Dashboard' ) . '</a>';
     148                echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Go to Dashboard' ) . '</a>';
    149149                echo '</div>';
    150150                require_once ABSPATH . 'wp-admin/admin-footer.php';
    151151                die();
  • src/wp-admin/includes/privacy-tools.php

     
    279279
    280280        if ( $groups_count > 1 ) {
    281281                $group_html .= '<div class="return-to-top">';
    282                 $group_html .= '<a href="#top"><span aria-hidden="true">&uarr; </span> ' . esc_html__( 'Return to top' ) . '</a>';
     282                $group_html .= '<a href="#top"><span aria-hidden="true">&uarr; </span> ' . esc_html__( 'Go to top' ) . '</a>';
    283283                $group_html .= '</div>';
    284284        }
    285285
  • src/wp-admin/revision.php

     
    107107                $post_title     = '<a href="' . $post_edit_link . '">' . _draft_or_post_title() . '</a>';
    108108                /* translators: %s: Post title. */
    109109                $h1             = sprintf( __( 'Compare Revisions of &#8220;%s&#8221;' ), $post_title );
    110                 $return_to_post = '<a href="' . $post_edit_link . '">' . __( '&larr; Return to editor' ) . '</a>';
     110                $return_to_post = '<a href="' . $post_edit_link . '">' . __( '&larr; Go to editor' ) . '</a>';
    111111                $title          = __( 'Revisions' );
    112112
    113113                $redirect = false;
  • src/wp-admin/user-edit.php

     
    198198        <p><strong><?php _e( 'User updated.' ); ?></strong></p>
    199199        <?php endif; ?>
    200200                        <?php if ( $wp_http_referer && false === strpos( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) : ?>
    201         <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '&larr; Back to Users' ); ?></a></p>
     201        <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '&larr; Go to Users' ); ?></a></p>
    202202        <?php endif; ?>
    203203</div>
    204204                <?php endif; ?>
  • src/wp-content/themes/twentyeleven/image.php

     
    3232                                                                        $metadata = wp_get_attachment_metadata();
    3333                                                                        printf(
    3434                                                                                /* translators: 1: Time, 2: Date, 3: Image permalink, 4: Image width, 5: Image height, 6: Parent permalink, 7: Parent post title, 8: Parent post title. */
    35                                                                                 __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>', 'twentyeleven' ),
     35                                                                                __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Go to %7$s" rel="gallery">%8$s</a>', 'twentyeleven' ),
    3636                                                                                esc_attr( get_the_time() ),
    3737                                                                                get_the_date(),
    3838                                                                                esc_url( wp_get_attachment_url() ),
  • src/wp-content/themes/twentyeleven/languages/twentyeleven.pot

     
    441441msgstr ""
    442442
    443443#: image.php:34
    444 msgid "<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s &times; %5$s</a> in <a href=\"%6$s\" title=\"Return to %7$s\" rel=\"gallery\">%8$s</a>"
     444msgid "<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s &times; %5$s</a> in <a href=\"%6$s\" title=\"Go to %7$s\" rel=\"gallery\">%8$s</a>"
    445445msgstr ""
    446446
    447447#: inc/theme-options.php:56 inc/theme-options.php:564
  • src/wp-content/themes/twentyten/languages/twentyten.pot

     
    263263msgstr ""
    264264
    265265#: loop-attachment.php:25
    266 msgid "Return to %s"
     266msgid "Go to %s"
    267267msgstr ""
    268268
    269269#. translators: %s - title of parent post
  • src/wp-content/themes/twentyten/loop-attachment.php

     
    2424                                <?php
    2525                                if ( ! empty( $post->post_parent ) ) :
    2626                                        /* translators: %s: Post title. */
    27                                         $post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) );
     27                                        $post_tile = sprintf( __( 'Go to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) );
    2828                                        ?>
    2929                                        <p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery">
    3030                                                <?php
  • src/wp-content/themes/twentythirteen/image.php

     
    2727                                <div class="entry-meta">
    2828                                        <?php
    2929                                        /* translators: 1: Date, 2: Date, 3, Parent permalink, 4, Post title, 5: Post title. */
    30                                         $published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
     30                                        $published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Go to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
    3131                                        $post_title     = get_the_title( $post->post_parent );
    3232                                        if ( empty( $post_title ) || 0 == $post->post_parent ) {
    3333                                                $published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>';
  • src/wp-content/themes/twentytwelve/image.php

     
    2828                                                                $metadata = wp_get_attachment_metadata();
    2929                                                                printf(
    3030                                                                        /* translators: 1: Date, 2: Date, 3: Attachment URL, 4: Image width in pixels, 5: Image height in pixels, 6: Post parent permalink, 7: Post parent title, 8: Post parent title. */
    31                                                                         __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
     31                                                                        __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Go to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
    3232                                                                        esc_attr( get_the_date( 'c' ) ),
    3333                                                                        esc_html( get_the_date() ),
    3434                                                                        esc_url( wp_get_attachment_url() ),
  • src/wp-includes/customize/class-wp-customize-themes-section.php

     
    121121         */
    122122        protected function filter_bar_content_template() {
    123123                ?>
    124                 <button type="button" class="button button-primary customize-section-back customize-themes-mobile-back"><?php _e( 'Back to theme sources' ); ?></button>
     124                <button type="button" class="button button-primary customize-section-back customize-themes-mobile-back"><?php _e( 'Go to theme sources' ); ?></button>
    125125                <# if ( 'wporg' === data.action ) { #>
    126126                        <div class="search-form">
    127127                                <label for="wp-filter-search-input-{{ data.id }}" class="screen-reader-text"><?php _e( 'Search themes&hellip;' ); ?></label>
  • src/wp-includes/media.php

     
    42394239                'createNewGallery'            => __( 'Create a new gallery' ),
    42404240                'createNewPlaylist'           => __( 'Create a new playlist' ),
    42414241                'createNewVideoPlaylist'      => __( 'Create a new video playlist' ),
    4242                 'returnToLibrary'             => __( '&#8592; Return to library' ),
     4242                'returnToLibrary'             => __( '&#8592; Go to library' ),
    42434243                'allMediaItems'               => __( 'All media items' ),
    42444244                'allDates'                    => __( 'All dates' ),
    42454245                'noItemsFound'                => __( 'No items found.' ),
  • src/wp-includes/ms-functions.php

     
    21612161                wp_die(
    21622162                        sprintf(
    21632163                                /* translators: %s: Home URL. */
    2164                                 __( 'An error occurred adding you to this site. Back to the <a href="%s">homepage</a>.' ),
     2164                                __( 'An error occurred adding you to this site. Go to the <a href="%s">homepage</a>.' ),
    21652165                                home_url()
    21662166                        )
    21672167                );
  • src/wp-includes/taxonomy.php

     
    139139                                'separate_items_with_commas' => null,
    140140                                'add_or_remove_items'        => null,
    141141                                'choose_from_most_used'      => null,
    142                                 'back_to_items'              => __( '&larr; Back to Link Categories' ),
     142                                'back_to_items'              => __( '&larr; Go to Link Categories' ),
    143143                        ),
    144144                        'capabilities' => array(
    145145                                'manage_terms' => 'manage_links',
     
    604604                'items_list'                 => array( __( 'Tags list' ), __( 'Categories list' ) ),
    605605                /* translators: Tab heading when selecting from the most used terms. */
    606606                'most_used'                  => array( _x( 'Most Used', 'tags' ), _x( 'Most Used', 'categories' ) ),
    607                 'back_to_items'              => array( __( '&larr; Back to Tags' ), __( '&larr; Back to Categories' ) ),
     607                'back_to_items'              => array( __( '&larr; Go to Tags' ), __( '&larr; Go to Categories' ) ),
    608608        );
    609609        $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
    610610
  • src/wp-login.php

     
    285285                <?php
    286286
    287287                /* translators: %s: Site title. */
    288                 printf( _x( '&larr; Back to %s', 'site' ), get_bloginfo( 'title', 'display' ) );
     288                printf( _x( '&larr; Go to %s', 'site' ), get_bloginfo( 'title', 'display' ) );
    289289
    290290                ?>
    291291                </a></p>