1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Various alt_auth improvements and bug fixes

This commit is contained in:
e107steved
2009-07-05 18:47:52 +00:00
parent 7723d9b836
commit dad824a8d2
7 changed files with 126 additions and 83 deletions

View File

@@ -4,38 +4,41 @@
| e107 website system - Language File.
|
| $Source: /cvs_backup/e107_0.8/e107_languages/English/lan_login.php,v $
| $Revision: 1.4 $
| $Date: 2009-03-06 20:09:08 $
| $Author: e107coders $
| $Revision: 1.5 $
| $Date: 2009-07-05 18:47:52 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
define("LAN_LOGIN_1", "User name");
define("LAN_LOGIN_2", "User password");
define("LAN_LOGIN_3", "Protected server");
define("LAN_LOGIN_4", "Please enter your details to gain access.");
define("LAN_LOGIN_5", "Click here to Sign-Up");
define("LAN_LOGIN_6", "Not accepting new members at this time");
define("LAN_LOGIN_7", "Enter visible code");
define("LAN_LOGIN_8", "Remember Me");
define("LAN_LOGIN_9", "Log In");
define("LAN_LOGIN_10", "Click to login");
define("LAN_LOGIN_11", "Register as a New User");
define("LAN_LOGIN_12", "Forgot Password");
define("LAN_LOGIN_13", "Please enter text in image");
define("LAN_LOGIN_14", "User attempted to login with unrecognised user name");
define("LAN_LOGIN_15", "User attempted to login with incorrect password");
define("LAN_LOGIN_16", "User attempted to login with username/password combination that was already in use");
define("LAN_LOGIN_17", "User password (hashed)");
define("LAN_LOGIN_18", "Auto-ban: More than 10 failed login attempts");
define("LAN_LOGIN_19", "> 10 failed login attempts");
define("LAN_LOGIN_20", "You left required field(s) blank");
define("LAN_LOGIN_21", "Incorrect login. The entered data doesn't match to a registered user. Check if you have the CAPS-LOCK key activated as logins on this site are case sensitive");
define("LAN_LOGIN_22", "You have not activated your account. You should have received an email with instructions on how to confirm your account. If not, please click <a href='".e_BASE."signup.php?resend'>here</a>.");
define("LAN_LOGIN_23", "Incorrect code entered.");
define("LAN_LOGIN_24", "That username/password combination is already in use.");
define("LAN_LOGIN_25", "Banned user attempted to login");
define("LAN_LOGIN_26", "Login fail - reason unknown");
define('LAN_LOGIN_1', 'User name');
define('LAN_LOGIN_2', 'User password');
define('LAN_LOGIN_3', 'Protected server');
define('LAN_LOGIN_4', 'Please enter your details to gain access.');
define('LAN_LOGIN_5', 'Click here to Sign-Up');
define('LAN_LOGIN_6', 'Not accepting new members at this time');
define('LAN_LOGIN_7', 'Enter visible code');
define('LAN_LOGIN_8', 'Remember Me');
define('LAN_LOGIN_9', 'Log In');
define('LAN_LOGIN_10', 'Click to login');
define('LAN_LOGIN_11', 'Register as a New User');
define('LAN_LOGIN_12', 'Forgot Password');
define('LAN_LOGIN_13', 'Please enter text in image');
define('LAN_LOGIN_14', 'User attempted to login with unrecognised user name');
define('LAN_LOGIN_15', 'User attempted to login with incorrect password');
define('LAN_LOGIN_16', 'User attempted to login with username/password combination that was already in use');
define('LAN_LOGIN_17', 'User password (hashed)');
define('LAN_LOGIN_18', 'Auto-ban: More than 10 failed login attempts');
define('LAN_LOGIN_19', '> 10 failed login attempts');
define('LAN_LOGIN_20', 'You left required field(s) blank');
define('LAN_LOGIN_21', "Incorrect login. The entered data doesn't match to a registered user. Check if you have the CAPS-LOCK key activated as logins on this site are case sensitive");
define('LAN_LOGIN_22', "You have not activated your account. You should have received an email with instructions on how to confirm your account. If not, please click <a href='".e_BASE."signup.php?resend'>here</a>.");
define('LAN_LOGIN_23', 'Incorrect code entered.');
define('LAN_LOGIN_24', 'That username/password combination is already in use.');
define('LAN_LOGIN_25', 'Banned user attempted to login');
define('LAN_LOGIN_26', 'Login fail - reason unknown');
define('LAN_LOGIN_27', 'User attempted to log in before responding to confirmation email');
define('LAN_LOGIN_28', 'Email');
define('LAN_LOGIN_29', 'Username or Email');
define('LAN_LOGIN_30', 'Error adding new alt_auth user to DB');
define('LAN_LOGIN_31', 'Your credentials could not be added to the system');
?>