diff --git a/.php_cs b/.php_cs index cea1c9cb8d1..a0519ba7958 100644 --- a/.php_cs +++ b/.php_cs @@ -1,79 +1,69 @@ in(__DIR__)->name('*.php'); - -return Config::create() - ->finder($finder) - ->fixers($fixers) - ->level(Symfony\CS\FixerInterface::PSR2_LEVEL) - ->setUsingCache(true); +$header = <<<'EOF' +This file is part of PHP CS Fixer. +(c) Fabien Potencier + Dariusz Rumiński +This source file is subject to the MIT license that is bundled +with this source code in the file LICENSE. +EOF; +$config = PhpCsFixer\Config::create() + ->setRiskyAllowed(true) + ->setRules([ + '@PHP56Migration' => true, + '@PHPUnit60Migration:risky' => true, + '@Symfony' => true, + '@Symfony:risky' => true, + 'align_multiline_comment' => true, + 'array_syntax' => ['syntax' => 'short'], + 'blank_line_before_statement' => true, + 'combine_consecutive_issets' => true, + 'combine_consecutive_unsets' => true, + 'compact_nullable_typehint' => true, + 'escape_implicit_backslashes' => true, + 'explicit_indirect_variable' => true, + 'explicit_string_variable' => true, + 'final_internal_class' => true, + 'heredoc_to_nowdoc' => true, + 'list_syntax' => ['syntax' => 'long'], + 'method_chaining_indentation' => true, + 'method_argument_space' => ['ensure_fully_multiline' => true], + 'multiline_comment_opening_closing' => true, + 'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']], + 'no_null_property_initialization' => true, + 'no_short_echo_tag' => true, + 'no_superfluous_elseif' => true, + 'no_unneeded_curly_braces' => true, + 'no_unneeded_final_method' => true, + 'no_unreachable_default_argument_value' => true, + 'no_useless_else' => true, + 'no_useless_return' => true, + 'ordered_class_elements' => true, + 'ordered_imports' => true, + 'phpdoc_add_missing_param_annotation' => true, + 'phpdoc_order' => true, + 'phpdoc_types_order' => true, + 'semicolon_after_instruction' => true, + 'single_line_comment_style' => true, + 'strict_comparison' => true, + 'strict_param' => true, + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('tests/Fixtures') + ->in(__DIR__) + ) +; +// special handling of fabbot.io service if it's using too old PHP CS Fixer version +try { + PhpCsFixer\FixerFactory::create() + ->registerBuiltInFixers() + ->registerCustomFixers($config->getCustomFixers()) + ->useRuleSet(new PhpCsFixer\RuleSet($config->getRules())); +} catch (PhpCsFixer\ConfigurationException\InvalidConfigurationException $e) { + $config->setRules([]); +} catch (UnexpectedValueException $e) { + $config->setRules([]); +} catch (InvalidArgumentException $e) { + $config->setRules([]); +} +return $config; diff --git a/README.md b/README.md index 69b67294e37..3af9175e9ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Laravel-lang -[![Stories in Ready](https://badge.waffle.io/caouecs/Laravel-lang.svg?label=ready&title=Ready)](http://waffle.io/caouecs/Laravel-lang) +[![Stories in Ready](https://badge.waffle.io/caouecs/Laravel-lang.svg)](http://waffle.io/caouecs/Laravel-lang) In this repository, you can find the lang files for the framework PHP, [Laravel 4&5](http://www.laravel.com). @@ -60,9 +60,10 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details. ## Projects based on this package -* [LaravelLang by ARCANEDEV](https://github.com/ARCANEDEV/LaravelLang) -* [Laravel-lang by overtrue](https://github.com/overtrue/laravel-lang) -* [laravel-lang-installer by ablunier](https://github.com/ablunier/laravel-lang-installer) +* [LaravelLang by ARCANEDEV](https://github.com/ARCANEDEV/LaravelLang) - Translations manager and checker for Laravel 5. +* [Laravel-lang by overtrue](https://github.com/overtrue/laravel-lang) - Command to add languages in your project. +* [laravel-lang-installer by ablunier](https://github.com/ablunier/laravel-lang-installer) - Command for easily add languages to a Laravel project. +* [laravel-lang-publisher by Andrey Helldar](https://github.com/andrey-helldar/laravel-lang-publisher) - Easy installation and update of translation files for your project. ## Credits diff --git a/changelog.php b/changelog.php new file mode 100644 index 00000000000..c5d53e942ed --- /dev/null +++ b/changelog.php @@ -0,0 +1,18 @@ + [ + 'uz-cyrillic' => 'add new language : Uzbek cyrillic', + 'yz-latin' => 'add new language : Uzbek latin', + ], + '2018-01-23' => [ + 'lv' => 'fix rename validation file', + 'pl' => 'validation.ipv4 and validation.ipv6 updated', + ], + '2018-01-19' => [ + 'ug' => 'add new language : Uyghur', + ], + '2018-01-10' => [ + 'lv' => 'add new language : Latvia', + ], +]; diff --git a/composer.json b/composer.json index 6193bb1971d..72042ef6b18 100644 --- a/composer.json +++ b/composer.json @@ -12,9 +12,10 @@ "suggest": { "overtrue/laravel-lang": "Command to add languages in your project", "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5", - "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project" + "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project", + "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^1.10" + "friendsofphp/php-cs-fixer": "^2.10" } } diff --git a/json/ar.json b/json/ar.json new file mode 100644 index 00000000000..07876aeb7d0 --- /dev/null +++ b/json/ar.json @@ -0,0 +1,32 @@ +{ + "A fresh verification link has been sent to your email address.": "تم إرسال رابط تحقق جديد إلى عنوان بريدك الإلكتروني.", + "Confirm Password": "تأكيد كلمة المرور", + "E-Mail Address": "البريد الالكتروني", + "Error": "خطأ", + "Forgot Your Password?": "نسيت كلمة المرور؟", + "Go Home": "الرئيسية", + "hi": "مرحباً", + "If you did not request a password reset, no further action is required.": "إذا لم تقم بطلب استعادة كلمة المرور، لا تحتاج القيام بأي إجراء.", + "Login": "تسجيل الدخول", + "Logout": "تسجيل الخروج", + "Name": "الاسم", + "Oh no": "انتبه", + "Page Expired": "الصفحة منتهية الصلاحية", + "Page Not Found": "الصفحة غير موجودة", + "Password": "كلمة المرور", + "Register": "تسجيل", + "Remember Me": "تذكرني", + "Reset Password": "استعادة كلمة المرور", + "Reset Password Notification": "تنبيه استعادة كلمة المرور", + "Send Password Reset Link": "أرسل رابط استعادة كلمة المرور", + "Service Unavailable": "الخدمة غير متوفرة", + "Sorry, the page you are looking for could not be found.": "عذرًا، تعذر العثور على الصفحة التي تبحث عنها.", + "Sorry, you are making too many requests to our servers.": "عذرًا، أنت ترسل طلبات كثيرة جدًا إلى خوادمنا.", + "Sorry, you are not authorized to access this page.": "عذرًا، أنت غير مصرح لك بالوصول إلى هذه الصفحة.", + "Sorry, your session has expired. Please refresh and try again.": "عذرًا، لقد انتهت صلاحية جلستك. يرجى التحديث والمحاولة مرة أخرى.", + "Sorry, we are doing some maintenance. Please check back soon.": "عذرًا، نقوم ببعض الصيانة حالياً. الرجاء التحقق مرة أخرى قريباً.", + "Too Many Requests": "طلبات كثيرة جدًا", + "Unauthorized": "غير مصرح", + "Verify Your Email Address": "تحقق من عنوان البريد الإلكتروني الخاص بك", + "You are receiving this email because we received a password reset request for your account.": "لقد استلمت هذا الإيميل لأننا استقبلنا طلباً لاستعادة كلمة مرور حسابك." +} diff --git a/json/de.json b/json/de.json new file mode 100644 index 00000000000..b29954d73e6 --- /dev/null +++ b/json/de.json @@ -0,0 +1,21 @@ +{ + "Confirm Password": "Passwort bestätigen", + "E-Mail Address": "E-Mail Adresse", + "Forgot Your Password?": "Passwort vergessen?", + "hi": "hallo", + "Login": "Einloggen", + "Logout": "Ausloggen", + "Name": "Name", + "Oh no": "Ach nein", + "Page Expired": "Seite ist abgelaufen", + "Page Not Found": "Seite nicht gefunden", + "Password": "Passwort", + "Register": "Registrieren", + "Remember Me": "Angemeldet bleiben", + "Reset Password": "Passwort zurücksetzen", + "Send Password Reset Link": "Link zum Zurücksetzen des Passworts senden", + "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.", + "Name": "Name", + "Reset Password Notification": "Passwort zurücksetzen", + "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." +} diff --git a/json/es.json b/json/es.json new file mode 100644 index 00000000000..638bee72eba --- /dev/null +++ b/json/es.json @@ -0,0 +1,32 @@ +{ + "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.", + "Confirm Password": "Confirmar contraseña", + "E-Mail Address": "E-mail", + "Error": "Error ", + "Forgot Your Password?": "¿Olvidó su contraseña?", + "Go Home": "Ir a inicio", + "hi": "hola", + "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.", + "Login": "Entrar", + "Logout": "Salir", + "Name": "Nombre", + "Oh no": "Oh no ", + "Page Expired": "Página Expirada", + "Page Not Found": "Página no encontrada", + "Password": "Contraseña", + "Register": "Registrar", + "Remember Me": "Recuérdame", + "Reset Password": "Restablecer contraseña", + "Reset Password Notification": "Notificación de restablecimiento de contraseña", + "Send Password Reset Link": "Enviar enlace para restablecer la contraseña", + "Service Unavailable": "Servicio no disponible", + "Sorry, the page you are looking for could not be found.": "Lo sentimos, la página que está buscando no se pudo encontrar.", + "Sorry, you are making too many requests to our servers.": "Lo sentimos, estás haciendo demasiadas peticiones a nuestros servidores.", + "Sorry, you are not authorized to access this page.": "Lo sentimos, no estás autorizado para acceder a esta página.", + "Sorry, your session has expired. Please refresh and try again.": "Lo sentimos, tu sesión ha expirado. Por favor, actualice y vuelva a intentarlo.", + "Sorry, we are doing some maintenance. Please check back soon.": "Lo sentimos, estamos haciendo un poco de mantenimiento. Por favor, vuelva pronto.", + "Too Many Requests": "Demansiadas peticiones", + "Unauthorized": "No autorizado", + "Verify Your Email Address": "Verifica tu correo electrónico", + "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." +} diff --git a/json/fi.json b/json/fi.json new file mode 100644 index 00000000000..80a07274ec3 --- /dev/null +++ b/json/fi.json @@ -0,0 +1,14 @@ +{ + "Reset Password Notification": "Salasanan uudelleenasetusilmoitus", + "You are receiving this email because we received a password reset request for your account.": + "Saat tämän viestin koska saimme pyynnön vaihtaa salasanasi.", + "Reset Password": "Vaihdan salasanani", + "If you did not request a password reset, no further action is required.": + "Jos et ole pyytänyt salasanan vaihtoa, sinun ei tarvitse tehdä mitään ja voit poistaa tämän viestin.", + + "Hello!": "Tervehdys.", + "Whoops!": "Tapahtui virhe.", + "Regards": "Terveisin", + "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser: [:actionURL](:actionURL)": + "Jos et pysty klikkaamaan \":actionText\" - nappia, leikkaa ja liimaa alla oleva URL\nselaimeesi: [:actionURL](:actionURL)" +} diff --git a/json/fr.json b/json/fr.json new file mode 100644 index 00000000000..9d71e98b007 --- /dev/null +++ b/json/fr.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Confirmez le mot de passe", + "E-Mail Address": "Adresse courriel", + "Forgot Your Password?": "Vous avez oublié votre mot de passe ?", + "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.", + "Login": "Connexion", + "Logout": "Déconnexion", + "Name": "Nom", + "Password": "Mot de passe", + "Register": "S'inscrire", + "Remember Me": "Se souvenir de moi", + "Reset Password": "Réinitialisation du mot de passe", + "Reset Password Notification": "Notification de réinitialisation du mot de passe", + "Send Password Reset Link": "Envoyer le lien de réinitialisation du mot de passe", + "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." +} diff --git a/json/hr.json b/json/hr.json new file mode 100644 index 00000000000..bb47e3cf229 --- /dev/null +++ b/json/hr.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Potvrdite zaporku", + "E-Mail Address": "Adresa elektronske pošte", + "Forgot Your Password?": "Zaboravili ste zaporku?", + "If you did not request a password reset, no further action is required.": "Ukoliko niste zahtjevali promjenu zaporke, nije potrebno da preduzimate dalje korake.", + "Login": "Prijava", + "Logout": "Odjava", + "Name": "Ime", + "Password": "Zaporka", + "Register": "Registracija", + "Remember Me": "Zapamti me", + "Reset Password": "Resetuj zaporku", + "Reset Password Notification": "Obavijest o resetovanju zaporke", + "Send Password Reset Link": "Pošalji poveznicu za reset zaporke", + "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." +} diff --git a/json/id.json b/json/id.json new file mode 100644 index 00000000000..b07234f1fcc --- /dev/null +++ b/json/id.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Konfirmasi Kata Sandi", + "E-Mail Address": "Alamat Surel", + "Forgot Your Password?": "Lupa Kata Sandi Anda?", + "If you did not request a password reset, no further action is required.": "Jika anda tidak meminta pengaturan ulang kata sandi, anda tidak perlu melakukan apapun.", + "Login": "Masuk", + "Logout": "Keluar", + "Name": "Nama", + "Password": "Kata Sandi", + "Register": "Daftar", + "Remember Me": "Ingatkan Saya", + "Reset Password": "Atur Ulang Kata Sandi", + "Reset Password Notification": "Pemberitahuan Pengaturan Ulang Kata Sandi", + "Send Password Reset Link": "Kirim Tautan Pengaturan Ulang Kata Sandi", + "You are receiving this email because we received a password reset request for your account.": "Anda menerima surel ini karena kami menerima permintan pengaturan ulang kata sandi untuk akun anda." +} diff --git a/json/ka.json b/json/ka.json new file mode 100644 index 00000000000..c8b311b0429 --- /dev/null +++ b/json/ka.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "პაროლის დადასტურება", + "E-Mail Address": "ელ-ფოსტა", + "Forgot Your Password?": "პაროლი დაგავიწყდათ?", + "If you did not request a password reset, no further action is required.": "თუ არ მოგითხოვიათ პაროლის შეცვლა, არანაირი საპასუხო ქმედება არ არის საჭირო.", + "Login": "შესვლა", + "Logout": "გასვლა", + "Name": "სახელი", + "Password": "პაროლი", + "Register": "რეგისტრირება", + "Remember Me": "დამიმახსოვრე", + "Reset Password": "პაროლის აღდგენა", + "Reset Password Notification": "პაროლის აღდგენის შეტყობინება", + "Send Password Reset Link": "პაროლის აღსადგენი ლინკის გაგზავნა", + "You are receiving this email because we received a password reset request for your account.": "თქვენ ხედავთ აღნიშნულ შეტყობინებას რადგან მივიღეთ თქვენი მოთხოვნა პაროლის აღდგენასთან დაკავშირებით." +} \ No newline at end of file diff --git a/json/ko.json b/json/ko.json new file mode 100644 index 00000000000..dcc67e8cbd9 --- /dev/null +++ b/json/ko.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "비밀번호 확인", + "E-Mail Address": "E-Mail 주소", + "Forgot Your Password?": "비밀번호를 잊으셨나요?", + "If you did not request a password reset, no further action is required.": "귀하께서 비밀번호 재설정을 요청하지 않으셨다면, 더이상 진행하지 마십시오.", + "Login": "로그인", + "Logout": "로그아웃", + "Name": "이름", + "Password": "비밀번호", + "Register": "회원가입", + "Remember Me": "ID 저장", + "Reset Password": "비밀번호 재설정", + "Reset Password Notification": "비밀번호 재설정 알림", + "Send Password Reset Link": "비밀번호 재설정 링크 보내기", + "You are receiving this email because we received a password reset request for your account.": "귀하의 계정에 비밀번호 재설정이 요청되어 해당 메일이 발송되었습니다." +} diff --git a/json/nl.json b/json/nl.json new file mode 100644 index 00000000000..1c85cda3758 --- /dev/null +++ b/json/nl.json @@ -0,0 +1,32 @@ +{ + "A fresh verification link has been sent to your email address.": "Een nieuwe verificatie link is naar je e-mailadres verstuurd.", + "Confirm Password": "Wachtwoordbevestigen", + "E-Mail Address": "E-Mailadres", + "Error": "Error", + "Forgot Your Password?": "Wachtwoord vergeten?", + "Go Home": "Naar home", + "hi": "hallo", + "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.", + "Login": "Inloggen", + "Logout": "Uitloggen", + "Name": "Naam", + "Oh no": "Oh nee", + "Page Expired": "Pagina verlopen", + "Page Not Found": "Pagina niet gevonden", + "Password": "Wachtwoord", + "Register": "Registreren", + "Remember Me": "Onthoud me", + "Reset Password": "Wachtwoord herstellen", + "Reset Password Notification": "Wachtwoord herstellen notificatie", + "Send Password Reset Link": "Verstuur wachtwoordherstel link", + "Service Unavailable": "Service onbeschikbaar", + "Sorry, the page you are looking for could not be found.": "Sorry, de aangevraagde pagina kon niet worden gevonden.", + "Sorry, you are making too many requests to our servers.": "Sorry, je doet teveel aanvragen naar onze servers.", + "Sorry, you are not authorized to access this page.": "Sorry, je bent niet geautoriseerd om toegang te krijgen tot deze pagina.", + "Sorry, your session has expired. Please refresh and try again.": "Sorry, je sessie is verlopen. Herlaad de pagina en probeer het opnieuw.", + "Sorry, we are doing some maintenance. Please check back soon.": "Sorry, we zijn op dit moment bezig met onderhoud. Probeer het binnenkort opnieuw.", + "Too Many Requests": "Te veel verzoeken", + "Unauthorized": "Onbevoegd", + "Verify Your Email Address": "Verifieer je e-mailadres", + "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." +} diff --git a/json/pl.json b/json/pl.json new file mode 100644 index 00000000000..ec0067c433d --- /dev/null +++ b/json/pl.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Potwierdź hasło", + "E-Mail Address": "Adres e-mail", + "Forgot Your Password?": "Nie pamiętasz hasła?", + "If you did not request a password reset, no further action is required.": "Jeśli nie chcesz resetować hasła, zignoruj tę wiadomość.", + "Login": "Zaloguj się", + "Logout": "Wyloguj się", + "Name": "Imię i nazwisko", + "Password": "Hasło", + "Register": "Zarejestruj się", + "Remember Me": "Zapamiętaj mnie", + "Reset Password": "Zresetuj hasło", + "Reset Password Notification": "Zresetuj hasło", + "Send Password Reset Link": "Wyślij link resetujący hasło", + "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." +} diff --git a/json/pt-BR.json b/json/pt-BR.json new file mode 100644 index 00000000000..4236eb4bd02 --- /dev/null +++ b/json/pt-BR.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Confirmar senha", + "E-Mail Address": "Endereço de e-mail", + "Forgot Your Password?": "Esqueceu a senha?", + "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.", + "Login": "Entrar", + "Logout": "Sair", + "Name": "Nome", + "Password": "Senha", + "Register": "Registrar", + "Remember Me": "Lembre-se de mim", + "Reset Password": "Redefinir senha", + "Reset Password Notification": "Notificação de redefinição de senha", + "Send Password Reset Link": "Link de redefinição de senha enviado", + "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." +} diff --git a/json/ru.json b/json/ru.json new file mode 100644 index 00000000000..6c54ecf56b6 --- /dev/null +++ b/json/ru.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Подтверждение пароля", + "E-Mail Address": "E-Mail адрес", + "Forgot Your Password?": "Забыли пароль?", + "If you did not request a password reset, no further action is required.": "Если Вы не запрашивали сброс пароля, то дополнительных действий не требуется.", + "Login": "Войти", + "Logout": "Выйти", + "Name": "Имя", + "Password": "Пароль", + "Register": "Регистрация", + "Remember Me": "Запомнить меня", + "Reset Password": "Сбросить пароль", + "Reset Password Notification": "Уведомление сброса пароля", + "Send Password Reset Link": "Отправить ссылку сброса пароля", + "You are receiving this email because we received a password reset request for your account.": "Вы получили это письмо, потому что мы получили запрос на сброс пароля для Вашей учетной записи." +} diff --git a/json/sr.json b/json/sr.json new file mode 100644 index 00000000000..bb3b7b5ca6b --- /dev/null +++ b/json/sr.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Potvrdite lozinku", + "E-Mail Address": "Adresa elektronske pošte", + "Forgot Your Password?": "Zaboravili ste lozinku?", + "If you did not request a password reset, no further action is required.": "Ukoliko niste zahtevali promenu lozinke, nije potrebno da preduzimate dalje korake.", + "Login": "Prijava", + "Logout": "Odjava", + "Name": "Ime", + "Password": "Lozinka", + "Register": "Registracija", + "Remember Me": "Zapamti me", + "Reset Password": "Resetuj lozinku", + "Reset Password Notification": "Obaveštenje o resetovanju lozinke", + "Send Password Reset Link": "Pošalji link za reset lozinke", + "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." +} diff --git a/json/vi.json b/json/vi.json new file mode 100644 index 00000000000..902a5d75409 --- /dev/null +++ b/json/vi.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "Xác nhận mật khẩu", + "E-Mail Address": "Địa chỉ email", + "Forgot Your Password?": "Quên mật khẩu?", + "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.", + "Login": "Đăng nhập", + "Logout": "Đăng xuất", + "Name": "Tên", + "Password": "Mật khẩu", + "Register": "Đăng ký", + "Remember Me": "Ghi nhớ", + "Reset Password": "Đặt lại mật khẩu", + "Reset Password Notification": "Thông báo đặt lại mật khẩu", + "Send Password Reset Link": "Gửi đường dẫn đặt lại mật khẩu", + "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." +} diff --git a/json/zh-CN.json b/json/zh-CN.json new file mode 100644 index 00000000000..a5d838f4382 --- /dev/null +++ b/json/zh-CN.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "确认密码", + "E-Mail Address": "E-Mail 地址", + "Forgot Your Password?": "忘记密码?", + "If you did not request a password reset, no further action is required.": "如果您未申请重置密码,请忽略此邮件。", + "Login": "登录", + "Logout": "注销", + "Name": "用户名", + "Password": "密码", + "Register": "注册", + "Remember Me": "记住我", + "Reset Password": "重置密码", + "Reset Password Notification": "重置密码通知", + "Send Password Reset Link": "发送重置密码链接", + "You are receiving this email because we received a password reset request for your account.": "您收到此电子邮件是因为我们收到了您帐户的密码重置请求。" +} diff --git a/json/zh-HK.json b/json/zh-HK.json new file mode 100644 index 00000000000..bbf1eae3d97 --- /dev/null +++ b/json/zh-HK.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "確認密碼", + "E-Mail Address": "E-Mail 地址", + "Forgot Your Password?": "忘記密碼?", + "If you did not request a password reset, no further action is required.": "如果您未申請重置密碼,請忽略此郵件。", + "Login": "登錄", + "Logout": "註銷", + "Name": "用户名", + "Password": "密碼", + "Register": "註冊", + "Remember Me": "記住我", + "Reset Password": "重置密碼", + "Reset Password Notification": "重置密碼通知", + "Send Password Reset Link": "發送重置密碼鏈接", + "You are receiving this email because we received a password reset request for your account.": "您收到此電子郵件是因為我們收到了您帳户的密碼重置請求。" +} diff --git a/json/zh-TW.json b/json/zh-TW.json new file mode 100644 index 00000000000..cc51eefec4f --- /dev/null +++ b/json/zh-TW.json @@ -0,0 +1,16 @@ +{ + "Confirm Password": "確認密碼", + "E-Mail Address": "E-Mail 地址", + "Forgot Your Password?": "忘記密碼?", + "If you did not request a password reset, no further action is required.": "如果您未申請重置密碼,請忽略此郵件。", + "Login": "登錄", + "Logout": "註銷", + "Name": "用戶名", + "Password": "密碼", + "Register": "註冊", + "Remember Me": "記住我", + "Reset Password": "重置密碼", + "Reset Password Notification": "重置密碼通知", + "Send Password Reset Link": "發送重置密碼鏈接", + "You are receiving this email because we received a password reset request for your account.": "您收到此電子郵件是因為我們收到了您帳戶的密碼重置請求。" +} diff --git a/script/en/auth.php b/script/en/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/script/en/auth.php +++ b/script/en/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/script/en/en.json b/script/en/en.json new file mode 100644 index 00000000000..853c91571f3 --- /dev/null +++ b/script/en/en.json @@ -0,0 +1,32 @@ +{ + "A fresh verification link has been sent to your email address.": "A fresh verification link has been sent to your email address.", + "Confirm Password": "Confirm Password", + "E-Mail Address": "E-Mail Address", + "Error": "Error", + "Forgot Your Password?": "Forgot Your Password?", + "Go Home": "Go Home", + "hi": "hi", + "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.", + "Login": "Login", + "Logout": "Logout", + "Name": "Name", + "Oh no": "Oh no", + "Page Expired": "Page Expired", + "Page Not Found": "Page Not Found", + "Password": "Password", + "Register": "Register", + "Remember Me": "Remember Me", + "Reset Password": "Reset Password", + "Reset Password Notification": "Reset Password Notification", + "Send Password Reset Link": "Send Password Reset Link", + "Service Unavailable": "Service Unavailable", + "Sorry, the page you are looking for could not be found.": "Sorry, the page you are looking for could not be found.", + "Sorry, you are making too many requests to our servers.": "Sorry, you are making too many requests to our servers.", + "Sorry, you are not authorized to access this page.": "Sorry, you are not authorized to access this page.", + "Sorry, your session has expired. Please refresh and try again.": "Sorry, your session has expired. Please refresh and try again.", + "Sorry, we are doing some maintenance. Please check back soon.": "Sorry, we are doing some maintenance. Please check back soon.", + "Too Many Requests": "Too Many Requests", + "Unauthorized": "Unauthorized", + "Verify Your Email Address": "Verify Your Email Address", + "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." +} diff --git a/script/en/pagination.php b/script/en/pagination.php index fcab34b2531..f1d660e8ccf 100644 --- a/script/en/pagination.php +++ b/script/en/pagination.php @@ -1,7 +1,6 @@ '« Previous', - 'next' => 'Next »', - + 'previous' => '« Previous', + 'next' => 'Next »', ]; diff --git a/script/en/passwords.php b/script/en/passwords.php index ffa19ba4070..2c3150fa9e0 100644 --- a/script/en/passwords.php +++ b/script/en/passwords.php @@ -1,7 +1,6 @@ 'We have e-mailed your password reset link!', 'token' => 'This password reset token is invalid.', 'user' => "We can't find a user with that e-mail address.", - ]; diff --git a/script/en/validation.php b/script/en/validation.php index edc036dd01b..c23581e65cb 100644 --- a/script/en/validation.php +++ b/script/en/validation.php @@ -1,7 +1,6 @@ 'The :attribute must be a date after :date.', 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', + 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', 'alpha_num' => 'The :attribute may only contain letters and numbers.', 'array' => 'The :attribute must be an array.', 'before' => 'The :attribute must be a date before :date.', @@ -42,6 +41,18 @@ 'exists' => 'The selected :attribute is invalid.', 'file' => 'The :attribute must be a file.', 'filled' => 'The :attribute field must have a value.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'The :attribute must be an image.', 'in' => 'The selected :attribute is invalid.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'The :attribute may not be greater than :max.', 'file' => 'The :attribute may not be greater than :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => 'The :attribute must have at least :min items.', ], 'not_in' => 'The selected :attribute is invalid.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute format is invalid.', @@ -117,5 +141,4 @@ */ 'attributes' => [], - ]; diff --git a/script/todo.php b/script/todo.php index 6959b403d6f..5bfdb93c152 100644 --- a/script/todo.php +++ b/script/todo.php @@ -25,13 +25,13 @@ class TodoGenerator * * @var string */ - protected $output = null; + protected $output; /** * Construct. * - * @param string $basePath Base path. - * @param array $excluded Excluded directories. + * @param string $basePath base path + * @param array $excluded excluded directories */ public function __construct($basePath, $excluded = []) { @@ -43,8 +43,8 @@ public function __construct($basePath, $excluded = []) /** * Returns object. * - * @param string $basePath Base path. - * @param array $excluded Excluded directories. + * @param string $basePath base path + * @param array $excluded excluded directories * * @return TodoGenerator */ @@ -53,13 +53,23 @@ public static function make($basePath, $excluded = []) return new self($basePath, $excluded); } + /** + * Save todo list. + * + * @param string $path path + */ + public function save($path) + { + file_put_contents($path, $this->output); + } + /** * Compare translations and generate file. */ private function load() { // Get English version - $english = $this->getTranslations(__DIR__.'/en'); + $english = $this->getTranslations(__DIR__, 'en'); $languages = $this->getLanguages(); $this->output = "# Todo list\n\n"; @@ -69,17 +79,29 @@ private function load() /** * Returns array of translations by language. * - * @param string $language Language code. + * @param string $directory directory + * @param string $language language code * * @return array */ - private function getTranslations($language) + private function getTranslations($directory, $language) { + $contentJson = ''; + + $directoryJson = ($language == 'en') ? '/en/' : '/../json/'; + + $fileJson = $directory.$directoryJson.$language.'.json'; + + if (file_exists($fileJson)) { + $contentJson = json_decode(file_get_contents($fileJson), true); + } + return [ - 'auth' => include($language.'/auth.php'), - 'pagination' => include($language.'/pagination.php'), - 'passwords' => include($language.'/passwords.php'), - 'validation' => include($language.'/validation.php'), + 'json' => $contentJson, + 'auth' => include($directory.'/'.$language.'/auth.php'), + 'pagination' => include($directory.'/'.$language.'/pagination.php'), + 'passwords' => include($directory.'/'.$language.'/passwords.php'), + 'validation' => include($directory.'/'.$language.'/validation.php'), ]; } @@ -95,7 +117,7 @@ private function getLanguages() $languages = array_map(function ($dir) { $name = basename($dir); - return in_array($name, $this->excluded) ? null : $name; + return in_array($name, $this->excluded, true) ? null : $name; }, $directories); return array_filter($languages); @@ -104,41 +126,33 @@ private function getLanguages() /** * Compare translations. * - * @param array $default Language by default. - * @param array $languages Others languages. + * @param array $default language by default + * @param array $languages others languages */ private function compareTranslations(array $default, array $languages) { // Return diff language by language foreach ($languages as $language) { $this->output .= "\n * ".$language.":\n"; - $current = $this->getTranslations("{$this->basePath}/{$language}"); + $current = $this->getTranslations($this->basePath, $language); foreach ($default as $key => $values) { - foreach ($values as $key2 => $value2) { - if (in_array($key2, ['custom', 'attributes'])) { + $valuesKeys = array_keys($values); + + foreach ($valuesKeys as $key2) { + if (in_array($key2, ['custom', 'attributes'], true)) { continue; } if (!isset($current[$key][$key2])) { $this->output .= ' * '.$key.' : '.$key2." : not present\n"; - } elseif ($current[$key][$key2] == $default[$key][$key2]) { + } elseif ($current[$key][$key2] === $default[$key][$key2]) { $this->output .= ' * '.$key.' : '.$key2."\n"; } } } } } - - /** - * Save todo list. - * - * @param string $path Path. - */ - public function save($path) - { - file_put_contents($path, $this->output); - } } TodoGenerator::make(__DIR__.'/../src')->save(__DIR__.'/../todo.md'); diff --git a/src/ar/auth.php b/src/ar/auth.php index 1a795b2ca1e..5ff2dbafcb4 100644 --- a/src/ar/auth.php +++ b/src/ar/auth.php @@ -1,7 +1,6 @@ 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', 'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.', - ]; diff --git a/src/ar/pagination.php b/src/ar/pagination.php index 9a1276a8d4a..be5fe471c9d 100755 --- a/src/ar/pagination.php +++ b/src/ar/pagination.php @@ -1,7 +1,6 @@ '« السابق', - 'next' => 'التالي »', - + 'previous' => '« السابق', + 'next' => 'التالي »', ]; diff --git a/src/ar/passwords.php b/src/ar/passwords.php index a0e3f869e99..511357549f6 100755 --- a/src/ar/passwords.php +++ b/src/ar/passwords.php @@ -1,7 +1,6 @@ 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني', 'token' => '.رمز استعادة كلمة المرور الذي أدخلته غير صحيح', 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني', - ]; diff --git a/src/ar/validation.php b/src/ar/validation.php index f60747f2d07..9cd275dab9a 100755 --- a/src/ar/validation.php +++ b/src/ar/validation.php @@ -8,7 +8,7 @@ | | The following language lines contain the default error messages used by | the validator class. Some of these rules have multiple versions such - | such as the size rules. Feel free to tweak each of these messages. + | as the size rules. Feel free to tweak each of these messages. | */ @@ -17,7 +17,7 @@ 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف', - 'alpha_dash' => 'يجب أن لا يحتوي :attribute على حروف، أرقام ومطّات.', + 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.', 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط', 'array' => 'يجب أن يكون :attribute ًمصفوفة', 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', @@ -38,19 +38,43 @@ 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', 'distinct' => 'للحقل :attribute قيمة مُكرّرة.', 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية', - 'exists' => ':attribute لاغٍ', + 'exists' => 'القيمة المحددة :attribute غير موجودة', 'file' => 'الـ :attribute يجب أن يكون ملفا.', 'filled' => ':attribute إجباري', + 'gt' => [ + 'numeric' => 'يجب أن تكون قيمة :attribute أكبر من :max.', + 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت', + 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا', + 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.', + ], + 'gte' => [ + 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.', + 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت', + 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا', + 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر', + ], 'image' => 'يجب أن يكون :attribute صورةً', - 'in' => ':attribute لاغٍ', + 'in' => ':attribute غير موجود', 'in_array' => ':attribute غير موجود في :other.', 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا', 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا', 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.', 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.', 'json' => 'يجب أن يكون :attribute نصآ من نوع JSON.', + 'lt' => [ + 'numeric' => 'يجب أن تكون قيمة :attribute أصغر من :max.', + 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت', + 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا', + 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.', + ], + 'lte' => [ + 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت', + 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا', + 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', + ], 'max' => [ - 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر لـ :max.', + 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.', 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت', 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا', 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', @@ -58,12 +82,13 @@ 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', 'min' => [ - 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر لـ :min.', + 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.', 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت', 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا', 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر', ], - 'not_in' => ':attribute لاغٍ', + 'not_in' => ':attribute موجود', + 'not_regex' => 'صيغة :attribute غير صحيحة.', 'numeric' => 'يجب على :attribute أن يكون رقمًا', 'present' => 'يجب تقديم :attribute', 'regex' => 'صيغة :attribute .غير صحيحة', @@ -78,8 +103,8 @@ 'size' => [ 'numeric' => 'يجب أن تكون قيمة :attribute مساوية لـ :size', 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت', - 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالظبط', - 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالظبط', + 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط', + 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط', ], 'string' => 'يجب أن يكون :attribute نصآ.', 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا', @@ -98,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -115,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'الاسم', 'username' => 'اسم المُستخدم', 'email' => 'البريد الالكتروني', diff --git a/src/az/auth.php b/src/az/auth.php new file mode 100644 index 00000000000..62e82e4154d --- /dev/null +++ b/src/az/auth.php @@ -0,0 +1,17 @@ + 'İstifadəçi adı və ya şifrə səhvdir', + 'throttle' => ':seconds saniyə ərzində yenidən cəhd edin', +]; diff --git a/src/az/pagination.php b/src/az/pagination.php new file mode 100644 index 00000000000..0fc915e13a0 --- /dev/null +++ b/src/az/pagination.php @@ -0,0 +1,17 @@ + '« Əvvəl', + 'next' => 'Sonra »', +]; diff --git a/src/az/passwords.php b/src/az/passwords.php new file mode 100644 index 00000000000..08013627cf1 --- /dev/null +++ b/src/az/passwords.php @@ -0,0 +1,20 @@ + 'Şifrə ən az 6 simvoldan ibarət olmalı və təkrarı ilə uyğun olmalıdır', + 'reset' => 'Şifrə yeniləndi', + 'sent' => 'Şifrə yeniləmə adresi sizə email olaraq göndərildi', + 'token' => 'Bu şifrə yeniləmə kodu yanlışdır', + 'user' => "Bu email'ə uyğun istifadəçi tapılmadı", +]; diff --git a/src/az/validation.php b/src/az/validation.php new file mode 100644 index 00000000000..9e20a4072ff --- /dev/null +++ b/src/az/validation.php @@ -0,0 +1,143 @@ + ':attribute qəbul edilməlidir', + 'active_url' => ':attribute doğru URL deyil', + 'after' => ':attribute :date tarixindən sonra olmalıdır', + 'after_or_equal' => ':attribute :date tarixi ilə eyni və ya sonra olmalıdır', + 'alpha' => ':attribute yalnız hərflərdən ibarət ola bilər', + 'alpha_dash' => ':attribute yalnız hərf, rəqəm və tire simvolundan ibarət ola bilər', + 'alpha_num' => ':attribute yalnız hərf və rəqəmlərdən ibarət ola bilər', + 'array' => ':attribute massiv formatında olmalıdır', + 'before' => ':attribute :date tarixindən əvvəl olmalıdır', + 'before_or_equal' => ':attribute :date tarixindən əvvəl və ya bərabər olmalıdır', + 'between' => [ + 'numeric' => ':attribute :min ilə :max arasında olmalıdır', + 'file' => ':attribute :min ilə :max KB ölçüsü intervalında olmalıdır', + 'string' => ':attribute :min ilə :max simvolu intervalında olmalıdır', + 'array' => ':attribute :min ilə :max intervalında hissədən ibarət olmalıdır', + ], + 'boolean' => ' :attribute doğru və ya yanlış ola bilər', + 'confirmed' => ' :attribute doğrulanması yanlışdır', + 'date' => ' :attribute tarix formatında olmalıdır', + 'date_format' => ' :attribute :format formatında olmalıdır', + 'different' => ' :attribute və :other fərqli olmalıdır', + 'digits' => ' :attribute :digits rəqəmli olmalıdır', + 'digits_between' => ' :attribute :min ilə :max rəqəmləri intervalında olmalıdır', + 'dimensions' => ' :attribute doğru şəkil ölçülərində deyil', + 'distinct' => ' :attribute dublikat qiymətlidir', + 'email' => ' :attribute doğru email formatında deyil', + 'exists' => ' seçilmiş :attribute yanlışdır', + 'file' => ' :attribute fayl formatında olmalıdır', + 'filled' => ' :attribute qiyməti olmalıdır', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ' :attribute şəkil formatında olmalıdır', + 'in' => ' seçilmiş :attribute yanlışdır', + 'in_array' => ' :attribute :other qiymətləri arasında olmalıdır', + 'integer' => ' :attribute tam ədəd olmalıdır', + 'ip' => ' :attribute İP adres formatında olmalıdır', + 'ipv4' => ' :attribute İPv4 adres formatında olmalıdır', + 'ipv6' => ' :attribute İPv6 adres formatında olmalıdır', + 'json' => ' :attribute JSON formatında olmalıdır', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ' :attribute maksiumum :max rəqəmdən ibarət ola bilər', + 'file' => ' :attribute maksimum :max KB ölçüsündə ola bilər', + 'string' => ' :attribute maksimum :max simvoldan ibarət ola bilər', + 'array' => ' :attribute maksimum :max hədd\'dən ibarət ola bilər', + ], + 'mimes' => ' :attribute :values tipində fayl olmalıdır', + 'mimetypes' => ' :attribute :values tipində fayl olmalıdır', + 'min' => [ + 'numeric' => ' :attribute minimum :min rəqəmdən ibarət ola bilər', + 'file' => ' :attribute minimum :min KB ölçüsündə ola bilər', + 'string' => ' :attribute minimum :min simvoldan ibarət ola bilər', + 'array' => ' :attribute minimum :min hədd\'dən ibarət ola bilər', + ], + 'not_in' => ' seçilmiş :attribute yanlışdır', + 'numeric' => ' :attribute rəqəmlərdən ibarət olmalıdır', + 'present' => ' :attribute iştirak etməlidir', + 'regex' => ' :attribute formatı yanlışdır', + 'required' => ' :attribute mütləqdir', + 'required_if' => ' :attribute (:other :value ikən) mütləqdir', + 'required_unless' => ' :attribute (:other :values \'ə daxil ikən) mütləqdir', + 'required_with' => ' :attribute (:values var ikən) mütləqdir', + 'required_with_all' => ' :attribute (:values var ikən) mütləqdir', + 'required_without' => ' :attribute (:values yox ikən) mütləqdir', + 'required_without_all' => ' :attribute (:values yox ikən) mütləqdir', + 'same' => ' :attribute və :other eyni olmalıdır', + 'size' => [ + 'numeric' => ' :attribute :size ölçüsündə olmalıdır', + 'file' => ' :attribute :size KB ölçüsündə olmalıdır', + 'string' => ' :attribute :size simvoldan ibarət olmalıdır', + 'array' => ' :attribute :size hədd\'dən ibarət olmalıdır', + ], + 'string' => ' :attribute hərf formatında olmalıdır', + 'timezone' => ' :attribute ərazi formatında olmalıdır', + 'unique' => ' :attribute artıq iştirak edib', + 'uploaded' => ' :attribute yüklənməsi mümkün olmadı', + 'url' => ' :attribute formatı yanlışdır', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], +]; diff --git a/src/be/auth.php b/src/be/auth.php index d5c8b969a93..4bf5b4b5b02 100644 --- a/src/be/auth.php +++ b/src/be/auth.php @@ -1,7 +1,6 @@ 'Імя карыстальніка і пароль не супадаюць.', 'throttle' => 'Занадта шмат спробаў ўваходу. Калі ласка, паспрабуйце яшчэ раз праз :seconds секунд.', - ]; diff --git a/src/be/pagination.php b/src/be/pagination.php index bbb57f80945..cbb995432ed 100644 --- a/src/be/pagination.php +++ b/src/be/pagination.php @@ -1,7 +1,6 @@ '« Назад', - 'next' => 'Наперад »', - + 'previous' => '« Назад', + 'next' => 'Наперад »', ]; diff --git a/src/be/passwords.php b/src/be/passwords.php index 89eba6b860c..268540faa88 100644 --- a/src/be/passwords.php +++ b/src/be/passwords.php @@ -1,7 +1,6 @@ 'Спасылка на скід пароля была адпраўлена!', 'token' => 'Памылковы код скіду пароля.', 'user' => 'Не атрымалася знайсці карыстальніка з дадзеным электронным адрасам.', - ]; diff --git a/src/be/validation.php b/src/be/validation.php index 9e77dd1a935..7d101434d6f 100644 --- a/src/be/validation.php +++ b/src/be/validation.php @@ -1,7 +1,6 @@ 'The :attribute must be a file.', 'filled' => 'Поле :attribute абавязкова для запаўнення.', 'exists' => 'Выбранае значэнне для :attribute некарэктна.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Поле :attribute павінна быць малюнкам.', 'in' => 'Выбранае значэнне для :attribute памылкова.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -51,6 +62,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Поле :attribute павінна быць JSON радком.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Поле :attribute не можа быць больш :max.', 'file' => 'Памер файла ў поле :attribute не можа быць больш :max кілабайт).', @@ -66,6 +89,7 @@ 'array' => 'Колькасць элементаў у поле :attribute павінна быць не менш :min.', ], 'not_in' => 'Выбранае значэнне для :attribute памылкова.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Поле :attribute павінна быць лікам.', 'present' => 'The :attribute field must be present.', 'regex' => 'Поле :attribute мае памылковы фармат.', @@ -108,7 +132,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -131,8 +155,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/bg/auth.php b/src/bg/auth.php index a32cbcdf8c1..b5a08ae1593 100644 --- a/src/bg/auth.php +++ b/src/bg/auth.php @@ -1,7 +1,6 @@ 'Неуспешно удостоверяване на потребител.', - 'throttle' => 'Твърде много опити за логин. Моля, опитайте отново след :seconds секунди.', - + 'throttle' => 'Твърде много опити за вход. Моля, опитайте отново след :seconds секунди.', ]; diff --git a/src/bg/pagination.php b/src/bg/pagination.php index 9256ff85367..06ab1f17834 100644 --- a/src/bg/pagination.php +++ b/src/bg/pagination.php @@ -1,7 +1,6 @@ '« Назад', - 'next' => 'Напред »', - + 'previous' => '« Назад', + 'next' => 'Напред »', ]; diff --git a/src/bg/passwords.php b/src/bg/passwords.php index 6e216b6616a..0906e8c8b90 100644 --- a/src/bg/passwords.php +++ b/src/bg/passwords.php @@ -1,7 +1,6 @@ 'Паролата трябва да бъде поне шест знака и да съвпада.', - 'reset' => 'Паролата е ресетната!', + 'reset' => 'Паролата е нулирана!', 'sent' => 'Изпратено е напомняне за вашата парола!', - 'token' => 'Този токен за ресет на парола е невалиден.', + 'token' => 'Този токен за нулиране на парола е невалиден.', 'user' => 'Потребител с такъв e-mail адрес не може да бъде открит.', - ]; diff --git a/src/bg/validation.php b/src/bg/validation.php index e5c3125dc06..7ef3138f461 100644 --- a/src/bg/validation.php +++ b/src/bg/validation.php @@ -1,7 +1,6 @@ 'Данните в полето :attribute се дублират.', 'email' => 'Полето :attribute е в невалиден формат.', 'exists' => 'Избранато поле :attribute вече съществува.', - 'file' => 'The :attribute must be a file.', + 'file' => 'Полето :attribute трябва да бъде файл.', 'filled' => 'Полето :attribute е задължително.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Полето :attribute трябва да бъде изображение.', 'in' => 'Избраното поле :attribute е невалидно.', - 'in_array' => 'The :attribute field does not exist in :other.', + 'in_array' => 'Полето :attribute не съществува в :other.', 'integer' => 'Полето :attribute трябва да бъде цяло число.', 'ip' => 'Полето :attribute трябва да бъде IP адрес.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => 'Полето :attribute трябва да бъде IPv4 адрес.', + 'ipv6' => 'Полето :attribute трябва да бъде IPv6 адрес.', 'json' => 'Полето :attribute трябва да бъде JSON низ.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Полето :attribute трябва да бъде по-малко от :max.', 'file' => 'Полето :attribute трябва да бъде по-малко от :max килобайта.', @@ -65,12 +88,13 @@ 'array' => 'Полето :attribute трябва има минимум :min елемента.', ], 'not_in' => 'Избраното поле :attribute е невалидно.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Полето :attribute трябва да бъде число.', 'present' => 'Полето :attribute трябва да съествува.', 'regex' => 'Полето :attribute е в невалиден формат.', 'required' => 'Полето :attribute е задължително.', 'required_if' => 'Полето :attribute се изисква, когато :other е :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_unless' => 'Полето :attribute се изисква, освен ако :other не е в :values.', 'required_with' => 'Полето :attribute се изисква, когато :values има стойност.', 'required_with_all' => 'Полето :attribute е задължително, когато :values имат стойност.', 'required_without' => 'Полето :attribute се изисква, когато :values няма стойност.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'Име', 'username' => 'Потребител', 'email' => 'E-mail', @@ -149,5 +173,4 @@ 'subject' => 'Заглавие', 'message' => 'Съобщение', ], - ]; diff --git a/src/bn/auth.php b/src/bn/auth.php index 046387eca4f..63e48a046fd 100644 --- a/src/bn/auth.php +++ b/src/bn/auth.php @@ -1,7 +1,6 @@ 'এই পরিচয়পত্র আমাদের রেকর্ডের সাথে মেলে না.', 'throttle' => 'লগইন করার জন্য অনেকগুলি চেষ্টা করেছেন. :seconds সেকেন্ড পরে আবার চেষ্টা করুন .', - ]; diff --git a/src/bn/pagination.php b/src/bn/pagination.php index 1c0e6d43ecf..09c6263f8ae 100644 --- a/src/bn/pagination.php +++ b/src/bn/pagination.php @@ -1,7 +1,6 @@ '« আগে', - 'next' => 'পরবর্তী »', - + 'previous' => '« আগে', + 'next' => 'পরবর্তী »', ]; diff --git a/src/bn/passwords.php b/src/bn/passwords.php index ce1d358071f..3bdc53b778c 100644 --- a/src/bn/passwords.php +++ b/src/bn/passwords.php @@ -1,7 +1,6 @@ 'আমরা আপনার পাসওয়ার্ড পুনরায় সেট করার লিঙ্ক ইমেইল করেছি !', 'token' => 'এই পাসওয়ার্ড রিসেট টোকেন অবৈধ.', 'user' => 'আমরা এই ইমেল ঠিকানা দিয়ে ব্যবহারকারী খুঁজে পাচ্ছি না', - ]; diff --git a/src/bn/validation.php b/src/bn/validation.php index 79985d055c7..3cb265bc647 100644 --- a/src/bn/validation.php +++ b/src/bn/validation.php @@ -1,7 +1,6 @@ 'নির্বাচিত :attribute টি অবৈধ।', 'file' => ':attribute একটি ফাইল হতে হবে।', 'filled' => ':attribute স্থানটি পূরণ করতে হবে।', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute একটি ইমেজ হতে হবে।', 'in' => 'নির্বাচিত :attribute টি অবৈধ।', 'in_array' => ':attribute উপাদানটি :other এ খুঁজে পাওয়া যায়নি।.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute টি একটি বৈধ IPv4 address হতে হবে।', 'ipv6' => ':attribute টি একটি বৈধ IPv6 address হতে হবে।', 'json' => ':attribute একটি বৈধ JSON স্ট্রিং হতে হবে।', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ' :attribute এর মান :max এর চেয়ে বড় হতে পারেনা।', 'file' => ':attribute এর মান :max কিলোবাইট এর চেয়ে বড় হতে পারেনা।', @@ -65,6 +88,7 @@ 'array' => ':attribute অবশ্যই :min উপাদানের চেয়ে ছোট হতে হবে।', ], 'not_in' => 'নির্বাচিত :attribute অবৈধ।', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute একটি সংখ্যা হতে হবে।', 'present' => ':attribute ক্ষেত্র উপস্থিত থাকা আবশ্যক।', 'regex' => ':attribute বিন্যাস অবৈধ।', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,6 +140,5 @@ | */ - 'attributes' => [], - + 'attributes' => [], ]; diff --git a/src/bs/auth.php b/src/bs/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/bs/auth.php +++ b/src/bs/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/bs/pagination.php b/src/bs/pagination.php index 7263c7353e5..b33e519a5b7 100644 --- a/src/bs/pagination.php +++ b/src/bs/pagination.php @@ -1,7 +1,6 @@ '« Nazad', - 'next' => 'Naprijed »', - + 'previous' => '« Nazad', + 'next' => 'Naprijed »', ]; diff --git a/src/bs/passwords.php b/src/bs/passwords.php index 09861b7597f..e9e21bc8132 100644 --- a/src/bs/passwords.php +++ b/src/bs/passwords.php @@ -1,7 +1,6 @@ 'Poslan vam je e-mail za povrat lozinke!', 'token' => 'Ovaj token za resetovanje lozinke nije ispravan.', 'user' => 'Ne može se pronaći korisnik sa tom e-mail adresom.', - ]; diff --git a/src/bs/validation.php b/src/bs/validation.php index fe2cc85c2ce..a620391b3b1 100644 --- a/src/bs/validation.php +++ b/src/bs/validation.php @@ -1,7 +1,6 @@ 'Odabrano polje :attribute nije validno.', 'file' => 'The :attribute must be a file.', 'filled' => 'Polje :attribute je obavezno.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Polje :attribute mora biti slika.', 'in' => 'Odabrano polje :attribute nije validno.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Polje :attribute mora biti manje od :max.', 'file' => 'Polje :attribute mora biti manje od :max kilobajta.', @@ -65,6 +88,7 @@ 'array' => 'Polje :attribute mora sadržati najmanje :min karaktera.', ], 'not_in' => 'Odabrani element polja :attribute nije validan.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Polje :attribute mora biti broj.', 'present' => 'The :attribute field must be present.', 'regex' => 'Polje :attribute ima neispravan format.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ca/auth.php b/src/ca/auth.php index ee38289136b..7eef9c0fd81 100644 --- a/src/ca/auth.php +++ b/src/ca/auth.php @@ -1,7 +1,6 @@ 'Aquestes credencials no concorden amb els nostres registres.', - 'throttle' => "Heu superat el nombre màxim d'intents d'accés. Per favor, torna a intentar-ho en :seconds segons.", - + 'throttle' => 'Heu superat el nombre màxim d\'intents d\'accés. Per favor, torna a intentar-ho en :seconds segons.', ]; diff --git a/src/ca/pagination.php b/src/ca/pagination.php index df9bf4a2885..5325e0f5a19 100644 --- a/src/ca/pagination.php +++ b/src/ca/pagination.php @@ -1,7 +1,6 @@ '« Anterior', - 'next' => 'Següent »', - + 'previous' => '« Anterior', + 'next' => 'Següent »', ]; diff --git a/src/ca/passwords.php b/src/ca/passwords.php index 6d5bcd77b31..d706a5b793a 100644 --- a/src/ca/passwords.php +++ b/src/ca/passwords.php @@ -1,7 +1,6 @@ 'Les contrasenyes han de contenir almenys 6 caràcters i coincidir.', - 'reset' => "La contrasenya s'ha restablert!", - 'sent' => 'Recordatori de contrasenya enviat!', + 'reset' => 'La contrasenya s\'ha restablert!', + 'sent' => 'T\'hem enviat per e-mail un enllaç per a reiniciar la teva contrasenya!', 'token' => 'Aquest token de recuperació de contrasenya és invàlid.', - 'user' => 'No podem trobar a un usuari amb aquest correu electrònic.', - + 'user' => 'No existeix cap usuari amb aquest correu.', ]; diff --git a/src/ca/validation.php b/src/ca/validation.php index 0f6b0b04060..f0963e67305 100644 --- a/src/ca/validation.php +++ b/src/ca/validation.php @@ -1,7 +1,6 @@ ':attribute ha de ser acceptat.', 'active_url' => ':attribute no és un URL vàlid.', 'after' => ':attribute ha de ser una data posterior a :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'after_or_equal' => ':attribute ha de ser una data posterior o igual a :date.', 'alpha' => ':attribute només pot contenir lletres.', - 'alpha_dash' => ':attribute només por contenir lletres, números i guions.', + 'alpha_dash' => ':attribute només pot contenir lletres, números i guions.', 'alpha_num' => ':attribute només pot contenir lletres i números.', - 'array' => ':attribute ha de ser un conjunt.', + 'array' => ':attribute ha de ser una matriu.', 'before' => ':attribute ha de ser una data anterior a :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'before_or_equal' => ':attribute ha de ser una data anterior o igual a :date.', 'between' => [ 'numeric' => ":attribute ha d'estar entre :min - :max.", 'file' => ':attribute ha de pesar entre :min - :max kilobytes.', 'string' => ':attribute ha de tenir entre :min - :max caràcters.', 'array' => ':attribute ha de tenir entre :min - :max ítems.', ], - 'boolean' => 'El camp :attribute ha de ser veritat o fals', + 'boolean' => 'El camp :attribute ha de ser verdader o fals', 'confirmed' => 'La confirmació de :attribute no coincideix.', 'date' => ':attribute no és una data vàlida.', - 'date_format' => ':attribute no correspon al format :format.', + 'date_format' => 'El camp :attribute no concorda amb el format :format.', 'different' => ':attribute i :other han de ser diferents.', - 'digits' => ':attribute ha de tenir :digits digits.', - 'digits_between' => ':attribute ha de tenir entre :min i :max digits.', + 'digits' => ':attribute ha de tenir :digits dígits.', + 'digits_between' => ':attribute ha de tenir entre :min i :max dígits.', 'dimensions' => 'Les dimensions de la imatge :attribute no són vàlides.', 'distinct' => 'El camp :attribute té un valor duplicat.', 'email' => ':attribute no és un e-mail vàlid', 'exists' => ':attribute és invàlid.', 'file' => 'El camp :attribute ha de ser un arxiu.', 'filled' => 'El camp :attribute és obligatori.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute ha de ser una imatge.', 'in' => ':attribute és invàlid', - 'in_array' => 'El camp :attribute no existeix a :other.', + 'in_array' => 'El camp :attribute no existeix dintre de :other.', 'integer' => ':attribute ha de ser un nombre enter.', 'ip' => ':attribute ha de ser una adreça IP vàlida.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => 'El camp :attribute ha de contenir una cadena JSON vàlida.', + 'ipv4' => ':attribute ha de ser una adreça IPv4 vàlida.', + 'ipv6' => ':attribute ha de ser una adreça IPv6 vàlida.', + 'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ - 'numeric' => ':attribute no ha de ser major a :max.', - 'file' => ':attribute no ha de ser més gran que :max kilobytes.', - 'string' => ':attribute no ha de ser més gran que :max characters.', - 'array' => ':attribute no ha de tenir més de :max ítems.', + 'numeric' => ':attribute no pot ser més gran que :max.', + 'file' => ':attribute no pot ser més gran que :max kilobytes.', + 'string' => ':attribute no pot ser més gran que :max caràcters.', + 'array' => ':attribute no pot tenir més de :max ítems.', ], 'mimes' => ':attribute ha de ser un arxiu amb format: :values.', 'mimetypes' => ':attribute ha de ser un arxiu amb format: :values.', @@ -65,16 +88,17 @@ 'array' => ':attribute ha de tenir almenys :min ítems.', ], 'not_in' => ':attribute és invàlid.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute ha de ser numèric.', - 'present' => 'El camp :attribute ha de ser present.', + 'present' => 'El camp :attribute ha d\'existir.', 'regex' => 'El format de :attribute és invàlid.', 'required' => 'El camp :attribute és obligatori.', 'required_if' => 'El camp :attribute és obligatori quan :other és :value.', 'required_unless' => 'El camp :attribute és obligatori a no ser que :other sigui a :values.', - 'required_with' => 'El camp :attribute és obligatori quan :values és present.', - 'required_with_all' => 'El camp :attribute és obligatori quan :values és present.', - 'required_without' => 'El camp :attribute és obligatori quan :values no és present.', - 'required_without_all' => 'El camp :attribute és obligatori quan cap dels :values estan presents.', + 'required_with' => 'El camp :attribute és obligatori quan hi ha :values.', + 'required_with_all' => 'El camp :attribute és obligatori quan hi ha :values.', + 'required_without' => 'El camp :attribute és obligatori quan no hi ha :values.', + 'required_without_all' => 'El camp :attribute és obligatori quan no hi ha cap valor dels següents: :values.', 'same' => ':attribute i :other han de coincidir.', 'size' => [ 'numeric' => 'El tamany de :attribute ha de ser :size.', @@ -82,11 +106,11 @@ 'string' => ':attribute ha de contenir :size caràcters.', 'array' => ':attribute ha de contenir :size ítems.', ], - 'string' => 'El camp :attribute ha de ser una cadena de caràcters.', + 'string' => 'El camp :attribute ha de ser una cadena.', 'timezone' => 'El camp :attribute ha de ser una zona vàlida.', - 'unique' => ':attribute ja ha estat registrat.', + 'unique' => ':attribute ja està registrat i no es pot repetir.', 'uploaded' => ':attribute ha fallat al pujar.', - 'url' => 'El format :attribute és invàlid.', + 'url' => ':attribute no és una adreça web vàlida.', /* |-------------------------------------------------------------------------- @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'nom', 'username' => 'usuari', 'email' => 'correu electrònic', @@ -126,7 +150,7 @@ 'password_confirmation' => 'confirmació de la contrasenya', 'city' => 'ciutat', 'country' => 'país', - 'address' => 'direcció', + 'address' => 'adreça', 'phone' => 'telèfon', 'mobile' => 'mòbil', 'age' => 'edat', @@ -147,5 +171,4 @@ 'subject' => 'assumpte', 'message' => 'missatge', ], - ]; diff --git a/src/cs/auth.php b/src/cs/auth.php index 3f76a3a7cf0..142ec004ed7 100644 --- a/src/cs/auth.php +++ b/src/cs/auth.php @@ -1,7 +1,6 @@ 'Tyto přihlašovací údaje neodpovídají žadnému záznamu.', 'throttle' => 'Příliš mnoho pokusů o přihlášení. Zkuste to prosím znovu za :seconds vteřin.', - ]; diff --git a/src/cs/pagination.php b/src/cs/pagination.php index 0931d77fabf..ad288edf019 100644 --- a/src/cs/pagination.php +++ b/src/cs/pagination.php @@ -1,7 +1,6 @@ '« předchozí', - 'next' => 'další »', - + 'previous' => '« předchozí', + 'next' => 'další »', ]; diff --git a/src/cs/passwords.php b/src/cs/passwords.php index 03dad029d42..8d0952b24c8 100644 --- a/src/cs/passwords.php +++ b/src/cs/passwords.php @@ -1,7 +1,6 @@ 'E-mail s instrukcemi k obnovení hesla byl odeslán!', 'token' => 'Klíč pro obnovu hesla je nesprávný.', 'user' => 'Nepodařilo se najít uživatele s touto e-mailovou adresou.', - ]; diff --git a/src/cs/validation.php b/src/cs/validation.php index c0a6c35da38..df0d924aa7e 100644 --- a/src/cs/validation.php +++ b/src/cs/validation.php @@ -1,7 +1,6 @@ 'Zvolená hodnota pro :attribute není platná.', 'file' => ':attribute musí být soubor.', 'filled' => ':attribute musí být vyplněno.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute musí být obrázek.', 'in' => 'Zvolená hodnota pro :attribute je neplatná.', 'in_array' => ':attribute není obsažen v :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':attribute musí být platný JSON řetězec.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute musí být nižší než :max.', 'file' => ':attribute musí být menší než :max Kilobytů.', @@ -65,6 +88,7 @@ 'array' => ':attribute musí obsahovat více než :min prvků.', ], 'not_in' => 'Zvolená hodnota pro :attribute je neplatná.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute musí být číslo.', 'present' => ':attribute musí být vyplněno.', 'regex' => ':attribute nemá správný formát.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/cy/auth.php b/src/cy/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/cy/auth.php +++ b/src/cy/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/cy/pagination.php b/src/cy/pagination.php index d3257a10c52..b1ce8f5e741 100644 --- a/src/cy/pagination.php +++ b/src/cy/pagination.php @@ -1,7 +1,6 @@ '« Cynt', - 'next' => 'Nesaf »', - + 'previous' => '« Cynt', + 'next' => 'Nesaf »', ]; diff --git a/src/cy/passwords.php b/src/cy/passwords.php index e1b1fe44dc5..9167997b3d3 100644 --- a/src/cy/passwords.php +++ b/src/cy/passwords.php @@ -1,7 +1,6 @@ "Rydym wedi e-bostio'r ddolen i ail-osod y cyfrinair!", 'token' => "Nid yw'r tocyn ail-osod cyfrinair yn ddilys.", 'user' => "Ni oes gennym ddefnyddiwr gyda'r cyfeiriad e-bost yna.", - ]; diff --git a/src/cy/validation.php b/src/cy/validation.php index 6216149030b..b4380826dc1 100644 --- a/src/cy/validation.php +++ b/src/cy/validation.php @@ -1,7 +1,6 @@ 'The :attribute must be a file.', 'filled' => 'Rhaid cynnwys :attribute.', 'exists' => 'Nid yw :attribute yn ddilys.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Rhaid i :attribute fod yn lun.', 'in' => 'Nid yw :attribute yn ddilys.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Ni chai :attribute fod yn fwy na :max.', 'file' => 'Ni chai :attribute fod yn fwy na :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => 'Rhaid i :attribute fod o leiaf :min eitem.', ], 'not_in' => 'Nid yw :attribute yn ddilys.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Rhaid i :attribute fod yn rif.', 'present' => 'The :attribute field must be present.', 'regex' => 'Nid yw fformat :attribute yn ddilys.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/da/auth.php b/src/da/auth.php index d9af6ea83e7..6b3f80d1969 100644 --- a/src/da/auth.php +++ b/src/da/auth.php @@ -1,7 +1,6 @@ 'De angivne oplysninger er ugyldige.', 'throttle' => 'For mange loginforsøg. Prøv igen om :seconds sekunder.', - ]; diff --git a/src/da/pagination.php b/src/da/pagination.php index 1edb63de7d3..6d3c336ba6f 100755 --- a/src/da/pagination.php +++ b/src/da/pagination.php @@ -1,7 +1,6 @@ '« Forrige', - 'next' => 'Næste »', - + 'previous' => '« Forrige', + 'next' => 'Næste »', ]; diff --git a/src/da/passwords.php b/src/da/passwords.php index ea233ddab99..1d4b04e9e8c 100755 --- a/src/da/passwords.php +++ b/src/da/passwords.php @@ -1,7 +1,6 @@ 'Vi har sendt dig en e-mail til at nulstille din adgangskode!', 'token' => 'Koden til nulstilling af adgangskoden er ugyldig.', 'user' => 'Vi kan ikke finde en bruger med den e-mailadresse.', - ]; diff --git a/src/da/validation.php b/src/da/validation.php index 7c072c9313d..4ffb4c8dccd 100755 --- a/src/da/validation.php +++ b/src/da/validation.php @@ -1,7 +1,6 @@ 'Det valgte :attribute er ugyldig.', 'file' => ':attribute skal være en fil.', 'filled' => ':attribute skal udfyldes.', + 'gt' => [ + 'numeric' => 'The :attribute skal være større end :value.', + 'file' => 'The :attribute skal være større end :value kilobytes.', + 'string' => 'The :attribute skal være større end :value characters.', + 'array' => 'The :attribute skal være mere end :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute skal være større end eller lig med :value.', + 'file' => 'The :attribute skal være større end eller lig med :value kilobytes.', + 'string' => 'The :attribute skal være større end eller lig med :value characters.', + 'array' => 'The :attribute skal have :value items eller mere.', + ], 'image' => ':attribute skal være et billede.', 'in' => 'Det valgte :attribute er ugyldig.', 'in_array' => ':attribute eksisterer ikke i :other.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute skal være en gyldig IPv4 adresse.', 'ipv6' => ':attribute skal være en gyldig IPv6 adresse.', 'json' => ':attribute skal være en gyldig JSON streng.', + 'lt' => [ + 'numeric' => 'The :attribute skal være mindre end :value.', + 'file' => 'The :attribute skal være mindre end :value kilobytes.', + 'string' => 'The :attribute skal være mindre end :value characters.', + 'array' => 'The :attribute skal have mindre end :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute skal være mindre eller lig med :value.', + 'file' => 'The :attribute skal være mindre eller lig med :value kilobytes.', + 'string' => 'The :attribute skal være mindre eller lig med :value characters.', + 'array' => 'The :attribute må ikke have mere end :value items.', + ], 'max' => [ 'numeric' => ':attribute skal være højest :max.', 'file' => ':attribute skal være højest :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => ':attribute skal indeholde mindst :min elementer.', ], 'not_in' => 'Den valgte :attribute er ugyldig.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute skal være et tal.', 'present' => ':attribute skal være tilstede.', 'regex' => ':attribute formatet er ugyldigt.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/de-CH/auth.php b/src/de-CH/auth.php new file mode 100644 index 00000000000..24d74c853b9 --- /dev/null +++ b/src/de-CH/auth.php @@ -0,0 +1,17 @@ + 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', + 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', +]; diff --git a/src/de-CH/pagination.php b/src/de-CH/pagination.php new file mode 100755 index 00000000000..322b59b1f82 --- /dev/null +++ b/src/de-CH/pagination.php @@ -0,0 +1,17 @@ + '« Zurück', + 'next' => 'Weiter »', +]; diff --git a/src/de-CH/passwords.php b/src/de-CH/passwords.php new file mode 100755 index 00000000000..01e243324ed --- /dev/null +++ b/src/de-CH/passwords.php @@ -0,0 +1,20 @@ + 'Passwörter müssen mindestens 6 Zeichen lang sein und korrekt bestätigt werden.', + 'reset' => 'Das Passwort wurde zurückgesetzt!', + 'sent' => 'Passworterinnerung wurde gesendet!', + 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', + 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', +]; diff --git a/src/de-CH/validation.php b/src/de-CH/validation.php new file mode 100755 index 00000000000..f8a683845d8 --- /dev/null +++ b/src/de-CH/validation.php @@ -0,0 +1,174 @@ + ':attribute muss akzeptiert werden.', + 'active_url' => ':attribute ist keine gültige Internet-Adresse.', + 'after' => ':attribute muss ein Datum nach dem :date sein.', + 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', + 'alpha' => ':attribute darf nur aus Buchstaben bestehen.', + 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', + 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', + 'array' => ':attribute muss ein Array sein.', + 'before' => ':attribute muss ein Datum vor dem :date sein.', + 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', + 'between' => [ + 'numeric' => ':attribute muss zwischen :min & :max liegen.', + 'file' => ':attribute muss zwischen :min & :max Kilobytes gross sein.', + 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', + 'array' => ':attribute muss zwischen :min & :max Elemente haben.', + ], + 'boolean' => ":attribute muss entweder 'true' oder 'false' sein.", + 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', + 'date' => ':attribute muss ein gültiges Datum sein.', + 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.', + 'different' => ':attribute und :other müssen sich unterscheiden.', + 'digits' => ':attribute muss :digits Stellen haben.', + 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', + 'dimensions' => ':attribute hat ungültige Bildabmessungen.', + 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', + 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', + 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', + 'file' => ':attribute muss eine Datei sein.', + 'filled' => ':attribute muss ausgefüllt sein.', + 'gt' => [ + 'numeric' => ':attribute muss mindestens :min sein.', + 'file' => ':attribute muss mindestens :min Kilobytes gross sein.', + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', + 'array' => ':attribute muss mindestens :min Elemente haben.', + ], + 'gte' => [ + 'numeric' => ':attribute muss grösser oder gleich :min sein.', + 'file' => ':attribute muss grösser oder gleich :min Kilobytes sein.', + 'string' => ':attribute muss grösser oder gleich :min Zeichen lang sein.', + 'array' => ':attribute muss grösser oder gleich :min Elemente haben.', + ], + 'image' => ':attribute muss ein Bild sein.', + 'in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', + 'integer' => ':attribute muss eine ganze Zahl sein.', + 'ip' => ':attribute muss eine gültige IP-Adresse sein.', + 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', + 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', + 'json' => ':attribute muss ein gültiger JSON-String sein.', + 'lt' => [ + 'numeric' => ':attribute muss kleiner :min sein.', + 'file' => ':attribute muss kleiner :min Kilobytes gross sein.', + 'string' => ':attribute muss kleiner :min Zeichen lang sein.', + 'array' => ':attribute muss kleiner :min Elemente haben.', + ], + 'lte' => [ + 'numeric' => ':attribute muss kleiner oder gleich :min sein.', + 'file' => ':attribute muss kleiner oder gleich :min Kilobytes sein.', + 'string' => ':attribute muss kleiner oder gleich :min Zeichen lang sein.', + 'array' => ':attribute muss kleiner oder gleich :min Elemente haben.', + ], + 'max' => [ + 'numeric' => ':attribute darf maximal :max sein.', + 'file' => ':attribute darf maximal :max Kilobytes gross sein.', + 'string' => ':attribute darf maximal :max Zeichen haben.', + 'array' => ':attribute darf nicht mehr als :max Elemente haben.', + ], + 'mimes' => ':attribute muss den Dateityp :values haben.', + 'mimetypes' => ':attribute muss den Dateityp :values haben.', + 'min' => [ + 'numeric' => ':attribute muss mindestens :min sein.', + 'file' => ':attribute muss mindestens :min Kilobytes gross sein.', + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', + 'array' => ':attribute muss mindestens :min Elemente haben.', + ], + 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'not_regex' => ':attribute hat ein ungültiges Format.', + 'numeric' => ':attribute muss eine Zahl sein.', + 'present' => ':attribute muss vorhanden sein.', + 'regex' => ':attribute Format ist ungültig.', + 'required' => ':attribute muss ausgefüllt sein.', + 'required_if' => ':attribute muss ausgefüllt sein, wenn :other :value ist.', + 'required_unless' => ':attribute muss ausgefüllt sein, wenn :other nicht :values ist.', + 'required_with' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.', + 'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.', + 'required_without' => ':attribute muss angegeben werden, wenn :values nicht ausgefüllt wurde.', + 'required_without_all' => ':attribute muss angegeben werden, wenn keines der Felder :values ausgefüllt wurde.', + 'same' => ':attribute und :other müssen übereinstimmen.', + 'size' => [ + 'numeric' => ':attribute muss gleich :size sein.', + 'file' => ':attribute muss :size Kilobyte gross sein.', + 'string' => ':attribute muss :size Zeichen lang sein.', + 'array' => ':attribute muss genau :size Elemente haben.', + ], + 'string' => ':attribute muss ein String sein.', + 'timezone' => ':attribute muss eine gültige Zeitzone sein.', + 'unique' => ':attribute ist schon vergeben.', + 'uploaded' => ':attribute konnte nicht hochgeladen werden.', + 'url' => ':attribute muss eine URL sein.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [ + 'name' => 'Name', + 'username' => 'Benutzername', + 'email' => 'E-Mail-Adresse', + 'first_name' => 'Vorname', + 'last_name' => 'Nachname', + 'password' => 'Passwort', + 'password_confirmation' => 'Passwort-Bestätigung', + 'city' => 'Stadt', + 'country' => 'Land', + 'address' => 'Adresse', + 'phone' => 'Telefonnummer', + 'mobile' => 'Handynummer', + 'age' => 'Alter', + 'sex' => 'Geschlecht', + 'gender' => 'Geschlecht', + 'day' => 'Tag', + 'month' => 'Monat', + 'year' => 'Jahr', + 'hour' => 'Stunde', + 'minute' => 'Minute', + 'second' => 'Sekunde', + 'title' => 'Titel', + 'content' => 'Inhalt', + 'description' => 'Beschreibung', + 'excerpt' => 'Auszug', + 'date' => 'Datum', + 'time' => 'Uhrzeit', + 'available' => 'verfügbar', + 'size' => 'Grösse', + ], +]; diff --git a/src/de/auth.php b/src/de/auth.php index cce585a5349..24d74c853b9 100644 --- a/src/de/auth.php +++ b/src/de/auth.php @@ -1,7 +1,6 @@ 'Diese Zugangsdaten wurden nicht in unserer Datenbank gefunden.', + 'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', - ]; diff --git a/src/de/pagination.php b/src/de/pagination.php index eebe1d9c3f7..322b59b1f82 100755 --- a/src/de/pagination.php +++ b/src/de/pagination.php @@ -1,7 +1,6 @@ '« Zurück', - 'next' => 'Weiter »', - + 'previous' => '« Zurück', + 'next' => 'Weiter »', ]; diff --git a/src/de/passwords.php b/src/de/passwords.php index 2949c2ae804..01e243324ed 100755 --- a/src/de/passwords.php +++ b/src/de/passwords.php @@ -1,7 +1,6 @@ 'Passworterinnerung wurde gesendet!', 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', - ]; diff --git a/src/de/validation.php b/src/de/validation.php index a81704b2c75..500bfd6d348 100755 --- a/src/de/validation.php +++ b/src/de/validation.php @@ -1,7 +1,6 @@ ':attribute muss :digits Stellen haben.', 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', 'dimensions' => ':attribute hat ungültige Bildabmessungen.', - 'distinct' => 'Das Feld :attribute beinhaltet einen bereits vorhandenen Wert.', + 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', 'file' => ':attribute muss eine Datei sein.', 'filled' => ':attribute muss ausgefüllt sein.', + 'gt' => [ + 'numeric' => ':attribute muss mindestens :min sein.', + 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', + 'array' => ':attribute muss mindestens :min Elemente haben.', + ], + 'gte' => [ + 'numeric' => ':attribute muss größer oder gleich :min sein.', + 'file' => ':attribute muss größer oder gleich :min Kilobytes sein.', + 'string' => ':attribute muss größer oder gleich :min Zeichen lang sein.', + 'array' => ':attribute muss größer oder gleich :min Elemente haben.', + ], 'image' => ':attribute muss ein Bild sein.', 'in' => 'Der gewählte Wert für :attribute ist ungültig.', 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', 'json' => ':attribute muss ein gültiger JSON-String sein.', + 'lt' => [ + 'numeric' => ':attribute muss kleiner :min sein.', + 'file' => ':attribute muss kleiner :min Kilobytes groß sein.', + 'string' => ':attribute muss kleiner :min Zeichen lang sein.', + 'array' => ':attribute muss kleiner :min Elemente haben.', + ], + 'lte' => [ + 'numeric' => ':attribute muss kleiner oder gleich :min sein.', + 'file' => ':attribute muss kleiner oder gleich :min Kilobytes sein.', + 'string' => ':attribute muss kleiner oder gleich :min Zeichen lang sein.', + 'array' => ':attribute muss kleiner oder gleich :min Elemente haben.', + ], 'max' => [ 'numeric' => ':attribute darf maximal :max sein.', 'file' => ':attribute darf maximal :max Kilobytes groß sein.', @@ -65,8 +88,9 @@ 'array' => ':attribute muss mindestens :min Elemente haben.', ], 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'not_regex' => ':attribute hat ein ungültiges Format.', 'numeric' => ':attribute muss eine Zahl sein.', - 'present' => 'Das Feld :attribute muss vorhanden sein.', + 'present' => ':attribute muss vorhanden sein.', 'regex' => ':attribute Format ist ungültig.', 'required' => ':attribute muss ausgefüllt sein.', 'required_if' => ':attribute muss ausgefüllt sein, wenn :other :value ist.', @@ -85,8 +109,8 @@ 'string' => ':attribute muss ein String sein.', 'timezone' => ':attribute muss eine gültige Zeitzone sein.', 'unique' => ':attribute ist schon vergeben.', - 'uploaded' => 'Der :attribute konnte nicht hochgeladen werden.', - 'url' => 'Das Format von :attribute ist ungültig.', + 'uploaded' => ':attribute konnte nicht hochgeladen werden.', + 'url' => ':attribute muss eine URL sein.', /* |-------------------------------------------------------------------------- @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -123,7 +147,7 @@ 'first_name' => 'Vorname', 'last_name' => 'Nachname', 'password' => 'Passwort', - 'password_confirmation' => 'Passwordbestätigung', + 'password_confirmation' => 'Passwort-Bestätigung', 'city' => 'Stadt', 'country' => 'Land', 'address' => 'Adresse', @@ -147,5 +171,4 @@ 'available' => 'verfügbar', 'size' => 'Größe', ], - ]; diff --git a/src/el/auth.php b/src/el/auth.php index f6efb9b6e3c..fffb3273166 100644 --- a/src/el/auth.php +++ b/src/el/auth.php @@ -1,7 +1,6 @@ 'Τα στοιχεία αυτά δεν ταιριάζουν με τα δικά μας.', 'throttle' => 'Πολλές προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανά σε :seconds δευτερόλεπτα.', - ]; diff --git a/src/el/pagination.php b/src/el/pagination.php index 278fb517b6d..ca1e31d7f9e 100644 --- a/src/el/pagination.php +++ b/src/el/pagination.php @@ -1,7 +1,6 @@ '« Προηγούμενη', - 'next' => 'Επόμενη »', - + 'previous' => '« Προηγούμενη', + 'next' => 'Επόμενη »', ]; diff --git a/src/el/passwords.php b/src/el/passwords.php index da31a592cf2..845fcc4ccd8 100644 --- a/src/el/passwords.php +++ b/src/el/passwords.php @@ -1,7 +1,6 @@ 'Η υπενθύμιση του συνθηματικού εστάλη!', 'token' => 'Το κλειδί αρχικοποίησης του συνθηματικού δεν είναι έγκυρο.', 'user' => 'Δεν βρέθηκε χρήστης με το συγκεκριμένο email.', - ]; diff --git a/src/el/validation.php b/src/el/validation.php index 4b9996001f1..c3d27400170 100644 --- a/src/el/validation.php +++ b/src/el/validation.php @@ -1,7 +1,6 @@ 'Το πεδίο :attribute πρέπει να είναι αρχείο.', 'filled' => 'To πεδίο :attribute είναι απαραίτητο.', 'exists' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Το πεδίο :attribute πρέπει να είναι εικόνα.', 'in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.', 'in_array' => 'Το πεδίο :attribute δεν υπάρχει σε :other.', 'integer' => 'Το πεδίο :attribute πρέπει να είναι ακέραιος.', 'ip' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IP.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv4.', + 'ipv6' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv6.', 'json' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη συμβολοσειρά JSON.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερο από :max.', 'file' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερό :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min αντικείμενα.', ], 'not_in' => 'Το επιλεγμένο :attribute δεν είναι αποδεκτό.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Το πεδίο :attribute πρέπει να είναι αριθμός.', 'present' => 'Το πεδίο :attribute πρέπει να υπάρχει.', 'regex' => 'Η μορφή του :attribute δεν είναι αποδεκτή.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -117,7 +141,5 @@ */ 'attributes' => [ - // ], - ]; diff --git a/src/es/auth.php b/src/es/auth.php index 6d03049b2aa..2aac34d84bd 100644 --- a/src/es/auth.php +++ b/src/es/auth.php @@ -1,7 +1,6 @@ 'Estas credenciales no coinciden con nuestros registros.', 'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.', - ]; diff --git a/src/es/pagination.php b/src/es/pagination.php index 325916dc39b..7dd369f9f42 100644 --- a/src/es/pagination.php +++ b/src/es/pagination.php @@ -1,7 +1,6 @@ '« Anterior', - 'next' => 'Siguiente »', - + 'previous' => '« Anterior', + 'next' => 'Siguiente »', ]; diff --git a/src/es/passwords.php b/src/es/passwords.php index f4639e3d4bf..91d99ebd311 100644 --- a/src/es/passwords.php +++ b/src/es/passwords.php @@ -1,7 +1,6 @@ '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!', 'token' => 'El token de recuperación de contraseña es inválido.', 'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.', - ]; diff --git a/src/es/validation.php b/src/es/validation.php index 7407273719b..e93052f54e5 100644 --- a/src/es/validation.php +++ b/src/es/validation.php @@ -1,7 +1,6 @@ ':attribute es inválido.', 'file' => 'El campo :attribute debe ser un archivo.', 'filled' => 'El campo :attribute es obligatorio.', + 'gt' => [ + 'numeric' => 'El campo :attribute debe ser mayor que :value.', + 'file' => 'El campo :attribute debe tener más de :value kilobytes.', + 'string' => 'El campo :attribute debe tener más de :value caracteres.', + 'array' => 'El campo :attribute debe tener más de :value elementos.', + ], + 'gte' => [ + 'numeric' => 'El campo :attribute debe ser como mínimo :value.', + 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.', + 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.', + 'array' => 'El campo :attribute debe tener como mínimo :value elementos.', + ], 'image' => ':attribute debe ser una imagen.', 'in' => ':attribute es inválido.', 'in_array' => 'El campo :attribute no existe en :other.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute debe ser un dirección IPv4 válida', 'ipv6' => ':attribute debe ser un dirección IPv6 válida.', 'json' => 'El campo :attribute debe tener una cadena JSON válida.', + 'lt' => [ + 'numeric' => 'El campo :attribute debe ser menor que :value.', + 'file' => 'El campo :attribute debe tener menos de :value kilobytes.', + 'string' => 'El campo :attribute debe tener menos de :value caracteres.', + 'array' => 'El campo :attribute debe tener menos de :value elementos.', + ], + 'lte' => [ + 'numeric' => 'El campo :attribute debe ser como máximo :value.', + 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.', + 'string' => 'El campo :attribute debe tener como máximo :value caracteres.', + 'array' => 'El campo :attribute debe tener como máximo :value elementos.', + ], 'max' => [ 'numeric' => ':attribute no debe ser mayor a :max.', 'file' => ':attribute no debe ser mayor que :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => ':attribute debe tener al menos :min elementos.', ], 'not_in' => ':attribute es inválido.', + 'not_regex' => 'El formato del campo :attribute no es válido.', 'numeric' => ':attribute debe ser numérico.', 'present' => 'El campo :attribute debe estar presente.', 'regex' => 'El formato de :attribute es inválido.', @@ -99,11 +123,11 @@ | */ - 'custom' => [ + 'custom' => [ 'password' => [ 'min' => 'La :attribute debe contener más de :min caracteres', ], - 'email' => [ + 'email' => [ 'unique' => 'El :attribute ya ha sido registrado.', ], ], @@ -119,7 +143,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'nombre', 'username' => 'usuario', 'email' => 'correo electrónico', @@ -151,5 +175,4 @@ 'subject' => 'asunto', 'message' => 'mensaje', ], - ]; diff --git a/src/et/auth.php b/src/et/auth.php index 6b12b1204e7..e775faa5823 100644 --- a/src/et/auth.php +++ b/src/et/auth.php @@ -1,7 +1,6 @@ 'Need andmed ei klapi meie kirjetega.', 'throttle' => 'Liiga palju sisselogimise katseid. Palun proovi uuesti :seconds sekundi pärast.', - ]; diff --git a/src/et/pagination.php b/src/et/pagination.php index 12b041011f1..c4b52c97fae 100644 --- a/src/et/pagination.php +++ b/src/et/pagination.php @@ -1,7 +1,6 @@ '« Eelmine', - 'next' => 'Järgmine »', - + 'previous' => '« Eelmine', + 'next' => 'Järgmine »', ]; diff --git a/src/et/passwords.php b/src/et/passwords.php index de1b26bb4ed..fd32fa91df8 100644 --- a/src/et/passwords.php +++ b/src/et/passwords.php @@ -1,7 +1,6 @@ 'Oleme saatnud sulle e-postiga parooli lähtestamise lingi!', 'token' => 'See parooli lähtestamise tunnus on vigane.', 'user' => 'Ei suutnud leida sellise e-posti aadressiga kasutajat.', - ]; diff --git a/src/et/validation.php b/src/et/validation.php index f9c29ab339e..10d80f95fa4 100644 --- a/src/et/validation.php +++ b/src/et/validation.php @@ -1,7 +1,6 @@ 'Valitud :attribute on vigane.', 'file' => ':attribute peab olema fail.', 'filled' => ':attribute väli on nõutav.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute peab olema pilt.', 'in' => 'Valitud :attribute on vigane.', 'in_array' => ':attribute väli ei eksisteeri :other sees.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute peab olema kehtiv IPv4 aadress.', 'ipv6' => ':attribute peab olema kehtiv IPv6 aadress.', 'json' => ':attribute peab olema kehtiv JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute ei tohi olla suurem kui :max.', 'file' => ':attribute ei tohi olla suurem kui :max kilobaiti.', @@ -65,6 +88,7 @@ 'array' => ':attribute peab olema vähemalt :min kirjet.', ], 'not_in' => 'Valitud :attribute on vigane.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute peab olema number.', 'present' => ':attribute väli peab olema esindatud.', 'regex' => ':attribute vorming on vigane.', @@ -124,5 +148,4 @@ 'result_text_under_image' => 'Tulemuse tekst pildi all', 'short_text' => 'Lühitekst', ], - ]; diff --git a/src/eu/auth.php b/src/eu/auth.php new file mode 100644 index 00000000000..5f5cf333a70 --- /dev/null +++ b/src/eu/auth.php @@ -0,0 +1,17 @@ + 'Kredentzial hauek ez datoz bat gure erregistroekin.', + 'throttle' => 'Atzipen saialdi gehiegi. Mesedez berriro saiatu :seconds segundo barru.', +]; diff --git a/src/eu/pagination.php b/src/eu/pagination.php new file mode 100644 index 00000000000..4e891047c10 --- /dev/null +++ b/src/eu/pagination.php @@ -0,0 +1,17 @@ + '« Aurrekoa', + 'next' => 'Hurrengoa »', +]; diff --git a/src/eu/passwords.php b/src/eu/passwords.php new file mode 100644 index 00000000000..5ee1fe6c1c6 --- /dev/null +++ b/src/eu/passwords.php @@ -0,0 +1,20 @@ + 'Pasahitzak gutxienez sei karaktere euki behar dituzte eta bat etorri behar dira.', + 'reset' => 'Zure pasahitza berrezarritua izan da!', + 'sent' => 'Zure pasahitza berrezartzeko esteka postaz bidali dizugu!', + 'token' => 'Pasahitza berreskuratzeko tokena baliogabea da.', + 'user' => 'Ezin izan dugu posta helbide horrekin bat datorren erabiltzailerik aurkitu.', +]; diff --git a/src/eu/validation.php b/src/eu/validation.php new file mode 100644 index 00000000000..57b64b95a5b --- /dev/null +++ b/src/eu/validation.php @@ -0,0 +1,177 @@ + ':attribute onartua izan behar da.', + 'active_url' => ':attribute ez da baliozko URL bat.', + 'after' => ':attribute :date osteko data izan behar da.', + 'after_or_equal' => ':attribute :date osteko data edo data berdina izan behar da.', + 'alpha' => ':attribute hizkiak besterik ezin ditu izan.', + 'alpha_dash' => ':attribute hizkiak, zenbakiak eta marrak besterik ezin ditu izan.', + 'alpha_num' => ':attribute hizkiak eta zenbakiak besterik ezin ditu izan.', + 'array' => ':attribute bilduma izan behar da.', + 'before' => ':attribute :date aurreko data izan behar da.', + 'before_or_equal' => ':attribute :date aurreko data edo data berdina izan behar da.', + 'between' => [ + 'numeric' => ':attribute :min eta :max artean egon behar da.', + 'file' => ':attribute-k :min eta :max kilobyte arteko pisua izan behar du.', + 'string' => ':attribute :min eta :max karaktere artean egon behar da.', + 'array' => ':attribute-k :min eta :max arteko ale kantitatea euki behar du.', + ], + 'boolean' => ':attribute-ren balioa egia edo gezurra izan behar da.', + 'confirmed' => ':attribute-ren konfirmazioa ez dator bat.', + 'date' => ':attribute ez da baliozko data.', + 'date_format' => ':attribute datak ez du :format formatua.', + 'different' => ':attribute eta :other ezberdinak izan behar dira.', + 'digits' => ':attribute-k :digits digitu euki behar ditu.', + 'digits_between' => ':attribute-k :min eta :max arteko digitu kantitatea euki behar du.', + 'dimensions' => ':attribute-k ez ditu irudi neurri aproposak.', + 'distinct' => ':attribute-k balio bikoiztua dauka.', + 'email' => ':attribute-k baliozko posta helbidea euki behar du.', + 'exists' => 'Hautatutako :attribute baliogabea da.', + 'file' => ':attribute fitxategi bat izan behar da.', + 'filled' => ':attribute-k balioren bat euki behar du.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ':attribute irudi bat izan behar da.', + 'in' => 'Hautatutako :attribute baliogabea da.', + 'in_array' => ':attribute ez da :other-en existizen.', + 'integer' => ':attribute zenbaki osoa izan behar da.', + 'ip' => ':attribute baliozko IP helbidea izan behar da.', + 'ipv4' => ':attribute baliozko IPv4 helbidea izan behar da.', + 'ipv6' => ':attribute baliozko IPv6 helbidea izan behar da.', + 'json' => ':attribute-k baliozko JSON karaktere-katea euki behar du.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ':attribute ezin da :max baino handiagoa izan.', + 'file' => ':attribute-k ezin du :max kilobyte baino gehiagoko pisua euki.', + 'string' => ':attribute-k ezin du :max karaktere baino gehiago euki.', + 'array' => ':attribute-k ezin du :max ale baino gehiago euki.', + ], + 'mimes' => ':attribute :values motatako fitxategia izan behar da.', + 'mimetypes' => ':attribute :values motatako fitxategia izan behar da.', + 'min' => [ + 'numeric' => ':attribute-k gutxienez :min-eko tamaina izan behar du.', + 'file' => ':attribute-k gutxienez :min kilobyteko pisua euki behar du.', + 'string' => ':attribute-k gutxienez :min karaktere euki behar ditu.', + 'array' => ':attribute-k gutxienez :min ale euki behar ditu.', + ], + 'not_in' => 'Hautatutako :attribute baliogabea da.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ':attribute zenbaki bat izan behar da.', + 'present' => ':attribute bertan egon behar da.', + 'regex' => ':attribute-k ez dauka formatu egokirik.', + 'required' => ':attribute derrigorrezkoa da.', + 'required_if' => ':attribute derrigorrezkoa da :other :value denean.', + 'required_unless' => ':attribute derrigorrezkoa da :other :values-en egon ezean.', + 'required_with' => ':attribute derrigorrezkoa da :values bertan dagoenean.', + 'required_with_all' => ':attribute derrigorrezkoa da :values bertan dagoenean.', + 'required_without' => ':attribute derrigorrezkoa da :values bertan ez dagoenean.', + 'required_without_all' => ':attribute derrigorrezkoa da :values bertan ez dagoenean.', + 'same' => ':attribute eta :other bat etorri behar dira.', + 'size' => [ + 'numeric' => ':attribute-k :size-eko tamaina izan behar du.', + 'file' => ':attribute-k :size kilobyteko pisua euki behar du.', + 'string' => ':attribute-k :size karaktere euki beha ditu.', + 'array' => ':attribute-k :size ale euki behar ditu.', + ], + 'string' => ':attribute karaktere-katea izan behar da.', + 'timezone' => ':attribute baliozko gunea izan behar da.', + 'unique' => ':attribute jadanik erregistratua izan da.', + 'uploaded' => ':attribute igotzerakoan huts egin du.', + 'url' => ':attribute-k ez dauka formatu egokirik.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [ + 'name' => 'izena', + 'username' => 'erabiltzailea', + 'email' => 'posta elektronikoa', + 'first_name' => 'izena', + 'last_name' => 'abizena', + 'password' => 'pasahitza', + 'password_confirmation' => 'pasahitzaren konfirmazioa', + 'city' => 'hiria', + 'country' => 'herrialde', + 'address' => 'helbide', + 'phone' => 'telefonoa', + 'mobile' => 'mugikorra', + 'age' => 'adin', + 'sex' => 'sexu', + 'gender' => 'genero', + 'year' => 'urte', + 'month' => 'hilabete', + 'day' => 'egun', + 'hour' => 'ordu', + 'minute' => 'minutu', + 'second' => 'segundo', + 'title' => 'izenburu', + 'content' => 'eduki', + 'body' => 'gorputz', + 'description' => 'deskribapen', + 'excerpt' => 'pasarte', + 'date' => 'data', + 'time' => 'denbora', + 'subject' => 'gaia', + 'message' => 'mezu', + 'available' => 'erabilgarri', + 'size' => 'neurri', + ], +]; diff --git a/src/fa/auth.php b/src/fa/auth.php index 2e51cbf29f4..3376235ebb5 100644 --- a/src/fa/auth.php +++ b/src/fa/auth.php @@ -1,7 +1,6 @@ 'مشخصات وارد شده با اطلاعات ما سازگار نیست.', 'throttle' => 'دفعات تلاش شما برای ورود بیش از حد مجاز است. لطفا پس از :seconds ثانیه مجددا تلاش فرمایید.', - ]; diff --git a/src/fa/pagination.php b/src/fa/pagination.php index c48ce33199d..6d7a3ffa75f 100644 --- a/src/fa/pagination.php +++ b/src/fa/pagination.php @@ -1,7 +1,6 @@ '« قبلی', - 'next' => 'بعدی »', - + 'previous' => '« قبلی', + 'next' => 'بعدی »', ]; diff --git a/src/fa/passwords.php b/src/fa/passwords.php index 3be6b19ee2b..2405ee84210 100644 --- a/src/fa/passwords.php +++ b/src/fa/passwords.php @@ -1,7 +1,6 @@ 'لینک بازگردانی گذرواژه به ایمیل شما ارسال شد.', 'token' => 'مشخصه‌ی بازگردانی گذرواژه معتبر نیست.', 'user' => 'ما کاربری با این نشانی ایمیل نداریم!', - ]; diff --git a/src/fa/validation.php b/src/fa/validation.php index 4f3789c1296..f11a91563a5 100644 --- a/src/fa/validation.php +++ b/src/fa/validation.php @@ -1,7 +1,6 @@ ':attribute باید پذیرفته شده باشد.', - 'active_url' => 'آدرس :attribute معتبر نیست', + 'active_url' => 'آدرس :attribute معتبر نیست.', 'after' => ':attribute باید تاریخی بعد از :date باشد.', 'after_or_equal' => ':attribute باید تاریخی بعد از :date، یا مطابق با آن باشد.', 'alpha' => ':attribute باید فقط حروف الفبا باشد.', - 'alpha_dash' => ':attribute باید فقط حروف الفبا، عدد و خط تیره(-) باشد.', - 'alpha_num' => ':attribute باید فقط حروف الفبا و عدد باشد.', + 'alpha_dash' => ':attribute باید فقط حروف الفبا، اعداد، خط تیره و زیرخط باشد.', + 'alpha_num' => ':attribute باید فقط حروف الفبا و اعداد باشد.', 'array' => ':attribute باید آرایه باشد.', 'before' => ':attribute باید تاریخی قبل از :date باشد.', 'before_or_equal' => ':attribute باید تاریخی قبل از :date، یا مطابق با آن باشد.', @@ -29,64 +28,89 @@ 'string' => ':attribute باید بین :min و :max کاراکتر باشد.', 'array' => ':attribute باید بین :min و :max آیتم باشد.', ], - 'boolean' => 'فیلد :attribute فقط می‌تواند صحیح و یا غلط باشد', + 'boolean' => 'فیلد :attribute فقط می‌تواند true و یا false باشد.', 'confirmed' => ':attribute با فیلد تکرار مطابقت ندارد.', 'date' => ':attribute یک تاریخ معتبر نیست.', - 'date_format' => ':attribute با الگوی :format مطاقبت ندارد.', - 'different' => ':attribute و :other باید متفاوت باشند.', + 'date_format' => ':attribute با الگوی :format مطابقت ندارد.', + 'different' => ':attribute و :other باید از یکدیگر متفاوت باشند.', 'digits' => ':attribute باید :digits رقم باشد.', 'digits_between' => ':attribute باید بین :min و :max رقم باشد.', 'dimensions' => 'ابعاد تصویر :attribute قابل قبول نیست.', - 'distinct' => 'فیلد :attribute تکراری است.', - 'email' => ':attribute باید یک ایمیل معتبر باشد', + 'distinct' => 'فیلد :attribute مقدار تکراری دارد.', + 'email' => ':attribute باید یک ایمیل معتبر باشد.', 'exists' => ':attribute انتخاب شده، معتبر نیست.', - 'file' => ':attribute باید یک فایل باشد', - 'filled' => 'فیلد :attribute الزامی است', - 'image' => ':attribute باید تصویر باشد.', + 'file' => ':attribute باید یک فایل معتبر باشد.', + 'filled' => 'فیلد :attribute باید مقدار داشته باشد.', + 'gt' => [ + 'numeric' => ':attribute باید بزرگتر از :value باشد.', + 'file' => ':attribute باید بزرگتر از :value کیلوبایت باشد.', + 'string' => ':attribute باید بیشتر از :value کاراکتر داشته باشد.', + 'array' => ':attribute باید بیشتر از :value آیتم داشته باشد.', + ], + 'gte' => [ + 'numeric' => ':attribute باید بزرگتر یا مساوی :value باشد.', + 'file' => ':attribute باید بزرگتر یا مساوی :value کیلوبایت باشد.', + 'string' => ':attribute باید بیشتر یا مساوی :value کاراکتر داشته باشد.', + 'array' => ':attribute باید بیشتر یا مساوی :value آیتم داشته باشد.', + ], + 'image' => ':attribute باید یک تصویر معتبر باشد.', 'in' => ':attribute انتخاب شده، معتبر نیست.', - 'in_array' => 'فیلد :attribute در :other وجود ندارد.', + 'in_array' => 'فیلد :attribute در لیست :other وجود ندارد.', 'integer' => ':attribute باید عدد صحیح باشد.', - 'ip' => ':attribute باید IP معتبر باشد.', + 'ip' => ':attribute باید آدرس IP معتبر باشد.', 'ipv4' => ':attribute باید یک آدرس معتبر از نوع IPv4 باشد.', 'ipv6' => ':attribute باید یک آدرس معتبر از نوع IPv6 باشد.', 'json' => 'فیلد :attribute باید یک رشته از نوع JSON باشد.', + 'lt' => [ + 'numeric' => ':attribute باید کوچکتر از :value باشد.', + 'file' => ':attribute باید کوچکتر از :value کیلوبایت باشد.', + 'string' => ':attribute باید کمتر از :value کاراکتر داشته باشد.', + 'array' => ':attribute باید کمتر از :value آیتم داشته باشد.', + ], + 'lte' => [ + 'numeric' => ':attribute باید کوچکتر یا مساوی :value باشد.', + 'file' => ':attribute باید کوچکتر یا مساوی :value کیلوبایت باشد.', + 'string' => ':attribute باید کمتر یا مساوی :value کاراکتر داشته باشد.', + 'array' => ':attribute باید کمتر یا مساوی :value آیتم داشته باشد.', + ], 'max' => [ 'numeric' => ':attribute نباید بزرگتر از :max باشد.', 'file' => ':attribute نباید بزرگتر از :max کیلوبایت باشد.', - 'string' => ':attribute نباید بیشتر از :max کاراکتر باشد.', - 'array' => ':attribute نباید بیشتر از :max آیتم باشد.', + 'string' => ':attribute نباید بیشتر از :max کاراکتر داشته باشد.', + 'array' => ':attribute نباید بیشتر از :max آیتم داشته باشد.', ], - 'mimes' => ':attribute باید یکی از فرمت های :values باشد.', - 'mimetypes' => ':attribute باید یکی از فرمت های :values باشد.', + 'mimes' => 'فرمت‌های معتبر فایل عبارتند از: :values.', + 'mimetypes' => 'فرمت‌های معتبر فایل عبارتند از: :values.', 'min' => [ 'numeric' => ':attribute نباید کوچکتر از :min باشد.', 'file' => ':attribute نباید کوچکتر از :min کیلوبایت باشد.', - 'string' => ':attribute نباید کمتر از :min کاراکتر باشد.', - 'array' => ':attribute نباید کمتر از :min آیتم باشد.', + 'string' => ':attribute نباید کمتر از :min کاراکتر داشته باشد.', + 'array' => ':attribute نباید کمتر از :min آیتم داشته باشد.', ], 'not_in' => ':attribute انتخاب شده، معتبر نیست.', - 'numeric' => ':attribute باید عدد باشد.', + 'not_regex' => 'فرمت :attribute معتبر نیست.', + 'numeric' => ':attribute باید عدد یا رشته‌ای از اعداد باشد.', 'present' => 'فیلد :attribute باید در پارامترهای ارسالی وجود داشته باشد.', - 'regex' => 'فرمت :attribute معتبر نیست', - 'required' => 'فیلد :attribute الزامی است', + 'regex' => 'فرمت :attribute معتبر نیست.', + 'required' => 'فیلد :attribute الزامی است.', 'required_if' => 'هنگامی که :other برابر با :value است، فیلد :attribute الزامی است.', - 'required_unless' => 'فیلد :attribute ضروری است، مگر آنکه :other در :values موجود باشد.', - 'required_with' => 'در صورت وجود فیلد :values، فیلد :attribute الزامی است.', - 'required_with_all' => 'در صورت وجود فیلدهای :values، فیلد :attribute الزامی است.', + 'required_unless' => 'فیلد :attribute الزامی است، مگر آنکه :other در :values موجود باشد.', + 'required_with' => 'در صورت وجود فیلد :values، فیلد :attribute نیز الزامی است.', + 'required_with_all' => 'در صورت وجود فیلدهای :values، فیلد :attribute نیز الزامی است.', 'required_without' => 'در صورت عدم وجود فیلد :values، فیلد :attribute الزامی است.', 'required_without_all' => 'در صورت عدم وجود هر یک از فیلدهای :values، فیلد :attribute الزامی است.', - 'same' => ':attribute و :other باید مانند هم باشند.', + 'same' => ':attribute و :other باید همانند هم باشند.', 'size' => [ 'numeric' => ':attribute باید برابر با :size باشد.', 'file' => ':attribute باید برابر با :size کیلوبایت باشد.', 'string' => ':attribute باید برابر با :size کاراکتر باشد.', - 'array' => ':attribute باسد شامل :size آیتم باشد.', + 'array' => ':attribute باید شامل :size آیتم باشد.', ], - 'string' => 'فیلد :attribute باید متن باشد.', - 'timezone' => 'فیلد :attribute باید یک منطقه زمانی قابل قبول باشد.', + 'string' => 'فیلد :attribute باید رشته باشد.', + 'timezone' => 'فیلد :attribute باید یک منطقه زمانی معتبر باشد.', 'unique' => ':attribute قبلا انتخاب شده است.', - 'uploaded' => 'آپلود فایل :attribute موفقیت آمیز نبود.', - 'url' => 'فرمت آدرس :attribute اشتباه است.', + 'uploaded' => 'بارگذاری فایل :attribute موفقیت آمیز نبود.', + 'url' => ':attribute معتبر نمی‌باشد.', /* |-------------------------------------------------------------------------- @@ -99,8 +123,7 @@ | */ - 'custom' => [ - // + 'custom' => [ ], /* @@ -114,19 +137,19 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'نام', 'username' => 'نام کاربری', 'email' => 'ایمیل', 'first_name' => 'نام', 'last_name' => 'نام خانوادگی', - 'password' => 'رمز عبور', - 'password_confirmation' => 'تکرار رمز عبور', + 'password' => 'گذرواژه', + 'password_confirmation' => 'تکرار گذرواژه', 'city' => 'شهر', 'country' => 'کشور', 'address' => 'نشانی', - 'phone' => 'تلفن', - 'mobile' => 'تلفن همراه', + 'phone' => 'شماره ثابت', + 'mobile' => 'شماره همراه', 'age' => 'سن', 'sex' => 'جنسیت', 'gender' => 'جنسیت', @@ -146,6 +169,6 @@ 'available' => 'موجود', 'size' => 'اندازه', 'terms' => 'شرایط', + 'province' => 'استان', ], - ]; diff --git a/src/fi/auth.php b/src/fi/auth.php index d284f1552c5..0763a35d70b 100644 --- a/src/fi/auth.php +++ b/src/fi/auth.php @@ -1,7 +1,6 @@ 'Kirjautuminen epäonnistui.', 'throttle' => 'Liian monta kirjautumisyritystä. Yritä uudelleen :seconds sekunnin kuluttua.', - ]; diff --git a/src/fi/pagination.php b/src/fi/pagination.php index b0776abb93b..90e041a72e9 100644 --- a/src/fi/pagination.php +++ b/src/fi/pagination.php @@ -1,7 +1,6 @@ '« Edellinen', - 'next' => 'Seuraava »', - + 'previous' => '« Edellinen', + 'next' => 'Seuraava »', ]; diff --git a/src/fi/passwords.php b/src/fi/passwords.php index 88aead4595a..0b5f51273b0 100644 --- a/src/fi/passwords.php +++ b/src/fi/passwords.php @@ -1,7 +1,6 @@ 'Resetointilinkki lähetetty sähköpostitse!', 'token' => 'Resetointitunniste on viallinen.', 'user' => 'Sähköpostiosoitteella ei löydy käyttäjää.', - ]; diff --git a/src/fi/validation.php b/src/fi/validation.php index 7eb5bc566a1..2c943d2f1dc 100644 --- a/src/fi/validation.php +++ b/src/fi/validation.php @@ -1,7 +1,6 @@ 'The selected :attribute is invalid.', 'file' => 'Kentän :attribute arvon tulee olla tiedosto.', 'filled' => 'Kenttä :attribute on pakollinen.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Kentän :attribute arvon tulee olla kuva.', 'in' => 'Kentän :attribute arvo on virheellinen.', 'in_array' => 'Kentän :attribute arvo ei sisälly kentän :other arvoon.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Kentän :attribute arvon tulee olla validia JSON:ia.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Kentän arvon :attribute tulee olla enintään :max.', 'file' => 'Tiedoston :attribute tulee olla enintään :max kilobittiä.', @@ -65,6 +88,7 @@ 'array' => 'Kentän :attribute tulee sisältää vähintään :min arvoa.', ], 'not_in' => 'Kentän :attribute arvo on virheellinen.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Kentän :attribute arvon tulee olla numero.', 'present' => 'Kenttä :attribute vaaditaan.', 'regex' => 'Kentän :attribute arvo on väärää muotoa.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/fr/auth.php b/src/fr/auth.php index 9b566c16c7c..1f894af5851 100644 --- a/src/fr/auth.php +++ b/src/fr/auth.php @@ -1,7 +1,6 @@ 'Ces identifiants ne correspondent pas à nos enregistrements', 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', - ]; diff --git a/src/fr/pagination.php b/src/fr/pagination.php index 9f07a5f9372..b9d3172454b 100644 --- a/src/fr/pagination.php +++ b/src/fr/pagination.php @@ -1,7 +1,6 @@ '« Précédent', - 'next' => 'Suivant »', - + 'previous' => '« Précédent', + 'next' => 'Suivant »', ]; diff --git a/src/fr/passwords.php b/src/fr/passwords.php index 57d7c8de8e7..cb03dd7a721 100644 --- a/src/fr/passwords.php +++ b/src/fr/passwords.php @@ -1,7 +1,6 @@ 'Nous vous avons envoyé par courriel le lien de réinitialisation du mot de passe !', 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.", 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse courriel.", - ]; diff --git a/src/fr/validation.php b/src/fr/validation.php index 48f61510f63..68b176ac644 100644 --- a/src/fr/validation.php +++ b/src/fr/validation.php @@ -1,7 +1,6 @@ 'Le champ :attribute sélectionné est invalide.', 'file' => 'Le champ :attribute doit être un fichier.', 'filled' => 'Le champ :attribute doit avoir une valeur.', + 'gt' => [ + 'numeric' => 'La valeur de :attribute doit être supérieure à :value.', + 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', + 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', + 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', + ], + 'gte' => [ + 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.', + 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', + 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', + 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', + ], 'image' => 'Le champ :attribute doit être une image.', 'in' => 'Le champ :attribute est invalide.', 'in_array' => "Le champ :attribute n'existe pas dans :other.", @@ -50,6 +61,18 @@ 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', 'json' => 'Le champ :attribute doit être un document JSON valide.', + 'lt' => [ + 'numeric' => 'La valeur de :attribute doit être inférieure à :value.', + 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', + 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', + 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', + ], + 'lte' => [ + 'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.', + 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', + 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', + 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', + ], 'max' => [ 'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.', 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', @@ -65,6 +88,7 @@ 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', ], 'not_in' => "Le champ :attribute sélectionné n'est pas valide.", + 'not_regex' => "Le format du champ :attribute n'est pas valide.", 'numeric' => 'Le champ :attribute doit contenir un nombre.', 'present' => 'Le champ :attribute doit être présent.', 'regex' => 'Le format du champ :attribute est invalide.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'nom', 'username' => "nom d'utilisateur", 'email' => 'adresse courriel', @@ -147,5 +171,4 @@ 'available' => 'disponible', 'size' => 'taille', ], - ]; diff --git a/src/gl/auth.php b/src/gl/auth.php index da7d36fa98d..004519e47c0 100644 --- a/src/gl/auth.php +++ b/src/gl/auth.php @@ -1,7 +1,6 @@ 'Estas credenciais non coinciden cos nosos rexistros.', 'throttle' => 'Demasiados intentos de acceso. Por favor inténteo de novo en :seconds segundos.', - ]; diff --git a/src/gl/pagination.php b/src/gl/pagination.php index 4134ec0015d..28e7907de99 100644 --- a/src/gl/pagination.php +++ b/src/gl/pagination.php @@ -1,7 +1,6 @@ '« Anterior', - 'next' => 'Seguinte »', - + 'previous' => '« Anterior', + 'next' => 'Seguinte »', ]; diff --git a/src/gl/passwords.php b/src/gl/passwords.php index 5af8b924ce4..b28129bb9e5 100644 --- a/src/gl/passwords.php +++ b/src/gl/passwords.php @@ -1,7 +1,6 @@ 'Enviámosche por correo electrónico o enlace de restablecemento do contrasinal!', 'token' => 'Este token de restablecemento do contrasinal non é válido.', 'user' => 'Non podemos atopar un usuario con ese correo electrónico.', - ]; diff --git a/src/gl/validation.php b/src/gl/validation.php index e65da8837bf..0753338a35e 100644 --- a/src/gl/validation.php +++ b/src/gl/validation.php @@ -1,7 +1,6 @@ ':attribute debe ser aceptado.', 'active_url' => ':attribute non é unha URL válida.', 'after' => ':attribute debe ser unha data posterior a :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'after_or_equal' => 'O :attribute debe ser unha data posterior ou igual a :date.', 'alpha' => ':attribute só debe conter letras.', 'alpha_dash' => ':attribute só debe conter letras, números e guións.', 'alpha_num' => ':attribute só debe conter letras e números.', 'array' => ':attribute debe ser un conxunto.', 'before' => ':attribute debe ser unha data anterior a :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'before_or_equal' => 'O :attribute debe ser unha data previa ou igual a :date.', 'between' => [ 'numeric' => ':attribute debe estar entre :min e :max.', 'file' => 'O tamaño de :attribute debe estar entre :min e :max quilobites.', @@ -42,14 +41,38 @@ 'exists' => 'O :attribute seleccionado non é válido.', 'file' => 'The :attribute must be a file.', 'filled' => 'O campo :attribute é obrigatorio.', + 'gt' => [ + 'numeric' => 'O :attribute debe ser maior que :value.', + 'file' => 'O :attribute debe ter máis de :value quilobytes.', + 'string' => 'O :attribute debe ter máis de :value caracteres.', + 'array' => 'O :attribute debe ter máis de :value elementos.', + ], + 'gte' => [ + 'numeric' => 'O :attribute debe ser polo menos :value.', + 'file' => 'O :attribute debe ter polo menos de :value quilobytes.', + 'string' => 'O :attribute debe ter polo menos :value caracteres.', + 'array' => 'O :attribute deber ter polo menos :value elementos.', + ], 'image' => ':attribute debe ser unha imaxe.', 'in' => 'O :attribute seleccionado non é válido.', 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => ':attribute debe ser un número enteiro.', 'ip' => ':attribute debe ser unha dirección IP válida.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => 'O :attribute debe ser unha dirección IPv4 válida.', + 'ipv6' => 'O :attribute debe ser unha dirección IPv6 válida.', 'json' => ':attribute debe ser unha cadea JSON válida.', + 'lt' => [ + 'numeric' => 'O :attribute debe ser menor que :value.', + 'file' => 'O :attribute debe ter menos de :value quilobytes.', + 'string' => 'O :attribute debe ter menos de :value caracteres.', + 'array' => 'O :attribute debe ter menos de :value elementos.', + ], + 'lte' => [ + 'numeric' => 'O :attribute debe ser como moito :value.', + 'file' => 'O :attribute debe ter como moito :value quilobytes.', + 'string' => 'O :attribute debe ter como moito :value caracteres.', + 'array' => 'O :attribute non debe ter máis de :value elementos.', + ], 'max' => [ 'numeric' => ':attribute non debe ser maior de :max.', 'file' => 'O tamaño de :attribute non debe ser maior de :max quilobites.', @@ -65,6 +88,7 @@ 'array' => ':attribute debe conter polo menos :min elementos.', ], 'not_in' => ':attribute non é válido.', + 'not_regex' => 'O formato de :attribute non é válido.', 'numeric' => ':attribute debe de ser un número.', 'present' => 'The :attribute field must be present.', 'regex' => 'O formato de :attribute non é válido.', @@ -85,7 +109,7 @@ 'string' => ':attribute debe ser unha cadea de caracteres.', 'timezone' => ':attribute debe ser unha zona válida.', 'unique' => ':attribute xa foi empregado.', - 'uploaded' => 'The :attribute failed to upload.', + 'uploaded' => 'O :attribute fallou na subida.', 'url' => 'O formato de :attribute é inválido.', /* @@ -117,5 +141,4 @@ */ 'attributes' => [], - ]; diff --git a/src/he/auth.php b/src/he/auth.php index 83197e2b681..65038419968 100644 --- a/src/he/auth.php +++ b/src/he/auth.php @@ -1,7 +1,6 @@ 'פרטים אלה אינם תואמים את רישומינו.', 'throttle' => 'ניסיונות כניסה רבים מדי. אנא נסו שוב בעוד :seconds שניות.', - ]; diff --git a/src/he/pagination.php b/src/he/pagination.php index 7a1b16a1732..17f4641de52 100644 --- a/src/he/pagination.php +++ b/src/he/pagination.php @@ -1,7 +1,6 @@ '« הקודם', - 'next' => 'הבא »', - + 'previous' => '« הקודם', + 'next' => 'הבא »', ]; diff --git a/src/he/passwords.php b/src/he/passwords.php index 4e07ad2947f..8ea78f07ee6 100644 --- a/src/he/passwords.php +++ b/src/he/passwords.php @@ -1,7 +1,6 @@ 'קישור לאיפוס הסיסמה נשלח אליך באימייל', 'token' => 'אסימון איפוס הסיסמה הזה לא תקני.', 'user' => 'לא הצלחנו למצוא משתמש עם כתובת האימייל הזאת.', - ]; diff --git a/src/he/validation.php b/src/he/validation.php index 4c021700e3b..9109bad8e34 100644 --- a/src/he/validation.php +++ b/src/he/validation.php @@ -1,7 +1,6 @@ 'בחירת ה-:attribute אינה תקפה.', 'file' => 'שדה :attribute חייב להיות קובץ.', 'filled' => 'שדה :attribute הוא חובה.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'שדה :attribute חייב להיות תמונה.', 'in' => 'בחירת ה-:attribute אינה תקפה.', 'in_array' => 'שדה :attribute לא קיים ב:other.', @@ -50,6 +61,18 @@ 'ipv4' => 'שדה :attribute חייב להיות כתובת IPv4 תקנית.', 'ipv6' => 'שדה :attribute חייב להיות כתובת IPv6 תקנית.', 'json' => 'שדה :attribute חייב להיות מחרוזת JSON תקנית.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'שדה :attribute אינו יכול להיות גדול מ-:max.', 'file' => 'שדה :attribute לא יכול להיות גדול מ-:max קילובייטים.', @@ -65,6 +88,7 @@ 'array' => 'שדה :attribute חייב להיות לפחות :min פריטים.', ], 'not_in' => 'בחירת ה-:attribute אינה תקפה.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'שדה :attribute חייב להיות מספר.', 'present' => 'שדה :attribute חייב להיות קיים.', 'regex' => 'שדה :attribute בעל פורמט שאינו תקין.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -117,7 +141,5 @@ */ 'attributes' => [ - // ], - ]; diff --git a/src/hi/auth.php b/src/hi/auth.php index fe5c26adae5..73f21b746e4 100644 --- a/src/hi/auth.php +++ b/src/hi/auth.php @@ -1,7 +1,6 @@ 'ये साख हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।', 'throttle' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।', - ]; diff --git a/src/hi/pagination.php b/src/hi/pagination.php index 18526f079dc..7f0c3e7133d 100644 --- a/src/hi/pagination.php +++ b/src/hi/pagination.php @@ -1,7 +1,6 @@ '« पिछला', - 'next' => 'अगला »', - + 'previous' => '« पिछला', + 'next' => 'अगला »', ]; diff --git a/src/hi/passwords.php b/src/hi/passwords.php index d0355a90eaa..e4eb95f8e2b 100644 --- a/src/hi/passwords.php +++ b/src/hi/passwords.php @@ -1,7 +1,6 @@ 'हमने आपको एक पासवर्ड रीसेट लिंक ई-मेल किया है!', 'token' => 'यह पासवर्ड रीसेट टोकन अमान्य है।', 'user' => 'हमें उस ई-मेल पते के साथ एक उपयोगकर्ता नहीं मिल सकता है।', - ]; diff --git a/src/hi/validation.php b/src/hi/validation.php index 928336f162d..9b81a12d412 100644 --- a/src/hi/validation.php +++ b/src/hi/validation.php @@ -1,7 +1,6 @@ ':attribute को स्वीकार किया जाना चाहिए।', 'active_url' => ':attribute एक मान्य URL नहीं है।', 'after' => ':attribute, :date के बाद की एक तारीख होनी चाहिए।', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => ':attribute में केवल अक्षर हो सकते हैं।', 'alpha_dash' => ':attribute में केवल अक्षर, संख्या, और डैश हो सकते हैं।', 'alpha_num' => ':attribute में केवल अक्षर और संख्याएं हो सकती हैं।', 'array' => ':attribute एक सरणी होनी चाहिए।', 'before' => ':attribute, :date से पहले की एक तारीख होनी चाहिए।', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => ':attribute, :min और :max के बीच होना चाहिए।', 'file' => ':attribute, :min और :max किलोबाइट के बीच होना चाहिए।', @@ -34,10 +35,24 @@ 'different' => ':attribute और :other अलग होना चाहिए।', 'digits' => ':attribute, :digits अंक होना चाहिए।', 'digits_between' => ':attribute, :min और :max अंकों के बीच होना चाहिए।', + 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => ':attribute फील्ड का एक डुप्लिकेट मान होता है।', 'email' => ':attribute एक मान्य ईमेल पता होना चाहिए।', 'exists' => 'चुना गया :attribute अमान्य है।', + 'file' => 'The :attribute must be a file.', 'filled' => ':attribute फील्ड आवश्यक होता है।', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute एक छवि होनी चाहिए।', 'in' => 'चुना गया :attribute अमान्य है।', 'in_array' => ':attribute फील्ड, :other में मौजूद नहीं है।', @@ -46,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':attribute एक मान्य JSON स्ट्रिंग होना चाहिए।', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute, :max से बड़ा नहीं हो सकता है।', 'file' => ':attribute :max किलोबाइट से बड़ा नहीं हो सकता है।', @@ -53,6 +80,7 @@ 'array' => ':attribute, :max आइटमों से अधिक नहीं हो सकता है।', ], 'mimes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'numeric' => ':attribute कम से कम :min होना चाहिए।', 'file' => ':attribute कम से कम :min किलोबाइट होना चाहिए।', @@ -60,6 +88,7 @@ 'array' => ':attribute कम से कम :min आइटम होना चाहिए।', ], 'not_in' => 'चुना गया :attribute अमान्य है।', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute एक संख्या होनी चाहिए।', 'present' => ':attribute फील्ड मौजूद होना चाहिए।', 'regex' => ':attribute फॉर्मेट अमान्य है।', @@ -80,6 +109,7 @@ 'string' => ':attribute एक स्ट्रिंग होनी चाहिए।', 'timezone' => ':attribute एक मान्य क्षेत्र होना चाहिए।', 'unique' => ':attribute को पहले ही ले लिया गया है।', + 'uploaded' => 'The :attribute failed to upload.', 'url' => ':attribute फॉर्मेट अमान्य है।', /* @@ -118,5 +148,4 @@ 'result_text_under_image' => 'छवि के नीचे परिणाम पाठ', 'short_text' => 'लघु पाठ', ], - ]; diff --git a/src/hr/auth.php b/src/hr/auth.php index 2142a42f941..28e024237b7 100644 --- a/src/hr/auth.php +++ b/src/hr/auth.php @@ -1,7 +1,6 @@ 'Ovi podaci ne odgovaraju našima.', 'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.', - ]; diff --git a/src/hr/pagination.php b/src/hr/pagination.php index e0bed173dad..6184107dfb1 100644 --- a/src/hr/pagination.php +++ b/src/hr/pagination.php @@ -1,7 +1,6 @@ '« Prethodna', - 'next' => 'Sljedeća »', - + 'previous' => '« Prethodna', + 'next' => 'Sljedeća »', ]; diff --git a/src/hr/passwords.php b/src/hr/passwords.php index 59f39af3fe0..30289f8f06e 100644 --- a/src/hr/passwords.php +++ b/src/hr/passwords.php @@ -1,7 +1,6 @@ 'Poveznica za ponovono postavljanje lozinke je poslana!', 'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.', 'user' => 'Korisnik nije pronađen.', - ]; diff --git a/src/hr/validation.php b/src/hr/validation.php index d2a89aff35e..f8353113d6f 100644 --- a/src/hr/validation.php +++ b/src/hr/validation.php @@ -1,7 +1,6 @@ 'Polje :attribute mora biti prihvaćeno.', 'active_url' => 'Polje :attribute nije ispravan URL.', 'after' => 'Polje :attribute mora biti datum nakon :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.', 'alpha' => 'Polje :attribute smije sadržavati samo slova.', 'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.', 'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.', 'array' => 'Polje :attribute mora biti niz.', 'before' => 'Polje :attribute mora biti datum prije :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.', 'between' => [ 'numeric' => 'Polje :attribute mora biti između :min - :max.', 'file' => 'Polje :attribute mora biti između :min - :max kilobajta.', @@ -36,20 +35,44 @@ 'different' => 'Polja :attribute i :other moraju biti različita.', 'digits' => 'Polje :attribute mora sadržavati :digits znamenki.', 'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', + 'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.', + 'distinct' => 'Polje :attribute ima dupliciranu vrijednost.', 'email' => 'Polje :attribute mora biti ispravna e-mail adresa.', 'exists' => 'Odabrano polje :attribute nije ispravno.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field is required.', + 'file' => 'Polje :attribute mora biti datoteka.', + 'filled' => 'Polje :attribute je obavezno.', + 'gt' => [ + 'numeric' => 'Polje :attribute mora biti veće od :value.', + 'file' => 'Polje :attribute mora biti veće od :value kilobajta.', + 'string' => 'Polje :attribute mora biti veće od :value karaktera.', + 'array' => 'Polje :attribute mora biti veće od :value stavki.', + ], + 'gte' => [ + 'numeric' => 'Polje :attribute mora biti veće ili jednako :value.', + 'file' => 'Polje :attribute mora biti veće ili jednako :value kilobajta.', + 'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.', + 'array' => 'Polje :attribute mora imati :value stavki ili više.', + ], 'image' => 'Polje :attribute mora biti slika.', 'in' => 'Odabrano polje :attribute nije ispravno.', - 'in_array' => 'The :attribute field does not exist in :other.', + 'in_array' => 'Polje :attribute ne postoji u :other.', 'integer' => 'Polje :attribute mora biti broj.', 'ip' => 'Polje :attribute mora biti ispravna IP adresa.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => 'The :attribute must be a valid JSON string.', + 'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.', + 'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.', + 'json' => 'Polje :attribute mora biti ispravan JSON string.', + 'lt' => [ + 'numeric' => 'Polje :attribute mora biti manje od :value.', + 'file' => 'Polje :attribute mora biti manje od :value kilobajta.', + 'string' => 'Polje :attribute mora biti manje od :value znakova.', + 'array' => 'Polje :attribute mora biti manje od :value stavki.', + ], + 'lte' => [ + 'numeric' => 'Polje :attribute mora biti manje ili jednako :value.', + 'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.', + 'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.', + 'array' => 'Polje :attribute ne smije imati više od :value stavki.', + ], 'max' => [ 'numeric' => 'Polje :attribute mora biti manje od :max.', 'file' => 'Polje :attribute mora biti manje od :max kilobajta.', @@ -65,12 +88,13 @@ 'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.', ], 'not_in' => 'Odabrano polje :attribute nije ispravno.', + 'not_regex' => 'Format polja :attribute je neispravan.', 'numeric' => 'Polje :attribute mora biti broj.', - 'present' => 'The :attribute field must be present.', + 'present' => 'Polje :attribute mora biti prisutno.', 'regex' => 'Polje :attribute se ne podudara s formatom.', 'required' => 'Polje :attribute je obavezno.', 'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.', 'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.', 'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.', 'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.', @@ -82,10 +106,10 @@ 'string' => 'Polje :attribute mora biti :size znakova.', 'array' => 'Polje :attribute mora sadržavati :size stavki.', ], - 'string' => 'The :attribute must be a string.', + 'string' => 'Polje :attribute mora biti string.', 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.', 'unique' => 'Polje :attribute već postoji.', - 'uploaded' => 'The :attribute failed to upload.', + 'uploaded' => 'Polje :attribute nije uspešno učitano.', 'url' => 'Polje :attribute nije ispravnog formata.', /* @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/hu/auth.php b/src/hu/auth.php index d0c5f94e13b..9896ef1fc27 100644 --- a/src/hu/auth.php +++ b/src/hu/auth.php @@ -1,7 +1,6 @@ 'Rossz email-jelszó páros.', 'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.', - ]; diff --git a/src/hu/pagination.php b/src/hu/pagination.php index b8c2d561507..80d89f151f1 100755 --- a/src/hu/pagination.php +++ b/src/hu/pagination.php @@ -1,7 +1,6 @@ '« Előző', - 'next' => 'Következő »', - + 'previous' => '« Előző', + 'next' => 'Következő »', ]; diff --git a/src/hu/passwords.php b/src/hu/passwords.php index fbe5f04a3f0..fe931457542 100755 --- a/src/hu/passwords.php +++ b/src/hu/passwords.php @@ -1,7 +1,6 @@ 'Jelszó-emlékeztető elküldve!', 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', 'user' => 'Nem található felhasználó a megadott email címmel.', - ]; diff --git a/src/hu/validation.php b/src/hu/validation.php index f2d3085764c..d3c908f9d35 100755 --- a/src/hu/validation.php +++ b/src/hu/validation.php @@ -1,7 +1,6 @@ 'A(z) :attribute már létezik.', 'file' => 'A(z) :attribute fájl kell, hogy legyen!', 'filled' => 'A(z) :attribute megadása kötelező!', + 'gt' => [ + 'numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value!', + 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.', + 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.', + 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.', + ], + 'gte' => [ + 'numeric' => 'A(z) :attribute nagyobb vagy egyenlő kell, hogy legyen, mint :value!', + 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.', + 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.', + 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.', + ], 'image' => 'A(z) :attribute képfájl kell, hogy legyen!', 'in' => 'A kiválasztott :attribute érvénytelen.', 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.', @@ -50,6 +61,18 @@ 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!', 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!', 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!', + 'lt' => [ + 'numeric' => 'A(z) :attribute kisebb kell, hogy legyen, mint :value!', + 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.', + 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.', + 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.', + ], + 'lte' => [ + 'numeric' => 'A(z) :attribute kisebb vagy egyenlő kell, hogy legyen, mint :value!', + 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.', + 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.', + 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.', + ], 'max' => [ 'numeric' => 'A(z) :attribute értéke nem lehet nagyobb, mint :max!', 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.', @@ -65,6 +88,7 @@ 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.', ], 'not_in' => 'A(z) :attribute értéke érvénytelen.', + 'not_regex' => 'A(z) :attribute formátuma érvénytelen.', 'numeric' => 'A(z) :attribute szám kell, hogy legyen!', 'present' => 'A(z) :attribute mező nem található!', 'regex' => 'A(z) :attribute formátuma érvénytelen.', @@ -82,7 +106,7 @@ 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!', 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!', ], - 'string' => 'A(z) :attribute szövegnek kell legyen.', + 'string' => 'A(z) :attribute szöveg kell, hogy legyen.', 'timezone' => 'A(z) :attribute nem létező időzona.', 'unique' => 'A(z) :attribute már foglalt.', 'uploaded' => 'A(z) :attribute feltöltése sikertelen.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,9 +140,8 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'név', 'password' => 'jelszó', ], - ]; diff --git a/src/id/auth.php b/src/id/auth.php index fd14094958a..81b820afadf 100644 --- a/src/id/auth.php +++ b/src/id/auth.php @@ -1,7 +1,6 @@ 'Identitas tersebut tidak cocok dengan data kami.', 'throttle' => 'Terlalu banyak usaha masuk. Silahkan coba lagi dalam :seconds detik.', - ]; diff --git a/src/id/pagination.php b/src/id/pagination.php index b43f146fc55..58e87298397 100644 --- a/src/id/pagination.php +++ b/src/id/pagination.php @@ -1,19 +1,17 @@ '« Sebelumnya', - 'next' => 'Berikutnya »', - + 'previous' => '« Sebelumnya', + 'next' => 'Berikutnya »', ]; diff --git a/src/id/passwords.php b/src/id/passwords.php index 8790f92f799..f7310064230 100644 --- a/src/id/passwords.php +++ b/src/id/passwords.php @@ -1,7 +1,6 @@ 'Kata sandi harus minimal enam karakter dan cocok dengan konfirmasi.', + 'password' => 'Kata sandi minimal harus memiliki enam karakter dan cocok dengan konfirmasi.', 'reset' => 'Kata sandi Anda sudah direset!', - 'sent' => 'Kami sudah mengirim email yang berisi tautan untuk mereset kata sandi Anda!', - 'token' => 'Kata sandi token pengaturan ulang tidak sah.', + 'sent' => 'Kami sudah mengirim surel yang berisi tautan untuk mereset kata sandi Anda!', + 'token' => 'Token pengaturan ulang kata sandi tidak sah.', 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat surel tersebut.', - ]; diff --git a/src/id/validation.php b/src/id/validation.php index 1ffa09ea072..ee1e6db0003 100644 --- a/src/id/validation.php +++ b/src/id/validation.php @@ -1,7 +1,6 @@ 'Isian :attribute harus berupa tanggal sebelum atau sama dengan tanggal :date.', 'between' => [ 'numeric' => 'Isian :attribute harus antara :min dan :max.', - 'file' => 'Isian :attribute harus antara :min dan :max kilobytes.', + 'file' => 'Bidang :attribute harus antara :min dan :max kilobita.', 'string' => 'Isian :attribute harus antara :min dan :max karakter.', 'array' => 'Isian :attribute harus antara :min dan :max item.', ], @@ -42,6 +41,18 @@ 'exists' => 'Isian :attribute yang dipilih tidak valid.', 'file' => 'Bidang :attribute harus berupa sebuah berkas.', 'filled' => 'Isian :attribute harus memiliki nilai.', + 'gt' => [ + 'numeric' => 'Isian :attribute harus lebih besar dari :value.', + 'file' => 'Bidang :attribute harus lebih besar dari :value kilobita.', + 'string' => 'Isian :attribute harus lebih besar dari :value karakter.', + 'array' => 'Isian :attribute harus lebih dari :value item.', + ], + 'gte' => [ + 'numeric' => 'Isian :attribute harus lebih besar dari atau sama dengan :value.', + 'file' => 'Bidang :attribute harus lebih besar dari atau sama dengan :value kilobita.', + 'string' => 'Isian :attribute harus lebih besar dari atau sama dengan :value karakter.', + 'array' => 'Isian :attribute harus mempunyai :value item atau lebih.', + ], 'image' => 'Isian :attribute harus berupa gambar.', 'in' => 'Isian :attribute yang dipilih tidak valid.', 'in_array' => 'Bidang isian :attribute tidak terdapat dalam :other.', @@ -50,9 +61,21 @@ 'ipv4' => 'Isian :attribute harus berupa alamat IPv4 yang valid.', 'ipv6' => 'Isian :attribute harus berupa alamat IPv6 yang valid.', 'json' => 'Isian :attribute harus berupa JSON string yang valid.', + 'lt' => [ + 'numeric' => 'Isian :attribute harus kurang dari :value.', + 'file' => 'Bidang :attribute harus kurang dari :value kilobita.', + 'string' => 'Isian :attribute harus kurang dari :value karakter.', + 'array' => 'Isian :attribute harus kurang dari :value item.', + ], + 'lte' => [ + 'numeric' => 'Isian :attribute harus kurang dari atau sama dengan :value.', + 'file' => 'Bidang :attribute harus kurang dari atau sama dengan :value kilobita.', + 'string' => 'Isian :attribute harus kurang dari atau sama dengan :value karakter.', + 'array' => 'Isian :attribute harus tidak lebih dari :value item.', + ], 'max' => [ 'numeric' => 'Isian :attribute seharusnya tidak lebih dari :max.', - 'file' => 'Isian :attribute seharusnya tidak lebih dari :max kilobytes.', + 'file' => 'Bidang :attribute seharusnya tidak lebih dari :max kilobita.', 'string' => 'Isian :attribute seharusnya tidak lebih dari :max karakter.', 'array' => 'Isian :attribute seharusnya tidak lebih dari :max item.', ], @@ -60,11 +83,12 @@ 'mimetypes' => 'Isian :attribute harus dokumen berjenis : :values.', 'min' => [ 'numeric' => 'Isian :attribute harus minimal :min.', - 'file' => 'Isian :attribute harus minimal :min kilobytes.', + 'file' => 'Bidang :attribute harus minimal :min kilobita.', 'string' => 'Isian :attribute harus minimal :min karakter.', 'array' => 'Isian :attribute harus minimal :min item.', ], 'not_in' => 'Isian :attribute yang dipilih tidak valid.', + 'not_regex' => 'Format isian :attribute tidak valid.', 'numeric' => 'Isian :attribute harus berupa angka.', 'present' => 'Bidang isian :attribute wajib ada.', 'regex' => 'Format isian :attribute tidak valid.', @@ -78,7 +102,7 @@ 'same' => 'Isian :attribute dan :other harus sama.', 'size' => [ 'numeric' => 'Isian :attribute harus berukuran :size.', - 'file' => 'Isian :attribute harus berukuran :size kilobyte.', + 'file' => 'Bidang :attribute harus berukuran :size kilobyte.', 'string' => 'Isian :attribute harus berukuran :size karakter.', 'array' => 'Isian :attribute harus mengandung :size item.', ], @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/is/auth.php b/src/is/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/is/auth.php +++ b/src/is/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/is/pagination.php b/src/is/pagination.php index 94120e3503e..7f330cfa9e8 100644 --- a/src/is/pagination.php +++ b/src/is/pagination.php @@ -1,7 +1,6 @@ '« Fyrri', - 'next' => 'Næsta »', - + 'previous' => '« Fyrri', + 'next' => 'Næsta »', ]; diff --git a/src/is/passwords.php b/src/is/passwords.php index 31903eda73d..709e67bcf49 100644 --- a/src/is/passwords.php +++ b/src/is/passwords.php @@ -1,7 +1,6 @@ 'Við sendum þér tölvupóst með slóð til að endurheimta lykilorðið þitt.', 'token' => 'Kóðinn til að endurheimta lykilorðið er rangur.', 'user' => 'Notandi með þetta netfang finnst ekki.', - ]; diff --git a/src/is/validation.php b/src/is/validation.php index 1c67d52a67e..b1a611c437a 100644 --- a/src/is/validation.php +++ b/src/is/validation.php @@ -1,7 +1,6 @@ 'The :attribute must be a file.', 'filled' => 'Reiturinn :attribute verður að innihalda eitthvað.', 'exists' => 'Reiturinn :attribute er nú þegar til.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Reiturinn :attribute verður að vera mynd.', 'in' => 'Reiturinn :attribute er ekki réttur.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Reiturinn :attribute verður að innihalda færri stafi en :max.', 'file' => 'Reiturinn :attribute verður að vera minni en :max kílóbæt.', @@ -65,6 +88,7 @@ 'array' => 'Reiturinn :attribute verður að vera að lágmarki :min stök.', ], 'not_in' => 'Reiturinn :attribute er ógildur.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Reiturinn :attribute verður að vera tala.', 'present' => 'The :attribute field must be present.', 'regex' => 'Reiturinn :attribute er ekki á réttu formi.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => 'Nafn', 'username' => 'Notendanafn', 'email' => 'Netfang', @@ -147,5 +171,4 @@ 'available' => 'Í boði', 'size' => 'Stærð', ], - ]; diff --git a/src/it/auth.php b/src/it/auth.php index e65d3a67344..b844f9c4190 100644 --- a/src/it/auth.php +++ b/src/it/auth.php @@ -1,7 +1,6 @@ 'Credenziali non corrispondenti ai dati registrati.', 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.', - ]; diff --git a/src/it/pagination.php b/src/it/pagination.php index e3c56142378..9eb2174b08e 100644 --- a/src/it/pagination.php +++ b/src/it/pagination.php @@ -1,7 +1,6 @@ '« Precedente', - 'next' => 'Successivo »', - + 'previous' => '« Precedente', + 'next' => 'Successivo »', ]; diff --git a/src/it/passwords.php b/src/it/passwords.php index f698bcab58e..9badaf7b1e1 100644 --- a/src/it/passwords.php +++ b/src/it/passwords.php @@ -1,7 +1,6 @@ 'Promemoria della password inviato!', 'token' => 'Questo token per la reimpostazione della password non è valido.', 'user' => 'Non esiste un utente associato a questo indirizzo e-mail.', - ]; diff --git a/src/it/validation.php b/src/it/validation.php index 2e0234b27f7..330ce72e935 100644 --- a/src/it/validation.php +++ b/src/it/validation.php @@ -1,7 +1,6 @@ ':attribute deve essere una data precedente o uguale al :date.', 'between' => [ 'numeric' => ':attribute deve trovarsi tra :min - :max.', - 'file' => ':attribute deve trovarsi tra :min - :max kilobytes.', + 'file' => ':attribute deve trovarsi tra :min - :max kilobyte.', 'string' => ':attribute deve trovarsi tra :min - :max caratteri.', 'array' => ':attribute deve avere tra :min - :max elementi.', ], @@ -42,6 +41,18 @@ 'exists' => ':attribute selezionato non è valido.', 'file' => ':attribute deve essere un file.', 'filled' => 'Il campo :attribute deve contenere un valore.', + 'gt' => [ + 'numeric' => ':attribute deve essere maggiore di :value.', + 'file' => ':attribute deve essere maggiore di :value kilobyte.', + 'string' => ':attribute deve contenere più di :value caratteri.', + 'array' => ':attribute deve contenere più di :value elementi.', + ], + 'gte' => [ + 'numeric' => ':attribute deve essere uguale o maggiore di :value.', + 'file' => ':attribute deve essere uguale o maggiore di :value kilobyte.', + 'string' => ':attribute deve contenere un numero di caratteri uguale o maggiore di :value.', + 'array' => ':attribute deve contenere un numero di elementi uguale o maggiore di :value.', + ], 'image' => ":attribute deve essere un'immagine.", 'in' => ':attribute selezionato non è valido.', 'in_array' => 'Il valore del campo :attribute non esiste in :other.', @@ -50,9 +61,21 @@ 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.', 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.', 'json' => ':attribute deve essere una stringa JSON valida.', + 'lt' => [ + 'numeric' => ':attribute deve essere minore di :value.', + 'file' => ':attribute deve essere minore di :value kilobyte.', + 'string' => ':attribute deve contenere meno di :value caratteri.', + 'array' => ':attribute deve contenere meno di :value elementi.', + ], + 'lte' => [ + 'numeric' => ':attribute deve essere minore o uguale a :value.', + 'file' => ':attribute deve essere minore o uguale a :value kilobyte.', + 'string' => ':attribute deve contenere un numero di caratteri minore o uguale a :value.', + 'array' => ':attribute deve contenere un numero di elementi minore o uguale a :value.', + ], 'max' => [ 'numeric' => ':attribute non può essere superiore a :max.', - 'file' => ':attribute non può essere superiore a :max kilobytes.', + 'file' => ':attribute non può essere superiore a :max kilobyte.', 'string' => ':attribute non può contenere più di :max caratteri.', 'array' => ':attribute non può avere più di :max elementi.', ], @@ -60,11 +83,12 @@ 'mimetypes' => ':attribute deve essere del tipo: :values.', 'min' => [ 'numeric' => ':attribute deve essere almeno :min.', - 'file' => ':attribute deve essere almeno di :min kilobytes.', + 'file' => ':attribute deve essere almeno di :min kilobyte.', 'string' => ':attribute deve contenere almeno :min caratteri.', 'array' => ':attribute deve avere almeno :min elementi.', ], 'not_in' => 'Il valore selezionato per :attribute non è valido.', + 'not_regex' => 'Il formato di :attribute non è valido.', 'numeric' => ':attribute deve essere un numero.', 'present' => 'Il campo :attribute deve essere presente.', 'regex' => 'Il formato del campo :attribute non è valido.', @@ -78,7 +102,7 @@ 'same' => ':attribute e :other devono coincidere.', 'size' => [ 'numeric' => ':attribute deve essere :size.', - 'file' => ':attribute deve essere :size kilobytes.', + 'file' => ':attribute deve essere :size kilobyte.', 'string' => ':attribute deve contenere :size caratteri.', 'array' => ':attribute deve contenere :size elementi.', ], @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -117,7 +141,32 @@ */ 'attributes' => [ - // + 'name' => 'nome', + 'username' => 'nome utente', + 'first_name' => 'nome', + 'last_name' => 'cognome', + 'password_confirmation' => 'conferma password', + 'city' => 'città', + 'country' => 'paese', + 'address' => 'indirizzo', + 'phone' => 'telefono', + 'mobile' => 'cellulare', + 'age' => 'età', + 'sex' => 'sesso', + 'gender' => 'genere', + 'day' => 'giorno', + 'month' => 'mese', + 'year' => 'anno', + 'hour' => 'ora', + 'minute' => 'minuto', + 'second' => 'secondo', + 'title' => 'titolo', + 'content' => 'contenuto', + 'description' => 'descrizione', + 'excerpt' => 'estratto', + 'date' => 'data', + 'time' => 'ora', + 'available' => 'disponibile', + 'size' => 'dimensione', ], - ]; diff --git a/src/ja/auth.php b/src/ja/auth.php index ef79f510fb6..635d02ddf58 100644 --- a/src/ja/auth.php +++ b/src/ja/auth.php @@ -1,7 +1,6 @@ '認証情報と一致するレコードがありません。', 'throttle' => 'ログインの試行回数が多すぎます。:seconds 秒後にお試しください。', - ]; diff --git a/src/ja/pagination.php b/src/ja/pagination.php index 1ebcef722e6..b47f121519c 100644 --- a/src/ja/pagination.php +++ b/src/ja/pagination.php @@ -1,7 +1,6 @@ '« 前', - 'next' => '次 »', - + 'previous' => '« 前', + 'next' => '次 »', ]; diff --git a/src/ja/passwords.php b/src/ja/passwords.php index 8e0b23cf178..74dd65ff7a5 100755 --- a/src/ja/passwords.php +++ b/src/ja/passwords.php @@ -1,7 +1,6 @@ 'パスワードリマインダーを送信しました。', 'token' => 'このパスワードリセットトークンは無効です。', 'user' => 'このメールアドレスに一致するユーザーを見つけることが出来ませんでした。', - ]; diff --git a/src/ja/validation.php b/src/ja/validation.php index ee54465dc0e..74f108b9593 100755 --- a/src/ja/validation.php +++ b/src/ja/validation.php @@ -1,7 +1,6 @@ ':attributeを承認してください。', - 'active_url' => ':attributeは、有効なURLではありません。', - 'after' => ':attributeには、:date以降の日付を指定してください。', - 'after_or_equal' => ':attributeには、:date以降もしくは同日時を指定してください。', - 'alpha' => ':attributeには、アルファベッドのみ使用できます。', - 'alpha_dash' => ":attributeには、英数字('A-Z','a-z','0-9')とハイフンと下線('-','_')が使用できます。", - 'alpha_num' => ":attributeには、英数字('A-Z','a-z','0-9')が使用できます。", - 'array' => ':attributeには、配列を指定してください。', - 'before' => ':attributeには、:date以前の日付を指定してください。', - 'before_or_equal' => ':attributeには、:date以前もしくは同日時を指定してください。', - 'between' => [ + 'accepted' => ':attributeを承認してください。', + 'active_url' => ':attributeは、有効なURLではありません。', + 'after' => ':attributeには、:date以降の日付を指定してください。', + 'after_or_equal' => ':attributeには、:date以降もしくは同日時を指定してください。', + 'alpha' => ':attributeには、アルファベッドのみ使用できます。', + 'alpha_dash' => ":attributeには、英数字('A-Z','a-z','0-9')とハイフンと下線('-','_')が使用できます。", + 'alpha_num' => ":attributeには、英数字('A-Z','a-z','0-9')が使用できます。", + 'array' => ':attributeには、配列を指定してください。', + 'before' => ':attributeには、:date以前の日付を指定してください。', + 'before_or_equal' => ':attributeには、:date以前もしくは同日時を指定してください。', + 'between' => [ 'numeric' => ':attributeには、:minから、:maxまでの数字を指定してください。', 'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。', 'string' => ':attributeは、:min文字から:max文字にしてください。', 'array' => ':attributeの項目は、:min個から:max個にしてください。', ], - 'boolean' => ":attributeには、'true'か'false'を指定してください。", - 'confirmed' => ':attributeと:attribute確認が一致しません。', - 'date' => ':attributeは、正しい日付ではありません。', - 'date_format' => ":attributeの形式は、':format'と合いません。", - 'different' => ':attributeと:otherには、異なるものを指定してください。', - 'digits' => ':attributeは、:digits桁にしてください。', - 'digits_between' => ':attributeは、:min桁から:max桁にしてください。', + 'boolean' => ":attributeには、'true'か'false'を指定してください。", + 'confirmed' => ':attributeと:attribute確認が一致しません。', + 'date' => ':attributeは、正しい日付ではありません。', + 'date_format' => ":attributeの形式は、':format'と合いません。", + 'different' => ':attributeと:otherには、異なるものを指定してください。', + 'digits' => ':attributeは、:digits桁にしてください。', + 'digits_between' => ':attributeは、:min桁から:max桁にしてください。', 'dimensions' => ':attributeは、正しい縦横比ではありません。', 'distinct' => ':attributeに重複した値があります。', @@ -43,6 +42,18 @@ 'exists' => '選択された:attributeは、有効ではありません。', 'file' => ':attributeはファイルでなければいけません。', 'filled' => ':attributeは必須です。', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attributeには、画像を指定してください。', 'in' => '選択された:attributeは、有効ではありません。', 'in_array' => ':attributeは、:otherに存在しません。', @@ -51,6 +62,18 @@ 'ipv4' => ':attributeはIPv4アドレスを指定してください。', 'ipv6' => ':attributeはIPv6アドレスを指定してください。', 'json' => ':attributeには、有効なJSON文字列を指定してください。', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attributeには、:max以下の数字を指定してください。', 'file' => ':attributeには、:max KB以下のファイルを指定してください。', @@ -66,6 +89,7 @@ 'array' => ':attributeの項目は、:max個以上にしてください。', ], 'not_in' => '選択された:attributeは、有効ではありません。', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attributeには、数字を指定してください。', 'present' => ':attributeは、必ず存在しなくてはいけません。', 'regex' => ':attributeには、有効な正規表現を指定してください。', @@ -83,11 +107,11 @@ 'string' => ':attributeは、:size文字にしてください。', 'array' => ':attributeの項目は、:size個にしてください。', ], - 'string' => ':attributeには、文字を指定してください。', - 'timezone' => ':attributeには、有効なタイムゾーンを指定してください。', - 'unique' => '指定の:attributeは既に使用されています。', - 'uploaded' => ':attributeのアップロードに失敗しました。', - 'url' => ':attributeは、有効なURL形式で指定してください。', + 'string' => ':attributeには、文字を指定してください。', + 'timezone' => ':attributeには、有効なタイムゾーンを指定してください。', + 'unique' => '指定の:attributeは既に使用されています。', + 'uploaded' => ':attributeのアップロードに失敗しました。', + 'url' => ':attributeは、有効なURL形式で指定してください。', /* |-------------------------------------------------------------------------- @@ -118,5 +142,4 @@ */ 'attributes' => [], - ]; diff --git a/src/ka/auth.php b/src/ka/auth.php index 09fc0f5b4b8..f11152f836e 100755 --- a/src/ka/auth.php +++ b/src/ka/auth.php @@ -1,7 +1,6 @@ 'მომხმარებელი ამ მონაცემებით არ არსებობს.', 'throttle' => 'წარუმატებელი ავტორიზაცია. გთხოვთ, სცადოთ :seconds წამში.', - ]; diff --git a/src/ka/pagination.php b/src/ka/pagination.php index c399a60f472..441a64f8abf 100755 --- a/src/ka/pagination.php +++ b/src/ka/pagination.php @@ -1,7 +1,6 @@ '« წინა', - 'next' => 'შემდეგი »', - + 'previous' => '« წინა', + 'next' => 'შემდეგი »', ]; diff --git a/src/ka/passwords.php b/src/ka/passwords.php index 8adea68df07..33fea0b43ce 100755 --- a/src/ka/passwords.php +++ b/src/ka/passwords.php @@ -1,7 +1,6 @@ 'თქვენს ელ.ფოსტაზე მიიღებთ პაროლის განახლების ბმულს!', 'token' => 'პაროლის განახლების კოდი არასწორია.', 'user' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.', - ]; diff --git a/src/ka/validation.php b/src/ka/validation.php index eb5fb77a2b7..671e0092654 100755 --- a/src/ka/validation.php +++ b/src/ka/validation.php @@ -1,7 +1,6 @@ 'ასეთი :attribute არ არსებობს.', 'file' => ':attribute უნდა იყოს ფაილი.', 'filled' => ':attribute აუცილებელია.', + 'gt' => [ + 'numeric' => ':attribute უნდა იყოს :value-ზე მეტი.', + 'file' => ':attribute უნდა იყოს :value კილობაიტზე მეტი.', + 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე მეტს.', + 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე მეტს.', + ], + 'gte' => [ + 'numeric' => ':attribute უნდა იყოს მინიმუმ :value.', + 'file' => ':attribute უნდა იყოს მინიმუმ :value კილობაიტი.', + 'string' => ':attribute უნდა შეიცავდეს მინიმუმ :value სიმბოლოს.', + 'array' => ':attribute უნდა შეიცავდეს მინიმუმ :value ელემენტს.', + ], 'image' => ':attribute უნდა იყოს სურათი.', 'in' => 'მითითებული :attribute არასწორია.', 'in_array' => ':attribute უნდა არსებობდეს :other-ში.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute უნდა იყოს IPv4 მისამართი.', 'ipv6' => ':attribute უნდა იყოს IPv6 მისამართი.', 'json' => ':attribute უნდა იყოს JSON ტიპის.', + 'lt' => [ + 'numeric' => ':attribute უნდა იყოს :value-ზე ნაკლები.', + 'file' => ':attribute უნდა იყოს :value კილობაიტზე ნაკლები.', + 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე ნაკლებს.', + 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე ნაკლებს.', + ], + 'lte' => [ + 'numeric' => ':attribute უნდა იყოს მაქსიმუმ :value.', + 'file' => ':attribute უნდა იყოს მაქსიმუმ :value კილობაიტი.', + 'string' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value სიმბოლოს.', + 'array' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value ელემენტს.', + ], 'max' => [ 'numeric' => ':attribute არ უნდა აღემატებოდეს :max-ს.', 'file' => ':attribute არ უნდა აღემატებოდეს :max კილობაიტს.', @@ -65,6 +88,7 @@ 'array' => ':attribute უნდა იყოს მინიმუმ :min.', ], 'not_in' => 'მითითებული :attribute არასწორია.', + 'not_regex' => ':attribute არასწორ ფორმატშია.', 'numeric' => ':attribute უნდა იყოს რიცხვი.', 'present' => ':attribute უნდა არსებობდეს, თუნდაც ცარიელი.', 'regex' => ':attribute არ ემთხვევა ფორმატს.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/kk/auth.php b/src/kk/auth.php index c1672a8576c..1c664623840 100644 --- a/src/kk/auth.php +++ b/src/kk/auth.php @@ -1,7 +1,6 @@ 'Тіркелгі деректері біздің жазбаларымызға сай емес.', 'throttle' => 'Кіру әрекеті тым көп болды. :seconds секундтан соң қайталап көріңіз.', - ]; diff --git a/src/kk/pagination.php b/src/kk/pagination.php index 87a9c911e88..478f4d7ff9b 100644 --- a/src/kk/pagination.php +++ b/src/kk/pagination.php @@ -1,7 +1,6 @@ '« Алдыңғы', - 'next' => 'Келесі »', - + 'previous' => '« Алдыңғы', + 'next' => 'Келесі »', ]; diff --git a/src/kk/passwords.php b/src/kk/passwords.php index 28c8641554e..db5b194b6c6 100644 --- a/src/kk/passwords.php +++ b/src/kk/passwords.php @@ -1,7 +1,6 @@ 'Сізге құпия сөзді қайта орнату сілтемесін жібердік!', 'token' => 'Осы құпиясөзді қайта орнату таңбалауышы жарамсыз.', 'user' => 'Бұл электрондық поштамен ешбір пайдаланушыны таба алмадық.', - ]; diff --git a/src/kk/validation.php b/src/kk/validation.php index ce2553625ec..340f076c0a8 100644 --- a/src/kk/validation.php +++ b/src/kk/validation.php @@ -1,7 +1,6 @@ ' :attribute қабылдануы керек.', 'active_url' => ' :attribute жарамды URL мекенжайы емес.', 'after' => ' :attribute мәні :date күнінен кейінгі күн болуы керек.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => ' :attribute тек әріптерден тұруы керек.', 'alpha_dash' => ' :attribute тек әріптерден, сандардан және сызықшалардан тұруы керек.', 'alpha_num' => ' :attribute тек әріптерден және сандардан тұруы керек.', 'array' => ' :attribute жиым болуы керек.', 'before' => ' :attribute мәні :date күнінен кейінгі күн болуы керек.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => ' :attribute мәні :min және :max аралығында болуы керек.', 'file' => ' :attribute көлемі :min және :max килобайт аралығында болуы керек.', @@ -34,10 +35,24 @@ 'different' => ' :attribute және :other әр түрлі болуы керек.', 'digits' => ' :attribute мәні :digits сан болуы керек.', 'digits_between' => ' :attribute мәні :min және :max аралығындағы сан болуы керек.', + 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => ' :attribute жолында қосарланған мән бар.', 'email' => ' :attribute жарамды электрондық пошта мекенжайы болуы керек.', 'exists' => ' таңдалған :attribute жарамсыз.', + 'file' => 'The :attribute must be a file.', 'filled' => ' :attribute жолы толтырылуы керек.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ' :attribute кескін болуы керек.', 'in' => ' таңдалған :attribute жарамсыз.', 'in_array' => ' :attribute жолы :other ішінде жоқ.', @@ -46,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ' :attribute жарамды JSON тармағы болуы керек.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ' :attribute мәні :max мәнінен көп болмауы керек.', 'file' => ' :attribute мәні :max килобайттан көп болмауы керек.', @@ -53,6 +80,7 @@ 'array' => ' :attribute жиымының құрамы :max элементтен аспауы керек.', ], 'mimes' => ' :attribute мынадай файл түрі болуы керек: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'numeric' => ' :attribute кемінде :min болуы керек.', 'file' => ' :attribute көлемі кемінде :min килобайт болуы керек.', @@ -60,6 +88,7 @@ 'array' => ' :attribute кемінде :min элементтен тұруы керек.', ], 'not_in' => ' таңдалған :attribute жарамсыз.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ' :attribute сан болуы керек.', 'present' => ' :attribute болуы керек.', 'regex' => ' :attribute пішімі жарамсыз.', @@ -80,6 +109,7 @@ 'string' => ' :attribute тармақ болуы керек.', 'timezone' => ' :attribute жарамды аймақ болуы керек.', 'unique' => ' :attribute бұрын алынған.', + 'uploaded' => 'The :attribute failed to upload.', 'url' => ' :attribute пішімі жарамсыз.', /* @@ -118,5 +148,4 @@ 'result_text_under_image' => 'Кескін астындағы нәтиже мәтіні', 'short_text' => 'Қысқа мәтін', ], - ]; diff --git a/src/km/auth.php b/src/km/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/km/auth.php +++ b/src/km/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/km/pagination.php b/src/km/pagination.php index 4d272008b3c..84cc11755bf 100644 --- a/src/km/pagination.php +++ b/src/km/pagination.php @@ -1,7 +1,6 @@ '« មុន', - 'next' => 'បន្ទាប់ »', - + 'previous' => '« មុន', + 'next' => 'បន្ទាប់ »', ]; diff --git a/src/km/passwords.php b/src/km/passwords.php index b707724b50e..fbd3d18e8cb 100644 --- a/src/km/passwords.php +++ b/src/km/passwords.php @@ -1,7 +1,6 @@ 'ពាក្យសម្ងាត់ដែលបានរំលឹកបានផ្ញើរួចរាល់!', 'token' => 'ពាក្យសម្ងាត់ដែលកំណត់ឡើងវិញគឺមិនត្រឹមត្រូវទេ។', 'user' => 'យើងមិនអាចរកឃើញអ្នកប្រើដែលមានអាសយដ្ឋានអ៊ីមែលមួយនេះទេ។', - ]; diff --git a/src/km/validation.php b/src/km/validation.php index 4736dfa4862..e5dd0341a17 100644 --- a/src/km/validation.php +++ b/src/km/validation.php @@ -1,7 +1,6 @@ 'The :attribute field must be true or false', 'confirmed' => ':attribute ការបញ្ជាក់មិនផ្គូផ្គង។', 'date' => ':attribute គឺមិនមែនជាកាលបរិច្ឆេទត្រឹមត្រូវ។', - 'date_format' => ':attribute មិនត្រឹមត្រូវនិងទំរង :format​នេះ។', + 'date_format' => ':attribute មិនត្រឹមត្រូវនិងទំរង :formatនេះ។', 'different' => ':attribute និង :other ត្រូវតែបញ្ជាក់។', 'digits' => ':attribute ត្រូវជាខ្ទុង :digits។', - 'digits_between' => ':attribute ត្រូវចាប់ពីខ្ទុង :min​ទៅ :max។', + 'digits_between' => ':attribute ត្រូវចាប់ពីខ្ទុង :minទៅ :max។', 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', 'email' => ':attribute ទំរង់នេះមិនត្រឹមត្រូវ។', 'exists' => 'ការជ្រើសរើស :attribute ត្រឹមត្រូវ។', 'file' => 'The :attribute must be a file.', 'filled' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute ត្រូវតៃជារូបភាព។', 'in' => 'ការជ្រើសរើស :attribute មិនត្រឹមត្រូវ។', 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => ':attribute ត្រូវតែជាចំនួនគត់។', - 'ip' => ':attribute ត្រូវតែជា IP address​ត្រឹមត្រូវ។', + 'ip' => ':attribute ត្រូវតែជា IP addressត្រឹមត្រូវ។', 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ - 'numeric' => ':attribute មិនត្រូវធំជាង :max​។', + 'numeric' => ':attribute មិនត្រូវធំជាង :max។', 'file' => ':attribute មិនត្រូវធំជាង :max គីឡូបៃ។', 'string' => ':attribute មិនត្រូវធំជាង :max តួអក្សរ។', 'array' => ':attribute មិនត្រូវច្រើនជាងធាតុនេះ :max។', @@ -65,11 +88,12 @@ 'array' => ':attribute ត្រូវតែតិចជាងធាតុនេះ :min។', ], 'not_in' => 'ការជ្រើសរើស :attribute គឺត្រឹមត្រូវ។', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute ត្រូវតែជាលេខ។', 'present' => 'The :attribute field must be present.', 'regex' => ':attribute ទំរងមិនត្រឹមត្រូវ។', 'required' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។', - 'required_if' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :other គឺ :value​។', + 'required_if' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :other គឺ :value។', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :values ត្រូវបង្ហាញ។', 'required_with_all' => 'The :attribute field is required when :values is present.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ko/auth.php b/src/ko/auth.php index 469434fc76f..e4b662e9951 100644 --- a/src/ko/auth.php +++ b/src/ko/auth.php @@ -1,7 +1,6 @@ '제출된 인증 정보가 레코드와 일치하지 않습니다.', 'throttle' => '너무 많은 로그인을 시도하였습니다. :seconds 초 후에 다시 시도하십시요.', - ]; diff --git a/src/ko/pagination.php b/src/ko/pagination.php index d4a9eef40aa..79fc1908196 100644 --- a/src/ko/pagination.php +++ b/src/ko/pagination.php @@ -1,7 +1,6 @@ '« 이전', - 'next' => '다음 »', - + 'previous' => '« 이전', + 'next' => '다음 »', ]; diff --git a/src/ko/passwords.php b/src/ko/passwords.php index 41951b81df7..3d4b8d1a9d5 100644 --- a/src/ko/passwords.php +++ b/src/ko/passwords.php @@ -1,7 +1,6 @@ '비밀번호 재설정 링크를 이메일로 전송했습니다!', 'token' => '해당 비밀번호 재설정 토큰이 유효하지 않습니다.', 'user' => '해당 이메일을 사용하는 사용자를 찾을 수 없습니다.', - ]; diff --git a/src/ko/validation.php b/src/ko/validation.php index b0db3408449..5cca9200a87 100644 --- a/src/ko/validation.php +++ b/src/ko/validation.php @@ -1,7 +1,6 @@ '선택된 :attribute은(는) 유효하지 않습니다.', 'file' => ':attribute은(는) 파일이어야 합니다.', 'filled' => ':attribute 필드는 값이 있어야 합니다.', + 'gt' => [ + 'numeric' => ':attribute의 값은 :value보다 커야 합니다.', + 'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.', + 'string' => ':attribute의 길이는 :value보다 길어야 합니다.', + 'array' => ':attribute의 항목수는 :value개 보다 많아야 합니다.', + ], + 'gte' => [ + 'numeric' => ':attribute의 값은 :value보다 같거나 커야 합니다.', + 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.', + 'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.', + 'array' => ':attribute의 항목수는 :value개 보다 같거나 많아야 합니다.', + ], 'image' => ':attribute은(는) 이미지여야 합니다.', 'in' => '선택된 :attribute은(는) 유효하지 않습니다.', 'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.', 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.', 'json' => ':attribute은(는) JSON 문자열이어야 합니다.', + 'lt' => [ + 'numeric' => ':attribute의 값은 :value보다 작아야 합니다.', + 'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.', + 'string' => ':attribute의 길이는 :value보다 짧아야 합니다.', + 'array' => ':attribute의 항목수는 :value개 보다 작아야 합니다.', + ], + 'lte' => [ + 'numeric' => ':attribute의 값은 :value보다 같거나 작아야 합니다.', + 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.', + 'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.', + 'array' => ':attribute의 항목수는 :value개 보다 같거나 작아야 합니다.', + ], 'max' => [ 'numeric' => ':attribute은(는) :max보다 클 수 없습니다.', 'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.', @@ -65,6 +88,7 @@ 'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.', ], 'not_in' => '선택된 :attribute이(가) 유효하지 않습니다.', + 'not_regex' => ':attribute의 형식이 올바르지 않습니다.', 'numeric' => ':attribute은(는) 숫자여야 합니다.', 'present' => ':attribute 필드가 있어야 합니다.', 'regex' => ':attribute 형식이 유효하지 않습니다.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/lt/auth.php b/src/lt/auth.php index bbca17315d5..7f6720f26c5 100644 --- a/src/lt/auth.php +++ b/src/lt/auth.php @@ -1,7 +1,6 @@ 'Prisijungimo duomenys neatitinka.', 'throttle' => 'Perdaug bandymų prisijungti. Bandykite po :seconds sec.', - ]; diff --git a/src/lt/pagination.php b/src/lt/pagination.php index d2ba5375c39..fb6979a9fe6 100644 --- a/src/lt/pagination.php +++ b/src/lt/pagination.php @@ -1,7 +1,6 @@ '« Ankstesnis', - 'next' => 'Sekantis »', - + 'previous' => '« Ankstesnis', + 'next' => 'Sekantis »', ]; diff --git a/src/lt/passwords.php b/src/lt/passwords.php index 3da5515ff20..4dd982c0048 100644 --- a/src/lt/passwords.php +++ b/src/lt/passwords.php @@ -1,7 +1,6 @@ 'Naujo slaptažodžio nustatymo nuoroda išsiųsta', 'token' => 'Šis slaptažodžio raktas yra neteisingas.', 'user' => 'Vartotojas su tokiu el. pašu nerastas.', - ]; diff --git a/src/lt/validation.php b/src/lt/validation.php index ae3c33f0924..abda3edacdc 100644 --- a/src/lt/validation.php +++ b/src/lt/validation.php @@ -1,7 +1,6 @@ 'The :attribute must be a file.', 'filled' => 'Laukas :attribute turi būti užpildytas.', 'exists' => 'Pasirinkta negaliojanti :attribute reikšmė.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Lauko :attribute reikšmė turi būti paveikslėlis.', 'in' => 'Pasirinkta negaliojanti :attribute reikšmė.', 'in_array' => 'Laukas :attribute neegzistuoja :other lauke.', - 'integer' => 'Lauko :attribute reikšmė turi būti veikasis skaičius.', + 'integer' => 'Lauko :attribute reikšmė turi būti sveikasis skaičius.', 'ip' => 'Lauko :attribute reikšmė turi būti galiojantis IP adresas.', 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Lauko :attribute reikšmė turi būti JSON tekstas.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Lauko :attribute reikšmė negali būti didesnė nei :max.', 'file' => 'Failo dydis lauke :attribute reikšmė negali būti didesnė nei :max kilobaitų.', @@ -65,6 +88,7 @@ 'array' => 'Elementų kiekis lauke :attribute turi būti ne mažiau nei :min.', ], 'not_in' => 'Pasirinkta negaliojanti reikšmė :attribute.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Lauko :attribute reikšmė turi būti skaičius.', 'present' => 'Laukas :attribute turi egzistuoti.', 'regex' => 'Negaliojantis lauko :attribute formatas.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/lv/auth.php b/src/lv/auth.php new file mode 100644 index 00000000000..07dca472a48 --- /dev/null +++ b/src/lv/auth.php @@ -0,0 +1,17 @@ + 'Šie dati neatbilst mūsu reģistram.', + 'throttle' => 'Pārāk daudz pieteikšanās mēģinājumu. Lūdzu mēģiniet vēlreiz pēc :seconds sekundēm.', +]; diff --git a/src/lv/pagination.php b/src/lv/pagination.php new file mode 100644 index 00000000000..ee127e02cf8 --- /dev/null +++ b/src/lv/pagination.php @@ -0,0 +1,17 @@ + '« Iepriekšējais', + 'next' => 'Nākamais »', +]; diff --git a/src/lv/passwords.php b/src/lv/passwords.php new file mode 100644 index 00000000000..47a0310ef05 --- /dev/null +++ b/src/lv/passwords.php @@ -0,0 +1,20 @@ + 'Parolei jābūt vismaz 6 zīmes garai un jāatbilst apstiprinājumam.', + 'reset' => 'Jūsu parole ir atjaunināta!', + 'sent' => 'Mēs nosūtījām paroles maiņas linku uz jūsu e-pastu!', + 'token' => 'Šāda zīme pie paroles maiņas nav atļauta.', + 'user' => 'Mēs nevaram atrast lietotāju ar tādu e-pasta adresi.', +]; diff --git a/src/lv/validation.php b/src/lv/validation.php new file mode 100644 index 00000000000..7f6b9540540 --- /dev/null +++ b/src/lv/validation.php @@ -0,0 +1,144 @@ + ' :attribute ir jābūt pieņemtam.', + 'active_url' => ' :attribute ir ar nederīgu linku.', + 'after' => ' :attribute ir jābūt ar datumu pēc :datums.', + 'after_or_equal' => ' :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.', + 'alpha' => ' :attribute var saturēt tikai burtus.', + 'alpha_dash' => ' :attribute var saturēt tikai burtus, nummurus un atstarpes.', + 'alpha_num' => ' :attribute var tikai saturēt burtus un nummurus.', + 'array' => ' :attribute ir jābūt sakārtotam.', + 'before' => ' :attribute ir jābūt ar datumu pirms :datums.', + 'before_or_equal' => ' :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.', + 'between' => [ + 'numeric' => ' :attribute jābūt starp :min un :max.', + 'file' => ' :attribute jābūt starp :min un :max kilobaiti.', + 'string' => ' :attribute jābūt no :min līdz :max zīmēm.', + 'array' => ' :attribute jābūt no :min līdz :max vienībām.', + ], + 'boolean' => ' :attribute laiciņam jābūt atbilstošam vai neatbilstošam.', + 'confirmed' => ' :attribute apstiprinājums neatbilst.', + 'date' => ' :attribute nav derīgs.', + 'date_format' => ' :attribute neatbilst formātam :format.', + 'different' => ' :attribute un :other ir jābūt citiem.', + 'digits' => ' :attribute ir jābūt :digits ciparam.', + 'digits_between' => ' :attribute ir jābūt :min un :max ciparam.', + 'dimensions' => ' :attribute ir nederīgs attēla izmērs.', + 'distinct' => ' :attribute laikam ir dubulta vērtība.', + 'email' => ' :attribute derīgam e-pastam.', + 'exists' => 'Izvēlētais :attribute ir nederīgs.', + 'file' => ' :attribute jābūt failam.', + 'filled' => ':attribute lauks ir nepieciešams.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ' :attribute jābūt attēlam.', + 'in' => 'Izvēlētais :attribute ir nederīgs.', + 'in_array' => ' :attribute laiks neeksistē :cits.', + 'integer' => ' :attribute ir jabūt skaitim.', + 'ip' => ' :attribute jābūt derīgai IP adresei.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'json' => ' :attribute jābūt derīgai JSON virknei.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ' :attribute nedrīkst pārsniegt :max.', + 'file' => ' :attribute nedrīkst pārsniegt :max kilobaiti.', + 'string' => ' :attribute nedrīkst pārsniegt :max zīmes.', + 'array' => ' :attribute nedrīkst pārsniegt :max vienības.', + ], + 'mimes' => ' :attribute jābūt faila tipam: :values', + 'mimetypes' => ' :attribute jābūt faile tipam: :values.', + 'min' => [ + 'numeric' => ' :attribute jābūt vismaz :min.', + 'file' => ' :attribute jābūt vismaz :min kilobaiti.', + 'string' => ' :attribute jābūt vismaz :min zīmes.', + 'array' => ' :attribute jāsatur vismaz :min vienības.', + ], + 'not_in' => ' izvēlieties :attribute ir nederīgs.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ' :attribute jābūt skaitlim.', + 'present' => ' :attribute laikums ir nepieciešams.', + 'regex' => ' :attribute formāts ir nederīgs.', + 'required' => ' :attribute laukums ir nepieciešams.', + 'required_if' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.', + 'required_unless' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.', + 'required_with' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.', + 'required_with_all' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.', + 'required_without' => ' :attribute laukums ir nepieciešams, kad :values nav pieejama.', + 'required_without_all' => ' :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.', + 'same' => ' :attribute un :citiem ir jāsakrīt.', + 'size' => [ + 'numeric' => ' :attribute jābūt :size.', + 'file' => ' :attribute jābūt :size kilobaiti.', + 'string' => ' :attribute jābūt :size zīmes.', + 'array' => ' :attribute jāsatur :size vienības.', + ], + 'string' => ' :attribute jābūt virknē.', + 'timezone' => ' :attribute jābūt derīgā zonā.', + 'unique' => ' :attribute jau ir aizņemts.', + 'uploaded' => ' :attribute netika augšuplādēts.', + 'url' => ' :attribute formāts ir nederīgs.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'ziņa pēc pieprasījuma', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], +]; diff --git a/src/me/auth.php b/src/me/auth.php index adbe7ec4645..89a1111b947 100644 --- a/src/me/auth.php +++ b/src/me/auth.php @@ -1,7 +1,6 @@ 'Neispravan username i/ili password.', 'throttle' => 'Previše neuspješnih pokušaja. Probajte ponovo za :seconds sekundi.', - ]; diff --git a/src/me/pagination.php b/src/me/pagination.php index 95777e3e29b..aa382b94bc3 100644 --- a/src/me/pagination.php +++ b/src/me/pagination.php @@ -1,7 +1,6 @@ '« Prethodna', - 'next' => 'Sledeća »', - + 'previous' => '« Prethodna', + 'next' => 'Sledeća »', ]; diff --git a/src/me/passwords.php b/src/me/passwords.php index 728c52daff5..66afe428b35 100644 --- a/src/me/passwords.php +++ b/src/me/passwords.php @@ -1,7 +1,6 @@ 'Poslali smo Vam link za reset Vašeg password-a!', 'token' => 'Token za reset ovog passworda nije validan.', 'user' => 'Ne možemo naći korisnika sa unijetom email adresom.', - ]; diff --git a/src/me/validation.php b/src/me/validation.php index a7365409b95..4eb3a82bffb 100644 --- a/src/me/validation.php +++ b/src/me/validation.php @@ -1,7 +1,6 @@ 'Odabrano polje :attribute nije validno.', 'file' => 'The :attribute must be a file.', 'filled' => 'Polje :attribute je obavezno.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Polje :attribute mora biti slika.', 'in' => 'Odabrano polje :attribute nije validno.', 'in_array' => 'Polje :attribute ne postoji u :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Polje :attribute mora biti validan JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Polje :attribute mora biti manje od :max.', 'file' => 'Polje :attribute mora biti manje od :max kilobajta.', @@ -65,6 +88,7 @@ 'array' => 'Polje :attribute mora sadrzati najmanje :min stavke.', ], 'not_in' => 'Odabrani element polja :attribute nije validan.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Polje :attribute mora biti broj.', 'present' => 'Polje :attribute mora postojati.', 'regex' => 'Format polja :attribute nije validan.', @@ -147,5 +171,4 @@ 'subject' => 'naslov', 'message' => 'poruka', ], - ]; diff --git a/src/mk/auth.php b/src/mk/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/mk/auth.php +++ b/src/mk/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/mk/pagination.php b/src/mk/pagination.php index 9256ff85367..06ab1f17834 100644 --- a/src/mk/pagination.php +++ b/src/mk/pagination.php @@ -1,7 +1,6 @@ '« Назад', - 'next' => 'Напред »', - + 'previous' => '« Назад', + 'next' => 'Напред »', ]; diff --git a/src/mk/passwords.php b/src/mk/passwords.php index 50934b3f402..f71178f18ab 100644 --- a/src/mk/passwords.php +++ b/src/mk/passwords.php @@ -1,7 +1,6 @@ 'Испратен емаил со инструкции за ресетирање на лозинка!', 'token' => 'Невалиден токен за ресетирање на лозинката.', 'user' => 'Не може да се пронајде корисник со таква емаил адреса.', - ]; diff --git a/src/mk/validation.php b/src/mk/validation.php index 7c6c238b9ba..54362129dcd 100644 --- a/src/mk/validation.php +++ b/src/mk/validation.php @@ -1,7 +1,6 @@ 'Избранато поле :attribute веќе постои.', 'file' => 'The :attribute must be a file.', 'filled' => 'Полето :attribute е задолжително.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Полето :attribute мора да биде слика.', 'in' => 'Избраното поле :attribute е невалидно.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Полето :attribute мора да биде помало од :max.', 'file' => 'Полето :attribute мора да биде помало од :max килобајти.', @@ -65,6 +88,7 @@ 'array' => 'Полето :attribute мора да има минимум :min карактери.', ], 'not_in' => 'Избраното поле :attribute е невалидно.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Полето :attribute мора да биде број.', 'present' => 'The :attribute field must be present.', 'regex' => 'Полето :attribute е во невалиден формат.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/mn/auth.php b/src/mn/auth.php index 1353338ef9c..23189a80d59 100644 --- a/src/mn/auth.php +++ b/src/mn/auth.php @@ -1,7 +1,6 @@ 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', 'throttle' => 'Олон удаагийн буруу оролдого. :seconds секундийн дараа дахин оролдоно уу.', - ]; diff --git a/src/mn/pagination.php b/src/mn/pagination.php index 527e46ab9b0..76a4c94fbb7 100644 --- a/src/mn/pagination.php +++ b/src/mn/pagination.php @@ -1,7 +1,6 @@ '« Өмнөх', - 'next' => 'Дараах »', - + 'previous' => '« Өмнөх', + 'next' => 'Дараах »', ]; diff --git a/src/mn/passwords.php b/src/mn/passwords.php index 33f36b90dbc..03b8857b196 100644 --- a/src/mn/passwords.php +++ b/src/mn/passwords.php @@ -1,7 +1,6 @@ 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', 'token' => 'Алдаатай нууц үг сэргээх холбоос.', 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', - ]; diff --git a/src/mn/validation.php b/src/mn/validation.php index f14d3e05bb2..e4c24867212 100644 --- a/src/mn/validation.php +++ b/src/mn/validation.php @@ -1,7 +1,6 @@ 'Сонгогдсон :attribute буруу байна.', 'file' => ':Attribute талбарт файл оруулах шаардлагатай.', 'filled' => ':Attribute талбар шаардлагатай.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':Attribute талбарт зураг оруулна уу.', 'in' => 'Сонгогдсон :attribute буруу байна.', 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.', 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.', 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':Attribute талбарт :max буюу түүнээс бага утга оруулна уу.', 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.', @@ -63,6 +88,7 @@ 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.', ], 'not_in' => 'Буруу :attribute сонгогдсон байна.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':Attribute талбарт тоон утга оруулна уу.', 'present' => ':Attribute талбар байх шаардлагатай.', 'regex' => ':Attribute талбарт оруулсан утга буруу байна.', @@ -115,7 +141,5 @@ */ 'attributes' => [ - // ], - ]; diff --git a/src/ms/auth.php b/src/ms/auth.php index c9b639d3197..320ab55b6cf 100644 --- a/src/ms/auth.php +++ b/src/ms/auth.php @@ -1,7 +1,6 @@ 'Butiran ini tidak sepadan dengan rekod kami.', 'throttle' => 'Terlalu banyak percubaan log masuk. Sila cuba lagi dalam :seconds saat.', - ]; diff --git a/src/ms/pagination.php b/src/ms/pagination.php index 734506cd9d6..54718610a4b 100644 --- a/src/ms/pagination.php +++ b/src/ms/pagination.php @@ -1,7 +1,6 @@ '« Sebelumnya', - 'next' => 'Seterusnya »', - + 'previous' => '« Sebelumnya', + 'next' => 'Seterusnya »', ]; diff --git a/src/ms/passwords.php b/src/ms/passwords.php index c89afe3f7fa..f4b7e6afd86 100644 --- a/src/ms/passwords.php +++ b/src/ms/passwords.php @@ -1,7 +1,6 @@ 'Kami telah e-mel pautan set semula kata laluan anda!', 'token' => 'Token set semula kata laluan ini tidak sah.', 'user' => 'Kami tidak dapat mencari pengguna dengan alamat e-mel tersebut.', - ]; diff --git a/src/ms/validation.php b/src/ms/validation.php index 25c5149f759..07c5b379803 100644 --- a/src/ms/validation.php +++ b/src/ms/validation.php @@ -1,7 +1,6 @@ ':attribute mesti mengandungi antara :min dan :max aksara.', 'array' => ':attribute mesti mengandungi antara :min dan :max perkara.', ], - 'boolean' => ':attribute mesti benar atau palsu.', + 'boolean' => ':attribute mesti benar atau salah.', 'confirmed' => ':attribute pengesahan yang tidak sepadan.', 'date' => ':attribute bukan tarikh yang sah.', 'date_format' => ':attribute tidak mengikut format :format.', @@ -42,6 +41,18 @@ 'exists' => ':attribute tidak sah.', 'file' => ':attribute mesti fail yang sah.', 'filled' => ':attribute diperlukan.', + 'gt' => [ + 'numeric' => ':attribute mesti melebihi :value.', + 'file' => ':attribute mesti melebihi :value kilobait.', + 'string' => ':attribute mesti melebihi :value aksara.', + 'array' => ':attribute mesti mengandungi lebih daripada :value perkara.', + ], + 'gte' => [ + 'numeric' => ':attribute mesti melebihi atau bersamaan :value.', + 'file' => ':attribute mesti melebihi atau bersamaan :value kilobait.', + 'string' => ':attribute mesti melebihi atau bersamaan :value aksara.', + 'array' => ':attribute mesti mengandungi :value perkara atau lebih.', + ], 'image' => ':attribute mesti imej.', 'in' => ':attribute tidak sah.', 'in_array' => ':attribute tidak wujud dalam :other.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute mesti alamat IPv4 yang sah.', 'ipv6' => ':attribute mesti alamat IPv6 yang sah', 'json' => ':attribute mesti JSON yang sah.', + 'lt' => [ + 'numeric' => ':attribute mesti kurang daripada :value.', + 'file' => ':attribute mesti kurang daripada :value kilobait.', + 'string' => ':attribute mesti kurang daripada :value aksara.', + 'array' => ':attribute mesti mengandungi kurang daripada :value perkara.', + ], + 'lte' => [ + 'numeric' => ':attribute mesti kurang daripada atau bersamaan dengan :value.', + 'file' => ':attribute mesti kurang daripada atau bersamaan dengan :value kilobait.', + 'string' => ':attribute mesti kurang daripada atau bersamaan dengan :value aksara.', + 'array' => ':attribute mesti mengandungi kurang daripada atau bersamaan dengan :value perkara.', + ], 'max' => [ 'numeric' => 'Jumlah :attribute mesti tidak melebihi :max.', 'file' => 'Jumlah :attribute mesti tidak melebihi :max kilobait.', @@ -65,9 +88,10 @@ 'array' => 'Jumlah :attribute mesti sekurang-kurangnya :min perkara.', ], 'not_in' => ':attribute tidak sah.', + 'not_regex' => 'Format :attribute adalah tidak sah.', 'numeric' => ':attribute mesti nombor.', 'present' => ':attribute mesti wujud.', - 'regex' => ':attribute format tidak sah.', + 'regex' => 'Format :attribute tidak sah.', 'required' => 'Ruangan :attribute diperlukan.', 'required_if' => 'Ruangan :attribute diperlukan bila :other sama dengan :value.', 'required_unless' => 'Ruangan :attribute diperlukan sekiranya :other ada dalam :values.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,5 +140,5 @@ | */ - 'attributes' => [], + 'attributes' => [], ]; diff --git a/src/nb/auth.php b/src/nb/auth.php index 664176aa995..f8eb4820bf4 100644 --- a/src/nb/auth.php +++ b/src/nb/auth.php @@ -1,7 +1,6 @@ 'Brukernavn og/eller passord er feil.', 'throttle' => 'For mange innloggingsforsøk. Vennligst prøv igjen om :seconds sekunder.', - ]; diff --git a/src/nb/pagination.php b/src/nb/pagination.php index 48961d4764d..269cf336cc9 100755 --- a/src/nb/pagination.php +++ b/src/nb/pagination.php @@ -1,7 +1,6 @@ '« Forrige', - 'next' => 'Neste »', - + 'previous' => '« Forrige', + 'next' => 'Neste »', ]; diff --git a/src/nb/passwords.php b/src/nb/passwords.php index e29fef12d09..1f078bf1d81 100755 --- a/src/nb/passwords.php +++ b/src/nb/passwords.php @@ -1,7 +1,6 @@ 'Vi har sendt deg en lenke du kan klikke på for å endre passordet ditt!', 'token' => 'Passord-nullstillingskoden er ikke gyldig.', 'user' => 'Vi finner ingen brukere med denne e-postadressen.', - ]; diff --git a/src/nb/validation.php b/src/nb/validation.php index 6db018a30ea..2b86d4bc710 100755 --- a/src/nb/validation.php +++ b/src/nb/validation.php @@ -1,7 +1,6 @@ ':attribute må aksepteres.', 'active_url' => ':attribute er ikke en gyldig URL.', 'after' => ':attribute må være en dato etter :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'after_or_equal' => ':attribute må være en dato etter eller lik :date.', 'alpha' => ':attribute må kun bestå av bokstaver.', 'alpha_dash' => ':attribute må kun bestå av bokstaver, tall og bindestreker.', 'alpha_num' => ':attribute må kun bestå av bokstaver og tall.', 'array' => ':attribute må være en matrise.', 'before' => ':attribute må være en dato før :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'before_or_equal' => ':attribute må være en dato før eller lik :date.', 'between' => [ - 'numeric' => ':attribute skal være mellom :min - :max.', - 'file' => ':attribute skal være mellom :min - :max kilobytes.', - 'string' => ':attribute skal være mellom :min - :max tegn.', + 'numeric' => ':attribute må være mellom :min - :max.', + 'file' => ':attribute må være mellom :min - :max kilobyte.', + 'string' => ':attribute må være mellom :min - :max tegn.', 'array' => ':attribute må ha mellom :min - :max elementer.', ], - 'boolean' => 'The :attribute field must be true or false', + 'boolean' => ':attribute må være sann eller usann', 'confirmed' => ':attribute er ikke likt bekreftelsesfeltet.', 'date' => ':attribute er ikke en gyldig dato.', - 'date_format' => ':attribute matcher ikke formatet :format.', - 'different' => ':attribute og :other skal være forskellige.', - 'digits' => ':attribute skal ha :digits siffer.', - 'digits_between' => ':attribute skal være mellom :min og :max siffer.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', - 'email' => ':attribute format er ugyldig.', + 'date_format' => ':attribute samsvarer ikke med formatet :format.', + 'different' => ':attribute og :other må være forskellige.', + 'digits' => ':attribute må ha :digits siffer.', + 'digits_between' => ':attribute må være mellom :min og :max siffer.', + 'dimensions' => ':attribute har ugyldige bildedimensjoner.', + 'distinct' => ':attribute har en duplisert verdi.', + 'email' => ':attribute må være en gyldig e-postadresse.', 'exists' => 'Det valgte :attribute er ugyldig.', - 'file' => 'The :attribute must be a file.', + 'file' => ':attribute må være en fil.', 'filled' => ':attribute må fylles ut.', - 'image' => ':attribute skal være et bilde.', + 'gt' => [ + 'numeric' => ':attribute må være større enn :value.', + 'file' => ':attribute må være større enn :value kilobyte.', + 'string' => ':attribute må være større enn :value tegn.', + 'array' => ':attribute må ha flere enn :value elementer.', + ], + 'gte' => [ + 'numeric' => ':attribute må være større enn eller lik :value.', + 'file' => ':attribute må være større enn eller lik :value kilobyte.', + 'string' => ':attribute må være større enn eller lik :value tegn.', + 'array' => ':attribute må ha :value elementer eller flere.', + ], + 'image' => ':attribute må være et bilde.', 'in' => 'Det valgte :attribute er ugyldig.', - 'in_array' => 'The :attribute field does not exist in :other.', - 'integer' => ':attribute skal være et heltall.', - 'ip' => ':attribute skal være en gyldig IP adresse.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'in_array' => 'Det valgte :attribute eksisterer ikke i :other.', + 'integer' => ':attribute må være et heltall.', + 'ip' => ':attribute må være en gyldig IP-adresse.', + 'ipv4' => ':attribute må være en gyldig IPv4-adresse.', + 'ipv6' => ':attribute må være en gyldig IPv6-addresse.', 'json' => ':attribute må være på JSON-format.', + 'lt' => [ + 'numeric' => ':attribute må være mindre enn :value.', + 'file' => ':attribute må være mindre enn :value kilobyte.', + 'string' => ':attribute må være mindre enn :value tegn.', + 'array' => ':attribute må ha færre enn :value elementer.', + ], + 'lte' => [ + 'numeric' => ':attribute må være mindre enn eller lik :value.', + 'file' => ':attribute må være mindre enn eller lik :value kilobyte.', + 'string' => ':attribute må være mindre enn eller lik :value tegn.', + 'array' => ':attribute må ikke ha flere enn :value elementer.', + ], 'max' => [ - 'numeric' => ':attribute skal være mindre enn :max.', - 'file' => ':attribute skal være mindre enn :max kilobytes.', - 'string' => ':attribute skal være kortere enn :max tegn.', - 'array' => ':attribute skal ikke ha fler enn :max elementer.', + 'numeric' => ':attribute må ikke være større enn :max.', + 'file' => ':attribute må ikke være større enn :max kilobyte.', + 'string' => ':attribute må ikke være lengre enn :max tegn.', + 'array' => ':attribute må ikke ha flere enn :max elementer.', ], - 'mimes' => ':attribute skal være en fil av typen: :values.', - 'mimetypes' => ':attribute skal være en fil av typen: :values.', + 'mimes' => ':attribute må være en fil av typen: :values.', + 'mimetypes' => ':attribute må være en fil av typen: :values.', 'min' => [ - 'numeric' => ':attribute skal være større enn :min.', - 'file' => ':attribute skal være større enn :min kilobytes.', - 'string' => ':attribute skal være lengre enn :min tegn.', - 'array' => ':attribute må være minst :min elementer.', + 'numeric' => ':attribute må være minst :min.', + 'file' => ':attribute må være minst :min kilobyte.', + 'string' => ':attribute må være minst :min tegn.', + 'array' => ':attribute må ha minst :min elementer.', ], 'not_in' => 'Den valgte :attribute er ugyldig.', - 'numeric' => ':attribute skal være et tall.', - 'present' => 'The :attribute field must be present.', + 'not_regex' => 'Formatet på :attribute er ugyldig.', + 'numeric' => ':attribute må være et tall.', + 'present' => ':attribute må eksistere.', 'regex' => 'Formatet på :attribute er ugyldig.', 'required' => ':attribute må fylles ut.', 'required_if' => ':attribute må fylles ut når :other er :value.', @@ -78,14 +102,14 @@ 'same' => ':attribute og :other må være like.', 'size' => [ 'numeric' => ':attribute må være :size.', - 'file' => ':attribute må være :size kilobytes.', + 'file' => ':attribute må være :size kilobyte.', 'string' => ':attribute må være :size tegn lang.', 'array' => ':attribute må inneholde :size elementer.', ], 'string' => ':attribute må være en tekststreng.', 'timezone' => ':attribute må være en gyldig tidssone.', 'unique' => ':attribute er allerede i bruk.', - 'uploaded' => 'The :attribute failed to upload.', + 'uploaded' => ':attribute kunne ikke lastes opp.', 'url' => 'Formatet på :attribute er ugyldig.', /* @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ne/auth.php b/src/ne/auth.php index bc93a94b535..c5e420af7da 100644 --- a/src/ne/auth.php +++ b/src/ne/auth.php @@ -1,7 +1,6 @@ 'यी प्रमाणहरू हाम्रो रेकर्ड संग मेल खादैनन्।', 'throttle' => 'धेरै लगिन प्रयास भयो। :seconds सेकेन्ड पछि फेरि प्रयास गर्नुहोस्।', - ]; diff --git a/src/ne/pagination.php b/src/ne/pagination.php index 998716a0b8a..0bd8e24ddd1 100644 --- a/src/ne/pagination.php +++ b/src/ne/pagination.php @@ -1,7 +1,6 @@ '« अघिल्लो', - 'next' => 'अर्को »', - + 'previous' => '« अघिल्लो', + 'next' => 'अर्को »', ]; diff --git a/src/ne/passwords.php b/src/ne/passwords.php index 702a08dceab..2a99ec1c344 100644 --- a/src/ne/passwords.php +++ b/src/ne/passwords.php @@ -1,7 +1,6 @@ 'हामीले पासवर्ड परिवर्तन गर्ने लिंक ईमेलमा पठाएका छौ!', 'token' => 'यो पासवर्ड रिसेट गर्ने टोकन अमान्य छ।', 'user' => 'दिइएको ईमेल प्रयोगकर्ता भेटिएन।', - ]; diff --git a/src/ne/validation.php b/src/ne/validation.php index b68909f8153..43e50b00b91 100644 --- a/src/ne/validation.php +++ b/src/ne/validation.php @@ -1,7 +1,6 @@ 'छानिएको :attribute अमान्य छ।', 'file' => 'The :attribute must be a file.', 'filled' => ':attribute दिइएको हुनुपर्छ।', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute मा फोटो हुनुपर्छ।', 'in' => 'छानिएको :attribute अमान्य छ।', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':attribute मा दिइएको मान्य JSON string हुनुपर्छ।', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute :max भन्दा बढी हुनुहुदैन।', 'file' => ':attribute :max kilobytes भन्दा बढी हुनुहुदैन।', @@ -65,6 +88,7 @@ 'array' => ':attribute मा कम्तिमा :min आइटम हुनुपर्छ।', ], 'not_in' => 'छानिएको :attribute अमान्य छ।', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute संख्या हुनुपर्छ।', 'present' => 'The :attribute field must be present.', 'regex' => ':attribute को ढाँचा मिलेन।', @@ -117,5 +141,4 @@ */ 'attributes' => [], - ]; diff --git a/src/nl/auth.php b/src/nl/auth.php index 91f1a3284a1..ef99035939a 100644 --- a/src/nl/auth.php +++ b/src/nl/auth.php @@ -1,7 +1,6 @@ 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', 'throttle' => 'Te veel mislukte loginpogingen. Probeer het over :seconds seconden nogmaals.', - ]; diff --git a/src/nl/pagination.php b/src/nl/pagination.php index 9a2a9677a4f..d2bc1a67399 100644 --- a/src/nl/pagination.php +++ b/src/nl/pagination.php @@ -1,7 +1,6 @@ '« Vorige', - 'next' => 'Volgende »', - + 'previous' => '« Vorige', + 'next' => 'Volgende »', ]; diff --git a/src/nl/passwords.php b/src/nl/passwords.php index a8a289415a3..b9d4d31c674 100644 --- a/src/nl/passwords.php +++ b/src/nl/passwords.php @@ -1,7 +1,6 @@ 'Wachtwoord moet minimaal zes tekens lang zijn en de wachtwoorden moeten overeenkomen.', 'reset' => 'Het wachtwoord van uw account is gewijzigd.', 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', - 'token' => 'Dit wachtwoord reset token is niet geldig.', - 'user' => 'Geen gebruiker bekend met dat e-mailadres.', - + 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', + 'user' => 'Geen gebruiker bekend met het e-mailadres.', ]; diff --git a/src/nl/validation.php b/src/nl/validation.php index 6798ca4a716..805e0a395ce 100644 --- a/src/nl/validation.php +++ b/src/nl/validation.php @@ -1,7 +1,6 @@ ':attribute bestaat niet.', 'file' => ':attribute moet een bestand zijn.', 'filled' => ':attribute is verplicht.', + 'gt' => [ + 'numeric' => 'De :attribute moet groter zijn dan :value.', + 'file' => 'De :attribute moet groter zijn dan :value kilobytes.', + 'string' => 'De :attribute moet meer dan :value karakters bevatten.', + 'array' => 'De :attribute moet meer dan :value waardes bevatten.', + ], + 'gte' => [ + 'numeric' => 'De :attribute moet groter of gelijk zijn aan :value.', + 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.', + 'string' => 'De :attribute moet :value karakters of meer bevatten.', + 'array' => 'De :attribute moet :value waardes of meer bevatten.', + ], 'image' => ':attribute moet een afbeelding zijn.', 'in' => ':attribute is ongeldig.', 'in_array' => ':attribute bestaat niet in :other.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute moet een geldig IPv4-adres zijn.', 'ipv6' => ':attribute moet een geldig IPv6-adres zijn.', 'json' => ':attribute moet een geldige JSON-string zijn.', + 'lt' => [ + 'numeric' => 'De :attribute moet kleiner zijn dan :value.', + 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.', + 'string' => 'De :attribute moet minder dan :value karakters bevatten.', + 'array' => 'De :attribute moet minder dan :value waardes bevatten.', + ], + 'lte' => [ + 'numeric' => 'De :attribute moet kleiner of gelijk zijn aan :value.', + 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.', + 'string' => 'De :attribute moet :value karakters of minder bevatten.', + 'array' => 'De :attribute moet :value waardes of minder bevatten.', + ], 'max' => [ 'numeric' => ':attribute mag niet hoger dan :max zijn.', 'file' => ':attribute mag niet meer dan :max kilobytes zijn.', @@ -65,6 +88,7 @@ 'array' => ':attribute moet minimaal :min items bevatten.', ], 'not_in' => 'Het formaat van :attribute is ongeldig.', + 'not_regex' => 'De :attribute formaat is ongeldig.', 'numeric' => ':attribute moet een nummer zijn.', 'present' => ':attribute moet bestaan.', 'regex' => ':attribute formaat is ongeldig.', @@ -82,7 +106,7 @@ 'string' => ':attribute moet :size karakters zijn.', 'array' => ':attribute moet :size items bevatten.', ], - 'string' => ':attribute moet een tekenreeks zijn.', + 'string' => ':attribute moet een tekst zijn.', 'timezone' => ':attribute moet een geldige tijdzone zijn.', 'unique' => ':attribute is al in gebruik.', 'uploaded' => 'Het uploaden van :attribute is mislukt.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'address' => 'adres', 'age' => 'leeftijd', 'available' => 'beschikbaar', @@ -149,5 +173,4 @@ 'username' => 'gebruikersnaam', 'year' => 'jaar', ], - ]; diff --git a/src/nn/auth.php b/src/nn/auth.php index b0b14646742..546519d1377 100644 --- a/src/nn/auth.php +++ b/src/nn/auth.php @@ -1,7 +1,6 @@ 'Brukarnamn og/eller passord er feil.', 'throttle' => 'For mange innloggingsforsøk. Ver venleg og prøv på nytt om :seconds sekund.', - ]; diff --git a/src/nn/pagination.php b/src/nn/pagination.php index 911ae417b73..7a1441d6f85 100755 --- a/src/nn/pagination.php +++ b/src/nn/pagination.php @@ -1,7 +1,6 @@ '« Førre', - 'next' => 'Neste »', - + 'previous' => '« Førre', + 'next' => 'Neste »', ]; diff --git a/src/nn/passwords.php b/src/nn/passwords.php index 43eaea60c55..a765f372dd8 100755 --- a/src/nn/passwords.php +++ b/src/nn/passwords.php @@ -1,7 +1,6 @@ 'Vi har sendt deg ei lenke du kan klikke på for å endre passordet ditt!', 'token' => 'Koden for å nullstille passord er ikkje gyldig.', 'user' => 'Vi finn ingen brukarar med denne e-postadressen.', - ]; diff --git a/src/nn/validation.php b/src/nn/validation.php index 78d7f31def6..c44d385b826 100755 --- a/src/nn/validation.php +++ b/src/nn/validation.php @@ -1,7 +1,6 @@ 'Det valde :attribute er ugyldig.', 'file' => 'The :attribute must be a file.', 'filled' => ':attribute må fyllast ut.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute skal vere eit bilete.', 'in' => 'Det valde :attribute er ugyldig.', 'in_array' => ':attribute eksisterer ikkje i :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':attribute må vere på JSON-format.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute skal vere mindre enn :max.', 'file' => ':attribute skal vere mindre enn :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => ':attribute må vere minst :min element.', ], 'not_in' => 'Den valgte :attribute er ugyldig.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute skal vere eit tal.', 'present' => ':attribute må vere til stades.', 'regex' => 'Formatet på :attribute er ugyldig.', @@ -117,7 +141,5 @@ */ 'attributes' => [ - // ], - ]; diff --git a/src/pl/auth.php b/src/pl/auth.php index f9affe1ae8d..6dfac51ac13 100644 --- a/src/pl/auth.php +++ b/src/pl/auth.php @@ -1,7 +1,6 @@ 'Błędny login lub hasło.', 'throttle' => 'Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.', - ]; diff --git a/src/pl/pagination.php b/src/pl/pagination.php index 564694190f9..f71db7aaed0 100644 --- a/src/pl/pagination.php +++ b/src/pl/pagination.php @@ -1,7 +1,6 @@ '« Poprzednia', - 'next' => 'Następna »', - + 'previous' => '« Poprzednia', + 'next' => 'Następna »', ]; diff --git a/src/pl/passwords.php b/src/pl/passwords.php index c805b01b882..876de0aa917 100644 --- a/src/pl/passwords.php +++ b/src/pl/passwords.php @@ -1,7 +1,6 @@ 'Przypomnienie hasła zostało wysłane!', 'token' => 'Token resetowania hasła jest nieprawidłowy.', 'user' => 'Nie znaleziono użytkownika z takim adresem e-mail.', - ]; diff --git a/src/pl/validation.php b/src/pl/validation.php index f734129f3d7..6cf25432a3a 100644 --- a/src/pl/validation.php +++ b/src/pl/validation.php @@ -1,7 +1,6 @@ 'Zaznaczony :attribute jest nieprawidłowy.', 'file' => ':attribute musi być plikiem.', 'filled' => 'Pole :attribute jest wymagane.', + 'gt' => [ + 'numeric' => ':attribute musi być większy niż :value.', + 'file' => ':attribute musi być większy niż :value kilobajtów.', + 'string' => ':attribute musi być dłuższy niż :value znaków.', + 'array' => ':attribute musi mieć więcej niż :value elementów.', + ], + 'gte' => [ + 'numeric' => ':attribute musi być większy lub równy :value.', + 'file' => ':attribute musi być większy lub równy :value kijobajtów.', + 'string' => ':attribute musi być dłuższy lub równy :value znaków.', + 'array' => ':attribute musi mieć :value lub więcej elementów.', + ], 'image' => ':attribute musi być obrazkiem.', 'in' => 'Zaznaczony :attribute jest nieprawidłowy.', - 'in_array' => ':attribute nie znajduje się w :other.', + 'in_array' => ':attribute nie znajduje się w :other.', 'integer' => ':attribute musi być liczbą całkowitą.', 'ip' => ':attribute musi być prawidłowym adresem IP.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => ':attribute musi być prawidłowym adresem IPv4.', + 'ipv6' => ':attribute musi być prawidłowym adresem IPv6.', 'json' => ':attribute musi być poprawnym ciągiem znaków JSON.', + 'lt' => [ + 'numeric' => ':attribute musi być mniejszy niż :value.', + 'file' => ':attribute musi być mniejszy niż :value kijobajtów.', + 'string' => ':attribute musi być krótszy niż :value znaków.', + 'array' => ':attribute musi mieć mniej niż :value elementów.', + ], + 'lte' => [ + 'numeric' => ':attribute musi być mniejszy lub równy :value.', + 'file' => ':attribute musi być mniejszy lub równy :value kijobajtów.', + 'string' => ':attribute musi być krótszy lub równy :value znaków.', + 'array' => ':attribute musi mieć :value lub mniej elementów.', + ], 'max' => [ 'numeric' => ':attribute nie może być większy niż :max.', 'file' => ':attribute nie może być większy niż :max kilobajtów.', @@ -65,6 +88,7 @@ 'array' => ':attribute musi mieć przynajmniej :min elementów.', ], 'not_in' => 'Zaznaczony :attribute jest nieprawidłowy.', + 'not_regex' => 'Format :attribute jest nieprawidłowy.', 'numeric' => ':attribute musi być liczbą.', 'present' => 'Pole :attribute musi być obecne.', 'regex' => 'Format :attribute jest nieprawidłowy.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/pt-BR/auth.php b/src/pt-BR/auth.php index c6cb01db320..6a25729dbb1 100644 --- a/src/pt-BR/auth.php +++ b/src/pt-BR/auth.php @@ -1,7 +1,6 @@ 'Credenciais informadas não correspondem com nossos registros.', 'throttle' => 'Você realizou muitas tentativas de login. Por favor, tente novamente em :seconds segundos.', - ]; diff --git a/src/pt-BR/pagination.php b/src/pt-BR/pagination.php index 613b015a478..4a700cdcc4b 100644 --- a/src/pt-BR/pagination.php +++ b/src/pt-BR/pagination.php @@ -1,7 +1,6 @@ '« Anterior', - 'next' => 'Próxima »', - + 'previous' => '« Anterior', + 'next' => 'Próxima »', ]; diff --git a/src/pt-BR/passwords.php b/src/pt-BR/passwords.php index fc5f073d311..d95758cbd5f 100644 --- a/src/pt-BR/passwords.php +++ b/src/pt-BR/passwords.php @@ -1,7 +1,6 @@ 'Enviamos um link para redefinir a sua senha por e-mail.', 'token' => 'Esse código de redefinição de senha é inválido.', 'user' => 'Não conseguimos encontrar nenhum usuário com o endereço de e-mail informado.', - ]; diff --git a/src/pt-BR/validation.php b/src/pt-BR/validation.php index 5db00313f8d..39adcabfccc 100644 --- a/src/pt-BR/validation.php +++ b/src/pt-BR/validation.php @@ -1,7 +1,6 @@ 'O valor selecionado para o campo :attribute é inválido.', 'file' => 'O campo :attribute deve conter um arquivo.', 'filled' => 'O campo :attribute é obrigatório.', + 'gt' => [ + 'numeric' => 'O campo :attribute deve ser maior que :value.', + 'file' => 'O arquivo :attribute deve ser maior que :value kilobytes.', + 'string' => 'O campo :attribute deve ser maior que :value caracteres.', + 'array' => 'O campo :attribute deve ter mais que :value itens.', + ], + 'gte' => [ + 'numeric' => 'O campo :attribute deve ser maior ou igual a :value.', + 'file' => 'O arquivo :attribute deve ser maior ou igual a :value kilobytes.', + 'string' => 'O campo :attribute deve ser maior ou igual a :value caracteres.', + 'array' => 'O campo :attribute deve ter :value itens ou mais.', + ], 'image' => 'O campo :attribute deve conter uma imagem.', 'in' => 'O campo :attribute não contém um valor válido.', 'in_array' => 'O campo :attribute não existe em :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'O campo :attribute deve conter um IPv4 válido.', 'ipv6' => 'O campo :attribute deve conter um IPv6 válido.', 'json' => 'O campo :attribute deve conter uma string JSON válida.', + 'lt' => [ + 'numeric' => 'O campo :attribute deve ser menor que :value.', + 'file' => 'O arquivo :attribute ser menor que :value kilobytes.', + 'string' => 'O campo :attribute deve ser menor que :value caracteres.', + 'array' => 'O campo :attribute deve ter menos que :value itens.', + ], + 'lte' => [ + 'numeric' => 'O campo :attribute deve ser menor ou igual a :value.', + 'file' => 'O arquivo :attribute ser menor ou igual a :value kilobytes.', + 'string' => 'O campo :attribute deve ser menor ou igual a :value caracteres.', + 'array' => 'O campo :attribute não deve ter mais que :value itens.', + ], 'max' => [ 'numeric' => 'O campo :attribute não pode conter um valor superior a :max.', 'file' => 'O campo :attribute não pode conter um arquivo com mais de :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => 'O campo :attribute deve conter no mínimo :min itens.', ], 'not_in' => 'O campo :attribute contém um valor inválido.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'O campo :attribute deve conter um valor numérico.', 'present' => 'O campo :attribute deve estar presente.', 'regex' => 'O formato do valor informado no campo :attribute é inválido.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'address' => 'endereço', 'age' => 'idade', 'body' => 'conteúdo', @@ -142,10 +166,12 @@ 'sex' => 'sexo', 'state' => 'estado', 'subject' => 'assunto', + 'text' => 'texto', 'time' => 'hora', 'title' => 'título', 'username' => 'usuário', 'year' => 'ano', + 'email' => 'e-mail', + 'remember' => 'lembrar-se de mim', ], - ]; diff --git a/src/pt/auth.php b/src/pt/auth.php index 8bc5f39b0b7..e10cb34f3a0 100644 --- a/src/pt/auth.php +++ b/src/pt/auth.php @@ -1,7 +1,6 @@ 'As credenciais indicadas não coincidem com as registadas no sistema.', 'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.', - ]; diff --git a/src/pt/pagination.php b/src/pt/pagination.php index 613b015a478..4a700cdcc4b 100644 --- a/src/pt/pagination.php +++ b/src/pt/pagination.php @@ -1,7 +1,6 @@ '« Anterior', - 'next' => 'Próxima »', - + 'previous' => '« Anterior', + 'next' => 'Próxima »', ]; diff --git a/src/pt/passwords.php b/src/pt/passwords.php index 292f2595fdc..7263fcc8884 100644 --- a/src/pt/passwords.php +++ b/src/pt/passwords.php @@ -1,7 +1,6 @@ 'O lembrete para a palavra-passe foi enviado!', 'token' => 'Este código de recuperação da palavra-passe é inválido.', 'user' => 'Não existe nenhum utilizador com o endereço de correio eletrónico indicado.', - ]; diff --git a/src/pt/validation.php b/src/pt/validation.php index 223b777cfab..25820ccfa95 100644 --- a/src/pt/validation.php +++ b/src/pt/validation.php @@ -1,7 +1,6 @@ 'O valor selecionado para o campo :attribute é inválido.', 'file' => 'O campo :attribute deverá conter um ficheiro.', 'filled' => 'É obrigatória a indicação de um valor para o campo :attribute.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'O campo :attribute deverá conter uma imagem.', 'in' => 'O campo :attribute não contém um valor válido.', 'in_array' => 'O campo :attribute não existe em :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'O campo :attribute deverá conter um IPv4 válido.', 'ipv6' => 'O campo :attribute deverá conter um IPv6 válido.', 'json' => 'O campo :attribute deverá conter um texto JSON válido.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'O campo :attribute não deverá conter um valor superior a :max.', 'file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => 'O campo :attribute deverá conter no mínimo :min elementos.', ], 'not_in' => 'O campo :attribute contém um valor inválido.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'O campo :attribute deverá conter um valor numérico.', 'present' => 'O campo :attribute deverá estar presente.', 'regex' => 'O formato do valor para o campo :attribute é inválido.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ro/auth.php b/src/ro/auth.php index 4ecf2fdcab6..1882811f5a0 100644 --- a/src/ro/auth.php +++ b/src/ro/auth.php @@ -1,7 +1,6 @@ 'Datele de identificare nu pot fi confirmate.', 'throttle' => 'Prea multe încercări de intrare în cont. Poți încerca din nou peste :seconds secunde.', - ]; diff --git a/src/ro/pagination.php b/src/ro/pagination.php index b7108a2365b..c6be7f340af 100644 --- a/src/ro/pagination.php +++ b/src/ro/pagination.php @@ -1,7 +1,6 @@ '« Înapoi', - 'next' => 'Înainte »', - + 'previous' => '« Înapoi', + 'next' => 'Înainte »', ]; diff --git a/src/ro/passwords.php b/src/ro/passwords.php index 608fa378d58..5a1328a1761 100644 --- a/src/ro/passwords.php +++ b/src/ro/passwords.php @@ -1,7 +1,6 @@ 'Am trimis un e-mail cu link-ul de resetare a parolei!', 'token' => 'Codul de resetare a parolei este greșit.', 'user' => 'Nu există niciun utilizator cu această adresă de e-mail.', - ]; diff --git a/src/ro/validation.php b/src/ro/validation.php index e8cf80b2b42..9690c61b16b 100644 --- a/src/ro/validation.php +++ b/src/ro/validation.php @@ -1,7 +1,6 @@ 'Câmpul :attribute selectat nu este valid.', 'file' => 'Câmpul :attribute trebuie să fie un fișier.', 'filled' => 'Câmpul :attribute trebuie completat.', + 'gt' => [ + 'numeric' => 'Câmpul :attribute trebuie să fie mai mare de :value.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare de :value kilobyți.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare de :value caractere.', + 'array' => 'Câmpul :attribute trebuie să aibă mai multe de :value elemente.', + ], + 'gte' => [ + 'numeric' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value kilobyți.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value caractere.', + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai multe.', + ], 'image' => 'Câmpul :attribute trebuie să fie o imagine.', 'in' => 'Câmpul :attribute selectat nu este valid.', 'in_array' => 'Câmpul :attribute nu există în :other.', 'integer' => 'Câmpul :attribute trebuie să fie un număr întreg.', 'ip' => 'Câmpul :attribute trebuie să fie o adresă IP validă.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => 'Câmpul :attribute trebuie să fie o adresă IPv4 validă.', + 'ipv6' => 'Câmpul :attribute trebuie să fie o adresă IPv6 validă.', 'json' => 'Câmpul :attribute trebuie să fie un string JSON valid.', + 'lt' => [ + 'numeric' => 'Câmpul :attribute trebuie să fie mai mic de :value.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic de :value kilobyți.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic de :value caractere.', + 'array' => 'Câmpul :attribute trebuie să aibă mai puțin de :value elemente.', + ], + 'lte' => [ + 'numeric' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value kilobyți.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value caractere.', + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai puține.', + ], 'max' => [ 'numeric' => 'Câmpul :attribute nu poate fi mai mare de :max.', 'file' => 'Câmpul :attribute nu poate avea mai mult de :max kiloocteți.', @@ -65,6 +88,7 @@ 'array' => 'Câmpul :attribute trebuie să aibă cel puțin :min elemente.', ], 'not_in' => 'Câmpul :attribute selectat nu este valid.', + 'not_regex' => 'Câmpul :attribute nu are un format valid.', 'numeric' => 'Câmpul :attribute trebuie să fie un număr.', 'present' => 'Câmpul :attribute trebuie să fie prezent.', 'regex' => 'Câmpul :attribute nu are un format valid.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ru/auth.php b/src/ru/auth.php index a9a55ad7cb1..e6e282b4367 100644 --- a/src/ru/auth.php +++ b/src/ru/auth.php @@ -1,7 +1,6 @@ 'Имя пользователя и пароль не совпадают.', 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте еще раз через :seconds секунд.', - ]; diff --git a/src/ru/pagination.php b/src/ru/pagination.php index 1ce7a6c1633..abcf0cbb228 100644 --- a/src/ru/pagination.php +++ b/src/ru/pagination.php @@ -1,7 +1,6 @@ '« Назад', - 'next' => 'Вперёд »', - + 'previous' => '« Назад', + 'next' => 'Вперёд »', ]; diff --git a/src/ru/passwords.php b/src/ru/passwords.php index a7d8a490be3..2611f5552d1 100644 --- a/src/ru/passwords.php +++ b/src/ru/passwords.php @@ -1,7 +1,6 @@ 'Ссылка на сброс пароля была отправлена!', 'token' => 'Ошибочный код сброса пароля.', 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', - ]; diff --git a/src/ru/validation.php b/src/ru/validation.php index 7009f2feb16..ded790941d5 100644 --- a/src/ru/validation.php +++ b/src/ru/validation.php @@ -1,13 +1,12 @@ 'В поле :attribute должна быть дата после :date.', 'after_or_equal' => 'В поле :attribute должна быть дата после или равняться :date.', 'alpha' => 'Поле :attribute может содержать только буквы.', - 'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры и дефис.', + 'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.', 'alpha_num' => 'Поле :attribute может содержать только буквы и цифры.', 'array' => 'Поле :attribute должно быть массивом.', 'before' => 'В поле :attribute должна быть дата до :date.', @@ -40,9 +39,21 @@ 'dimensions' => 'Поле :attribute имеет недопустимые размеры изображения.', 'distinct' => 'Поле :attribute содержит повторяющееся значение.', 'email' => 'Поле :attribute должно быть действительным электронным адресом.', + 'exists' => 'Выбранное значение для :attribute некорректно.', 'file' => 'Поле :attribute должно быть файлом.', 'filled' => 'Поле :attribute обязательно для заполнения.', - 'exists' => 'Выбранное значение для :attribute некорректно.', + 'gt' => [ + 'numeric' => 'Поле :attribute должно быть больше :value.', + 'file' => 'Размер файла в поле :attribute должен быть больше :value Килобайт(а).', + 'string' => 'Количество символов в поле :attribute должно быть больше :value.', + 'array' => 'Количество элементов в поле :attribute должно быть больше :value.', + ], + 'gte' => [ + 'numeric' => 'Поле :attribute должно быть больше или равно :value.', + 'file' => 'Размер файла в поле :attribute должен быть больше или равен :value Килобайт(а).', + 'string' => 'Количество символов в поле :attribute должно быть больше или равно :value.', + 'array' => 'Количество элементов в поле :attribute должно быть больше или равно :value.', + ], 'image' => 'Поле :attribute должно быть изображением.', 'in' => 'Выбранное значение для :attribute ошибочно.', 'in_array' => 'Поле :attribute не существует в :other.', @@ -51,6 +62,18 @@ 'ipv4' => 'Поле :attribute должно быть действительным IPv4-адресом.', 'ipv6' => 'Поле :attribute должно быть действительным IPv6-адресом.', 'json' => 'Поле :attribute должно быть JSON строкой.', + 'lt' => [ + 'numeric' => 'Поле :attribute должно быть меньше :value.', + 'file' => 'Размер файла в поле :attribute должен быть меньше :value Килобайт(а).', + 'string' => 'Количество символов в поле :attribute должно быть меньше :value.', + 'array' => 'Количество элементов в поле :attribute должно быть меньше :value.', + ], + 'lte' => [ + 'numeric' => 'Поле :attribute должно быть меньше или равно :value.', + 'file' => 'Размер файла в поле :attribute должен быть меньше или равен :value Килобайт(а).', + 'string' => 'Количество символов в поле :attribute должно быть меньше или равно :value.', + 'array' => 'Количество элементов в поле :attribute должно быть меньше или равно :value.', + ], 'max' => [ 'numeric' => 'Поле :attribute не может быть более :max.', 'file' => 'Размер файла в поле :attribute не может быть более :max Килобайт(а).', @@ -66,6 +89,7 @@ 'array' => 'Количество элементов в поле :attribute должно быть не менее :min.', ], 'not_in' => 'Выбранное значение для :attribute ошибочно.', + 'not_regex' => 'Выбранный формат для :attribute ошибочный.', 'numeric' => 'Поле :attribute должно быть числом.', 'present' => 'Поле :attribute должно присутствовать.', 'regex' => 'Поле :attribute имеет ошибочный формат.', @@ -76,7 +100,7 @@ 'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.', 'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.', 'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.', - 'same' => 'Значение :attribute должно совпадать с :other.', + 'same' => 'Значения полей :attribute и :other должны совпадать.', 'size' => [ 'numeric' => 'Поле :attribute должно быть равным :size.', 'file' => 'Размер файла в поле :attribute должен быть равен :size Килобайт(а).', @@ -108,7 +132,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -131,8 +155,35 @@ | */ - 'attributes' => [ - // + 'attributes' => [ + 'name' => 'Имя', + 'username' => 'Никнейм', + 'email' => 'E-Mail адрес', + 'first_name' => 'Имя', + 'last_name' => 'Фамилия', + 'password' => 'Пароль', + 'password_confirmation' => 'Подтверждение пароля', + 'city' => 'Город', + 'country' => 'Страна', + 'address' => 'Адрес', + 'phone' => 'Телефон', + 'mobile' => 'Моб. номер', + 'age' => 'Возраст', + 'sex' => 'Пол', + 'gender' => 'Пол', + 'day' => 'День', + 'month' => 'Месяц', + 'year' => 'Год', + 'hour' => 'Час', + 'minute' => 'Минута', + 'second' => 'Секунда', + 'title' => 'Наименование', + 'content' => 'Контент', + 'description' => 'Описание', + 'excerpt' => 'Выдержка', + 'date' => 'Дата', + 'time' => 'Время', + 'available' => 'Доступно', + 'size' => 'Размер', ], - ]; diff --git a/src/sc/auth.php b/src/sc/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/sc/auth.php +++ b/src/sc/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/sc/pagination.php b/src/sc/pagination.php index 834a997cb4d..6fa091689ca 100644 --- a/src/sc/pagination.php +++ b/src/sc/pagination.php @@ -1,7 +1,6 @@ '« A in antis', - 'next' => 'A pustis »', - + 'previous' => '« A in antis', + 'next' => 'A pustis »', ]; diff --git a/src/sc/passwords.php b/src/sc/passwords.php index 28bf9aa5848..73fad47b5d6 100644 --- a/src/sc/passwords.php +++ b/src/sc/passwords.php @@ -1,7 +1,6 @@ 'Regordu de sa password imbiadu!', 'token' => 'Custu token pro torrare a impostare sa password no est bàlidu.', 'user' => "Non s'agatat un'impitadore assotziadu a custu indiritzu email.", - ]; diff --git a/src/sc/validation.php b/src/sc/validation.php index f4bb6438354..32280b56d27 100644 --- a/src/sc/validation.php +++ b/src/sc/validation.php @@ -1,7 +1,6 @@ ':attribute seberadu/a no est bàlidu.', 'file' => 'The :attribute must be a file.', 'filled' => ':attribute est pedidu.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ":attribute depet èssere un'immàgine.", 'in' => ':attribute seberadu no est bàlidu.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute depet èssere prus piticu de :max.', 'file' => ':attribute non depet èssere prus mannu de :max kilobytes.', @@ -65,6 +88,7 @@ 'array' => ':attribute depet tènnere a su mancu :min elementos.', ], 'not_in' => 'Su balore seberadu pro :attribute no est bàlidu.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute depet èssere unu nùmeru.', 'present' => 'The :attribute field must be present.', 'regex' => 'Su formadu de su campu :attribute no est bàlidu.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sk/auth.php b/src/sk/auth.php index aa0f9aca005..13ffc52fb05 100644 --- a/src/sk/auth.php +++ b/src/sk/auth.php @@ -1,7 +1,6 @@ 'Prihlasovacie údaje nie sú správne.', 'throttle' => 'Prekročený limit pokusov. Skúste znovu o :seconds sekúnd.', - ]; diff --git a/src/sk/pagination.php b/src/sk/pagination.php index f658e9b1a24..7bb5ff968cc 100644 --- a/src/sk/pagination.php +++ b/src/sk/pagination.php @@ -1,7 +1,6 @@ '« Predchádzajúca', - 'next' => 'Nasledujúca »', - + 'previous' => '« Predchádzajúca', + 'next' => 'Nasledujúca »', ]; diff --git a/src/sk/passwords.php b/src/sk/passwords.php index 2f3f336cbc7..513f42552a1 100644 --- a/src/sk/passwords.php +++ b/src/sk/passwords.php @@ -1,7 +1,6 @@ 'Pripomienka k zmene hesla bola odoslaná!', 'token' => 'Klúč pre obnovu hesla je neplatný.', 'user' => 'Nepodarilo sa nájsť používateľa s touto e-mailovou adresou.', - ]; diff --git a/src/sk/validation.php b/src/sk/validation.php index 8afa4f660ec..8ef0a0a16e1 100644 --- a/src/sk/validation.php +++ b/src/sk/validation.php @@ -1,7 +1,6 @@ 'označený :attribute je neplatný.', 'file' => ':attribute musí byť súbor.', 'filled' => ':attribute je požadované.', + 'gt' => [ + 'numeric' => 'Hodnota :attribute musí byť väčšia ako :value.', + 'file' => ':Attribute musí mať viac kilobajtov ako :value.', + 'string' => ':Attribute musí mať viac znakov ako :value.', + 'array' => ':Attribute musí mať viac prvkov ako :value.', + ], + 'gte' => [ + 'numeric' => 'Hodnota :attribute musí byť väčšia alebo rovná ako :value.', + 'file' => ':Attribute musí mať rovnaký alebo väčší počet kilobajtov ako :value.', + 'string' => ':Attribute musí mať rovnaký alebo väčší počet znakov ako :value.', + 'array' => ':Attribute musí mať rovnaký alebo väčší počet prvkov ako :value.', + ], 'image' => ':attribute musí byť obrázok.', 'in' => 'označený :attribute je neplatný.', 'in_array' => ':attribute sa nenachádza v :other.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute musí byť platná IPv4 adresa.', 'ipv6' => ':attribute musí byť platná IPv6 adresa.', 'json' => ':attribute musí byť platný JSON reťazec.', + 'lt' => [ + 'numeric' => 'Hodnota :attribute musí byť menšia ako :value.', + 'file' => ':Attribute musí mať menej kilobajtov ako :value.', + 'string' => ':Attribute musí mať menej znakov ako :value.', + 'array' => ':Attribute musí mať menej prvkov ako :value.', + ], + 'lte' => [ + 'numeric' => 'Hodnota :attribute musí byť menšia alebo rovná ako :value.', + 'file' => ':Attribute musí mať rovnaký alebo menší počet kilobajtov ako :value.', + 'string' => ':Attribute musí mať rovnaký alebo menší počet znakov ako :value.', + 'array' => ':Attribute musí mať rovnaký alebo menší počet prvkov ako :value.', + ], 'max' => [ 'numeric' => ':attribute nemôže byť väčší ako :max.', 'file' => ':attribute nemôže byť väčší ako :max kilobajtov.', @@ -65,6 +88,7 @@ 'array' => ':attribute musí mať aspoň :min prvkov.', ], 'not_in' => 'označený :attribute je neplatný.', + 'not_regex' => ':attribute má neplatný formát.', 'numeric' => ':attribute musí byť číslo.', 'present' => ':attribute musí byť odoslaný.', 'regex' => ':attribute má neplatný formát.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sl/auth.php b/src/sl/auth.php index 6ef1a73308a..35ba72d7794 100644 --- a/src/sl/auth.php +++ b/src/sl/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', - 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - + 'failed' => 'Ti podatki se ne ujemajo z našimi.', + 'throttle' => 'Preveč poskusov prijave. Prosimo, poskusite ponovno čez :seconds sekund.', ]; diff --git a/src/sl/pagination.php b/src/sl/pagination.php index f611517e05d..4dc446ed4fb 100644 --- a/src/sl/pagination.php +++ b/src/sl/pagination.php @@ -1,7 +1,6 @@ '« Prejšnja', - 'next' => 'Naslednja »', - + 'previous' => '« Prejšnja', + 'next' => 'Naslednja »', ]; diff --git a/src/sl/passwords.php b/src/sl/passwords.php index f587d72bd75..05291496ddc 100644 --- a/src/sl/passwords.php +++ b/src/sl/passwords.php @@ -1,7 +1,6 @@ 'Opomnik za geslo poslano!', 'token' => 'Ponastavitveni žeton je neveljaven.', 'user' => 'Ne moremo najti uporabnika s tem e-poštnim naslovom.', - ]; diff --git a/src/sl/validation.php b/src/sl/validation.php index 311a99af091..9d6db780a71 100644 --- a/src/sl/validation.php +++ b/src/sl/validation.php @@ -1,7 +1,6 @@ ':attribute mora biti sprejet.', 'active_url' => ':attribute ni pravilen.', 'after' => ':attribute mora biti za datumom :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'after_or_equal' => ':attribute mora biti za ali enak :date.', 'alpha' => ':attribute lahko vsebuje samo črke.', 'alpha_dash' => ':attribute lahko vsebuje samo črke, številke in črtice.', 'alpha_num' => ':attribute lahko vsebuje samo črke in številke.', 'array' => ':attribute mora biti polje.', 'before' => ':attribute mora biti pred datumom :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'before_or_equal' => ':attribute mora biti pred ali enak :date.', 'between' => [ 'numeric' => ':attribute mora biti med :min in :max.', 'file' => ':attribute mora biti med :min in :max kilobajti.', @@ -36,20 +35,44 @@ 'different' => ':attribute in :other mora biti drugačen.', 'digits' => ':attribute mora imeti :digits cifer.', 'digits_between' => ':attribute mora biti med :min in :max ciframi.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', + 'dimensions' => ':attribute ima napačne dimenzije slike.', + 'distinct' => ':attribute je duplikat.', 'email' => ':attribute mora biti veljaven e-poštni naslov.', 'exists' => 'izbran :attribute je neveljaven.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field is required.', + 'file' => ':attribute mora biti datoteka.', + 'filled' => ':attribute mora biti izpolnjen.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute mora biti slika.', 'in' => 'izbran :attribute je neveljaven.', - 'in_array' => 'The :attribute field does not exist in :other.', + 'in_array' => ':attribute ne obstaja v :other.', 'integer' => ':attribute mora biti število.', 'ip' => ':attribute mora biti veljaven IP naslov.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => 'The :attribute must be a valid JSON string.', + 'ipv4' => ':attribute mora biti veljaven IPv4 naslov.', + 'ipv6' => ':attribute mora biti veljaven IPv6 naslov.', + 'json' => ':attribute mora biti veljaven JSON tekst.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute ne sme biti večje od :max.', 'file' => ':attribute ne sme biti večje :max kilobajtov.', @@ -65,16 +88,17 @@ 'array' => ':attribute mora imeti vsaj :min elementov.', ], 'not_in' => 'izbran :attribute je neveljaven.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute mora biti število.', - 'present' => 'The :attribute field must be present.', + 'present' => 'Polje :attribute mora biti prisotno.', 'regex' => 'Format polja :attribute je neveljaven.', - 'required' => 'Polje :attribute je zahtevano.', - 'required_if' => 'Polje :attribute je zahtevano, ko :other je :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'Polje :attribute je zahtevano, ko je :values prisoten.', - 'required_with_all' => 'Polje :attribute je zahtevano, ko je :values prisoten.', - 'required_without' => 'Polje :attribute je zahtevano, ko :values ni prisoten.', - 'required_without_all' => 'Polje :attribute je zahtevano, ko nobenih od :values niso prisotni.', + 'required' => 'Polje :attribute je obvezno.', + 'required_if' => 'Polje :attribute je obvezno, če je :other enak :value.', + 'required_unless' => 'Polje :attribute je obvezno, razen če je :other v :values.', + 'required_with' => 'Polje :attribute je obvezno, če je :values prisoten.', + 'required_with_all' => 'Polje :attribute je obvezno, če so :values prisoten.', + 'required_without' => 'Polje :attribute je obvezno, če :values ni prisoten.', + 'required_without_all' => 'Polje :attribute je obvezno, če :values niso prisotni.', 'same' => 'Polje :attribute in :other se morata ujemati.', 'size' => [ 'numeric' => ':attribute mora biti :size.', @@ -82,10 +106,10 @@ 'string' => ':attribute mora biti :size znakov.', 'array' => ':attribute mora vsebovati :size elementov.', ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', + 'string' => ':attribute mora biti tekst.', + 'timezone' => ':attribute mora biti časovna cona.', 'unique' => ':attribute je že zaseden.', - 'uploaded' => 'The :attribute failed to upload.', + 'uploaded' => 'Nalaganje :attribute ni uspelo.', 'url' => ':attribute format je neveljaven.', /* @@ -99,9 +123,9 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ - 'rule-name' => 'custom-message', + 'rule-name' => 'Prilagojeno sporočilo', ], ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sq/auth.php b/src/sq/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/sq/auth.php +++ b/src/sq/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/sq/pagination.php b/src/sq/pagination.php index 0f13123d4a2..4f1a53c2bd8 100644 --- a/src/sq/pagination.php +++ b/src/sq/pagination.php @@ -1,7 +1,6 @@ '« Prapa', - 'next' => 'Para »', - + 'previous' => '« Prapa', + 'next' => 'Para »', ]; diff --git a/src/sq/passwords.php b/src/sq/passwords.php index 9528c3faee6..ccab3d8dfaa 100644 --- a/src/sq/passwords.php +++ b/src/sq/passwords.php @@ -1,7 +1,6 @@ 'Adresa për ndryshimin e fjalëkalimit u dërgua!', 'token' => 'Ky tallon për ndryshimin e fjalëkalimit është i pasaktë.', 'user' => 'Nuk mund të gjejmë një përdorues me atë adres email-i.', - ]; diff --git a/src/sq/validation.php b/src/sq/validation.php index ca201e222d7..e4e03a0906f 100644 --- a/src/sq/validation.php +++ b/src/sq/validation.php @@ -1,7 +1,6 @@ ':attribute përzgjedhur është i/e pasaktë.', 'file' => 'The :attribute must be a file.', 'filled' => 'Fusha :attribute është e kërkuar.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute duhet të jetë imazh.', 'in' => ':attribute përzgjedhur është i/e pasaktë.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute nuk mund të jetë më tepër se :max.', 'file' => ':attribute nuk mund të jetë më tepër se :max kilobajtë.', @@ -65,6 +88,7 @@ 'array' => ':attribute nuk mund të ketë më pak se :min elemente.', ], 'not_in' => ':attribute përzgjedhur është i/e pasaktë.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute duhet të jetë një numër.', 'present' => 'The :attribute field must be present.', 'regex' => 'Formati i :attribute është i pasaktë.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sr/auth.php b/src/sr/auth.php index deb47438599..56e7b1b899c 100644 --- a/src/sr/auth.php +++ b/src/sr/auth.php @@ -1,7 +1,6 @@ 'Podaci ne odgovaraju ni jednom nalogu.', 'throttle' => 'Previše neuspelih pokušaja. Pokušajte ponovo za :seconds sekundi.', - ]; diff --git a/src/sr/pagination.php b/src/sr/pagination.php index a5a9d2bcf6c..431db62a40c 100644 --- a/src/sr/pagination.php +++ b/src/sr/pagination.php @@ -1,7 +1,6 @@ '« Nazad', - 'next' => 'Napred »', - + 'previous' => '« Nazad', + 'next' => 'Napred »', ]; diff --git a/src/sr/passwords.php b/src/sr/passwords.php index cb7f3d32cf9..9a45018fad1 100644 --- a/src/sr/passwords.php +++ b/src/sr/passwords.php @@ -1,7 +1,6 @@ 'Poslali smo reset link za vašu lozinku!', 'token' => 'Ukucana oznaka za resetovanje lozinke nije važeća.', 'user' => 'Nismo uspeli pronaći korisnika sa email adresom.', - ]; diff --git a/src/sr/validation.php b/src/sr/validation.php index e15e6a9d30a..77a97a2f8c5 100644 --- a/src/sr/validation.php +++ b/src/sr/validation.php @@ -1,7 +1,6 @@ 'Odabrano polje :attribute nije validno.', 'file' => 'The :attribute must be a file.', 'filled' => 'Polje :attribute je obavezno.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Polje :attribute mora biti slika.', 'in' => 'Odabrano polje :attribute nije validno.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Polje :attribute mora biti manje od :max.', 'file' => 'Polje :attribute mora biti manje od :max kilobajta.', @@ -65,6 +88,7 @@ 'array' => 'Polje :attribute mora sadrzati najmanje :min stavku.', ], 'not_in' => 'Odabrani element polja :attribute nije validan.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Polje :attribute mora biti broj.', 'present' => 'The :attribute field must be present.', 'regex' => 'Format polja :attribute nije validan.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sv/auth.php b/src/sv/auth.php index 3adc952c54e..3c2ba6b73aa 100644 --- a/src/sv/auth.php +++ b/src/sv/auth.php @@ -1,7 +1,6 @@ 'Dessa uppgifter stämmer inte överens med vårt register.', 'throttle' => 'För många inloggningsförsök. Var vänlig försök igen om :seconds sekunder.', - ]; diff --git a/src/sv/pagination.php b/src/sv/pagination.php index aa12db17cf7..db333f75f4f 100644 --- a/src/sv/pagination.php +++ b/src/sv/pagination.php @@ -1,7 +1,6 @@ '« Föregående', - 'next' => 'Nästa »', - + 'previous' => '« Föregående', + 'next' => 'Nästa »', ]; diff --git a/src/sv/passwords.php b/src/sv/passwords.php index 45d9a5d275d..a8888980feb 100644 --- a/src/sv/passwords.php +++ b/src/sv/passwords.php @@ -1,7 +1,6 @@ 'Lösenordspåminnelse skickad!', 'token' => 'Koden för lösenordsåterställning är ogiltig.', 'user' => 'Det finns ingen användare med den e-postadressen.', - ]; diff --git a/src/sv/validation.php b/src/sv/validation.php index d67b90e10c8..95d8fbc40ed 100644 --- a/src/sv/validation.php +++ b/src/sv/validation.php @@ -1,7 +1,6 @@ ':attribute är ogiltigt.', 'file' => ':attribute måste vara en fil.', 'filled' => ':attribute är obligatoriskt.', + 'gt' => [ + 'numeric' => ':attribute måste vara större än :value.', + 'file' => ':attribute måste vara större än :value kilobyte stor.', + 'string' => ':attribute måste vara längre än :value tecken.', + 'array' => ':attribute måste innehålla fler än :value objekt.', + ], + 'gte' => [ + 'numeric' => ':attribute måste vara lika med eller större än :value.', + 'file' => ':attribute måste vara lika med eller större än :value kilobyte stor.', + 'string' => ':attribute måste vara lika med eller längre än :value tecken.', + 'array' => ':attribute måste innehålla lika många eller fler än :value objekt.', + ], 'image' => ':attribute måste vara en bild.', 'in' => ':attribute är ogiltigt.', 'in_array' => ':attribute finns inte i :other.', 'integer' => ':attribute måste vara en siffra.', 'ip' => ':attribute måste vara en giltig IP-adress.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'ipv4' => ':attribute måste vara en giltig IPv4-adress.', + 'ipv6' => ':attribute måste vara en giltig IPv6-adress.', 'json' => ':attribute måste vara en giltig JSON-sträng.', + 'lt' => [ + 'numeric' => ':attribute måste vara mindre än :value.', + 'file' => ':attribute måste vara mindre än :value kilobyte stor.', + 'string' => ':attribute måste vara kortare än :value tecken.', + 'array' => ':attribute måste innehålla färre än :value objekt.', + ], + 'lte' => [ + 'numeric' => ':attribute måste vara lika med eller mindre än :value.', + 'file' => ':attribute måste vara lika med eller mindre än :value kilobyte stor.', + 'string' => ':attribute måste vara lika med eller kortare än :value tecken.', + 'array' => ':attribute måste innehålla lika många eller färre än :value objekt.', + ], 'max' => [ 'numeric' => ':attribute får inte vara större än :max.', 'file' => ':attribute får max vara :max kilobyte stor.', @@ -65,6 +88,7 @@ 'array' => ':attribute måste innehålla minst :min objekt.', ], 'not_in' => ':attribute är ogiltigt.', + 'not_regex' => 'Formatet för :attribute är ogiltigt.', 'numeric' => ':attribute måste vara en siffra.', 'present' => ':attribute måste finnas med.', 'regex' => ':attribute har ogiltigt format.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/sw/auth.php b/src/sw/auth.php index 68511d61ad9..5105d416828 100644 --- a/src/sw/auth.php +++ b/src/sw/auth.php @@ -1,7 +1,6 @@ 'Hii hati tambulishi hailingani na rekodi zetu.', 'throttle' => 'Majaribio mengi sana ya kuingia. Tafadhali jaribu tena katika :sekunde sekunde.', - ]; diff --git a/src/sw/pagination.php b/src/sw/pagination.php index 10bdf85fee5..dba30d0337d 100644 --- a/src/sw/pagination.php +++ b/src/sw/pagination.php @@ -1,7 +1,6 @@ 'na laquo; Awali', 'next' => 'Ifuatayo na raquo;', - ]; diff --git a/src/sw/passwords.php b/src/sw/passwords.php index da637b7b336..f1f76a6e045 100644 --- a/src/sw/passwords.php +++ b/src/sw/passwords.php @@ -1,7 +1,6 @@ 'Lazima kipengele kikubalike.', 'active_url' => 'Kipengele sio Chanzo Cha Anuani halali.', 'after' => 'Kipengele lazima kiwe tarehe baada ya :tarehe.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => 'Kipengele huenda kikawa tu chenye herufi.', 'alpha_dash' => 'Kipengele huenda kikawa tu chenye herufi, na vistari.', 'alpha_num' => 'Kipengele huenda kikawa tu chenye herufi na nambari.', 'array' => 'Kipengele lazima kiwe safu.', 'before' => 'Kipengele lazima kiwe tarehe kabla ya :tarehe.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => 'Kipengele lazima kiwe kati ya :kiwango cha chini na :kiwango cha juu.', 'file' => 'Kipengele lazima kiwe kati ya :kiwango cha chini na :kiwango cha juu cha kilobaiti.', @@ -34,10 +35,24 @@ 'different' => 'Kipengele na :nyingine lazima viwe tofauti.', 'digits' => 'Kipengele lazima kiwe :tarakimu tarakimu.', 'digits_between' => 'Kipengele lazima kiwe kati ya :kiwango cha chini na :kiwango cha juu cha tarakimu.', + 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'Sehemu ya kipengele ina thamani rudufu.', 'email' => 'Kipengele lazima kiwe anuani halali ya barua pepe.', 'exists' => 'Kipengele kilichochaguliwa si halali.', + 'file' => 'The :attribute must be a file.', 'filled' => 'Sehemu ya kipengele inahitajika.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Kipengele lazima kiwe picha.', 'in' => 'Kipengele kilichochaguliwa si halali.', 'in_array' => 'Sehemu ya kipengele haipo katika :nyingine.', @@ -46,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Kipengele lazima kiwe kidwe halali cha Nukuu ya Java.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Kipengele huenda si kikubwa kuliko :kiwango cha juu.', 'file' => 'Kipengele huenda si kikubwa kuliko :kiwango cha juu cha kilobaiti.', @@ -53,6 +80,7 @@ 'array' => 'Kipengele huenda kisiwe na zaidi ya :kiwango cha juu cha vifungu.', ], 'mimes' => 'Kipengele lazima kiwe faili ya aina: :viwango.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'numeric' => 'Kipengele lazima kiwe angalau :kiwango cha chini.', 'file' => 'Kipengele lazima kiwe angalau :kiwango cha chini cha kilobaiti.', @@ -60,6 +88,7 @@ 'array' => 'Kipengele lazima kiwe na angalau :kiwango cha chini cha vifungu.', ], 'not_in' => 'Kipengele kilichochaguliwa si halali.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Kipengele lazima kiwe nambari.', 'present' => 'Sehemu ya kipengele lazima iwepo.', 'regex' => 'Muundo wa kipengele si halali.', @@ -80,6 +109,7 @@ 'string' => 'Kipengele lazima kiwe kidwe.', 'timezone' => 'Kipengele lazima kiwe ukanda halali.', 'unique' => 'Kipengele tayari kimechukuliwa.', + 'uploaded' => 'The :attribute failed to upload.', 'url' => 'Muundo wa kipengele si halali.', /* @@ -118,5 +148,4 @@ 'result_text_under_image' => 'Maandishi ya matokeo chini ya picha', 'short_text' => 'Maandishi mafupi', ], - ]; diff --git a/src/tg/auth.php b/src/tg/auth.php index e6926db1b36..4f25701e487 100644 --- a/src/tg/auth.php +++ b/src/tg/auth.php @@ -1,7 +1,6 @@ 'Номи истифодабаранда ва гузарвожа нодуруст мебошад.', 'throttle' => 'Теъдоди зиёди талош барои воридшудан ба система. Лутфан баъд аз :seconds сония боз кӯшиш намоед.', - ]; diff --git a/src/tg/pagination.php b/src/tg/pagination.php index 2b093602702..8e1ca863ffe 100644 --- a/src/tg/pagination.php +++ b/src/tg/pagination.php @@ -1,7 +1,6 @@ '« Қаблӣ', - 'next' => 'Баъдӣ »', - + 'previous' => '« Қаблӣ', + 'next' => 'Баъдӣ »', ]; diff --git a/src/tg/passwords.php b/src/tg/passwords.php index ed4a0a50ff1..7d84b58c7ce 100644 --- a/src/tg/passwords.php +++ b/src/tg/passwords.php @@ -1,7 +1,6 @@ 'Ба шумо пайванд барои иваз намудани гузарвожа фиристода шуд!', 'token' => 'Ин код барои иваз намудани гузарвожа нодуруст мебошад.', 'user' => 'Чунин истифодабаранда бо суроғаи электронии зерин ёфт нашуд.', - ]; diff --git a/src/tg/validation.php b/src/tg/validation.php index e97f5494e3f..a43ce123951 100644 --- a/src/tg/validation.php +++ b/src/tg/validation.php @@ -1,7 +1,6 @@ 'Қиммати интихобкардаи :attribute нодуруст мебошад.', 'file' => 'Қиммати :attribute бояд файл бошад.', 'filled' => ':attribute бояд дорои қиммат бошад.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Қиммати :attribute бояд расм бошад.', 'in' => 'Қиммати интихобкардаи :attribute нодуруст мебошад.', 'in_array' => 'Қиммати :attribute дар :other мавҷуд нест.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Қиммати :attribute бояд сатри дурусти JSON бошад.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Қиммати :attribute набояд аз :max зиёд бошад.', 'file' => 'Ҳаҷми файл дар :attribute набояд аз :max Килобайт зиёд бошад.', @@ -65,6 +88,7 @@ 'array' => 'Миқдори элементҳо дар :attribute бояд на кам аз :min бошад.', ], 'not_in' => 'Қиммати интихобкардаи :attribute нодуруст мебошад.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Қиммати :attribute бояд адад бошад.', 'present' => 'Қиммати :attribute бояд мавҷуд бошад.', 'regex' => 'Формати :attribute нодуруст мебошад.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,6 +140,5 @@ | */ - 'attributes' => [], - + 'attributes' => [], ]; diff --git a/src/th/auth.php b/src/th/auth.php index ae2426c4cdc..25bd0b25625 100644 --- a/src/th/auth.php +++ b/src/th/auth.php @@ -1,7 +1,6 @@ 'ข้อมูลที่ใช้ในการยืนยันตัวตนไม่ถูกต้อง', 'throttle' => 'คุณได้พยายามเข้าระบบหลายครั้งเกินไป กรุณาลองใหม่ใน :seconds วินาทีข้างหน้า.', - ]; diff --git a/src/th/pagination.php b/src/th/pagination.php index 1e3738f2510..59e2eb557d0 100755 --- a/src/th/pagination.php +++ b/src/th/pagination.php @@ -1,7 +1,6 @@ '« ก่อนหน้า', - 'next' => 'ถัดไป »', - + 'previous' => '« ก่อนหน้า', + 'next' => 'ถัดไป »', ]; diff --git a/src/th/passwords.php b/src/th/passwords.php index 098ff8228e6..461ee134821 100755 --- a/src/th/passwords.php +++ b/src/th/passwords.php @@ -1,7 +1,6 @@ 'ส่งเครื่องช่วยเตือนความจำรหัสผ่านแล้ว!', 'token' => 'ชุดรหัสสำหรับการเปลี่ยนรหัสผ่านไม่ถูกต้อง', 'user' => 'ไม่พบผู้ใช้งานที่ตรงกับอีเมล์นี้', - ]; diff --git a/src/th/validation.php b/src/th/validation.php index a2f95495739..56bdace5c12 100755 --- a/src/th/validation.php +++ b/src/th/validation.php @@ -1,7 +1,6 @@ 'ข้อมูล ที่ถูกเลือกจาก :attribute ไม่ถูกต้อง', 'file' => 'The :attribute must be a file.', 'filled' => 'ข้อมูล :attribute จำเป็นต้องกรอก', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'ข้อมูล :attribute ต้องเป็นรูปภาพ', 'in' => 'ข้อมูล ที่ถูกเลือกใน :attribute ไม่ถูกต้อง', 'in_array' => 'ข้อมูล :attribute ไม่มีอยู่ภายในค่าของ :other', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'ข้อมูล :attribute ต้องเป็นอักขระ JSON ที่สมบูรณ์', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'ข้อมูล :attribute ต้องมีจำนวนไม่เกิน :max.', 'file' => 'ข้อมูล :attribute ต้องมีจำนวนไม่เกิน :max กิโลไบต์', @@ -65,6 +88,7 @@ 'array' => 'ข้อมูล :attribute ต้องมีจำนวนอย่างน้อย :min ค่า', ], 'not_in' => 'ข้อมูล ที่เลือกจาก :attribute ไม่ถูกต้อง', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'ข้อมูล :attribute ต้องเป็นตัวเลข', 'present' => 'ข้อมูล :attribute ต้องเป็นปัจจุบัน', 'regex' => 'ข้อมูล :attribute มีรูปแบบไม่ถูกต้อง', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -117,7 +141,5 @@ */ 'attributes' => [ - // ], - ]; diff --git a/src/tk/auth.php b/src/tk/auth.php index 6ef1a73308a..bb0a19d6204 100644 --- a/src/tk/auth.php +++ b/src/tk/auth.php @@ -1,7 +1,6 @@ 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - ]; diff --git a/src/tk/pagination.php b/src/tk/pagination.php index ac4437c9bf7..578779dabf7 100644 --- a/src/tk/pagination.php +++ b/src/tk/pagination.php @@ -1,7 +1,6 @@ '« Öňki', - 'next' => 'Indiki »', - + 'previous' => '« Öňki', + 'next' => 'Indiki »', ]; diff --git a/src/tk/passwords.php b/src/tk/passwords.php index bcf52e0f0eb..0453985422f 100644 --- a/src/tk/passwords.php +++ b/src/tk/passwords.php @@ -1,7 +1,6 @@ 'Açarsöz ýatlatmasy ugradyldy!', 'token' => 'Açarsöz tazeleme söz birligi ýalňyş.', 'user' => 'Bu e-mail adrese degişli ulanyjy tapylmady.', - ]; diff --git a/src/tk/validation.php b/src/tk/validation.php index 3c0211301aa..8f665f51937 100644 --- a/src/tk/validation.php +++ b/src/tk/validation.php @@ -1,7 +1,6 @@ 'Saýlanan :attribute ýalňyş.', 'file' => 'The :attribute must be a file.', 'filled' => ':attribute meýdany zerur.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute surat bolmalydyr.', 'in' => ':attribute mukdary ýalňyş.', 'in_array' => 'The :attribute field does not exist in :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute :max den kiçi bolmalydyr.', 'file' => ':attribute :max kilobaýtdan kiçi bolmalydyr.', @@ -65,6 +88,7 @@ 'array' => ':attribute iň az :min harpdan bolmalydyr.', ], 'not_in' => 'Saýlanan :attribute geçersiz.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute san bolmalydyr.', 'present' => 'The :attribute field must be present.', 'regex' => ':attribute formaty ýalňyş.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/tl/auth.php b/src/tl/auth.php index b8d9b2f9691..2f534fe6f72 100644 --- a/src/tl/auth.php +++ b/src/tl/auth.php @@ -1,7 +1,6 @@ 'Ang credentials na ito ay hindi katugma ng nasa rekord namin.', 'throttle' => 'Sobrang daming pagtatangkang mag-login. Pakisubukan ulit sa :segundo segundo.', - ]; diff --git a/src/tl/pagination.php b/src/tl/pagination.php index 0f63b05fa7d..d933cbfbdd2 100644 --- a/src/tl/pagination.php +++ b/src/tl/pagination.php @@ -1,7 +1,6 @@ '« Nauna', - 'next' => 'Susunod »', - + 'previous' => '« Nauna', + 'next' => 'Susunod »', ]; diff --git a/src/tl/passwords.php b/src/tl/passwords.php index bdae651be8c..0f2865d8529 100644 --- a/src/tl/passwords.php +++ b/src/tl/passwords.php @@ -1,7 +1,6 @@ 'Na-email na namin sa iyo ang link sa pag-reset ng password!', 'token' => 'Ang token sa pag-reset ng password na ito ay imbalido.', 'user' => 'Hindi namin mahanap ang user na may ganyang email address.', - ]; diff --git a/src/tl/validation.php b/src/tl/validation.php index dd071701a9b..848a65435ab 100644 --- a/src/tl/validation.php +++ b/src/tl/validation.php @@ -1,7 +1,6 @@ 'Ang :attribute ay dapat tanggapin.', 'active_url' => 'Ang :attribute ay hindi balidong URL.', 'after' => 'Ang :attribute ay dapat petsa pagkatapos ng :petsa.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => 'Ang :attribute ay maaaring magtaglay ng mga letra lang.', 'alpha_dash' => 'Ang :attribute ay maaaring magtaglay ng mga letra, numero at gitling lang.', 'alpha_num' => 'Ang :attribute ay maaaring magtaglay ng mga letra at numero lang.', 'array' => 'Ang :attribute ay dapat magkakasunod.', 'before' => 'Ang :attribute ay dapat petsa bago ang :petsa.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => 'Ang :attribute ay dapat nasa pagitan ng :min at:max.', 'file' => 'Ang :attribute ay dapat nasa pagitan ng :min at :max kilobytes.', @@ -34,10 +35,24 @@ 'different' => 'Ang :attribute at :isa pa ay dapat magkaiba.', 'digits' => 'Ang :attribute ay dapat :digits digits.', 'digits_between' => 'Ang :attribute ay dapat nasa pagitan ng :min at :max digits.', + 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'Ang :larangan ng attribute ay may katulad na balyu.', 'email' => 'Ang :attribute ay dapat balidong email address.', 'exists' => 'Ang piniling :attribute ay imbalido.', + 'file' => 'The :attribute must be a file.', 'filled' => 'Ang :larangan ng attribute ay kailangan.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Ang :attribute ay dapat isang imahe.', 'in' => 'Ang piniling :attribute ay imbalido.', 'in_array' => 'Ang :larangan ng attribute ay wala sa :iba.', @@ -46,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'Ang :attribute ay dapat isang balidong JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Ang :attribute ay hindi maaaring higit sa :max.', 'file' => 'Ang :attribute ay hindi maaaring higit sa :max kilobytes.', @@ -53,6 +80,7 @@ 'array' => 'Ang :attribute ay hindi maaaring higit sa :max items.', ], 'mimes' => 'Ang :attribute ay dapat file ng uri na: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'numeric' => 'Ang :attribute ay dapat di-kukulangin sa :min.', 'file' => 'Ang :attribute ay dapat di-kukulangin sa :min kilobytes.', @@ -60,6 +88,7 @@ 'array' => 'Ang :attribute ay dapat di-kukulangin sa :min items.', ], 'not_in' => 'Ang piniling :attribute ay imbalido.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Ang :attribute ay dapat isang numero.', 'present' => 'Ang :larangan ng attribute ay dapat naroon.', 'regex' => 'Ang :format ng attribute ay imbalido.', @@ -80,6 +109,7 @@ 'string' => 'Ang :attribute ay dapat isang string.', 'timezone' => 'Ang :attribute ay dapat isang balidong sona.', 'unique' => 'Ang :attribute ay nakuha na.', + 'uploaded' => 'The :attribute failed to upload.', 'url' => 'Ang :format ng attribute ay imbalido.', /* @@ -118,5 +148,4 @@ 'result_text_under_image' => 'Resultang teksto sa ilalim ng imahe', 'short_text' => 'Maikling teksto', ], - ]; diff --git a/src/tr/auth.php b/src/tr/auth.php index 7edabe2edfa..d8c726b6ef2 100644 --- a/src/tr/auth.php +++ b/src/tr/auth.php @@ -1,7 +1,6 @@ 'Bu kullanıcı bilgileri, bizim verilerimizle eşleşmiyor.', - 'throttle' => 'Çok fazla oturum açma girişimi. Lütfen :seconds saniye içinde tekrar deneyin.', - + 'failed' => 'Girilmiş olan kullanıcı verileri sistemdekiler ile eşleşmemektedir.', + 'throttle' => 'Çok fazla oturum açma girişiminde bulundunuz. Lütfen :seconds saniye içerisinde tekrar deneyiz.', ]; diff --git a/src/tr/pagination.php b/src/tr/pagination.php index 18fd3e1f0d9..4fd650797a7 100644 --- a/src/tr/pagination.php +++ b/src/tr/pagination.php @@ -1,7 +1,6 @@ '« Önceki', - 'next' => 'Sonraki »', - + 'previous' => '« Önceki', + 'next' => 'Sonraki »', ]; diff --git a/src/tr/passwords.php b/src/tr/passwords.php index 1905afa6fe3..d2d036c8852 100644 --- a/src/tr/passwords.php +++ b/src/tr/passwords.php @@ -1,7 +1,6 @@ 'Şifreler en az altı karakter olmalı ve onay ile eşleşmelidir.', - 'reset' => 'Şifreniz sıfırlandı!', - 'sent' => 'Şifre sıfırlama bağlantınızı size e-posta ile gönderdik!', - 'token' => 'Şifre sıfırlama adresi/kodu geçersiz.', + 'password' => 'Parolanız en az altı karakter olmalı ve doğrulama ile eşleşmelidir.', + 'reset' => 'Parolanız sıfırlandı!', + 'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!', + 'token' => 'Parola sıfırlama adresi/kodu geçersiz.', 'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunmuyor.', - ]; diff --git a/src/tr/validation.php b/src/tr/validation.php index 4b45150170a..65fc421bafc 100644 --- a/src/tr/validation.php +++ b/src/tr/validation.php @@ -1,7 +1,6 @@ 'Seçili :attribute geçersiz.', 'file' => ':attribute dosya olmalıdır.', 'filled' => ':attribute alanının doldurulması zorunludur.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute alanı resim dosyası olmalıdır.', 'in' => ':attribute değeri geçersiz.', 'in_array' => ':attribute alanı :other içinde mevcut değil.', @@ -50,6 +61,18 @@ 'ipv4' => ':attribute geçerli bir IPv4 adresi olmalıdır.', 'ipv6' => ':attribute geçerli bir IPv6 adresi olmalıdır.', 'json' => ':attribute geçerli bir JSON değişkeni olmalıdır.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute değeri :max değerinden küçük olmalıdır.', 'file' => ':attribute değeri :max kilobayt değerinden küçük olmalıdır.', @@ -65,12 +88,13 @@ 'array' => ':attribute en az :min nesneye sahip olmalıdır.', ], 'not_in' => 'Seçili :attribute geçersiz.', + 'not_regex' => ':attribute biçimi geçersiz.', 'numeric' => ':attribute sayı olmalıdır.', 'present' => ':attribute alanı mevcut olmalıdır.', 'regex' => ':attribute biçimi geçersiz.', 'required' => ':attribute alanı gereklidir.', 'required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_unless' => ':attribute alanı, :other alanı :value değerlerinden birine sahip olmadığında zorunludur.', 'required_with' => ':attribute alanı :values varken zorunludur.', 'required_with_all' => ':attribute alanı herhangi bir :values değeri varken zorunludur.', 'required_without' => ':attribute alanı :values yokken zorunludur.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ug/auth.php b/src/ug/auth.php new file mode 100644 index 00000000000..4f404c2961e --- /dev/null +++ b/src/ug/auth.php @@ -0,0 +1,17 @@ + 'قوللانچى نامى ياكى پارولدا خاتالىق بار.', + 'throttle' => 'مەشغۇلات قېتىم سانى بەك كۆپ بۇلۇپ كەتتى، يەنە :seconds سېكۇنتتىن كىيىن قايتا سىناپ بېقىڭ.', +]; diff --git a/src/ug/pagination.php b/src/ug/pagination.php new file mode 100644 index 00000000000..edff335ffc0 --- /dev/null +++ b/src/ug/pagination.php @@ -0,0 +1,17 @@ + '« ئالدىنقى بەت', + 'next' => 'كىيىنكى بەت »', +]; diff --git a/src/ug/passwords.php b/src/ug/passwords.php new file mode 100644 index 00000000000..c92db9a2fc9 --- /dev/null +++ b/src/ug/passwords.php @@ -0,0 +1,20 @@ + 'پارول ئەڭ ئاز بولغاندىمۇ 6 خەتتىن تەركىپ تاپقان بۇلىشى ۋە ئۆز-ئارا جۈپلەشتۈرۈلگەن بۇلىشى كېرەك.', + 'reset' => 'پارولنى قايتا بېكىتىش مۇۋاپىققىيەتلىك بولدى!', + 'sent' => 'پارولنى قايتا بېكىتىش تورخېتى يوللاندى!', + 'token' => 'پارولنى قايتا بېكىتىش ئىجازەت كودى ئىناۋەتسىز.', + 'user' => 'بۇ تورخەت ئادىرىسىغا ماس كىلىدىغان قوللانچى نام تېپىلمىدى.', +]; diff --git a/src/ug/validation.php b/src/ug/validation.php new file mode 100644 index 00000000000..b23cdd3edb8 --- /dev/null +++ b/src/ug/validation.php @@ -0,0 +1,174 @@ + ':attribute چوقۇم قوشۇلىشىڭىز كېرەك.', + 'active_url' => ':attribute ئىناۋەتلىك توربەت ئادىرىسى ئەمەس.', + 'after' => ':attribute چوقۇم :date دىن كىيىن بۇلىشى كېرەك.', + 'after_or_equal' => ':attribute چوقۇم :date غا تەڭ ياكى كىيىن بۇلىشى كېرەك.', + 'alpha' => ':attribute پەقەت ھەرىپلەردىن تۈزىلىشى كېرەك.', + 'alpha_dash' => ':attribute پەقەت ھەرىپ، سان-سىفىر ۋە يانتۇ سىزىقتىن تۈزەلگەن بۇلىشى كېرەك.', + 'alpha_num' => ':attribute پەقەت ھەرىپ ۋە سان-سىفىرلاردىن تۈزىلىشى كېرەك.', + 'array' => ':attribute چوقۇم بۇرۇن بۇلىشى كېرەك.', + 'before' => ':attribute چوقۇم :date دىن بۇرۇن بۇلىشى كېرەك.', + 'before_or_equal' => ':attribute چوقۇم :date غا تەڭ ياكى بۇرۇن بۇلىشى كېرەك.', + 'between' => [ + 'numeric' => ':attribute چوقۇم :min - :max ئارلىقىدا بۇلىشى كېرەك.', + 'file' => ':attribute چوقۇم :min - :max kb ئارلىقىدا بۇلىشى كېرەك.', + 'string' => ':attribute چوقۇم :min - :max خەت ئارلىقىدا بۇلىشى كېرەك.', + 'array' => ':attribute چوقۇم :min - :max بۆلەك ئارلىقىدا بۇلىشى كېرەك.', + ], + 'boolean' => ':attribute چوقۇم بۇل قىممىتى بۇلىشى كېرەك.', + 'confirmed' => ':attribute ئىككى قېتىم كىرگۈزگەن قىممەت ئوخشاش بولمىدى.', + 'date' => ':attribute بىر ئىناۋەتلىك ۋاقىت ئەمەس.', + 'date_format' => ':attribute تىپى چوقۇم :format بۇلىشى كېرەك.', + 'different' => ':attribute بىلەن :other چوقۇم ئوخشاش بۇلىشى كېرەك.', + 'digits' => ':attribute چوقۇم :digits خانىلىق سان بۇلىشى كېرەك.', + 'digits_between' => ':attribute چوقۇم :min بىلەن :max ئارلىقىدىكى سان بۇلىشى كېرەك.', + 'dimensions' => ':attribute رەسىم ئۆلچىمى ئىناۋەتسىز.', + 'distinct' => ':attribute ئاللابۇرۇن مەۋجۈت.', + 'email' => ':attribute ئىناۋەتلىك تورخەت ئادىرىسى ئەمەس.', + 'exists' => ':attribute مەۋجۇت ئەمەس.', + 'file' => ':attribute چوقۇم ھۆججەت بۇلىشى كېرەك.', + 'filled' => ':attribute قۇرۇق بولسا بولمايدۇ.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ':attribute چوقۇم رەسىم ھۆججىتى بۇلىشى كېرەك.', + 'in' => 'تاللانغان قىممەت :attribute ئىناۋەتسىز', + 'in_array' => ':attribute :other نىڭ ئىچىدە ئەمەس.', + 'integer' => ':attribute چوقۇم پۈتۈن سان بۇلىشى كېرەك', + 'ip' => ':attribute چوقۇم ئىناۋەتلىك IP ئادىرىسى بۇلىشى كېرەك.', + 'ipv4' => ':attribute چوقۇم ئىناۋەتلىك IPv4 ئادىرىسى بۇلىشى كېرەك.', + 'ipv6' => ':attribute چوقۇم ئىناۋەتلىك IPv6 ئادىرىسى بۇلىشى كېرەك.', + 'json' => ':attribute چوقۇم ئىناۋەتلىك JSON تىپى بۇلىشى كېرەك.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ':attribute :max دىن چوڭ بولماسلىكى كېرەك.', + 'file' => ':attribute :max kb دىن چوڭ بولماسلىكى كېرەك.', + 'string' => ':attribute چوڭ-كىچىكلىكى :max خەتتىن ئېشىپ كەتمەسلىكى كېرەك.', + 'array' => ':attribute ئەڭ كۆپ بولغاندا :max بۆلەك', + ], + 'mimes' => ':attribute چوقۇم بىر :values تىپىدىكى ھۆججەت بۇلىشى كېرەك.', + 'mimetypes' => ':attribute چوقۇم بىر :values تىپىدىكى ھۆججەت بۇلىشى كېرەك.', + 'min' => [ + 'numeric' => ':attribute چوقۇم :min تەڭ ياكى چوڭ بۇلىشى كېرەك.', + 'file' => ':attribute چوڭ-كىچىكلىكى چوقۇم :min kb دىن كىچىك بولماسلىقى كېرەك.', + 'string' => ':attribute ئەڭ ئاز بولغاندا :min خەت بۇلىشى كېرەك.', + 'array' => ':attribute ئەڭ ئاز بولغاندا :min بۆلەك بۇلىشى كېرەك.', + ], + 'not_in' => 'تاللانغان قىممەت :attribute ئىناۋەتسىز.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ':attribute چوقۇم سان-سىفىر بۇلىشى كېرەك.', + 'present' => ':attribute چوقۇم مەۋجۇت بۇلىشى كېرەك.', + 'regex' => ':attribute ھۆججەت تىپى ئىناۋەتسىز.', + 'required' => ':attribute قۇرۇق بولسا بولمايدۇ.', + 'required_if' => ':other :value بولغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'required_unless' => ':other :value بولمىغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'required_with' => ':values مەۋجۈت بولغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'required_with_all' => ':values مەۋجۈت بولغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'required_without' => ':values مەۋجۈت بولمىغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'required_without_all' => ':values ھەممىسى مەۋجۈت بولمىغاندا :attribute قۇرۇق بولسا بولمايدۇ.', + 'same' => ':attribute بىلەن :other چوقۇم ئوخشاش بۇلىشى كېرەك.', + 'size' => [ + 'numeric' => ':attribute چوڭ-كىچىكلىكى چوقۇم :size بۇلىشى كېرەك.', + 'file' => ':attribute چوڭ-كىچىكلىكى چوقۇم :size kb بۇلىشى كېرەك.', + 'string' => ':attribute چوقۇم :size خەت.', + 'array' => ':attribute چوقۇم :size بۆلەك.', + ], + 'string' => ':attribute چوقۇم بىر ھەرىپ بەلگە تىزىقى بۇلىشى كېرەك.', + 'timezone' => ':attribute چوقۇم ئىناۋەتلىك ۋاقىت رايونى بۇلىشى كېرەك.', + 'unique' => ':attribute ئاللابۇرۇن مەۋجۈت.', + 'uploaded' => ':attribute يوللاش مەغلۇپ بولدى.', + 'url' => ':attribute ھۆججەت تىپى ئىناۋەتسىز.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention 'attribute.rule' to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of 'email'. This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [ + 'name' => 'ئىسمى', + 'username' => 'قوللانچى نامى', + 'email' => 'تورخەت ئادىرىسى', + 'first_name' => 'ئىسىم', + 'last_name' => 'فامىلە', + 'password' => 'پارول', + 'password_confirmation' => 'پارول جەزىملەش', + 'city' => 'شەھەر', + 'country' => 'دۆلەت', + 'address' => 'ئادىرىس', + 'phone' => 'تېلىفۇن', + 'mobile' => 'يانفۇن', + 'age' => 'يېشى', + 'sex' => 'جىنسى', + 'gender' => 'جىنسى', + 'day' => 'كۈن', + 'month' => 'ئاي', + 'year' => 'يىل', + 'hour' => 'سائەت', + 'minute' => 'مىنۇت', + 'second' => 'سېكۇنت', + 'title' => 'تېما', + 'content' => 'مەزمۇن', + 'description' => 'تەسۋىرلەش', + 'excerpt' => 'مۇھىم مەزمۇن', + 'date' => 'چېسلا', + 'time' => 'سائەت', + 'available' => 'ئىشلىتىلىشچان', + 'size' => 'چوڭ كىچىكلىكى', + ], +]; diff --git a/src/uk/auth.php b/src/uk/auth.php index 774ee9c7900..49a2cfe390a 100644 --- a/src/uk/auth.php +++ b/src/uk/auth.php @@ -1,7 +1,6 @@ '« Назад', - 'next' => 'Далі »', - + 'previous' => '« Назад', + 'next' => 'Далі »', ]; diff --git a/src/uk/passwords.php b/src/uk/passwords.php index 4df745f253c..6596b02342f 100755 --- a/src/uk/passwords.php +++ b/src/uk/passwords.php @@ -1,7 +1,6 @@ 'Ми надіслали на Вашу електронну адресу посилання для зміни пароля!', 'token' => 'Помилковий код для зміни пароля.', 'user' => 'Користувача з такою електронною адресою не знайдено.', - ]; diff --git a/src/uk/validation.php b/src/uk/validation.php index e7dd44139d9..c4d8e785635 100755 --- a/src/uk/validation.php +++ b/src/uk/validation.php @@ -1,7 +1,6 @@ 'Поле :attribute має містити файл.', 'filled' => "Поле :attribute є обов'язковим для заповнення.", 'exists' => 'Вибране для :attribute значення не коректне.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => 'Поле :attribute має містити зображення.', 'in' => 'Вибране для :attribute значення не коректне.', 'in_array' => 'Значення поля :attribute не міститься в :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'Поле :attribute має містити IPv4 адресу.', 'ipv6' => 'Поле :attribute має містити IPv6 адресу.', 'json' => 'Дані поля :attribute мають бути в форматі JSON.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => 'Поле :attribute має бути не більше :max.', 'file' => 'Файл в полі :attribute має бути не більше :max кілобайт.', @@ -65,6 +88,7 @@ 'array' => 'Поле :attribute повинне містити не менше :min елементів.', ], 'not_in' => 'Вибране для :attribute значення не коректне.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'Поле :attribute повинно містити число.', 'present' => 'Поле :attribute повинне бути присутнє.', 'regex' => 'Поле :attribute має хибний формат.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/ur/auth.php b/src/ur/auth.php index 886dfc2ee71..f5d21f13db4 100644 --- a/src/ur/auth.php +++ b/src/ur/auth.php @@ -1,7 +1,6 @@ 'یہ تفصیلات ہمارے ریکارڈ سے مطابقت نہیں رکھتیں۔', 'throttle' => 'لاگ اِن کرنے کی بہت زیادہ کوششیں۔ براہِ مہربانی :seconds سیکنڈ میں دوبارہ کوشش کریں۔', - ]; diff --git a/src/ur/pagination.php b/src/ur/pagination.php index 4be2c529ca7..917b724775b 100644 --- a/src/ur/pagination.php +++ b/src/ur/pagination.php @@ -1,7 +1,6 @@ '« گزشتہ', - 'next' => 'آئندہ »', - + 'previous' => '« گزشتہ', + 'next' => 'آئندہ »', ]; diff --git a/src/ur/passwords.php b/src/ur/passwords.php index 93f6d5a7a71..61d446c1fb4 100644 --- a/src/ur/passwords.php +++ b/src/ur/passwords.php @@ -1,7 +1,6 @@ 'پاس ورڈ دوبارہ مرتب کرنے کے لیے ہم نے آپ کو لنک ای میل کر دیا ہے!', 'token' => 'پاس ورڈ مرتب کرنے کا یہ طریقہ نا قابلِ قبول ہے۔', 'user' => 'اس ای میل پتے کے ساتھ ہمیں کوئی صارف نہیں ملا۔', - ]; diff --git a/src/ur/validation.php b/src/ur/validation.php index 15756c94536..d50ca333751 100644 --- a/src/ur/validation.php +++ b/src/ur/validation.php @@ -1,7 +1,6 @@ ':attribute تسلیم کرنا لازمی ہے۔', 'active_url' => ':attribute قابلِ قبول یو آر ایل نہیں ہے۔', 'after' => ':attribute لازماً :date کے بعد کی کوئی تاریخ ہو۔', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => ':attribute صرف حروفِ تہجی پر مشتمل ہو سکتا ہے۔', 'alpha_dash' => ':attribute صرف حروفِ تہجی، اعداد، ڈیشِز پر مشتمل ہو سکتا ہے۔', 'alpha_num' => ':attribute میں صرف حروفِ تہجی و اعداد شامل ہو سکتے ہیں۔', 'array' => ':attribute لازماً کسی رینج پر مشتمل ہو۔', 'before' => ':attribute لازماً :date سے پہلے کی کوئی تاریخ ہو۔', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => ':attribute لازماً :min اور :max کے درمیان ہو۔', 'file' => ':attribute لازماً :min اور :max کلو بائٹس کے درمیان ہو۔', @@ -34,10 +35,24 @@ 'different' => ':attribute اور :other لازماً مختلف ہوں۔', 'digits' => ':attribute لازماً :digits اعداد ہوں۔', 'digits_between' => ':attribute لازماً :min اور :max اعداد کے درمیان ہو۔', + 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => ':attribute کی دہری ویلیو ہے۔', 'email' => ':attribute لازماً قابلِ قبول ای میل ہو۔', 'exists' => 'منتخب :attribute درست نہیں ہے۔', + 'file' => 'The :attribute must be a file.', 'filled' => ':attribute کو بھرنا ضروری ہے۔', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], 'image' => ':attribute لازماً کوئی تصویر ہو۔', 'in' => 'منتخب :attribute قابلِ قبول نہیں ہے۔', 'in_array' => ':attribute فیلڈ :other میں موجود نہیں ہے۔', @@ -46,6 +61,18 @@ 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => ':attribute لازماً قابلِ قبول JSON سٹرِنگ ہو۔', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute کو :max سے بڑا نہیں ہونا چاہیے۔', 'file' => ':attribute کو :max کلو بائٹس سے زیادہ نہیں ہونا چاہیے۔', @@ -53,6 +80,7 @@ 'array' => ':attribute میں :max سے زیادہ آئٹمز نہیں ہو سکتیں۔', ], 'mimes' => ':attribute لازماً :type :values قسم کی فائل ہو۔', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'numeric' => ':attribute لازماً کم از کم :min ہو۔', 'file' => ':attribute لازماً کم از کم :min کلو بائٹس کی ہو۔', @@ -60,6 +88,7 @@ 'array' => ':attribute میں لازماً کم از کم :min آئٹمز ہوں۔', ], 'not_in' => 'منتخب :attribute قابلِ قبول نہیں ہے۔', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute لازماً کوئی عدد ہو۔', 'present' => ':attribute فیلڈ موجود ہونا ضروری ہے۔', 'regex' => ':attribute قابلِ قبول فارمیٹ میں نہیں ہے۔', @@ -80,6 +109,7 @@ 'string' => ':attribute لازماً کوئی سٹرنگ ہو۔', 'timezone' => ':attribute لازماً کوئی قابلِ قبول خطۂِ وقت ہو۔', 'unique' => ':attribute کو پہلے ہی کسی نے حاصل کر لیا ہے۔', + 'uploaded' => 'The :attribute failed to upload.', 'url' => ':attribute فارمیٹ قابلِ قبول نہیں ہے۔', /* @@ -118,5 +148,4 @@ 'result_text_under_image' => 'تصویر کے تحت نتیجے کا متن', 'short_text' => 'مختصر متن', ], - ]; diff --git a/src/uz-cyrillic/auth.php b/src/uz-cyrillic/auth.php new file mode 100644 index 00000000000..5bc608ed494 --- /dev/null +++ b/src/uz-cyrillic/auth.php @@ -0,0 +1,17 @@ + 'Бундай маълумотларга эга фойдаланувчи мавжуд эмас.', + 'throttle' => 'Кириш учун жуда кўп урунишлар аниқланди. Илтимос :seconds сониядан сўнг яна уриниб кўринг.', +]; diff --git a/src/uz-cyrillic/pagination.php b/src/uz-cyrillic/pagination.php new file mode 100644 index 00000000000..20c7b9fa5d9 --- /dev/null +++ b/src/uz-cyrillic/pagination.php @@ -0,0 +1,17 @@ + '« Олдинги', + 'next' => 'Кейинги »', +]; diff --git a/src/uz-cyrillic/passwords.php b/src/uz-cyrillic/passwords.php new file mode 100644 index 00000000000..12106f42483 --- /dev/null +++ b/src/uz-cyrillic/passwords.php @@ -0,0 +1,20 @@ + 'Кализ сўз камида 6 та белиган иборат бўлиши ва тасдиқланиши керак.', + 'reset' => 'Сизнинг калит сўзингиз тикланди!', + 'sent' => 'Калит сўзни тиклаш ҳаволасини электрон почта орқали юбордик!', + 'token' => 'Ушбу калит сўзни қайта тиклаш белгиси (token) нотўғри.', + 'user' => 'Ушбу электрон почта манзилли фойдаланувчи топилмади.', +]; diff --git a/src/uz-cyrillic/validation.php b/src/uz-cyrillic/validation.php new file mode 100755 index 00000000000..145c6add3d7 --- /dev/null +++ b/src/uz-cyrillic/validation.php @@ -0,0 +1,144 @@ + ':Attribute майдонини қабул қилишингиз керак.', + 'active_url' => ':Attribute майдонига нотўғри URL киритилди.', + 'after' => ':Attribute майдонида сана :date дан кейинги бўлиши керак.', + 'after_or_equal' => ':Attribute майдонида сана :date га тенг ёки ундан кейинги бўлиши керак.', + 'alpha' => ':Attribute майдони фақат ҳарфларни қабул қилиши мумкин.', + 'alpha_dash' => ':Attribute майдони фақат ҳарфлар, сонлар ва чизиқларни қабул қилиши мумкин.', + 'alpha_num' => ':Attribute майдони фақат ҳарфлар ва сонларни қабул қилиши мумкин.', + 'array' => ':Attribute майдони қатор (array) бўлиши керак.', + 'before' => ':Attribute майдонида сана :date гачам бўлиши керак.', + 'before_or_equal' => ':Attribute майдонида сана :date га тенг ёки ундан олдин бўлиши керак.', + 'between' => [ + 'numeric' => ':Attribute майдонининг қиймати :min ва :max орасида бўлиши керак.', + 'file' => ':Attribute майдонидаги файлнинг ҳажми :min ва :max килобайт орасида бўлиши керак.', + 'string' => ':Attribute майдонидаги белгилар сони :min ва :max орасида бўлиши керак.', + 'array' => ':Attribute майдонида элементлар сони :min ва :max орасида бўлиши керак.', + ], + 'boolean' => ':Attribute майдони фақат мантиқий қийматни қабул қилади.', + 'confirmed' => ':Attribute майдони тасдиқланмади.', + 'date' => ':Attribute сана майдонига нотўғри қиймат киритилди.', + 'date_format' => ':Attribute майдони :format форматга мос келмади.', + 'different' => ':Attribute ва :other майдонлари фарқли бўлиши керак.', + 'digits' => ':Attribute рақамли майдон узунлиги :digits бўлиши керак.', + 'digits_between' => ':Attribute рақамли майдон узунлиги :min ва :max орасида бўлиши керак.', + 'dimensions' => ':Attribute майдонидаги тасвир тўғри келмайдиган ўлчамларга эга.', + 'distinct' => ':Attribute майдони такрорланувчи қийматлардан иборат.', + 'email' => ':Attribute майдони ҳақийқий электрон почта манзили бўлиши керак.', + 'file' => ':Attribute майдони файл турида бўлиши керак.', + 'filled' => ':Attribute майдони тўлдирилиши шарт.', + 'exists' => ':Attribute майдони учун танланган қиймат нотўғри.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ':Attribute майдони тасвир турида бўлиши керак.', + 'in' => ':Attribute майдони учун танланган қиймат хато.', + 'in_array' => ':Attribute майдонининг қиймати :other да мавжуд эмас.', + 'integer' => ':Attribute майдони бутун сон бўлиши керак.', + 'ip' => ':Attribute майдони ҳақийқий IP манзил бўлиши керак.', + 'ipv4' => ':Attribute майдони ҳақийқий IPv4 манзил бўлиши керак.', + 'ipv6' => ':Attribute майдони ҳақийқий IPv6 манзил бўлиши керак.', + 'json' => ':Attribute майдони JSON қатор (string) бўлиши керак.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ':Attribute майдони қиймати :max дан ошмаслиги керак.', + 'file' => ':Attribute майдонидаги файлнинг ҳажми :max килобайтдан ошмаслиги керак.', + 'string' => ':Attribute майдонидаги белгилар сони :max тадан ошмаслиги керак.', + 'array' => ':Attribute майдонидаги элментлар сони :max тадан ошмаслиги керак.', + ], + 'mimes' => ':Attribute майдонидаги файл сўнгида келтирилган турлардан бирида бўлиши керак: :values.', + 'mimetypes' => ':Attribute майдонидаги файл сўнгида келтирилган турлардан бирида бўлиши керак: :values.', + 'min' => [ + 'numeric' => ':Attribute майдони қиймати :min дан кам бўлмаслиги керак.', + 'file' => ':Attribute майдонидаги файлнинг ҳажми :min килобайтдан кам бўлмаслиги керак.', + 'string' => ':Attribute майдонидаги белгилар сони :min тадан кам бўлмаслиги керак.', + 'array' => ':Attribute майдонидаги элментлар сони :min тадан кам бўлмаслиги керак.', + ], + 'not_in' => ':Attribute майдони учун танланган қиймат хато.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ':Attribute майдони сон бўлиши керак.', + 'present' => ':Attribute майдони кўрсатилиши керак.', + 'regex' => ':Attribute майдони хато форматда.', + 'required' => ':Attribute майдони тўлдирилиши шарт.', + 'required_if' => ':Attribute майдони тўлдирилиши шарт, қачонки :other майдони :values га тенг бўлса.', + 'required_unless' => ':Attribute майдони тўлдирилиши шарт, қачонки :other майдони :values га тенг бўлмаса.', + 'required_with' => ':Attribute майдони тўлдирилиши шарт, қачонки :values кўрсатилган бўлса.', + 'required_with_all' => ':Attribute майдони тўлдирилиши шарт, қачонки :values кўрсатилган бўлса.', + 'required_without' => ':Attribute майдони тўлдирилиши шарт, қачонки :values кўрсатилмаган бўлса.', + 'required_without_all' => ':Attribute майдони тўлдирилиши шарт, қачонки :values лардан ҳеч бири кўрсатилмаган бўлса.', + 'same' => ':Attribute майдонининг қиймати :other билан бир хил бўлиши керак.', + 'size' => [ + 'numeric' => ':Attribute майдони қиймати :size га тенг бўлиши керак.', + 'file' => ':Attribute майдонидаги файлнинг ҳажми :size килобайтга тенг бўлиши керак.', + 'string' => ':Attribute майдонидаги белгилар сони :size га тенг бўлиши керак.', + 'array' => ':Attribute майдонидаги элментлар сони :size га тенг бўлиши керак.', + ], + 'string' => ':Attribute майдони қатор (string) бўлиши керак.', + 'timezone' => ':Attribute майдонининг қиймати мавжуд вақт минтақаси бўлиши керак.', + 'unique' => ':Attribute майдонининг бундай қиймати мавжуд (киритлган).', + 'uploaded' => ':Attribute майдонини юклаш муваффақиятли амалга ошмади.', + 'url' => ':Attribute майдони нотўғри форматга эга.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], +]; diff --git a/src/uz-latin/auth.php b/src/uz-latin/auth.php new file mode 100644 index 00000000000..ce2fa735f01 --- /dev/null +++ b/src/uz-latin/auth.php @@ -0,0 +1,17 @@ + 'Bunday maʼlumotlarga ega foydalanuvchi mavjud emas.', + 'throttle' => 'Kirish uchun juda ko‘p urunishlar aniqlandi. Iltimos :seconds soniyadan so‘ng yana urinib ko‘ring.', +]; diff --git a/src/uz-latin/pagination.php b/src/uz-latin/pagination.php new file mode 100644 index 00000000000..217e3beef5f --- /dev/null +++ b/src/uz-latin/pagination.php @@ -0,0 +1,17 @@ + '« Oldingi', + 'next' => 'Keyingi »', +]; diff --git a/src/uz-latin/passwords.php b/src/uz-latin/passwords.php new file mode 100644 index 00000000000..4cbff55ee34 --- /dev/null +++ b/src/uz-latin/passwords.php @@ -0,0 +1,20 @@ + 'Kaliz so‘z kamida 6 ta beligan iborat bo‘lishi va tasdiqlanishi kerak.', + 'reset' => 'Sizning kalit so‘zingiz tiklandi!', + 'sent' => 'Kalit so‘zni tiklash havolasini elektron pochta orqali yubordik!', + 'token' => 'Ushbu kalit so‘zni qayta tiklash belgisi (token) noto‘g‘ri.', + 'user' => 'Ushbu elektron pochta manzilli foydalanuvchi topilmadi.', +]; diff --git a/src/uz-latin/validation.php b/src/uz-latin/validation.php new file mode 100755 index 00000000000..16ba16b404f --- /dev/null +++ b/src/uz-latin/validation.php @@ -0,0 +1,144 @@ + ':Attribute maydonini qabul qilishingiz kerak.', + 'active_url' => ':Attribute maydoniga noto‘g‘ri URL kiritildi.', + 'after' => ':Attribute maydonida sana :date dan keyingi bo‘lishi kerak.', + 'after_or_equal' => ':Attribute maydonida sana :date ga teng yoki undan keyingi bo‘lishi kerak.', + 'alpha' => ':Attribute maydoni faqat harflarni qabul qilishi mumkin.', + 'alpha_dash' => ':Attribute maydoni faqat harflar, sonlar va chiziqlarni qabul qilishi mumkin.', + 'alpha_num' => ':Attribute maydoni faqat harflar va sonlarni qabul qilishi mumkin.', + 'array' => ':Attribute maydoni qator (array) bo‘lishi kerak.', + 'before' => ':Attribute maydonida sana :date gacham bo‘lishi kerak.', + 'before_or_equal' => ':Attribute maydonida sana :date ga teng yoki undan oldin bo‘lishi kerak.', + 'between' => [ + 'numeric' => ':Attribute maydonining qiymati :min va :max orasida bo‘lishi kerak.', + 'file' => ':Attribute maydonidagi faylning hajmi :min va :max kilobayt orasida bo‘lishi kerak.', + 'string' => ':Attribute maydonidagi belgilar soni :min va :max orasida bo‘lishi kerak.', + 'array' => ':Attribute maydonida elementlar soni :min va :max orasida bo‘lishi kerak.', + ], + 'boolean' => ':Attribute maydoni faqat mantiqiy qiymatni qabul qiladi.', + 'confirmed' => ':Attribute maydoni tasdiqlanmadi.', + 'date' => ':Attribute sana maydoniga noto‘g‘ri qiymat kiritildi.', + 'date_format' => ':Attribute maydoni :format formatga mos kelmadi.', + 'different' => ':Attribute va :other maydonlari farqli bo‘lishi kerak.', + 'digits' => ':Attribute raqamli maydon uzunligi :digits bo‘lishi kerak.', + 'digits_between' => ':Attribute raqamli maydon uzunligi :min va :max orasida bo‘lishi kerak.', + 'dimensions' => ':Attribute maydonidagi tasvir to‘g‘ri kelmaydigan o‘lchamlarga ega.', + 'distinct' => ':Attribute maydoni takrorlanuvchi qiymatlardan iborat.', + 'email' => ':Attribute maydoni haqiyqiy elektron pochta manzili bo‘lishi kerak.', + 'file' => ':Attribute maydoni fayl turida bo‘lishi kerak.', + 'filled' => ':Attribute maydoni to‘ldirilishi shart.', + 'exists' => ':Attribute maydoni uchun tanlangan qiymat noto‘g‘ri.', + 'gt' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + 'image' => ':Attribute maydoni tasvir turida bo‘lishi kerak.', + 'in' => ':Attribute maydoni uchun tanlangan qiymat xato.', + 'in_array' => ':Attribute maydonining qiymati :other da mavjud emas.', + 'integer' => ':Attribute maydoni butun son bo‘lishi kerak.', + 'ip' => ':Attribute maydoni haqiyqiy IP manzil bo‘lishi kerak.', + 'ipv4' => ':Attribute maydoni haqiyqiy IPv4 manzil bo‘lishi kerak.', + 'ipv6' => ':Attribute maydoni haqiyqiy IPv6 manzil bo‘lishi kerak.', + 'json' => ':Attribute maydoni JSON qator (string) bo‘lishi kerak.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => ':Attribute maydoni qiymati :max dan oshmasligi kerak.', + 'file' => ':Attribute maydonidagi faylning hajmi :max kilobaytdan oshmasligi kerak.', + 'string' => ':Attribute maydonidagi belgilar soni :max tadan oshmasligi kerak.', + 'array' => ':Attribute maydonidagi elmentlar soni :max tadan oshmasligi kerak.', + ], + 'mimes' => ':Attribute maydonidagi fayl so‘ngida keltirilgan turlardan birida bo‘lishi kerak: :values.', + 'mimetypes' => ':Attribute maydonidagi fayl so‘ngida keltirilgan turlardan birida bo‘lishi kerak: :values.', + 'min' => [ + 'numeric' => ':Attribute maydoni qiymati :min dan kam bo‘lmasligi kerak.', + 'file' => ':Attribute maydonidagi faylning hajmi :min kilobaytdan kam bo‘lmasligi kerak.', + 'string' => ':Attribute maydonidagi belgilar soni :min tadan kam bo‘lmasligi kerak.', + 'array' => ':Attribute maydonidagi elmentlar soni :min tadan kam bo‘lmasligi kerak.', + ], + 'not_in' => ':Attribute maydoni uchun tanlangan qiymat xato.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ':Attribute maydoni son bo‘lishi kerak.', + 'present' => ':Attribute maydoni ko‘rsatilishi kerak.', + 'regex' => ':Attribute maydoni xato formatda.', + 'required' => ':Attribute maydoni to‘ldirilishi shart.', + 'required_if' => ':Attribute maydoni to‘ldirilishi shart, qachonki :other maydoni :value ga teng bo‘lsa.', + 'required_unless' => ':Attribute maydoni to‘ldirilishi shart, qachonki :other maydoni :values ga teng bo‘lmasa.', + 'required_with' => ':Attribute maydoni to‘ldirilishi shart, qachonki :values ko‘rsatilgan bo‘lsa.', + 'required_with_all' => ':Attribute maydoni to‘ldirilishi shart, qachonki :values ko‘rsatilgan bo‘lsa.', + 'required_without' => ':Attribute maydoni to‘ldirilishi shart, qachonki :values ko‘rsatilmagan bo‘lsa.', + 'required_without_all' => ':Attribute maydoni to‘ldirilishi shart, qachonki :values lardan hech biri ko‘rsatilmagan bo‘lsa.', + 'same' => ':Attribute maydonining qiymati :other bilan bir xil bo‘lishi kerak.', + 'size' => [ + 'numeric' => ':Attribute maydoni qiymati :size ga teng bo‘lishi kerak.', + 'file' => ':Attribute maydonidagi faylning hajmi :size kilobaytga teng bo‘lishi kerak.', + 'string' => ':Attribute maydonidagi belgilar soni :size ga teng bo‘lishi kerak.', + 'array' => ':Attribute maydonidagi elmentlar soni :size ga teng bo‘lishi kerak.', + ], + 'string' => ':Attribute maydoni qator (string) bo‘lishi kerak.', + 'timezone' => ':Attribute maydonining qiymati mavjud vaqt mintaqasi bo‘lishi kerak.', + 'unique' => ':Attribute maydonining bunday qiymati mavjud (kiritlgan).', + 'uploaded' => ':Attribute maydonini yuklash muvaffaqiyatli amalga oshmadi.', + 'url' => ':Attribute maydoni noto‘g‘ri formatga ega.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], +]; diff --git a/src/vi/auth.php b/src/vi/auth.php index 02d05108d66..5a9ddc368f8 100644 --- a/src/vi/auth.php +++ b/src/vi/auth.php @@ -1,7 +1,6 @@ 'Thông tin tài khoản không tìm thấy trong hệ thống.', 'throttle' => 'Vượt quá số lần đăng nhập cho phép. Vui lòng thử lại sau :seconds giây.', - ]; diff --git a/src/vi/pagination.php b/src/vi/pagination.php index fecba6decdd..03b35b9f938 100644 --- a/src/vi/pagination.php +++ b/src/vi/pagination.php @@ -1,7 +1,6 @@ '« Trang sau', - 'next' => 'Trang trước »', - + 'previous' => '« Trang sau', + 'next' => 'Trang trước »', ]; diff --git a/src/vi/passwords.php b/src/vi/passwords.php index 0206fd27883..98dad96df2e 100644 --- a/src/vi/passwords.php +++ b/src/vi/passwords.php @@ -1,7 +1,6 @@ 'Hướng dẫn cấp lại mật khẩu đã được gửi!', 'token' => 'Mã khôi phục mật khẩu không hợp lệ.', 'user' => 'Không tìm thấy người dùng với địa chỉ email này.', - ]; diff --git a/src/vi/validation.php b/src/vi/validation.php index ad1b1972cd9..c8cd169a6f0 100644 --- a/src/vi/validation.php +++ b/src/vi/validation.php @@ -1,7 +1,6 @@ 'Trường :attribute phải được chấp nhận.', 'active_url' => 'Trường :attribute không phải là một URL hợp lệ.', 'after' => 'Trường :attribute phải là một ngày sau ngày :date.', - 'after_or_equal' => 'Trường :attribute phải là thời gian bắt đầu sau :date.', + 'after_or_equal' => 'Trường :attribute phải là thời gian bắt đầu sau hoặc đúng bằng :date.', 'alpha' => 'Trường :attribute chỉ có thể chứa các chữ cái.', 'alpha_dash' => 'Trường :attribute chỉ có thể chứa chữ cái, số và dấu gạch ngang.', 'alpha_num' => 'Trường :attribute chỉ có thể chứa chữ cái và số.', 'array' => 'Trường :attribute phải là dạng mảng.', 'before' => 'Trường :attribute phải là một ngày trước ngày :date.', - 'before_or_equal' => 'Trường :attribute phải là thời gian bắt đầu trước :date.', + 'before_or_equal' => 'Trường :attribute phải là thời gian bắt đầu trước hoặc đúng bằng :date.', 'between' => [ 'numeric' => 'Trường :attribute phải nằm trong khoảng :min - :max.', 'file' => 'Dung lượng tập tin trong trường :attribute phải từ :min - :max kB.', @@ -42,6 +41,18 @@ 'exists' => 'Giá trị đã chọn trong trường :attribute không hợp lệ.', 'file' => 'Trường :attribute phải là một tệp tin.', 'filled' => 'Trường :attribute không được bỏ trống.', + 'gt' => [ + 'numeric' => 'Giá trị trường :attribute phải lớn hơn :value.', + 'file' => 'Dung lượng trường :attribute phải lớn hơn :value kilobytes.', + 'string' => 'Độ dài trường :attribute phải nhiều hơn :value kí tự.', + 'array' => 'Mảng :attribute phải có nhiều hơn :value phần tử.', + ], + 'gte' => [ + 'numeric' => 'Giá trị trường :attribute phải lớn hơn hoặc bằng :value.', + 'file' => 'Dung lượng trường :attribute phải lớn hơn hoặc bằng :value kilobytes.', + 'string' => 'Độ dài trường :attribute phải lớn hơn hoặc bằng :value kí tự.', + 'array' => 'Mảng :attribute phải có ít nhất :value phần tử.', + ], 'image' => 'Trường :attribute phải là định dạng hình ảnh.', 'in' => 'Giá trị đã chọn trong trường :attribute không hợp lệ.', 'in_array' => 'Trường :attribute phải thuộc tập cho phép: :other.', @@ -50,6 +61,18 @@ 'ipv4' => 'Trường :attribute phải là một địa chỉ IPv4.', 'ipv6' => 'Trường :attribute phải là một địa chỉ IPv6.', 'json' => 'Trường :attribute phải là một chuỗi JSON.', + 'lt' => [ + 'numeric' => 'Giá trị trường :attribute phải nhỏ hơn :value.', + 'file' => 'Dung lượng trường :attribute phải nhỏ hơn :value kilobytes.', + 'string' => 'Độ dài trường :attribute phải nhỏ hơn :value kí tự.', + 'array' => 'Mảng :attribute phải có ít hơn :value phần tử.', + ], + 'lte' => [ + 'numeric' => 'Giá trị trường :attribute phải nhỏ hơn hoặc bằng :value.', + 'file' => 'Dung lượng trường :attribute phải nhỏ hơn hoặc bằng :value kilobytes.', + 'string' => 'Độ dài trường :attribute phải nhỏ hơn hoặc bằng :value kí tự.', + 'array' => 'Mảng :attribute không được có nhiều hơn :value phần tử.', + ], 'max' => [ 'numeric' => 'Trường :attribute không được lớn hơn :max.', 'file' => 'Dung lượng tập tin trong trường :attribute không được lớn hơn :max kB.', @@ -65,9 +88,10 @@ 'array' => 'Trường :attribute phải có tối thiểu :min phần tử.', ], 'not_in' => 'Giá trị đã chọn trong trường :attribute không hợp lệ.', + 'not_regex' => 'Trường :attribute có định dạng không hợp lệ.', 'numeric' => 'Trường :attribute phải là một số.', 'present' => 'Trường :attribute phải được cung cấp.', - 'regex' => 'Định dạng trường :attribute không hợp lệ.', + 'regex' => 'Trường :attribute có định dạng không hợp lệ.', 'required' => 'Trường :attribute không được bỏ trống.', 'required_if' => 'Trường :attribute không được bỏ trống khi trường :other là :value.', 'required_unless' => 'Trường :attribute không được bỏ trống trừ khi :other là :values.', @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,8 +140,6 @@ | */ - 'attributes' => [ - // + 'attributes' => [ ], - ]; diff --git a/src/zh-CN/auth.php b/src/zh-CN/auth.php index 7cc09d7dd26..e954e9fd98b 100644 --- a/src/zh-CN/auth.php +++ b/src/zh-CN/auth.php @@ -1,7 +1,6 @@ '用户名或密码错误。', 'throttle' => '您的尝试登录次数过多,请 :seconds 秒后再试。', - ]; diff --git a/src/zh-CN/pagination.php b/src/zh-CN/pagination.php index f1fc4b5aee5..9cf3a18698f 100644 --- a/src/zh-CN/pagination.php +++ b/src/zh-CN/pagination.php @@ -1,7 +1,6 @@ '« 上一页', - 'next' => '下一页 »', - + 'previous' => '« 上一页', + 'next' => '下一页 »', ]; diff --git a/src/zh-CN/passwords.php b/src/zh-CN/passwords.php index f1781ea7d16..5a49f1a37d5 100644 --- a/src/zh-CN/passwords.php +++ b/src/zh-CN/passwords.php @@ -1,7 +1,6 @@ '密码至少是六位字符并且匹配。', + 'password' => '密码至少是六位字符并且应与确认密码匹配。', 'reset' => '密码重置成功!', 'sent' => '密码重置邮件已发送!', 'token' => '密码重置令牌无效。', 'user' => '找不到该邮箱对应的用户。', - ]; diff --git a/src/zh-CN/validation.php b/src/zh-CN/validation.php index 413d42f6cc6..ec431add529 100644 --- a/src/zh-CN/validation.php +++ b/src/zh-CN/validation.php @@ -1,7 +1,6 @@ ':attribute 必须接受。', + 'accepted' => '您必须接受 :attribute。', 'active_url' => ':attribute 不是一个有效的网址。', 'after' => ':attribute 必须要晚于 :date。', 'after_or_equal' => ':attribute 必须要等于 :date 或更晚。', @@ -25,7 +24,7 @@ 'before_or_equal' => ':attribute 必须要等于 :date 或更早。', 'between' => [ 'numeric' => ':attribute 必须介于 :min - :max 之间。', - 'file' => ':attribute 必须介于 :min - :max kb 之间。', + 'file' => ':attribute 必须介于 :min - :max KB 之间。', 'string' => ':attribute 必须介于 :min - :max 个字符之间。', 'array' => ':attribute 必须只有 :min - :max 个单元。', ], @@ -42,6 +41,18 @@ 'exists' => ':attribute 不存在。', 'file' => ':attribute 必须是文件。', 'filled' => ':attribute 不能为空。', + 'gt' => [ + 'numeric' => ':attribute 必须大于 :value。', + 'file' => ':attribute 必须大于 :value KB。', + 'string' => ':attribute 必须多于 :value 个字符。', + 'array' => ':attribute 必须多于 :value 个元素。', + ], + 'gte' => [ + 'numeric' => ':attribute 必须大于或等于 :value。', + 'file' => ':attribute 必须大于或等于 :value KB。', + 'string' => ':attribute 必须多于或等于 :value 个字符。', + 'array' => ':attribute 必须多于或等于 :value 个元素。', + ], 'image' => ':attribute 必须是图片。', 'in' => '已选的属性 :attribute 非法。', 'in_array' => ':attribute 没有在 :other 中。', @@ -50,9 +61,21 @@ 'ipv4' => ':attribute 必须是有效的 IPv4 地址。', 'ipv6' => ':attribute 必须是有效的 IPv6 地址。', 'json' => ':attribute 必须是正确的 JSON 格式。', + 'lt' => [ + 'numeric' => ':attribute 必须小于 :value。', + 'file' => ':attribute 必须小于 :value KB。', + 'string' => ':attribute 必须少于 :value 个字符。', + 'array' => ':attribute 必须少于 :value 个元素。', + ], + 'lte' => [ + 'numeric' => ':attribute 必须小于或等于 :value。', + 'file' => ':attribute 必须小于或等于 :value KB。', + 'string' => ':attribute 必须少于或等于 :value 个字符。', + 'array' => ':attribute 必须少于或等于 :value 个元素。', + ], 'max' => [ 'numeric' => ':attribute 不能大于 :max。', - 'file' => ':attribute 不能大于 :max kb。', + 'file' => ':attribute 不能大于 :max KB。', 'string' => ':attribute 不能大于 :max 个字符。', 'array' => ':attribute 最多只有 :max 个单元。', ], @@ -60,11 +83,12 @@ 'mimetypes' => ':attribute 必须是一个 :values 类型的文件。', 'min' => [ 'numeric' => ':attribute 必须大于等于 :min。', - 'file' => ':attribute 大小不能小于 :min kb。', + 'file' => ':attribute 大小不能小于 :min KB。', 'string' => ':attribute 至少为 :min 个字符。', 'array' => ':attribute 至少有 :min 个单元。', ], 'not_in' => '已选的属性 :attribute 非法。', + 'not_regex' => ':attribute 的格式错误。', 'numeric' => ':attribute 必须是一个数字。', 'present' => ':attribute 必须存在。', 'regex' => ':attribute 格式不正确。', @@ -78,7 +102,7 @@ 'same' => ':attribute 和 :other 必须相同。', 'size' => [ 'numeric' => ':attribute 大小必须为 :size。', - 'file' => ':attribute 大小必须为 :size kb。', + 'file' => ':attribute 大小必须为 :size KB。', 'string' => ':attribute 必须是 :size 个字符。', 'array' => ':attribute 必须为 :size 个单元。', ], @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => '名称', 'username' => '用户名', 'email' => '邮箱', @@ -147,5 +171,4 @@ 'available' => '可用的', 'size' => '大小', ], - ]; diff --git a/src/zh-HK/auth.php b/src/zh-HK/auth.php index d29122b2d7c..13edea6c86e 100644 --- a/src/zh-HK/auth.php +++ b/src/zh-HK/auth.php @@ -1,7 +1,6 @@ '用戶名或密碼錯誤', 'throttle' => '登入次數過多,請在 :seconds 秒後再試。', - ]; diff --git a/src/zh-HK/pagination.php b/src/zh-HK/pagination.php index fc2f4a059ea..856d082fa31 100644 --- a/src/zh-HK/pagination.php +++ b/src/zh-HK/pagination.php @@ -1,7 +1,6 @@ '« 上一頁', - 'next' => '下一頁 »', - + 'previous' => '« 上一頁', + 'next' => '下一頁 »', ]; diff --git a/src/zh-HK/passwords.php b/src/zh-HK/passwords.php index d1286a7a8f7..12d35dbdade 100644 --- a/src/zh-HK/passwords.php +++ b/src/zh-HK/passwords.php @@ -1,7 +1,6 @@ '密碼重設電郵經已寄出!', 'token' => '密碼重設碼不正確。', 'user' => '找不到該電郵地址所對應的用戶。', - ]; diff --git a/src/zh-HK/validation.php b/src/zh-HK/validation.php index 4b7330fc832..cb66b7c92e2 100644 --- a/src/zh-HK/validation.php +++ b/src/zh-HK/validation.php @@ -1,7 +1,6 @@ ':attribute 必須要等於 :date 或更早。', 'between' => [ 'numeric' => ':attribute 必須介乎 :min 至 :max 之間。', - 'file' => ':attribute 必須介乎 :min 至 :max kb 之間。 ', + 'file' => ':attribute 必須介乎 :min 至 :max KB 之間。 ', 'string' => ':attribute 必須介乎 :min 至 :max 個字符之間。', 'array' => ':attribute: 必須有 :min 至 :max 個項目。', ], @@ -42,6 +41,18 @@ 'exists' => ':attribute 不存在。', 'file' => ':attribute 必須是文件。', 'filled' => ':attribute 不能留空。', + 'gt' => [ + 'numeric' => ':attribute 必須大於 :value。', + 'file' => ':attribute 必須大於 :value KB。', + 'string' => ':attribute 必須多於 :value 個字符。', + 'array' => ':attribute 必須多於 :value 個項目。', + ], + 'gte' => [ + 'numeric' => ':attribute 必須大於或等於 :value。', + 'file' => ':attribute 必須大於或等於 :value KB。', + 'string' => ':attribute 必須多於或等於 :value 個字符。', + 'array' => ':attribute 必須多於或等於 :value 個項目。', + ], 'image' => ':attribute 必須是一張圖片。', 'in' => '所揀選的 :attribute 選項無效。', 'in_array' => ':attribute 沒有在 :other 中。', @@ -50,9 +61,21 @@ 'ipv4' => ':attribute 必須是一個有效的 IPv4 地址。', 'ipv6' => ':attribute 必須是一個有效的 IPv6 地址。', 'json' => ':attribute 必須是正確的 JSON 格式。', + 'lt' => [ + 'numeric' => ':attribute 必須小於 :value。', + 'file' => ':attribute 必須小於 :value KB。', + 'string' => ':attribute 必須少於 :value 個字符。', + 'array' => ':attribute 必須少於 :value 個項目。', + ], + 'lte' => [ + 'numeric' => ':attribute 必須小於或等於 :value。', + 'file' => ':attribute 必須小於或等於 :value KB。', + 'string' => ':attribute 必須少於或等於 :value 個字符。', + 'array' => ':attribute 必須少於或等於 :value 個項目。', + ], 'max' => [ 'numeric' => ':attribute 不能大於 :max。', - 'file' => ':attribute 不能大於 :max kb。', + 'file' => ':attribute 不能大於 :max KB。', 'string' => ':attribute 不能多於 :max 個字符。', 'array' => ':attribute 不能多於 :max 個項目。', ], @@ -60,11 +83,12 @@ 'mimetypes' => ':attribute 必須為 :values 的檔案。', 'min' => [ 'numeric' => ':attribute 不能小於 :min。', - 'file' => ':attribute 不能小於 :min kb。', + 'file' => ':attribute 不能小於 :min KB。', 'string' => ':attribute 不能小於 :min 個字符。', 'array' => ':attribute 不能小於 :min 個項目。', ], 'not_in' => '所揀選的 :attribute 選項無效。', + 'not_regex' => ':attribute 的格式錯誤。', 'numeric' => ':attribute 必須為一個數字。', 'present' => ':attribute 必須存在。', 'regex' => ':attribute 的格式錯誤。', @@ -78,7 +102,7 @@ 'same' => ':attribute 與 :other 必須相同。', 'size' => [ 'numeric' => ':attribute 的大小必須是 :size。', - 'file' => ':attribute 的大小必須是 :size kb。', + 'file' => ':attribute 的大小必須是 :size KB。', 'string' => ':attribute 必須是 :size 個字符。', 'array' => ':attribute 必須是 :size 個單元。', ], @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'name' => '名稱', 'username' => '使用者名', 'email' => '電郵', @@ -147,5 +171,4 @@ 'available' => '可用的', 'size' => '大小', ], - ]; diff --git a/src/zh-TW/auth.php b/src/zh-TW/auth.php index 678bea11a6d..9c8a37bf924 100644 --- a/src/zh-TW/auth.php +++ b/src/zh-TW/auth.php @@ -1,7 +1,6 @@ '使用者名稱或密碼錯誤', 'throttle' => '嘗試登入太多次,請在 :seconds 秒後再試。', - ]; diff --git a/src/zh-TW/pagination.php b/src/zh-TW/pagination.php index fc2f4a059ea..856d082fa31 100644 --- a/src/zh-TW/pagination.php +++ b/src/zh-TW/pagination.php @@ -1,7 +1,6 @@ '« 上一頁', - 'next' => '下一頁 »', - + 'previous' => '« 上一頁', + 'next' => '下一頁 »', ]; diff --git a/src/zh-TW/passwords.php b/src/zh-TW/passwords.php index 8a444c955cf..a00ec594ff0 100644 --- a/src/zh-TW/passwords.php +++ b/src/zh-TW/passwords.php @@ -1,7 +1,6 @@ '密碼重設郵件已發送!', 'token' => '密碼重設隨機碼 (token) 無效。', 'user' => '找不到該電子郵件信箱對應的使用者。', - ]; diff --git a/src/zh-TW/validation.php b/src/zh-TW/validation.php index f6550d8ae92..255c401c3a6 100644 --- a/src/zh-TW/validation.php +++ b/src/zh-TW/validation.php @@ -1,7 +1,6 @@ ':attribute 必須要等於 :date 或更早。', 'between' => [ 'numeric' => ':attribute 必須介於 :min 至 :max 之間。', - 'file' => ':attribute 必須介於 :min 至 :max kb 之間。 ', + 'file' => ':attribute 必須介於 :min 至 :max KB 之間。 ', 'string' => ':attribute 必須介於 :min 至 :max 個字元之間。', 'array' => ':attribute: 必須有 :min - :max 個元素。', ], @@ -42,6 +41,18 @@ 'exists' => '所選擇的 :attribute 選項無效。', 'file' => ':attribute 必須是一個檔案。', 'filled' => ':attribute 不能留空。', + 'gt' => [ + 'numeric' => ':attribute 必須大於 :value。', + 'file' => ':attribute 必須大於 :value KB。', + 'string' => ':attribute 必須多於 :value 個字元。', + 'array' => ':attribute 必須多於 :value 個元素。', + ], + 'gte' => [ + 'numeric' => ':attribute 必須大於或等於 :value。', + 'file' => ':attribute 必須大於或等於 :value KB。', + 'string' => ':attribute 必須多於或等於 :value 個字元。', + 'array' => ':attribute 必須多於或等於 :value 個元素。', + ], 'image' => ':attribute 必須是一張圖片。', 'in' => '所選擇的 :attribute 選項無效。', 'in_array' => ':attribute 沒有在 :other 中。', @@ -50,9 +61,21 @@ 'ipv4' => ':attribute 必須是一個有效的 IPv4 位址。', 'ipv6' => ':attribute 必須是一個有效的 IPv6 位址。', 'json' => ':attribute 必須是正確的 JSON 字串。', + 'lt' => [ + 'numeric' => ':attribute 必須小於 :value。', + 'file' => ':attribute 必須小於 :value KB。', + 'string' => ':attribute 必須少於 :value 個字元。', + 'array' => ':attribute 必須少於 :value 個元素。', + ], + 'lte' => [ + 'numeric' => ':attribute 必須小於或等於 :value。', + 'file' => ':attribute 必須小於或等於 :value KB。', + 'string' => ':attribute 必須少於或等於 :value 個字元。', + 'array' => ':attribute 必須少於或等於 :value 個元素。', + ], 'max' => [ 'numeric' => ':attribute 不能大於 :max。', - 'file' => ':attribute 不能大於 :max kb。', + 'file' => ':attribute 不能大於 :max KB。', 'string' => ':attribute 不能多於 :max 個字元。', 'array' => ':attribute 最多有 :max 個元素。', ], @@ -60,11 +83,12 @@ 'mimetypes' => ':attribute 必須為 :values 的檔案。', 'min' => [ 'numeric' => ':attribute 不能小於 :min。', - 'file' => ':attribute 不能小於 :min kb。', + 'file' => ':attribute 不能小於 :min KB。', 'string' => ':attribute 不能小於 :min 個字元。', 'array' => ':attribute 至少有 :min 個元素。', ], 'not_in' => '所選擇的 :attribute 選項無效。', + 'not_regex' => ':attribute 的格式錯誤。', 'numeric' => ':attribute 必須為一個數字。', 'present' => ':attribute 必須存在。', 'regex' => ':attribute 的格式錯誤。', @@ -78,7 +102,7 @@ 'same' => ':attribute 與 :other 必須相同。', 'size' => [ 'numeric' => ':attribute 的大小必須是 :size。', - 'file' => ':attribute 的大小必須是 :size kb。', + 'file' => ':attribute 的大小必須是 :size KB。', 'string' => ':attribute 必須是 :size 個字元。', 'array' => ':attribute 必須是 :size 個元素。', ], @@ -99,7 +123,7 @@ | */ - 'custom' => [ + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], @@ -116,7 +140,7 @@ | */ - 'attributes' => [ + 'attributes' => [ 'address' => '地址', 'age' => '年齡', 'available' => '可用的', @@ -147,5 +171,4 @@ 'username' => '使用者名字', 'year' => '年', ], - ]; diff --git a/todo.md b/todo.md index 1448156ea2d..ed92d8b7a4f 100644 --- a/todo.md +++ b/todo.md @@ -1,30 +1,195 @@ # Todo list - * ar: + * az: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex : not present * be: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : uploaded * bg: - * validation : file - * validation : in_array - * validation : ipv4 - * validation : ipv6 - * validation : required_unless + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * bn: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * bs: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -32,27 +197,128 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : uploaded * ca: - * validation : after_or_equal - * validation : before_or_equal - * validation : ipv4 - * validation : ipv6 + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * cs: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * cy: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -60,84 +326,525 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : string * validation : uploaded * da: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : not_regex * de: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Name + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + + * de-CH: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * el: - * validation : ipv4 - * validation : ipv6 + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * es: * et: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex + + * eu: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * fa: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * fi: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * validation : after_or_equal * validation : array * validation : before_or_equal * validation : dimensions * validation : exists + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * fr: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * gl: - * validation : after_or_equal - * validation : before_or_equal + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : dimensions * validation : distinct * validation : file * validation : in_array - * validation : ipv4 - * validation : ipv6 * validation : present - * validation : uploaded * he: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * hi: - * validation : after_or_equal : not present - * validation : before_or_equal : not present - * validation : dimensions : not present - * validation : file : not present - * validation : ipv4 - * validation : ipv6 - * validation : mimetypes : not present - * validation : uploaded : not present - - * hr: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions - * validation : distinct * validation : file - * validation : in_array + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 - * validation : json - * validation : present - * validation : required_unless - * validation : string + * validation : lt + * validation : lte + * validation : mimetypes + * validation : not_regex * validation : uploaded + * hr: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * hu: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * id: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * is: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -145,10 +852,15 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : required_with @@ -159,22 +871,168 @@ * validation : uploaded * it: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * ja: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * ka: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * kk: - * validation : after_or_equal : not present - * validation : before_or_equal : not present - * validation : dimensions : not present - * validation : file : not present + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : after_or_equal + * validation : before_or_equal + * validation : dimensions + * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 - * validation : mimetypes : not present - * validation : uploaded : not present + * validation : lt + * validation : lte + * validation : mimetypes + * validation : not_regex + * validation : uploaded * km: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -182,10 +1040,15 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : required_with_all @@ -194,26 +1057,181 @@ * validation : uploaded * ko: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * lt: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : uploaded + * lv: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : ipv4 + * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex + * me: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : timezone * validation : uploaded * mk: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -221,10 +1239,15 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : required_with_all @@ -234,64 +1257,375 @@ * validation : uploaded * mn: - * validation : ipv4 : not present - * validation : ipv6 : not present + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : ipv4 + * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : required_without * validation : required_without_all * validation : same * ms: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * nb: - * validation : after_or_equal - * validation : before_or_equal - * validation : dimensions - * validation : distinct - * validation : file - * validation : in_array - * validation : ipv4 - * validation : ipv6 - * validation : present - * validation : uploaded + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * ne: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : uploaded * nl: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * nn: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : uploaded * pl: - * validation : ipv4 - * validation : ipv6 + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * pt: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * pt-BR: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * validation : not_regex * ro: - * validation : ipv4 - * validation : ipv6 + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * ru: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * sc: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -299,36 +1633,120 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : string * validation : uploaded * sk: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * sl: - * auth : failed - * auth : throttle - * validation : after_or_equal - * validation : before_or_equal - * validation : dimensions - * validation : distinct - * validation : file - * validation : in_array - * validation : ipv4 - * validation : ipv6 - * validation : json - * validation : present - * validation : required_unless - * validation : string - * validation : timezone - * validation : uploaded + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * sq: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -336,56 +1754,245 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : uploaded * sr: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : uploaded * sv: - * validation : ipv4 - * validation : ipv6 + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * sw: - * validation : after_or_equal : not present - * validation : before_or_equal : not present - * validation : dimensions : not present - * validation : file : not present + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : after_or_equal + * validation : before_or_equal + * validation : dimensions + * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 - * validation : mimetypes : not present - * validation : uploaded : not present + * validation : lt + * validation : lte + * validation : mimetypes + * validation : not_regex + * validation : uploaded * tg: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * th: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * validation : after_or_equal * validation : before_or_equal * validation : dimensions * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 + * validation : lt + * validation : lte + * validation : not_regex * validation : uploaded * tk: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present * auth : failed * auth : throttle * validation : after_or_equal @@ -393,44 +2000,362 @@ * validation : dimensions * validation : distinct * validation : file + * validation : gt + * validation : gte * validation : in_array * validation : ipv4 * validation : ipv6 * validation : json + * validation : lt + * validation : lte + * validation : not_regex * validation : present * validation : required_unless * validation : string * validation : uploaded * tl: - * validation : after_or_equal : not present - * validation : before_or_equal : not present - * validation : dimensions : not present - * validation : file : not present + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : after_or_equal + * validation : before_or_equal + * validation : dimensions + * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 - * validation : mimetypes : not present - * validation : uploaded : not present + * validation : lt + * validation : lte + * validation : mimetypes + * validation : not_regex + * validation : uploaded * tr: - * validation : required_unless + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + + * ug: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * uk: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * ur: - * validation : after_or_equal : not present - * validation : before_or_equal : not present - * validation : dimensions : not present - * validation : file : not present + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : after_or_equal + * validation : before_or_equal + * validation : dimensions + * validation : file + * validation : gt + * validation : gte * validation : ipv4 * validation : ipv6 - * validation : mimetypes : not present - * validation : uploaded : not present + * validation : lt + * validation : lte + * validation : mimetypes + * validation : not_regex + * validation : uploaded + + * uz-cyrillic: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex + + * uz-latin: + * json : A fresh verification link has been sent to your email address. : not present + * json : Confirm Password : not present + * json : E-Mail Address : not present + * json : Error : not present + * json : Forgot Your Password? : not present + * json : Go Home : not present + * json : hi : not present + * json : If you did not request a password reset, no further action is required. : not present + * json : Login : not present + * json : Logout : not present + * json : Name : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Password : not present + * json : Register : not present + * json : Remember Me : not present + * json : Reset Password : not present + * json : Reset Password Notification : not present + * json : Send Password Reset Link : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present + * json : You are receiving this email because we received a password reset request for your account. : not present + * validation : gt + * validation : gte + * validation : lt + * validation : lte + * validation : not_regex * vi: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * zh-CN: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * zh-HK: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present * zh-TW: + * json : A fresh verification link has been sent to your email address. : not present + * json : Error : not present + * json : Go Home : not present + * json : hi : not present + * json : Oh no : not present + * json : Page Expired : not present + * json : Page Not Found : not present + * json : Service Unavailable : not present + * json : Sorry, the page you are looking for could not be found. : not present + * json : Sorry, you are making too many requests to our servers. : not present + * json : Sorry, you are not authorized to access this page. : not present + * json : Sorry, your session has expired. Please refresh and try again. : not present + * json : Sorry, we are doing some maintenance. Please check back soon. : not present + * json : Too Many Requests : not present + * json : Unauthorized : not present + * json : Verify Your Email Address : not present