diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-28 21:52:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-28 21:52:13 +0000 |
commit | 56a3eea5b09aae40d0c41e14626c8b1dc9e9d8fb (patch) | |
tree | 879f14919df33c04b5385cd299183a8f9a268e92 | |
parent | e3794e438e28daac6381183eff4f478c213b10f3 (diff) | |
download | brdo-56a3eea5b09aae40d0c41e14626c8b1dc9e9d8fb.tar.gz brdo-56a3eea5b09aae40d0c41e14626c8b1dc9e9d8fb.tar.bz2 |
#645784 follow-up by jhodgdon and David_Rothstein: Minor adjustments to Filter module help.
-rw-r--r-- | modules/filter/filter.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module index 8d66220b5..7108d2e95 100644 --- a/modules/filter/filter.module +++ b/modules/filter/filter.module @@ -18,9 +18,9 @@ function filter_help($path, $arg) { $output .= '<h3>' . t('Uses') . '</h3>'; $output .= '<dl>'; $output .= '<dt>' . t('Applying filters to text') . '</dt>'; - $output .= '<dd>' . t('Each text format uses filters to manipulate text, and most formats apply several different filters to text in a specific order. Each filter is designed for a specific purpose, and generally either adds, removes or transforms elements within user-entered text before it is displayed. A filter does not change the actual content, but instead, modifies it temporarily before it is displayed. One filter may remove unapproved HTML tags, while another automatically adds HTML to make URLS display as clickable links.') . '</dd>'; + $output .= '<dd>' . t('Each text format uses filters to manipulate text, and most formats apply several different filters to text in a specific order. Each filter is designed for a specific purpose, and generally either adds, removes, or transforms elements within user-entered text before it is displayed. A filter does not change the actual content, but instead, modifies it temporarily before it is displayed. One filter may remove unapproved HTML tags, while another automatically adds HTML to make URLs display as clickable links.') . '</dd>'; $output .= '<dt>' . t('Defining text formats') . '</dt>'; - $output .= '<dd>' . t('There are three formats included by default; <em>Filtered HTML</em> (which allows only an administrator-approved subset of HTML tags), <em>Full HTML</em> (which allows the full set of HTML tags), and <em>Plain text</em> (which removes all HTML tags). Additional formats may be created by an administrator on the <a href="@text-formats">Text formats page</a>.', array('@text-formats' => url('admin/config/content/formats'))) . '</dd>'; + $output .= '<dd>' . t('One format is included by default: <em>Plain text</em> (which removes all HTML tags). Additional formats may be created by your installation profile when you install Drupal, and more can be created by an administrator on the <a href="@text-formats">Text formats page</a>.', array('@text-formats' => url('admin/config/content/formats'))) . '</dd>'; $output .= '<dt>' . t('Choosing a text format') . '</dt>'; $output .= '<dd>' . t('Users with access to more than one text format can use the <em>Text format</em> fieldset to choose between available text formats when creating or editing multi-line content. Administrators can determine the text formats available to each user role, and control the order of formats listed in the <em>Text format</em> fieldset on the <a href="@text-formats">Text formats page</a>.', array('@text-formats' => url('admin/config/content/formats'))) . '</dd>'; $output .= '</dl>'; |