You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.5 KiB
62 lines
2.5 KiB
<?php |
|
/** |
|
* CodeIgniter-Aauth |
|
* |
|
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make |
|
* easy some essential jobs such as login, permissions and access operations. |
|
* Despite ease of use, it has also very advanced features like groupping, |
|
* access management, public access etc.. |
|
* |
|
* @package CodeIgniter-Aauth |
|
* @author Magefly Team |
|
* @copyright 2014-2017 Emre Akay |
|
* @copyright 2018 Magefly |
|
* @license https://opensource.org/licenses/MIT MIT License |
|
* @link https://github.com/magefly/CodeIgniter-Aauth |
|
*/ |
|
|
|
/** |
|
* Account language strings. |
|
* |
|
* Language English |
|
* |
|
* @package CodeIgniter-Aauth |
|
* |
|
* @codeCoverageIgnore |
|
*/ |
|
return [ |
|
'linkBackToLogin' => 'Back to Login', |
|
'linkLogin' => 'Login', |
|
'linkRegister' => 'Register new Account', |
|
'linkRemindPassword' => 'Forgot Password?', |
|
|
|
'loginHeader' => 'Login', |
|
'loginLabelUsername' => 'Username', |
|
'loginLabelEmail' => 'Email address', |
|
'loginLabelPassword' => 'Password', |
|
'loginLabelRemember' => 'Remember me', |
|
'loginLabelSubmit' => 'Login', |
|
|
|
'registerHeader' => 'Create new Account', |
|
'registerLabelUsername' => 'Username', |
|
'registerLabelEmail' => 'Email address', |
|
'registerLabelPassword' => 'Password', |
|
'registerLabelRemember' => 'Remember me', |
|
'registerLabelSubmit' => 'Create Account', |
|
'registerRequired' => 'Required', |
|
|
|
'verificationHeader' => 'Account Verification', |
|
'verificationText' => 'You are only one step away to verify your new account.', |
|
'verificationLabelVerificationCode' => 'Verification Code', |
|
'verificationLabelSubmit' => 'Verify account', |
|
|
|
'remindPasswordHeader' => 'Remind Password', |
|
'remindPasswordText' => 'Forgot your password? <br />You can reset your password here.', |
|
'remindPasswordLabelEmail' => 'Email address', |
|
'remindPasswordLabelSubmit' => 'Send reset instructions', |
|
|
|
'resetPasswordHeader' => 'Reset Password', |
|
'resetPasswordText' => 'You are only one step away from your new password.', |
|
'resetPasswordLabelVerificationCode' => 'Verification Code', |
|
'resetPasswordLabelSubmit' => 'Send new password', |
|
];
|
|
|