Browse Source

updated Languages

- updated en/Aauth (fixed translation & updated comment)
- added de/Aauth (complete translated)
- added es/Aauth, fa/Aauth, fr/Aauth, id/Aauth, ru/Aauth, sv/Aauth, zh-CH/Aauth & zh-TW/Aauth as copy from en/Aauth
v3-dev
REJack 7 years ago
parent
commit
5c280ef742
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 73
      application/Language/de/Aauth.php
  2. 4
      application/Language/en/Aauth.php
  3. 69
      application/Language/es/Aauth.php
  4. 69
      application/Language/fa/Aauth.php
  5. 69
      application/Language/fr/Aauth.php
  6. 69
      application/Language/id/Aauth.php
  7. 69
      application/Language/ru/Aauth.php
  8. 69
      application/Language/sv/Aauth.php
  9. 69
      application/Language/zh-CN/Aauth.php
  10. 69
      application/Language/zh-TW/Aauth.php

73
application/Language/de/Aauth.php

@ -0,0 +1,73 @@
<?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
*/
/**
* Aauth language strings.
*
* Language German
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Bestätigung',
'subjectReset' => 'Passwort zurücksetzen',
'subjectResetSuccess' => 'Passwort zurückgesetzt',
'textVerification' => "Dein Bestätigungscode lautet: {code}. Du kannst auch den Link anklicken (oder deinem Browser aufrufen) \n\n {link}",
'textReset' => "Um dein Passwort zurückzusetzen folge (oder ruf ihn im Browser auf) diesem Link:\n\n {link}",
'textResetSuccess' => 'Du hast dein Passwort erfolgreich zurückgesetzt. Dein neues Passwort lautet: {password}',
'infoCreateSuccess' => 'Dein Benutzerkonto wurde erfolgreich erstellt. Du kannst dich jetzt einloggen.',
'infoCreateVerification' => 'Dein Benutzerkonto wurde erfolgreich erstellt. Eine E-Mail mit Informationen zur Bestätigung wurde versendet. ',
'noAccess' => 'Entschuldige, aber du hast kein Zugriffsrecht auf die angeforderte Seite.',
'notVerified' => 'Dein Account wurde bisher nicht bestätigt. Bitte prüfe deine E-Mails und bestätige deine Registrierung.',
'loginFailedEmail' => 'E-Mail-Adresse oder Passwort falsch.',
'loginFailedName' => 'Benutzername oder Passwort falsch.',
'loginFailedAll' => 'E-Mail-Adresse, Benutzername oder Passwort falsch.',
'loginAttemptsExceeded' => 'Du hast die maximale Anzahl Login versuche erreicht, dein Account wurde gesperrt.',
'invalidUserBanned' => 'Dieser Benutzer ist gesperrt, bitte kontaktierre den Webmaster.',
'invalidEmail' => 'Ungültige E-Mail-Adresse',
'invalidPassword' => 'Ungültiges Passwort',
'invalidUsername' => 'Ungültiger Benutzername',
'invalidTOTPCode' => 'Ungültiger Bestätigungscode',
'invalidRecaptcha' => 'Hupps, der eingegebene reCAPTCHA Text war falsch.',
'invalidVerficationCode' => 'Ungültiger Überprüfungs-Code',
'requiredUsername' => 'Benutzername wird benötigt',
'requiredTOTPCode' => 'Bestätigungscode wird benötigt',
'requiredGroupName' => 'Gruppen-Name wird benötigt',
'requiredPermName' => 'Berechtigungs-Regel-Name wird benötigt',
'existsAlreadyEmail' => 'Diese E-Mail-Adresse ist bereits registriert. Wenn du dein Passwort vergessen hast,
folge dem Link unten.',
'existsAlreadyUsername' => 'Der Benutzername wird bereits verwendet. Bitte wähle einen anderen Benutzernamen.
Wenn du dein Passwort vergessen hast, folge dem Link unten.',
'existsAlreadyGroup' => 'Diese Gruppe existiert bereits',
'existsAlreadyPerm' => 'Der Berechtigungs-Regel-Name wurde bereits verwendet',
'notFoundUser' => 'Der Benutzer existiert nicht',
'notFoundGroup' => 'Die Gruppe existiert nicht',
'notFoundSubgroup' => 'Die Untergruppe existiert nicht',
'alreadyMemberGroup' => 'Der Benutzer ist bereits in dieser Gruppe',
'alreadyMemberSubgroup' => 'Diese Untergruppe ist bereits dieser gruppe zugeordnet',
];

4
application/Language/en/Aauth.php

@ -18,6 +18,8 @@
/** /**
* Aauth language strings. * Aauth language strings.
* *
* Language English
*
* @package CodeIgniter-Aauth * @package CodeIgniter-Aauth
* *
* @codeCoverageIgnore * @codeCoverageIgnore
@ -53,7 +55,7 @@ return [
'requiredUsername' => 'Username required', 'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required', 'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required', 'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Group name required', 'requiredPermName' => 'Perm name required',
'existsAlreadyEmail' => 'Email address already exists on the system. Please enter a different email address.', '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.', 'existsAlreadyUsername' => 'Username already exists on the system. Please enter a different username.',

69
application/Language/es/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/fa/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/fr/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/id/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/ru/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/sv/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/zh-CN/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];

69
application/Language/zh-TW/Aauth.php

@ -0,0 +1,69 @@
<?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
*/
/**
* Aauth language strings.
*
* @package CodeIgniter-Aauth
*
* @codeCoverageIgnore
*/
return [
'subjectVerification' => 'Account Verification',
'subjectReset' => 'Reset Password',
'subjectResetSuccess' => 'Successful Pasword Reset',
'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 {link}",
'textResetSuccess' => 'Your password has successfully been reset. Your new password is: {password}',
'infoCreateSuccess' => 'Your account has successfully been created. You can now login.',
'infoCreateVerification' => 'Your account has successfully been created. A email has been sent to your email address with verification details..',
'noAccess' => 'Sorry, you do not have access to the resource you requested.',
'notVerified' => 'Your account has not been verified. Please check your email and verify your account.',
'loginFailedEmail' => 'Email Address and Password do not match.',
'loginFailedName' => 'Username and Password do not match.',
'loginFailedAll' => 'Email, Username or Password do not match.',
'loginAttemptsExceeded' => 'You have exceeded your login attempts, your account has now been locked.',
'invalidUserBanned' => 'This user is banned, please contact the system administrator.',
'invalidEmail' => 'Invalid Email address',
'invalidPassword' => 'Invalid Password',
'invalidUsername' => 'Invalid Username',
'invalidTOTPCode' => 'Invalid Authentication Code',
'invalidRecaptcha' => 'Sorry, the reCAPTCHA text entered was incorrect.',
'invalidVerficationCode' => 'Invalid Verification Code',
'requiredUsername' => 'Username required',
'requiredTOTPCode' => 'Authentication Code required',
'requiredGroupName' => 'Group name required',
'requiredPermName' => 'Perm name required',
'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.',
'existsAlreadyGroup' => 'Group name already exists',
'existsAlreadyPerm' => 'Permission name already exists',
'notFoundUser' => 'User does not exist',
'notFoundGroup' => 'Group does not exist',
'notFoundSubgroup' => 'Subgroup does not exist',
'alreadyMemberGroup' => 'User is already member of group',
'alreadyMemberSubgroup' => 'Subgroup is already member of group',
];
Loading…
Cancel
Save