Browse Source

updated Language/en/Aauth

- changed codestandard to CodeIgniter4 (phpcs)
- added document doc & class doc
- fixed code aligments
v3-dev
REJack 7 years ago
parent
commit
1691d9afee
  1. 105
      application/Language/en/Aauth.php

105
application/Language/en/Aauth.php

@ -1,55 +1,70 @@
<?php <?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
* @author Jacob Tomlinson
* @author Tim Swagger (Renowne, LLC) <tim@renowne.com>
* @author Raphael Jackstadt <info@rejack.de>
* @copyright 2014-2017 Emre Akay
* @copyright 2018 Magefly
* @license https://opensource.org/licenses/MIT MIT License
* @link https://github.com/magefly/CodeIgniter-Aauth
*/
/** /**
* Aauth language strings. * Aauth language strings.
* *
* @package Aauth * @package CodeIgniter-Aauth
* @author REJack <info@rejack.de>
* @copyright 2018 Magefly (https://github.com/magefly/)
* @license https://opensource.org/licenses/MIT MIT License
* @link https://github.com/magefly/CodeIgniter-Aauth
* @since Version 3.0.0
* @filesource
* *
* @codeCoverageIgnore * @codeCoverageIgnore
*/ */
return [ return [
'subjectVerification' => 'Account Verification', 'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password', 'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset', 'subjectResetSuccess' => 'Successful Pasword Reset',
'textVerification' => "Your verification code is: {0}. You can also click on (or copy and paste) the following link\n\n {1}", 'textVerification' => "Your verification code is: {code}. You can also click on (or copy and paste) the following link\n\n {link}",
'textReset' => "To reset your password click on (or copy and paste in your browser address bar) the link below:\n\n {0}", 'textReset' => "To reset your password click on (or copy and paste in your browser address bar) the link below:\n\n {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {0}', 'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'noAccess' => 'Sorry, you do not have access to the resource you requested.', 'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'notVerified' => 'Your account has not been verified. Please check your e-mail and verify your account.', 'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'loginFailedEmail' => 'E-mail Address and Password do not match.', 'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'loginFailedName' => 'Username and Password do not match.', 'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedAll' => 'E-mail, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.', 'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.', 'loginFailedAll' => 'Email, Username or Password do not match.',
'invalidEmail' => 'Invalid e-mail address', 'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidPassword' => 'Invalid password',
'invalidUsername' => 'Invalid Username', 'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidTOTPCode' => 'Invalid Authentication Code', 'invalidEmail' => 'Invalid Email address',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.', 'invalidPassword' => 'Invalid Password',
'invalidVercode' => 'Invalid Verification Code', 'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'requiredUsername' => 'Username required', 'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'requiredTOTPCode' => 'Authentication Code required', 'invalidVercode' => 'Invalid Verification Code',
'existsAlreadyEmail' => 'Email address already exists on the system. Please enter a different email address.', 'requiredUsername' => 'Username required',
'existsAlreadyUsername' => "Username already exists on the system. Please enter a different username.", 'requiredTOTPCode' => 'Authentication Code required',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists', 'existsAlreadyEmail' => 'Email address already exists on the system. Please enter a different email address.',
'existsAlreadyUsername' => 'Username already exists on the system. Please enter a different username.',
'notFoundUser' => 'User does not exist', 'existsAlreadyGroup' => 'Group name already exists',
'notFoundGroup' => 'Group does not exist', 'existsAlreadyPerm' => 'Permission name already exists',
'notFoundSubgroup' => 'Subgroup does not exist',
'notFoundUser' => 'User does not exist',
'alreadyMemberGroup' => 'User is already member of group', 'notFoundGroup' => 'Group does not exist',
'alreadyMemberSubgroup' => 'Subgroup is already member of group', 'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
]; ];

Loading…
Cancel
Save