mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
committed by
HolgerHatGarKeineNode
parent
a15ca4a2bc
commit
5776b01d15
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => 'Lade',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => 'Lade',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.',
|
||||
'password' => 'Das Passwort ist falsch.',
|
||||
'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.',
|
||||
'password' => 'Das Passwort ist falsch.',
|
||||
'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unbekannter Fehler',
|
||||
'unknownError' => 'Unbekannter Fehler',
|
||||
100 => 'Weiter',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Verarbeitung',
|
||||
200 => 'OK',
|
||||
201 => 'Erstellt',
|
||||
202 => 'Akzeptiert',
|
||||
203 => 'Nicht maßgebende Informationen',
|
||||
204 => 'Kein Inhalt',
|
||||
205 => 'Inhalt zurücksetzen',
|
||||
206 => 'Teilinhalt',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Bereits gemeldet',
|
||||
226 => 'IM verwendet',
|
||||
300 => 'Mehrfachauswahl',
|
||||
301 => 'Permanent verschoben',
|
||||
302 => 'Gefunden',
|
||||
303 => 'Andere sehen',
|
||||
304 => 'Nicht modifiziert',
|
||||
305 => 'Proxy verwenden',
|
||||
307 => 'Temporäre Weiterleitung',
|
||||
308 => 'Permanente Weiterleitung',
|
||||
400 => 'Schlechte Anfrage',
|
||||
401 => 'Nicht autorisiert',
|
||||
402 => 'Zahlung erforderlich',
|
||||
403 => 'Verboten',
|
||||
404 => 'Seite nicht gefunden',
|
||||
405 => 'Methode nicht erlaubt',
|
||||
406 => 'Nicht annehmbar',
|
||||
407 => 'Proxy-Authentifizierung erforderlich',
|
||||
408 => 'Zeitüberschreitung anfordern',
|
||||
409 => 'Konflikt',
|
||||
410 => 'Gegangen',
|
||||
411 => 'Länge erforderlich',
|
||||
412 => 'Vorbedingung fehlgeschlagen',
|
||||
413 => 'Nutzlast zu groß',
|
||||
414 => 'URI zu lang',
|
||||
415 => 'Nicht unterstützter Medientyp',
|
||||
416 => 'Bereich nicht erfüllbar',
|
||||
417 => 'Erwartung gescheitert',
|
||||
418 => 'Ich bin eine Teekanne',
|
||||
419 => 'Sitzung ist abgelaufen',
|
||||
421 => 'Fehlgeleitete Anfrage',
|
||||
422 => 'Unverfügbare Entität',
|
||||
423 => 'Gesperrt',
|
||||
424 => 'Fehlgeschlagene Abhängigkeit',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade erforderlich',
|
||||
428 => 'Voraussetzung erforderlich',
|
||||
429 => 'Zu viele Anfragen',
|
||||
431 => 'Kopfzeilenfelder zu groß anfordern',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Wiederhole mit',
|
||||
451 => 'Aus rechtlichen Gründen nicht verfügbar',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Interner Serverfehler',
|
||||
501 => 'Nicht implementiert',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Wartungsmodus',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version nicht unterstützt',
|
||||
506 => 'Variante verhandelt auch',
|
||||
507 => 'Ungenügende Speicherung',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandbreitengrenze überschritten',
|
||||
510 => 'Nicht erweitert',
|
||||
511 => 'Netzwerkauthentifizierung erforderlich',
|
||||
520 => 'Unbekannter Fehler',
|
||||
521 => 'Webserver ist ausgefallen',
|
||||
522 => 'Verbindung abgelaufen',
|
||||
523 => 'Ursprung ist nicht erreichbar',
|
||||
524 => 'Ein Timeout ist aufgetreten',
|
||||
525 => 'SSL Handshake fehlgeschlagen',
|
||||
526 => 'Ungültiges SSL-Zertifikat',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unbekannter Fehler',
|
||||
'unknownError' => 'Unbekannter Fehler',
|
||||
100 => 'Weiter',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Verarbeitung',
|
||||
200 => 'OK',
|
||||
201 => 'Erstellt',
|
||||
202 => 'Akzeptiert',
|
||||
203 => 'Nicht maßgebende Informationen',
|
||||
204 => 'Kein Inhalt',
|
||||
205 => 'Inhalt zurücksetzen',
|
||||
206 => 'Teilinhalt',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Bereits gemeldet',
|
||||
226 => 'IM verwendet',
|
||||
300 => 'Mehrfachauswahl',
|
||||
301 => 'Permanent verschoben',
|
||||
302 => 'Gefunden',
|
||||
303 => 'Andere sehen',
|
||||
304 => 'Nicht modifiziert',
|
||||
305 => 'Proxy verwenden',
|
||||
307 => 'Temporäre Weiterleitung',
|
||||
308 => 'Permanente Weiterleitung',
|
||||
400 => 'Schlechte Anfrage',
|
||||
401 => 'Nicht autorisiert',
|
||||
402 => 'Zahlung erforderlich',
|
||||
403 => 'Verboten',
|
||||
404 => 'Seite nicht gefunden',
|
||||
405 => 'Methode nicht erlaubt',
|
||||
406 => 'Nicht annehmbar',
|
||||
407 => 'Proxy-Authentifizierung erforderlich',
|
||||
408 => 'Zeitüberschreitung anfordern',
|
||||
409 => 'Konflikt',
|
||||
410 => 'Gegangen',
|
||||
411 => 'Länge erforderlich',
|
||||
412 => 'Vorbedingung fehlgeschlagen',
|
||||
413 => 'Nutzlast zu groß',
|
||||
414 => 'URI zu lang',
|
||||
415 => 'Nicht unterstützter Medientyp',
|
||||
416 => 'Bereich nicht erfüllbar',
|
||||
417 => 'Erwartung gescheitert',
|
||||
418 => 'Ich bin eine Teekanne',
|
||||
419 => 'Sitzung ist abgelaufen',
|
||||
421 => 'Fehlgeleitete Anfrage',
|
||||
422 => 'Unverfügbare Entität',
|
||||
423 => 'Gesperrt',
|
||||
424 => 'Fehlgeschlagene Abhängigkeit',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade erforderlich',
|
||||
428 => 'Voraussetzung erforderlich',
|
||||
429 => 'Zu viele Anfragen',
|
||||
431 => 'Kopfzeilenfelder zu groß anfordern',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Wiederhole mit',
|
||||
451 => 'Aus rechtlichen Gründen nicht verfügbar',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Interner Serverfehler',
|
||||
501 => 'Nicht implementiert',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Wartungsmodus',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version nicht unterstützt',
|
||||
506 => 'Variante verhandelt auch',
|
||||
507 => 'Ungenügende Speicherung',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandbreitengrenze überschritten',
|
||||
510 => 'Nicht erweitert',
|
||||
511 => 'Netzwerkauthentifizierung erforderlich',
|
||||
520 => 'Unbekannter Fehler',
|
||||
521 => 'Webserver ist ausgefallen',
|
||||
522 => 'Verbindung abgelaufen',
|
||||
523 => 'Ursprung ist nicht erreichbar',
|
||||
524 => 'Ein Timeout ist aufgetreten',
|
||||
525 => 'SSL Handshake fehlgeschlagen',
|
||||
526 => 'Ungültiges SSL-Zertifikat',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Weiter »',
|
||||
'previous' => '« Zurück',
|
||||
);
|
||||
return [
|
||||
'next' => 'Weiter »',
|
||||
'previous' => '« Zurück',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Das Passwort wurde zurückgesetzt!',
|
||||
'sent' => 'Passworterinnerung wurde gesendet!',
|
||||
'throttled' => 'Bitte warten Sie, bevor Sie es erneut versuchen.',
|
||||
'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.',
|
||||
'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Das Passwort wurde zurückgesetzt!',
|
||||
'sent' => 'Passworterinnerung wurde gesendet!',
|
||||
'throttled' => 'Bitte warten Sie, bevor Sie es erneut versuchen.',
|
||||
'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.',
|
||||
'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'accepted' => ':Attribute muss akzeptiert werden.',
|
||||
'accepted_if' => ':Attribute muss akzeptiert werden, wenn :other :value ist.',
|
||||
'active_url' => ':Attribute ist keine gültige Internet-Adresse.',
|
||||
'after' => ':Attribute muss ein Datum nach :date sein.',
|
||||
'after_or_equal' => ':Attribute muss ein Datum nach :date oder gleich :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.',
|
||||
'attached' => ':Attribute ist bereits angehängt.',
|
||||
'attributes' =>
|
||||
[
|
||||
'address' => 'adresse',
|
||||
'age' => 'alter',
|
||||
'amount' => 'amount',
|
||||
'area' => 'gebiet',
|
||||
'available' => 'verfügbar',
|
||||
'birthday' => 'geburtstag',
|
||||
'body' => 'körper',
|
||||
'city' => 'stadt',
|
||||
'content' => 'inhalt',
|
||||
'country' => 'land',
|
||||
'created_at' => 'erstellt am',
|
||||
'creator' => 'ersteller',
|
||||
'current_password' => 'derzeitiges passwort',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'geburtsdatum',
|
||||
'day' => 'tag',
|
||||
'deleted_at' => 'gelöscht am',
|
||||
'description' => 'beschreibung',
|
||||
'district' => 'bezirk',
|
||||
'duration' => 'dauer',
|
||||
'email' => 'e-mail-adresse',
|
||||
'excerpt' => 'auszug',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'vorname',
|
||||
'gender' => 'geschlecht',
|
||||
'group' => 'gruppe',
|
||||
'hour' => 'stunde',
|
||||
'image' => 'bild',
|
||||
'last_name' => 'nachname',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'adresszeile 1',
|
||||
'line_address_2' => 'adresszeile 2',
|
||||
'message' => 'nachricht',
|
||||
'middle_name' => 'zweitname',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'handynummer',
|
||||
'month' => 'monat',
|
||||
'name' => 'name',
|
||||
'national_code' => 'länderkennung',
|
||||
'number' => 'nummer',
|
||||
'password' => 'passwort',
|
||||
'password_confirmation' => 'passwortbestätigung',
|
||||
'phone' => 'telefonnummer',
|
||||
'photo' => 'foto',
|
||||
'postal_code' => 'postleitzahl',
|
||||
'price' => 'preis',
|
||||
'province' => 'provinz',
|
||||
'recaptcha_response_field' => 'captcha-feld',
|
||||
'remember' => 'erinnern',
|
||||
'restored_at' => 'wiederhergestellt am',
|
||||
'result_text_under_image' => 'ergebnistext unter bild',
|
||||
'role' => 'rolle',
|
||||
'second' => 'sekunde',
|
||||
'sex' => 'geschlecht',
|
||||
'short_text' => 'kurzer text',
|
||||
'size' => 'größe',
|
||||
'state' => 'bundesland',
|
||||
'street' => 'straße',
|
||||
'student' => 'schüler/student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'lehrer',
|
||||
'terms' => 'bedingungen',
|
||||
'test_description' => 'test beschreibung',
|
||||
'test_locale' => 'test region',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'uhrzeit',
|
||||
'title' => 'titel',
|
||||
'updated_at' => 'aktualisiert am',
|
||||
'username' => 'benutzername',
|
||||
'year' => 'jahr',
|
||||
],
|
||||
'before' => ':Attribute muss ein Datum vor :date sein.',
|
||||
'before_or_equal' => ':Attribute muss ein Datum vor :date oder gleich :date sein.',
|
||||
'between' =>
|
||||
[
|
||||
'array' => ':Attribute muss zwischen :min & :max Elemente haben.',
|
||||
'file' => ':Attribute muss zwischen :min & :max Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute muss zwischen :min & :max liegen.',
|
||||
'string' => ':Attribute muss zwischen :min & :max Zeichen lang sein.',
|
||||
],
|
||||
'boolean' => ':Attribute muss entweder \'true\' oder \'false\' sein.',
|
||||
'confirmed' => ':Attribute stimmt nicht mit der Bestätigung überein.',
|
||||
'current_password' => 'Das Passwort ist falsch.',
|
||||
'date' => ':Attribute muss ein gültiges Datum sein.',
|
||||
'date_equals' => ':Attribute muss ein Datum gleich :date sein.',
|
||||
'date_format' => ':Attribute entspricht nicht dem gültigen Format für :format.',
|
||||
'declined' => ':Attribute muss abgelehnt werden.',
|
||||
'declined_if' => ':Attribute muss abgelehnt werden wenn :other :value ist.',
|
||||
'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.',
|
||||
'doesnt_end_with' => ':Attribute darf nicht mit einem der folgenden enden: :values.',
|
||||
'doesnt_start_with' => ':Attribute darf nicht mit einem der folgenden beginnen: :values.',
|
||||
'email' => ':Attribute muss eine gültige E-Mail-Adresse sein.',
|
||||
'ends_with' => ':Attribute muss eine der folgenden Endungen aufweisen: :values',
|
||||
'enum' => 'Der ausgewählte Wert ist ungültig.',
|
||||
'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
|
||||
'file' => ':Attribute muss eine Datei sein.',
|
||||
'filled' => ':Attribute muss ausgefüllt sein.',
|
||||
'gt' =>
|
||||
[
|
||||
'array' => ':Attribute muss mehr als :value Elemente haben.',
|
||||
'file' => ':Attribute muss größer als :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss größer als :value sein.',
|
||||
'string' => ':Attribute muss länger als :value Zeichen sein.',
|
||||
],
|
||||
'gte' =>
|
||||
[
|
||||
'array' => ':Attribute muss mindestens :value Elemente haben.',
|
||||
'file' => ':Attribute muss größer oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss größer oder gleich :value sein.',
|
||||
'string' => ':Attribute muss mindestens :value Zeichen lang sein.',
|
||||
],
|
||||
'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.',
|
||||
'lowercase' => ':Attribute muss in Kleinbuchstaben sein.',
|
||||
'lt' =>
|
||||
[
|
||||
'array' => ':Attribute muss weniger als :value Elemente haben.',
|
||||
'file' => ':Attribute muss kleiner als :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss kleiner als :value sein.',
|
||||
'string' => ':Attribute muss kürzer als :value Zeichen sein.',
|
||||
],
|
||||
'lte' =>
|
||||
[
|
||||
'array' => ':Attribute darf maximal :value Elemente haben.',
|
||||
'file' => ':Attribute muss kleiner oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss kleiner oder gleich :value sein.',
|
||||
'string' => ':Attribute darf maximal :value Zeichen lang sein.',
|
||||
],
|
||||
'mac_address' => 'Der Wert muss eine gültige MAC-Adresse sein.',
|
||||
'max' =>
|
||||
[
|
||||
'array' => ':Attribute darf maximal :max Elemente haben.',
|
||||
'file' => ':Attribute darf maximal :max Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute darf maximal :max sein.',
|
||||
'string' => ':Attribute darf maximal :max Zeichen haben.',
|
||||
],
|
||||
'max_digits' => ':Attribute darf maximal :max Ziffern lang sein.',
|
||||
'mimes' => ':Attribute muss den Dateityp :values haben.',
|
||||
'mimetypes' => ':Attribute muss den Dateityp :values haben.',
|
||||
'min' =>
|
||||
[
|
||||
'array' => ':Attribute muss mindestens :min Elemente haben.',
|
||||
'file' => ':Attribute muss mindestens :min Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute muss mindestens :min sein.',
|
||||
'string' => ':Attribute muss mindestens :min Zeichen lang sein.',
|
||||
],
|
||||
'min_digits' => ':Attribute muss mindestens :min Ziffern lang sein.',
|
||||
'multiple_of' => ':Attribute muss ein Vielfaches von :value sein.',
|
||||
'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.',
|
||||
'password' =>
|
||||
[
|
||||
'letters' => ':Attribute muss mindestens einen Buchstaben beinhalten.',
|
||||
'mixed' => ':Attribute muss mindestens einen Großbuchstaben und einen Kleinbuchstaben beinhalten.',
|
||||
'numbers' => ':Attribute muss mindestens eine Zahl beinhalten.',
|
||||
'symbols' => ':Attribute muss mindestens ein Sonderzeichen beinhalten.',
|
||||
'uncompromised' => ':Attribute wurde in einem Datenleck gefunden. Bitte wählen Sie ein anderes :attribute.',
|
||||
],
|
||||
'present' => ':Attribute muss vorhanden sein.',
|
||||
'prohibited' => ':Attribute ist unzulässig.',
|
||||
'prohibited_if' => ':Attribute ist unzulässig, wenn :other :value ist.',
|
||||
'prohibited_unless' => ':Attribute ist unzulässig, wenn :other nicht :values ist.',
|
||||
'prohibits' => ':Attribute verbietet die Angabe von :other.',
|
||||
'regex' => ':Attribute Format ist ungültig.',
|
||||
'relatable' => ':Attribute kann nicht mit dieser Ressource verbunden werden.',
|
||||
'required' => ':Attribute muss ausgefüllt werden.',
|
||||
'required_array_keys' => 'Dieses Feld muss Einträge enthalten für: :values.',
|
||||
'required_if' => ':Attribute muss ausgefüllt werden, wenn :other den Wert :value hat.',
|
||||
'accepted' => ':Attribute muss akzeptiert werden.',
|
||||
'accepted_if' => ':Attribute muss akzeptiert werden, wenn :other :value ist.',
|
||||
'active_url' => ':Attribute ist keine gültige Internet-Adresse.',
|
||||
'after' => ':Attribute muss ein Datum nach :date sein.',
|
||||
'after_or_equal' => ':Attribute muss ein Datum nach :date oder gleich :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.',
|
||||
'attached' => ':Attribute ist bereits angehängt.',
|
||||
'attributes' => [
|
||||
'address' => 'adresse',
|
||||
'age' => 'alter',
|
||||
'amount' => 'amount',
|
||||
'area' => 'gebiet',
|
||||
'available' => 'verfügbar',
|
||||
'birthday' => 'geburtstag',
|
||||
'body' => 'körper',
|
||||
'city' => 'stadt',
|
||||
'content' => 'inhalt',
|
||||
'country' => 'land',
|
||||
'created_at' => 'erstellt am',
|
||||
'creator' => 'ersteller',
|
||||
'current_password' => 'derzeitiges passwort',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'geburtsdatum',
|
||||
'day' => 'tag',
|
||||
'deleted_at' => 'gelöscht am',
|
||||
'description' => 'beschreibung',
|
||||
'district' => 'bezirk',
|
||||
'duration' => 'dauer',
|
||||
'email' => 'e-mail-adresse',
|
||||
'excerpt' => 'auszug',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'vorname',
|
||||
'gender' => 'geschlecht',
|
||||
'group' => 'gruppe',
|
||||
'hour' => 'stunde',
|
||||
'image' => 'bild',
|
||||
'last_name' => 'nachname',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'adresszeile 1',
|
||||
'line_address_2' => 'adresszeile 2',
|
||||
'message' => 'nachricht',
|
||||
'middle_name' => 'zweitname',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'handynummer',
|
||||
'month' => 'monat',
|
||||
'name' => 'name',
|
||||
'national_code' => 'länderkennung',
|
||||
'number' => 'nummer',
|
||||
'password' => 'passwort',
|
||||
'password_confirmation' => 'passwortbestätigung',
|
||||
'phone' => 'telefonnummer',
|
||||
'photo' => 'foto',
|
||||
'postal_code' => 'postleitzahl',
|
||||
'price' => 'preis',
|
||||
'province' => 'provinz',
|
||||
'recaptcha_response_field' => 'captcha-feld',
|
||||
'remember' => 'erinnern',
|
||||
'restored_at' => 'wiederhergestellt am',
|
||||
'result_text_under_image' => 'ergebnistext unter bild',
|
||||
'role' => 'rolle',
|
||||
'second' => 'sekunde',
|
||||
'sex' => 'geschlecht',
|
||||
'short_text' => 'kurzer text',
|
||||
'size' => 'größe',
|
||||
'state' => 'bundesland',
|
||||
'street' => 'straße',
|
||||
'student' => 'schüler/student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'lehrer',
|
||||
'terms' => 'bedingungen',
|
||||
'test_description' => 'test beschreibung',
|
||||
'test_locale' => 'test region',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'uhrzeit',
|
||||
'title' => 'titel',
|
||||
'updated_at' => 'aktualisiert am',
|
||||
'username' => 'benutzername',
|
||||
'year' => 'jahr',
|
||||
],
|
||||
'before' => ':Attribute muss ein Datum vor :date sein.',
|
||||
'before_or_equal' => ':Attribute muss ein Datum vor :date oder gleich :date sein.',
|
||||
'between' => [
|
||||
'array' => ':Attribute muss zwischen :min & :max Elemente haben.',
|
||||
'file' => ':Attribute muss zwischen :min & :max Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute muss zwischen :min & :max liegen.',
|
||||
'string' => ':Attribute muss zwischen :min & :max Zeichen lang sein.',
|
||||
],
|
||||
'boolean' => ':Attribute muss entweder \'true\' oder \'false\' sein.',
|
||||
'confirmed' => ':Attribute stimmt nicht mit der Bestätigung überein.',
|
||||
'current_password' => 'Das Passwort ist falsch.',
|
||||
'date' => ':Attribute muss ein gültiges Datum sein.',
|
||||
'date_equals' => ':Attribute muss ein Datum gleich :date sein.',
|
||||
'date_format' => ':Attribute entspricht nicht dem gültigen Format für :format.',
|
||||
'declined' => ':Attribute muss abgelehnt werden.',
|
||||
'declined_if' => ':Attribute muss abgelehnt werden wenn :other :value ist.',
|
||||
'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.',
|
||||
'doesnt_end_with' => ':Attribute darf nicht mit einem der folgenden enden: :values.',
|
||||
'doesnt_start_with' => ':Attribute darf nicht mit einem der folgenden beginnen: :values.',
|
||||
'email' => ':Attribute muss eine gültige E-Mail-Adresse sein.',
|
||||
'ends_with' => ':Attribute muss eine der folgenden Endungen aufweisen: :values',
|
||||
'enum' => 'Der ausgewählte Wert ist ungültig.',
|
||||
'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
|
||||
'file' => ':Attribute muss eine Datei sein.',
|
||||
'filled' => ':Attribute muss ausgefüllt sein.',
|
||||
'gt' => [
|
||||
'array' => ':Attribute muss mehr als :value Elemente haben.',
|
||||
'file' => ':Attribute muss größer als :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss größer als :value sein.',
|
||||
'string' => ':Attribute muss länger als :value Zeichen sein.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => ':Attribute muss mindestens :value Elemente haben.',
|
||||
'file' => ':Attribute muss größer oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss größer oder gleich :value sein.',
|
||||
'string' => ':Attribute muss mindestens :value Zeichen lang sein.',
|
||||
],
|
||||
'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.',
|
||||
'lowercase' => ':Attribute muss in Kleinbuchstaben sein.',
|
||||
'lt' => [
|
||||
'array' => ':Attribute muss weniger als :value Elemente haben.',
|
||||
'file' => ':Attribute muss kleiner als :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss kleiner als :value sein.',
|
||||
'string' => ':Attribute muss kürzer als :value Zeichen sein.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute darf maximal :value Elemente haben.',
|
||||
'file' => ':Attribute muss kleiner oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':Attribute muss kleiner oder gleich :value sein.',
|
||||
'string' => ':Attribute darf maximal :value Zeichen lang sein.',
|
||||
],
|
||||
'mac_address' => 'Der Wert muss eine gültige MAC-Adresse sein.',
|
||||
'max' => [
|
||||
'array' => ':Attribute darf maximal :max Elemente haben.',
|
||||
'file' => ':Attribute darf maximal :max Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute darf maximal :max sein.',
|
||||
'string' => ':Attribute darf maximal :max Zeichen haben.',
|
||||
],
|
||||
'max_digits' => ':Attribute darf maximal :max Ziffern lang sein.',
|
||||
'mimes' => ':Attribute muss den Dateityp :values haben.',
|
||||
'mimetypes' => ':Attribute muss den Dateityp :values haben.',
|
||||
'min' => [
|
||||
'array' => ':Attribute muss mindestens :min Elemente haben.',
|
||||
'file' => ':Attribute muss mindestens :min Kilobytes groß sein.',
|
||||
'numeric' => ':Attribute muss mindestens :min sein.',
|
||||
'string' => ':Attribute muss mindestens :min Zeichen lang sein.',
|
||||
],
|
||||
'min_digits' => ':Attribute muss mindestens :min Ziffern lang sein.',
|
||||
'multiple_of' => ':Attribute muss ein Vielfaches von :value sein.',
|
||||
'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.',
|
||||
'password' => [
|
||||
'letters' => ':Attribute muss mindestens einen Buchstaben beinhalten.',
|
||||
'mixed' => ':Attribute muss mindestens einen Großbuchstaben und einen Kleinbuchstaben beinhalten.',
|
||||
'numbers' => ':Attribute muss mindestens eine Zahl beinhalten.',
|
||||
'symbols' => ':Attribute muss mindestens ein Sonderzeichen beinhalten.',
|
||||
'uncompromised' => ':Attribute wurde in einem Datenleck gefunden. Bitte wählen Sie ein anderes :attribute.',
|
||||
],
|
||||
'present' => ':Attribute muss vorhanden sein.',
|
||||
'prohibited' => ':Attribute ist unzulässig.',
|
||||
'prohibited_if' => ':Attribute ist unzulässig, wenn :other :value ist.',
|
||||
'prohibited_unless' => ':Attribute ist unzulässig, wenn :other nicht :values ist.',
|
||||
'prohibits' => ':Attribute verbietet die Angabe von :other.',
|
||||
'regex' => ':Attribute Format ist ungültig.',
|
||||
'relatable' => ':Attribute kann nicht mit dieser Ressource verbunden werden.',
|
||||
'required' => ':Attribute muss ausgefüllt werden.',
|
||||
'required_array_keys' => 'Dieses Feld muss Einträge enthalten für: :values.',
|
||||
'required_if' => ':Attribute muss ausgefüllt werden, wenn :other den Wert :value hat.',
|
||||
'required_if_accepted' => ':Attribute muss ausgefüllt werden, wenn :other gewählt ist.',
|
||||
'required_unless' => ':Attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.',
|
||||
'required_with' => ':Attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
|
||||
'required_with_all' => ':Attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
|
||||
'required_without' => ':Attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.',
|
||||
'required_unless' => ':Attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.',
|
||||
'required_with' => ':Attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
|
||||
'required_with_all' => ':Attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
|
||||
'required_without' => ':Attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.',
|
||||
'required_without_all' => ':Attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.',
|
||||
'same' => ':Attribute und :other müssen übereinstimmen.',
|
||||
'size' =>
|
||||
[
|
||||
'array' => ':Attribute muss genau :size Elemente haben.',
|
||||
'file' => ':Attribute muss :size Kilobyte groß sein.',
|
||||
'numeric' => ':Attribute muss gleich :size sein.',
|
||||
'string' => ':Attribute muss :size Zeichen lang sein.',
|
||||
],
|
||||
'starts_with' => ':Attribute muss mit einem der folgenden Anfänge aufweisen: :values',
|
||||
'string' => ':Attribute muss ein String sein.',
|
||||
'timezone' => ':Attribute muss eine gültige Zeitzone sein.',
|
||||
'unique' => ':Attribute ist bereits vergeben.',
|
||||
'uploaded' => ':Attribute konnte nicht hochgeladen werden.',
|
||||
'uppercase' => ':Attribute muss in Großbuchstaben sein.',
|
||||
'url' => ':Attribute muss eine URL sein.',
|
||||
'uuid' => ':Attribute muss ein UUID sein.',
|
||||
'same' => ':Attribute und :other müssen übereinstimmen.',
|
||||
'size' => [
|
||||
'array' => ':Attribute muss genau :size Elemente haben.',
|
||||
'file' => ':Attribute muss :size Kilobyte groß sein.',
|
||||
'numeric' => ':Attribute muss gleich :size sein.',
|
||||
'string' => ':Attribute muss :size Zeichen lang sein.',
|
||||
],
|
||||
'starts_with' => ':Attribute muss mit einem der folgenden Anfänge aufweisen: :values',
|
||||
'string' => ':Attribute muss ein String sein.',
|
||||
'timezone' => ':Attribute muss eine gültige Zeitzone sein.',
|
||||
'unique' => ':Attribute ist bereits vergeben.',
|
||||
'uploaded' => ':Attribute konnte nicht hochgeladen werden.',
|
||||
'uppercase' => ':Attribute muss in Großbuchstaben sein.',
|
||||
'url' => ':Attribute muss eine URL sein.',
|
||||
'uuid' => ':Attribute muss ein UUID sein.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Next »',
|
||||
'previous' => '« Previous',
|
||||
);
|
||||
return [
|
||||
'next' => 'Next »',
|
||||
'previous' => '« Previous',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have emailed your password reset link!',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => 'We can\'t find a user with that email address.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have emailed your password reset link!',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => 'We can\'t find a user with that email address.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => '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 must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'attached' => 'This :attribute is already attached.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
),
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
),
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute must be greater than or equal to :value characters.',
|
||||
),
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid 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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than or equal to :value.',
|
||||
'string' => 'The :attribute must be less than or equal to :value characters.',
|
||||
),
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'The :attribute must not have more than :max items.',
|
||||
'file' => 'The :attribute must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute must not be greater than :max.',
|
||||
'string' => 'The :attribute must not be greater than :max characters.',
|
||||
),
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
),
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'The :attribute must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
),
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'relatable' => 'This :attribute may not be associated with this resource.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
),
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'The :attribute must be a valid URL.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => '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 must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'attached' => 'This :attribute is already attached.',
|
||||
'attributes' => [
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
],
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute must be greater than or equal to :value characters.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid 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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than or equal to :value.',
|
||||
'string' => 'The :attribute must be less than or equal to :value characters.',
|
||||
],
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute must not have more than :max items.',
|
||||
'file' => 'The :attribute must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute must not be greater than :max.',
|
||||
'string' => 'The :attribute must not be greater than :max characters.',
|
||||
],
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
],
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'The :attribute must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'relatable' => 'This :attribute may not be associated with this resource.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'The :attribute must be a valid URL.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'password' => 'La contraseña es incorrecta.',
|
||||
'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'password' => 'La contraseña es incorrecta.',
|
||||
'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Siguiente »',
|
||||
'previous' => '« Anterior',
|
||||
);
|
||||
return [
|
||||
'next' => 'Siguiente »',
|
||||
'previous' => '« Anterior',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => '¡Su contraseña ha sido restablecida!',
|
||||
'sent' => '¡Le hemos enviado por correo electrónico el enlace para restablecer su contraseña!',
|
||||
'throttled' => 'Por favor espere antes de intentar de nuevo.',
|
||||
'token' => 'El token de restablecimiento de contraseña es inválido.',
|
||||
'user' => 'No encontramos ningún usuario con ese correo electrónico.',
|
||||
);
|
||||
return [
|
||||
'reset' => '¡Su contraseña ha sido restablecida!',
|
||||
'sent' => '¡Le hemos enviado por correo electrónico el enlace para restablecer su contraseña!',
|
||||
'throttled' => 'Por favor espere antes de intentar de nuevo.',
|
||||
'token' => 'El token de restablecimiento de contraseña es inválido.',
|
||||
'user' => 'No encontramos ningún usuario con ese correo electrónico.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => ':Attribute debe ser aceptado.',
|
||||
'accepted_if' => ':Attribute debe ser aceptado cuando :other sea :value.',
|
||||
'active_url' => ':Attribute no es una URL válida.',
|
||||
'after' => ':Attribute debe ser una fecha posterior a :date.',
|
||||
'after_or_equal' => ':Attribute debe ser una fecha posterior o igual a :date.',
|
||||
'alpha' => ':Attribute sólo debe contener letras.',
|
||||
'alpha_dash' => ':Attribute sólo debe contener letras, números, guiones y guiones bajos.',
|
||||
'alpha_num' => ':Attribute sólo debe contener letras y números.',
|
||||
'array' => ':Attribute debe ser un conjunto.',
|
||||
'attached' => 'Este :attribute ya se adjuntó.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'dirección',
|
||||
'age' => 'edad',
|
||||
'amount' => 'cantidad',
|
||||
'area' => 'área',
|
||||
'available' => 'disponible',
|
||||
'birthday' => 'cumpleaños',
|
||||
'body' => 'contenido',
|
||||
'city' => 'ciudad',
|
||||
'content' => 'contenido',
|
||||
'country' => 'país',
|
||||
'created_at' => 'creado el',
|
||||
'creator' => 'creador',
|
||||
'current_password' => 'contraseña actual',
|
||||
'date' => 'fecha',
|
||||
'date_of_birth' => 'fecha de nacimiento',
|
||||
'day' => 'día',
|
||||
'deleted_at' => 'eliminado el',
|
||||
'description' => 'descripción',
|
||||
'district' => 'distrito',
|
||||
'duration' => 'duración',
|
||||
'email' => 'correo electrónico',
|
||||
'excerpt' => 'extracto',
|
||||
'filter' => 'filtro',
|
||||
'first_name' => 'nombre',
|
||||
'gender' => 'género',
|
||||
'group' => 'grupo',
|
||||
'hour' => 'hora',
|
||||
'image' => 'imagen',
|
||||
'last_name' => 'apellido',
|
||||
'lesson' => 'lección',
|
||||
'line_address_1' => 'dirección de la línea 1',
|
||||
'line_address_2' => 'dirección de la línea 2',
|
||||
'message' => 'mensaje',
|
||||
'middle_name' => 'segundo nombre',
|
||||
'minute' => 'minuto',
|
||||
'mobile' => 'móvil',
|
||||
'month' => 'mes',
|
||||
'name' => 'nombre',
|
||||
'national_code' => 'código nacional',
|
||||
'number' => 'número',
|
||||
'password' => 'contraseña',
|
||||
'password_confirmation' => 'confirmación de la contraseña',
|
||||
'phone' => 'teléfono',
|
||||
'photo' => 'foto',
|
||||
'postal_code' => 'código postal',
|
||||
'price' => 'precio',
|
||||
'province' => 'provincia',
|
||||
'recaptcha_response_field' => 'respuesta del recaptcha',
|
||||
'remember' => 'recordar',
|
||||
'restored_at' => 'restaurado el',
|
||||
'result_text_under_image' => 'texto bajo la imagen',
|
||||
'role' => 'rol',
|
||||
'second' => 'segundo',
|
||||
'sex' => 'sexo',
|
||||
'short_text' => 'texto corto',
|
||||
'size' => 'tamaño',
|
||||
'state' => 'estado',
|
||||
'street' => 'calle',
|
||||
'student' => 'estudiante',
|
||||
'subject' => 'asunto',
|
||||
'teacher' => 'profesor',
|
||||
'terms' => 'términos',
|
||||
'test_description' => 'descripción de prueba',
|
||||
'test_locale' => 'prueba local',
|
||||
'test_name' => 'nombre de prueba',
|
||||
'text' => 'texto',
|
||||
'time' => 'hora',
|
||||
'title' => 'título',
|
||||
'updated_at' => 'actualizado el',
|
||||
'username' => 'usuario',
|
||||
'year' => 'año',
|
||||
),
|
||||
'before' => ':Attribute debe ser una fecha anterior a :date.',
|
||||
'before_or_equal' => ':Attribute debe ser una fecha anterior o igual a :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => ':Attribute tiene que tener entre :min - :max elementos.',
|
||||
'file' => ':Attribute debe pesar entre :min - :max kilobytes.',
|
||||
'numeric' => ':Attribute tiene que estar entre :min - :max.',
|
||||
'string' => ':Attribute tiene que tener entre :min - :max caracteres.',
|
||||
),
|
||||
'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
|
||||
'confirmed' => 'La confirmación de :attribute no coincide.',
|
||||
'current_password' => 'La contraseña es incorrecta.',
|
||||
'date' => ':Attribute no es una fecha válida.',
|
||||
'date_equals' => ':Attribute debe ser una fecha igual a :date.',
|
||||
'date_format' => ':Attribute no corresponde al formato :format.',
|
||||
'declined' => ':Attribute debe ser rechazado.',
|
||||
'declined_if' => ':Attribute debe ser rechazado cuando :other sea :value.',
|
||||
'different' => ':Attribute y :other deben ser diferentes.',
|
||||
'digits' => ':Attribute debe tener :digits dígitos.',
|
||||
'digits_between' => ':Attribute debe tener entre :min y :max dígitos.',
|
||||
'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
|
||||
'distinct' => 'El campo :attribute contiene un valor duplicado.',
|
||||
'doesnt_end_with' => 'El campo :attribute no puede finalizar con uno de los siguientes: :values.',
|
||||
'doesnt_start_with' => 'El campo :attribute no puede comenzar con uno de los siguientes: :values.',
|
||||
'email' => ':Attribute no es un correo válido.',
|
||||
'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values',
|
||||
'enum' => 'El :attribute seleccionado es inválido.',
|
||||
'exists' => 'El :attribute seleccionado es inválido.',
|
||||
'file' => 'El campo :attribute debe ser un archivo.',
|
||||
'filled' => 'El campo :attribute es obligatorio.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'El campo :attribute debe tener más de :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener más de :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser mayor que :value.',
|
||||
'string' => 'El campo :attribute debe tener más de :value caracteres.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser como mínimo :value.',
|
||||
'string' => 'El campo :attribute debe tener como mínimo :value caracteres.',
|
||||
),
|
||||
'image' => ':Attribute debe ser una imagen.',
|
||||
'in' => ':Attribute es inválido.',
|
||||
'in_array' => 'El campo :attribute no existe en :other.',
|
||||
'integer' => ':Attribute debe ser un número entero.',
|
||||
'ip' => ':Attribute debe ser una dirección IP válida.',
|
||||
'ipv4' => ':Attribute debe ser una dirección IPv4 válida.',
|
||||
'ipv6' => ':Attribute debe ser una dirección IPv6 válida.',
|
||||
'json' => 'El campo :attribute debe ser una cadena JSON válida.',
|
||||
'lowercase' => 'El campo :attribute debe estar en minúscula.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'El campo :attribute debe tener menos de :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener menos de :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser menor que :value.',
|
||||
'string' => 'El campo :attribute debe tener menos de :value caracteres.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'El campo :attribute debe tener como máximo :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener como máximo :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser como máximo :value.',
|
||||
'string' => 'El campo :attribute debe tener como máximo :value caracteres.',
|
||||
),
|
||||
'mac_address' => 'El campo :attribute debe ser una dirección MAC válida.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => ':Attribute no debe tener más de :max elementos.',
|
||||
'file' => ':Attribute no debe ser mayor que :max kilobytes.',
|
||||
'numeric' => ':Attribute no debe ser mayor que :max.',
|
||||
'string' => ':Attribute no debe ser mayor que :max caracteres.',
|
||||
),
|
||||
'max_digits' => 'El campo :attribute no debe tener más de :max dígitos.',
|
||||
'mimes' => ':Attribute debe ser un archivo con formato: :values.',
|
||||
'mimetypes' => ':Attribute debe ser un archivo con formato: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => ':Attribute debe tener al menos :min elementos.',
|
||||
'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
|
||||
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
|
||||
'string' => ':Attribute debe contener al menos :min caracteres.',
|
||||
),
|
||||
'min_digits' => 'El campo :attribute debe tener al menos :min dígitos.',
|
||||
'multiple_of' => 'El campo :attribute debe ser múltiplo de :value',
|
||||
'not_in' => ':Attribute es inválido.',
|
||||
'not_regex' => 'El formato del campo :attribute no es válido.',
|
||||
'numeric' => ':Attribute debe ser numérico.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'La :attribute debe contener al menos una letra.',
|
||||
'mixed' => 'La :attribute debe contener al menos una letra mayúscula y una minúscula.',
|
||||
'numbers' => 'La :attribute debe contener al menos un número.',
|
||||
'symbols' => 'La :attribute debe contener al menos un símbolo.',
|
||||
'uncompromised' => 'La :attribute proporcionada se ha visto comprometida en una filtración de datos (data leak). Elija una :attribute diferente.',
|
||||
),
|
||||
'present' => 'El campo :attribute debe estar presente.',
|
||||
'prohibited' => 'El campo :attribute está prohibido.',
|
||||
'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.',
|
||||
'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.',
|
||||
'prohibits' => 'El campo :attribute prohibe que :other esté presente.',
|
||||
'regex' => 'El formato de :attribute es inválido.',
|
||||
'relatable' => 'Este :attribute no se puede asociar con este recurso',
|
||||
'required' => 'El campo :attribute es obligatorio.',
|
||||
'required_array_keys' => 'El campo :attribute debe contener entradas para: :values.',
|
||||
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
|
||||
'required_if_accepted' => 'El campo :attribute es obligatorio si :other es aceptado.',
|
||||
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
|
||||
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
||||
'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.',
|
||||
'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
|
||||
'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.',
|
||||
'same' => ':Attribute y :other deben coincidir.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => ':Attribute debe contener :size elementos.',
|
||||
'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
|
||||
'numeric' => 'El tamaño de :attribute debe ser :size.',
|
||||
'string' => ':Attribute debe contener :size caracteres.',
|
||||
),
|
||||
'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
|
||||
'string' => 'El campo :attribute debe ser una cadena de caracteres.',
|
||||
'timezone' => ':Attribute debe ser una zona horaria válida.',
|
||||
'unique' => 'El campo :attribute ya ha sido registrado.',
|
||||
'uploaded' => 'Subir :attribute ha fallado.',
|
||||
'uppercase' => 'El campo :attribute debe estar en mayúscula.',
|
||||
'url' => ':Attribute debe ser una URL válida.',
|
||||
'uuid' => 'El campo :attribute debe ser un UUID válido.',
|
||||
);
|
||||
return [
|
||||
'accepted' => ':Attribute debe ser aceptado.',
|
||||
'accepted_if' => ':Attribute debe ser aceptado cuando :other sea :value.',
|
||||
'active_url' => ':Attribute no es una URL válida.',
|
||||
'after' => ':Attribute debe ser una fecha posterior a :date.',
|
||||
'after_or_equal' => ':Attribute debe ser una fecha posterior o igual a :date.',
|
||||
'alpha' => ':Attribute sólo debe contener letras.',
|
||||
'alpha_dash' => ':Attribute sólo debe contener letras, números, guiones y guiones bajos.',
|
||||
'alpha_num' => ':Attribute sólo debe contener letras y números.',
|
||||
'array' => ':Attribute debe ser un conjunto.',
|
||||
'attached' => 'Este :attribute ya se adjuntó.',
|
||||
'attributes' => [
|
||||
'address' => 'dirección',
|
||||
'age' => 'edad',
|
||||
'amount' => 'cantidad',
|
||||
'area' => 'área',
|
||||
'available' => 'disponible',
|
||||
'birthday' => 'cumpleaños',
|
||||
'body' => 'contenido',
|
||||
'city' => 'ciudad',
|
||||
'content' => 'contenido',
|
||||
'country' => 'país',
|
||||
'created_at' => 'creado el',
|
||||
'creator' => 'creador',
|
||||
'current_password' => 'contraseña actual',
|
||||
'date' => 'fecha',
|
||||
'date_of_birth' => 'fecha de nacimiento',
|
||||
'day' => 'día',
|
||||
'deleted_at' => 'eliminado el',
|
||||
'description' => 'descripción',
|
||||
'district' => 'distrito',
|
||||
'duration' => 'duración',
|
||||
'email' => 'correo electrónico',
|
||||
'excerpt' => 'extracto',
|
||||
'filter' => 'filtro',
|
||||
'first_name' => 'nombre',
|
||||
'gender' => 'género',
|
||||
'group' => 'grupo',
|
||||
'hour' => 'hora',
|
||||
'image' => 'imagen',
|
||||
'last_name' => 'apellido',
|
||||
'lesson' => 'lección',
|
||||
'line_address_1' => 'dirección de la línea 1',
|
||||
'line_address_2' => 'dirección de la línea 2',
|
||||
'message' => 'mensaje',
|
||||
'middle_name' => 'segundo nombre',
|
||||
'minute' => 'minuto',
|
||||
'mobile' => 'móvil',
|
||||
'month' => 'mes',
|
||||
'name' => 'nombre',
|
||||
'national_code' => 'código nacional',
|
||||
'number' => 'número',
|
||||
'password' => 'contraseña',
|
||||
'password_confirmation' => 'confirmación de la contraseña',
|
||||
'phone' => 'teléfono',
|
||||
'photo' => 'foto',
|
||||
'postal_code' => 'código postal',
|
||||
'price' => 'precio',
|
||||
'province' => 'provincia',
|
||||
'recaptcha_response_field' => 'respuesta del recaptcha',
|
||||
'remember' => 'recordar',
|
||||
'restored_at' => 'restaurado el',
|
||||
'result_text_under_image' => 'texto bajo la imagen',
|
||||
'role' => 'rol',
|
||||
'second' => 'segundo',
|
||||
'sex' => 'sexo',
|
||||
'short_text' => 'texto corto',
|
||||
'size' => 'tamaño',
|
||||
'state' => 'estado',
|
||||
'street' => 'calle',
|
||||
'student' => 'estudiante',
|
||||
'subject' => 'asunto',
|
||||
'teacher' => 'profesor',
|
||||
'terms' => 'términos',
|
||||
'test_description' => 'descripción de prueba',
|
||||
'test_locale' => 'prueba local',
|
||||
'test_name' => 'nombre de prueba',
|
||||
'text' => 'texto',
|
||||
'time' => 'hora',
|
||||
'title' => 'título',
|
||||
'updated_at' => 'actualizado el',
|
||||
'username' => 'usuario',
|
||||
'year' => 'año',
|
||||
],
|
||||
'before' => ':Attribute debe ser una fecha anterior a :date.',
|
||||
'before_or_equal' => ':Attribute debe ser una fecha anterior o igual a :date.',
|
||||
'between' => [
|
||||
'array' => ':Attribute tiene que tener entre :min - :max elementos.',
|
||||
'file' => ':Attribute debe pesar entre :min - :max kilobytes.',
|
||||
'numeric' => ':Attribute tiene que estar entre :min - :max.',
|
||||
'string' => ':Attribute tiene que tener entre :min - :max caracteres.',
|
||||
],
|
||||
'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
|
||||
'confirmed' => 'La confirmación de :attribute no coincide.',
|
||||
'current_password' => 'La contraseña es incorrecta.',
|
||||
'date' => ':Attribute no es una fecha válida.',
|
||||
'date_equals' => ':Attribute debe ser una fecha igual a :date.',
|
||||
'date_format' => ':Attribute no corresponde al formato :format.',
|
||||
'declined' => ':Attribute debe ser rechazado.',
|
||||
'declined_if' => ':Attribute debe ser rechazado cuando :other sea :value.',
|
||||
'different' => ':Attribute y :other deben ser diferentes.',
|
||||
'digits' => ':Attribute debe tener :digits dígitos.',
|
||||
'digits_between' => ':Attribute debe tener entre :min y :max dígitos.',
|
||||
'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
|
||||
'distinct' => 'El campo :attribute contiene un valor duplicado.',
|
||||
'doesnt_end_with' => 'El campo :attribute no puede finalizar con uno de los siguientes: :values.',
|
||||
'doesnt_start_with' => 'El campo :attribute no puede comenzar con uno de los siguientes: :values.',
|
||||
'email' => ':Attribute no es un correo válido.',
|
||||
'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values',
|
||||
'enum' => 'El :attribute seleccionado es inválido.',
|
||||
'exists' => 'El :attribute seleccionado es inválido.',
|
||||
'file' => 'El campo :attribute debe ser un archivo.',
|
||||
'filled' => 'El campo :attribute es obligatorio.',
|
||||
'gt' => [
|
||||
'array' => 'El campo :attribute debe tener más de :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener más de :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser mayor que :value.',
|
||||
'string' => 'El campo :attribute debe tener más de :value caracteres.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser como mínimo :value.',
|
||||
'string' => 'El campo :attribute debe tener como mínimo :value caracteres.',
|
||||
],
|
||||
'image' => ':Attribute debe ser una imagen.',
|
||||
'in' => ':Attribute es inválido.',
|
||||
'in_array' => 'El campo :attribute no existe en :other.',
|
||||
'integer' => ':Attribute debe ser un número entero.',
|
||||
'ip' => ':Attribute debe ser una dirección IP válida.',
|
||||
'ipv4' => ':Attribute debe ser una dirección IPv4 válida.',
|
||||
'ipv6' => ':Attribute debe ser una dirección IPv6 válida.',
|
||||
'json' => 'El campo :attribute debe ser una cadena JSON válida.',
|
||||
'lowercase' => 'El campo :attribute debe estar en minúscula.',
|
||||
'lt' => [
|
||||
'array' => 'El campo :attribute debe tener menos de :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener menos de :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser menor que :value.',
|
||||
'string' => 'El campo :attribute debe tener menos de :value caracteres.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'El campo :attribute debe tener como máximo :value elementos.',
|
||||
'file' => 'El campo :attribute debe tener como máximo :value kilobytes.',
|
||||
'numeric' => 'El campo :attribute debe ser como máximo :value.',
|
||||
'string' => 'El campo :attribute debe tener como máximo :value caracteres.',
|
||||
],
|
||||
'mac_address' => 'El campo :attribute debe ser una dirección MAC válida.',
|
||||
'max' => [
|
||||
'array' => ':Attribute no debe tener más de :max elementos.',
|
||||
'file' => ':Attribute no debe ser mayor que :max kilobytes.',
|
||||
'numeric' => ':Attribute no debe ser mayor que :max.',
|
||||
'string' => ':Attribute no debe ser mayor que :max caracteres.',
|
||||
],
|
||||
'max_digits' => 'El campo :attribute no debe tener más de :max dígitos.',
|
||||
'mimes' => ':Attribute debe ser un archivo con formato: :values.',
|
||||
'mimetypes' => ':Attribute debe ser un archivo con formato: :values.',
|
||||
'min' => [
|
||||
'array' => ':Attribute debe tener al menos :min elementos.',
|
||||
'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
|
||||
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
|
||||
'string' => ':Attribute debe contener al menos :min caracteres.',
|
||||
],
|
||||
'min_digits' => 'El campo :attribute debe tener al menos :min dígitos.',
|
||||
'multiple_of' => 'El campo :attribute debe ser múltiplo de :value',
|
||||
'not_in' => ':Attribute es inválido.',
|
||||
'not_regex' => 'El formato del campo :attribute no es válido.',
|
||||
'numeric' => ':Attribute debe ser numérico.',
|
||||
'password' => [
|
||||
'letters' => 'La :attribute debe contener al menos una letra.',
|
||||
'mixed' => 'La :attribute debe contener al menos una letra mayúscula y una minúscula.',
|
||||
'numbers' => 'La :attribute debe contener al menos un número.',
|
||||
'symbols' => 'La :attribute debe contener al menos un símbolo.',
|
||||
'uncompromised' => 'La :attribute proporcionada se ha visto comprometida en una filtración de datos (data leak). Elija una :attribute diferente.',
|
||||
],
|
||||
'present' => 'El campo :attribute debe estar presente.',
|
||||
'prohibited' => 'El campo :attribute está prohibido.',
|
||||
'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.',
|
||||
'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.',
|
||||
'prohibits' => 'El campo :attribute prohibe que :other esté presente.',
|
||||
'regex' => 'El formato de :attribute es inválido.',
|
||||
'relatable' => 'Este :attribute no se puede asociar con este recurso',
|
||||
'required' => 'El campo :attribute es obligatorio.',
|
||||
'required_array_keys' => 'El campo :attribute debe contener entradas para: :values.',
|
||||
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
|
||||
'required_if_accepted' => 'El campo :attribute es obligatorio si :other es aceptado.',
|
||||
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
|
||||
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
||||
'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.',
|
||||
'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
|
||||
'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.',
|
||||
'same' => ':Attribute y :other deben coincidir.',
|
||||
'size' => [
|
||||
'array' => ':Attribute debe contener :size elementos.',
|
||||
'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
|
||||
'numeric' => 'El tamaño de :attribute debe ser :size.',
|
||||
'string' => ':Attribute debe contener :size caracteres.',
|
||||
],
|
||||
'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
|
||||
'string' => 'El campo :attribute debe ser una cadena de caracteres.',
|
||||
'timezone' => ':Attribute debe ser una zona horaria válida.',
|
||||
'unique' => 'El campo :attribute ya ha sido registrado.',
|
||||
'uploaded' => 'Subir :attribute ha fallado.',
|
||||
'uppercase' => 'El campo :attribute debe estar en mayúscula.',
|
||||
'url' => ':Attribute debe ser una URL válida.',
|
||||
'uuid' => 'El campo :attribute debe ser un UUID válido.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.',
|
||||
'password' => 'Le mot de passe est incorrect',
|
||||
'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.',
|
||||
'password' => 'Le mot de passe est incorrect',
|
||||
'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Erreur inconnue',
|
||||
'unknownError' => 'Erreur inconnue',
|
||||
100 => 'Continuer',
|
||||
101 => 'Protocoles de commutation',
|
||||
102 => 'En traitement',
|
||||
200 => 'D\'accord',
|
||||
201 => 'Créé',
|
||||
202 => 'Accepté',
|
||||
203 => 'Informations non autorisées',
|
||||
204 => 'Pas content',
|
||||
205 => 'Réinitialiser le contenu',
|
||||
206 => 'Contenu partiel',
|
||||
207 => 'Multi-statut',
|
||||
208 => 'Déjà rapporté',
|
||||
226 => 'J\'ai l\'habitude',
|
||||
300 => 'Choix multiples',
|
||||
301 => 'Déplacé de façon permanente',
|
||||
302 => 'A trouvé',
|
||||
303 => 'Voir autre',
|
||||
304 => 'Non modifié',
|
||||
305 => 'Utiliser un proxy',
|
||||
307 => 'Redirection temporaire',
|
||||
308 => 'Redirection permanente',
|
||||
400 => 'Mauvaise Demande',
|
||||
401 => 'Non autorisé',
|
||||
402 => 'Paiement Requis',
|
||||
403 => 'Interdit',
|
||||
404 => 'Page non trouvée',
|
||||
405 => 'Méthode Non Autorisée',
|
||||
406 => 'Pas acceptable',
|
||||
407 => 'Authentification proxy requise',
|
||||
408 => 'Délai d\'expiration de la demande',
|
||||
409 => 'Conflit',
|
||||
410 => 'Disparu',
|
||||
411 => 'Longueur requise',
|
||||
412 => 'La précondition a échoué',
|
||||
413 => 'Charge utile trop grande',
|
||||
414 => 'URI trop long',
|
||||
415 => 'Type de support non supporté',
|
||||
416 => 'Plage non satisfaisante',
|
||||
417 => 'Échec de l\'attente',
|
||||
418 => 'Je suis une théière',
|
||||
419 => 'La session a expiré',
|
||||
421 => 'Demande mal dirigée',
|
||||
422 => 'Entité non traitable',
|
||||
423 => 'Fermé à clef',
|
||||
424 => 'Dépendance échouée',
|
||||
425 => 'Too Early',
|
||||
426 => 'Mise à niveau requise',
|
||||
428 => 'Condition préalable requise',
|
||||
429 => 'Trop de demandes',
|
||||
431 => 'Demander des champs d\'en-tête trop grands',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Réessayer avec',
|
||||
451 => 'Indisponible pour des raisons légales',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Erreur Interne du Serveur',
|
||||
501 => 'Pas mis en œuvre',
|
||||
502 => 'Mauvaise passerelle',
|
||||
503 => 'Mode de Maintenance',
|
||||
504 => 'Délai d\'attente de la passerelle',
|
||||
505 => 'Version HTTP non prise en charge',
|
||||
506 => 'La variante négocie également',
|
||||
507 => 'Espace insuffisant',
|
||||
508 => 'Boucle détectée',
|
||||
509 => 'Limite de bande passante dépassée',
|
||||
510 => 'Non prolongé',
|
||||
511 => 'Authentification réseau requise',
|
||||
520 => 'Erreur inconnue',
|
||||
521 => 'Le serveur Web est en panne',
|
||||
522 => 'La connexion a expiré',
|
||||
523 => 'L\'origine est inaccessible',
|
||||
524 => 'Un dépassement de délai s\'est produit',
|
||||
525 => 'Échec de la prise de contact SSL',
|
||||
526 => 'Certificat SSL invalide',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Erreur inconnue',
|
||||
'unknownError' => 'Erreur inconnue',
|
||||
100 => 'Continuer',
|
||||
101 => 'Protocoles de commutation',
|
||||
102 => 'En traitement',
|
||||
200 => 'D\'accord',
|
||||
201 => 'Créé',
|
||||
202 => 'Accepté',
|
||||
203 => 'Informations non autorisées',
|
||||
204 => 'Pas content',
|
||||
205 => 'Réinitialiser le contenu',
|
||||
206 => 'Contenu partiel',
|
||||
207 => 'Multi-statut',
|
||||
208 => 'Déjà rapporté',
|
||||
226 => 'J\'ai l\'habitude',
|
||||
300 => 'Choix multiples',
|
||||
301 => 'Déplacé de façon permanente',
|
||||
302 => 'A trouvé',
|
||||
303 => 'Voir autre',
|
||||
304 => 'Non modifié',
|
||||
305 => 'Utiliser un proxy',
|
||||
307 => 'Redirection temporaire',
|
||||
308 => 'Redirection permanente',
|
||||
400 => 'Mauvaise Demande',
|
||||
401 => 'Non autorisé',
|
||||
402 => 'Paiement Requis',
|
||||
403 => 'Interdit',
|
||||
404 => 'Page non trouvée',
|
||||
405 => 'Méthode Non Autorisée',
|
||||
406 => 'Pas acceptable',
|
||||
407 => 'Authentification proxy requise',
|
||||
408 => 'Délai d\'expiration de la demande',
|
||||
409 => 'Conflit',
|
||||
410 => 'Disparu',
|
||||
411 => 'Longueur requise',
|
||||
412 => 'La précondition a échoué',
|
||||
413 => 'Charge utile trop grande',
|
||||
414 => 'URI trop long',
|
||||
415 => 'Type de support non supporté',
|
||||
416 => 'Plage non satisfaisante',
|
||||
417 => 'Échec de l\'attente',
|
||||
418 => 'Je suis une théière',
|
||||
419 => 'La session a expiré',
|
||||
421 => 'Demande mal dirigée',
|
||||
422 => 'Entité non traitable',
|
||||
423 => 'Fermé à clef',
|
||||
424 => 'Dépendance échouée',
|
||||
425 => 'Too Early',
|
||||
426 => 'Mise à niveau requise',
|
||||
428 => 'Condition préalable requise',
|
||||
429 => 'Trop de demandes',
|
||||
431 => 'Demander des champs d\'en-tête trop grands',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Réessayer avec',
|
||||
451 => 'Indisponible pour des raisons légales',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Erreur Interne du Serveur',
|
||||
501 => 'Pas mis en œuvre',
|
||||
502 => 'Mauvaise passerelle',
|
||||
503 => 'Mode de Maintenance',
|
||||
504 => 'Délai d\'attente de la passerelle',
|
||||
505 => 'Version HTTP non prise en charge',
|
||||
506 => 'La variante négocie également',
|
||||
507 => 'Espace insuffisant',
|
||||
508 => 'Boucle détectée',
|
||||
509 => 'Limite de bande passante dépassée',
|
||||
510 => 'Non prolongé',
|
||||
511 => 'Authentification réseau requise',
|
||||
520 => 'Erreur inconnue',
|
||||
521 => 'Le serveur Web est en panne',
|
||||
522 => 'La connexion a expiré',
|
||||
523 => 'L\'origine est inaccessible',
|
||||
524 => 'Un dépassement de délai s\'est produit',
|
||||
525 => 'Échec de la prise de contact SSL',
|
||||
526 => 'Certificat SSL invalide',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Suivant »',
|
||||
'previous' => '« Précédent',
|
||||
);
|
||||
return [
|
||||
'next' => 'Suivant »',
|
||||
'previous' => '« Précédent',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Votre mot de passe a été réinitialisé !',
|
||||
'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !',
|
||||
'throttled' => 'Veuillez patienter avant de réessayer.',
|
||||
'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.',
|
||||
'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Votre mot de passe a été réinitialisé !',
|
||||
'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !',
|
||||
'throttled' => 'Veuillez patienter avant de réessayer.',
|
||||
'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.',
|
||||
'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'Le champ :attribute doit être accepté.',
|
||||
'accepted_if' => 'Le champ :attribute doit être accepté quand :other a la valeur :value.',
|
||||
'active_url' => 'Le champ :attribute n\'est pas une URL valide.',
|
||||
'after' => 'Le champ :attribute doit être une date postérieure au :date.',
|
||||
'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.',
|
||||
'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.',
|
||||
'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.',
|
||||
'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.',
|
||||
'array' => 'Le champ :attribute doit être un tableau.',
|
||||
'attached' => ':Attribute est déjà attaché(e).',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'adresse',
|
||||
'age' => 'âge',
|
||||
'amount' => 'montant',
|
||||
'area' => 'zone',
|
||||
'available' => 'disponible',
|
||||
'birthday' => 'anniversaire',
|
||||
'body' => 'corps',
|
||||
'city' => 'ville',
|
||||
'content' => 'contenu',
|
||||
'country' => 'pays',
|
||||
'created_at' => 'créé à',
|
||||
'creator' => 'créateur',
|
||||
'current_password' => 'mot de passe actuel',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date de naissance',
|
||||
'day' => 'jour',
|
||||
'deleted_at' => 'supprimé à',
|
||||
'description' => 'description',
|
||||
'district' => 'quartier',
|
||||
'duration' => 'durée',
|
||||
'email' => 'adresse e-mail',
|
||||
'excerpt' => 'extrait',
|
||||
'filter' => 'filtre',
|
||||
'first_name' => 'prénom',
|
||||
'gender' => 'genre',
|
||||
'group' => 'groupe',
|
||||
'hour' => 'heure',
|
||||
'image' => 'image',
|
||||
'last_name' => 'nom',
|
||||
'lesson' => 'leçon',
|
||||
'line_address_1' => 'ligne d\'adresse 1',
|
||||
'line_address_2' => 'ligne d\'adresse 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'deuxième prénom',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'portable',
|
||||
'month' => 'mois',
|
||||
'name' => 'nom',
|
||||
'national_code' => 'code national',
|
||||
'number' => 'numéro',
|
||||
'password' => 'mot de passe',
|
||||
'password_confirmation' => 'confirmation du mot de passe',
|
||||
'phone' => 'téléphone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'code postal',
|
||||
'price' => 'prix',
|
||||
'province' => 'région',
|
||||
'recaptcha_response_field' => 'champ de réponse recaptcha',
|
||||
'remember' => 'se souvenir',
|
||||
'restored_at' => 'restauré à',
|
||||
'result_text_under_image' => 'texte de résultat sous l\'image',
|
||||
'role' => 'rôle',
|
||||
'second' => 'seconde',
|
||||
'sex' => 'sexe',
|
||||
'short_text' => 'texte court',
|
||||
'size' => 'taille',
|
||||
'state' => 'état',
|
||||
'street' => 'rue',
|
||||
'student' => 'étudiant',
|
||||
'subject' => 'sujet',
|
||||
'teacher' => 'professeur',
|
||||
'terms' => 'conditions',
|
||||
'test_description' => 'description test',
|
||||
'test_locale' => 'localisation test',
|
||||
'test_name' => 'nom test',
|
||||
'text' => 'texte',
|
||||
'time' => 'heure',
|
||||
'title' => 'titre',
|
||||
'updated_at' => 'mis à jour à',
|
||||
'username' => 'nom d\'utilisateur',
|
||||
'year' => 'année',
|
||||
),
|
||||
'before' => 'Le champ :attribute doit être une date antérieure au :date.',
|
||||
'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
|
||||
'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
|
||||
),
|
||||
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
||||
'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
|
||||
'current_password' => 'Le mot de passe est incorrect.',
|
||||
'date' => 'Le champ :attribute n\'est pas une date valide.',
|
||||
'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
|
||||
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
||||
'declined' => 'Le champ :attribute doit être décliné.',
|
||||
'declined_if' => 'Le champ :attribute doit être décliné quand :other a la valeur :value.',
|
||||
'different' => 'Les champs :attribute et :other doivent être différents.',
|
||||
'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
|
||||
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
|
||||
'dimensions' => 'La taille de l\'image :attribute n\'est pas conforme.',
|
||||
'distinct' => 'Le champ :attribute a une valeur en double.',
|
||||
'doesnt_end_with' => 'Le champ :attribute ne doit pas finir avec une des valeurs suivantes : :values.',
|
||||
'doesnt_start_with' => 'Le champ :attribute ne doit pas commencer avec une des valeurs suivantes : :values.',
|
||||
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
|
||||
'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values',
|
||||
'enum' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'exists' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'file' => 'Le champ :attribute doit être un fichier.',
|
||||
'filled' => 'Le champ :attribute doit avoir une valeur.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir plus de :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir plus de :value caractères.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir au moins :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir au moins :value caractères.',
|
||||
),
|
||||
'image' => 'Le champ :attribute doit être une image.',
|
||||
'in' => 'Le champ :attribute est invalide.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'integer' => 'Le champ :attribute doit être un entier.',
|
||||
'ip' => 'Le champ :attribute doit être une adresse IP valide.',
|
||||
'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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir moins de :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être inférieure à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir moins de :value caractères.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir au plus :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir au plus :value caractères.',
|
||||
),
|
||||
'mac_address' => 'Le champ :attribute doit être une adresse MAC valide.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute ne peut pas contenir plus que :max éléments.',
|
||||
'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute ne peut pas être supérieure à :max.',
|
||||
'string' => 'Le texte de :attribute ne peut pas contenir plus de :max caractères.',
|
||||
),
|
||||
'max_digits' => 'Le champ :attribute ne doit pas avoir plus de :max chiffres.',
|
||||
'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :min kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.',
|
||||
'string' => 'Le texte de :attribute doit contenir au moins :min caractères.',
|
||||
),
|
||||
'min_digits' => 'Le champ :attribute doit avoir au moins :min chiffres.',
|
||||
'multiple_of' => 'La valeur de :attribute doit être un multiple de :value',
|
||||
'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.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'Le champ :attribute doit contenir au moins une lettre.',
|
||||
'mixed' => 'Le champ :attribute doit contenir au moins une majuscule et une minuscule.',
|
||||
'numbers' => 'Le champ :attribute doit contenir au moins un chiffre.',
|
||||
'symbols' => 'Le champ :attribute doit contenir au moins un symbole.',
|
||||
'uncompromised' => 'La valeur du champ :attribute est apparue dans une fuite de données. Veuillez choisir une valeur différente.',
|
||||
),
|
||||
'present' => 'Le champ :attribute doit être présent.',
|
||||
'prohibited' => 'Le champ :attribute est interdit.',
|
||||
'prohibited_if' => 'Le champ :attribute est interdit quand :other a la valeur :value.',
|
||||
'prohibited_unless' => 'Le champ :attribute est interdit à moins que :other est l\'une des valeurs :values.',
|
||||
'prohibits' => 'Le champ :attribute interdit :other d\'être présent.',
|
||||
'regex' => 'Le format du champ :attribute est invalide.',
|
||||
'relatable' => ':Attribute n\'est sans doute pas associé(e) avec cette donnée.',
|
||||
'required' => 'Le champ :attribute est obligatoire.',
|
||||
'required_array_keys' => 'Le champ :attribute doit contenir des entrées pour : :values.',
|
||||
'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
|
||||
'required_if_accepted' => 'Le champ :attribute est obligatoire quand le champ :other a été accepté.',
|
||||
'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.',
|
||||
'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.',
|
||||
'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.',
|
||||
'required_without' => 'Le champ :attribute est obligatoire quand :values n\'est pas présent.',
|
||||
'required_without_all' => 'Le champ :attribute est requis quand aucun de :values n\'est présent.',
|
||||
'same' => 'Les champs :attribute et :other doivent être identiques.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'Le tableau :attribute doit contenir :size éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être :size.',
|
||||
'string' => 'Le texte de :attribute doit contenir :size caractères.',
|
||||
),
|
||||
'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values',
|
||||
'string' => 'Le champ :attribute doit être une chaîne de caractères.',
|
||||
'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
|
||||
'unique' => 'La valeur du champ :attribute est déjà utilisée.',
|
||||
'uploaded' => 'Le fichier du champ :attribute n\'a pu être téléversé.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Le format de l\'URL de :attribute n\'est pas valide.',
|
||||
'uuid' => 'Le champ :attribute doit être un UUID valide',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'Le champ :attribute doit être accepté.',
|
||||
'accepted_if' => 'Le champ :attribute doit être accepté quand :other a la valeur :value.',
|
||||
'active_url' => 'Le champ :attribute n\'est pas une URL valide.',
|
||||
'after' => 'Le champ :attribute doit être une date postérieure au :date.',
|
||||
'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.',
|
||||
'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.',
|
||||
'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.',
|
||||
'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.',
|
||||
'array' => 'Le champ :attribute doit être un tableau.',
|
||||
'attached' => ':Attribute est déjà attaché(e).',
|
||||
'attributes' => [
|
||||
'address' => 'adresse',
|
||||
'age' => 'âge',
|
||||
'amount' => 'montant',
|
||||
'area' => 'zone',
|
||||
'available' => 'disponible',
|
||||
'birthday' => 'anniversaire',
|
||||
'body' => 'corps',
|
||||
'city' => 'ville',
|
||||
'content' => 'contenu',
|
||||
'country' => 'pays',
|
||||
'created_at' => 'créé à',
|
||||
'creator' => 'créateur',
|
||||
'current_password' => 'mot de passe actuel',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date de naissance',
|
||||
'day' => 'jour',
|
||||
'deleted_at' => 'supprimé à',
|
||||
'description' => 'description',
|
||||
'district' => 'quartier',
|
||||
'duration' => 'durée',
|
||||
'email' => 'adresse e-mail',
|
||||
'excerpt' => 'extrait',
|
||||
'filter' => 'filtre',
|
||||
'first_name' => 'prénom',
|
||||
'gender' => 'genre',
|
||||
'group' => 'groupe',
|
||||
'hour' => 'heure',
|
||||
'image' => 'image',
|
||||
'last_name' => 'nom',
|
||||
'lesson' => 'leçon',
|
||||
'line_address_1' => 'ligne d\'adresse 1',
|
||||
'line_address_2' => 'ligne d\'adresse 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'deuxième prénom',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'portable',
|
||||
'month' => 'mois',
|
||||
'name' => 'nom',
|
||||
'national_code' => 'code national',
|
||||
'number' => 'numéro',
|
||||
'password' => 'mot de passe',
|
||||
'password_confirmation' => 'confirmation du mot de passe',
|
||||
'phone' => 'téléphone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'code postal',
|
||||
'price' => 'prix',
|
||||
'province' => 'région',
|
||||
'recaptcha_response_field' => 'champ de réponse recaptcha',
|
||||
'remember' => 'se souvenir',
|
||||
'restored_at' => 'restauré à',
|
||||
'result_text_under_image' => 'texte de résultat sous l\'image',
|
||||
'role' => 'rôle',
|
||||
'second' => 'seconde',
|
||||
'sex' => 'sexe',
|
||||
'short_text' => 'texte court',
|
||||
'size' => 'taille',
|
||||
'state' => 'état',
|
||||
'street' => 'rue',
|
||||
'student' => 'étudiant',
|
||||
'subject' => 'sujet',
|
||||
'teacher' => 'professeur',
|
||||
'terms' => 'conditions',
|
||||
'test_description' => 'description test',
|
||||
'test_locale' => 'localisation test',
|
||||
'test_name' => 'nom test',
|
||||
'text' => 'texte',
|
||||
'time' => 'heure',
|
||||
'title' => 'titre',
|
||||
'updated_at' => 'mis à jour à',
|
||||
'username' => 'nom d\'utilisateur',
|
||||
'year' => 'année',
|
||||
],
|
||||
'before' => 'Le champ :attribute doit être une date antérieure au :date.',
|
||||
'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.',
|
||||
'between' => [
|
||||
'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
|
||||
'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
|
||||
],
|
||||
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
||||
'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
|
||||
'current_password' => 'Le mot de passe est incorrect.',
|
||||
'date' => 'Le champ :attribute n\'est pas une date valide.',
|
||||
'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
|
||||
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
||||
'declined' => 'Le champ :attribute doit être décliné.',
|
||||
'declined_if' => 'Le champ :attribute doit être décliné quand :other a la valeur :value.',
|
||||
'different' => 'Les champs :attribute et :other doivent être différents.',
|
||||
'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
|
||||
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
|
||||
'dimensions' => 'La taille de l\'image :attribute n\'est pas conforme.',
|
||||
'distinct' => 'Le champ :attribute a une valeur en double.',
|
||||
'doesnt_end_with' => 'Le champ :attribute ne doit pas finir avec une des valeurs suivantes : :values.',
|
||||
'doesnt_start_with' => 'Le champ :attribute ne doit pas commencer avec une des valeurs suivantes : :values.',
|
||||
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
|
||||
'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values',
|
||||
'enum' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'exists' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'file' => 'Le champ :attribute doit être un fichier.',
|
||||
'filled' => 'Le champ :attribute doit avoir une valeur.',
|
||||
'gt' => [
|
||||
'array' => 'Le tableau :attribute doit contenir plus de :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir plus de :value caractères.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Le tableau :attribute doit contenir au moins :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir au moins :value caractères.',
|
||||
],
|
||||
'image' => 'Le champ :attribute doit être une image.',
|
||||
'in' => 'Le champ :attribute est invalide.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'integer' => 'Le champ :attribute doit être un entier.',
|
||||
'ip' => 'Le champ :attribute doit être une adresse IP valide.',
|
||||
'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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'Le tableau :attribute doit contenir moins de :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être inférieure à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir moins de :value caractères.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Le tableau :attribute doit contenir au plus :value éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.',
|
||||
'string' => 'Le texte :attribute doit contenir au plus :value caractères.',
|
||||
],
|
||||
'mac_address' => 'Le champ :attribute doit être une adresse MAC valide.',
|
||||
'max' => [
|
||||
'array' => 'Le tableau :attribute ne peut pas contenir plus que :max éléments.',
|
||||
'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute ne peut pas être supérieure à :max.',
|
||||
'string' => 'Le texte de :attribute ne peut pas contenir plus de :max caractères.',
|
||||
],
|
||||
'max_digits' => 'Le champ :attribute ne doit pas avoir plus de :max chiffres.',
|
||||
'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'min' => [
|
||||
'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :min kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.',
|
||||
'string' => 'Le texte de :attribute doit contenir au moins :min caractères.',
|
||||
],
|
||||
'min_digits' => 'Le champ :attribute doit avoir au moins :min chiffres.',
|
||||
'multiple_of' => 'La valeur de :attribute doit être un multiple de :value',
|
||||
'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.',
|
||||
'password' => [
|
||||
'letters' => 'Le champ :attribute doit contenir au moins une lettre.',
|
||||
'mixed' => 'Le champ :attribute doit contenir au moins une majuscule et une minuscule.',
|
||||
'numbers' => 'Le champ :attribute doit contenir au moins un chiffre.',
|
||||
'symbols' => 'Le champ :attribute doit contenir au moins un symbole.',
|
||||
'uncompromised' => 'La valeur du champ :attribute est apparue dans une fuite de données. Veuillez choisir une valeur différente.',
|
||||
],
|
||||
'present' => 'Le champ :attribute doit être présent.',
|
||||
'prohibited' => 'Le champ :attribute est interdit.',
|
||||
'prohibited_if' => 'Le champ :attribute est interdit quand :other a la valeur :value.',
|
||||
'prohibited_unless' => 'Le champ :attribute est interdit à moins que :other est l\'une des valeurs :values.',
|
||||
'prohibits' => 'Le champ :attribute interdit :other d\'être présent.',
|
||||
'regex' => 'Le format du champ :attribute est invalide.',
|
||||
'relatable' => ':Attribute n\'est sans doute pas associé(e) avec cette donnée.',
|
||||
'required' => 'Le champ :attribute est obligatoire.',
|
||||
'required_array_keys' => 'Le champ :attribute doit contenir des entrées pour : :values.',
|
||||
'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
|
||||
'required_if_accepted' => 'Le champ :attribute est obligatoire quand le champ :other a été accepté.',
|
||||
'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.',
|
||||
'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.',
|
||||
'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.',
|
||||
'required_without' => 'Le champ :attribute est obligatoire quand :values n\'est pas présent.',
|
||||
'required_without_all' => 'Le champ :attribute est requis quand aucun de :values n\'est présent.',
|
||||
'same' => 'Les champs :attribute et :other doivent être identiques.',
|
||||
'size' => [
|
||||
'array' => 'Le tableau :attribute doit contenir :size éléments.',
|
||||
'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.',
|
||||
'numeric' => 'La valeur de :attribute doit être :size.',
|
||||
'string' => 'Le texte de :attribute doit contenir :size caractères.',
|
||||
],
|
||||
'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values',
|
||||
'string' => 'Le champ :attribute doit être une chaîne de caractères.',
|
||||
'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
|
||||
'unique' => 'La valeur du champ :attribute est déjà utilisée.',
|
||||
'uploaded' => 'Le fichier du champ :attribute n\'a pu être téléversé.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Le format de l\'URL de :attribute n\'est pas valide.',
|
||||
'uuid' => 'Le champ :attribute doit être un UUID valide',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Ovi podaci ne odgovaraju našima.',
|
||||
'password' => 'Lozinka je pogrešna.',
|
||||
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Ovi podaci ne odgovaraju našima.',
|
||||
'password' => 'Lozinka je pogrešna.',
|
||||
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Sljedeća »',
|
||||
'previous' => '« Prethodna',
|
||||
);
|
||||
return [
|
||||
'next' => 'Sljedeća »',
|
||||
'previous' => '« Prethodna',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Lozinka je ponovno postavljena!',
|
||||
'sent' => 'E-mail sa poveznicom za ponovno postavljanje lozinke je poslan!',
|
||||
'throttled' => 'Molimo pričekajte prije ponovnog pokušaja!',
|
||||
'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
|
||||
'user' => 'Korisnik s navedenom e-mail adresom nije pronađen.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Lozinka je ponovno postavljena!',
|
||||
'sent' => 'E-mail sa poveznicom za ponovno postavljanje lozinke je poslan!',
|
||||
'throttled' => 'Molimo pričekajte prije ponovnog pokušaja!',
|
||||
'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
|
||||
'user' => 'Korisnik s navedenom e-mail adresom nije pronađen.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
|
||||
'accepted_if' => 'Polje :attribute mora biti prihvaćeno kada je :other jednako :value.',
|
||||
'active_url' => 'Polje :attribute nije ispravan URL.',
|
||||
'after' => 'Polje :attribute mora biti datum nakon :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.',
|
||||
'attached' => 'Polje :attribute je već prikvačeno.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'adresa',
|
||||
'age' => 'dob',
|
||||
'amount' => 'iznos',
|
||||
'area' => 'površina',
|
||||
'available' => 'dostupno',
|
||||
'birthday' => 'rođendan',
|
||||
'body' => 'tijelo',
|
||||
'city' => 'grad',
|
||||
'content' => 'sadržaj',
|
||||
'country' => 'država',
|
||||
'created_at' => 'kreirano',
|
||||
'creator' => 'autor',
|
||||
'current_password' => 'trenutna lozinka',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'datum rođenja',
|
||||
'day' => 'dan',
|
||||
'deleted_at' => 'obrisano',
|
||||
'description' => 'opis',
|
||||
'district' => 'općina',
|
||||
'duration' => 'trajanje',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'izdvojeno',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'ime',
|
||||
'gender' => 'spol',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'sat',
|
||||
'image' => 'slika',
|
||||
'last_name' => 'prezime',
|
||||
'lesson' => 'lekcija',
|
||||
'line_address_1' => 'adresa',
|
||||
'line_address_2' => 'dodatak adresi',
|
||||
'message' => 'poruka',
|
||||
'middle_name' => 'srednje ime',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'mobitel',
|
||||
'month' => 'mjesec',
|
||||
'name' => 'ime',
|
||||
'national_code' => 'Nacionalni kod',
|
||||
'number' => 'broj',
|
||||
'password' => 'lozinka',
|
||||
'password_confirmation' => 'potvrda lozinke',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotografija',
|
||||
'postal_code' => 'poštanski broj',
|
||||
'price' => 'cijena',
|
||||
'province' => 'pokrajina',
|
||||
'recaptcha_response_field' => 'recaptcha polje',
|
||||
'remember' => 'zapamti me',
|
||||
'restored_at' => 'vraćeno',
|
||||
'result_text_under_image' => 'tekst rezultata ispod slike',
|
||||
'role' => 'uloga',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'spol',
|
||||
'short_text' => 'kratak tekst',
|
||||
'size' => 'veličina',
|
||||
'state' => 'država',
|
||||
'street' => 'ulica',
|
||||
'student' => 'učenik',
|
||||
'subject' => 'predmet',
|
||||
'teacher' => 'učitelj',
|
||||
'terms' => 'uvjeti',
|
||||
'test_description' => 'testni opis',
|
||||
'test_locale' => 'testni jezik',
|
||||
'test_name' => 'testno ime',
|
||||
'text' => 'tekst',
|
||||
'time' => 'vrijeme',
|
||||
'title' => 'naslov',
|
||||
'updated_at' => 'ažurirano',
|
||||
'username' => 'korisničko ime',
|
||||
'year' => 'godina',
|
||||
),
|
||||
'before' => 'Polje :attribute mora biti datum prije :date.',
|
||||
'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora imati između :min - :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti između :min - :max.',
|
||||
'string' => 'Polje :attribute mora biti između :min - :max znakova.',
|
||||
),
|
||||
'boolean' => 'Polje :attribute mora biti false ili true.',
|
||||
'confirmed' => 'Potvrda polja :attribute se ne podudara.',
|
||||
'current_password' => 'Lozinka nije ispravna.',
|
||||
'date' => 'Polje :attribute nije ispravan datum.',
|
||||
'date_equals' => 'Stavka :attribute mora biti jednaka :date.',
|
||||
'date_format' => 'Polje :attribute ne podudara s formatom :format.',
|
||||
'declined' => 'Polje :attribute mora biti odbijeno.',
|
||||
'declined_if' => 'Polje :attribute mora biti odbijeno kada je :other jednako :value.',
|
||||
'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' => 'Polje :attribute ima neispravne dimenzije slike.',
|
||||
'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
|
||||
'doesnt_end_with' => 'Polje :attribute ne smije završavati s jednom od sljedećih vrijednosti: :values.',
|
||||
'doesnt_start_with' => 'Polje :attribute ne smije počinjati s jednom od sljedećih vrijednosti: :values.',
|
||||
'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
|
||||
'ends_with' => ':Attribute bi trebao završiti s jednim od sljedećih: :values.',
|
||||
'enum' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'exists' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'file' => 'Polje :attribute mora biti datoteka.',
|
||||
'filled' => 'Polje :attribute je obavezno.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora biti veće od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće od :value.',
|
||||
'string' => 'Polje :attribute mora biti veće od :value karaktera.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora imati najmanje :value stavki.',
|
||||
'file' => 'Polje :attribute mora imati najmanje :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
|
||||
),
|
||||
'image' => 'Polje :attribute mora biti slika.',
|
||||
'in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'in_array' => 'Polje :attribute ne postoji u :other.',
|
||||
'integer' => 'Polje :attribute mora biti broj.',
|
||||
'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
|
||||
'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
|
||||
'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
|
||||
'json' => 'Polje :attribute mora biti ispravan JSON string.',
|
||||
'lowercase' => 'Polje :attribute mora sadržavati samo mala slova.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora biti manje od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :value.',
|
||||
'string' => 'Polje :attribute mora biti manje od :value znakova.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute ne smije imati više od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
|
||||
),
|
||||
'mac_address' => 'Polje :attribute mora biti ispravna MAC adresa.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute ne smije imati više od :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :max.',
|
||||
'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
|
||||
),
|
||||
'max_digits' => 'Polje :attribute ne smije imati više od :max znamenaka.',
|
||||
'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
|
||||
'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti najmanje :min.',
|
||||
'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
|
||||
),
|
||||
'min_digits' => 'Polje :attribute mora sadržavati najmanje :min znamenaka.',
|
||||
'multiple_of' => 'Broj :attribute mora biti višekratnik :value',
|
||||
'not_in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'not_regex' => 'Format polja :attribute je neispravan.',
|
||||
'numeric' => 'Polje :attribute mora biti broj.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'Polje :attribute mora sadržavati najmanje jedno slovo.',
|
||||
'mixed' => 'Polje :attribute mora sadržavati najmanje jedno veliko i jedno malo slovo.',
|
||||
'numbers' => 'Polje :attribute mora sadržavati najmanje jedan broj.',
|
||||
'symbols' => 'Polje :attribute mora sadržavati najmanje jedan simbol.',
|
||||
'uncompromised' => 'Vrijednost u :attribute se pojavila u curenju informacija. Molimo vas da odaberete drugu vrijednost za :attribute.',
|
||||
),
|
||||
'present' => 'Polje :attribute mora biti prisutno.',
|
||||
'prohibited' => 'Polje :attribute je zabranjeno.',
|
||||
'prohibited_if' => 'Polje :attribute zabranjeno je kada je :other :value.',
|
||||
'prohibited_unless' => 'Polje :attribute zabranjeno je, osim ako :other nije u :values.',
|
||||
'prohibits' => 'Polje :attribute zabranjuje da polje :other bude prisutno.',
|
||||
'regex' => 'Polje :attribute se ne podudara s formatom.',
|
||||
'relatable' => 'Polje :attribute se ne može povezati s ovim resursom.',
|
||||
'required' => 'Polje :attribute je obavezno.',
|
||||
'required_array_keys' => 'Polje :attribute mora sadržavati unose za: :values.',
|
||||
'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
|
||||
'required_if_accepted' => 'Polje :attribute je obavezno kada je prihvaćeno polje :other.',
|
||||
'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.',
|
||||
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
|
||||
'same' => 'Polja :attribute i :other se moraju podudarati.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora sadržavati :size stavki.',
|
||||
'file' => 'Polje :attribute mora biti :size kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti :size.',
|
||||
'string' => 'Polje :attribute mora biti :size znakova.',
|
||||
),
|
||||
'starts_with' => 'Stavka :attribute mora započinjati jednom od narednih stavki: :values',
|
||||
'string' => 'Polje :attribute mora biti riječ.',
|
||||
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
|
||||
'unique' => 'Polje :attribute već postoji.',
|
||||
'uploaded' => 'Polje :attribute nije uspešno učitano.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Polje :attribute mora biti ispravan URL.',
|
||||
'uuid' => 'Stavka :attribute mora biti valjani UUID.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
|
||||
'accepted_if' => 'Polje :attribute mora biti prihvaćeno kada je :other jednako :value.',
|
||||
'active_url' => 'Polje :attribute nije ispravan URL.',
|
||||
'after' => 'Polje :attribute mora biti datum nakon :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.',
|
||||
'attached' => 'Polje :attribute je već prikvačeno.',
|
||||
'attributes' => [
|
||||
'address' => 'adresa',
|
||||
'age' => 'dob',
|
||||
'amount' => 'iznos',
|
||||
'area' => 'površina',
|
||||
'available' => 'dostupno',
|
||||
'birthday' => 'rođendan',
|
||||
'body' => 'tijelo',
|
||||
'city' => 'grad',
|
||||
'content' => 'sadržaj',
|
||||
'country' => 'država',
|
||||
'created_at' => 'kreirano',
|
||||
'creator' => 'autor',
|
||||
'current_password' => 'trenutna lozinka',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'datum rođenja',
|
||||
'day' => 'dan',
|
||||
'deleted_at' => 'obrisano',
|
||||
'description' => 'opis',
|
||||
'district' => 'općina',
|
||||
'duration' => 'trajanje',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'izdvojeno',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'ime',
|
||||
'gender' => 'spol',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'sat',
|
||||
'image' => 'slika',
|
||||
'last_name' => 'prezime',
|
||||
'lesson' => 'lekcija',
|
||||
'line_address_1' => 'adresa',
|
||||
'line_address_2' => 'dodatak adresi',
|
||||
'message' => 'poruka',
|
||||
'middle_name' => 'srednje ime',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'mobitel',
|
||||
'month' => 'mjesec',
|
||||
'name' => 'ime',
|
||||
'national_code' => 'Nacionalni kod',
|
||||
'number' => 'broj',
|
||||
'password' => 'lozinka',
|
||||
'password_confirmation' => 'potvrda lozinke',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotografija',
|
||||
'postal_code' => 'poštanski broj',
|
||||
'price' => 'cijena',
|
||||
'province' => 'pokrajina',
|
||||
'recaptcha_response_field' => 'recaptcha polje',
|
||||
'remember' => 'zapamti me',
|
||||
'restored_at' => 'vraćeno',
|
||||
'result_text_under_image' => 'tekst rezultata ispod slike',
|
||||
'role' => 'uloga',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'spol',
|
||||
'short_text' => 'kratak tekst',
|
||||
'size' => 'veličina',
|
||||
'state' => 'država',
|
||||
'street' => 'ulica',
|
||||
'student' => 'učenik',
|
||||
'subject' => 'predmet',
|
||||
'teacher' => 'učitelj',
|
||||
'terms' => 'uvjeti',
|
||||
'test_description' => 'testni opis',
|
||||
'test_locale' => 'testni jezik',
|
||||
'test_name' => 'testno ime',
|
||||
'text' => 'tekst',
|
||||
'time' => 'vrijeme',
|
||||
'title' => 'naslov',
|
||||
'updated_at' => 'ažurirano',
|
||||
'username' => 'korisničko ime',
|
||||
'year' => 'godina',
|
||||
],
|
||||
'before' => 'Polje :attribute mora biti datum prije :date.',
|
||||
'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
|
||||
'between' => [
|
||||
'array' => 'Polje :attribute mora imati između :min - :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti između :min - :max.',
|
||||
'string' => 'Polje :attribute mora biti između :min - :max znakova.',
|
||||
],
|
||||
'boolean' => 'Polje :attribute mora biti false ili true.',
|
||||
'confirmed' => 'Potvrda polja :attribute se ne podudara.',
|
||||
'current_password' => 'Lozinka nije ispravna.',
|
||||
'date' => 'Polje :attribute nije ispravan datum.',
|
||||
'date_equals' => 'Stavka :attribute mora biti jednaka :date.',
|
||||
'date_format' => 'Polje :attribute ne podudara s formatom :format.',
|
||||
'declined' => 'Polje :attribute mora biti odbijeno.',
|
||||
'declined_if' => 'Polje :attribute mora biti odbijeno kada je :other jednako :value.',
|
||||
'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' => 'Polje :attribute ima neispravne dimenzije slike.',
|
||||
'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
|
||||
'doesnt_end_with' => 'Polje :attribute ne smije završavati s jednom od sljedećih vrijednosti: :values.',
|
||||
'doesnt_start_with' => 'Polje :attribute ne smije počinjati s jednom od sljedećih vrijednosti: :values.',
|
||||
'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
|
||||
'ends_with' => ':Attribute bi trebao završiti s jednim od sljedećih: :values.',
|
||||
'enum' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'exists' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'file' => 'Polje :attribute mora biti datoteka.',
|
||||
'filled' => 'Polje :attribute je obavezno.',
|
||||
'gt' => [
|
||||
'array' => 'Polje :attribute mora biti veće od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće od :value.',
|
||||
'string' => 'Polje :attribute mora biti veće od :value karaktera.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Polje :attribute mora imati najmanje :value stavki.',
|
||||
'file' => 'Polje :attribute mora imati najmanje :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
|
||||
],
|
||||
'image' => 'Polje :attribute mora biti slika.',
|
||||
'in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'in_array' => 'Polje :attribute ne postoji u :other.',
|
||||
'integer' => 'Polje :attribute mora biti broj.',
|
||||
'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
|
||||
'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
|
||||
'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
|
||||
'json' => 'Polje :attribute mora biti ispravan JSON string.',
|
||||
'lowercase' => 'Polje :attribute mora sadržavati samo mala slova.',
|
||||
'lt' => [
|
||||
'array' => 'Polje :attribute mora biti manje od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :value.',
|
||||
'string' => 'Polje :attribute mora biti manje od :value znakova.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Polje :attribute ne smije imati više od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
|
||||
],
|
||||
'mac_address' => 'Polje :attribute mora biti ispravna MAC adresa.',
|
||||
'max' => [
|
||||
'array' => 'Polje :attribute ne smije imati više od :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :max.',
|
||||
'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
|
||||
],
|
||||
'max_digits' => 'Polje :attribute ne smije imati više od :max znamenaka.',
|
||||
'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'min' => [
|
||||
'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
|
||||
'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti najmanje :min.',
|
||||
'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
|
||||
],
|
||||
'min_digits' => 'Polje :attribute mora sadržavati najmanje :min znamenaka.',
|
||||
'multiple_of' => 'Broj :attribute mora biti višekratnik :value',
|
||||
'not_in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'not_regex' => 'Format polja :attribute je neispravan.',
|
||||
'numeric' => 'Polje :attribute mora biti broj.',
|
||||
'password' => [
|
||||
'letters' => 'Polje :attribute mora sadržavati najmanje jedno slovo.',
|
||||
'mixed' => 'Polje :attribute mora sadržavati najmanje jedno veliko i jedno malo slovo.',
|
||||
'numbers' => 'Polje :attribute mora sadržavati najmanje jedan broj.',
|
||||
'symbols' => 'Polje :attribute mora sadržavati najmanje jedan simbol.',
|
||||
'uncompromised' => 'Vrijednost u :attribute se pojavila u curenju informacija. Molimo vas da odaberete drugu vrijednost za :attribute.',
|
||||
],
|
||||
'present' => 'Polje :attribute mora biti prisutno.',
|
||||
'prohibited' => 'Polje :attribute je zabranjeno.',
|
||||
'prohibited_if' => 'Polje :attribute zabranjeno je kada je :other :value.',
|
||||
'prohibited_unless' => 'Polje :attribute zabranjeno je, osim ako :other nije u :values.',
|
||||
'prohibits' => 'Polje :attribute zabranjuje da polje :other bude prisutno.',
|
||||
'regex' => 'Polje :attribute se ne podudara s formatom.',
|
||||
'relatable' => 'Polje :attribute se ne može povezati s ovim resursom.',
|
||||
'required' => 'Polje :attribute je obavezno.',
|
||||
'required_array_keys' => 'Polje :attribute mora sadržavati unose za: :values.',
|
||||
'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
|
||||
'required_if_accepted' => 'Polje :attribute je obavezno kada je prihvaćeno polje :other.',
|
||||
'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.',
|
||||
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
|
||||
'same' => 'Polja :attribute i :other se moraju podudarati.',
|
||||
'size' => [
|
||||
'array' => 'Polje :attribute mora sadržavati :size stavki.',
|
||||
'file' => 'Polje :attribute mora biti :size kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti :size.',
|
||||
'string' => 'Polje :attribute mora biti :size znakova.',
|
||||
],
|
||||
'starts_with' => 'Stavka :attribute mora započinjati jednom od narednih stavki: :values',
|
||||
'string' => 'Polje :attribute mora biti riječ.',
|
||||
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
|
||||
'unique' => 'Polje :attribute već postoji.',
|
||||
'uploaded' => 'Polje :attribute nije uspešno učitano.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Polje :attribute mora biti ispravan URL.',
|
||||
'uuid' => 'Stavka :attribute mora biti valjani UUID.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Credenziali non valide.',
|
||||
'password' => 'Il campo :attribute non è corretto.',
|
||||
'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Credenziali non valide.',
|
||||
'password' => 'Il campo :attribute non è corretto.',
|
||||
'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Errore sconosciuto',
|
||||
'unknownError' => 'Errore sconosciuto',
|
||||
100 => 'Continua',
|
||||
101 => 'Scambiando protocolli',
|
||||
102 => 'In processo',
|
||||
200 => 'OK',
|
||||
201 => 'Creato',
|
||||
202 => 'Accettato',
|
||||
203 => 'Informazione non autorevole',
|
||||
204 => 'Nessun contenuto',
|
||||
205 => 'Resetta il contenuto',
|
||||
206 => 'Contenuto parziale',
|
||||
207 => 'Stati multipli',
|
||||
208 => 'Già riportato',
|
||||
226 => 'IM utilizzati',
|
||||
300 => 'Scelte multiple',
|
||||
301 => 'Trasferito permanentemente',
|
||||
302 => 'Trovato',
|
||||
303 => 'Guarda altro',
|
||||
304 => 'Non modificata',
|
||||
305 => 'Usa un proxy',
|
||||
307 => 'Re-indirizzamento temporaneo',
|
||||
308 => 'Re-indirizzamento permanente',
|
||||
400 => 'Cattiva richiesta',
|
||||
401 => 'Non autorizzata',
|
||||
402 => 'Pagamento richiesto',
|
||||
403 => 'Accesso vietato',
|
||||
404 => 'Pagina non trovata',
|
||||
405 => 'Metodo non consentito',
|
||||
406 => 'Non accettabile',
|
||||
407 => 'Autenticazione al proxy richiesta',
|
||||
408 => 'Tempo scaduto per la richiesta',
|
||||
409 => 'Conflitto',
|
||||
410 => 'Andata',
|
||||
411 => 'Lunghezza necessaria',
|
||||
412 => 'Precondizione fallita',
|
||||
413 => 'Payload troppo grande',
|
||||
414 => 'URI troppo lungo',
|
||||
415 => 'Media Type non supportato',
|
||||
416 => 'intervallo non soddisfacibile',
|
||||
417 => 'Aspettativa fallita',
|
||||
418 => 'Sono una teiera',
|
||||
419 => 'Sessione scaduta',
|
||||
421 => 'Richiesta mal indirizzata',
|
||||
422 => 'Entità improcessabile',
|
||||
423 => 'Bloccata',
|
||||
424 => 'Dipendenza fallita',
|
||||
425 => 'Too Early',
|
||||
426 => 'Aggiornamento richiesto',
|
||||
428 => 'Precondizione necessaria',
|
||||
429 => 'Troppe richieste',
|
||||
431 => 'Campi header della richiesta troppo grandi',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Riprova con',
|
||||
451 => 'Non disponibile per motivi legali',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Errore interno al server',
|
||||
501 => 'Non implementato',
|
||||
502 => 'Gateway cattivo',
|
||||
503 => 'In manutenzione',
|
||||
504 => 'Tempo scaduto per il gateway',
|
||||
505 => 'Versione HTTP non supportata',
|
||||
506 => 'Variante anche negozia',
|
||||
507 => 'Spazio insufficiente',
|
||||
508 => 'Loop identificato',
|
||||
509 => 'Limita di banda superato',
|
||||
510 => 'Non esteso',
|
||||
511 => 'Autenticazione di rete necessaria',
|
||||
520 => 'Errore sconosciuto',
|
||||
521 => 'Web server spento',
|
||||
522 => 'Tempo scaduto per la connessione',
|
||||
523 => 'Origine non raggiungibile',
|
||||
524 => 'Un timeout è avvenuto',
|
||||
525 => 'Handshake SSL fallita',
|
||||
526 => 'Certificato SSL invalido',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Errore sconosciuto',
|
||||
'unknownError' => 'Errore sconosciuto',
|
||||
100 => 'Continua',
|
||||
101 => 'Scambiando protocolli',
|
||||
102 => 'In processo',
|
||||
200 => 'OK',
|
||||
201 => 'Creato',
|
||||
202 => 'Accettato',
|
||||
203 => 'Informazione non autorevole',
|
||||
204 => 'Nessun contenuto',
|
||||
205 => 'Resetta il contenuto',
|
||||
206 => 'Contenuto parziale',
|
||||
207 => 'Stati multipli',
|
||||
208 => 'Già riportato',
|
||||
226 => 'IM utilizzati',
|
||||
300 => 'Scelte multiple',
|
||||
301 => 'Trasferito permanentemente',
|
||||
302 => 'Trovato',
|
||||
303 => 'Guarda altro',
|
||||
304 => 'Non modificata',
|
||||
305 => 'Usa un proxy',
|
||||
307 => 'Re-indirizzamento temporaneo',
|
||||
308 => 'Re-indirizzamento permanente',
|
||||
400 => 'Cattiva richiesta',
|
||||
401 => 'Non autorizzata',
|
||||
402 => 'Pagamento richiesto',
|
||||
403 => 'Accesso vietato',
|
||||
404 => 'Pagina non trovata',
|
||||
405 => 'Metodo non consentito',
|
||||
406 => 'Non accettabile',
|
||||
407 => 'Autenticazione al proxy richiesta',
|
||||
408 => 'Tempo scaduto per la richiesta',
|
||||
409 => 'Conflitto',
|
||||
410 => 'Andata',
|
||||
411 => 'Lunghezza necessaria',
|
||||
412 => 'Precondizione fallita',
|
||||
413 => 'Payload troppo grande',
|
||||
414 => 'URI troppo lungo',
|
||||
415 => 'Media Type non supportato',
|
||||
416 => 'intervallo non soddisfacibile',
|
||||
417 => 'Aspettativa fallita',
|
||||
418 => 'Sono una teiera',
|
||||
419 => 'Sessione scaduta',
|
||||
421 => 'Richiesta mal indirizzata',
|
||||
422 => 'Entità improcessabile',
|
||||
423 => 'Bloccata',
|
||||
424 => 'Dipendenza fallita',
|
||||
425 => 'Too Early',
|
||||
426 => 'Aggiornamento richiesto',
|
||||
428 => 'Precondizione necessaria',
|
||||
429 => 'Troppe richieste',
|
||||
431 => 'Campi header della richiesta troppo grandi',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Riprova con',
|
||||
451 => 'Non disponibile per motivi legali',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Errore interno al server',
|
||||
501 => 'Non implementato',
|
||||
502 => 'Gateway cattivo',
|
||||
503 => 'In manutenzione',
|
||||
504 => 'Tempo scaduto per il gateway',
|
||||
505 => 'Versione HTTP non supportata',
|
||||
506 => 'Variante anche negozia',
|
||||
507 => 'Spazio insufficiente',
|
||||
508 => 'Loop identificato',
|
||||
509 => 'Limita di banda superato',
|
||||
510 => 'Non esteso',
|
||||
511 => 'Autenticazione di rete necessaria',
|
||||
520 => 'Errore sconosciuto',
|
||||
521 => 'Web server spento',
|
||||
522 => 'Tempo scaduto per la connessione',
|
||||
523 => 'Origine non raggiungibile',
|
||||
524 => 'Un timeout è avvenuto',
|
||||
525 => 'Handshake SSL fallita',
|
||||
526 => 'Certificato SSL invalido',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Successivo »',
|
||||
'previous' => '« Precedente',
|
||||
);
|
||||
return [
|
||||
'next' => 'Successivo »',
|
||||
'previous' => '« Precedente',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'La password è stata reimpostata!',
|
||||
'sent' => 'Ti abbiamo inviato una email con il link per il reset della password!',
|
||||
'throttled' => 'Per favore, attendi prima di riprovare.',
|
||||
'token' => 'Questo token di reset della password non è valido.',
|
||||
'user' => 'Non riusciamo a trovare un utente con questo indirizzo email.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'La password è stata reimpostata!',
|
||||
'sent' => 'Ti abbiamo inviato una email con il link per il reset della password!',
|
||||
'throttled' => 'Per favore, attendi prima di riprovare.',
|
||||
'token' => 'Questo token di reset della password non è valido.',
|
||||
'user' => 'Non riusciamo a trovare un utente con questo indirizzo email.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => ':Attribute deve essere accettato.',
|
||||
'accepted_if' => ':Attribute deve essere accettato quando :other è :value.',
|
||||
'active_url' => ':Attribute non è un URL valido.',
|
||||
'after' => ':Attribute deve essere una data successiva al :date.',
|
||||
'after_or_equal' => ':Attribute deve essere una data successiva o uguale al :date.',
|
||||
'alpha' => ':Attribute può contenere solo lettere.',
|
||||
'alpha_dash' => ':Attribute può contenere solo lettere, numeri e trattini.',
|
||||
'alpha_num' => ':Attribute può contenere solo lettere e numeri.',
|
||||
'array' => ':Attribute deve essere un array.',
|
||||
'attached' => ':Attribute è già associato.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'indirizzo',
|
||||
'age' => 'età',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'disponibile',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'città',
|
||||
'content' => 'contenuto',
|
||||
'country' => 'paese',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'data',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'giorno',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'descrizione',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'estratto',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'nome',
|
||||
'gender' => 'genere',
|
||||
'group' => 'group',
|
||||
'hour' => 'ora',
|
||||
'image' => 'image',
|
||||
'last_name' => 'cognome',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minuto',
|
||||
'mobile' => 'cellulare',
|
||||
'month' => 'mese',
|
||||
'name' => 'nome',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'conferma password',
|
||||
'phone' => 'telefono',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'secondo',
|
||||
'sex' => 'sesso',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'dimensione',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'ora',
|
||||
'title' => 'titolo',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'nome utente',
|
||||
'year' => 'anno',
|
||||
),
|
||||
'before' => ':Attribute deve essere una data precedente al :date.',
|
||||
'before_or_equal' => ':Attribute deve essere una data precedente o uguale al :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => ':Attribute deve avere tra :min - :max elementi.',
|
||||
'file' => ':Attribute deve trovarsi tra :min - :max kilobyte.',
|
||||
'numeric' => ':Attribute deve trovarsi tra :min - :max.',
|
||||
'string' => ':Attribute deve trovarsi tra :min - :max caratteri.',
|
||||
),
|
||||
'boolean' => 'Il campo :attribute deve essere vero o falso.',
|
||||
'confirmed' => 'Il campo di conferma per :attribute non coincide.',
|
||||
'current_password' => 'Password non valida.',
|
||||
'date' => ':Attribute non è una data valida.',
|
||||
'date_equals' => ':Attribute deve essere una data e uguale a :date.',
|
||||
'date_format' => ':Attribute non coincide con il formato :format.',
|
||||
'declined' => ':Attribute deve essere rifiutato.',
|
||||
'declined_if' => ':Attribute deve essere rifiutato quando :other è :value.',
|
||||
'different' => ':Attribute e :other devono essere differenti.',
|
||||
'digits' => ':Attribute deve essere di :digits cifre.',
|
||||
'digits_between' => ':Attribute deve essere tra :min e :max cifre.',
|
||||
'dimensions' => 'Le dimensioni dell\'immagine di :attribute non sono valide.',
|
||||
'distinct' => ':Attribute contiene un valore duplicato.',
|
||||
'doesnt_end_with' => ':Attribute non può terminare con uno dei seguenti valori: :values.',
|
||||
'doesnt_start_with' => ':Attribute non può iniziare con uno dei seguenti valori: :values.',
|
||||
'email' => ':Attribute non è valido.',
|
||||
'ends_with' => ':Attribute deve finire con uno dei seguenti valori: :values',
|
||||
'enum' => 'Il campo :attribute non è valido.',
|
||||
'exists' => ':Attribute selezionato non è valido.',
|
||||
'file' => ':Attribute deve essere un file.',
|
||||
'filled' => 'Il campo :attribute deve contenere un valore.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => ':Attribute deve contenere più di :value elementi.',
|
||||
'file' => ':Attribute deve essere maggiore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere maggiore di :value.',
|
||||
'string' => ':Attribute deve contenere più di :value caratteri.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => ':Attribute deve contenere un numero di elementi uguale o maggiore di :value.',
|
||||
'file' => ':Attribute deve essere uguale o maggiore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere uguale o maggiore di :value.',
|
||||
'string' => ':Attribute deve contenere un numero di caratteri 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.',
|
||||
'integer' => ':Attribute deve essere un numero intero.',
|
||||
'ip' => ':Attribute deve essere un indirizzo IP valido.',
|
||||
'ipv4' => ':Attribute deve essere un indirizzo IPv4 valido.',
|
||||
'ipv6' => ':Attribute deve essere un indirizzo IPv6 valido.',
|
||||
'json' => ':Attribute deve essere una stringa JSON valida.',
|
||||
'lowercase' => ':Attribute deve contenere solo caratteri minuscoli.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => ':Attribute deve contenere meno di :value elementi.',
|
||||
'file' => ':Attribute deve essere minore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere minore di :value.',
|
||||
'string' => ':Attribute deve contenere meno di :value caratteri.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => ':Attribute deve contenere un numero di elementi minore o uguale a :value.',
|
||||
'file' => ':Attribute deve essere minore o uguale a :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere minore o uguale a :value.',
|
||||
'string' => ':Attribute deve contenere un numero di caratteri minore o uguale a :value.',
|
||||
),
|
||||
'mac_address' => 'Il campo :attribute deve essere un indirizzo MAC valido .',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => ':Attribute non può avere più di :max elementi.',
|
||||
'file' => ':Attribute non può essere superiore a :max kilobyte.',
|
||||
'numeric' => ':Attribute non può essere superiore a :max.',
|
||||
'string' => ':Attribute non può contenere più di :max caratteri.',
|
||||
),
|
||||
'max_digits' => ':Attribute non può contenere più di :max cifre.',
|
||||
'mimes' => ':Attribute deve essere del tipo: :values.',
|
||||
'mimetypes' => ':Attribute deve essere del tipo: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => ':Attribute deve avere almeno :min elementi.',
|
||||
'file' => ':Attribute deve essere almeno di :min kilobyte.',
|
||||
'numeric' => ':Attribute deve essere almeno :min.',
|
||||
'string' => ':Attribute deve contenere almeno :min caratteri.',
|
||||
),
|
||||
'min_digits' => ':Attribute deve contenere almeno :min cifre.',
|
||||
'multiple_of' => ':Attribute deve essere un multiplo di :value',
|
||||
'not_in' => 'Il valore selezionato per :attribute non è valido.',
|
||||
'not_regex' => 'Il formato di :attribute non è valido.',
|
||||
'numeric' => ':Attribute deve essere un numero.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => ':Attribute deve contenere almeno un carattere.',
|
||||
'mixed' => ':Attribute deve contenere almeno un carattere maiuscolo ed un carattere minuscolo.',
|
||||
'numbers' => ':Attribute deve contenere almeno un numero.',
|
||||
'symbols' => ':Attribute deve contenere almeno un simbolo.',
|
||||
'uncompromised' => ':Attribute è presente negli archivi dei dati trafugati. Per piacere scegli un valore differente per :attribute.',
|
||||
),
|
||||
'present' => 'Il campo :attribute deve essere presente.',
|
||||
'prohibited' => ':Attribute non consentito.',
|
||||
'prohibited_if' => ':Attribute non consentito quando :other è :value.',
|
||||
'prohibited_unless' => ':Attribute non consentito a meno che :other sia contenuto in :values.',
|
||||
'prohibits' => ':Attribute impedisce a :other di essere presente.',
|
||||
'regex' => 'Il formato del campo :attribute non è valido.',
|
||||
'relatable' => ':Attribute non può essere associato a questa risorsa.',
|
||||
'required' => 'Il campo :attribute è richiesto.',
|
||||
'required_array_keys' => 'Il campo :attribute deve contenere voci per: :values.',
|
||||
'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
|
||||
'required_if_accepted' => ':Attribute è richiesto quando :other è accettato.',
|
||||
'required_unless' => 'Il campo :attribute è richiesto a meno che :other sia in :values.',
|
||||
'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
|
||||
'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
|
||||
'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
|
||||
'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.',
|
||||
'same' => ':Attribute e :other devono coincidere.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => ':Attribute deve contenere :size elementi.',
|
||||
'file' => ':Attribute deve essere :size kilobyte.',
|
||||
'numeric' => ':Attribute deve essere :size.',
|
||||
'string' => ':Attribute deve contenere :size caratteri.',
|
||||
),
|
||||
'starts_with' => ':Attribute deve iniziare con uno dei seguenti: :values',
|
||||
'string' => ':Attribute deve essere una stringa.',
|
||||
'timezone' => ':Attribute deve essere una zona valida.',
|
||||
'unique' => ':Attribute è stato già utilizzato.',
|
||||
'uploaded' => ':Attribute non è stato caricato.',
|
||||
'uppercase' => ':Attribute deve contenere solo caratteri maiuscoli.',
|
||||
'url' => 'Il formato del campo :attribute non è valido.',
|
||||
'uuid' => ':Attribute deve essere un UUID valido.',
|
||||
);
|
||||
return [
|
||||
'accepted' => ':Attribute deve essere accettato.',
|
||||
'accepted_if' => ':Attribute deve essere accettato quando :other è :value.',
|
||||
'active_url' => ':Attribute non è un URL valido.',
|
||||
'after' => ':Attribute deve essere una data successiva al :date.',
|
||||
'after_or_equal' => ':Attribute deve essere una data successiva o uguale al :date.',
|
||||
'alpha' => ':Attribute può contenere solo lettere.',
|
||||
'alpha_dash' => ':Attribute può contenere solo lettere, numeri e trattini.',
|
||||
'alpha_num' => ':Attribute può contenere solo lettere e numeri.',
|
||||
'array' => ':Attribute deve essere un array.',
|
||||
'attached' => ':Attribute è già associato.',
|
||||
'attributes' => [
|
||||
'address' => 'indirizzo',
|
||||
'age' => 'età',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'disponibile',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'città',
|
||||
'content' => 'contenuto',
|
||||
'country' => 'paese',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'data',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'giorno',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'descrizione',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'estratto',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'nome',
|
||||
'gender' => 'genere',
|
||||
'group' => 'group',
|
||||
'hour' => 'ora',
|
||||
'image' => 'image',
|
||||
'last_name' => 'cognome',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minuto',
|
||||
'mobile' => 'cellulare',
|
||||
'month' => 'mese',
|
||||
'name' => 'nome',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'conferma password',
|
||||
'phone' => 'telefono',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'secondo',
|
||||
'sex' => 'sesso',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'dimensione',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'ora',
|
||||
'title' => 'titolo',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'nome utente',
|
||||
'year' => 'anno',
|
||||
],
|
||||
'before' => ':Attribute deve essere una data precedente al :date.',
|
||||
'before_or_equal' => ':Attribute deve essere una data precedente o uguale al :date.',
|
||||
'between' => [
|
||||
'array' => ':Attribute deve avere tra :min - :max elementi.',
|
||||
'file' => ':Attribute deve trovarsi tra :min - :max kilobyte.',
|
||||
'numeric' => ':Attribute deve trovarsi tra :min - :max.',
|
||||
'string' => ':Attribute deve trovarsi tra :min - :max caratteri.',
|
||||
],
|
||||
'boolean' => 'Il campo :attribute deve essere vero o falso.',
|
||||
'confirmed' => 'Il campo di conferma per :attribute non coincide.',
|
||||
'current_password' => 'Password non valida.',
|
||||
'date' => ':Attribute non è una data valida.',
|
||||
'date_equals' => ':Attribute deve essere una data e uguale a :date.',
|
||||
'date_format' => ':Attribute non coincide con il formato :format.',
|
||||
'declined' => ':Attribute deve essere rifiutato.',
|
||||
'declined_if' => ':Attribute deve essere rifiutato quando :other è :value.',
|
||||
'different' => ':Attribute e :other devono essere differenti.',
|
||||
'digits' => ':Attribute deve essere di :digits cifre.',
|
||||
'digits_between' => ':Attribute deve essere tra :min e :max cifre.',
|
||||
'dimensions' => 'Le dimensioni dell\'immagine di :attribute non sono valide.',
|
||||
'distinct' => ':Attribute contiene un valore duplicato.',
|
||||
'doesnt_end_with' => ':Attribute non può terminare con uno dei seguenti valori: :values.',
|
||||
'doesnt_start_with' => ':Attribute non può iniziare con uno dei seguenti valori: :values.',
|
||||
'email' => ':Attribute non è valido.',
|
||||
'ends_with' => ':Attribute deve finire con uno dei seguenti valori: :values',
|
||||
'enum' => 'Il campo :attribute non è valido.',
|
||||
'exists' => ':Attribute selezionato non è valido.',
|
||||
'file' => ':Attribute deve essere un file.',
|
||||
'filled' => 'Il campo :attribute deve contenere un valore.',
|
||||
'gt' => [
|
||||
'array' => ':Attribute deve contenere più di :value elementi.',
|
||||
'file' => ':Attribute deve essere maggiore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere maggiore di :value.',
|
||||
'string' => ':Attribute deve contenere più di :value caratteri.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => ':Attribute deve contenere un numero di elementi uguale o maggiore di :value.',
|
||||
'file' => ':Attribute deve essere uguale o maggiore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere uguale o maggiore di :value.',
|
||||
'string' => ':Attribute deve contenere un numero di caratteri 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.',
|
||||
'integer' => ':Attribute deve essere un numero intero.',
|
||||
'ip' => ':Attribute deve essere un indirizzo IP valido.',
|
||||
'ipv4' => ':Attribute deve essere un indirizzo IPv4 valido.',
|
||||
'ipv6' => ':Attribute deve essere un indirizzo IPv6 valido.',
|
||||
'json' => ':Attribute deve essere una stringa JSON valida.',
|
||||
'lowercase' => ':Attribute deve contenere solo caratteri minuscoli.',
|
||||
'lt' => [
|
||||
'array' => ':Attribute deve contenere meno di :value elementi.',
|
||||
'file' => ':Attribute deve essere minore di :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere minore di :value.',
|
||||
'string' => ':Attribute deve contenere meno di :value caratteri.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute deve contenere un numero di elementi minore o uguale a :value.',
|
||||
'file' => ':Attribute deve essere minore o uguale a :value kilobyte.',
|
||||
'numeric' => ':Attribute deve essere minore o uguale a :value.',
|
||||
'string' => ':Attribute deve contenere un numero di caratteri minore o uguale a :value.',
|
||||
],
|
||||
'mac_address' => 'Il campo :attribute deve essere un indirizzo MAC valido .',
|
||||
'max' => [
|
||||
'array' => ':Attribute non può avere più di :max elementi.',
|
||||
'file' => ':Attribute non può essere superiore a :max kilobyte.',
|
||||
'numeric' => ':Attribute non può essere superiore a :max.',
|
||||
'string' => ':Attribute non può contenere più di :max caratteri.',
|
||||
],
|
||||
'max_digits' => ':Attribute non può contenere più di :max cifre.',
|
||||
'mimes' => ':Attribute deve essere del tipo: :values.',
|
||||
'mimetypes' => ':Attribute deve essere del tipo: :values.',
|
||||
'min' => [
|
||||
'array' => ':Attribute deve avere almeno :min elementi.',
|
||||
'file' => ':Attribute deve essere almeno di :min kilobyte.',
|
||||
'numeric' => ':Attribute deve essere almeno :min.',
|
||||
'string' => ':Attribute deve contenere almeno :min caratteri.',
|
||||
],
|
||||
'min_digits' => ':Attribute deve contenere almeno :min cifre.',
|
||||
'multiple_of' => ':Attribute deve essere un multiplo di :value',
|
||||
'not_in' => 'Il valore selezionato per :attribute non è valido.',
|
||||
'not_regex' => 'Il formato di :attribute non è valido.',
|
||||
'numeric' => ':Attribute deve essere un numero.',
|
||||
'password' => [
|
||||
'letters' => ':Attribute deve contenere almeno un carattere.',
|
||||
'mixed' => ':Attribute deve contenere almeno un carattere maiuscolo ed un carattere minuscolo.',
|
||||
'numbers' => ':Attribute deve contenere almeno un numero.',
|
||||
'symbols' => ':Attribute deve contenere almeno un simbolo.',
|
||||
'uncompromised' => ':Attribute è presente negli archivi dei dati trafugati. Per piacere scegli un valore differente per :attribute.',
|
||||
],
|
||||
'present' => 'Il campo :attribute deve essere presente.',
|
||||
'prohibited' => ':Attribute non consentito.',
|
||||
'prohibited_if' => ':Attribute non consentito quando :other è :value.',
|
||||
'prohibited_unless' => ':Attribute non consentito a meno che :other sia contenuto in :values.',
|
||||
'prohibits' => ':Attribute impedisce a :other di essere presente.',
|
||||
'regex' => 'Il formato del campo :attribute non è valido.',
|
||||
'relatable' => ':Attribute non può essere associato a questa risorsa.',
|
||||
'required' => 'Il campo :attribute è richiesto.',
|
||||
'required_array_keys' => 'Il campo :attribute deve contenere voci per: :values.',
|
||||
'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
|
||||
'required_if_accepted' => ':Attribute è richiesto quando :other è accettato.',
|
||||
'required_unless' => 'Il campo :attribute è richiesto a meno che :other sia in :values.',
|
||||
'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
|
||||
'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
|
||||
'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
|
||||
'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.',
|
||||
'same' => ':Attribute e :other devono coincidere.',
|
||||
'size' => [
|
||||
'array' => ':Attribute deve contenere :size elementi.',
|
||||
'file' => ':Attribute deve essere :size kilobyte.',
|
||||
'numeric' => ':Attribute deve essere :size.',
|
||||
'string' => ':Attribute deve contenere :size caratteri.',
|
||||
],
|
||||
'starts_with' => ':Attribute deve iniziare con uno dei seguenti: :values',
|
||||
'string' => ':Attribute deve essere una stringa.',
|
||||
'timezone' => ':Attribute deve essere una zona valida.',
|
||||
'unique' => ':Attribute è stato già utilizzato.',
|
||||
'uploaded' => ':Attribute non è stato caricato.',
|
||||
'uppercase' => ':Attribute deve contenere solo caratteri maiuscoli.',
|
||||
'url' => 'Il formato del campo :attribute non è valido.',
|
||||
'uuid' => ':Attribute deve essere un UUID valido.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Овие акредитиви не се совпаѓаат со нашите записи.',
|
||||
'password' => 'Лозинката не е точна.',
|
||||
'throttle' => 'Премногу обиди за најавување. Обидете се повторно за :seconds секунди.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Овие акредитиви не се совпаѓаат со нашите записи.',
|
||||
'password' => 'Лозинката не е точна.',
|
||||
'throttle' => 'Премногу обиди за најавување. Обидете се повторно за :seconds секунди.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Напред »',
|
||||
'previous' => '« Назад',
|
||||
);
|
||||
return [
|
||||
'next' => 'Напред »',
|
||||
'previous' => '« Назад',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Вашата лозинка е ресетирана!',
|
||||
'sent' => 'Испратена e-mail порака со инструкции за ресетирање на вашата лозинка!',
|
||||
'throttled' => 'Ве молиме почекајте пред да се обидете повторно.',
|
||||
'token' => 'Овој токен за ресетирање на лозинката е невалиден.',
|
||||
'user' => 'Не може да се пронајде корисник со таа e-mail адреса.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Вашата лозинка е ресетирана!',
|
||||
'sent' => 'Испратена e-mail порака со инструкции за ресетирање на вашата лозинка!',
|
||||
'throttled' => 'Ве молиме почекајте пред да се обидете повторно.',
|
||||
'token' => 'Овој токен за ресетирање на лозинката е невалиден.',
|
||||
'user' => 'Не може да се пронајде корисник со таа e-mail адреса.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'Полето :attribute мора да биде прифатено.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'Полето :attribute не е валиден URL.',
|
||||
'after' => 'Полето :attribute мора да биде датум после :date.',
|
||||
'after_or_equal' => 'Полето :attribute мора да биде датум кој е после или еднаков на :date.',
|
||||
'alpha' => 'Полето :attribute може да содржи само букви.',
|
||||
'alpha_dash' => 'Полето :attribute може да содржи само букви, броеви, долна црта и тире.',
|
||||
'alpha_num' => 'Полето :attribute може да содржи само букви и броеви.',
|
||||
'array' => 'Полето :attribute мора да биде низа.',
|
||||
'attached' => 'Оваа :attribute е веќе прикачен.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'адреса',
|
||||
'age' => 'години',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'основен текст на порака',
|
||||
'city' => 'град',
|
||||
'content' => 'content',
|
||||
'country' => 'држава',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'датум',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'ден',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'опис',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'е-mail адреса',
|
||||
'excerpt' => 'извадок',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'име',
|
||||
'gender' => 'пол',
|
||||
'group' => 'group',
|
||||
'hour' => 'час',
|
||||
'image' => 'image',
|
||||
'last_name' => 'презиме',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'порака',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'минута',
|
||||
'mobile' => 'мобилен',
|
||||
'month' => 'месец',
|
||||
'name' => 'име',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'лозинка',
|
||||
'password_confirmation' => 'повтори ја лозинката',
|
||||
'phone' => 'телефон',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'секунда',
|
||||
'sex' => 'пол',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'наслов',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'време',
|
||||
'title' => 'наслов',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'корисничко име',
|
||||
'year' => 'година',
|
||||
),
|
||||
'before' => 'Полето :attribute мора да биде датум пред :date.',
|
||||
'before_or_equal' => 'Полето :attribute мора да биде датум пред или еднаков на :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има помеѓу :min - :max елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека со големина помеѓу :min и :max килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помеѓу :min и :max.',
|
||||
'string' => 'Полето :attribute мора да биде текст со должина помеѓу :min и :max карактери.',
|
||||
),
|
||||
'boolean' => 'Полето :attribute мора да има вредност вистинито (true) или невистинито (false).',
|
||||
'confirmed' => 'Полето :attribute не е потврдено.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'Полето :attribute не е валиден датум.',
|
||||
'date_equals' => 'Полето :attribute мора да биде датум еднаков на :date.',
|
||||
'date_format' => 'Полето :attribute не одговара на форматот :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'Полињата :attribute и :other треба да се различни.',
|
||||
'digits' => 'Полето :attribute треба да има :digits цифри.',
|
||||
'digits_between' => 'Полето :attribute треба да има помеѓу :min и :max цифри.',
|
||||
'dimensions' => 'Полето :attribute има невалидни димензии.',
|
||||
'distinct' => 'Полето :attribute има вредност која е дупликат.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'Полето :attribute не е во валиден формат.',
|
||||
'ends_with' => 'Полето :attribute мора да завршува со една од следните вредности: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'Полето :attribute има вредност која веќе постои.',
|
||||
'file' => 'Полето :attribute мора да биде датотека.',
|
||||
'filled' => 'Полето :attribute мора да има вредност.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има повеке од :value елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека поголема од :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број поголем од :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со повеќе од :value карактери.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има :value елементи или повеќе.',
|
||||
'file' => 'Полето :attribute мора да биде датотека поголема или еднаква на :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број поголем или еднаков на :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со повеќе или еднаков на :value број на карактери.',
|
||||
),
|
||||
'image' => 'Полето :attribute мора да биде слика.',
|
||||
'in' => 'Избраното поле :attribute е невалидно.',
|
||||
'in_array' => 'Полето :attribute не содржи вредност која постои во :other.',
|
||||
'integer' => 'Полето :attribute мора да биде цел број.',
|
||||
'ip' => 'Полето :attribute мора да биде валидна IP адреса.',
|
||||
'ipv4' => 'Полето :attribute мора да биде валидна IPv4 адреса.',
|
||||
'ipv6' => 'Полето :attribute мора да биде валидна IPv6 адреса.',
|
||||
'json' => 'Полето :attribute мора да биде валиден JSON објект.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има помалку од :value елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека помала од :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помал од :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст помал од :value број на карактери.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има :value елементи или помалку.',
|
||||
'file' => 'Полето :attribute мора да биде датотека помала или еднаква на :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помал или еднаков на :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со помалку или еднаков на :value број на карактери.',
|
||||
),
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute не може да има повеќе од :max елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека не поголема од :max килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број не поголем од :max.',
|
||||
'string' => 'Полето :attribute мора да има не повеќе од :max карактери.',
|
||||
),
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'Полето :attribute мора да биде датотека од типот: :values.',
|
||||
'mimetypes' => 'Полето :attribute мора да биде датотека од типот: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да има минимум :min елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека не помала од :min килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број не помал од :min.',
|
||||
'string' => 'Полето :attribute мора да има не помалку од :min карактери.',
|
||||
),
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'Полето :attribute мора да биде повеќекратна вредност од :value',
|
||||
'not_in' => 'Избраното поле :attribute е невалидно.',
|
||||
'not_regex' => 'Полето :attribute има невалиден формат.',
|
||||
'numeric' => 'Полето :attribute мора да биде број.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
),
|
||||
'present' => 'Полето :attribute мора да биде присутно.',
|
||||
'prohibited' => 'Во :attribute година полето е забрането.',
|
||||
'prohibited_if' => 'На :attribute поле е забрането кога :other е :value.',
|
||||
'prohibited_unless' => 'На :attribute поле е забранета освен ако не :other е во :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'Полето :attribute има невалиден формат.',
|
||||
'relatable' => 'Оваа :attribute може да не биде поврзана со овој ресурс.',
|
||||
'required' => 'Полето :attribute е задолжително.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'Полето :attribute е задолжително кога :other е :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'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' =>
|
||||
array (
|
||||
'array' => 'Полето :attribute мора да биде низа со :size број на елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека со големина од :size килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број со вредност :size.',
|
||||
'string' => 'Полето :attribute мора да биде текст со должина од :size број на карактери.',
|
||||
),
|
||||
'starts_with' => 'Полето :attribute мора да започнува со една од следните вредности: :values.',
|
||||
'string' => 'Полето :attribute мора да биде текст.',
|
||||
'timezone' => 'Полето :attribute мора да биде валидна временска зона.',
|
||||
'unique' => 'Полето :attribute веќе постои.',
|
||||
'uploaded' => ':Attribute не е прикачен.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Полето :attribute не е во валиден формат.',
|
||||
'uuid' => 'Полето :attribute мора да биде валиден УУИД.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'Полето :attribute мора да биде прифатено.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'Полето :attribute не е валиден URL.',
|
||||
'after' => 'Полето :attribute мора да биде датум после :date.',
|
||||
'after_or_equal' => 'Полето :attribute мора да биде датум кој е после или еднаков на :date.',
|
||||
'alpha' => 'Полето :attribute може да содржи само букви.',
|
||||
'alpha_dash' => 'Полето :attribute може да содржи само букви, броеви, долна црта и тире.',
|
||||
'alpha_num' => 'Полето :attribute може да содржи само букви и броеви.',
|
||||
'array' => 'Полето :attribute мора да биде низа.',
|
||||
'attached' => 'Оваа :attribute е веќе прикачен.',
|
||||
'attributes' => [
|
||||
'address' => 'адреса',
|
||||
'age' => 'години',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'основен текст на порака',
|
||||
'city' => 'град',
|
||||
'content' => 'content',
|
||||
'country' => 'држава',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'датум',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'ден',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'опис',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'е-mail адреса',
|
||||
'excerpt' => 'извадок',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'име',
|
||||
'gender' => 'пол',
|
||||
'group' => 'group',
|
||||
'hour' => 'час',
|
||||
'image' => 'image',
|
||||
'last_name' => 'презиме',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'порака',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'минута',
|
||||
'mobile' => 'мобилен',
|
||||
'month' => 'месец',
|
||||
'name' => 'име',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'лозинка',
|
||||
'password_confirmation' => 'повтори ја лозинката',
|
||||
'phone' => 'телефон',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'секунда',
|
||||
'sex' => 'пол',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'наслов',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'време',
|
||||
'title' => 'наслов',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'корисничко име',
|
||||
'year' => 'година',
|
||||
],
|
||||
'before' => 'Полето :attribute мора да биде датум пред :date.',
|
||||
'before_or_equal' => 'Полето :attribute мора да биде датум пред или еднаков на :date.',
|
||||
'between' => [
|
||||
'array' => 'Полето :attribute мора да има помеѓу :min - :max елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека со големина помеѓу :min и :max килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помеѓу :min и :max.',
|
||||
'string' => 'Полето :attribute мора да биде текст со должина помеѓу :min и :max карактери.',
|
||||
],
|
||||
'boolean' => 'Полето :attribute мора да има вредност вистинито (true) или невистинито (false).',
|
||||
'confirmed' => 'Полето :attribute не е потврдено.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'Полето :attribute не е валиден датум.',
|
||||
'date_equals' => 'Полето :attribute мора да биде датум еднаков на :date.',
|
||||
'date_format' => 'Полето :attribute не одговара на форматот :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'Полињата :attribute и :other треба да се различни.',
|
||||
'digits' => 'Полето :attribute треба да има :digits цифри.',
|
||||
'digits_between' => 'Полето :attribute треба да има помеѓу :min и :max цифри.',
|
||||
'dimensions' => 'Полето :attribute има невалидни димензии.',
|
||||
'distinct' => 'Полето :attribute има вредност која е дупликат.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'Полето :attribute не е во валиден формат.',
|
||||
'ends_with' => 'Полето :attribute мора да завршува со една од следните вредности: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'Полето :attribute има вредност која веќе постои.',
|
||||
'file' => 'Полето :attribute мора да биде датотека.',
|
||||
'filled' => 'Полето :attribute мора да има вредност.',
|
||||
'gt' => [
|
||||
'array' => 'Полето :attribute мора да има повеке од :value елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека поголема од :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број поголем од :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со повеќе од :value карактери.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Полето :attribute мора да има :value елементи или повеќе.',
|
||||
'file' => 'Полето :attribute мора да биде датотека поголема или еднаква на :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број поголем или еднаков на :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со повеќе или еднаков на :value број на карактери.',
|
||||
],
|
||||
'image' => 'Полето :attribute мора да биде слика.',
|
||||
'in' => 'Избраното поле :attribute е невалидно.',
|
||||
'in_array' => 'Полето :attribute не содржи вредност која постои во :other.',
|
||||
'integer' => 'Полето :attribute мора да биде цел број.',
|
||||
'ip' => 'Полето :attribute мора да биде валидна IP адреса.',
|
||||
'ipv4' => 'Полето :attribute мора да биде валидна IPv4 адреса.',
|
||||
'ipv6' => 'Полето :attribute мора да биде валидна IPv6 адреса.',
|
||||
'json' => 'Полето :attribute мора да биде валиден JSON објект.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'Полето :attribute мора да има помалку од :value елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека помала од :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помал од :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст помал од :value број на карактери.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Полето :attribute мора да има :value елементи или помалку.',
|
||||
'file' => 'Полето :attribute мора да биде датотека помала или еднаква на :value килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број помал или еднаков на :value.',
|
||||
'string' => 'Полето :attribute мора да биде текст со помалку или еднаков на :value број на карактери.',
|
||||
],
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'Полето :attribute не може да има повеќе од :max елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека не поголема од :max килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број не поголем од :max.',
|
||||
'string' => 'Полето :attribute мора да има не повеќе од :max карактери.',
|
||||
],
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'Полето :attribute мора да биде датотека од типот: :values.',
|
||||
'mimetypes' => 'Полето :attribute мора да биде датотека од типот: :values.',
|
||||
'min' => [
|
||||
'array' => 'Полето :attribute мора да има минимум :min елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека не помала од :min килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број не помал од :min.',
|
||||
'string' => 'Полето :attribute мора да има не помалку од :min карактери.',
|
||||
],
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'Полето :attribute мора да биде повеќекратна вредност од :value',
|
||||
'not_in' => 'Избраното поле :attribute е невалидно.',
|
||||
'not_regex' => 'Полето :attribute има невалиден формат.',
|
||||
'numeric' => 'Полето :attribute мора да биде број.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'Полето :attribute мора да биде присутно.',
|
||||
'prohibited' => 'Во :attribute година полето е забрането.',
|
||||
'prohibited_if' => 'На :attribute поле е забрането кога :other е :value.',
|
||||
'prohibited_unless' => 'На :attribute поле е забранета освен ако не :other е во :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'Полето :attribute има невалиден формат.',
|
||||
'relatable' => 'Оваа :attribute може да не биде поврзана со овој ресурс.',
|
||||
'required' => 'Полето :attribute е задолжително.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'Полето :attribute е задолжително кога :other е :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'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' => [
|
||||
'array' => 'Полето :attribute мора да биде низа со :size број на елементи.',
|
||||
'file' => 'Полето :attribute мора да биде датотека со големина од :size килобајти.',
|
||||
'numeric' => 'Полето :attribute мора да биде број со вредност :size.',
|
||||
'string' => 'Полето :attribute мора да биде текст со должина од :size број на карактери.',
|
||||
],
|
||||
'starts_with' => 'Полето :attribute мора да започнува со една од следните вредности: :values.',
|
||||
'string' => 'Полето :attribute мора да биде текст.',
|
||||
'timezone' => 'Полето :attribute мора да биде валидна временска зона.',
|
||||
'unique' => 'Полето :attribute веќе постои.',
|
||||
'uploaded' => ':Attribute не е прикачен.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Полето :attribute не е во валиден формат.',
|
||||
'uuid' => 'Полето :attribute мора да биде валиден УУИД.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Błędny login lub hasło.',
|
||||
'password' => 'Hasło jest nieprawidłowe.',
|
||||
'throttle' => 'Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Błędny login lub hasło.',
|
||||
'password' => 'Hasło jest nieprawidłowe.',
|
||||
'throttle' => 'Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Nieznany błąd',
|
||||
'unknownError' => 'Nieznany błąd',
|
||||
100 => 'Kontynuuj',
|
||||
101 => 'Zmieniam protokoły',
|
||||
102 => 'Procesuję',
|
||||
200 => 'OK',
|
||||
201 => 'Utworzono',
|
||||
202 => 'Zaakceptowano',
|
||||
203 => 'Informacje nieautorytatywne',
|
||||
204 => 'Brak treści',
|
||||
205 => 'Zresetuj zawartość',
|
||||
206 => 'Częściowa zawartość',
|
||||
207 => 'Wielostanowy',
|
||||
208 => 'Już zgłoszone',
|
||||
226 => 'Użyto IM',
|
||||
300 => 'Wiele możliwości',
|
||||
301 => 'Przeniesiony na stałe',
|
||||
302 => 'Znaleziono',
|
||||
303 => 'Zobacz inne',
|
||||
304 => 'Niezmodyfikowany',
|
||||
305 => 'Użyj proxy',
|
||||
307 => 'Tymczasowe przekierowanie',
|
||||
308 => 'Stałe przekierowanie',
|
||||
400 => 'Nieprawidłowe żądanie',
|
||||
401 => 'Nieautoryzowany',
|
||||
402 => 'Płatność wymagana',
|
||||
403 => 'Zabroniony',
|
||||
404 => 'Nie znaleziono strony',
|
||||
405 => 'Metoda Niedozwolona',
|
||||
406 => 'Niedopuszczalne',
|
||||
407 => 'Wymagane Uwierzytelnianie Proxy',
|
||||
408 => 'Upłynął Limit czasu żądania',
|
||||
409 => 'Konflikt',
|
||||
410 => 'Zniknął',
|
||||
411 => 'Wymagana długość',
|
||||
412 => 'Warunek wstępny nie powiódł się',
|
||||
413 => 'Ładunek zbyt duży',
|
||||
414 => 'Zbyt długi identyfikator URI',
|
||||
415 => 'Nieobsługiwany typ nośnika',
|
||||
416 => 'Zakres niezadowalający',
|
||||
417 => 'Oczekiwanie nie powiodło się',
|
||||
418 => 'Jestem czajnikiem',
|
||||
419 => 'Sesja wygasła',
|
||||
421 => 'Błędnie skierowane żądanie',
|
||||
422 => 'Podmiot Nieprzetwarzalny',
|
||||
423 => 'Zablokowany',
|
||||
424 => 'Nieudana zależność',
|
||||
425 => 'Za wcześnie',
|
||||
426 => 'Wymagana aktualizacja',
|
||||
428 => 'Wymagany warunek wstępny',
|
||||
429 => 'Zbyt wiele żądań',
|
||||
431 => 'Za duże pola nagłówka żądania',
|
||||
444 => 'Połączenie zamknięte bez odpowiedzi',
|
||||
449 => 'Spróbuj ponownie z',
|
||||
451 => 'Niedostępne ze względów prawnych',
|
||||
499 => 'Zamknięte żądanie klienta',
|
||||
500 => 'Wewnętrzny błąd serwera',
|
||||
501 => 'Nie zaimplementowano',
|
||||
502 => 'Zła brama',
|
||||
503 => 'Tryb konserwacji',
|
||||
504 => 'Przekroczenie limitu czasu bramy',
|
||||
505 => 'Wersja HTTP nie jest obsługiwana',
|
||||
506 => 'Wariant również negocjuje',
|
||||
507 => 'Niewystarczające miejsce do przechowywania',
|
||||
508 => 'Wykryto pętlę',
|
||||
509 => 'Przekroczono limit przepustowości',
|
||||
510 => 'Nie rozszerzona',
|
||||
511 => 'Wymagane Uwierzytelnianie Sieci',
|
||||
520 => 'Nieznany błąd',
|
||||
521 => 'Serwer sieciowy nie działa',
|
||||
522 => 'Przekroczono limit czasu połączenia',
|
||||
523 => 'Pochodzenie jest nieosiągalne',
|
||||
524 => 'Wystąpił limit czasu',
|
||||
525 => 'Nieudane uzgadnianie SSL',
|
||||
526 => 'Nieprawidłowy Certyfikat SSL',
|
||||
527 => 'Błąd Railguna',
|
||||
598 => 'Błąd limitu czasu odczytu sieci',
|
||||
599 => 'Błąd limitu czasu połączenia sieciowego',
|
||||
);
|
||||
return [
|
||||
0 => 'Nieznany błąd',
|
||||
'unknownError' => 'Nieznany błąd',
|
||||
100 => 'Kontynuuj',
|
||||
101 => 'Zmieniam protokoły',
|
||||
102 => 'Procesuję',
|
||||
200 => 'OK',
|
||||
201 => 'Utworzono',
|
||||
202 => 'Zaakceptowano',
|
||||
203 => 'Informacje nieautorytatywne',
|
||||
204 => 'Brak treści',
|
||||
205 => 'Zresetuj zawartość',
|
||||
206 => 'Częściowa zawartość',
|
||||
207 => 'Wielostanowy',
|
||||
208 => 'Już zgłoszone',
|
||||
226 => 'Użyto IM',
|
||||
300 => 'Wiele możliwości',
|
||||
301 => 'Przeniesiony na stałe',
|
||||
302 => 'Znaleziono',
|
||||
303 => 'Zobacz inne',
|
||||
304 => 'Niezmodyfikowany',
|
||||
305 => 'Użyj proxy',
|
||||
307 => 'Tymczasowe przekierowanie',
|
||||
308 => 'Stałe przekierowanie',
|
||||
400 => 'Nieprawidłowe żądanie',
|
||||
401 => 'Nieautoryzowany',
|
||||
402 => 'Płatność wymagana',
|
||||
403 => 'Zabroniony',
|
||||
404 => 'Nie znaleziono strony',
|
||||
405 => 'Metoda Niedozwolona',
|
||||
406 => 'Niedopuszczalne',
|
||||
407 => 'Wymagane Uwierzytelnianie Proxy',
|
||||
408 => 'Upłynął Limit czasu żądania',
|
||||
409 => 'Konflikt',
|
||||
410 => 'Zniknął',
|
||||
411 => 'Wymagana długość',
|
||||
412 => 'Warunek wstępny nie powiódł się',
|
||||
413 => 'Ładunek zbyt duży',
|
||||
414 => 'Zbyt długi identyfikator URI',
|
||||
415 => 'Nieobsługiwany typ nośnika',
|
||||
416 => 'Zakres niezadowalający',
|
||||
417 => 'Oczekiwanie nie powiodło się',
|
||||
418 => 'Jestem czajnikiem',
|
||||
419 => 'Sesja wygasła',
|
||||
421 => 'Błędnie skierowane żądanie',
|
||||
422 => 'Podmiot Nieprzetwarzalny',
|
||||
423 => 'Zablokowany',
|
||||
424 => 'Nieudana zależność',
|
||||
425 => 'Za wcześnie',
|
||||
426 => 'Wymagana aktualizacja',
|
||||
428 => 'Wymagany warunek wstępny',
|
||||
429 => 'Zbyt wiele żądań',
|
||||
431 => 'Za duże pola nagłówka żądania',
|
||||
444 => 'Połączenie zamknięte bez odpowiedzi',
|
||||
449 => 'Spróbuj ponownie z',
|
||||
451 => 'Niedostępne ze względów prawnych',
|
||||
499 => 'Zamknięte żądanie klienta',
|
||||
500 => 'Wewnętrzny błąd serwera',
|
||||
501 => 'Nie zaimplementowano',
|
||||
502 => 'Zła brama',
|
||||
503 => 'Tryb konserwacji',
|
||||
504 => 'Przekroczenie limitu czasu bramy',
|
||||
505 => 'Wersja HTTP nie jest obsługiwana',
|
||||
506 => 'Wariant również negocjuje',
|
||||
507 => 'Niewystarczające miejsce do przechowywania',
|
||||
508 => 'Wykryto pętlę',
|
||||
509 => 'Przekroczono limit przepustowości',
|
||||
510 => 'Nie rozszerzona',
|
||||
511 => 'Wymagane Uwierzytelnianie Sieci',
|
||||
520 => 'Nieznany błąd',
|
||||
521 => 'Serwer sieciowy nie działa',
|
||||
522 => 'Przekroczono limit czasu połączenia',
|
||||
523 => 'Pochodzenie jest nieosiągalne',
|
||||
524 => 'Wystąpił limit czasu',
|
||||
525 => 'Nieudane uzgadnianie SSL',
|
||||
526 => 'Nieprawidłowy Certyfikat SSL',
|
||||
527 => 'Błąd Railguna',
|
||||
598 => 'Błąd limitu czasu odczytu sieci',
|
||||
599 => 'Błąd limitu czasu połączenia sieciowego',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Następna »',
|
||||
'previous' => '« Poprzednia',
|
||||
);
|
||||
return [
|
||||
'next' => 'Następna »',
|
||||
'previous' => '« Poprzednia',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Hasło zostało zresetowane!',
|
||||
'sent' => 'Przypomnienie hasła zostało wysłane!',
|
||||
'throttled' => 'Proszę zaczekać zanim spróbujesz ponownie.',
|
||||
'token' => 'Token resetowania hasła jest nieprawidłowy.',
|
||||
'user' => 'Nie znaleziono użytkownika z takim adresem e-mail.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Hasło zostało zresetowane!',
|
||||
'sent' => 'Przypomnienie hasła zostało wysłane!',
|
||||
'throttled' => 'Proszę zaczekać zanim spróbujesz ponownie.',
|
||||
'token' => 'Token resetowania hasła jest nieprawidłowy.',
|
||||
'user' => 'Nie znaleziono użytkownika z takim adresem e-mail.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'Pole :attribute musi zostać zaakceptowane.',
|
||||
'accepted_if' => 'Pole :attribute musi zostać zaakceptowane gdy :other ma wartość :value.',
|
||||
'active_url' => 'Pole :attribute jest nieprawidłowym adresem URL.',
|
||||
'after' => 'Pole :attribute musi być datą późniejszą od :date.',
|
||||
'after_or_equal' => 'Pole :attribute musi być datą nie wcześniejszą niż :date.',
|
||||
'alpha' => 'Pole :attribute może zawierać jedynie litery.',
|
||||
'alpha_dash' => 'Pole :attribute może zawierać jedynie litery, cyfry i myślniki.',
|
||||
'alpha_num' => 'Pole :attribute może zawierać jedynie litery i cyfry.',
|
||||
'array' => 'Pole :attribute musi być tablicą.',
|
||||
'attached' => 'Pole :attribute jest już dołączony.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'adres',
|
||||
'age' => 'wiek',
|
||||
'amount' => 'ilość',
|
||||
'area' => 'obszar',
|
||||
'available' => 'dostępny',
|
||||
'birthday' => 'urodziny',
|
||||
'body' => 'treść',
|
||||
'city' => 'miasto',
|
||||
'content' => 'zawartość',
|
||||
'country' => 'kraj',
|
||||
'created_at' => 'utworzono',
|
||||
'creator' => 'twórca',
|
||||
'current_password' => 'aktualne hasło',
|
||||
'date' => 'data',
|
||||
'date_of_birth' => 'data urodzenia',
|
||||
'day' => 'dzień',
|
||||
'deleted_at' => 'skasowano',
|
||||
'description' => 'opis',
|
||||
'district' => 'dzielnica',
|
||||
'duration' => 'czas trwania',
|
||||
'email' => 'adres e-mail',
|
||||
'excerpt' => 'wyjątek',
|
||||
'filter' => 'filtr',
|
||||
'first_name' => 'imię',
|
||||
'gender' => 'płeć',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'godzina',
|
||||
'image' => 'obrazek',
|
||||
'last_name' => 'nazwisko',
|
||||
'lesson' => 'lekcja',
|
||||
'line_address_1' => 'adres 1',
|
||||
'line_address_2' => 'adres 2',
|
||||
'message' => 'wiadomość',
|
||||
'middle_name' => 'drugie imię',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'numer telefonu komórkowego',
|
||||
'month' => 'miesiąc',
|
||||
'name' => 'nazwa',
|
||||
'national_code' => 'kod kraju',
|
||||
'number' => 'numer',
|
||||
'password' => 'hasło',
|
||||
'password_confirmation' => 'potwierdzenie hasła',
|
||||
'phone' => 'numer telefonu',
|
||||
'photo' => 'zdjęcie',
|
||||
'postal_code' => 'kod pocztowy',
|
||||
'price' => 'cena',
|
||||
'province' => 'prowincja',
|
||||
'recaptcha_response_field' => 'pole odpowiedzi recaptcha',
|
||||
'remember' => 'zapamiętaj',
|
||||
'restored_at' => 'odtworzono',
|
||||
'result_text_under_image' => 'wynikowy tekst pod obrazkiem',
|
||||
'role' => 'rola',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'płeć',
|
||||
'short_text' => 'krótki tekst',
|
||||
'size' => 'rozmiar',
|
||||
'state' => 'stan',
|
||||
'street' => 'ulica',
|
||||
'student' => 'uczeń',
|
||||
'subject' => 'temat',
|
||||
'teacher' => 'nauczyciel',
|
||||
'terms' => 'warunki',
|
||||
'test_description' => 'testowy opis',
|
||||
'test_locale' => 'testowa lokalizacja',
|
||||
'test_name' => 'testowe imię',
|
||||
'text' => 'tekst',
|
||||
'time' => 'czas',
|
||||
'title' => 'tytuł',
|
||||
'updated_at' => 'zaktualizowano',
|
||||
'username' => 'nazwa użytkownika',
|
||||
'year' => 'rok',
|
||||
),
|
||||
'before' => 'Pole :attribute musi być datą wcześniejszą od :date.',
|
||||
'before_or_equal' => 'Pole :attribute musi być datą nie późniejszą niż :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi składać się z :min - :max elementów.',
|
||||
'file' => 'Pole :attribute musi zawierać się w granicach :min - :max kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi zawierać się w granicach :min - :max.',
|
||||
'string' => 'Pole :attribute musi zawierać się w granicach :min - :max znaków.',
|
||||
),
|
||||
'boolean' => 'Pole :attribute musi mieć wartość logiczną prawda albo fałsz.',
|
||||
'confirmed' => 'Potwierdzenie pola :attribute nie zgadza się.',
|
||||
'current_password' => 'Hasło jest nieprawidłowe.',
|
||||
'date' => 'Pole :attribute nie jest prawidłową datą.',
|
||||
'date_equals' => 'Pole :attribute musi być datą równą :date.',
|
||||
'date_format' => 'Pole :attribute nie jest w formacie :format.',
|
||||
'declined' => 'Pole :attribute musi zostać odrzucony.',
|
||||
'declined_if' => 'Pole :attribute musi zostać odrzucony, gdy :other ma wartość :value.',
|
||||
'different' => 'Pole :attribute oraz :other muszą się różnić.',
|
||||
'digits' => 'Pole :attribute musi składać się z :digits cyfr.',
|
||||
'digits_between' => 'Pole :attribute musi mieć od :min do :max cyfr.',
|
||||
'dimensions' => 'Pole :attribute ma niepoprawne wymiary.',
|
||||
'distinct' => 'Pole :attribute ma zduplikowane wartości.',
|
||||
'doesnt_end_with' => 'Pole :attribute nie może kończyć się jednym z następujących wartości: :values.',
|
||||
'doesnt_start_with' => 'Pole :attribute nie może zaczynać się od jednego z następujących wartości: :values.',
|
||||
'email' => 'Pole :attribute nie jest poprawnym adresem e-mail.',
|
||||
'ends_with' => 'Pole :attribute musi kończyć się jedną z następujących wartości: :values.',
|
||||
'enum' => 'Pole :attribute ma niepoprawną wartość.',
|
||||
'exists' => 'Zaznaczone pole :attribute jest nieprawidłowe.',
|
||||
'file' => 'Pole :attribute musi być plikiem.',
|
||||
'filled' => 'Pole :attribute nie może być puste.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi mieć więcej niż :value elementów.',
|
||||
'file' => 'Pole :attribute musi być większe niż :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być większe niż :value.',
|
||||
'string' => 'Pole :attribute musi być dłuższe niż :value znaków.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi mieć :value lub więcej elementów.',
|
||||
'file' => 'Pole :attribute musi być większe lub równe :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być większe lub równe :value.',
|
||||
'string' => 'Pole :attribute musi być dłuższe lub równe :value znaków.',
|
||||
),
|
||||
'image' => 'Pole :attribute musi być obrazkiem.',
|
||||
'in' => 'Zaznaczony element :attribute jest nieprawidłowy.',
|
||||
'in_array' => 'Pole :attribute nie znajduje się w :other.',
|
||||
'integer' => 'Pole :attribute musi być liczbą całkowitą.',
|
||||
'ip' => 'Pole :attribute musi być prawidłowym adresem IP.',
|
||||
'ipv4' => 'Pole :attribute musi być prawidłowym adresem IPv4.',
|
||||
'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.',
|
||||
'json' => 'Pole :attribute musi być poprawnym ciągiem znaków JSON.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi mieć mniej niż :value elementów.',
|
||||
'file' => 'Pole :attribute musi być mniejsze niż :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być mniejsze niż :value.',
|
||||
'string' => 'Pole :attribute musi być krótsze niż :value znaków.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi mieć :value lub mniej elementów.',
|
||||
'file' => 'Pole :attribute musi być mniejsze lub równe :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być mniejsze lub równe :value.',
|
||||
'string' => 'Pole :attribute musi być krótsze lub równe :value znaków.',
|
||||
),
|
||||
'mac_address' => 'Pole :attribute musi być prawidłowym adresem MAC.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute nie może mieć więcej niż :max elementów.',
|
||||
'file' => 'Pole :attribute nie może być większe niż :max kilobajtów.',
|
||||
'numeric' => 'Pole :attribute nie może być większe niż :max.',
|
||||
'string' => 'Pole :attribute nie może być dłuższe niż :max znaków.',
|
||||
),
|
||||
'max_digits' => 'Pole :attribute nie może mieć więcej niż :max cyfr.',
|
||||
'mimes' => 'Pole :attribute musi być plikiem typu :values.',
|
||||
'mimetypes' => 'Pole :attribute musi być plikiem typu :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi mieć przynajmniej :min elementów.',
|
||||
'file' => 'Pole :attribute musi mieć przynajmniej :min kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być nie mniejsze od :min.',
|
||||
'string' => 'Pole :attribute musi mieć przynajmniej :min znaków.',
|
||||
),
|
||||
'min_digits' => 'Pole :attribute musi mieć co najmniej :min cyfr.',
|
||||
'multiple_of' => 'Pole :attribute musi być wielokrotnością wartości :value',
|
||||
'not_in' => 'Zaznaczony :attribute jest nieprawidłowy.',
|
||||
'not_regex' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'numeric' => 'Pole :attribute musi być liczbą.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'Pole :attribute musi zawierać przynajmniej jedną literę.',
|
||||
'mixed' => 'Pole :attribute musi zawierać przynajmniej jedną wielką i jedną małą literę.',
|
||||
'numbers' => 'Pole :attribute musi zawierać przynajmniej jedną liczbę.',
|
||||
'symbols' => 'Pole :attribute musi zawierać przynajmniej jeden symbol.',
|
||||
'uncompromised' => 'Podany :attribute pojawił się w wycieku danych. Proszę wybrać inną wartość :attribute.',
|
||||
),
|
||||
'present' => 'Pole :attribute musi być obecne.',
|
||||
'prohibited' => 'Pole :attribute jest zabronione.',
|
||||
'prohibited_if' => 'Pole :attribute jest zabronione, gdy :other to :value.',
|
||||
'prohibited_unless' => 'Pole :attribute jest zabronione, chyba że :other jest w :values.',
|
||||
'prohibits' => 'Pole :attribute zabrania obecności :other.',
|
||||
'regex' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'relatable' => 'Pole :attribute nie może być powiązany z tym zasobem.',
|
||||
'required' => 'Pole :attribute jest wymagane.',
|
||||
'required_array_keys' => 'Pole :attribute musi zawierać wartości: :values.',
|
||||
'required_if' => 'Pole :attribute jest wymagane gdy :other ma wartość :value.',
|
||||
'required_if_accepted' => 'To pole jest wymagane gdy :other jest zaakceptowane.',
|
||||
'required_unless' => 'Pole :attribute jest wymagane jeżeli :other nie znajduje się w :values.',
|
||||
'required_with' => 'Pole :attribute jest wymagane gdy :values jest obecny.',
|
||||
'required_with_all' => 'Pole :attribute jest wymagane gdy wszystkie :values są obecne.',
|
||||
'required_without' => 'Pole :attribute jest wymagane gdy :values nie jest obecny.',
|
||||
'required_without_all' => 'Pole :attribute jest wymagane gdy żadne z :values nie są obecne.',
|
||||
'same' => 'Pole :attribute i :other muszą być takie same.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'Pole :attribute musi zawierać :size elementów.',
|
||||
'file' => 'Pole :attribute musi mieć :size kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi mieć :size.',
|
||||
'string' => 'Pole :attribute musi mieć :size znaków.',
|
||||
),
|
||||
'starts_with' => 'Pole :attribute musi zaczynać się jedną z następujących wartości: :values.',
|
||||
'string' => 'Pole :attribute musi być ciągiem znaków.',
|
||||
'timezone' => 'Pole :attribute musi być prawidłową strefą czasową.',
|
||||
'unique' => 'Taki :attribute już występuje.',
|
||||
'uploaded' => 'Nie udało się wgrać pliku :attribute.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'uuid' => 'Pole :attribute musi być poprawnym identyfikatorem UUID.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'Pole :attribute musi zostać zaakceptowane.',
|
||||
'accepted_if' => 'Pole :attribute musi zostać zaakceptowane gdy :other ma wartość :value.',
|
||||
'active_url' => 'Pole :attribute jest nieprawidłowym adresem URL.',
|
||||
'after' => 'Pole :attribute musi być datą późniejszą od :date.',
|
||||
'after_or_equal' => 'Pole :attribute musi być datą nie wcześniejszą niż :date.',
|
||||
'alpha' => 'Pole :attribute może zawierać jedynie litery.',
|
||||
'alpha_dash' => 'Pole :attribute może zawierać jedynie litery, cyfry i myślniki.',
|
||||
'alpha_num' => 'Pole :attribute może zawierać jedynie litery i cyfry.',
|
||||
'array' => 'Pole :attribute musi być tablicą.',
|
||||
'attached' => 'Pole :attribute jest już dołączony.',
|
||||
'attributes' => [
|
||||
'address' => 'adres',
|
||||
'age' => 'wiek',
|
||||
'amount' => 'ilość',
|
||||
'area' => 'obszar',
|
||||
'available' => 'dostępny',
|
||||
'birthday' => 'urodziny',
|
||||
'body' => 'treść',
|
||||
'city' => 'miasto',
|
||||
'content' => 'zawartość',
|
||||
'country' => 'kraj',
|
||||
'created_at' => 'utworzono',
|
||||
'creator' => 'twórca',
|
||||
'current_password' => 'aktualne hasło',
|
||||
'date' => 'data',
|
||||
'date_of_birth' => 'data urodzenia',
|
||||
'day' => 'dzień',
|
||||
'deleted_at' => 'skasowano',
|
||||
'description' => 'opis',
|
||||
'district' => 'dzielnica',
|
||||
'duration' => 'czas trwania',
|
||||
'email' => 'adres e-mail',
|
||||
'excerpt' => 'wyjątek',
|
||||
'filter' => 'filtr',
|
||||
'first_name' => 'imię',
|
||||
'gender' => 'płeć',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'godzina',
|
||||
'image' => 'obrazek',
|
||||
'last_name' => 'nazwisko',
|
||||
'lesson' => 'lekcja',
|
||||
'line_address_1' => 'adres 1',
|
||||
'line_address_2' => 'adres 2',
|
||||
'message' => 'wiadomość',
|
||||
'middle_name' => 'drugie imię',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'numer telefonu komórkowego',
|
||||
'month' => 'miesiąc',
|
||||
'name' => 'nazwa',
|
||||
'national_code' => 'kod kraju',
|
||||
'number' => 'numer',
|
||||
'password' => 'hasło',
|
||||
'password_confirmation' => 'potwierdzenie hasła',
|
||||
'phone' => 'numer telefonu',
|
||||
'photo' => 'zdjęcie',
|
||||
'postal_code' => 'kod pocztowy',
|
||||
'price' => 'cena',
|
||||
'province' => 'prowincja',
|
||||
'recaptcha_response_field' => 'pole odpowiedzi recaptcha',
|
||||
'remember' => 'zapamiętaj',
|
||||
'restored_at' => 'odtworzono',
|
||||
'result_text_under_image' => 'wynikowy tekst pod obrazkiem',
|
||||
'role' => 'rola',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'płeć',
|
||||
'short_text' => 'krótki tekst',
|
||||
'size' => 'rozmiar',
|
||||
'state' => 'stan',
|
||||
'street' => 'ulica',
|
||||
'student' => 'uczeń',
|
||||
'subject' => 'temat',
|
||||
'teacher' => 'nauczyciel',
|
||||
'terms' => 'warunki',
|
||||
'test_description' => 'testowy opis',
|
||||
'test_locale' => 'testowa lokalizacja',
|
||||
'test_name' => 'testowe imię',
|
||||
'text' => 'tekst',
|
||||
'time' => 'czas',
|
||||
'title' => 'tytuł',
|
||||
'updated_at' => 'zaktualizowano',
|
||||
'username' => 'nazwa użytkownika',
|
||||
'year' => 'rok',
|
||||
],
|
||||
'before' => 'Pole :attribute musi być datą wcześniejszą od :date.',
|
||||
'before_or_equal' => 'Pole :attribute musi być datą nie późniejszą niż :date.',
|
||||
'between' => [
|
||||
'array' => 'Pole :attribute musi składać się z :min - :max elementów.',
|
||||
'file' => 'Pole :attribute musi zawierać się w granicach :min - :max kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi zawierać się w granicach :min - :max.',
|
||||
'string' => 'Pole :attribute musi zawierać się w granicach :min - :max znaków.',
|
||||
],
|
||||
'boolean' => 'Pole :attribute musi mieć wartość logiczną prawda albo fałsz.',
|
||||
'confirmed' => 'Potwierdzenie pola :attribute nie zgadza się.',
|
||||
'current_password' => 'Hasło jest nieprawidłowe.',
|
||||
'date' => 'Pole :attribute nie jest prawidłową datą.',
|
||||
'date_equals' => 'Pole :attribute musi być datą równą :date.',
|
||||
'date_format' => 'Pole :attribute nie jest w formacie :format.',
|
||||
'declined' => 'Pole :attribute musi zostać odrzucony.',
|
||||
'declined_if' => 'Pole :attribute musi zostać odrzucony, gdy :other ma wartość :value.',
|
||||
'different' => 'Pole :attribute oraz :other muszą się różnić.',
|
||||
'digits' => 'Pole :attribute musi składać się z :digits cyfr.',
|
||||
'digits_between' => 'Pole :attribute musi mieć od :min do :max cyfr.',
|
||||
'dimensions' => 'Pole :attribute ma niepoprawne wymiary.',
|
||||
'distinct' => 'Pole :attribute ma zduplikowane wartości.',
|
||||
'doesnt_end_with' => 'Pole :attribute nie może kończyć się jednym z następujących wartości: :values.',
|
||||
'doesnt_start_with' => 'Pole :attribute nie może zaczynać się od jednego z następujących wartości: :values.',
|
||||
'email' => 'Pole :attribute nie jest poprawnym adresem e-mail.',
|
||||
'ends_with' => 'Pole :attribute musi kończyć się jedną z następujących wartości: :values.',
|
||||
'enum' => 'Pole :attribute ma niepoprawną wartość.',
|
||||
'exists' => 'Zaznaczone pole :attribute jest nieprawidłowe.',
|
||||
'file' => 'Pole :attribute musi być plikiem.',
|
||||
'filled' => 'Pole :attribute nie może być puste.',
|
||||
'gt' => [
|
||||
'array' => 'Pole :attribute musi mieć więcej niż :value elementów.',
|
||||
'file' => 'Pole :attribute musi być większe niż :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być większe niż :value.',
|
||||
'string' => 'Pole :attribute musi być dłuższe niż :value znaków.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Pole :attribute musi mieć :value lub więcej elementów.',
|
||||
'file' => 'Pole :attribute musi być większe lub równe :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być większe lub równe :value.',
|
||||
'string' => 'Pole :attribute musi być dłuższe lub równe :value znaków.',
|
||||
],
|
||||
'image' => 'Pole :attribute musi być obrazkiem.',
|
||||
'in' => 'Zaznaczony element :attribute jest nieprawidłowy.',
|
||||
'in_array' => 'Pole :attribute nie znajduje się w :other.',
|
||||
'integer' => 'Pole :attribute musi być liczbą całkowitą.',
|
||||
'ip' => 'Pole :attribute musi być prawidłowym adresem IP.',
|
||||
'ipv4' => 'Pole :attribute musi być prawidłowym adresem IPv4.',
|
||||
'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.',
|
||||
'json' => 'Pole :attribute musi być poprawnym ciągiem znaków JSON.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'Pole :attribute musi mieć mniej niż :value elementów.',
|
||||
'file' => 'Pole :attribute musi być mniejsze niż :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być mniejsze niż :value.',
|
||||
'string' => 'Pole :attribute musi być krótsze niż :value znaków.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Pole :attribute musi mieć :value lub mniej elementów.',
|
||||
'file' => 'Pole :attribute musi być mniejsze lub równe :value kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być mniejsze lub równe :value.',
|
||||
'string' => 'Pole :attribute musi być krótsze lub równe :value znaków.',
|
||||
],
|
||||
'mac_address' => 'Pole :attribute musi być prawidłowym adresem MAC.',
|
||||
'max' => [
|
||||
'array' => 'Pole :attribute nie może mieć więcej niż :max elementów.',
|
||||
'file' => 'Pole :attribute nie może być większe niż :max kilobajtów.',
|
||||
'numeric' => 'Pole :attribute nie może być większe niż :max.',
|
||||
'string' => 'Pole :attribute nie może być dłuższe niż :max znaków.',
|
||||
],
|
||||
'max_digits' => 'Pole :attribute nie może mieć więcej niż :max cyfr.',
|
||||
'mimes' => 'Pole :attribute musi być plikiem typu :values.',
|
||||
'mimetypes' => 'Pole :attribute musi być plikiem typu :values.',
|
||||
'min' => [
|
||||
'array' => 'Pole :attribute musi mieć przynajmniej :min elementów.',
|
||||
'file' => 'Pole :attribute musi mieć przynajmniej :min kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi być nie mniejsze od :min.',
|
||||
'string' => 'Pole :attribute musi mieć przynajmniej :min znaków.',
|
||||
],
|
||||
'min_digits' => 'Pole :attribute musi mieć co najmniej :min cyfr.',
|
||||
'multiple_of' => 'Pole :attribute musi być wielokrotnością wartości :value',
|
||||
'not_in' => 'Zaznaczony :attribute jest nieprawidłowy.',
|
||||
'not_regex' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'numeric' => 'Pole :attribute musi być liczbą.',
|
||||
'password' => [
|
||||
'letters' => 'Pole :attribute musi zawierać przynajmniej jedną literę.',
|
||||
'mixed' => 'Pole :attribute musi zawierać przynajmniej jedną wielką i jedną małą literę.',
|
||||
'numbers' => 'Pole :attribute musi zawierać przynajmniej jedną liczbę.',
|
||||
'symbols' => 'Pole :attribute musi zawierać przynajmniej jeden symbol.',
|
||||
'uncompromised' => 'Podany :attribute pojawił się w wycieku danych. Proszę wybrać inną wartość :attribute.',
|
||||
],
|
||||
'present' => 'Pole :attribute musi być obecne.',
|
||||
'prohibited' => 'Pole :attribute jest zabronione.',
|
||||
'prohibited_if' => 'Pole :attribute jest zabronione, gdy :other to :value.',
|
||||
'prohibited_unless' => 'Pole :attribute jest zabronione, chyba że :other jest w :values.',
|
||||
'prohibits' => 'Pole :attribute zabrania obecności :other.',
|
||||
'regex' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'relatable' => 'Pole :attribute nie może być powiązany z tym zasobem.',
|
||||
'required' => 'Pole :attribute jest wymagane.',
|
||||
'required_array_keys' => 'Pole :attribute musi zawierać wartości: :values.',
|
||||
'required_if' => 'Pole :attribute jest wymagane gdy :other ma wartość :value.',
|
||||
'required_if_accepted' => 'To pole jest wymagane gdy :other jest zaakceptowane.',
|
||||
'required_unless' => 'Pole :attribute jest wymagane jeżeli :other nie znajduje się w :values.',
|
||||
'required_with' => 'Pole :attribute jest wymagane gdy :values jest obecny.',
|
||||
'required_with_all' => 'Pole :attribute jest wymagane gdy wszystkie :values są obecne.',
|
||||
'required_without' => 'Pole :attribute jest wymagane gdy :values nie jest obecny.',
|
||||
'required_without_all' => 'Pole :attribute jest wymagane gdy żadne z :values nie są obecne.',
|
||||
'same' => 'Pole :attribute i :other muszą być takie same.',
|
||||
'size' => [
|
||||
'array' => 'Pole :attribute musi zawierać :size elementów.',
|
||||
'file' => 'Pole :attribute musi mieć :size kilobajtów.',
|
||||
'numeric' => 'Pole :attribute musi mieć :size.',
|
||||
'string' => 'Pole :attribute musi mieć :size znaków.',
|
||||
],
|
||||
'starts_with' => 'Pole :attribute musi zaczynać się jedną z następujących wartości: :values.',
|
||||
'string' => 'Pole :attribute musi być ciągiem znaków.',
|
||||
'timezone' => 'Pole :attribute musi być prawidłową strefą czasową.',
|
||||
'unique' => 'Taki :attribute już występuje.',
|
||||
'uploaded' => 'Nie udało się wgrać pliku :attribute.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Format pola :attribute jest nieprawidłowy.',
|
||||
'uuid' => 'Pole :attribute musi być poprawnym identyfikatorem UUID.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'As credenciais indicadas não coincidem com as registadas no sistema.',
|
||||
'password' => 'A password está errada.',
|
||||
'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'As credenciais indicadas não coincidem com as registadas no sistema.',
|
||||
'password' => 'A password está errada.',
|
||||
'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Próxima »',
|
||||
'previous' => '« Anterior',
|
||||
);
|
||||
return [
|
||||
'next' => 'Próxima »',
|
||||
'previous' => '« Anterior',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'A palavra-passe foi redefinida!',
|
||||
'sent' => 'O lembrete para a palavra-passe foi enviado!',
|
||||
'throttled' => 'Por favor aguarde, antes de tentar novamente.',
|
||||
'token' => 'Este código de recuperação da palavra-passe é inválido.',
|
||||
'user' => 'Não existe nenhum utilizador com o e-mail indicado.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'A palavra-passe foi redefinida!',
|
||||
'sent' => 'O lembrete para a palavra-passe foi enviado!',
|
||||
'throttled' => 'Por favor aguarde, antes de tentar novamente.',
|
||||
'token' => 'Este código de recuperação da palavra-passe é inválido.',
|
||||
'user' => 'Não existe nenhum utilizador com o e-mail indicado.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'O campo :attribute deverá ser aceite.',
|
||||
'accepted_if' => 'O :attribute deve ser aceite quando o :other é :value.',
|
||||
'active_url' => 'O campo :attribute não contém um URL válido.',
|
||||
'after' => 'O campo :attribute deverá conter uma data posterior a :date.',
|
||||
'after_or_equal' => 'O campo :attribute deverá conter uma data posterior ou igual a :date.',
|
||||
'alpha' => 'O campo :attribute deverá conter apenas letras.',
|
||||
'alpha_dash' => 'O campo :attribute deverá conter apenas letras, números e traços.',
|
||||
'alpha_num' => 'O campo :attribute deverá conter apenas letras e números .',
|
||||
'array' => 'O campo :attribute deverá conter uma coleção de elementos.',
|
||||
'attached' => 'Este :attribute já está anexado.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
),
|
||||
'before' => 'O campo :attribute deverá conter uma data anterior a :date.',
|
||||
'before_or_equal' => 'O Campo :attribute deverá conter uma data anterior ou igual a :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute deverá conter entre :min - :max elementos.',
|
||||
'file' => 'O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.',
|
||||
'string' => 'O campo :attribute deverá conter entre :min - :max caracteres.',
|
||||
),
|
||||
'boolean' => 'O campo :attribute deverá conter o valor verdadeiro ou falso.',
|
||||
'confirmed' => 'A confirmação para o campo :attribute não coincide.',
|
||||
'current_password' => 'A palavra-passe está incorreta.',
|
||||
'date' => 'O campo :attribute não contém uma data válida.',
|
||||
'date_equals' => 'O campo :attribute tem de ser uma data igual a :date.',
|
||||
'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
|
||||
'declined' => 'O :attribute deve ser recusado.',
|
||||
'declined_if' => 'O :attribute deve ser recusado quando :other é :value.',
|
||||
'different' => 'Os campos :attribute e :other deverão conter valores diferentes.',
|
||||
'digits' => 'O campo :attribute deverá conter :digits caracteres.',
|
||||
'digits_between' => 'O campo :attribute deverá conter entre :min a :max caracteres.',
|
||||
'dimensions' => 'O campo :attribute deverá conter uma dimensão de imagem válida.',
|
||||
'distinct' => 'O campo :attribute contém um valor duplicado.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'O campo :attribute não contém um endereço de e-mail válido.',
|
||||
'ends_with' => 'O campo :attribute deverá terminar com : :values.',
|
||||
'enum' => 'O :attribute selecionado é inválido.',
|
||||
'exists' => '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' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute tem de ter mais de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter mais de :value quilobytes.',
|
||||
'numeric' => 'O campo :attribute tem de ser maior do que :value.',
|
||||
'string' => 'O campo :attribute tem de ter mais de :value caracteres.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute tem de ter :value itens ou mais.',
|
||||
'file' => 'O campo :attribute tem de ter :value quilobytes ou mais.',
|
||||
'numeric' => 'O campo :attribute tem de ser maior ou igual a :value.',
|
||||
'string' => 'O campo :attribute tem de ter :value caracteres ou mais.',
|
||||
),
|
||||
'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.',
|
||||
'integer' => 'O campo :attribute deverá conter um número inteiro.',
|
||||
'ip' => 'O campo :attribute deverá conter um IP válido.',
|
||||
'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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute tem de ter menos de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter menos de :value quilobytes.',
|
||||
'numeric' => 'O campo :attribute tem de ser inferior a :value.',
|
||||
'string' => 'O campo :attribute tem de ter menos de :value caracteres.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute não pode ter mais de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter :value quilobytes ou menos.',
|
||||
'numeric' => 'O campo :attribute tem de ser inferior ou igual a :value.',
|
||||
'string' => 'O campo :attribute tem de ter :value caracteres ou menos.',
|
||||
),
|
||||
'mac_address' => 'O :attribute deve ser um endereço MAC válido.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute não deverá conter mais de :max elementos.',
|
||||
'file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.',
|
||||
'numeric' => 'O campo :attribute não deverá conter um valor superior a :max.',
|
||||
'string' => 'O campo :attribute não deverá conter mais de :max caracteres.',
|
||||
),
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'O campo :attribute deverá conter um ficheiro do tipo: :values.',
|
||||
'mimetypes' => 'O campo :attribute deverá conter um ficheiro do tipo: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute deverá conter no mínimo :min elementos.',
|
||||
'file' => 'O campo :attribute deverá ter no mínimo :min kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá ter um valor superior ou igual a :min.',
|
||||
'string' => 'O campo :attribute deverá conter no mínimo :min caracteres.',
|
||||
),
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'O :attribute deve ser um múltiplo de :value',
|
||||
'not_in' => 'O campo :attribute contém um valor inválido.',
|
||||
'not_regex' => 'O formato de :attribute não é válido',
|
||||
'numeric' => 'O campo :attribute deverá conter um valor numérico.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
),
|
||||
'present' => 'O campo :attribute deverá estar presente.',
|
||||
'prohibited' => 'O campo :attribute é proibido.',
|
||||
'prohibited_if' => 'O campo :attribute é proibido quando :other é :value.',
|
||||
'prohibited_unless' => 'O campo :attribute é proibido a menos que :other esteja em :values.',
|
||||
'prohibits' => 'O campo :attribute proíbe :other de estar presente.',
|
||||
'regex' => 'O formato do valor para o campo :attribute é inválido.',
|
||||
'relatable' => 'Este :attribute pode não estar associado a este recurso.',
|
||||
'required' => 'É obrigatória a indicação de um valor para o campo :attribute.',
|
||||
'required_array_keys' => 'O campo :attribute deve conter entradas para: :values.',
|
||||
'required_if' => 'É obrigatória a indicação de um valor para o campo :attribute quando o valor do campo :other é igual a :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => 'É obrigatória a indicação de um valor para o campo :attribute a menos que :other esteja presente em :values.',
|
||||
'required_with' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values está presente.',
|
||||
'required_with_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando um dos :values está presente.',
|
||||
'required_without' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values não está presente.',
|
||||
'required_without_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando nenhum dos :values está presente.',
|
||||
'same' => 'Os campos :attribute e :other deverão conter valores iguais.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'O campo :attribute deverá conter :size elementos.',
|
||||
'file' => 'O campo :attribute deverá ter o tamanho de :size kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá conter o valor :size.',
|
||||
'string' => 'O campo :attribute deverá conter :size caracteres.',
|
||||
),
|
||||
'starts_with' => 'O campo :attribute tem de começar com um dos valores seguintes: :values',
|
||||
'string' => 'O campo :attribute deverá conter texto.',
|
||||
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
||||
'unique' => 'O valor indicado para o campo :attribute já se encontra registado.',
|
||||
'uploaded' => 'O upload do ficheiro :attribute falhou.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
||||
'uuid' => ':Attribute tem de ser um UUID válido.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'O campo :attribute deverá ser aceite.',
|
||||
'accepted_if' => 'O :attribute deve ser aceite quando o :other é :value.',
|
||||
'active_url' => 'O campo :attribute não contém um URL válido.',
|
||||
'after' => 'O campo :attribute deverá conter uma data posterior a :date.',
|
||||
'after_or_equal' => 'O campo :attribute deverá conter uma data posterior ou igual a :date.',
|
||||
'alpha' => 'O campo :attribute deverá conter apenas letras.',
|
||||
'alpha_dash' => 'O campo :attribute deverá conter apenas letras, números e traços.',
|
||||
'alpha_num' => 'O campo :attribute deverá conter apenas letras e números .',
|
||||
'array' => 'O campo :attribute deverá conter uma coleção de elementos.',
|
||||
'attached' => 'Este :attribute já está anexado.',
|
||||
'attributes' => [
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
],
|
||||
'before' => 'O campo :attribute deverá conter uma data anterior a :date.',
|
||||
'before_or_equal' => 'O Campo :attribute deverá conter uma data anterior ou igual a :date.',
|
||||
'between' => [
|
||||
'array' => 'O campo :attribute deverá conter entre :min - :max elementos.',
|
||||
'file' => 'O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.',
|
||||
'string' => 'O campo :attribute deverá conter entre :min - :max caracteres.',
|
||||
],
|
||||
'boolean' => 'O campo :attribute deverá conter o valor verdadeiro ou falso.',
|
||||
'confirmed' => 'A confirmação para o campo :attribute não coincide.',
|
||||
'current_password' => 'A palavra-passe está incorreta.',
|
||||
'date' => 'O campo :attribute não contém uma data válida.',
|
||||
'date_equals' => 'O campo :attribute tem de ser uma data igual a :date.',
|
||||
'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
|
||||
'declined' => 'O :attribute deve ser recusado.',
|
||||
'declined_if' => 'O :attribute deve ser recusado quando :other é :value.',
|
||||
'different' => 'Os campos :attribute e :other deverão conter valores diferentes.',
|
||||
'digits' => 'O campo :attribute deverá conter :digits caracteres.',
|
||||
'digits_between' => 'O campo :attribute deverá conter entre :min a :max caracteres.',
|
||||
'dimensions' => 'O campo :attribute deverá conter uma dimensão de imagem válida.',
|
||||
'distinct' => 'O campo :attribute contém um valor duplicado.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => 'O campo :attribute não contém um endereço de e-mail válido.',
|
||||
'ends_with' => 'O campo :attribute deverá terminar com : :values.',
|
||||
'enum' => 'O :attribute selecionado é inválido.',
|
||||
'exists' => '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' => [
|
||||
'array' => 'O campo :attribute tem de ter mais de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter mais de :value quilobytes.',
|
||||
'numeric' => 'O campo :attribute tem de ser maior do que :value.',
|
||||
'string' => 'O campo :attribute tem de ter mais de :value caracteres.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'O campo :attribute tem de ter :value itens ou mais.',
|
||||
'file' => 'O campo :attribute tem de ter :value quilobytes ou mais.',
|
||||
'numeric' => 'O campo :attribute tem de ser maior ou igual a :value.',
|
||||
'string' => 'O campo :attribute tem de ter :value caracteres ou mais.',
|
||||
],
|
||||
'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.',
|
||||
'integer' => 'O campo :attribute deverá conter um número inteiro.',
|
||||
'ip' => 'O campo :attribute deverá conter um IP válido.',
|
||||
'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.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'O campo :attribute tem de ter menos de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter menos de :value quilobytes.',
|
||||
'numeric' => 'O campo :attribute tem de ser inferior a :value.',
|
||||
'string' => 'O campo :attribute tem de ter menos de :value caracteres.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'O campo :attribute não pode ter mais de :value itens.',
|
||||
'file' => 'O campo :attribute tem de ter :value quilobytes ou menos.',
|
||||
'numeric' => 'O campo :attribute tem de ser inferior ou igual a :value.',
|
||||
'string' => 'O campo :attribute tem de ter :value caracteres ou menos.',
|
||||
],
|
||||
'mac_address' => 'O :attribute deve ser um endereço MAC válido.',
|
||||
'max' => [
|
||||
'array' => 'O campo :attribute não deverá conter mais de :max elementos.',
|
||||
'file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.',
|
||||
'numeric' => 'O campo :attribute não deverá conter um valor superior a :max.',
|
||||
'string' => 'O campo :attribute não deverá conter mais de :max caracteres.',
|
||||
],
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'O campo :attribute deverá conter um ficheiro do tipo: :values.',
|
||||
'mimetypes' => 'O campo :attribute deverá conter um ficheiro do tipo: :values.',
|
||||
'min' => [
|
||||
'array' => 'O campo :attribute deverá conter no mínimo :min elementos.',
|
||||
'file' => 'O campo :attribute deverá ter no mínimo :min kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá ter um valor superior ou igual a :min.',
|
||||
'string' => 'O campo :attribute deverá conter no mínimo :min caracteres.',
|
||||
],
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => 'O :attribute deve ser um múltiplo de :value',
|
||||
'not_in' => 'O campo :attribute contém um valor inválido.',
|
||||
'not_regex' => 'O formato de :attribute não é válido',
|
||||
'numeric' => 'O campo :attribute deverá conter um valor numérico.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'O campo :attribute deverá estar presente.',
|
||||
'prohibited' => 'O campo :attribute é proibido.',
|
||||
'prohibited_if' => 'O campo :attribute é proibido quando :other é :value.',
|
||||
'prohibited_unless' => 'O campo :attribute é proibido a menos que :other esteja em :values.',
|
||||
'prohibits' => 'O campo :attribute proíbe :other de estar presente.',
|
||||
'regex' => 'O formato do valor para o campo :attribute é inválido.',
|
||||
'relatable' => 'Este :attribute pode não estar associado a este recurso.',
|
||||
'required' => 'É obrigatória a indicação de um valor para o campo :attribute.',
|
||||
'required_array_keys' => 'O campo :attribute deve conter entradas para: :values.',
|
||||
'required_if' => 'É obrigatória a indicação de um valor para o campo :attribute quando o valor do campo :other é igual a :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => 'É obrigatória a indicação de um valor para o campo :attribute a menos que :other esteja presente em :values.',
|
||||
'required_with' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values está presente.',
|
||||
'required_with_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando um dos :values está presente.',
|
||||
'required_without' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values não está presente.',
|
||||
'required_without_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando nenhum dos :values está presente.',
|
||||
'same' => 'Os campos :attribute e :other deverão conter valores iguais.',
|
||||
'size' => [
|
||||
'array' => 'O campo :attribute deverá conter :size elementos.',
|
||||
'file' => 'O campo :attribute deverá ter o tamanho de :size kilobytes.',
|
||||
'numeric' => 'O campo :attribute deverá conter o valor :size.',
|
||||
'string' => 'O campo :attribute deverá conter :size caracteres.',
|
||||
],
|
||||
'starts_with' => 'O campo :attribute tem de começar com um dos valores seguintes: :values',
|
||||
'string' => 'O campo :attribute deverá conter texto.',
|
||||
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
||||
'unique' => 'O valor indicado para o campo :attribute já se encontra registado.',
|
||||
'uploaded' => 'O upload do ficheiro :attribute falhou.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
||||
'uuid' => ':Attribute tem de ser um UUID válido.',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => '',
|
||||
'throttle' => '',
|
||||
);
|
||||
return [
|
||||
'failed' => '',
|
||||
'throttle' => '',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => '',
|
||||
'previous' => '',
|
||||
);
|
||||
return [
|
||||
'next' => '',
|
||||
'previous' => '',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'enum' => '',
|
||||
'uploaded' => '',
|
||||
);
|
||||
return [
|
||||
'enum' => '',
|
||||
'uploaded' => '',
|
||||
];
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Bu kimlik bilgileri kayıtlarımızla eşleşmiyor.',
|
||||
'password' => 'Parola geçersiz.',
|
||||
'throttle' => 'Çok fazla giriş denemesi. :seconds saniye sonra lütfen tekrar deneyin.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Bu kimlik bilgileri kayıtlarımızla eşleşmiyor.',
|
||||
'password' => 'Parola geçersiz.',
|
||||
'throttle' => 'Çok fazla giriş denemesi. :seconds saniye sonra lütfen tekrar deneyin.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Bilinmeyen Hata',
|
||||
'unknownError' => 'Bilinmeyen Hata',
|
||||
100 => 'Devam Et',
|
||||
101 => 'Protokoller Değiştiriliyor',
|
||||
102 => 'İşleniyor',
|
||||
200 => 'Tamam',
|
||||
201 => 'Oluşturuldu',
|
||||
202 => 'Kabul Edilmiş',
|
||||
203 => 'Yetkili Olmayan Bilgiler',
|
||||
204 => 'İçerik Yok',
|
||||
205 => 'İçeriği Sıfırla',
|
||||
206 => 'Kısmi İçerik',
|
||||
207 => 'Çoklu Durum',
|
||||
208 => 'Zaten Bildirildi',
|
||||
226 => 'IM Kullanıldı',
|
||||
300 => 'Çoklu Seçimler',
|
||||
301 => 'Kalıcı Olarak Taşındı',
|
||||
302 => 'Bulundu',
|
||||
303 => 'Diğerlerini Gör',
|
||||
304 => 'Değiştirilmedi',
|
||||
305 => 'Proxy Kullan',
|
||||
307 => 'Geçici Yönlendirme',
|
||||
308 => 'Kalıcı Yönlendirme',
|
||||
400 => 'Geçersiz istek',
|
||||
401 => 'Yetkisiz',
|
||||
402 => 'Ödeme gerekli',
|
||||
403 => 'Yasaklı',
|
||||
404 => 'Sayfa bulunamadı',
|
||||
405 => 'İzin Verilmeyen Yöntem',
|
||||
406 => 'Kabul Edilemez',
|
||||
407 => 'Proxy Kimlik Doğrulaması Gerekli',
|
||||
408 => 'İstek zaman aşımına uğradı',
|
||||
409 => 'Çakışma',
|
||||
410 => 'Gitmiş',
|
||||
411 => 'Uzunluk Gerekli',
|
||||
412 => 'Ön Koşul Başarısız',
|
||||
413 => 'Veri Çok Büyük',
|
||||
414 => 'URI Çok Uzun',
|
||||
415 => 'Desteklenmeyen Medya Türü',
|
||||
416 => 'Aralık Yetersiz',
|
||||
417 => 'Beklenti Başarısız',
|
||||
418 => 'Ben bir demliğim',
|
||||
419 => 'Oturum süresi doldu',
|
||||
421 => 'Yanlış Yönlendirilmiş İstek',
|
||||
422 => 'İşlenemeyen Varlık',
|
||||
423 => 'Kilitli',
|
||||
424 => 'Başarısız Bağımlılık',
|
||||
425 => 'Çok erken',
|
||||
426 => 'Yükseltme Gerekli',
|
||||
428 => 'Ön Koşul Gerekli',
|
||||
429 => 'Çok Fazla İstek',
|
||||
431 => 'İstek Başlık Alanları Çok Büyük',
|
||||
444 => 'Bağlantı Yanıtsız Kapatıldı',
|
||||
449 => 'İle Yeniden Dene',
|
||||
451 => 'Yasal Sebepler Nedeniyle Kullanılamıyor',
|
||||
499 => 'İstemci Kapandı İsteği',
|
||||
500 => 'İç Sunucu Hatası',
|
||||
501 => 'Uygulanmadı',
|
||||
502 => 'Geçersiz Ağ Geçidi',
|
||||
503 => 'Bakım Modu',
|
||||
504 => 'Ağ Geçidi Zaman Aşımı',
|
||||
505 => 'HTTP Sürümü Desteklenmiyor',
|
||||
506 => 'Varyant Ayrıca Müzakere Ediyor',
|
||||
507 => 'Yetersiz depolama',
|
||||
508 => 'Döngü Tespit Edildi',
|
||||
509 => 'Bant Genişliği Sınırı Aşıldı',
|
||||
510 => 'Genişletilmemiş',
|
||||
511 => 'Ağ Kimlik Doğrulaması Gerekli',
|
||||
520 => 'Bilinmeyen Hata',
|
||||
521 => 'Web Sunucusu Çalışmıyor',
|
||||
522 => 'Bağlantı Zaman Aşımına Uğradı',
|
||||
523 => 'Kökeni Ulaşılamaz',
|
||||
524 => 'Bir Zaman Aşımı Oluştu',
|
||||
525 => 'SSL El Sıkışma Başarısız',
|
||||
526 => 'Geçersiz SSL Sertifikası',
|
||||
527 => 'Railgun Hatası',
|
||||
598 => 'Ağ Okuma Zaman Aşımı Hatası',
|
||||
599 => 'Ağ Bağlantısı Zaman Aşımı Hatası',
|
||||
);
|
||||
return [
|
||||
0 => 'Bilinmeyen Hata',
|
||||
'unknownError' => 'Bilinmeyen Hata',
|
||||
100 => 'Devam Et',
|
||||
101 => 'Protokoller Değiştiriliyor',
|
||||
102 => 'İşleniyor',
|
||||
200 => 'Tamam',
|
||||
201 => 'Oluşturuldu',
|
||||
202 => 'Kabul Edilmiş',
|
||||
203 => 'Yetkili Olmayan Bilgiler',
|
||||
204 => 'İçerik Yok',
|
||||
205 => 'İçeriği Sıfırla',
|
||||
206 => 'Kısmi İçerik',
|
||||
207 => 'Çoklu Durum',
|
||||
208 => 'Zaten Bildirildi',
|
||||
226 => 'IM Kullanıldı',
|
||||
300 => 'Çoklu Seçimler',
|
||||
301 => 'Kalıcı Olarak Taşındı',
|
||||
302 => 'Bulundu',
|
||||
303 => 'Diğerlerini Gör',
|
||||
304 => 'Değiştirilmedi',
|
||||
305 => 'Proxy Kullan',
|
||||
307 => 'Geçici Yönlendirme',
|
||||
308 => 'Kalıcı Yönlendirme',
|
||||
400 => 'Geçersiz istek',
|
||||
401 => 'Yetkisiz',
|
||||
402 => 'Ödeme gerekli',
|
||||
403 => 'Yasaklı',
|
||||
404 => 'Sayfa bulunamadı',
|
||||
405 => 'İzin Verilmeyen Yöntem',
|
||||
406 => 'Kabul Edilemez',
|
||||
407 => 'Proxy Kimlik Doğrulaması Gerekli',
|
||||
408 => 'İstek zaman aşımına uğradı',
|
||||
409 => 'Çakışma',
|
||||
410 => 'Gitmiş',
|
||||
411 => 'Uzunluk Gerekli',
|
||||
412 => 'Ön Koşul Başarısız',
|
||||
413 => 'Veri Çok Büyük',
|
||||
414 => 'URI Çok Uzun',
|
||||
415 => 'Desteklenmeyen Medya Türü',
|
||||
416 => 'Aralık Yetersiz',
|
||||
417 => 'Beklenti Başarısız',
|
||||
418 => 'Ben bir demliğim',
|
||||
419 => 'Oturum süresi doldu',
|
||||
421 => 'Yanlış Yönlendirilmiş İstek',
|
||||
422 => 'İşlenemeyen Varlık',
|
||||
423 => 'Kilitli',
|
||||
424 => 'Başarısız Bağımlılık',
|
||||
425 => 'Çok erken',
|
||||
426 => 'Yükseltme Gerekli',
|
||||
428 => 'Ön Koşul Gerekli',
|
||||
429 => 'Çok Fazla İstek',
|
||||
431 => 'İstek Başlık Alanları Çok Büyük',
|
||||
444 => 'Bağlantı Yanıtsız Kapatıldı',
|
||||
449 => 'İle Yeniden Dene',
|
||||
451 => 'Yasal Sebepler Nedeniyle Kullanılamıyor',
|
||||
499 => 'İstemci Kapandı İsteği',
|
||||
500 => 'İç Sunucu Hatası',
|
||||
501 => 'Uygulanmadı',
|
||||
502 => 'Geçersiz Ağ Geçidi',
|
||||
503 => 'Bakım Modu',
|
||||
504 => 'Ağ Geçidi Zaman Aşımı',
|
||||
505 => 'HTTP Sürümü Desteklenmiyor',
|
||||
506 => 'Varyant Ayrıca Müzakere Ediyor',
|
||||
507 => 'Yetersiz depolama',
|
||||
508 => 'Döngü Tespit Edildi',
|
||||
509 => 'Bant Genişliği Sınırı Aşıldı',
|
||||
510 => 'Genişletilmemiş',
|
||||
511 => 'Ağ Kimlik Doğrulaması Gerekli',
|
||||
520 => 'Bilinmeyen Hata',
|
||||
521 => 'Web Sunucusu Çalışmıyor',
|
||||
522 => 'Bağlantı Zaman Aşımına Uğradı',
|
||||
523 => 'Kökeni Ulaşılamaz',
|
||||
524 => 'Bir Zaman Aşımı Oluştu',
|
||||
525 => 'SSL El Sıkışma Başarısız',
|
||||
526 => 'Geçersiz SSL Sertifikası',
|
||||
527 => 'Railgun Hatası',
|
||||
598 => 'Ağ Okuma Zaman Aşımı Hatası',
|
||||
599 => 'Ağ Bağlantısı Zaman Aşımı Hatası',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Sonrakiler »',
|
||||
'previous' => '« Öncekiler',
|
||||
);
|
||||
return [
|
||||
'next' => 'Sonrakiler »',
|
||||
'previous' => '« Öncekiler',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Parolanız sıfırlandı!',
|
||||
'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!',
|
||||
'throttled' => 'Tekrar denemeden önce lütfen bekleyin.',
|
||||
'token' => 'Parola sıfırlama kodu geçersiz.',
|
||||
'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunamadı.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Parolanız sıfırlandı!',
|
||||
'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!',
|
||||
'throttled' => 'Tekrar denemeden önce lütfen bekleyin.',
|
||||
'token' => 'Parola sıfırlama kodu geçersiz.',
|
||||
'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunamadı.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => ':Attribute kabul edilmelidir.',
|
||||
'accepted_if' => ':Attribute, :other değeri :value ise kabul edilmelidir.',
|
||||
'active_url' => ':Attribute geçerli bir URL olmalıdır.',
|
||||
'after' => ':Attribute mutlaka :date tarihinden sonra olmalıdır.',
|
||||
'after_or_equal' => ':Attribute mutlaka :date tarihinden sonra veya aynı tarihte olmalıdır.',
|
||||
'alpha' => ':Attribute sadece harflerden oluşmalıdır.',
|
||||
'alpha_dash' => ':Attribute sadece harflerden, rakamlardan ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':Attribute sadece harflerden ve rakamlardan oluşmalıdır.',
|
||||
'array' => ':Attribute mutlaka bir dizi olmalıdır.',
|
||||
'attached' => 'Bu :attribute zaten tanımlı.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'adres',
|
||||
'age' => 'yaş',
|
||||
'amount' => 'tutar',
|
||||
'area' => 'alan',
|
||||
'available' => 'mevcut',
|
||||
'birthday' => 'doğum günü',
|
||||
'body' => 'gövde',
|
||||
'city' => 'şehir',
|
||||
'content' => 'i̇çerik',
|
||||
'country' => 'ülke',
|
||||
'created_at' => 'oluşturulduğunda',
|
||||
'creator' => 'yaratıcı',
|
||||
'current_password' => 'mevcut şifre',
|
||||
'date' => 'tarih',
|
||||
'date_of_birth' => 'doğum tarihi',
|
||||
'day' => 'gün',
|
||||
'deleted_at' => 'silindi',
|
||||
'description' => 'açıklama',
|
||||
'district' => 'semt',
|
||||
'duration' => 'süre',
|
||||
'email' => 'e-posta adresi',
|
||||
'excerpt' => 'alıntı',
|
||||
'filter' => 'filtre',
|
||||
'first_name' => 'adı',
|
||||
'gender' => 'cinsiyet',
|
||||
'group' => 'grup',
|
||||
'hour' => 'saat',
|
||||
'image' => 'resim',
|
||||
'last_name' => 'soyadı',
|
||||
'lesson' => 'ders',
|
||||
'line_address_1' => 'hat adresi 1',
|
||||
'line_address_2' => 'hat adresi 2',
|
||||
'message' => 'ileti',
|
||||
'middle_name' => 'ikinci ad',
|
||||
'minute' => 'dakika',
|
||||
'mobile' => 'cep telefonu',
|
||||
'month' => 'ay',
|
||||
'name' => 'adı',
|
||||
'national_code' => 'ulusal kod',
|
||||
'number' => 'sayı',
|
||||
'password' => 'parola',
|
||||
'password_confirmation' => 'parola (tekrar)',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotoğraf',
|
||||
'postal_code' => 'posta kodu',
|
||||
'price' => 'fiyat',
|
||||
'province' => 'bölge',
|
||||
'recaptcha_response_field' => 'recaptcha yanıt alanı',
|
||||
'remember' => 'hatırlamak',
|
||||
'restored_at' => 'restore',
|
||||
'result_text_under_image' => 'resmin altındaki sonuç metni',
|
||||
'role' => 'rol',
|
||||
'second' => 'saniye',
|
||||
'sex' => 'cinsiyet',
|
||||
'short_text' => 'kısa metin',
|
||||
'size' => 'boyut',
|
||||
'state' => 'durum',
|
||||
'street' => 'sokak',
|
||||
'student' => 'öğrenci',
|
||||
'subject' => 'ders',
|
||||
'teacher' => 'öğretmen',
|
||||
'terms' => 'şartlar',
|
||||
'test_description' => 'test açıklaması',
|
||||
'test_locale' => 'yerel ayar',
|
||||
'test_name' => 'deneme adı',
|
||||
'text' => 'metin',
|
||||
'time' => 'zaman',
|
||||
'title' => 'unvan',
|
||||
'updated_at' => 'güncellendi',
|
||||
'username' => 'kullanıcı adı',
|
||||
'year' => 'yıl',
|
||||
),
|
||||
'before' => ':Attribute mutlaka :date tarihinden önce olmalıdır.',
|
||||
'before_or_equal' => ':Attribute mutlaka :date tarihinden önce veya aynı tarihte olmalıdır.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :min - :max arasında öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :min - :max kilobayt arasında olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :min - :max arasında olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :min - :max karakter arasında olmalıdır.',
|
||||
),
|
||||
'boolean' => ':Attribute sadece doğru veya yanlış olmalıdır.',
|
||||
'confirmed' => ':Attribute tekrarı eşleşmiyor.',
|
||||
'current_password' => 'Parola hatalı.',
|
||||
'date' => ':Attribute geçerli bir tarih değil.',
|
||||
'date_equals' => ':Attribute mutlaka :date ile aynı tarihte olmalıdır.',
|
||||
'date_format' => ':Attribute mutlaka :format biçiminde olmalıdır.',
|
||||
'declined' => ':Attribute kabul edilmemektedir.',
|
||||
'declined_if' => ':Attribute, :other değeri :value iken kabul edilmemektedir.',
|
||||
'different' => ':Attribute ile :other mutlaka birbirinden farklı olmalıdır.',
|
||||
'digits' => ':Attribute mutlaka :digits basamaklı olmalıdır.',
|
||||
'digits_between' => ':Attribute mutlaka en az :min, en fazla :max basamaklı olmalıdır.',
|
||||
'dimensions' => ':Attribute geçersiz resim boyutlarına sahip.',
|
||||
'distinct' => ':Attribute alanı yinelenen bir değere sahip.',
|
||||
'doesnt_end_with' => ':Attribute aşağıdakilerden biriyle bitemez: :values.',
|
||||
'doesnt_start_with' => ':Attribute aşağıdakilerden biriyle başlamayabilir: :values.',
|
||||
'email' => ':Attribute mutlaka geçerli bir e-posta adresi olmalıdır.',
|
||||
'ends_with' => ':Attribute sadece şu değerlerden biriyle bitebilir: :values.',
|
||||
'enum' => 'Seçilen :attribute değeri geçersiz.',
|
||||
'exists' => 'Seçili :attribute geçersiz.',
|
||||
'file' => ':Attribute mutlaka bir dosya olmalıdır.',
|
||||
'filled' => ':Attribute mutlaka doldurulmalıdır.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :value sayısından daha fazla öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan büyük olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından büyük olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden uzun olmalıdır.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :value veya daha fazla öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan büyük veya eşit olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından büyük veya eşit olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden uzun veya eşit olmalıdır.',
|
||||
),
|
||||
'image' => ':Attribute mutlaka bir resim olmalıdır.',
|
||||
'in' => 'Seçili :attribute geçersiz.',
|
||||
'in_array' => ':Attribute :other içinde mevcut değil.',
|
||||
'integer' => ':Attribute mutlaka bir tam sayı olmalıdır.',
|
||||
'ip' => ':Attribute mutlaka geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => ':Attribute mutlaka geçerli bir IPv4 adresi olmalıdır.',
|
||||
'ipv6' => ':Attribute mutlaka geçerli bir IPv6 adresi olmalıdır.',
|
||||
'json' => ':Attribute mutlaka geçerli bir JSON içeriği olmalıdır.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :value sayısından daha az öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan küçük olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından küçük olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden kısa olmalıdır.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :value veya daha az öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan küçük veya eşit olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından küçük veya eşit olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden kısa veya eşit olmalıdır.',
|
||||
),
|
||||
'mac_address' => ':Attribute geçerli bir MAC adresi olmalıdır.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => ':Attribute en fazla :max öge içerebilir.',
|
||||
'file' => ':Attribute en fazla :max kilobayt olabilir.',
|
||||
'numeric' => ':Attribute en fazla :max olabilir.',
|
||||
'string' => ':Attribute en fazla :max karakter olabilir.',
|
||||
),
|
||||
'max_digits' => ':Attribute en fazla :max basamak içermelidir.',
|
||||
'mimes' => ':Attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'mimetypes' => ':Attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => ':Attribute en az :min öge içerebilir.',
|
||||
'file' => ':Attribute en az :min kilobayt olabilir.',
|
||||
'numeric' => ':Attribute en az :min olabilir.',
|
||||
'string' => ':Attribute en az :min karakter olabilir.',
|
||||
),
|
||||
'min_digits' => ':Attribute en az :min basamak içermelidir.',
|
||||
'multiple_of' => ':Attribute, :value\'nin katları olmalıdır',
|
||||
'not_in' => 'Seçili :attribute geçersiz.',
|
||||
'not_regex' => ':Attribute biçimi geçersiz.',
|
||||
'numeric' => ':Attribute mutlaka bir sayı olmalıdır.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => ':Attribute en az bir harf içermelidir.',
|
||||
'mixed' => ':Attribute en az bir büyük harf ve bir küçük harf içermelidir.',
|
||||
'numbers' => ':Attribute en az bir sayı içermelidir.',
|
||||
'symbols' => ':Attribute en az bir sembol içermelidir.',
|
||||
'uncompromised' => 'Verilen :attribute bir veri sızıntısında ortaya çıktı. Lütfen farklı bir :attribute seçin.',
|
||||
),
|
||||
'present' => ':Attribute mutlaka mevcut olmalıdır.',
|
||||
'prohibited' => ':Attribute alanı kısıtlanmıştır.',
|
||||
'prohibited_if' => ':Other alanının değeri :value ise :attribute alanına veri girişi yapılamaz.',
|
||||
'prohibited_unless' => ':Other alanı :value değerlerinden birisi değilse :attribute alanına veri girişi yapılamaz.',
|
||||
'prohibits' => ':Attribute alanı :other alanının mevcut olmasını yasaklar.',
|
||||
'regex' => ':Attribute biçimi geçersiz.',
|
||||
'relatable' => 'Bu :attribute bu kaynakla ilişkili olmayabilir.',
|
||||
'required' => ':Attribute mutlaka gereklidir.',
|
||||
'required_array_keys' => ':Attribute değeri şu verileri içermelidir: :values.',
|
||||
'required_if' => ':Attribute :other :value değerine sahip olduğunda mutlaka gereklidir.',
|
||||
'required_if_accepted' => ':Attribute alanı, :other kabul edildiğinde gereklidir.',
|
||||
'required_unless' => ':Attribute :other :values değerlerinden birine sahip olmadığında mutlaka gereklidir.',
|
||||
'required_with' => ':Attribute :values varken mutlaka gereklidir.',
|
||||
'required_with_all' => ':Attribute herhangi bir :values değeri varken mutlaka gereklidir.',
|
||||
'required_without' => ':Attribute :values yokken mutlaka gereklidir.',
|
||||
'required_without_all' => ':Attribute :values değerlerinden herhangi biri yokken mutlaka gereklidir.',
|
||||
'same' => ':Attribute ile :other aynı olmalıdır.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => ':Attribute mutlaka :size ögeye sahip olmalıdır.',
|
||||
'file' => ':Attribute mutlaka :size kilobayt olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :size olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :size karakterli olmalıdır.',
|
||||
),
|
||||
'starts_with' => ':Attribute sadece şu değerlerden biriyle başlayabilir: :values.',
|
||||
'string' => ':Attribute mutlaka bir metin olmalıdır.',
|
||||
'timezone' => ':Attribute mutlaka geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':Attribute zaten alınmış.',
|
||||
'uploaded' => ':Attribute yüklemesi başarısız.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => ':Attribute biçimi geçersiz.',
|
||||
'uuid' => ':Attribute mutlaka geçerli bir UUID olmalıdır.',
|
||||
);
|
||||
return [
|
||||
'accepted' => ':Attribute kabul edilmelidir.',
|
||||
'accepted_if' => ':Attribute, :other değeri :value ise kabul edilmelidir.',
|
||||
'active_url' => ':Attribute geçerli bir URL olmalıdır.',
|
||||
'after' => ':Attribute mutlaka :date tarihinden sonra olmalıdır.',
|
||||
'after_or_equal' => ':Attribute mutlaka :date tarihinden sonra veya aynı tarihte olmalıdır.',
|
||||
'alpha' => ':Attribute sadece harflerden oluşmalıdır.',
|
||||
'alpha_dash' => ':Attribute sadece harflerden, rakamlardan ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':Attribute sadece harflerden ve rakamlardan oluşmalıdır.',
|
||||
'array' => ':Attribute mutlaka bir dizi olmalıdır.',
|
||||
'attached' => 'Bu :attribute zaten tanımlı.',
|
||||
'attributes' => [
|
||||
'address' => 'adres',
|
||||
'age' => 'yaş',
|
||||
'amount' => 'tutar',
|
||||
'area' => 'alan',
|
||||
'available' => 'mevcut',
|
||||
'birthday' => 'doğum günü',
|
||||
'body' => 'gövde',
|
||||
'city' => 'şehir',
|
||||
'content' => 'i̇çerik',
|
||||
'country' => 'ülke',
|
||||
'created_at' => 'oluşturulduğunda',
|
||||
'creator' => 'yaratıcı',
|
||||
'current_password' => 'mevcut şifre',
|
||||
'date' => 'tarih',
|
||||
'date_of_birth' => 'doğum tarihi',
|
||||
'day' => 'gün',
|
||||
'deleted_at' => 'silindi',
|
||||
'description' => 'açıklama',
|
||||
'district' => 'semt',
|
||||
'duration' => 'süre',
|
||||
'email' => 'e-posta adresi',
|
||||
'excerpt' => 'alıntı',
|
||||
'filter' => 'filtre',
|
||||
'first_name' => 'adı',
|
||||
'gender' => 'cinsiyet',
|
||||
'group' => 'grup',
|
||||
'hour' => 'saat',
|
||||
'image' => 'resim',
|
||||
'last_name' => 'soyadı',
|
||||
'lesson' => 'ders',
|
||||
'line_address_1' => 'hat adresi 1',
|
||||
'line_address_2' => 'hat adresi 2',
|
||||
'message' => 'ileti',
|
||||
'middle_name' => 'ikinci ad',
|
||||
'minute' => 'dakika',
|
||||
'mobile' => 'cep telefonu',
|
||||
'month' => 'ay',
|
||||
'name' => 'adı',
|
||||
'national_code' => 'ulusal kod',
|
||||
'number' => 'sayı',
|
||||
'password' => 'parola',
|
||||
'password_confirmation' => 'parola (tekrar)',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotoğraf',
|
||||
'postal_code' => 'posta kodu',
|
||||
'price' => 'fiyat',
|
||||
'province' => 'bölge',
|
||||
'recaptcha_response_field' => 'recaptcha yanıt alanı',
|
||||
'remember' => 'hatırlamak',
|
||||
'restored_at' => 'restore',
|
||||
'result_text_under_image' => 'resmin altındaki sonuç metni',
|
||||
'role' => 'rol',
|
||||
'second' => 'saniye',
|
||||
'sex' => 'cinsiyet',
|
||||
'short_text' => 'kısa metin',
|
||||
'size' => 'boyut',
|
||||
'state' => 'durum',
|
||||
'street' => 'sokak',
|
||||
'student' => 'öğrenci',
|
||||
'subject' => 'ders',
|
||||
'teacher' => 'öğretmen',
|
||||
'terms' => 'şartlar',
|
||||
'test_description' => 'test açıklaması',
|
||||
'test_locale' => 'yerel ayar',
|
||||
'test_name' => 'deneme adı',
|
||||
'text' => 'metin',
|
||||
'time' => 'zaman',
|
||||
'title' => 'unvan',
|
||||
'updated_at' => 'güncellendi',
|
||||
'username' => 'kullanıcı adı',
|
||||
'year' => 'yıl',
|
||||
],
|
||||
'before' => ':Attribute mutlaka :date tarihinden önce olmalıdır.',
|
||||
'before_or_equal' => ':Attribute mutlaka :date tarihinden önce veya aynı tarihte olmalıdır.',
|
||||
'between' => [
|
||||
'array' => ':Attribute mutlaka :min - :max arasında öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :min - :max kilobayt arasında olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :min - :max arasında olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :min - :max karakter arasında olmalıdır.',
|
||||
],
|
||||
'boolean' => ':Attribute sadece doğru veya yanlış olmalıdır.',
|
||||
'confirmed' => ':Attribute tekrarı eşleşmiyor.',
|
||||
'current_password' => 'Parola hatalı.',
|
||||
'date' => ':Attribute geçerli bir tarih değil.',
|
||||
'date_equals' => ':Attribute mutlaka :date ile aynı tarihte olmalıdır.',
|
||||
'date_format' => ':Attribute mutlaka :format biçiminde olmalıdır.',
|
||||
'declined' => ':Attribute kabul edilmemektedir.',
|
||||
'declined_if' => ':Attribute, :other değeri :value iken kabul edilmemektedir.',
|
||||
'different' => ':Attribute ile :other mutlaka birbirinden farklı olmalıdır.',
|
||||
'digits' => ':Attribute mutlaka :digits basamaklı olmalıdır.',
|
||||
'digits_between' => ':Attribute mutlaka en az :min, en fazla :max basamaklı olmalıdır.',
|
||||
'dimensions' => ':Attribute geçersiz resim boyutlarına sahip.',
|
||||
'distinct' => ':Attribute alanı yinelenen bir değere sahip.',
|
||||
'doesnt_end_with' => ':Attribute aşağıdakilerden biriyle bitemez: :values.',
|
||||
'doesnt_start_with' => ':Attribute aşağıdakilerden biriyle başlamayabilir: :values.',
|
||||
'email' => ':Attribute mutlaka geçerli bir e-posta adresi olmalıdır.',
|
||||
'ends_with' => ':Attribute sadece şu değerlerden biriyle bitebilir: :values.',
|
||||
'enum' => 'Seçilen :attribute değeri geçersiz.',
|
||||
'exists' => 'Seçili :attribute geçersiz.',
|
||||
'file' => ':Attribute mutlaka bir dosya olmalıdır.',
|
||||
'filled' => ':Attribute mutlaka doldurulmalıdır.',
|
||||
'gt' => [
|
||||
'array' => ':Attribute mutlaka :value sayısından daha fazla öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan büyük olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından büyük olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden uzun olmalıdır.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => ':Attribute mutlaka :value veya daha fazla öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan büyük veya eşit olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından büyük veya eşit olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden uzun veya eşit olmalıdır.',
|
||||
],
|
||||
'image' => ':Attribute mutlaka bir resim olmalıdır.',
|
||||
'in' => 'Seçili :attribute geçersiz.',
|
||||
'in_array' => ':Attribute :other içinde mevcut değil.',
|
||||
'integer' => ':Attribute mutlaka bir tam sayı olmalıdır.',
|
||||
'ip' => ':Attribute mutlaka geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => ':Attribute mutlaka geçerli bir IPv4 adresi olmalıdır.',
|
||||
'ipv6' => ':Attribute mutlaka geçerli bir IPv6 adresi olmalıdır.',
|
||||
'json' => ':Attribute mutlaka geçerli bir JSON içeriği olmalıdır.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => ':Attribute mutlaka :value sayısından daha az öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan küçük olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından küçük olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden kısa olmalıdır.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute mutlaka :value veya daha az öge içermelidir.',
|
||||
'file' => ':Attribute mutlaka :value kilobayt\'tan küçük veya eşit olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :value sayısından küçük veya eşit olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :value karakterden kısa veya eşit olmalıdır.',
|
||||
],
|
||||
'mac_address' => ':Attribute geçerli bir MAC adresi olmalıdır.',
|
||||
'max' => [
|
||||
'array' => ':Attribute en fazla :max öge içerebilir.',
|
||||
'file' => ':Attribute en fazla :max kilobayt olabilir.',
|
||||
'numeric' => ':Attribute en fazla :max olabilir.',
|
||||
'string' => ':Attribute en fazla :max karakter olabilir.',
|
||||
],
|
||||
'max_digits' => ':Attribute en fazla :max basamak içermelidir.',
|
||||
'mimes' => ':Attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'mimetypes' => ':Attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'min' => [
|
||||
'array' => ':Attribute en az :min öge içerebilir.',
|
||||
'file' => ':Attribute en az :min kilobayt olabilir.',
|
||||
'numeric' => ':Attribute en az :min olabilir.',
|
||||
'string' => ':Attribute en az :min karakter olabilir.',
|
||||
],
|
||||
'min_digits' => ':Attribute en az :min basamak içermelidir.',
|
||||
'multiple_of' => ':Attribute, :value\'nin katları olmalıdır',
|
||||
'not_in' => 'Seçili :attribute geçersiz.',
|
||||
'not_regex' => ':Attribute biçimi geçersiz.',
|
||||
'numeric' => ':Attribute mutlaka bir sayı olmalıdır.',
|
||||
'password' => [
|
||||
'letters' => ':Attribute en az bir harf içermelidir.',
|
||||
'mixed' => ':Attribute en az bir büyük harf ve bir küçük harf içermelidir.',
|
||||
'numbers' => ':Attribute en az bir sayı içermelidir.',
|
||||
'symbols' => ':Attribute en az bir sembol içermelidir.',
|
||||
'uncompromised' => 'Verilen :attribute bir veri sızıntısında ortaya çıktı. Lütfen farklı bir :attribute seçin.',
|
||||
],
|
||||
'present' => ':Attribute mutlaka mevcut olmalıdır.',
|
||||
'prohibited' => ':Attribute alanı kısıtlanmıştır.',
|
||||
'prohibited_if' => ':Other alanının değeri :value ise :attribute alanına veri girişi yapılamaz.',
|
||||
'prohibited_unless' => ':Other alanı :value değerlerinden birisi değilse :attribute alanına veri girişi yapılamaz.',
|
||||
'prohibits' => ':Attribute alanı :other alanının mevcut olmasını yasaklar.',
|
||||
'regex' => ':Attribute biçimi geçersiz.',
|
||||
'relatable' => 'Bu :attribute bu kaynakla ilişkili olmayabilir.',
|
||||
'required' => ':Attribute mutlaka gereklidir.',
|
||||
'required_array_keys' => ':Attribute değeri şu verileri içermelidir: :values.',
|
||||
'required_if' => ':Attribute :other :value değerine sahip olduğunda mutlaka gereklidir.',
|
||||
'required_if_accepted' => ':Attribute alanı, :other kabul edildiğinde gereklidir.',
|
||||
'required_unless' => ':Attribute :other :values değerlerinden birine sahip olmadığında mutlaka gereklidir.',
|
||||
'required_with' => ':Attribute :values varken mutlaka gereklidir.',
|
||||
'required_with_all' => ':Attribute herhangi bir :values değeri varken mutlaka gereklidir.',
|
||||
'required_without' => ':Attribute :values yokken mutlaka gereklidir.',
|
||||
'required_without_all' => ':Attribute :values değerlerinden herhangi biri yokken mutlaka gereklidir.',
|
||||
'same' => ':Attribute ile :other aynı olmalıdır.',
|
||||
'size' => [
|
||||
'array' => ':Attribute mutlaka :size ögeye sahip olmalıdır.',
|
||||
'file' => ':Attribute mutlaka :size kilobayt olmalıdır.',
|
||||
'numeric' => ':Attribute mutlaka :size olmalıdır.',
|
||||
'string' => ':Attribute mutlaka :size karakterli olmalıdır.',
|
||||
],
|
||||
'starts_with' => ':Attribute sadece şu değerlerden biriyle başlayabilir: :values.',
|
||||
'string' => ':Attribute mutlaka bir metin olmalıdır.',
|
||||
'timezone' => ':Attribute mutlaka geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':Attribute zaten alınmış.',
|
||||
'uploaded' => ':Attribute yüklemesi başarısız.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => ':Attribute biçimi geçersiz.',
|
||||
'uuid' => ':Attribute mutlaka geçerli bir UUID olmalıdır.',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user