Make WordPress Core


Ignore:
Timestamp:
11/09/2020 10:51:52 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Text Changes: Unify various "Back to..." vs. "Return to..." vs. "Go to..." strings.

Standardize on "Go to..." as a more appropriate option for most cases.

Props garrett-eclipse, kharisblank, audrasjb, ramiy, valentinbora.
Fixes #47235.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyten/loop-attachment.php

    r48782 r49539  
    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">
Note: See TracChangeset for help on using the changeset viewer.