diff --git a/core/modules/ckeditor/ckeditor.module b/core/modules/ckeditor/ckeditor.module index 0758065..2c36a51 100644 --- a/core/modules/ckeditor/ckeditor.module +++ b/core/modules/ckeditor/ckeditor.module @@ -20,10 +20,10 @@ function ckeditor_help($path, $arg) { $output .= '
' . t('CKEditor has to be enabled and configured separately for individual text formats from the Text formats and editors page because the filter settings for each text format can be different. For more information, see the Text Editor help page and Filter help page.', array('@formats' => url('admin/config/content/formats'), '@text_editor' => url('admin/help/editor'), '@filter' => url('admin/help/filter'))) . '
'; $output .= '
' . t('Configuring the toolbar') . '
'; $output .= '
' . t('When CKEditor is chosen from the Text editor drop-down menu, its toolbar configuration is displayed. You can add and remove buttons from the Active toolbar by dragging and dropping them, and additional rows can be added to organize the buttons.') . '
'; - $output .= '
' . t('Formatting and pasting content') . '
'; - $output .= '
' . t('CKEditor only allow users to format and paste content in accordance with the filter configuration of the specific text format. If a text format excludes certain HTML tags, the corresponding toolbar buttons are not displayed to users when they edit a text field in this format. For more information see the Filter help page.', array('@filter' => url('admin/help/filter'))) . '
'; + $output .= '
' . t('Formatting content') . '
'; + $output .= '
' . t('CKEditor only allow users to format content in accordance with the filter configuration of the specific text format. If a text format excludes certain HTML tags, the corresponding toolbar buttons are not displayed to users when they edit a text field in this format. For more information see the Filter help page.', array('@filter' => url('admin/help/filter'))) . '
'; $output .= '
' . t('Toggling between formatted text and HTML source') . '
'; - $output .= '
' . t('If the Source button is available in the toolbar, users can click this button to disable the visual editor and edit the HTML source directly. Allowed HTML formatting will be displayed accordingly after toggling back to the visual editor, independent on whether buttons for these tags are available in the toolbar.') . '
'; + $output .= '
' . t('If the Source button is available in the toolbar, users can click this button to disable the visual editor and edit the HTML source directly. After toggling back to the visual editor, allowed HTML tags are displayed as formatted, independent of whether buttons for these tags are available in the toolbar. Excluded HTML tags are not be displayed after toggling back to the visual editor.') . '
'; $output .= ''; return $output; }