Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         SecureFormSwitcher
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.2
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: EN.php 1479 2011-07-25 00:42:10Z Luisehahne $
14
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/SecureFormSwitcher/languages/EN.php $
15
 * @lastmodified    $Date: 2011-07-25 02:42:10 +0200 (Mon, 25 Jul 2011) $
16
 *
17
*/
18

    
19
//Module description
20
$module_description = 'This module switch between the <strong>SingleTab SecureForm</strong> and <strong>MultiTab SecureForm</strong>.';
21

    
22
// Backend variables
23
$SFS_TEXT['TEXT_SWITCH'] = 'Change';
24
$SFS_TEXT['TXT_FTAN_SWITCH'] = 'Change to ';
25
$SFS_TEXT['SECURE_FORM'] = 'SingleTab SecureForm';
26
$SFS_TEXT['SECURE_FORMMTAB'] = 'Multitab SecureForm';
27
$SFS_TEXT['FILE_FORMTAB_NOT_GOUND'] = '<strong>Multitab not possible!<br />Needed file \'/framework/SecureForm.mtab.php\' not found!</strong><br />
28
<span>You have to upload the file manually via FTP</span>';
29
$SFS_TEXT['SUBMIT_FORM'] = 'Single Tab (recommended)';
30
$SFS_TEXT['SUBMIT_FORMTAB'] = 'Multi Tab';
31
$SFS_TEXT['SUBMIT'] = 'Accept';
32
$SFS_TEXT['INFO'] = 'Please select if you want to use the default security settings or the settings for working with several WebsiteBaker instances in parallel browser tabs.';
33
$SFS_TEXT['RESET_SETTINGS'] = 'Default setting';
34
$SFS_TEXT['ON_OFF'] = 'On/OFF';
35

    
36
// Variablen fuer AdminTool Optionen
37
$SFS_TEXT['WB_SECFORM_USEIP'] = 'IP-Blocks (1-4, 0=no check)';
38
$SFS_TEXT['WB_SECFORM_USEIP_TOOLTIP'] = '<span class="custom help"><em>Help</em>
39
These number of segments of an IP address can be used for the fingerprint. "4" means the whole IP address (this makes sense e.g. for servers with a stable IP address). "2" is a good compromise, because at home there\'s often the 24-hour reset and therefore only the first two segments keep constant.
40
<ul>
41
<li>4= xxx.xxx.xxx.xxx</li>
42
<li>3= xxx.xxx.xxx</li>
43
<li>2= xxx.xxx</li>
44
<li>1= xxx</li>
45
<li>0= no usage of the IP</li></ul></span>';
46
$SFS_TEXT['WB_SECFORM_TOKENNAME'] = 'Tokenname';
47
$SFS_TEXT['WB_SECFORM_TOKENNAME_TOOLTIP'] = '<span class="custom help"><em>Help</em>The name of the token. Coll. a token is often called TAN.</span>';
48
$SFS_TEXT['WB_SECFORM_SECRET'] = 'Secret (whatever you like)';
49
$SFS_TEXT['WB_SECFORM_SECRET_TOOLTIP'] = '<span class="custom help"><em>Help</em>A random key, that is being used for creating a TAN. Recommend are at least 20 digits.</span>';
50
$SFS_TEXT['WB_SECFORM_SECRETTIME'] = 'Secrettime';
51
$SFS_TEXT['WB_SECFORM_SECRETTIME_TOOLTIP'] = '<span class="custom help"><em>Help</em>Time (in seconds), until the secret-key will be renewed.</span>';
52
$SFS_TEXT['WB_SECFORM_TIMEOUT'] = 'Timeout';
53
$SFS_TEXT['WB_SECFORM_TIMEOUT_TOOLTIP'] = '<span class="custom help"><em>Help</em>Time (in seconds), until the form-token is void.</span>';
54
$SFS_TEXT['WB_SECFORM_USEFP'] = 'Fingerprinting';
55
$SFS_TEXT['WB_SECFORM_USEFP_TOOLTIP'] = '<span class="custom help"><em>Help</em>Require OS and browser for every TAN-validation additionally to the IP-address.</span>';
(2-2/2)