OSDN Git Service

Official 3.62 release. Thanks for your great works!
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / plugins / securityenforcer / english.php
1 <?php
2 /** English language file for NP_SECURITYENFORCER Plugin
3 */
4
5 // Plugin Options
6 define('_SECURITYENFORCER_OPT_QUICKMENU',                       'Show Admin Area in quick menu?');
7 define('_SECURITYENFORCER_OPT_DEL_UNINSTALL_DATA',      'Delete NP_SecurityEnforcer data table on uninstall?');
8 define('_SECURITYENFORCER_OPT_ENABLE',                          'Enable NP_SecurityEnforcer password and login checks?');
9 define('_SECURITYENFORCER_OPT_PWD_MIN_LENGTH',          'Minimum Length in characters of a user password. Integer. 8 is the default and 6 the minimum value:');
10 define('_SECURITYENFORCER_OPT_PWD_COMPLEXITY',          'Password Complexity Check. (How many character types should be present out of a-z, A-Z, 0-9, punctuation marks?):');
11 //define('_SECURITYENFORCER_OPT_SELECT_OFF_COMP',               'Off');
12 //define('_SECURITYENFORCER_OPT_SELECT_ONE_COMP',               'One character type');
13 //define('_SECURITYENFORCER_OPT_SELECT_TWO_COMP',               'Two character types');
14 //define('_SECURITYENFORCER_OPT_SELECT_THREE_COMP',             'Three character types');
15 //define('_SECURITYENFORCER_OPT_SELECT_FOUR_COMP',              'Four character types');
16 define('_SECURITYENFORCER_OPT_SELECT',                          'Off|0|One character type|1|Two character types|2|Three character types|3|Four character types|4');
17 define('_SECURITYENFORCER_OPT_MAX_FAILED_LOGIN',        'How many failed login attempts before locking the user account?');
18 define('_SECURITYENFORCER_OPT_LOGIN_LOCKOUT',           'After how many minutes should a locked account be released?');
19
20 //QuickMenu
21 define('_SECURITYENFORCER_ADMIN_TOOLTIP',                       'Manage NP_SecurityEnforcer Plugin');
22 define('_SECURITYENFORCER_ADMIN_UNLOCKED',                      ' has been unlocked. Remember to unlock the corresponding IP or Login Name.');
23 define('_SECURITYENFORCER_ADMIN_NONE_LOCKED',           'No Records Found.');
24
25 // ERRORS
26 define('_SECURITYENFORCER_ACCOUNT_CREATED',                     'Account has been created,but that password does not meet site requirements for length or complexity. <br />');
27 define('_SECURITYENFORCER_INSUFFICIENT_COMPLEXITY',     'This password does not meet site requirements for length or complexity. <br />');
28 define('_SECURITYENFORCER_MIN_PWD_LENGTH',                      '<br />Minimum password length:');
29 define('_SECURITYENFORCER_PWD_COMPLEXITY',                      '<br />Minimum number of character types ([a-z], [A-Z], [0-9], [-~!@#$%^&*()_+=,.<>?:;|]):');
30
31 //random words
32 define('_SECURITYENFORCER_UNLOCK',                                      'Unlock');
33 define('_SECURITYENFORCER_ENTITY',                                      'Entity');
34 define('_SECURITYENFORCER_LOCKED_ENTITIES',                     'Currently Locked Entities');
35
36 // Plugin desc
37 define('_SECURITYENFORCER_DESCRIPTION',                         'Enforces some password complexity rules and sets a maximum number of failed logins.');
38
39 // Log info
40 define('_SECURITYENFORCER_LOGIN_DISALLOWED',            'login disallowed by NP_SecurityEnforcer. login: %1$s, ip: %2$s');
41
42 // QuickMenu title
43 define('_SECURITYENFORCER_ADMIN_TITLE',                         'Security Enforcer Administration');
44
45 ?>