diff --git a/src/js/media/views/attachments/browser.js b/src/js/media/views/attachments/browser.js index fa1a79ea36..b29090832a 100644 --- a/src/js/media/views/attachments/browser.js +++ b/src/js/media/views/attachments/browser.js @@ -126,7 +126,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/src/wp-admin/about.php b/src/wp-admin/about.php index 1512c17b6d..ce754cfcd0 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -270,7 +270,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
' . $has_ports . ''
) . '';
- echo '' . __( 'Return to Dashboard' ) . '';
+ echo '' . __( 'Go to Dashboard' ) . '';
echo '';
require_once ABSPATH . 'wp-admin/admin-footer.php';
die();
diff --git a/src/wp-admin/includes/privacy-tools.php b/src/wp-admin/includes/privacy-tools.php
index e13c402d69..14914dcb9c 100644
--- a/src/wp-admin/includes/privacy-tools.php
+++ b/src/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 .= '- + diff --git a/src/wp-content/themes/twentyeleven/image.php b/src/wp-content/themes/twentyeleven/image.php index 2476da44a3..097ff19cc3 100644 --- a/src/wp-content/themes/twentyeleven/image.php +++ b/src/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. */ - __( ' %2$s at %4$s × %5$s in %8$s', 'twentyeleven' ), + __( ' %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/src/wp-content/themes/twentyeleven/languages/twentyeleven.pot b/src/wp-content/themes/twentyeleven/languages/twentyeleven.pot index e272461a8d..6a392b6768 100644 --- a/src/wp-content/themes/twentyeleven/languages/twentyeleven.pot +++ b/src/wp-content/themes/twentyeleven/languages/twentyeleven.pot @@ -441,7 +441,7 @@ msgid "Next →" msgstr "" #: image.php:34 -msgid " %2$s at %4$s × %5$s in %8$s" +msgid " %2$s at %4$s × %5$s in %8$s" msgstr "" #: inc/theme-options.php:56 inc/theme-options.php:564 diff --git a/src/wp-content/themes/twentyten/languages/twentyten.pot b/src/wp-content/themes/twentyten/languages/twentyten.pot index e9fd3b8b50..8b5abd14ab 100644 --- a/src/wp-content/themes/twentyten/languages/twentyten.pot +++ b/src/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/src/wp-content/themes/twentyten/loop-attachment.php b/src/wp-content/themes/twentyten/loop-attachment.php index 8298c6dd7e..45c4618cc0 100644 --- a/src/wp-content/themes/twentyten/loop-attachment.php +++ b/src/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 ) ) ); ?>