Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         SecureFormSwitcher
6
 * @author          Ryan Djurovich, WebsiteBaker Project
7
 * @copyright       2009-2012, WebsiteBaker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.2
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id: EN.php 2070 2014-01-03 01:21:42Z darkviper $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/SecureFormSwitcher/languages/EN.php $
14
 * @lastmodified    $Date: 2014-01-03 02:21:42 +0100 (Fri, 03 Jan 2014) $
15
 *
16
 */
17

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

    
21
// Backend variables
22
$SFS_TEXT['TEXT_SWITCH'] = 'Change';
23
$SFS_TEXT['TXT_FTAN_SWITCH'] = 'Change to ';
24
$SFS_TEXT['SECURE_FORM'] = 'SingleTab SecureForm';
25
$SFS_TEXT['SECURE_FORMMTAB'] = 'Multitab SecureForm';
26
$SFS_TEXT['FILE_FORMTAB_NOT_FOUND'] = '<strong>Multitab not possible!<br />Needed file \'/framework/SecureForm.mtab.php\' not found!</strong><br />
27
<span>You have to upload the file manually via FTP</span>';
28
$SFS_TEXT['SUBMIT_FORM'] = 'Single Tab (recommended)';
29
$SFS_TEXT['SUBMIT_FORMTAB'] = 'Multi Tab';
30
$SFS_TEXT['SUBMIT'] = 'Accept';
31
$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.';
32
$SFS_TEXT['RESET_SETTINGS'] = 'Default setting';
33
$SFS_TEXT['ON'] = 'ON';
34
$SFS_TEXT['OFF'] = 'OFF';
35

    
36
$CAPTION['WB_SECFORM_USEIP'] = 'IP-Blocks <i>(1-4, 0=no check)</i>';
37
$CAPTION['WB_SECFORM_TOKENNAME'] = 'Tokenname';
38
$CAPTION['WB_SECFORM_SECRET'] = 'Secret <i>(whatever you like)</i>';
39
$CAPTION['WB_SECFORM_SECRETTIME'] = 'Secrettime';
40
$CAPTION['WB_SECFORM_TIMEOUT'] = 'Timeout';
41
$CAPTION['WB_SECFORM_USEFP'] = 'Fingerprinting';
42

    
43
// Variablen fuer AdminTool Optionen
44
$HELP['WB_SECFORM_USEIP'] = '<span>These number of segments of an IP address can be used for the fingerprint. ';
45
$HELP['WB_SECFORM_USEIP'] = '<b>4</b> means the whole IP address (this makes sense e.g. for servers with a stable IP address). ';
46
$HELP['WB_SECFORM_USEIP'] = '<b>2</b> is a good compromise, because at home there\'s often the 24-hour reset and therefore only the first two segments keep constant. ';
47
$HELP['WB_SECFORM_USEIP'] = '<ul><li>4= xxx.xxx.xxx.xxx</li><li>3= xxx.xxx.xxx</li><li>2= xxx.xxx</li><li>1= xxx</li><li>0= no usage of the IP</li></ul></span>';
48
$HELP['WB_SECFORM_TOKENNAME'] = '<span>The name of the token. Coll. a token is often called TAN.</span>';
49
$HELP['WB_SECFORM_SECRET'] = '<span>A random key, that is being used for creating a TAN. Recommend are at least 20 digits.</span>';
50
$HELP['WB_SECFORM_SECRETTIME'] = '<span>Time (in seconds), until the secret-key will be renewed.</span>';
51
$HELP['WB_SECFORM_TIMEOUT'] = '<span>Time (in seconds), until the form-token is void.</span>';
52
$HELP['WB_SECFORM_USEFP'] = '<span>Require OS and browser for every TAN-validation additionally to the IP-address.</span>';
(2-2/2)