From 1bbc18c3902ab1d8249b12d4c772bf1e2b392d96 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 12 Dec 2014 22:11:46 +0000 Subject: [PATCH] Improve text for the DFW admin pointer. Remove the concatenation. Props kpdesign, ianmjones. See #30671. git-svn-id: https://develop.svn.wordpress.org/trunk@30837 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php index db50c89f7b..6eb15b18d3 100644 --- a/src/wp-admin/includes/template.php +++ b/src/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' );