Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

captcha_qa.php

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 2.72 KiB


01  <?php
02  /**
03  *
04  * This file is part of the phpBB Forum Software package.
05  *
06  * @copyright (c) phpBB Limited <https://www.phpbb.com>
07  * @license GNU General Public License, version 2 (GPL-2.0)
08  *
09  * 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&amp;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&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.',
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  ));
65