wp/wp-admin/edit-form-advanced.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 21 48c4eec2b7e6
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
   295 	$title_and_editor .= '<p>' . __( 'The Text mode allows you to enter HTML along with your post text. Note that &lt;p&gt; and &lt;br&gt; tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing &lt;br&gt;, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.' ) . '</p>';
   295 	$title_and_editor .= '<p>' . __( 'The Text mode allows you to enter HTML along with your post text. Note that &lt;p&gt; and &lt;br&gt; tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing &lt;br&gt;, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.' ) . '</p>';
   296 	$title_and_editor .= '<p>' . __( 'You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.' ) . '</p>';
   296 	$title_and_editor .= '<p>' . __( 'You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.' ) . '</p>';
   297 	$title_and_editor .= '<p>' . __( 'You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.' ) . '</p>';
   297 	$title_and_editor .= '<p>' . __( 'You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.' ) . '</p>';
   298 	$title_and_editor .= '<p>' . sprintf(
   298 	$title_and_editor .= '<p>' . sprintf(
   299 		/* translators: %s: Alt + F10 */
   299 		/* translators: %s: Alt + F10 */
   300 		__( 'Keyboard users: When you&#8217;re working in the visual editor, you can use %s to access the toolbar.' ),
   300 		__( 'Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.' ),
   301 		'<kbd>Alt + F10</kbd>'
   301 		'<kbd>Alt + F10</kbd>'
   302 	) . '</p>';
   302 	) . '</p>';
   303 
   303 
   304 	get_current_screen()->add_help_tab(
   304 	get_current_screen()->add_help_tab(
   305 		array(
   305 		array(
   445 <?php endif; ?>
   445 <?php endif; ?>
   446 <?php if ( $message ) : ?>
   446 <?php if ( $message ) : ?>
   447 <div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $message; ?></p></div>
   447 <div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $message; ?></p></div>
   448 <?php endif; ?>
   448 <?php endif; ?>
   449 <div id="lost-connection-notice" class="error hidden">
   449 <div id="lost-connection-notice" class="error hidden">
   450 	<p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you&#8217;re reconnected.' ); ?>
   450 	<p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you are reconnected.' ); ?>
   451 	<span class="hide-if-no-sessionstorage"><?php _e( 'We&#8217;re backing up this post in your browser, just in case.' ); ?></span>
   451 	<span class="hide-if-no-sessionstorage"><?php _e( 'This post is being backed up in your browser, just in case.' ); ?></span>
   452 	</p>
   452 	</p>
   453 </div>
   453 </div>
   454 <form name="post" action="post.php" method="post" id="post"
   454 <form name="post" action="post.php" method="post" id="post"
   455 <?php
   455 <?php
   456 /**
   456 /**