1 |
2
|
Manuela
|
<?php
|
2 |
|
|
|
3 |
|
|
// $Id$
|
4 |
|
|
|
5 |
|
|
/*
|
6 |
|
|
|
7 |
|
|
Website Baker Project <http://www.websitebaker.org/>
|
8 |
|
|
Copyright (C) 2004-2009, Ryan Djurovich
|
9 |
|
|
|
10 |
|
|
Website Baker is free software; you can redistribute it and/or modify
|
11 |
|
|
it under the terms of the GNU General Public License as published by
|
12 |
|
|
the Free Software Foundation; either version 2 of the License, or
|
13 |
|
|
(at your option) any later version.
|
14 |
|
|
|
15 |
|
|
Website Baker is distributed in the hope that it will be useful,
|
16 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18 |
|
|
GNU General Public License for more details.
|
19 |
|
|
|
20 |
|
|
You should have received a copy of the GNU General Public License
|
21 |
|
|
along with Website Baker; if not, write to the Free Software
|
22 |
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23 |
|
|
|
24 |
|
|
-----------------------------------------------------------------------------------------
|
25 |
|
|
ENGLISH LANGUAGE FILE FOR THE CAPTCHA-CONTROL ADMIN TOOL
|
26 |
|
|
-----------------------------------------------------------------------------------------
|
27 |
|
|
*/
|
28 |
|
|
|
29 |
|
|
// Headings and text outputs
|
30 |
|
|
$MOD_CAPTCHA_CONTROL['HEADING'] = 'Captcha and ASP control';
|
31 |
|
|
$MOD_CAPTCHA_CONTROL['HOWTO'] = 'Here you can control the behavior of "CAPTCHA" and "Advanced Spam Protection" (ASP). To get ASP work with a given module, this special module has to be adapted to make use of ASP.';
|
32 |
|
|
|
33 |
|
|
// Text and captions of form elements
|
34 |
|
|
$MOD_CAPTCHA_CONTROL['CAPTCHA_CONF'] = 'CAPTCHA Configuration';
|
35 |
|
|
$MOD_CAPTCHA_CONTROL['CAPTCHA_TYPE'] = 'Type of CAPTCHA';
|
36 |
|
|
$MOD_CAPTCHA_CONTROL['CAPTCHA_EXP'] = 'CAPTCHA settings for modules are located in the respective module settings';
|
37 |
|
|
$MOD_CAPTCHA_CONTROL['USE_SIGNUP_CAPTCHA']= 'Activate CAPTCHA for signup';
|
38 |
|
|
$MOD_CAPTCHA_CONTROL['ENABLED'] = 'Enabled';
|
39 |
|
|
$MOD_CAPTCHA_CONTROL['DISABLED'] = 'Disabled';
|
40 |
|
|
$MOD_CAPTCHA_CONTROL['ASP_CONF'] = 'Advanced Spam Protection Configuration';
|
41 |
|
|
$MOD_CAPTCHA_CONTROL['ASP_TEXT'] = 'Activate ASP (if available)';
|
42 |
|
|
$MOD_CAPTCHA_CONTROL['ASP_EXP'] = 'ASP tries to determine if a form-input was originated from a human or a spam-bot.';
|
43 |
|
|
$MOD_CAPTCHA_CONTROL['CALC_TEXT'] = 'Calculation as text';
|
44 |
|
|
$MOD_CAPTCHA_CONTROL['CALC_IMAGE'] = 'Calculation as image';
|
45 |
|
|
$MOD_CAPTCHA_CONTROL['CALC_TTF_IMAGE'] = 'Calculation as image with varying fonts and backgrounds';
|
46 |
|
|
$MOD_CAPTCHA_CONTROL['TTF_IMAGE'] = 'Image with varying fonts and backgrounds';
|
47 |
|
|
$MOD_CAPTCHA_CONTROL['OLD_IMAGE'] = 'Old style (not recommended)';
|
48 |
|
|
$MOD_CAPTCHA_CONTROL['TEXT'] = 'Text-CAPTCHA';
|
49 |
|
|
$MOD_CAPTCHA_CONTROL['CAPTCHA_ENTER_TEXT']= 'Questions and Answers';
|
50 |
|
|
$MOD_CAPTCHA_CONTROL['CAPTCHA_TEXT_DESC'] = 'Delete this all to add your own entries'."\n".'or your changes won\'t be saved!'."\n".'### example ###'."\n".'Here you can enter Questions and Answers.'."\n".'Use:'."\n".'?What\'s Claudia Schiffer\'s first name?'."\n".'!Claudia'."\n".'?Question 2'."\n".'!Answer 2'."\n".''."\n".'if language doesn\'t matter.'."\n".' ... '."\n".'Or, if language do matter, use:'."\n".'?EN:What\'s Claudia Schiffer\'s first name?'."\n".'!Claudia'."\n".'?EN:Question 2'."\n".'!Answer 2'."\n".'?DE:Wie ist der Vorname von Claudia Schiffer?'."\n".'!Claudia'."\n".' ... '."\n".'### example ###'."\n".'';
|
51 |
|
|
|
52 |
|
|
$MOD_CAPTCHA['VERIFICATION'] = 'Verification';
|
53 |
|
|
$MOD_CAPTCHA['ADDITION'] = 'add';
|
54 |
|
|
$MOD_CAPTCHA['SUBTRAKTION'] = 'subtract';
|
55 |
|
|
$MOD_CAPTCHA['MULTIPLIKATION'] = 'multiply';
|
56 |
|
|
$MOD_CAPTCHA['VERIFICATION_INFO_RES'] = 'Fill in the result';
|
57 |
|
|
$MOD_CAPTCHA['VERIFICATION_INFO_TEXT'] = 'Fill in the text';
|
58 |
|
|
$MOD_CAPTCHA['VERIFICATION_INFO_QUEST'] = 'Answer the question';
|
59 |
|
|
$MOD_CAPTCHA['INCORRECT_VERIFICATION'] = 'Verification failed';
|
60 |
|
|
|
61 |
|
|
?>
|