diff --git a/wp-admin/about.php b/wp-admin/about.php index 1512c17b6d..ce754cfcd0 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -270,7 +270,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
- + | diff --git a/wp-admin/css/about-rtl.css b/wp-admin/css/about-rtl.css index 2319dbb23c..a01151b1fb 100644 --- a/wp-admin/css/about-rtl.css +++ b/wp-admin/css/about-rtl.css @@ -1042,7 +1042,7 @@ width: 100%; } -/* Return to Dashboard Home link */ +/* Go to Dashboard Home link */ .about-wrap .return-to-dashboard { margin: 30px -5px 0 0; diff --git a/wp-admin/css/about.css b/wp-admin/css/about.css index 34851cf03b..78af84b8d0 100644 --- a/wp-admin/css/about.css +++ b/wp-admin/css/about.css @@ -1041,7 +1041,7 @@ width: 100%; } -/* Return to Dashboard Home link */ +/* Go to Dashboard Home link */ .about-wrap .return-to-dashboard { margin: 30px 0 0 -5px; diff --git a/wp-admin/includes/class-bulk-plugin-upgrader-skin.php b/wp-admin/includes/class-bulk-plugin-upgrader-skin.php index 308cacf553..9844e19460 100644 --- a/wp-admin/includes/class-bulk-plugin-upgrader-skin.php +++ b/wp-admin/includes/class-bulk-plugin-upgrader-skin.php @@ -48,12 +48,12 @@ class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin { 'plugins_page' => sprintf( '%s', self_admin_url( 'plugins.php' ), - __( 'Return to Plugins page' ) + __( 'Go to Plugins page' ) ), 'updates_page' => sprintf( '%s', self_admin_url( 'update-core.php' ), - __( 'Return to WordPress Updates page' ) + __( 'Go to WordPress Updates page' ) ), ); diff --git a/wp-admin/includes/class-bulk-theme-upgrader-skin.php b/wp-admin/includes/class-bulk-theme-upgrader-skin.php index d3f0c914ea..94daa27131 100644 --- a/wp-admin/includes/class-bulk-theme-upgrader-skin.php +++ b/wp-admin/includes/class-bulk-theme-upgrader-skin.php @@ -48,12 +48,12 @@ class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin { 'themes_page' => sprintf( '%s', self_admin_url( 'themes.php' ), - __( 'Return to Themes page' ) + __( 'Go to Themes page' ) ), 'updates_page' => sprintf( '%s', self_admin_url( 'update-core.php' ), - __( 'Return to WordPress Updates page' ) + __( 'Go to WordPress Updates page' ) ), ); diff --git a/wp-admin/includes/class-language-pack-upgrader-skin.php b/wp-admin/includes/class-language-pack-upgrader-skin.php index cbbc834808..05676269f0 100644 --- a/wp-admin/includes/class-language-pack-upgrader-skin.php +++ b/wp-admin/includes/class-language-pack-upgrader-skin.php @@ -75,7 +75,7 @@ class Language_Pack_Upgrader_Skin extends WP_Upgrader_Skin { 'updates_page' => sprintf( '%s', self_admin_url( 'update-core.php' ), - __( 'Return to WordPress Updates page' ) + __( 'Go to WordPress Updates page' ) ), ); diff --git a/wp-admin/includes/class-plugin-installer-skin.php b/wp-admin/includes/class-plugin-installer-skin.php index 5bb19ebfbc..dad5983d7a 100644 --- a/wp-admin/includes/class-plugin-installer-skin.php +++ b/wp-admin/includes/class-plugin-installer-skin.php @@ -107,7 +107,7 @@ class Plugin_Installer_Skin extends WP_Upgrader_Skin { $install_actions['activate_plugin'] = sprintf( '%s', wp_nonce_url( 'plugins.php?action=activate&from=press-this&plugin=' . urlencode( $plugin_file ), 'activate-plugin_' . $plugin_file ), - __( 'Activate Plugin & Return to Press This' ) + __( 'Activate Plugin & Go to Press This' ) ); } else { $install_actions['activate_plugin'] = sprintf( @@ -130,25 +130,25 @@ class Plugin_Installer_Skin extends WP_Upgrader_Skin { $install_actions['importers_page'] = sprintf( '%s', admin_url( 'import.php' ), - __( 'Return to Importers' ) + __( 'Go to Importers' ) ); } elseif ( 'web' === $this->type ) { $install_actions['plugins_page'] = sprintf( '%s', self_admin_url( 'plugin-install.php' ), - __( 'Return to Plugin Installer' ) + __( 'Go to Plugin Installer' ) ); } elseif ( 'upload' === $this->type && 'plugins' === $from ) { $install_actions['plugins_page'] = sprintf( '%s', self_admin_url( 'plugin-install.php' ), - __( 'Return to Plugin Installer' ) + __( 'Go to Plugin Installer' ) ); } else { $install_actions['plugins_page'] = sprintf( '%s', self_admin_url( 'plugins.php' ), - __( 'Return to Plugins page' ) + __( 'Go to Plugins page' ) ); } diff --git a/wp-admin/includes/class-plugin-upgrader-skin.php b/wp-admin/includes/class-plugin-upgrader-skin.php index 6f7ef96b10..1d56b29d21 100644 --- a/wp-admin/includes/class-plugin-upgrader-skin.php +++ b/wp-admin/includes/class-plugin-upgrader-skin.php @@ -98,7 +98,7 @@ class Plugin_Upgrader_Skin extends WP_Upgrader_Skin { 'plugins_page' => sprintf( '%s', self_admin_url( 'plugins.php' ), - __( 'Return to Plugins page' ) + __( 'Go to Plugins page' ) ), ); diff --git a/wp-admin/includes/class-theme-installer-skin.php b/wp-admin/includes/class-theme-installer-skin.php index c6d0900abe..c22ad86e7a 100644 --- a/wp-admin/includes/class-theme-installer-skin.php +++ b/wp-admin/includes/class-theme-installer-skin.php @@ -155,13 +155,13 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin { $install_actions['themes_page'] = sprintf( '%s', self_admin_url( 'theme-install.php' ), - __( 'Return to Theme Installer' ) + __( 'Go to Theme Installer' ) ); } elseif ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) { $install_actions['themes_page'] = sprintf( '%s', self_admin_url( 'themes.php' ), - __( 'Return to Themes page' ) + __( 'Go to Themes page' ) ); } diff --git a/wp-admin/includes/class-theme-upgrader-skin.php b/wp-admin/includes/class-theme-upgrader-skin.php index d7a6384250..e1420b032f 100644 --- a/wp-admin/includes/class-theme-upgrader-skin.php +++ b/wp-admin/includes/class-theme-upgrader-skin.php @@ -124,7 +124,7 @@ class Theme_Upgrader_Skin extends WP_Upgrader_Skin { $update_actions['themes_page'] = sprintf( '%s', self_admin_url( 'themes.php' ), - __( 'Return to Themes page' ) + __( 'Go to Themes page' ) ); /** diff --git a/wp-admin/includes/class-wp-privacy-policy-content.php b/wp-admin/includes/class-wp-privacy-policy-content.php index 15d6518601..d6d922c67b 100644 --- a/wp-admin/includes/class-wp-privacy-policy-content.php +++ b/wp-admin/includes/class-wp-privacy-policy-content.php @@ -424,7 +424,7 @@ final class WP_Privacy_Policy_Content { $content .= '
'; } - $content .= ' ' . __( 'Return to top' ) . ''; + $content .= ' ' . __( 'Go to top' ) . ''; $content .= ''; // End of .privacy-text-section. } diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 18ed2e955c..c31acfdc84 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -145,7 +145,7 @@ function network_step1( $errors = false ) { __( 'You cannot use port numbers such as %s.' ), '' . $has_ports . '' ) . '

'; - echo '' . __( 'Return to Dashboard' ) . ''; + echo '' . __( 'Go to Dashboard' ) . ''; echo ''; require_once ABSPATH . 'wp-admin/admin-footer.php'; die(); diff --git a/wp-admin/includes/privacy-tools.php b/wp-admin/includes/privacy-tools.php index e13c402d69..14914dcb9c 100644 --- a/wp-admin/includes/privacy-tools.php +++ b/wp-admin/includes/privacy-tools.php @@ -279,7 +279,7 @@ function wp_privacy_generate_personal_data_export_group_html( $group_data, $grou if ( $groups_count > 1 ) { $group_html .= '
'; - $group_html .= ' ' . esc_html__( 'Return to top' ) . ''; + $group_html .= ' ' . esc_html__( 'Go to top' ) . ''; $group_html .= '
'; } diff --git a/wp-admin/revision.php b/wp-admin/revision.php index 156e998b57..b77c7606b9 100644 --- a/wp-admin/revision.php +++ b/wp-admin/revision.php @@ -107,7 +107,7 @@ switch ( $action ) { $post_title = '' . _draft_or_post_title() . ''; /* translators: %s: Post title. */ $h1 = sprintf( __( 'Compare Revisions of “%s”' ), $post_title ); - $return_to_post = '' . __( '← Return to editor' ) . ''; + $return_to_post = '' . __( '← Go to editor' ) . ''; $title = __( 'Revisions' ); $redirect = false; diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index e135dfb098..7dc87869b4 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -202,7 +202,7 @@ switch ( $action ) {

-

+

diff --git a/wp-content/themes/twentyeleven/image.php b/wp-content/themes/twentyeleven/image.php index 2476da44a3..097ff19cc3 100644 --- a/wp-content/themes/twentyeleven/image.php +++ b/wp-content/themes/twentyeleven/image.php @@ -32,7 +32,7 @@ get_header(); ?> $metadata = wp_get_attachment_metadata(); printf( /* 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. */ - __( 'Published %2$s at %4$s × %5$s in %8$s', 'twentyeleven' ), + __( 'Published %2$s at %4$s × %5$s in %8$s', 'twentyeleven' ), esc_attr( get_the_time() ), get_the_date(), esc_url( wp_get_attachment_url() ), diff --git a/wp-content/themes/twentyeleven/languages/twentyeleven.pot b/wp-content/themes/twentyeleven/languages/twentyeleven.pot index e272461a8d..6a392b6768 100644 --- a/wp-content/themes/twentyeleven/languages/twentyeleven.pot +++ b/wp-content/themes/twentyeleven/languages/twentyeleven.pot @@ -441,7 +441,7 @@ msgid "Next →" msgstr "" #: image.php:34 -msgid "Published %2$s at %4$s × %5$s in %8$s" +msgid "Published %2$s at %4$s × %5$s in %8$s" msgstr "" #: inc/theme-options.php:56 inc/theme-options.php:564 diff --git a/wp-content/themes/twentyten/languages/twentyten.pot b/wp-content/themes/twentyten/languages/twentyten.pot index e9fd3b8b50..8b5abd14ab 100644 --- a/wp-content/themes/twentyten/languages/twentyten.pot +++ b/wp-content/themes/twentyten/languages/twentyten.pot @@ -263,7 +263,7 @@ msgid "Skip to content" msgstr "" #: loop-attachment.php:25 -msgid "Return to %s" +msgid "Go to %s" msgstr "" #. translators: %s - title of parent post diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php index 8298c6dd7e..45c4618cc0 100644 --- a/wp-content/themes/twentyten/loop-attachment.php +++ b/wp-content/themes/twentyten/loop-attachment.php @@ -24,7 +24,7 @@ if ( have_posts() ) { post_parent ) ) : /* translators: %s: Post title. */ - $post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ); + $post_tile = sprintf( __( 'Go to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ); ?>

Published on in %5$s', 'twentythirteen' ); + $published_text = __( 'Published on in %5$s', 'twentythirteen' ); $post_title = get_the_title( $post->post_parent ); if ( empty( $post_title ) || 0 == $post->post_parent ) { $published_text = ''; diff --git a/wp-content/themes/twentytwelve/image.php b/wp-content/themes/twentytwelve/image.php index 99586c3e54..ef704a0045 100644 --- a/wp-content/themes/twentytwelve/image.php +++ b/wp-content/themes/twentytwelve/image.php @@ -28,7 +28,7 @@ get_header(); ?> $metadata = wp_get_attachment_metadata(); printf( /* 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. */ - __( 'Published at %4$s × %5$s in %8$s.', 'twentytwelve' ), + __( 'Published at %4$s × %5$s in %8$s.', 'twentytwelve' ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( wp_get_attachment_url() ), diff --git a/wp-includes/class-wp-block.php b/wp-includes/class-wp-block.php index e2630a451a..9c9a484430 100644 --- a/wp-includes/class-wp-block.php +++ b/wp-includes/class-wp-block.php @@ -213,12 +213,12 @@ class WP_Block { } if ( $is_dynamic ) { - $global_post = $post; - $parent = WP_Block_Supports::$block_to_render; + $global_post = $post; + $parent = WP_Block_Supports::$block_to_render; WP_Block_Supports::$block_to_render = $this->parsed_block; - $block_content = (string) call_user_func( $this->block_type->render_callback, $this->attributes, $block_content, $this ); + $block_content = (string) call_user_func( $this->block_type->render_callback, $this->attributes, $block_content, $this ); WP_Block_Supports::$block_to_render = $parent; - $post = $global_post; + $post = $global_post; } if ( ! empty( $this->block_type->script ) ) { diff --git a/wp-includes/customize/class-wp-customize-themes-section.php b/wp-includes/customize/class-wp-customize-themes-section.php index 75e57398ab..84ec56f1ea 100644 --- a/wp-includes/customize/class-wp-customize-themes-section.php +++ b/wp-includes/customize/class-wp-customize-themes-section.php @@ -121,7 +121,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section { */ protected function filter_bar_content_template() { ?> - + <# if ( 'wporg' === data.action ) { #>
diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js index 9b5fff6555..1af1f1fb0b 100644 --- a/wp-includes/js/media-views.js +++ b/wp-includes/js/media-views.js @@ -8114,7 +8114,7 @@ AttachmentsBrowser = View.extend(/** @lends wp.media.view.AttachmentsBrowser.pro }, 200 ), editSelection: function( modal ) { - // When editing a selection, move focus to the "Return to library" button. + // When editing a selection, move focus to the "Go to library" button. modal.$( '.media-button-backToLibrary' ).focus(); }, diff --git a/wp-includes/media.php b/wp-includes/media.php index fbeeab08ed..7778b6bd1c 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -4290,7 +4290,7 @@ function wp_enqueue_media( $args = array() ) { 'createNewGallery' => __( 'Create a new gallery' ), 'createNewPlaylist' => __( 'Create a new playlist' ), 'createNewVideoPlaylist' => __( 'Create a new video playlist' ), - 'returnToLibrary' => __( '← Return to library' ), + 'returnToLibrary' => __( '← Go to library' ), 'allMediaItems' => __( 'All media items' ), 'allDates' => __( 'All dates' ), 'noItemsFound' => __( 'No items found.' ), diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index b05d1835b9..19d644d26e 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -2275,7 +2275,7 @@ function maybe_add_existing_user_to_blog() { wp_die( sprintf( /* translators: %s: Home URL. */ - __( 'An error occurred adding you to this site. Back to the homepage.' ), + __( 'An error occurred adding you to this site. Go to the homepage.' ), home_url() ) ); diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 435c585cad..b60d593140 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -139,7 +139,7 @@ function create_initial_taxonomies() { 'separate_items_with_commas' => null, 'add_or_remove_items' => null, 'choose_from_most_used' => null, - 'back_to_items' => __( '← Back to Link Categories' ), + 'back_to_items' => __( '← Go to Link Categories' ), ), 'capabilities' => array( 'manage_terms' => 'manage_links', @@ -604,7 +604,7 @@ function get_taxonomy_labels( $tax ) { 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), /* translators: Tab heading when selecting from the most used terms. */ 'most_used' => array( _x( 'Most Used', 'tags' ), _x( 'Most Used', 'categories' ) ), - 'back_to_items' => array( __( '← Back to Tags' ), __( '← Back to Categories' ) ), + 'back_to_items' => array( __( '← Go to Tags' ), __( '← Go to Categories' ) ), ); $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; diff --git a/wp-includes/version.php b/wp-includes/version.php index 23e044fc87..dfbdd3ca6c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta3-49538'; +$wp_version = '5.6-beta3-49539'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index a1331f38fa..98d20d416b 100644 --- a/wp-login.php +++ b/wp-login.php @@ -285,7 +285,7 @@ function login_footer( $input_id = '' ) {