diff options
Diffstat (limited to 'modules_v3/faq/help_text.php')
| -rw-r--r-- | modules_v3/faq/help_text.php | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/modules_v3/faq/help_text.php b/modules_v3/faq/help_text.php index b779c4618a..217e695b35 100644 --- a/modules_v3/faq/help_text.php +++ b/modules_v3/faq/help_text.php @@ -21,48 +21,48 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -if (!defined('WT_WEBTREES') || !defined('WT_SCRIPT_NAME') || WT_SCRIPT_NAME!='help_text.php') { +if (!defined('WT_WEBTREES') || !defined('WT_SCRIPT_NAME') || WT_SCRIPT_NAME != 'help_text.php') { header('HTTP/1.0 403 Forbidden'); exit; } switch ($help) { case 'add_faq_item': - $title=WT_I18N::translate('Frequently asked questions'); - $text= - WT_I18N::translate('FAQs are lists of questions and answers, which allow you to explain the site’s rules, policies, and procedures to your visitors. Questions are typically concerned with privacy, copyright, user-accounts, unsuitable content, requirement for source-citations, etc.'). - '<br><br>'. + $title = WT_I18N::translate('Frequently asked questions'); + $text = + WT_I18N::translate('FAQs are lists of questions and answers, which allow you to explain the site’s rules, policies, and procedures to your visitors. Questions are typically concerned with privacy, copyright, user-accounts, unsuitable content, requirement for source-citations, etc.') . + '<br><br>' . WT_I18N::translate('You may use HTML to format the answer and to add links to other websites.'); break; case 'add_faq_order': - $title=WT_I18N::translate('FAQ position'); - $text=WT_I18N::translate('This field controls the order in which the FAQ items are displayed.<br><br>You do not have to enter the numbers sequentially. If you leave holes in the numbering scheme, you can insert other items later. For example, if you use the numbers 1, 6, 11, 16, you can later insert items with the missing sequence numbers. Negative numbers and zero are allowed, and can be used to insert items in front of the first one.<br><br>When more than one FAQ item has the same position number, only one of these items will be visible.'); + $title = WT_I18N::translate('FAQ position'); + $text = WT_I18N::translate('This field controls the order in which the FAQ items are displayed.<br><br>You do not have to enter the numbers sequentially. If you leave holes in the numbering scheme, you can insert other items later. For example, if you use the numbers 1, 6, 11, 16, you can later insert items with the missing sequence numbers. Negative numbers and zero are allowed, and can be used to insert items in front of the first one.<br><br>When more than one FAQ item has the same position number, only one of these items will be visible.'); break; case 'add_faq_visibility': - $title=WT_I18N::translate('FAQ visibility'); - $text=WT_I18N::translate('A FAQ item can be displayed on just one of the family trees, or on all the family trees.'); + $title = WT_I18N::translate('FAQ visibility'); + $text = WT_I18N::translate('A FAQ item can be displayed on just one of the family trees, or on all the family trees.'); break; case 'delete_faq_item': - $title=WT_I18N::translate('Delete FAQ item'); - $text=WT_I18N::translate('This option will let you delete an item from the FAQ page'); + $title = WT_I18N::translate('Delete FAQ item'); + $text = WT_I18N::translate('This option will let you delete an item from the FAQ page'); break; case 'edit_faq_item': - $title=WT_I18N::translate('Edit FAQ item'); - $text=WT_I18N::translate('This option will let you edit an item on the FAQ page.'); + $title = WT_I18N::translate('Edit FAQ item'); + $text = WT_I18N::translate('This option will let you edit an item on the FAQ page.'); break; case 'movedown_faq_item': - $title=WT_I18N::translate('Move FAQ item down'); - $text=WT_I18N::translate('This option will let you move an item downwards on the FAQ page.<br><br>Each time you use this option, the FAQ position number of this item is increased by one. You can achieve the same effect by editing the item in question and changing the FAQ position field. When more than one FAQ item has the same position number, only one of these items will be visible.'); + $title = WT_I18N::translate('Move FAQ item down'); + $text = WT_I18N::translate('This option will let you move an item downwards on the FAQ page.<br><br>Each time you use this option, the FAQ position number of this item is increased by one. You can achieve the same effect by editing the item in question and changing the FAQ position field. When more than one FAQ item has the same position number, only one of these items will be visible.'); break; case 'moveup_faq_item': - $title=WT_I18N::translate('Move FAQ item up'); - $text=WT_I18N::translate('This option will let you move an item upwards on the FAQ page.<br><br>Each time you use this option, the FAQ position number of this item is reduced by one. You can achieve the same effect by editing the item in question and changing the FAQ position field. When more than one FAQ item has the same position number, only one of these items will be visible.'); + $title = WT_I18N::translate('Move FAQ item up'); + $text = WT_I18N::translate('This option will let you move an item upwards on the FAQ page.<br><br>Each time you use this option, the FAQ position number of this item is reduced by one. You can achieve the same effect by editing the item in question and changing the FAQ position field. When more than one FAQ item has the same position number, only one of these items will be visible.'); break; } |
