1<?php
2/**
3*
4* captcha_qa [English]
5*
6* @package language
7* @version $Id$
8* @copyright (c) 2009 phpBB Group
9* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10*
11*/
12
13/**
14* DO NOT CHANGE
15*/
16if (!defined('IN_PHPBB'))
17{
18	exit;
19}
20
21if (empty($lang) || !is_array($lang))
22{
23	$lang = array();
24}
25
26// DEVELOPERS PLEASE NOTE
27//
28// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
29//
30// Placeholders can now contain order information, e.g. instead of
31// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
32// translators to re-order the output of data while ensuring it remains correct
33//
34// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
35// equally where a string contains only two placeholders which are used to wrap text
36// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
37
38$lang = array_merge($lang, array(
39	'CAPTCHA_QA'				=> 'Q&amp;A',
40	'CONFIRM_QUESTION_EXPLAIN'	=> 'This question is a means of preventing automated form submissions by spambots.',
41	'CONFIRM_QUESTION_WRONG'	=> 'You have provided an invalid answer to the question.',
42
43	'QUESTION_ANSWERS'			=> 'Answers',
44	'ANSWERS_EXPLAIN'			=> 'Please enter valid answers to the question, one per line.',
45	'CONFIRM_QUESTION'			=> 'Question',
46
47	'ANSWER'					=> 'Answer',
48	'EDIT_QUESTION'				=> 'Edit Question',
49	'QUESTIONS'					=> 'Questions',
50	'QUESTIONS_EXPLAIN'			=> 'For every form submission where you have enabled the Q&amp;A plugin, users will be asked one of the questions specified here. To use this plugin at least one question must be set in the default language. These questions should be easy for your target audience to answer but beyond the ability of a bot capable of running a Google™ search. Using a large and regularly changed set of questions will yield the best results. Enable the strict setting if your question relies on mixed case, punctuation or whitespace.',
51	'QUESTION_DELETED'			=> 'Question deleted',
52	'QUESTION_LANG'				=> 'Language',
53	'QUESTION_LANG_EXPLAIN'		=> 'The language this question and its answers are written in.',
54	'QUESTION_STRICT'			=> 'Strict check',
55	'QUESTION_STRICT_EXPLAIN'	=> 'Enable to enforce mixed case, punctuation and whitespace.',
56
57	'QUESTION_TEXT'				=> 'Question',
58	'QUESTION_TEXT_EXPLAIN'		=> 'The question presented to the user.',
59
60	'QA_ERROR_MSG'				=> 'Please fill in all fields and enter at least one answer.',
61	'QA_LAST_QUESTION'			=> 'You cannot delete all questions while the plugin is active.',
62
63));
64
65?>