From 6f6b23dd706eb775a44cbb96c15553c7f944aff9 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 16 Jan 2019 22:44:25 +0000 Subject: [PATCH] =?UTF-8?q?Privacy:=20Improve=20the=20=E2=80=99Copy?= =?UTF-8?q?=E2=80=99=20button=20verbiage=20to=20provide=20more=20clarity.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On the Privacy Policy Guide, there is currently a ‘Copy’ button below each section of suggested text. It is unclear what copy means without more context. It could be assumed, for instance, that the suggested text is copied to a new page. This changes the button text to read `Copy this section to clipboard` to more clearly inform the user what is copied and how. Props JoshuaWold, garrett-eclipse, birgire, vishaldodiya. Fixes #44677. git-svn-id: https://develop.svn.wordpress.org/trunk@44629 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/misc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/misc.php b/src/wp-admin/includes/misc.php index 910b6cdb27..6a333249a6 100644 --- a/src/wp-admin/includes/misc.php +++ b/src/wp-admin/includes/misc.php @@ -1671,7 +1671,7 @@ final class WP_Privacy_Policy_Content { $content = ''; $toc = array( '
  • ' . __( 'Introduction' ) . '
  • ' ); $date_format = __( 'F j, Y' ); - $copy = __( 'Copy' ); + $copy = __( 'Copy this section to clipboard' ); $return_to_top = '' . __( '↑ Return to Top' ) . ''; foreach ( $content_array as $section ) {