[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * This file is part of the phpBB Forum Software package. 5 * 6 * @copyright (c) phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 * For full copyright and license information, please see 10 * the docs/CREDITS.txt file. 11 * 12 */ 13 14 /** 15 * DO NOT CHANGE 16 */ 17 if (!defined('IN_PHPBB')) 18 { 19 exit; 20 } 21 22 if (empty($lang) || !is_array($lang)) 23 { 24 $lang = array(); 25 } 26 27 // DEVELOPERS PLEASE NOTE 28 // 29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 30 // 31 // Placeholders can now contain order information, e.g. instead of 32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 33 // translators to re-order the output of data while ensuring it remains correct 34 // 35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 36 // equally where a string contains only two placeholders which are used to wrap text 37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 38 39 $lang = array_merge($lang, array( 40 'CAPTCHA_QA' => 'Q&A', 41 'CONFIRM_QUESTION_EXPLAIN' => 'This question is a means of preventing automated form submissions by spambots.', 42 'CONFIRM_QUESTION_WRONG' => 'You have provided an invalid answer to the question.', 43 'CONFIRM_QUESTION_MISSING' => 'Questions for the captcha could not be retrieved. Please contact a board administrator.', 44 45 'QUESTION_ANSWERS' => 'Answers', 46 'ANSWERS_EXPLAIN' => 'Please enter valid answers to the question, one per line.', 47 'CONFIRM_QUESTION' => 'Question', 48 49 'ANSWER' => 'Answer', 50 'EDIT_QUESTION' => 'Edit Question', 51 'QUESTIONS' => 'Questions', 52 'QUESTIONS_EXPLAIN' => 'For every form submission where you have enabled the Q&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. Only a single proper question is necessary. If you start receiving spam registrations, the question should be changed. Enable the strict setting if your question relies on mixed case, punctuation or whitespace.', 53 'QUESTION_DELETED' => 'Question deleted', 54 'QUESTION_LANG' => 'Language', 55 'QUESTION_LANG_EXPLAIN' => 'The language this question and its answers are written in.', 56 'QUESTION_STRICT' => 'Strict check', 57 'QUESTION_STRICT_EXPLAIN' => 'Enable to enforce mixed case, punctuation and whitespace.', 58 59 'QUESTION_TEXT' => 'Question', 60 'QUESTION_TEXT_EXPLAIN' => 'The question presented to the user.', 61 62 'QA_ERROR_MSG' => 'Please fill in all fields and enter at least one answer.', 63 'QA_LAST_QUESTION' => 'You cannot delete all questions while the plugin is active.', 64 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |