diff --git a/core/modules/editor/editor.module b/core/modules/editor/editor.module index e3c9cd2..68df8fa 100644 --- a/core/modules/editor/editor.module +++ b/core/modules/editor/editor.module @@ -26,9 +26,9 @@ function editor_help($path, $arg) { $output .= '
' . t('Enabling a text editor for a text format') . '
'; $output .= '
' . t('On the Text formats and editors page you can see which text editor is associated with each text format. You can change this by clicking on the Configure link, and then choosing a text editor or none from the Text editor drop-down list. The text editor will then be displayed with any text field for which this text format is chosen.', array('@formats' => url('admin/config/content/formats'))) . '
'; $output .= '
' . t('Configuring a text editor') . '
'; - $output .= '
' . t('Once a text editor is associated with a text format, you can configure it by clicking on the Configure link for this format. Depending on the specific text editor, you can configure it for example by adding buttons to its toolbar. The buttons are typically for functions like inserting links, making bullet lists, and other formatting tasks, and they typically insert HTML tags into the field source.') . '
'; + $output .= '
' . t('Once a text editor is associated with a text format, you can configure it by clicking on the Configure link for this format. Depending on the specific text editor, you can configure it for example by adding buttons to its toolbar. Typically these buttons provide formatting or editing tools, and they often insert HTML tags into the field source. For details, see the help page of the specific text editor.') . '
'; $output .= '
' . t('Using different text editors and formats') . '
'; - $output .= '
' . t('If you change the text format on a text field, the text editor will change as well because the text editor configuration is associated with the individual text format. This allows the use of the same text editor with different options for different text formats. It also allows users to choose between textformats with different text editors if they are installed.') . '
'; + $output .= '
' . t('If you change the text format on a text field, the text editor will change as well because the text editor configuration is associated with the individual text format. This allows the use of the same text editor with different options for different text formats. It also allows users to choose between text formats with different text editors if they are installed.') . '
'; $output .= ''; return $output; }