$output='<p>'.t("The filter module allows administrators to configure text formats for use on your site. A text format defines the HTML tags, codes, and other input allowed in both content and comments, and is a key feature in guarding against potentially damaging input from malicious users. Two formats included by default are <em>Filtered HTML</em> (which allows only an administrator-approved subset of HTML tags) and <em>Full HTML</em> (which allows the full set of HTML tags). Additional formats may be created by an administrator.").'</p>';
$output.='<p>'.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 of a post, but instead, modifies it temporarily before it is displayed. A filter may remove unapproved HTML tags, for instance, while another automatically adds HTML to make links referenced in text clickable.').'</p>';
$output.='<p>'.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 determine the text formats available to each user role and control the order of formats listed in the <em>Text format</em> fieldset.').'</p>';
$output.='<p>'.t('For more information, see the online handbook entry for <a href="@filter">Filter module</a>.',array('@filter'=>'http://drupal.org/handbook/modules/filter/')).'</p>';
$output='';
$output.='<h3>'.t('About').'</h3>';
$output.='<p>'.t('The Filter module allows administrators to configure text formats. A text format defines the HTML tags, codes, and other input allowed in content and comments, and is a key feature in guarding against potentially damaging input from malicious users. For more information, see the online handbook entry for <a href="@filter">Filter module</a>.',array('@filter'=>'http://drupal.org/handbook/modules/filter/')).'</p>';
$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.='<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.='<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>';
return$output;
case'admin/config/content/formats':
$output='<p>'.t("Control which HTML tags and other formatting can be used for text input. Don't allow too much formatting for untrusted users. This can be a serious security risk.").'</p>';
$output.='<p>'.t('Text formats are presented in the order you arrange them below. Configure a text format to change its behavior.').'</p>';
$output='<p>'.t('Use the list below to review the text formats available to each user role and to control the order of formats listed in the <em>Text format</em> fieldset. (The <em>Text format</em> fieldset is displayed below textareas when users with access to more than one text format create multi-line content.) All text formats are available to users in roles with the "administer filters" permission, and the special %fallback format is available to all users. You can configure access to other text formats on the <a href="@url">Permissions page</a>.',array('%fallback'=>filter_fallback_format_title(),'@url'=>url('admin/config/people/permissions',array('fragment'=>'module-filter')))).'</p>';
$output.='<p>'.t('Since text formats, if available, are presented in the same order as the list below, and the default format for each user is the first one on the list for which that user has access, it may be helpful to arrange the formats in descending order of your preference for their use. Remember that your changes will not be saved until you click the <em>Save changes</em> button at the bottom of the page.').'</p>';
return$output;
case'admin/config/content/formats/%':
return'<p>'.t('Every <em>filter</em> performs one particular change on the user input, for example stripping out malicious HTML or making URLs clickable. Choose which filters you want to apply to text in this format. If you notice some filters are causing conflicts in the output, you can <a href="@rearrange">rearrange them</a>.',array('@rearrange'=>url('admin/config/content/formats/'.$arg[4].'/order'))).'</p>';