From bb16b3b28438e7c61409ff74ff7f7d7d0c8bf4e7 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sun, 14 Dec 2014 19:59:22 +0000 Subject: [PATCH] Improve text for the DFW admin pointer. Remove the concatenation. Props kpdesign, ianmjones. Merges [30837] to the 4.1 branch. See #30671. Built from https://develop.svn.wordpress.org/branches/4.1@30850 git-svn-id: http://core.svn.wordpress.org/branches/4.1@30840 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index db50c89f7b..6eb15b18d3 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2056,8 +2056,7 @@ final class WP_Internal_Pointers { } $content = '

' . __( 'Distraction Free Writing' ) . '

'; - $content .= '

' . __( 'Start typing, and the other elements fade away so you can focus. ' - . 'Move your mouse out of the editor to reveal everything again.' ) . '

'; + $content .= '

' . __( 'Enable distraction-free writing mode, and everything surrounding the editor will fade away when you start typing. Move your mouse out of the editor to reveal everything again.' ) . '

'; if ( is_rtl() ) { $position = array( 'edge' => 'left', 'align' => 'center', 'my' => 'left+40 top-11', 'at' => 'left top' );