From 047f3ef01a0b836d77279bb2b945fb38a53cd000 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Wed, 9 Sep 2015 03:22:36 +0000 Subject: [PATCH] Revisions screen: change language from "Return to post editor" to "Return to editor" - more generic for usage by custom post types. Props lancewillett, adamsilverstein. Fixes #31910. git-svn-id: https://develop.svn.wordpress.org/trunk@33966 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/revision.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/revision.php b/src/wp-admin/revision.php index 40328599d4..4d86c536b9 100644 --- a/src/wp-admin/revision.php +++ b/src/wp-admin/revision.php @@ -75,7 +75,7 @@ default : $post_edit_link = get_edit_post_link(); $post_title = '' . _draft_or_post_title() . ''; $h1 = sprintf( __( 'Compare Revisions of “%1$s”' ), $post_title ); - $return_to_post = '' . __( '← Return to post editor' ) . ''; + $return_to_post = '' . __( '← Return to editor' ) . ''; $title = __( 'Revisions' ); $redirect = false;