Ticket #47235: 47235.6.diff
File 47235.6.diff, 20.2 KB (added by , 4 years ago) |
---|
-
src/js/_enqueues/vendor/codemirror/csslint.js
8390 8390 8391 8391 }); 8392 8392 8393 // Backto normal rules that we don't need to test8393 // Go to normal rules that we don't need to test 8394 8394 parser.addListener("endfontface", function() { 8395 8395 fontFaceRule = false; 8396 8396 -
src/js/media/views/attachments/browser.js
126 126 }, 200 ), 127 127 128 128 editSelection: function( modal ) { 129 // When editing a selection, move focus to the " Returnto library" button.129 // When editing a selection, move focus to the "Go to library" button. 130 130 modal.$( '.media-button-backToLibrary' ).focus(); 131 131 }, 132 132 -
src/wp-admin/about.php
270 270 <div class="return-to-dashboard"> 271 271 <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?> 272 272 <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"> 273 <?php is_multisite() ? _e( ' Return to Updates' ) : _e( 'Returnto Dashboard → Updates' ); ?>273 <?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard → Updates' ); ?> 274 274 </a> | 275 275 <?php endif; ?> 276 276 <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a> -
src/wp-admin/css/about.css
1010 1010 width: 100%; 1011 1011 } 1012 1012 1013 /* Returnto Dashboard Home link */1013 /* Go to Dashboard Home link */ 1014 1014 1015 1015 .about-wrap .return-to-dashboard { 1016 1016 margin: 30px 0 0 -5px; -
src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php
48 48 'plugins_page' => sprintf( 49 49 '<a href="%s" target="_parent">%s</a>', 50 50 self_admin_url( 'plugins.php' ), 51 __( ' Returnto Plugins page' )51 __( 'Go to Plugins page' ) 52 52 ), 53 53 'updates_page' => sprintf( 54 54 '<a href="%s" target="_parent">%s</a>', 55 55 self_admin_url( 'update-core.php' ), 56 __( ' Returnto WordPress Updates page' )56 __( 'Go to WordPress Updates page' ) 57 57 ), 58 58 ); 59 59 -
src/wp-admin/includes/class-bulk-theme-upgrader-skin.php
48 48 'themes_page' => sprintf( 49 49 '<a href="%s" target="_parent">%s</a>', 50 50 self_admin_url( 'themes.php' ), 51 __( ' Returnto Themes page' )51 __( 'Go to Themes page' ) 52 52 ), 53 53 'updates_page' => sprintf( 54 54 '<a href="%s" target="_parent">%s</a>', 55 55 self_admin_url( 'update-core.php' ), 56 __( ' Returnto WordPress Updates page' )56 __( 'Go to WordPress Updates page' ) 57 57 ), 58 58 ); 59 59 -
src/wp-admin/includes/class-language-pack-upgrader-skin.php
75 75 'updates_page' => sprintf( 76 76 '<a href="%s" target="_parent">%s</a>', 77 77 self_admin_url( 'update-core.php' ), 78 __( ' Returnto WordPress Updates page' )78 __( 'Go to WordPress Updates page' ) 79 79 ), 80 80 ); 81 81 -
src/wp-admin/includes/class-plugin-installer-skin.php
107 107 $install_actions['activate_plugin'] = sprintf( 108 108 '<a class="button button-primary" href="%s" target="_parent">%s</a>', 109 109 wp_nonce_url( 'plugins.php?action=activate&from=press-this&plugin=' . urlencode( $plugin_file ), 'activate-plugin_' . $plugin_file ), 110 __( 'Activate Plugin & Returnto Press This' )110 __( 'Activate Plugin & Go to Press This' ) 111 111 ); 112 112 } else { 113 113 $install_actions['activate_plugin'] = sprintf( … … 130 130 $install_actions['importers_page'] = sprintf( 131 131 '<a href="%s" target="_parent">%s</a>', 132 132 admin_url( 'import.php' ), 133 __( ' Returnto Importers' )133 __( 'Go to Importers' ) 134 134 ); 135 135 } elseif ( 'web' === $this->type ) { 136 136 $install_actions['plugins_page'] = sprintf( 137 137 '<a href="%s" target="_parent">%s</a>', 138 138 self_admin_url( 'plugin-install.php' ), 139 __( ' Returnto Plugin Installer' )139 __( 'Go to Plugin Installer' ) 140 140 ); 141 141 } elseif ( 'upload' === $this->type && 'plugins' === $from ) { 142 142 $install_actions['plugins_page'] = sprintf( 143 143 '<a href="%s">%s</a>', 144 144 self_admin_url( 'plugin-install.php' ), 145 __( ' Returnto Plugin Installer' )145 __( 'Go to Plugin Installer' ) 146 146 ); 147 147 } else { 148 148 $install_actions['plugins_page'] = sprintf( 149 149 '<a href="%s" target="_parent">%s</a>', 150 150 self_admin_url( 'plugins.php' ), 151 __( ' Returnto Plugins page' )151 __( 'Go to Plugins page' ) 152 152 ); 153 153 } 154 154 -
src/wp-admin/includes/class-plugin-upgrader-skin.php
98 98 'plugins_page' => sprintf( 99 99 '<a href="%s" target="_parent">%s</a>', 100 100 self_admin_url( 'plugins.php' ), 101 __( ' Returnto Plugins page' )101 __( 'Go to Plugins page' ) 102 102 ), 103 103 ); 104 104 -
src/wp-admin/includes/class-theme-installer-skin.php
155 155 $install_actions['themes_page'] = sprintf( 156 156 '<a href="%s" target="_parent">%s</a>', 157 157 self_admin_url( 'theme-install.php' ), 158 __( ' Returnto Theme Installer' )158 __( 'Go to Theme Installer' ) 159 159 ); 160 160 } elseif ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) { 161 161 $install_actions['themes_page'] = sprintf( 162 162 '<a href="%s" target="_parent">%s</a>', 163 163 self_admin_url( 'themes.php' ), 164 __( ' Returnto Themes page' )164 __( 'Go to Themes page' ) 165 165 ); 166 166 } 167 167 -
src/wp-admin/includes/class-theme-upgrader-skin.php
124 124 $update_actions['themes_page'] = sprintf( 125 125 '<a href="%s" target="_parent">%s</a>', 126 126 self_admin_url( 'themes.php' ), 127 __( ' Returnto Themes page' )127 __( 'Go to Themes page' ) 128 128 ); 129 129 130 130 /** -
src/wp-admin/includes/class-wp-privacy-policy-content.php
424 424 $content .= '</div>'; 425 425 } 426 426 427 $content .= '<a href="#wpbody" class="return-to-top"><span aria-hidden="true">↑ </span> ' . __( ' Returnto top' ) . '</a>';427 $content .= '<a href="#wpbody" class="return-to-top"><span aria-hidden="true">↑ </span> ' . __( 'Go to top' ) . '</a>'; 428 428 429 429 $content .= '</div>'; // End of .privacy-text-section. 430 430 } -
src/wp-admin/includes/network.php
145 145 __( 'You cannot use port numbers such as %s.' ), 146 146 '<code>' . $has_ports . '</code>' 147 147 ) . '</p>'; 148 echo '<a href="' . esc_url( admin_url() ) . '">' . __( ' Returnto Dashboard' ) . '</a>';148 echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Go to Dashboard' ) . '</a>'; 149 149 echo '</div>'; 150 150 require_once ABSPATH . 'wp-admin/admin-footer.php'; 151 151 die(); -
src/wp-admin/includes/privacy-tools.php
279 279 280 280 if ( $groups_count > 1 ) { 281 281 $group_html .= '<div class="return-to-top">'; 282 $group_html .= '<a href="#top"><span aria-hidden="true">↑ </span> ' . esc_html__( ' Returnto top' ) . '</a>';282 $group_html .= '<a href="#top"><span aria-hidden="true">↑ </span> ' . esc_html__( 'Go to top' ) . '</a>'; 283 283 $group_html .= '</div>'; 284 284 } 285 285 -
src/wp-admin/revision.php
107 107 $post_title = '<a href="' . $post_edit_link . '">' . _draft_or_post_title() . '</a>'; 108 108 /* translators: %s: Post title. */ 109 109 $h1 = sprintf( __( 'Compare Revisions of “%s”' ), $post_title ); 110 $return_to_post = '<a href="' . $post_edit_link . '">' . __( '← Returnto editor' ) . '</a>';110 $return_to_post = '<a href="' . $post_edit_link . '">' . __( '← Go to editor' ) . '</a>'; 111 111 $title = __( 'Revisions' ); 112 112 113 113 $redirect = false; -
src/wp-admin/user-edit.php
198 198 <p><strong><?php _e( 'User updated.' ); ?></strong></p> 199 199 <?php endif; ?> 200 200 <?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( '← Backto 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( '← Go to Users' ); ?></a></p> 202 202 <?php endif; ?> 203 203 </div> 204 204 <?php endif; ?> -
src/wp-content/themes/twentyeleven/image.php
32 32 $metadata = wp_get_attachment_metadata(); 33 33 printf( 34 34 /* 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 × %5$s</a> in <a href="%6$s" title=" Returnto %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 × %5$s</a> in <a href="%6$s" title="Go to %7$s" rel="gallery">%8$s</a>', 'twentyeleven' ), 36 36 esc_attr( get_the_time() ), 37 37 get_the_date(), 38 38 esc_url( wp_get_attachment_url() ), -
src/wp-content/themes/twentyeleven/languages/twentyeleven.pot
441 441 msgstr "" 442 442 443 443 #: 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 × %5$s</a> in <a href=\"%6$s\" title=\" Returnto %7$s\" rel=\"gallery\">%8$s</a>"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 × %5$s</a> in <a href=\"%6$s\" title=\"Go to %7$s\" rel=\"gallery\">%8$s</a>" 445 445 msgstr "" 446 446 447 447 #: inc/theme-options.php:56 inc/theme-options.php:564 -
src/wp-content/themes/twentyten/languages/twentyten.pot
263 263 msgstr "" 264 264 265 265 #: loop-attachment.php:25 266 msgid " Returnto %s"266 msgid "Go to %s" 267 267 msgstr "" 268 268 269 269 #. translators: %s - title of parent post -
src/wp-content/themes/twentyten/loop-attachment.php
24 24 <?php 25 25 if ( ! empty( $post->post_parent ) ) : 26 26 /* translators: %s: Post title. */ 27 $post_tile = sprintf( __( ' Returnto %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 ) ) ); 28 28 ?> 29 29 <p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery"> 30 30 <?php -
src/wp-content/themes/twentythirteen/image.php
27 27 <div class="entry-meta"> 28 28 <?php 29 29 /* 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=" Returnto %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' ); 31 31 $post_title = get_the_title( $post->post_parent ); 32 32 if ( empty( $post_title ) || 0 == $post->post_parent ) { 33 33 $published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>'; -
src/wp-content/themes/twentytwelve/image.php
28 28 $metadata = wp_get_attachment_metadata(); 29 29 printf( 30 30 /* 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 × %5$s</a> in <a href="%6$s" title=" Returnto %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 × %5$s</a> in <a href="%6$s" title="Go to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ), 32 32 esc_attr( get_the_date( 'c' ) ), 33 33 esc_html( get_the_date() ), 34 34 esc_url( wp_get_attachment_url() ), -
src/wp-includes/customize/class-wp-customize-themes-section.php
121 121 */ 122 122 protected function filter_bar_content_template() { 123 123 ?> 124 <button type="button" class="button button-primary customize-section-back customize-themes-mobile-back"><?php _e( ' Backto 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> 125 125 <# if ( 'wporg' === data.action ) { #> 126 126 <div class="search-form"> 127 127 <label for="wp-filter-search-input-{{ data.id }}" class="screen-reader-text"><?php _e( 'Search themes…' ); ?></label> -
src/wp-includes/media.php
4239 4239 'createNewGallery' => __( 'Create a new gallery' ), 4240 4240 'createNewPlaylist' => __( 'Create a new playlist' ), 4241 4241 'createNewVideoPlaylist' => __( 'Create a new video playlist' ), 4242 'returnToLibrary' => __( '← Returnto library' ),4242 'returnToLibrary' => __( '← Go to library' ), 4243 4243 'allMediaItems' => __( 'All media items' ), 4244 4244 'allDates' => __( 'All dates' ), 4245 4245 'noItemsFound' => __( 'No items found.' ), -
src/wp-includes/ms-functions.php
2161 2161 wp_die( 2162 2162 sprintf( 2163 2163 /* translators: %s: Home URL. */ 2164 __( 'An error occurred adding you to this site. Backto the <a href="%s">homepage</a>.' ),2164 __( 'An error occurred adding you to this site. Go to the <a href="%s">homepage</a>.' ), 2165 2165 home_url() 2166 2166 ) 2167 2167 ); -
src/wp-includes/taxonomy.php
139 139 'separate_items_with_commas' => null, 140 140 'add_or_remove_items' => null, 141 141 'choose_from_most_used' => null, 142 'back_to_items' => __( '← Backto Link Categories' ),142 'back_to_items' => __( '← Go to Link Categories' ), 143 143 ), 144 144 'capabilities' => array( 145 145 'manage_terms' => 'manage_links', … … 604 604 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 605 605 /* translators: Tab heading when selecting from the most used terms. */ 606 606 'most_used' => array( _x( 'Most Used', 'tags' ), _x( 'Most Used', 'categories' ) ), 607 'back_to_items' => array( __( '← Back to Tags' ), __( '← Backto Categories' ) ),607 'back_to_items' => array( __( '← Go to Tags' ), __( '← Go to Categories' ) ), 608 608 ); 609 609 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; 610 610 -
src/wp-login.php
285 285 <?php 286 286 287 287 /* translators: %s: Site title. */ 288 printf( _x( '← Backto %s', 'site' ), get_bloginfo( 'title', 'display' ) );288 printf( _x( '← Go to %s', 'site' ), get_bloginfo( 'title', 'display' ) ); 289 289 290 290 ?> 291 291 </a></p>