├── .editorconfig ├── .gitignore ├── .php_cs ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── Source.md ├── changelog.php ├── composer.json ├── json ├── ar.json ├── de.json ├── es.json ├── fi.json ├── fr.json ├── hr.json ├── id.json ├── ka.json ├── ko.json ├── nl.json ├── pl.json ├── pt-BR.json ├── ru.json ├── sr.json ├── vi.json ├── zh-CN.json ├── zh-HK.json └── zh-TW.json ├── script ├── en │ ├── auth.php │ ├── en.json │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── todo.php ├── src ├── ar │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── az │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── be │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── bg │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── bn │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── bs │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ca │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── cs │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── cy │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── da │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── de-CH │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── de │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── el │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── es │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── et │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── eu │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── fa │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── fi │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── fr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── gl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── he │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── hi │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── hr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── hu │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── id │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── is │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── it │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ja │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ka │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── kk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── km │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ko │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── lt │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── lv │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── me │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── mk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── mn │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ms │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── nb │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ne │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── nl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── nn │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt-BR │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ro │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ru │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sc │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sq │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sv │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── sw │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── tg │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── th │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── tk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── tl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── tr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ug │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── uk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ur │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── uz-cyrillic │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── uz-latin │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── vi │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── zh-CN │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── zh-HK │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── zh-TW │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── todo.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | indent_style = space 12 | indent_size = 4 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | /.idea/ 3 | /vendor/ 4 | .DS_Store 5 | .php_cs.cache 6 | composer.lock 7 | .phpintel 8 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- 1 | 5 | Dariusz Rumiński 6 | This source file is subject to the MIT license that is bundled 7 | with this source code in the file LICENSE. 8 | EOF; 9 | $config = PhpCsFixer\Config::create() 10 | ->setRiskyAllowed(true) 11 | ->setRules([ 12 | '@PHP56Migration' => true, 13 | '@PHPUnit60Migration:risky' => true, 14 | '@Symfony' => true, 15 | '@Symfony:risky' => true, 16 | 'align_multiline_comment' => true, 17 | 'array_syntax' => ['syntax' => 'short'], 18 | 'blank_line_before_statement' => true, 19 | 'combine_consecutive_issets' => true, 20 | 'combine_consecutive_unsets' => true, 21 | 'compact_nullable_typehint' => true, 22 | 'escape_implicit_backslashes' => true, 23 | 'explicit_indirect_variable' => true, 24 | 'explicit_string_variable' => true, 25 | 'final_internal_class' => true, 26 | 'heredoc_to_nowdoc' => true, 27 | 'list_syntax' => ['syntax' => 'long'], 28 | 'method_chaining_indentation' => true, 29 | 'method_argument_space' => ['ensure_fully_multiline' => true], 30 | 'multiline_comment_opening_closing' => true, 31 | 'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']], 32 | 'no_null_property_initialization' => true, 33 | 'no_short_echo_tag' => true, 34 | 'no_superfluous_elseif' => true, 35 | 'no_unneeded_curly_braces' => true, 36 | 'no_unneeded_final_method' => true, 37 | 'no_unreachable_default_argument_value' => true, 38 | 'no_useless_else' => true, 39 | 'no_useless_return' => true, 40 | 'ordered_class_elements' => true, 41 | 'ordered_imports' => true, 42 | 'phpdoc_add_missing_param_annotation' => true, 43 | 'phpdoc_order' => true, 44 | 'phpdoc_types_order' => true, 45 | 'semicolon_after_instruction' => true, 46 | 'single_line_comment_style' => true, 47 | 'strict_comparison' => true, 48 | 'strict_param' => true, 49 | ]) 50 | ->setFinder( 51 | PhpCsFixer\Finder::create() 52 | ->exclude('tests/Fixtures') 53 | ->in(__DIR__) 54 | ) 55 | ; 56 | // special handling of fabbot.io service if it's using too old PHP CS Fixer version 57 | try { 58 | PhpCsFixer\FixerFactory::create() 59 | ->registerBuiltInFixers() 60 | ->registerCustomFixers($config->getCustomFixers()) 61 | ->useRuleSet(new PhpCsFixer\RuleSet($config->getRules())); 62 | } catch (PhpCsFixer\ConfigurationException\InvalidConfigurationException $e) { 63 | $config->setRules([]); 64 | } catch (UnexpectedValueException $e) { 65 | $config->setRules([]); 66 | } catch (InvalidArgumentException $e) { 67 | $config->setRules([]); 68 | } 69 | return $config; 70 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [3.0.2] 2016-05-11 4 | ### 5 | 6 | * *dimensions* in validation 7 | 8 | ## [3.0.0] 2016-04-24 9 | 10 | * v3: new directory for languages 11 | 12 | ## [2.0.40] 2016-03-12 13 | ### Added 14 | 15 | * todo list: in todo.md 16 | 17 | ## [2.0.36] 2016-03-07 18 | ### Added 19 | 20 | * *in_array* in validation 21 | 22 | ## [2.0.35] 2016-03-01 23 | ### Added 24 | * *distinct* in validation 25 | 26 | ## [2.0.34] 2016-02-27 27 | ### Added 28 | 29 | * *present* in validation 30 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at caouecs@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are **welcome** and will be fully **credited**. 4 | 5 | We accept contributions via Pull Requests on [Github](https://github.com/caouecs/Laravel-lang). 6 | 7 | ## How can I add a language in this project ? 8 | 9 | * fork this repository 10 | * create a directory in *src* with the short name of the language (ex: fr for French) from ISO-639-1 ( see [Wikipedia](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) ) 11 | * copy these four files of the English version with your translation : from *script/en* directory 12 | * run [PHP-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) 13 | * if installed to global, run `php-cs-fixer fix`. 14 | * if installed to project local, run `vendor/bin/php-cs-fixer fix`. 15 | * add a pull request with the name of the language 16 | * ex: [fr] New language 17 | 18 | ## How can I fix a file ? 19 | 20 | * fork this repository 21 | * update the file 22 | * run [PHP-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) 23 | * if installed to global, run `php-cs-fixer fix`. 24 | * if installed to project local, run `vendor/bin/php-cs-fixer fix`. 25 | * add a pull request with the name of the language 26 | * ex: [fr] Update validation for number in validation 27 | 28 | ## Status of files 29 | 30 | * todo.md 31 | 32 | ### Update todo file 33 | 34 | ```php 35 | php script/todo.php 36 | ``` -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | 3 | Copyright (c) 2016 caouecs 4 | 5 | > Permission is hereby granted, free of charge, to any person obtaining a copy 6 | > of this software and associated documentation files (the "Software"), to deal 7 | > in the Software without restriction, including without limitation the rights 8 | > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | > copies of the Software, and to permit persons to whom the Software is 10 | > furnished to do so, subject to the following conditions: 11 | > 12 | > The above copyright notice and this permission notice shall be included in 13 | > all copies or substantial portions of the Software. 14 | > 15 | > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | > THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Laravel-lang 2 | 3 | [![Stories in Ready](https://badge.waffle.io/caouecs/Laravel-lang.svg)](http://waffle.io/caouecs/Laravel-lang) 4 | 5 | In this repository, you can find the lang files for the framework PHP, [Laravel 4&5](http://www.laravel.com). 6 | 7 | ## Capital letters ( WIP ) 8 | 9 | Since Laravel 5.2, we can define letters capitalized. A new branch has been created to add this feature : `capital_letters`. 10 | 11 | We need your help to update validation files. 12 | 13 | ## Install 14 | 15 | #### Via Composer 16 | * For Laravel 5.* : run `composer require caouecs/laravel-lang:~3.0` in your project folder 17 | * For Laravel 5 : run `composer require caouecs/laravel4-lang:~2.0` in your project folder 18 | * For Laravel 4 : run `composer require caouecs/laravel4-lang:~1.0` in your project folder 19 | * Files of languages are in "vendor/caouecs/laravel-lang" directory 20 | * Copy the folders of languages that you want, in the *resources/lang* folder of your Laravel application (*app/lang* in Laravel 4). 21 | 22 | #### Via GitHub 23 | 24 | * Clone the [GitHub repository](https://github.com/caouecs/laravel-lang/) : *git clone https://github.com/caouecs/Laravel-lang.git* 25 | * Or download the [zip file](https://github.com/caouecs/laravel-lang/archive/master.zip) 26 | * Choose the branch: 27 | * `laravel4` for Laravel4 project 28 | * `master` for Laravel5 project 29 | * Copy the folders of languages that you want, in *resources/lang* folder of your Laravel application (*app/lang* in Laravel 4). 30 | 31 | #### Via SVN 32 | 33 | Run this in your project directory: 34 | 35 | ```sh 36 | # Laravel 5: 37 | svn export https://github.com/caouecs/Laravel-lang/trunk/src/[language-code] resources/lang/[language-code] 38 | 39 | # Laravel 4: 40 | svn export https://github.com/caouecs/Laravel-lang/branches/laravel4/[language-code] app/lang/[language-code] 41 | ``` 42 | 43 | Replace `[language-code]` by any of the languages listed [here](src). 44 | 45 | ## Usage [Laravel only] 46 | 47 | In the file *config/app.php*, change the value of *locale* by the short name of your language (*app/config/app.php* in Laravel 4). 48 | 49 | ## Change log 50 | 51 | Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently. 52 | 53 | ## Contributing 54 | 55 | Please see [CONTRIBUTING](CONTRIBUTING.md) for details. 56 | 57 | ## Status of files 58 | 59 | * Check the [todo.md](todo.md) file to see the missing translations. 60 | 61 | ## Projects based on this package 62 | 63 | * [LaravelLang by ARCANEDEV](https://github.com/ARCANEDEV/LaravelLang) - Translations manager and checker for Laravel 5. 64 | * [Laravel-lang by overtrue](https://github.com/overtrue/laravel-lang) - Command to add languages in your project. 65 | * [laravel-lang-installer by ablunier](https://github.com/ablunier/laravel-lang-installer) - Command for easily add languages to a Laravel project. 66 | * [laravel-lang-publisher by Andrey Helldar](https://github.com/andrey-helldar/laravel-lang-publisher) - Easy installation and update of translation files for your project. 67 | 68 | ## Credits 69 | 70 | - [caouecs](https://github.com/caouecs) 71 | - [All Contributors](https://github.com/caouecs/Laravel-lang/graphs/contributors) 72 | -------------------------------------------------------------------------------- /changelog.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'uz-cyrillic' => 'add new language : Uzbek cyrillic', 6 | 'yz-latin' => 'add new language : Uzbek latin', 7 | ], 8 | '2018-01-23' => [ 9 | 'lv' => 'fix rename validation file', 10 | 'pl' => 'validation.ipv4 and validation.ipv6 updated', 11 | ], 12 | '2018-01-19' => [ 13 | 'ug' => 'add new language : Uyghur', 14 | ], 15 | '2018-01-10' => [ 16 | 'lv' => 'add new language : Latvia', 17 | ], 18 | ]; 19 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "caouecs/laravel-lang", 3 | "description": "Languages for Laravel", 4 | "keywords": ["laravel", "languages", "lpm", "lang"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "caouecs", 9 | "email": "caouecs@caouecs.net" 10 | } 11 | ], 12 | "suggest": { 13 | "overtrue/laravel-lang": "Command to add languages in your project", 14 | "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5", 15 | "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project", 16 | "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project" 17 | }, 18 | "require-dev": { 19 | "friendsofphp/php-cs-fixer": "^2.10" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /json/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "تأكيد كلمة المرور", 3 | "E-Mail Address": "البريد الالكتروني", 4 | "Forgot Your Password?": "نسيت كلمة المرور؟", 5 | "If you did not request a password reset, no further action is required.": "إذا لم تقم بطلب استعادة كلمة المرور، لا تحتاج القيام بأي إجراء.", 6 | "Login": "تسجيل الدخول", 7 | "Logout": "تسجيل الخروج", 8 | "Name": "الاسم", 9 | "Password": "كلمة المرور", 10 | "Register": "تسجيل", 11 | "Remember Me": "تذكرني", 12 | "Reset Password": "استعادة كلمة المرور", 13 | "Reset Password Notification": "تنبيه استعادة كلمة المرور", 14 | "Send Password Reset Link": "أرسل رابط استعادة كلمة المرور", 15 | "You are receiving this email because we received a password reset request for your account.": "لقد استلمت هذا الإيميل لأننا استقبلنا طلباً لاستعادة كلمة مرور حسابك." 16 | } 17 | -------------------------------------------------------------------------------- /json/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Passwort bestätigen", 3 | "E-Mail Address": "E-Mail Adresse", 4 | "Forgot Your Password?": "Passwort vergessen?", 5 | "Login": "Einloggen", 6 | "Logout": "Ausloggen", 7 | "Name": "Name", 8 | "Password": "Passwort", 9 | "Register": "Registrieren", 10 | "Remember Me": "Angemeldet bleiben", 11 | "Reset Password": "Passwort zurücksetzen", 12 | "Send Password Reset Link": "Link zum Zurücksetzen des Passworts senden", 13 | "If you did not request a password reset, no further action is required.": "Falls sie den Link zum Zurücksetzen des Passworts nicht angefordert haben, können sie diese E-Mail ignorieren.", 14 | "Name": "Name", 15 | "Reset Password Notification": "Passwort zurücksetzen", 16 | "You are receiving this email because we received a password reset request for your account.": "Sie erhalten diese Nachricht, weil für ihren Account beantragt wurde das Passwort zurückzusetzen." 17 | } 18 | -------------------------------------------------------------------------------- /json/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "A fresh verification link has been sent to your email address.": "Se ha enviado un nuevo enlace de verificación a su correo electrónico.", 3 | "Confirm Password": "Confirmar contraseña", 4 | "E-Mail Address": "E-mail", 5 | "Error": "Error ", 6 | "Forgot Your Password?": "¿Olvidó su contraseña?", 7 | "Go Home": "Ir a inicio", 8 | "hi": "hola", 9 | "If you did not request a password reset, no further action is required.": "Si no ha solicitado este restablecimiento de contraseña, omita este correo electrónico.", 10 | "Login": "Entrar", 11 | "Logout": "Salir", 12 | "Name": "Nombre", 13 | "Oh no": "Oh no ", 14 | "Page Expired": "Página Expirada", 15 | "Page Not Found": "Página no encontrada", 16 | "Password": "Contraseña", 17 | "Register": "Registrar", 18 | "Remember Me": "Recuérdame", 19 | "Reset Password": "Restablecer contraseña", 20 | "Reset Password Notification": "Notificación de restablecimiento de contraseña", 21 | "Send Password Reset Link": "Enviar enlace para restablecer la contraseña", 22 | "Service Unavailable": "Servicio no disponible", 23 | "Sorry, the page you are looking for could not be found.": "Lo sentimos, la página que está buscando no se pudo encontrar.", 24 | "Sorry, you are making too many requests to our servers.": "Lo sentimos, estás haciendo demasiadas peticiones a nuestros servidores.", 25 | "Sorry, you are not authorized to access this page.": "Lo sentimos, no estás autorizado para acceder a esta página.", 26 | "Sorry, your session has expired. Please refresh and try again.": "Lo sentimos, tu sesión ha expirado. Por favor, actualice y vuelva a intentarlo.", 27 | "Sorry, we are doing some maintenance. Please check back soon.": "Lo sentimos, estamos haciendo un poco de mantenimiento. Por favor, vuelva pronto.", 28 | "Too Many Requests": "Demansiadas peticiones", 29 | "Unauthorized": "No autorizado", 30 | "Verify Your Email Address": "Verifica tu correo electrónico", 31 | "You are receiving this email because we received a password reset request for your account.": "Ha recibido este mensaje porque se solicitó un restablecimiento de contraseña para su cuenta." 32 | } 33 | -------------------------------------------------------------------------------- /json/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "Reset Password Notification": "Salasanan uudelleenasetusilmoitus", 3 | "You are receiving this email because we received a password reset request for your account.": 4 | "Saat tämän viestin koska saimme pyynnön vaihtaa salasanasi.", 5 | "Reset Password": "Vaihdan salasanani", 6 | "If you did not request a password reset, no further action is required.": 7 | "Jos et ole pyytänyt salasanan vaihtoa, sinun ei tarvitse tehdä mitään ja voit poistaa tämän viestin.", 8 | 9 | "Hello!": "Tervehdys.", 10 | "Whoops!": "Tapahtui virhe.", 11 | "Regards": "Terveisin", 12 | "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser: [:actionURL](:actionURL)": 13 | "Jos et pysty klikkaamaan \":actionText\" - nappia, leikkaa ja liimaa alla oleva URL\nselaimeesi: [:actionURL](:actionURL)" 14 | } 15 | -------------------------------------------------------------------------------- /json/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Confirmez le mot de passe", 3 | "E-Mail Address": "Adresse courriel", 4 | "Forgot Your Password?": "Vous avez oublié votre mot de passe ?", 5 | "If you did not request a password reset, no further action is required.": "Si vous n'avez pas demandé de réinitialisation de mot de passe, aucune autre action n'est requise.", 6 | "Login": "Connexion", 7 | "Logout": "Déconnexion", 8 | "Name": "Nom", 9 | "Password": "Mot de passe", 10 | "Register": "S'inscrire", 11 | "Remember Me": "Se souvenir de moi", 12 | "Reset Password": "Réinitialisation du mot de passe", 13 | "Reset Password Notification": "Notification de réinitialisation du mot de passe", 14 | "Send Password Reset Link": "Envoyer le lien de réinitialisation du mot de passe", 15 | "You are receiving this email because we received a password reset request for your account.": "Vous avez reçu ce courriel parce que nous avons reçu une demande de réinitialisation de mot de passe pour votre compte." 16 | } 17 | -------------------------------------------------------------------------------- /json/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Potvrdite zaporku", 3 | "E-Mail Address": "Adresa elektronske pošte", 4 | "Forgot Your Password?": "Zaboravili ste zaporku?", 5 | "If you did not request a password reset, no further action is required.": "Ukoliko niste zahtjevali promjenu zaporke, nije potrebno da preduzimate dalje korake.", 6 | "Login": "Prijava", 7 | "Logout": "Odjava", 8 | "Name": "Ime", 9 | "Password": "Zaporka", 10 | "Register": "Registracija", 11 | "Remember Me": "Zapamti me", 12 | "Reset Password": "Resetuj zaporku", 13 | "Reset Password Notification": "Obavijest o resetovanju zaporke", 14 | "Send Password Reset Link": "Pošalji poveznicu za reset zaporke", 15 | "You are receiving this email because we received a password reset request for your account.": "Ovaj e-mail Vam je poslat jer ste zahtjevali promjenu zaporke za vaš nalog." 16 | } 17 | -------------------------------------------------------------------------------- /json/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Konfirmasi Kata Sandi", 3 | "E-Mail Address": "Alamat Surel", 4 | "Forgot Your Password?": "Lupa Kata Sandi Anda?", 5 | "If you did not request a password reset, no further action is required.": "Jika anda tidak meminta reset kata sandi, anda tidak perlu melakukan apapun.", 6 | "Login": "Masuk", 7 | "Logout": "Keluar", 8 | "Name": "Nama", 9 | "Password": "Kata Sandi", 10 | "Register": "Daftar", 11 | "Remember Me": "Ingat Saya", 12 | "Reset Password": "Reset Kata Sandi", 13 | "Reset Password Notification": "Pemberitahuan Reset Kata Sandi", 14 | "Send Password Reset Link": "Kirim Tautan Reset Kata Sandi", 15 | "You are receiving this email because we received a password reset request for your account.": "Anda menerima surel ini karena kami menerima permintan reset kata sandi untuk akun anda." 16 | } 17 | -------------------------------------------------------------------------------- /json/ka.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "პაროლის დადასტურება", 3 | "E-Mail Address": "ელ-ფოსტა", 4 | "Forgot Your Password?": "პაროლი დაგავიწყდათ?", 5 | "If you did not request a password reset, no further action is required.": "თუ არ მოგითხოვიათ პაროლის შეცვლა, არანაირი საპასუხო ქმედება არ არის საჭირო.", 6 | "Login": "შესვლა", 7 | "Logout": "გასვლა", 8 | "Name": "სახელი", 9 | "Password": "პაროლი", 10 | "Register": "რეგისტრირება", 11 | "Remember Me": "დამიმახსოვრე", 12 | "Reset Password": "პაროლის აღდგენა", 13 | "Reset Password Notification": "პაროლის აღდგენის შეტყობინება", 14 | "Send Password Reset Link": "პაროლის აღსადგენი ლინკის გაგზავნა", 15 | "You are receiving this email because we received a password reset request for your account.": "თქვენ ხედავთ აღნიშნულ შეტყობინებას რადგან მივიღეთ თქვენი მოთხოვნა პაროლის აღდგენასთან დაკავშირებით." 16 | } -------------------------------------------------------------------------------- /json/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "비밀번호 확인", 3 | "E-Mail Address": "E-Mail 주소", 4 | "Forgot Your Password?": "비밀번호를 잊으셨나요?", 5 | "If you did not request a password reset, no further action is required.": "귀하께서 비밀번호 재설정을 요청하지 않으셨다면, 더이상 진행하지 마십시오.", 6 | "Login": "로그인", 7 | "Logout": "로그아웃", 8 | "Name": "이름", 9 | "Password": "비밀번호", 10 | "Register": "회원가입", 11 | "Remember Me": "ID 저장", 12 | "Reset Password": "비밀번호 재설정", 13 | "Reset Password Notification": "비밀번호 재설정 알림", 14 | "Send Password Reset Link": "비밀번호 재설정 링크 보내기", 15 | "You are receiving this email because we received a password reset request for your account.": "귀하의 계정에 비밀번호 재설정이 요청되어 해당 메일이 발송되었습니다." 16 | } 17 | -------------------------------------------------------------------------------- /json/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Wachtwoordbevestigen", 3 | "E-Mail Address": "E-Mailadres", 4 | "Forgot Your Password?": "Wachtwoord vergeten?", 5 | "If you did not request a password reset, no further action is required.": "Als je geen wachtwoord herstel hebt aangevraagd, is er geen verdere handeling nodig.", 6 | "Login": "Inloggen", 7 | "Logout": "Uitloggen", 8 | "Name": "Naam", 9 | "Password": "Wachtwoord", 10 | "Register": "Registreren", 11 | "Remember Me": "Onthoud me", 12 | "Reset Password": "Wachtwoord herstellen", 13 | "Reset Password Notification": "Wachtwoord herstellen notificatie", 14 | "Send Password Reset Link": "Verstuur wachtwoordherstel link", 15 | "You are receiving this email because we received a password reset request for your account.": "Je ontvangt deze email omdat we een wachtwoord herstel hebben ontvangen voor je account." 16 | } 17 | -------------------------------------------------------------------------------- /json/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Potwierdź hasło", 3 | "E-Mail Address": "Adres e-mail", 4 | "Forgot Your Password?": "Nie pamiętasz hasła?", 5 | "If you did not request a password reset, no further action is required.": "Jeśli nie chcesz resetować hasła, zignoruj tę wiadomość.", 6 | "Login": "Zaloguj się", 7 | "Logout": "Wyloguj się", 8 | "Name": "Imię i nazwisko", 9 | "Password": "Hasło", 10 | "Register": "Zarejestruj się", 11 | "Remember Me": "Zapamiętaj mnie", 12 | "Reset Password": "Zresetuj hasło", 13 | "Reset Password Notification": "Zresetuj hasło", 14 | "Send Password Reset Link": "Wyślij link resetujący hasło", 15 | "You are receiving this email because we received a password reset request for your account.": "Otrzymujesz ten e-mail, ponieważ otrzymaliśmy prośbę o zresetowanie hasła dla Twojego konta." 16 | } 17 | -------------------------------------------------------------------------------- /json/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Confirmar senha", 3 | "E-Mail Address": "Endereço de e-mail", 4 | "Forgot Your Password?": "Esqueceu a senha?", 5 | "If you did not request a password reset, no further action is required.": "Se você não solicitou essa redefinição de senha, ignore este e-mail.", 6 | "Login": "Entrar", 7 | "Logout": "Sair", 8 | "Name": "Nome", 9 | "Password": "Senha", 10 | "Register": "Registrar", 11 | "Remember Me": "Lembre-se de mim", 12 | "Reset Password": "Redefinir senha", 13 | "Reset Password Notification": "Notificação de redefinição de senha", 14 | "Send Password Reset Link": "Link de redefinição de senha enviado", 15 | "You are receiving this email because we received a password reset request for your account.": "Você recebeu esse e-mail porque foi solicitado uma redefinição de senha na sua conta." 16 | } 17 | -------------------------------------------------------------------------------- /json/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Подтверждение пароля", 3 | "E-Mail Address": "E-Mail адрес", 4 | "Forgot Your Password?": "Забыли пароль?", 5 | "If you did not request a password reset, no further action is required.": "Если Вы не запрашивали сброс пароля, то дополнительных действий не требуется.", 6 | "Login": "Войти", 7 | "Logout": "Выйти", 8 | "Name": "Имя", 9 | "Password": "Пароль", 10 | "Register": "Регистрация", 11 | "Remember Me": "Запомнить меня", 12 | "Reset Password": "Сбросить пароль", 13 | "Reset Password Notification": "Уведомление сброса пароля", 14 | "Send Password Reset Link": "Отправить ссылку сброса пароля", 15 | "You are receiving this email because we received a password reset request for your account.": "Вы получили это письмо, потому что мы получили запрос на сброс пароля для Вашей учетной записи." 16 | } 17 | -------------------------------------------------------------------------------- /json/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Potvrdite lozinku", 3 | "E-Mail Address": "Adresa elektronske pošte", 4 | "Forgot Your Password?": "Zaboravili ste lozinku?", 5 | "If you did not request a password reset, no further action is required.": "Ukoliko niste zahtevali promenu lozinke, nije potrebno da preduzimate dalje korake.", 6 | "Login": "Prijava", 7 | "Logout": "Odjava", 8 | "Name": "Ime", 9 | "Password": "Lozinka", 10 | "Register": "Registracija", 11 | "Remember Me": "Zapamti me", 12 | "Reset Password": "Resetuj lozinku", 13 | "Reset Password Notification": "Obaveštenje o resetovanju lozinke", 14 | "Send Password Reset Link": "Pošalji link za reset lozinke", 15 | "You are receiving this email because we received a password reset request for your account.": "Ovaj e-mail Vam je poslat jer ste zahtevali promenu lozinke za vaš nalog." 16 | } 17 | -------------------------------------------------------------------------------- /json/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "Xác nhận mật khẩu", 3 | "E-Mail Address": "Địa chỉ email", 4 | "Forgot Your Password?": "Quên mật khẩu?", 5 | "If you did not request a password reset, no further action is required.": "Nếu bạn không yêu cầu đặt lại mật khẩu, bạn không cần thực hiện thêm hành động nào.", 6 | "Login": "Đăng nhập", 7 | "Logout": "Đăng xuất", 8 | "Name": "Tên", 9 | "Password": "Mật khẩu", 10 | "Register": "Đăng ký", 11 | "Remember Me": "Ghi nhớ", 12 | "Reset Password": "Đặt lại mật khẩu", 13 | "Reset Password Notification": "Thông báo đặt lại mật khẩu", 14 | "Send Password Reset Link": "Gửi đường dẫn đặt lại mật khẩu", 15 | "You are receiving this email because we received a password reset request for your account.": "Bạn nhận được email này vì chúng tôi đã nhận được yêu cầu đặt lại mật khẩu cho tài khoản của bạn." 16 | } 17 | -------------------------------------------------------------------------------- /json/zh-CN.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "确认密码", 3 | "E-Mail Address": "E-Mail 地址", 4 | "Forgot Your Password?": "忘记密码?", 5 | "If you did not request a password reset, no further action is required.": "如果您未申请重置密码,请忽略此邮件。", 6 | "Login": "登录", 7 | "Logout": "注销", 8 | "Name": "用户名", 9 | "Password": "密码", 10 | "Register": "注册", 11 | "Remember Me": "记住我", 12 | "Reset Password": "重置密码", 13 | "Reset Password Notification": "重置密码通知", 14 | "Send Password Reset Link": "发送重置密码链接", 15 | "You are receiving this email because we received a password reset request for your account.": "您收到此电子邮件是因为我们收到了您帐户的密码重置请求。" 16 | } 17 | -------------------------------------------------------------------------------- /json/zh-HK.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "確認密碼", 3 | "E-Mail Address": "E-Mail 地址", 4 | "Forgot Your Password?": "忘記密碼?", 5 | "If you did not request a password reset, no further action is required.": "如果您未申請重置密碼,請忽略此郵件。", 6 | "Login": "登錄", 7 | "Logout": "註銷", 8 | "Name": "用户名", 9 | "Password": "密碼", 10 | "Register": "註冊", 11 | "Remember Me": "記住我", 12 | "Reset Password": "重置密碼", 13 | "Reset Password Notification": "重置密碼通知", 14 | "Send Password Reset Link": "發送重置密碼鏈接", 15 | "You are receiving this email because we received a password reset request for your account.": "您收到此電子郵件是因為我們收到了您帳户的密碼重置請求。" 16 | } 17 | -------------------------------------------------------------------------------- /json/zh-TW.json: -------------------------------------------------------------------------------- 1 | { 2 | "Confirm Password": "確認密碼", 3 | "E-Mail Address": "E-Mail 地址", 4 | "Forgot Your Password?": "忘記密碼?", 5 | "If you did not request a password reset, no further action is required.": "如果您未申請重置密碼,請忽略此郵件。", 6 | "Login": "登錄", 7 | "Logout": "註銷", 8 | "Name": "用戶名", 9 | "Password": "密碼", 10 | "Register": "註冊", 11 | "Remember Me": "記住我", 12 | "Reset Password": "重置密碼", 13 | "Reset Password Notification": "重置密碼通知", 14 | "Send Password Reset Link": "發送重置密碼鏈接", 15 | "You are receiving this email because we received a password reset request for your account.": "您收到此電子郵件是因為我們收到了您帳戶的密碼重置請求。" 16 | } 17 | -------------------------------------------------------------------------------- /script/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /script/en/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "A fresh verification link has been sent to your email address.": "A fresh verification link has been sent to your email address.", 3 | "Confirm Password": "Confirm Password", 4 | "E-Mail Address": "E-Mail Address", 5 | "Error": "Error", 6 | "Forgot Your Password?": "Forgot Your Password?", 7 | "Go Home": "Go Home", 8 | "hi": "hi", 9 | "If you did not request a password reset, no further action is required.": "If you did not request a password reset, no further action is required.", 10 | "Login": "Login", 11 | "Logout": "Logout", 12 | "Name": "Name", 13 | "Oh no": "Oh no", 14 | "Page Expired": "Page Expired", 15 | "Page Not Found": "Page Not Found", 16 | "Password": "Password", 17 | "Register": "Register", 18 | "Remember Me": "Remember Me", 19 | "Reset Password": "Reset Password", 20 | "Reset Password Notification": "Reset Password Notification", 21 | "Send Password Reset Link": "Send Password Reset Link", 22 | "Service Unavailable": "Service Unavailable", 23 | "Sorry, the page you are looking for could not be found.": "Sorry, the page you are looking for could not be found.", 24 | "Sorry, you are making too many requests to our servers.": "Sorry, you are making too many requests to our servers.", 25 | "Sorry, you are not authorized to access this page.": "Sorry, you are not authorized to access this page.", 26 | "Sorry, your session has expired. Please refresh and try again.": "Sorry, your session has expired. Please refresh and try again.", 27 | "Sorry, we are doing some maintenance. Please check back soon.": "Sorry, we are doing some maintenance. Please check back soon.", 28 | "Too Many Requests": "Too Many Requests", 29 | "Unauthorized": "Unauthorized", 30 | "Verify Your Email Address": "Verify Your Email Address", 31 | "You are receiving this email because we received a password reset request for your account.": "You are receiving this email because we received a password reset request for your account." 32 | } 33 | -------------------------------------------------------------------------------- /script/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 16 | 'next' => 'Next »', 17 | ]; 18 | -------------------------------------------------------------------------------- /script/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passwords must be at least six characters and match the confirmation.', 16 | 'reset' => 'Your password has been reset!', 17 | 'sent' => 'We have e-mailed your password reset link!', 18 | 'token' => 'This password reset token is invalid.', 19 | 'user' => "We can't find a user with that e-mail address.", 20 | ]; 21 | -------------------------------------------------------------------------------- /script/todo.php: -------------------------------------------------------------------------------- 1 | basePath = realpath($basePath); 39 | $this->excluded = $excluded; 40 | $this->load(); 41 | } 42 | 43 | /** 44 | * Returns object. 45 | * 46 | * @param string $basePath base path 47 | * @param array $excluded excluded directories 48 | * 49 | * @return TodoGenerator 50 | */ 51 | public static function make($basePath, $excluded = []) 52 | { 53 | return new self($basePath, $excluded); 54 | } 55 | 56 | /** 57 | * Save todo list. 58 | * 59 | * @param string $path path 60 | */ 61 | public function save($path) 62 | { 63 | file_put_contents($path, $this->output); 64 | } 65 | 66 | /** 67 | * Compare translations and generate file. 68 | */ 69 | private function load() 70 | { 71 | // Get English version 72 | $english = $this->getTranslations(__DIR__, 'en'); 73 | $languages = $this->getLanguages(); 74 | 75 | $this->output = "# Todo list\n\n"; 76 | $this->compareTranslations($english, $languages); 77 | } 78 | 79 | /** 80 | * Returns array of translations by language. 81 | * 82 | * @param string $directory directory 83 | * @param string $language language code 84 | * 85 | * @return array 86 | */ 87 | private function getTranslations($directory, $language) 88 | { 89 | $contentJson = ''; 90 | 91 | $directoryJson = ($language == 'en') ? '/en/' : '/../json/'; 92 | 93 | $fileJson = $directory.$directoryJson.$language.'.json'; 94 | 95 | if (file_exists($fileJson)) { 96 | $contentJson = json_decode(file_get_contents($fileJson), true); 97 | } 98 | 99 | return [ 100 | 'json' => $contentJson, 101 | 'auth' => include($directory.'/'.$language.'/auth.php'), 102 | 'pagination' => include($directory.'/'.$language.'/pagination.php'), 103 | 'passwords' => include($directory.'/'.$language.'/passwords.php'), 104 | 'validation' => include($directory.'/'.$language.'/validation.php'), 105 | ]; 106 | } 107 | 108 | /** 109 | * Returns list of languages. 110 | * 111 | * @return array 112 | */ 113 | private function getLanguages() 114 | { 115 | $directories = glob($this->basePath.'/*', GLOB_ONLYDIR); 116 | 117 | $languages = array_map(function ($dir) { 118 | $name = basename($dir); 119 | 120 | return in_array($name, $this->excluded, true) ? null : $name; 121 | }, $directories); 122 | 123 | return array_filter($languages); 124 | } 125 | 126 | /** 127 | * Compare translations. 128 | * 129 | * @param array $default language by default 130 | * @param array $languages others languages 131 | */ 132 | private function compareTranslations(array $default, array $languages) 133 | { 134 | // Return diff language by language 135 | foreach ($languages as $language) { 136 | $this->output .= "\n * ".$language.":\n"; 137 | $current = $this->getTranslations($this->basePath, $language); 138 | 139 | foreach ($default as $key => $values) { 140 | $valuesKeys = array_keys($values); 141 | 142 | foreach ($valuesKeys as $key2) { 143 | if (in_array($key2, ['custom', 'attributes'], true)) { 144 | continue; 145 | } 146 | 147 | if (!isset($current[$key][$key2])) { 148 | $this->output .= ' * '.$key.' : '.$key2." : not present\n"; 149 | } elseif ($current[$key][$key2] === $default[$key][$key2]) { 150 | $this->output .= ' * '.$key.' : '.$key2."\n"; 151 | } 152 | } 153 | } 154 | } 155 | } 156 | } 157 | 158 | TodoGenerator::make(__DIR__.'/../src')->save(__DIR__.'/../todo.md'); 159 | -------------------------------------------------------------------------------- /src/ar/auth.php: -------------------------------------------------------------------------------- 1 | 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', 16 | 'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ar/pagination.php: -------------------------------------------------------------------------------- 1 | '« السابق', 16 | 'next' => 'التالي »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ar/passwords.php: -------------------------------------------------------------------------------- 1 | 'يجب أن لا يقل طول كلمة المرور عن ستة أحرف، كما يجب أن تتطابق مع حقل التأكيد', 16 | 'reset' => 'تمت إعادة تعيين كلمة المرور', 17 | 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني', 18 | 'token' => '.رمز استعادة كلمة المرور الذي أدخلته غير صحيح', 19 | 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/az/auth.php: -------------------------------------------------------------------------------- 1 | 'İstifadəçi adı və ya şifrə səhvdir', 16 | 'throttle' => ':seconds saniyə ərzində yenidən cəhd edin', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/az/pagination.php: -------------------------------------------------------------------------------- 1 | '« Əvvəl', 16 | 'next' => 'Sonra »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/az/passwords.php: -------------------------------------------------------------------------------- 1 | 'Şifrə ən az 6 simvoldan ibarət olmalı və təkrarı ilə uyğun olmalıdır', 16 | 'reset' => 'Şifrə yeniləndi', 17 | 'sent' => 'Şifrə yeniləmə adresi sizə email olaraq göndərildi', 18 | 'token' => 'Bu şifrə yeniləmə kodu yanlışdır', 19 | 'user' => "Bu email'ə uyğun istifadəçi tapılmadı", 20 | ]; 21 | -------------------------------------------------------------------------------- /src/be/auth.php: -------------------------------------------------------------------------------- 1 | 'Імя карыстальніка і пароль не супадаюць.', 16 | 'throttle' => 'Занадта шмат спробаў ўваходу. Калі ласка, паспрабуйце яшчэ раз праз :seconds секунд.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/be/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 16 | 'next' => 'Наперад »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/be/passwords.php: -------------------------------------------------------------------------------- 1 | 'Пароль павінен быць не менш за шэсць знакаў і супадаць з пацвярджэннем.', 16 | 'reset' => 'Ваш пароль быў скінуты!', 17 | 'sent' => 'Спасылка на скід пароля была адпраўлена!', 18 | 'token' => 'Памылковы код скіду пароля.', 19 | 'user' => 'Не атрымалася знайсці карыстальніка з дадзеным электронным адрасам.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/bg/auth.php: -------------------------------------------------------------------------------- 1 | 'Неуспешно удостоверяване на потребител.', 16 | 'throttle' => 'Твърде много опити за вход. Моля, опитайте отново след :seconds секунди.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bg/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 16 | 'next' => 'Напред »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bg/passwords.php: -------------------------------------------------------------------------------- 1 | 'Паролата трябва да бъде поне шест знака и да съвпада.', 16 | 'reset' => 'Паролата е нулирана!', 17 | 'sent' => 'Изпратено е напомняне за вашата парола!', 18 | 'token' => 'Този токен за нулиране на парола е невалиден.', 19 | 'user' => 'Потребител с такъв e-mail адрес не може да бъде открит.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/bn/auth.php: -------------------------------------------------------------------------------- 1 | 'এই পরিচয়পত্র আমাদের রেকর্ডের সাথে মেলে না.', 16 | 'throttle' => 'লগইন করার জন্য অনেকগুলি চেষ্টা করেছেন. :seconds সেকেন্ড পরে আবার চেষ্টা করুন .', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bn/pagination.php: -------------------------------------------------------------------------------- 1 | '« আগে', 16 | 'next' => 'পরবর্তী »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bn/passwords.php: -------------------------------------------------------------------------------- 1 | 'পাসওয়ার্ডে কমপক্ষে ছয় অক্ষরের হতে হবে এবং নিশ্চিতকরণ মেলাতে হবে .', 16 | 'reset' => 'আপনার পাসওয়ার্ড পুনরায় সেট করা হয়েছে!', 17 | 'sent' => 'আমরা আপনার পাসওয়ার্ড পুনরায় সেট করার লিঙ্ক ইমেইল করেছি !', 18 | 'token' => 'এই পাসওয়ার্ড রিসেট টোকেন অবৈধ.', 19 | 'user' => 'আমরা এই ইমেল ঠিকানা দিয়ে ব্যবহারকারী খুঁজে পাচ্ছি না', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/bs/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bs/pagination.php: -------------------------------------------------------------------------------- 1 | '« Nazad', 16 | 'next' => 'Naprijed »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/bs/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lozinke moraju da budu šest karaktera i da se slaže sa potvrdnom lozinkom.', 16 | 'reset' => 'Lozinka je resetovana!', 17 | 'sent' => 'Poslan vam je e-mail za povrat lozinke!', 18 | 'token' => 'Ovaj token za resetovanje lozinke nije ispravan.', 19 | 'user' => 'Ne može se pronaći korisnik sa tom e-mail adresom.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ca/auth.php: -------------------------------------------------------------------------------- 1 | 'Aquestes credencials no concorden amb els nostres registres.', 16 | 'throttle' => 'Heu superat el nombre màxim d\'intents d\'accés. Per favor, torna a intentar-ho en :seconds segons.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ca/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 16 | 'next' => 'Següent »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ca/passwords.php: -------------------------------------------------------------------------------- 1 | 'Les contrasenyes han de contenir almenys 6 caràcters i coincidir.', 16 | 'reset' => 'La contrasenya s\'ha restablert!', 17 | 'sent' => 'T\'hem enviat per e-mail un enllaç per a reiniciar la teva contrasenya!', 18 | 'token' => 'Aquest token de recuperació de contrasenya és invàlid.', 19 | 'user' => 'No existeix cap usuari amb aquest correu.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/cs/auth.php: -------------------------------------------------------------------------------- 1 | 'Tyto přihlašovací údaje neodpovídají žadnému záznamu.', 16 | 'throttle' => 'Příliš mnoho pokusů o přihlášení. Zkuste to prosím znovu za :seconds vteřin.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/cs/pagination.php: -------------------------------------------------------------------------------- 1 | '« předchozí', 16 | 'next' => 'další »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/cs/passwords.php: -------------------------------------------------------------------------------- 1 | 'Heslo musí obsahovat alespoň 6 znaků a musí se shodovat s ověřením.', 16 | 'reset' => 'Heslo bylo obnoveno!', 17 | 'sent' => 'E-mail s instrukcemi k obnovení hesla byl odeslán!', 18 | 'token' => 'Klíč pro obnovu hesla je nesprávný.', 19 | 'user' => 'Nepodařilo se najít uživatele s touto e-mailovou adresou.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/cy/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/cy/pagination.php: -------------------------------------------------------------------------------- 1 | '« Cynt', 16 | 'next' => 'Nesaf »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/cy/passwords.php: -------------------------------------------------------------------------------- 1 | "Rhaid i'r cyfrinair fod o leiaf chwe nodyn o hyd ac yn matchio'r maes cadarnhau.", 16 | 'reset' => 'Mae dy gyfrinair wedi ei ail-osod!', 17 | 'sent' => "Rydym wedi e-bostio'r ddolen i ail-osod y cyfrinair!", 18 | 'token' => "Nid yw'r tocyn ail-osod cyfrinair yn ddilys.", 19 | 'user' => "Ni oes gennym ddefnyddiwr gyda'r cyfeiriad e-bost yna.", 20 | ]; 21 | -------------------------------------------------------------------------------- /src/da/auth.php: -------------------------------------------------------------------------------- 1 | 'De angivne oplysninger er ugyldige.', 16 | 'throttle' => 'For mange loginforsøg. Prøv igen om :seconds sekunder.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/da/pagination.php: -------------------------------------------------------------------------------- 1 | '« Forrige', 16 | 'next' => 'Næste »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/da/passwords.php: -------------------------------------------------------------------------------- 1 | 'Adgangskode skal minimum være 6 tegn og skal være tastet ens i begge felter.', 16 | 'reset' => 'Adgangskoden er blevet nulstillet!', 17 | 'sent' => 'Vi har sendt dig en e-mail til at nulstille din adgangskode!', 18 | 'token' => 'Koden til nulstilling af adgangskoden er ugyldig.', 19 | 'user' => 'Vi kan ikke finde en bruger med den e-mailadresse.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/de-CH/auth.php: -------------------------------------------------------------------------------- 1 | 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', 16 | 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/de-CH/pagination.php: -------------------------------------------------------------------------------- 1 | '« Zurück', 16 | 'next' => 'Weiter »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/de-CH/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passwörter müssen mindestens 6 Zeichen lang sein und korrekt bestätigt werden.', 16 | 'reset' => 'Das Passwort wurde zurückgesetzt!', 17 | 'sent' => 'Passworterinnerung wurde gesendet!', 18 | 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', 19 | 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/de/auth.php: -------------------------------------------------------------------------------- 1 | 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', 16 | 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/de/pagination.php: -------------------------------------------------------------------------------- 1 | '« Zurück', 16 | 'next' => 'Weiter »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/de/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passwörter müssen mindestens 6 Zeichen lang sein und korrekt bestätigt werden.', 16 | 'reset' => 'Das Passwort wurde zurückgesetzt!', 17 | 'sent' => 'Passworterinnerung wurde gesendet!', 18 | 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', 19 | 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/el/auth.php: -------------------------------------------------------------------------------- 1 | 'Τα στοιχεία αυτά δεν ταιριάζουν με τα δικά μας.', 16 | 'throttle' => 'Πολλές προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανά σε :seconds δευτερόλεπτα.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/el/pagination.php: -------------------------------------------------------------------------------- 1 | '« Προηγούμενη', 16 | 'next' => 'Επόμενη »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/el/passwords.php: -------------------------------------------------------------------------------- 1 | 'Το συνθηματικό πρέπει να έχει τουλάχιστον έξι χαρακτήρες και να ταιριάζει με την επαλήθευση.', 16 | 'reset' => 'Έχει γίνει επαναφορά του συνθηματικού!', 17 | 'sent' => 'Η υπενθύμιση του συνθηματικού εστάλη!', 18 | 'token' => 'Το κλειδί αρχικοποίησης του συνθηματικού δεν είναι έγκυρο.', 19 | 'user' => 'Δεν βρέθηκε χρήστης με το συγκεκριμένο email.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/es/auth.php: -------------------------------------------------------------------------------- 1 | 'Estas credenciales no coinciden con nuestros registros.', 16 | 'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/es/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 16 | 'next' => 'Siguiente »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/es/passwords.php: -------------------------------------------------------------------------------- 1 | 'Las contraseñas deben coincidir y contener al menos 6 caracteres', 16 | 'reset' => '¡Tu contraseña ha sido restablecida!', 17 | 'sent' => '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!', 18 | 'token' => 'El token de recuperación de contraseña es inválido.', 19 | 'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/et/auth.php: -------------------------------------------------------------------------------- 1 | 'Need andmed ei klapi meie kirjetega.', 16 | 'throttle' => 'Liiga palju sisselogimise katseid. Palun proovi uuesti :seconds sekundi pärast.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/et/pagination.php: -------------------------------------------------------------------------------- 1 | '« Eelmine', 16 | 'next' => 'Järgmine »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/et/passwords.php: -------------------------------------------------------------------------------- 1 | 'Parool peab olema vähemalt 6 tähemärki pikk ja vastama kinnitusele.', 16 | 'reset' => 'Sinu parool on lähtestatud!', 17 | 'sent' => 'Oleme saatnud sulle e-postiga parooli lähtestamise lingi!', 18 | 'token' => 'See parooli lähtestamise tunnus on vigane.', 19 | 'user' => 'Ei suutnud leida sellise e-posti aadressiga kasutajat.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/eu/auth.php: -------------------------------------------------------------------------------- 1 | 'Kredentzial hauek ez datoz bat gure erregistroekin.', 16 | 'throttle' => 'Atzipen saialdi gehiegi. Mesedez berriro saiatu :seconds segundo barru.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/eu/pagination.php: -------------------------------------------------------------------------------- 1 | '« Aurrekoa', 16 | 'next' => 'Hurrengoa »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/eu/passwords.php: -------------------------------------------------------------------------------- 1 | 'Pasahitzak gutxienez sei karaktere euki behar dituzte eta bat etorri behar dira.', 16 | 'reset' => 'Zure pasahitza berrezarritua izan da!', 17 | 'sent' => 'Zure pasahitza berrezartzeko esteka postaz bidali dizugu!', 18 | 'token' => 'Pasahitza berreskuratzeko tokena baliogabea da.', 19 | 'user' => 'Ezin izan dugu posta helbide horrekin bat datorren erabiltzailerik aurkitu.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/fa/auth.php: -------------------------------------------------------------------------------- 1 | 'مشخصات وارد شده با اطلاعات ما سازگار نیست.', 16 | 'throttle' => 'دفعات تلاش شما برای ورود بیش از حد مجاز است. لطفا پس از :seconds ثانیه مجددا تلاش فرمایید.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fa/pagination.php: -------------------------------------------------------------------------------- 1 | '« قبلی', 16 | 'next' => 'بعدی »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fa/passwords.php: -------------------------------------------------------------------------------- 1 | 'گذرواژه باید حداقل شش کاراکتر بوده و با تائیدیه گذرواژه یکسان باشد.', 16 | 'reset' => 'گذرواژه شما بازگردانی شد!', 17 | 'sent' => 'لینک بازگردانی گذرواژه به ایمیل شما ارسال شد.', 18 | 'token' => 'مشخصه‌ی بازگردانی گذرواژه معتبر نیست.', 19 | 'user' => 'ما کاربری با این نشانی ایمیل نداریم!', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/fi/auth.php: -------------------------------------------------------------------------------- 1 | 'Kirjautuminen epäonnistui.', 16 | 'throttle' => 'Liian monta kirjautumisyritystä. Yritä uudelleen :seconds sekunnin kuluttua.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fi/pagination.php: -------------------------------------------------------------------------------- 1 | '« Edellinen', 16 | 'next' => 'Seuraava »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fi/passwords.php: -------------------------------------------------------------------------------- 1 | 'Salasanan on oltava vähintään kuusi merkkiä pitkä ja vastattava vahvistuskentän arvoa.', 16 | 'reset' => 'Salasana on resetoitu!', 17 | 'sent' => 'Resetointilinkki lähetetty sähköpostitse!', 18 | 'token' => 'Resetointitunniste on viallinen.', 19 | 'user' => 'Sähköpostiosoitteella ei löydy käyttäjää.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/fr/auth.php: -------------------------------------------------------------------------------- 1 | 'Ces identifiants ne correspondent pas à nos enregistrements', 16 | 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Précédent', 16 | 'next' => 'Suivant »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/fr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Les mots de passe doivent contenir au moins six caractères et être identiques.', 16 | 'reset' => 'Votre mot de passe a été réinitialisé !', 17 | 'sent' => 'Nous vous avons envoyé par courriel le lien de réinitialisation du mot de passe !', 18 | 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.", 19 | 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse courriel.", 20 | ]; 21 | -------------------------------------------------------------------------------- /src/gl/auth.php: -------------------------------------------------------------------------------- 1 | 'Estas credenciais non coinciden cos nosos rexistros.', 16 | 'throttle' => 'Demasiados intentos de acceso. Por favor inténteo de novo en :seconds segundos.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/gl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 16 | 'next' => 'Seguinte »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/gl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Os contrasinais deben conter polo menos seis caracteres e coincidir.', 16 | 'reset' => 'O teu contrasinal foi restablecido!', 17 | 'sent' => 'Enviámosche por correo electrónico o enlace de restablecemento do contrasinal!', 18 | 'token' => 'Este token de restablecemento do contrasinal non é válido.', 19 | 'user' => 'Non podemos atopar un usuario con ese correo electrónico.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/he/auth.php: -------------------------------------------------------------------------------- 1 | 'פרטים אלה אינם תואמים את רישומינו.', 16 | 'throttle' => 'ניסיונות כניסה רבים מדי. אנא נסו שוב בעוד :seconds שניות.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/he/pagination.php: -------------------------------------------------------------------------------- 1 | '« הקודם', 16 | 'next' => 'הבא »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/he/passwords.php: -------------------------------------------------------------------------------- 1 | 'סיסמאות חייבות להיות באורך 6 תווים ולהיות תואמות לערך של שדה אימות הסיסמה.', 16 | 'reset' => 'הסיסמה אופסה!', 17 | 'sent' => 'קישור לאיפוס הסיסמה נשלח אליך באימייל', 18 | 'token' => 'אסימון איפוס הסיסמה הזה לא תקני.', 19 | 'user' => 'לא הצלחנו למצוא משתמש עם כתובת האימייל הזאת.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/hi/auth.php: -------------------------------------------------------------------------------- 1 | 'ये साख हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।', 16 | 'throttle' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hi/pagination.php: -------------------------------------------------------------------------------- 1 | '« पिछला', 16 | 'next' => 'अगला »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hi/passwords.php: -------------------------------------------------------------------------------- 1 | 'पासवर्ड में कम से कम छः वर्ण होने चाहिए और पुष्टि से मेल खाने चाहिए।', 16 | 'reset' => 'आपका पासवर्ड रीसेट कर दिया गया है!', 17 | 'sent' => 'हमने आपको एक पासवर्ड रीसेट लिंक ई-मेल किया है!', 18 | 'token' => 'यह पासवर्ड रीसेट टोकन अमान्य है।', 19 | 'user' => 'हमें उस ई-मेल पते के साथ एक उपयोगकर्ता नहीं मिल सकता है।', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/hr/auth.php: -------------------------------------------------------------------------------- 1 | 'Ovi podaci ne odgovaraju našima.', 16 | 'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Prethodna', 16 | 'next' => 'Sljedeća »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lozinke moraju biti duge barem 6 znakova i moraju odgovarati potvrdi.', 16 | 'reset' => 'Lozinka je postavljena!', 17 | 'sent' => 'Poveznica za ponovono postavljanje lozinke je poslana!', 18 | 'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.', 19 | 'user' => 'Korisnik nije pronađen.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/hu/auth.php: -------------------------------------------------------------------------------- 1 | 'Rossz email-jelszó páros.', 16 | 'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hu/pagination.php: -------------------------------------------------------------------------------- 1 | '« Előző', 16 | 'next' => 'Következő »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/hu/passwords.php: -------------------------------------------------------------------------------- 1 | 'A jelszónak legalább hat karakterből kell állnia és egyeznie kell a jelszó megerősítéssel.', 16 | 'reset' => 'Az új jelszó beállítva!', 17 | 'sent' => 'Jelszó-emlékeztető elküldve!', 18 | 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', 19 | 'user' => 'Nem található felhasználó a megadott email címmel.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/id/auth.php: -------------------------------------------------------------------------------- 1 | 'Identitas tersebut tidak cocok dengan data kami.', 16 | 'throttle' => 'Terlalu banyak usaha masuk. Silahkan coba lagi dalam :seconds detik.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/id/pagination.php: -------------------------------------------------------------------------------- 1 | '« Sebelumnya', 16 | 'next' => 'Berikutnya »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/id/passwords.php: -------------------------------------------------------------------------------- 1 | 'Kata sandi minimal harus memiliki enam karakter dan cocok dengan konfirmasi.', 16 | 'reset' => 'Kata sandi Anda sudah direset!', 17 | 'sent' => 'Kami sudah mengirim surel yang berisi tautan untuk mereset kata sandi Anda!', 18 | 'token' => 'Token pengaturan ulang kata sandi tidak sah.', 19 | 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat surel tersebut.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/is/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/is/pagination.php: -------------------------------------------------------------------------------- 1 | '« Fyrri', 16 | 'next' => 'Næsta »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/is/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lykilorðið verður að innihalda að minnsta kosti 6 stafi.', 16 | 'reset' => 'Lykilorðið þitt hefur verið endurstillt!', 17 | 'sent' => 'Við sendum þér tölvupóst með slóð til að endurheimta lykilorðið þitt.', 18 | 'token' => 'Kóðinn til að endurheimta lykilorðið er rangur.', 19 | 'user' => 'Notandi með þetta netfang finnst ekki.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/it/auth.php: -------------------------------------------------------------------------------- 1 | 'Credenziali non corrispondenti ai dati registrati.', 16 | 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/it/pagination.php: -------------------------------------------------------------------------------- 1 | '« Precedente', 16 | 'next' => 'Successivo »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/it/passwords.php: -------------------------------------------------------------------------------- 1 | 'Le password devono essere di almeno 6 caratteri e devono coincidere.', 16 | 'reset' => 'La password è stata reimpostata!', 17 | 'sent' => 'Promemoria della password inviato!', 18 | 'token' => 'Questo token per la reimpostazione della password non è valido.', 19 | 'user' => 'Non esiste un utente associato a questo indirizzo e-mail.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ja/auth.php: -------------------------------------------------------------------------------- 1 | '認証情報と一致するレコードがありません。', 16 | 'throttle' => 'ログインの試行回数が多すぎます。:seconds 秒後にお試しください。', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ja/pagination.php: -------------------------------------------------------------------------------- 1 | '« 前', 16 | 'next' => '次 »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ja/passwords.php: -------------------------------------------------------------------------------- 1 | 'パスワードは6文字以上かつ確認フィールドと一致していなければなりません。', 16 | 'reset' => 'パスワードをリセットしました。', 17 | 'sent' => 'パスワードリマインダーを送信しました。', 18 | 'token' => 'このパスワードリセットトークンは無効です。', 19 | 'user' => 'このメールアドレスに一致するユーザーを見つけることが出来ませんでした。', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ka/auth.php: -------------------------------------------------------------------------------- 1 | 'მომხმარებელი ამ მონაცემებით არ არსებობს.', 16 | 'throttle' => 'წარუმატებელი ავტორიზაცია. გთხოვთ, სცადოთ :seconds წამში.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ka/pagination.php: -------------------------------------------------------------------------------- 1 | '« წინა', 16 | 'next' => 'შემდეგი »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ka/passwords.php: -------------------------------------------------------------------------------- 1 | 'პაროლი უნდა შედგებოდეს მინიმუმ 6 სიმბოლოსგან და ემთხვეოდეს დადასტურებას.', 16 | 'reset' => 'თქვენი პაროლი განახლებულია!', 17 | 'sent' => 'თქვენს ელ.ფოსტაზე მიიღებთ პაროლის განახლების ბმულს!', 18 | 'token' => 'პაროლის განახლების კოდი არასწორია.', 19 | 'user' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/kk/auth.php: -------------------------------------------------------------------------------- 1 | 'Тіркелгі деректері біздің жазбаларымызға сай емес.', 16 | 'throttle' => 'Кіру әрекеті тым көп болды. :seconds секундтан соң қайталап көріңіз.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/kk/pagination.php: -------------------------------------------------------------------------------- 1 | '« Алдыңғы', 16 | 'next' => 'Келесі »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/kk/passwords.php: -------------------------------------------------------------------------------- 1 | 'Құпиясөздердің ұзындығы кемінде алты таңба болуы және ол растауға сәйкес болуы керек.', 16 | 'reset' => 'Құпия сөзіңіз қайта орнатылды!', 17 | 'sent' => 'Сізге құпия сөзді қайта орнату сілтемесін жібердік!', 18 | 'token' => 'Осы құпиясөзді қайта орнату таңбалауышы жарамсыз.', 19 | 'user' => 'Бұл электрондық поштамен ешбір пайдаланушыны таба алмадық.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/km/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/km/pagination.php: -------------------------------------------------------------------------------- 1 | '« មុន', 16 | 'next' => 'បន្ទាប់ »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/km/passwords.php: -------------------------------------------------------------------------------- 1 | 'ពាក្យសម្ងាត់ត្រូវតែមានយ៉ាងហោចណាស់ប្រាំមួយតួអក្សរនិងផ្គូផ្គងជាមួយការបញ្ជាក់។', 16 | 'reset' => 'Password has been reset!', 17 | 'sent' => 'ពាក្យសម្ងាត់ដែលបានរំលឹកបានផ្ញើរួចរាល់!', 18 | 'token' => 'ពាក្យសម្ងាត់ដែលកំណត់ឡើងវិញគឺមិនត្រឹមត្រូវទេ។', 19 | 'user' => 'យើងមិនអាចរកឃើញអ្នកប្រើដែលមានអាសយដ្ឋានអ៊ីមែលមួយនេះទេ។', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ko/auth.php: -------------------------------------------------------------------------------- 1 | '제출된 인증 정보가 레코드와 일치하지 않습니다.', 16 | 'throttle' => '너무 많은 로그인을 시도하였습니다. :seconds 초 후에 다시 시도하십시요.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ko/pagination.php: -------------------------------------------------------------------------------- 1 | '« 이전', 16 | 'next' => '다음 »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ko/passwords.php: -------------------------------------------------------------------------------- 1 | '비밀번호는 최소한 6자 이상이어야 하며 확인 항목과 일치해야 합니다.', 16 | 'reset' => '비밀번호가 변경되었습니다!', 17 | 'sent' => '비밀번호 재설정 링크를 이메일로 전송했습니다!', 18 | 'token' => '해당 비밀번호 재설정 토큰이 유효하지 않습니다.', 19 | 'user' => '해당 이메일을 사용하는 사용자를 찾을 수 없습니다.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ko/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute을(를) 동의해야 합니다.', 16 | 'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.', 17 | 'after' => ':attribute은(는) :date 이후 날짜여야 합니다.', 18 | 'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.', 19 | 'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.', 20 | 'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-)만 포함할 수 있습니다.', 21 | 'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.', 22 | 'array' => ':attribute은(는) 배열이어야 합니다.', 23 | 'before' => ':attribute은(는) :date 이전 날짜여야 합니다.', 24 | 'before_or_equal' => ':attribute은(는) :date 이전 날짜이거나 같은 날짜여야 합니다.', 25 | 'between' => [ 26 | 'numeric' => ':attribute은(는) :min에서 :max 사이여야 합니다.', 27 | 'file' => ':attribute은(는) :min에서 :max 킬로바이트 사이여야 합니다.', 28 | 'string' => ':attribute은(는) :min에서 :max 문자 사이여야 합니다.', 29 | 'array' => ':attribute은(는) :min에서 :max 개의 항목이 있어야 합니다.', 30 | ], 31 | 'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.', 32 | 'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.', 33 | 'date' => ':attribute은(는) 유효한 날짜가 아닙니다.', 34 | 'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.', 35 | 'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.', 36 | 'digits' => ':attribute은(는) :digits 자리 숫자여야 합니다.', 37 | 'digits_between' => ':attribute)은(는) :min에서 :max 자리 사이여야 합니다.', 38 | 'dimensions' => ':attribute은(는) 유효하지 않는 이미지 크기입니다.', 39 | 'distinct' => ':attribute 필드에 중복된 값이 있습니다.', 40 | 'email' => ':attribute은(는) 유효한 이메일 주소여야 합니다.', 41 | 'exists' => '선택된 :attribute은(는) 유효하지 않습니다.', 42 | 'file' => ':attribute은(는) 파일이어야 합니다.', 43 | 'filled' => ':attribute 필드는 값이 있어야 합니다.', 44 | 'gt' => [ 45 | 'numeric' => ':attribute의 값은 :value보다 커야 합니다.', 46 | 'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.', 47 | 'string' => ':attribute의 길이는 :value보다 길어야 합니다.', 48 | 'array' => ':attribute의 항목수는 :value개 보다 많아야 합니다.', 49 | ], 50 | 'gte' => [ 51 | 'numeric' => ':attribute의 값은 :value보다 같거나 커야 합니다.', 52 | 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.', 53 | 'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.', 54 | 'array' => ':attribute의 항목수는 :value개 보다 같거나 많아야 합니다.', 55 | ], 56 | 'image' => ':attribute은(는) 이미지여야 합니다.', 57 | 'in' => '선택된 :attribute은(는) 유효하지 않습니다.', 58 | 'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.', 59 | 'integer' => ':attribute은(는) 정수여야 합니다.', 60 | 'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.', 61 | 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.', 62 | 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.', 63 | 'json' => ':attribute은(는) JSON 문자열이어야 합니다.', 64 | 'lt' => [ 65 | 'numeric' => ':attribute의 값은 :value보다 작아야 합니다.', 66 | 'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.', 67 | 'string' => ':attribute의 길이는 :value보다 짧아야 합니다.', 68 | 'array' => ':attribute의 항목수는 :value개 보다 작아야 합니다.', 69 | ], 70 | 'lte' => [ 71 | 'numeric' => ':attribute의 값은 :value보다 같거나 작아야 합니다.', 72 | 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.', 73 | 'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.', 74 | 'array' => ':attribute의 항목수는 :value개 보다 같거나 작아야 합니다.', 75 | ], 76 | 'max' => [ 77 | 'numeric' => ':attribute은(는) :max보다 클 수 없습니다.', 78 | 'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.', 79 | 'string' => ':attribute은(는) :max자보다 클 수 없습니다.', 80 | 'array' => ':attribute은(는) :max개보다 많을 수 없습니다.', 81 | ], 82 | 'mimes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.', 83 | 'mimetypes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.', 84 | 'min' => [ 85 | 'numeric' => ':attribute은(는) 최소한 :min이어야 합니다.', 86 | 'file' => ':attribute은(는) 최소한 :min킬로바이트이어야 합니다.', 87 | 'string' => ':attribute은(는) 최소한 :min자이어야 합니다.', 88 | 'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.', 89 | ], 90 | 'not_in' => '선택된 :attribute이(가) 유효하지 않습니다.', 91 | 'not_regex' => ':attribute의 형식이 올바르지 않습니다.', 92 | 'numeric' => ':attribute은(는) 숫자여야 합니다.', 93 | 'present' => ':attribute 필드가 있어야 합니다.', 94 | 'regex' => ':attribute 형식이 유효하지 않습니다.', 95 | 'required' => ':attribute 필드는 필수입니다.', 96 | 'required_if' => ':other이(가) :value 일 때 :attribute 필드는 필수입니다.', 97 | 'required_unless' => ':other이(가) :value에 없다면 :attribute 필드는 필수입니다.', 98 | 'required_with' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.', 99 | 'required_with_all' => ':values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.', 100 | 'required_without' => ':values이(가) 없는 경우 :attribute 필드는 필수입니다.', 101 | 'required_without_all' => ':values이(가) 모두 없는 경우 :attribute 필드는 필수입니다.', 102 | 'same' => ':attribute와(과) :other은(는) 일치해야 합니다.', 103 | 'size' => [ 104 | 'numeric' => ':attribute은(는) :size (이)여야 합니다.', 105 | 'file' => ':attribute은(는) :size킬로바이트여야 합니다.', 106 | 'string' => ':attribute은(는) :size자여야 합니다.', 107 | 'array' => ':attribute은(는) :size개의 항목을 포함해야 합니다.', 108 | ], 109 | 'string' => ':attribute은(는) 문자열이어야 합니다.', 110 | 'timezone' => ':attribute은(는) 올바른 시간대 이어야 합니다.', 111 | 'unique' => ':attribute은(는) 이미 사용 중입니다.', 112 | 'uploaded' => ':attribute을(를) 업로드하지 못했습니다.', 113 | 'url' => ':attribute 형식은 유효하지 않습니다.', 114 | 115 | /* 116 | |-------------------------------------------------------------------------- 117 | | Custom Validation Language Lines 118 | |-------------------------------------------------------------------------- 119 | | 120 | | Here you may specify custom validation messages for attributes using the 121 | | convention "attribute.rule" to name the lines. This makes it quick to 122 | | specify a specific custom language line for a given attribute rule. 123 | | 124 | */ 125 | 126 | 'custom' => [ 127 | 'attribute-name' => [ 128 | 'rule-name' => 'custom-message', 129 | ], 130 | ], 131 | 132 | /* 133 | |-------------------------------------------------------------------------- 134 | | Custom Validation Attributes 135 | |-------------------------------------------------------------------------- 136 | | 137 | | The following language lines are used to swap attribute place-holders 138 | | with something more reader friendly such as E-Mail Address instead 139 | | of "email". This simply helps us make messages a little cleaner. 140 | | 141 | */ 142 | 143 | 'attributes' => [ 144 | ], 145 | ]; 146 | -------------------------------------------------------------------------------- /src/lt/auth.php: -------------------------------------------------------------------------------- 1 | 'Prisijungimo duomenys neatitinka.', 15 | 'throttle' => 'Perdaug bandymų prisijungti. Bandykite po :seconds sec.', 16 | ]; 17 | -------------------------------------------------------------------------------- /src/lt/pagination.php: -------------------------------------------------------------------------------- 1 | '« Ankstesnis', 16 | 'next' => 'Sekantis »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/lt/passwords.php: -------------------------------------------------------------------------------- 1 | 'Slaptažodis turi būti bent šešių simbolių ir sutapti su patvirtinimu.', 16 | 'reset' => 'Nustatytas naujas slaptažodis!', 17 | 'sent' => 'Naujo slaptažodžio nustatymo nuoroda išsiųsta', 18 | 'token' => 'Šis slaptažodžio raktas yra neteisingas.', 19 | 'user' => 'Vartotojas su tokiu el. pašu nerastas.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/lv/auth.php: -------------------------------------------------------------------------------- 1 | 'Šie dati neatbilst mūsu reģistram.', 16 | 'throttle' => 'Pārāk daudz pieteikšanās mēģinājumu. Lūdzu mēģiniet vēlreiz pēc :seconds sekundēm.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/lv/pagination.php: -------------------------------------------------------------------------------- 1 | '« Iepriekšējais', 16 | 'next' => 'Nākamais »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/lv/passwords.php: -------------------------------------------------------------------------------- 1 | 'Parolei jābūt vismaz 6 zīmes garai un jāatbilst apstiprinājumam.', 16 | 'reset' => 'Jūsu parole ir atjaunināta!', 17 | 'sent' => 'Mēs nosūtījām paroles maiņas linku uz jūsu e-pastu!', 18 | 'token' => 'Šāda zīme pie paroles maiņas nav atļauta.', 19 | 'user' => 'Mēs nevaram atrast lietotāju ar tādu e-pasta adresi.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/me/auth.php: -------------------------------------------------------------------------------- 1 | 'Neispravan username i/ili password.', 16 | 'throttle' => 'Previše neuspješnih pokušaja. Probajte ponovo za :seconds sekundi.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/me/pagination.php: -------------------------------------------------------------------------------- 1 | '« Prethodna', 16 | 'next' => 'Sledeća »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/me/passwords.php: -------------------------------------------------------------------------------- 1 | 'Password mora biti dugačak najmanje 6 karaktera i biti isti kao password u polju za potvrdu.', 16 | 'reset' => 'Vaš password je resetovan!', 17 | 'sent' => 'Poslali smo Vam link za reset Vašeg password-a!', 18 | 'token' => 'Token za reset ovog passworda nije validan.', 19 | 'user' => 'Ne možemo naći korisnika sa unijetom email adresom.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/mk/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/mk/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 16 | 'next' => 'Напред »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/mk/passwords.php: -------------------------------------------------------------------------------- 1 | 'Лозинката треба да биде најмалку шест карактери и да совпаѓа со потврдната лозинка.', 16 | 'reset' => 'Password has been reset!', 17 | 'sent' => 'Испратен емаил со инструкции за ресетирање на лозинка!', 18 | 'token' => 'Невалиден токен за ресетирање на лозинката.', 19 | 'user' => 'Не може да се пронајде корисник со таква емаил адреса.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/mn/auth.php: -------------------------------------------------------------------------------- 1 | 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', 16 | 'throttle' => 'Олон удаагийн буруу оролдого. :seconds секундийн дараа дахин оролдоно уу.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/mn/pagination.php: -------------------------------------------------------------------------------- 1 | '« Өмнөх', 16 | 'next' => 'Дараах »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/mn/passwords.php: -------------------------------------------------------------------------------- 1 | 'Нууц үг хамгийн багадаа 6-н тэмдэгтийн урттай байх бөгөөд баталгаажуулттай ижил байх ёстой.', 16 | 'reset' => 'Таний нууц үг шинэчлэгдсэн!', 17 | 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', 18 | 'token' => 'Алдаатай нууц үг сэргээх холбоос.', 19 | 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ms/auth.php: -------------------------------------------------------------------------------- 1 | 'Butiran ini tidak sepadan dengan rekod kami.', 16 | 'throttle' => 'Terlalu banyak percubaan log masuk. Sila cuba lagi dalam :seconds saat.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ms/pagination.php: -------------------------------------------------------------------------------- 1 | '« Sebelumnya', 16 | 'next' => 'Seterusnya »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ms/passwords.php: -------------------------------------------------------------------------------- 1 | 'Kata laluan mestilah sekurang-kurangnya enam aksara dan sepadan dengan pengesahan.', 16 | 'reset' => 'Kata laluan anda telah ditetapkan semula!', 17 | 'sent' => 'Kami telah e-mel pautan set semula kata laluan anda!', 18 | 'token' => 'Token set semula kata laluan ini tidak sah.', 19 | 'user' => 'Kami tidak dapat mencari pengguna dengan alamat e-mel tersebut.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/nb/auth.php: -------------------------------------------------------------------------------- 1 | 'Brukernavn og/eller passord er feil.', 16 | 'throttle' => 'For mange innloggingsforsøk. Vennligst prøv igjen om :seconds sekunder.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nb/pagination.php: -------------------------------------------------------------------------------- 1 | '« Forrige', 16 | 'next' => 'Neste »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nb/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passord skal ha minst seks tegn og være være likt bekreftelsen.', 16 | 'reset' => 'Passordet ble endret!', 17 | 'sent' => 'Vi har sendt deg en lenke du kan klikke på for å endre passordet ditt!', 18 | 'token' => 'Passord-nullstillingskoden er ikke gyldig.', 19 | 'user' => 'Vi finner ingen brukere med denne e-postadressen.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ne/auth.php: -------------------------------------------------------------------------------- 1 | 'यी प्रमाणहरू हाम्रो रेकर्ड संग मेल खादैनन्।', 16 | 'throttle' => 'धेरै लगिन प्रयास भयो। :seconds सेकेन्ड पछि फेरि प्रयास गर्नुहोस्।', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ne/pagination.php: -------------------------------------------------------------------------------- 1 | '« अघिल्लो', 16 | 'next' => 'अर्को »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ne/passwords.php: -------------------------------------------------------------------------------- 1 | 'पासवर्ड कम्तिमा छ वर्णको हुनु पर्छ र दाेहाेर्याइएकाे पासवर्ड संग मेल खानु पर्छ।', 16 | 'reset' => 'पासवर्ड रिसेट भयो!', 17 | 'sent' => 'हामीले पासवर्ड परिवर्तन गर्ने लिंक ईमेलमा पठाएका छौ!', 18 | 'token' => 'यो पासवर्ड रिसेट गर्ने टोकन अमान्य छ।', 19 | 'user' => 'दिइएको ईमेल प्रयोगकर्ता भेटिएन।', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/nl/auth.php: -------------------------------------------------------------------------------- 1 | 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', 16 | 'throttle' => 'Te veel mislukte loginpogingen. Probeer het over :seconds seconden nogmaals.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Vorige', 16 | 'next' => 'Volgende »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Wachtwoord moet minimaal zes tekens lang zijn en de wachtwoorden moeten overeenkomen.', 16 | 'reset' => 'Het wachtwoord van uw account is gewijzigd.', 17 | 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', 18 | 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', 19 | 'user' => 'Geen gebruiker bekend met het e-mailadres.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/nn/auth.php: -------------------------------------------------------------------------------- 1 | 'Brukarnamn og/eller passord er feil.', 16 | 'throttle' => 'For mange innloggingsforsøk. Ver venleg og prøv på nytt om :seconds sekund.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nn/pagination.php: -------------------------------------------------------------------------------- 1 | '« Førre', 16 | 'next' => 'Neste »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/nn/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passordet skal ha minst seks teikn og vere lik stadfestinga.', 16 | 'reset' => 'Passordet vart endra!', 17 | 'sent' => 'Vi har sendt deg ei lenke du kan klikke på for å endre passordet ditt!', 18 | 'token' => 'Koden for å nullstille passord er ikkje gyldig.', 19 | 'user' => 'Vi finn ingen brukarar med denne e-postadressen.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/pl/auth.php: -------------------------------------------------------------------------------- 1 | 'Błędny login lub hasło.', 16 | 'throttle' => 'Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Poprzednia', 16 | 'next' => 'Następna »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Hasło musi mieć przynajmniej sześć znaków i zgadzać się z potwierdzeniem.', 16 | 'reset' => 'Hasło zostało zresetowane!', 17 | 'sent' => 'Przypomnienie hasła zostało wysłane!', 18 | 'token' => 'Token resetowania hasła jest nieprawidłowy.', 19 | 'user' => 'Nie znaleziono użytkownika z takim adresem e-mail.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/pt-BR/auth.php: -------------------------------------------------------------------------------- 1 | 'Credenciais informadas não correspondem com nossos registros.', 16 | 'throttle' => 'Você realizou muitas tentativas de login. Por favor, tente novamente em :seconds segundos.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pt-BR/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 16 | 'next' => 'Próxima »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pt-BR/passwords.php: -------------------------------------------------------------------------------- 1 | 'A senha deve conter pelo menos seis caracteres e ser igual à confirmação.', 16 | 'reset' => 'Sua senha foi redefinida!', 17 | 'sent' => 'Enviamos um link para redefinir a sua senha por e-mail.', 18 | 'token' => 'Esse código de redefinição de senha é inválido.', 19 | 'user' => 'Não conseguimos encontrar nenhum usuário com o endereço de e-mail informado.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/pt/auth.php: -------------------------------------------------------------------------------- 1 | 'As credenciais indicadas não coincidem com as registadas no sistema.', 16 | 'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pt/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 16 | 'next' => 'Próxima »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/pt/passwords.php: -------------------------------------------------------------------------------- 1 | 'A palavra-passe deverá conter pelo menos seis carateres e ser igual à confirmação.', 16 | 'reset' => 'A palavra-passe foi redefinida!', 17 | 'sent' => 'O lembrete para a palavra-passe foi enviado!', 18 | 'token' => 'Este código de recuperação da palavra-passe é inválido.', 19 | 'user' => 'Não existe nenhum utilizador com o endereço de correio eletrónico indicado.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ro/auth.php: -------------------------------------------------------------------------------- 1 | 'Datele de identificare nu pot fi confirmate.', 16 | 'throttle' => 'Prea multe încercări de intrare în cont. Poți încerca din nou peste :seconds secunde.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ro/pagination.php: -------------------------------------------------------------------------------- 1 | '« Înapoi', 16 | 'next' => 'Înainte »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ro/passwords.php: -------------------------------------------------------------------------------- 1 | 'Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.', 16 | 'reset' => 'Parola a fost resetată!', 17 | 'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!', 18 | 'token' => 'Codul de resetare a parolei este greșit.', 19 | 'user' => 'Nu există niciun utilizator cu această adresă de e-mail.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ru/auth.php: -------------------------------------------------------------------------------- 1 | 'Имя пользователя и пароль не совпадают.', 17 | 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте еще раз через :seconds секунд.', 18 | ]; 19 | -------------------------------------------------------------------------------- /src/ru/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 16 | 'next' => 'Вперёд »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ru/passwords.php: -------------------------------------------------------------------------------- 1 | 'Пароль должен быть не менее шести символов и совпадать с подтверждением.', 16 | 'reset' => 'Ваш пароль был сброшен!', 17 | 'sent' => 'Ссылка на сброс пароля была отправлена!', 18 | 'token' => 'Ошибочный код сброса пароля.', 19 | 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sc/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sc/pagination.php: -------------------------------------------------------------------------------- 1 | '« A in antis', 16 | 'next' => 'A pustis »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sc/passwords.php: -------------------------------------------------------------------------------- 1 | 'Is password depent èssere a su mancu de 6 caràteres e depent èssere uguales.', 16 | 'reset' => 'Sa password est istada torrada a impostare!', 17 | 'sent' => 'Regordu de sa password imbiadu!', 18 | 'token' => 'Custu token pro torrare a impostare sa password no est bàlidu.', 19 | 'user' => "Non s'agatat un'impitadore assotziadu a custu indiritzu email.", 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sk/auth.php: -------------------------------------------------------------------------------- 1 | 'Prihlasovacie údaje nie sú správne.', 16 | 'throttle' => 'Prekročený limit pokusov. Skúste znovu o :seconds sekúnd.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sk/pagination.php: -------------------------------------------------------------------------------- 1 | '« Predchádzajúca', 16 | 'next' => 'Nasledujúca »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sk/passwords.php: -------------------------------------------------------------------------------- 1 | 'Heslo sa musí zhodovať a obsahovať najmenej šesť znakov.', 16 | 'reset' => 'Heslo bolo zmenené!', 17 | 'sent' => 'Pripomienka k zmene hesla bola odoslaná!', 18 | 'token' => 'Klúč pre obnovu hesla je neplatný.', 19 | 'user' => 'Nepodarilo sa nájsť používateľa s touto e-mailovou adresou.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sl/auth.php: -------------------------------------------------------------------------------- 1 | 'Ti podatki se ne ujemajo z našimi.', 16 | 'throttle' => 'Preveč poskusov prijave. Prosimo, poskusite ponovno čez :seconds sekund.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Prejšnja', 16 | 'next' => 'Naslednja »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Geslo mora biti dolgo vsaj šest znakov in se mora ujemati z potrditvenim geslom.', 16 | 'reset' => 'Geslo je bilo spremenjeno!', 17 | 'sent' => 'Opomnik za geslo poslano!', 18 | 'token' => 'Ponastavitveni žeton je neveljaven.', 19 | 'user' => 'Ne moremo najti uporabnika s tem e-poštnim naslovom.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sq/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sq/pagination.php: -------------------------------------------------------------------------------- 1 | '« Prapa', 16 | 'next' => 'Para »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sq/passwords.php: -------------------------------------------------------------------------------- 1 | 'Fjalëkalimet duhet të jenë gjashtë karaktere dhe të përputhen me konfirmimin.', 16 | 'reset' => 'Fjalëkalimi u ndryshua!', 17 | 'sent' => 'Adresa për ndryshimin e fjalëkalimit u dërgua!', 18 | 'token' => 'Ky tallon për ndryshimin e fjalëkalimit është i pasaktë.', 19 | 'user' => 'Nuk mund të gjejmë një përdorues me atë adres email-i.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sr/auth.php: -------------------------------------------------------------------------------- 1 | 'Podaci ne odgovaraju ni jednom nalogu.', 16 | 'throttle' => 'Previše neuspelih pokušaja. Pokušajte ponovo za :seconds sekundi.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Nazad', 16 | 'next' => 'Napred »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lozinka mora imati najmanje 6 karaktera i da odgovara potvrdi.', 16 | 'reset' => 'Lozinka je resetovana!', 17 | 'sent' => 'Poslali smo reset link za vašu lozinku!', 18 | 'token' => 'Ukucana oznaka za resetovanje lozinke nije važeća.', 19 | 'user' => 'Nismo uspeli pronaći korisnika sa email adresom.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sv/auth.php: -------------------------------------------------------------------------------- 1 | 'Dessa uppgifter stämmer inte överens med vårt register.', 16 | 'throttle' => 'För många inloggningsförsök. Var vänlig försök igen om :seconds sekunder.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sv/pagination.php: -------------------------------------------------------------------------------- 1 | '« Föregående', 16 | 'next' => 'Nästa »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sv/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lösenord måste innehålla minst sex tecken och matcha varandra.', 16 | 'reset' => 'Lösenordet har blivit återställt!', 17 | 'sent' => 'Lösenordspåminnelse skickad!', 18 | 'token' => 'Koden för lösenordsåterställning är ogiltig.', 19 | 'user' => 'Det finns ingen användare med den e-postadressen.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/sw/auth.php: -------------------------------------------------------------------------------- 1 | 'Hii hati tambulishi hailingani na rekodi zetu.', 16 | 'throttle' => 'Majaribio mengi sana ya kuingia. Tafadhali jaribu tena katika :sekunde sekunde.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sw/pagination.php: -------------------------------------------------------------------------------- 1 | 'na laquo; Awali', 16 | 'next' => 'Ifuatayo na raquo;', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/sw/passwords.php: -------------------------------------------------------------------------------- 1 | 'Lazima nenosiri liwe angalau na urefu wa herufi sita na lazima lilingane na uthibitisho.', 16 | 'reset' => 'Nenosiri lako limefufuliwa upya!', 17 | 'sent' => 'Tumekutumia barua pepe ya fungo la kufufua nenosiri!', 18 | 'token' => 'Huu ufufuzi wa nenosiri si halali.', 19 | 'user' => 'Hatupati mtumiaji wa hiyo anuani ya barua pepe.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/tg/auth.php: -------------------------------------------------------------------------------- 1 | 'Номи истифодабаранда ва гузарвожа нодуруст мебошад.', 16 | 'throttle' => 'Теъдоди зиёди талош барои воридшудан ба система. Лутфан баъд аз :seconds сония боз кӯшиш намоед.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tg/pagination.php: -------------------------------------------------------------------------------- 1 | '« Қаблӣ', 16 | 'next' => 'Баъдӣ »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tg/passwords.php: -------------------------------------------------------------------------------- 1 | 'Гузарвожа бояд ҳадди ақал аз шаш аломат иборат буда бо гузарвожаи тасдиқкунанда мувофиқ бошад.', 16 | 'reset' => 'Гузарвожаи шумо бозгардонӣ карда шуд!', 17 | 'sent' => 'Ба шумо пайванд барои иваз намудани гузарвожа фиристода шуд!', 18 | 'token' => 'Ин код барои иваз намудани гузарвожа нодуруст мебошад.', 19 | 'user' => 'Чунин истифодабаранда бо суроғаи электронии зерин ёфт нашуд.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/th/auth.php: -------------------------------------------------------------------------------- 1 | 'ข้อมูลที่ใช้ในการยืนยันตัวตนไม่ถูกต้อง', 16 | 'throttle' => 'คุณได้พยายามเข้าระบบหลายครั้งเกินไป กรุณาลองใหม่ใน :seconds วินาทีข้างหน้า.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/th/pagination.php: -------------------------------------------------------------------------------- 1 | '« ก่อนหน้า', 16 | 'next' => 'ถัดไป »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/th/passwords.php: -------------------------------------------------------------------------------- 1 | 'รหัสผ่านต้องมีความยาวอย่างน้อยหกตัวอักษรและต้องตรงกับช่องยืนยันรหัสผ่าน', 16 | 'reset' => 'ทำการตั้งค่ารหัสผ่านใหม่แล้ว', 17 | 'sent' => 'ส่งเครื่องช่วยเตือนความจำรหัสผ่านแล้ว!', 18 | 'token' => 'ชุดรหัสสำหรับการเปลี่ยนรหัสผ่านไม่ถูกต้อง', 19 | 'user' => 'ไม่พบผู้ใช้งานที่ตรงกับอีเมล์นี้', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/tk/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 16 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tk/pagination.php: -------------------------------------------------------------------------------- 1 | '« Öňki', 16 | 'next' => 'Indiki »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tk/passwords.php: -------------------------------------------------------------------------------- 1 | 'Açarsöz 6 harpdan ybarat bolup, tassyklamasy bilen deň bolmaly.', 16 | 'reset' => 'Açarsöz üýtgedildi!', 17 | 'sent' => 'Açarsöz ýatlatmasy ugradyldy!', 18 | 'token' => 'Açarsöz tazeleme söz birligi ýalňyş.', 19 | 'user' => 'Bu e-mail adrese degişli ulanyjy tapylmady.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/tl/auth.php: -------------------------------------------------------------------------------- 1 | 'Ang credentials na ito ay hindi katugma ng nasa rekord namin.', 16 | 'throttle' => 'Sobrang daming pagtatangkang mag-login. Pakisubukan ulit sa :segundo segundo.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Nauna', 16 | 'next' => 'Susunod »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Ang password ay dapat di-kukulangin sa anim na characters ang haba at dapat tumugma sa kumpirmasyon.', 16 | 'reset' => 'Na-reset na ang password mo!', 17 | 'sent' => 'Na-email na namin sa iyo ang link sa pag-reset ng password!', 18 | 'token' => 'Ang token sa pag-reset ng password na ito ay imbalido.', 19 | 'user' => 'Hindi namin mahanap ang user na may ganyang email address.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/tr/auth.php: -------------------------------------------------------------------------------- 1 | 'Girilmiş olan kullanıcı verileri sistemdekiler ile eşleşmemektedir.', 16 | 'throttle' => 'Çok fazla oturum açma girişiminde bulundunuz. Lütfen :seconds saniye içerisinde tekrar deneyiz.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Önceki', 16 | 'next' => 'Sonraki »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/tr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Parolanız en az altı karakter olmalı ve doğrulama ile eşleşmelidir.', 16 | 'reset' => 'Parolanız sıfırlandı!', 17 | 'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!', 18 | 'token' => 'Parola sıfırlama adresi/kodu geçersiz.', 19 | 'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunmuyor.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ug/auth.php: -------------------------------------------------------------------------------- 1 | 'قوللانچى نامى ياكى پارولدا خاتالىق بار.', 16 | 'throttle' => 'مەشغۇلات قېتىم سانى بەك كۆپ بۇلۇپ كەتتى، يەنە :seconds سېكۇنتتىن كىيىن قايتا سىناپ بېقىڭ.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ug/pagination.php: -------------------------------------------------------------------------------- 1 | '« ئالدىنقى بەت', 16 | 'next' => 'كىيىنكى بەت »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ug/passwords.php: -------------------------------------------------------------------------------- 1 | 'پارول ئەڭ ئاز بولغاندىمۇ 6 خەتتىن تەركىپ تاپقان بۇلىشى ۋە ئۆز-ئارا جۈپلەشتۈرۈلگەن بۇلىشى كېرەك.', 16 | 'reset' => 'پارولنى قايتا بېكىتىش مۇۋاپىققىيەتلىك بولدى!', 17 | 'sent' => 'پارولنى قايتا بېكىتىش تورخېتى يوللاندى!', 18 | 'token' => 'پارولنى قايتا بېكىتىش ئىجازەت كودى ئىناۋەتسىز.', 19 | 'user' => 'بۇ تورخەت ئادىرىسىغا ماس كىلىدىغان قوللانچى نام تېپىلمىدى.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/uk/auth.php: -------------------------------------------------------------------------------- 1 | 'Ці облікові дані не збігаються з нашими записами.', 17 | 'throttle' => 'Занадто багато спроб входу. Будь ласка, спробуйте ще раз, через :seconds секунд.', 18 | ]; 19 | -------------------------------------------------------------------------------- /src/uk/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 16 | 'next' => 'Далі »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/uk/passwords.php: -------------------------------------------------------------------------------- 1 | 'Пароль повинен бути щонайменше 6 символів довжиною та співпадати з підтвердженням.', 16 | 'reset' => 'Ваш пароль змінено!', 17 | 'sent' => 'Ми надіслали на Вашу електронну адресу посилання для зміни пароля!', 18 | 'token' => 'Помилковий код для зміни пароля.', 19 | 'user' => 'Користувача з такою електронною адресою не знайдено.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/ur/auth.php: -------------------------------------------------------------------------------- 1 | 'یہ تفصیلات ہمارے ریکارڈ سے مطابقت نہیں رکھتیں۔', 16 | 'throttle' => 'لاگ اِن کرنے کی بہت زیادہ کوششیں۔ براہِ مہربانی :seconds سیکنڈ میں دوبارہ کوشش کریں۔', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ur/pagination.php: -------------------------------------------------------------------------------- 1 | '« گزشتہ', 16 | 'next' => 'آئندہ »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/ur/passwords.php: -------------------------------------------------------------------------------- 1 | 'پاس ورڈز لازماً کم از کم 6 کریکٹرز طویل ہوں اور لازماً تصدیق سے مطابقت رکھتے ہوں۔', 16 | 'reset' => 'آپ کا پاس ورڈ دوبارہ مرتب کر دیا گیا ہے۔', 17 | 'sent' => 'پاس ورڈ دوبارہ مرتب کرنے کے لیے ہم نے آپ کو لنک ای میل کر دیا ہے!', 18 | 'token' => 'پاس ورڈ مرتب کرنے کا یہ طریقہ نا قابلِ قبول ہے۔', 19 | 'user' => 'اس ای میل پتے کے ساتھ ہمیں کوئی صارف نہیں ملا۔', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/uz-cyrillic/auth.php: -------------------------------------------------------------------------------- 1 | 'Бундай маълумотларга эга фойдаланувчи мавжуд эмас.', 16 | 'throttle' => 'Кириш учун жуда кўп урунишлар аниқланди. Илтимос :seconds сониядан сўнг яна уриниб кўринг.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/uz-cyrillic/pagination.php: -------------------------------------------------------------------------------- 1 | '« Олдинги', 16 | 'next' => 'Кейинги »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/uz-cyrillic/passwords.php: -------------------------------------------------------------------------------- 1 | 'Кализ сўз камида 6 та белиган иборат бўлиши ва тасдиқланиши керак.', 16 | 'reset' => 'Сизнинг калит сўзингиз тикланди!', 17 | 'sent' => 'Калит сўзни тиклаш ҳаволасини электрон почта орқали юбордик!', 18 | 'token' => 'Ушбу калит сўзни қайта тиклаш белгиси (token) нотўғри.', 19 | 'user' => 'Ушбу электрон почта манзилли фойдаланувчи топилмади.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/uz-latin/auth.php: -------------------------------------------------------------------------------- 1 | 'Bunday maʼlumotlarga ega foydalanuvchi mavjud emas.', 16 | 'throttle' => 'Kirish uchun juda ko‘p urunishlar aniqlandi. Iltimos :seconds soniyadan so‘ng yana urinib ko‘ring.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/uz-latin/pagination.php: -------------------------------------------------------------------------------- 1 | '« Oldingi', 16 | 'next' => 'Keyingi »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/uz-latin/passwords.php: -------------------------------------------------------------------------------- 1 | 'Kaliz so‘z kamida 6 ta beligan iborat bo‘lishi va tasdiqlanishi kerak.', 16 | 'reset' => 'Sizning kalit so‘zingiz tiklandi!', 17 | 'sent' => 'Kalit so‘zni tiklash havolasini elektron pochta orqali yubordik!', 18 | 'token' => 'Ushbu kalit so‘zni qayta tiklash belgisi (token) noto‘g‘ri.', 19 | 'user' => 'Ushbu elektron pochta manzilli foydalanuvchi topilmadi.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/vi/auth.php: -------------------------------------------------------------------------------- 1 | 'Thông tin tài khoản không tìm thấy trong hệ thống.', 16 | 'throttle' => 'Vượt quá số lần đăng nhập cho phép. Vui lòng thử lại sau :seconds giây.', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/vi/pagination.php: -------------------------------------------------------------------------------- 1 | '« Trang sau', 16 | 'next' => 'Trang trước »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/vi/passwords.php: -------------------------------------------------------------------------------- 1 | 'Mật khẩu phải gồm 6 ký tự và khớp với phần xác nhận.', 16 | 'reset' => 'Mật khẩu mới đã được cập nhật!', 17 | 'sent' => 'Hướng dẫn cấp lại mật khẩu đã được gửi!', 18 | 'token' => 'Mã khôi phục mật khẩu không hợp lệ.', 19 | 'user' => 'Không tìm thấy người dùng với địa chỉ email này.', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/zh-CN/auth.php: -------------------------------------------------------------------------------- 1 | '用户名或密码错误。', 16 | 'throttle' => '您的尝试登录次数过多,请 :seconds 秒后再试。', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-CN/pagination.php: -------------------------------------------------------------------------------- 1 | '« 上一页', 16 | 'next' => '下一页 »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-CN/passwords.php: -------------------------------------------------------------------------------- 1 | '密码至少是六位字符并且应与确认密码匹配。', 16 | 'reset' => '密码重置成功!', 17 | 'sent' => '密码重置邮件已发送!', 18 | 'token' => '密码重置令牌无效。', 19 | 'user' => '找不到该邮箱对应的用户。', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/zh-HK/auth.php: -------------------------------------------------------------------------------- 1 | '用戶名或密碼錯誤', 16 | 'throttle' => '登入次數過多,請在 :seconds 秒後再試。', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-HK/pagination.php: -------------------------------------------------------------------------------- 1 | '« 上一頁', 16 | 'next' => '下一頁 »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-HK/passwords.php: -------------------------------------------------------------------------------- 1 | '密碼至少為六位字符且與密碼確認欄位的輸入相符。', 16 | 'reset' => '密碼重設已完成!', 17 | 'sent' => '密碼重設電郵經已寄出!', 18 | 'token' => '密碼重設碼不正確。', 19 | 'user' => '找不到該電郵地址所對應的用戶。', 20 | ]; 21 | -------------------------------------------------------------------------------- /src/zh-TW/auth.php: -------------------------------------------------------------------------------- 1 | '使用者名稱或密碼錯誤', 16 | 'throttle' => '嘗試登入太多次,請在 :seconds 秒後再試。', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-TW/pagination.php: -------------------------------------------------------------------------------- 1 | '« 上一頁', 16 | 'next' => '下一頁 »', 17 | ]; 18 | -------------------------------------------------------------------------------- /src/zh-TW/passwords.php: -------------------------------------------------------------------------------- 1 | '密碼至少要有六個字元且與密碼確認欄位一致。', 16 | 'reset' => '密碼已成功重設!', 17 | 'sent' => '密碼重設郵件已發送!', 18 | 'token' => '密碼重設隨機碼 (token) 無效。', 19 | 'user' => '找不到該電子郵件信箱對應的使用者。', 20 | ]; 21 | --------------------------------------------------------------------------------