core/modules/editor/editor.module | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/core/modules/editor/editor.module b/core/modules/editor/editor.module
index 0d51389..7f8f943 100644
--- a/core/modules/editor/editor.module
+++ b/core/modules/editor/editor.module
@@ -21,14 +21,14 @@ function editor_help($path, $arg) {
$output .= '
' . t('Uses') . '
';
$output .= '';
$output .= '- ' . t('Installing text editors') . '
';
- $output .= '- ' . t('The Text Editor module provides a framework for managing editors. To use it, you also need to enable a text editor. This can either be the core CKEditor module, which can be enabled at the Extend page, or a contributed module for any other text editor.
-When installing a contributed editor module, be sure to check the installation instructions, because you will most likely need to download and install an external library as well as the Drupal module.', array('@ckeditor' => url('admin/help/ckeditor'), '@extend' => url('admin/modules'))) . '
';
+ $output .= '- ' . t('The Text Editor module provides a framework for managing editors. To use it, you also need to enable a text editor. This can either be the core CKEditor module, which can be enabled on the Extend page, or a contributed module for any other text editor.
+When installing a contributed text editor module, be sure to check the installation instructions, because you will most likely need to download and install an external library as well as the Drupal module.', array('@ckeditor' => url('admin/help/ckeditor'), '@extend' => url('admin/modules'))) . '
';
$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 attached each text format. You can change this by clicking on the Configure link, and then choosing an 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('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 attached to 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. It is important to match the buttons to the text format. For instance, if a text format filters out link tags, do not include a link button in the editor configuration for that format. For more details, see the specific help page of that editor and the Filters help page.', array('@filters' => url('admin/help/filters'))) . '
';
+ $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('Using different text editors and formats') . '
';
- $output .= '- ' . t('If you switch the text format on a field, the editor will change as well because the text editor configuration is attached to 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 formats 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 textformats with different text editors if they are installed.') . '
';
$output .= '
';
return $output;
}