diff --git a/src/wp-admin/includes/plugin.php b/src/wp-admin/includes/plugin.php
index ff87539798..829f62a878 100644
a
|
b
|
function paused_plugins_notice() { |
2421 | 2421 | __( 'One or more plugins failed to load properly.' ), |
2422 | 2422 | __( 'You can find more details and make changes on the Plugins screen.' ), |
2423 | 2423 | esc_url( admin_url( 'plugins.php?plugin_status=paused' ) ), |
2424 | | __( 'Go to the Plugins screen' ) |
| 2424 | __( 'Return to Plugins screen' ) |
2425 | 2425 | ); |
2426 | 2426 | } |
diff --git a/src/wp-admin/includes/theme.php b/src/wp-admin/includes/theme.php
index 2e8e0172d4..1bc6533469 100644
a
|
b
|
function paused_themes_notice() { |
931 | 931 | __( 'One or more themes failed to load properly.' ), |
932 | 932 | __( 'You can find more details and make changes on the Themes screen.' ), |
933 | 933 | esc_url( admin_url( 'themes.php' ) ), |
934 | | __( 'Go to the Themes screen' ) |
| 934 | __( 'Return to Themes screen' ) |
935 | 935 | ); |
936 | 936 | } |
diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php
index 10e39e8b27..e488f74ce0 100644
a
|
b
|
switch ( $action ) { |
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( '← Back to 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( 'Return to Users page' ); ?></a></p> |
202 | 202 | <?php endif; ?> |
203 | 203 | </div> |
204 | 204 | <?php endif; ?> |