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-admin/includes/class-theme-installer-skin.php

    r48913 r49539  
    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' ) ) {
     
    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        }
Note: See TracChangeset for help on using the changeset viewer.