Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Update validation translations
Browse files Browse the repository at this point in the history
  • Loading branch information
FaZeRs committed May 11, 2018
1 parent a383382 commit f6a7b60
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 71 deletions.
28 changes: 26 additions & 2 deletions resources/lang/en/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'string' => 'The :attribute must be greater than or equal :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
Expand All @@ -50,6 +62,18 @@
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'string' => 'The :attribute must be less than or equal :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'max' => [
'numeric' => 'The :attribute may not be greater than :max.',
'file' => 'The :attribute may not be greater than :max kilobytes.',
Expand All @@ -65,6 +89,7 @@
'array' => 'The :attribute must have at least :min items.',
],
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'present' => 'The :attribute field must be present.',
'regex' => 'The :attribute format is invalid.',
Expand All @@ -87,7 +112,6 @@
'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'The :attribute format is invalid.',
'captcha' => 'Please verify that you are not a robot.',

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -119,4 +143,4 @@

'attributes' => [],

];
];
162 changes: 93 additions & 69 deletions resources/lang/lv/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,81 +13,105 @@
|
*/

'accepted' => 'Laukam :attribute jābūt apstiprinātam.',
'active_url' => 'Lauks :attribute nav derīgs URL.',
'after' => 'Laukam :attribute jabūt datumam pēc :date.',
'after_or_equal' => 'Laukam :attribute jābūt datumam pēc vai vienādam ar :date.',
'alpha' => 'Lauks :attribute var saturēt tikai burtus.',
'alpha_dash' => 'Lauks :attribute var saturēt tikai burtus, skaitļus un domuzīmes.',
'alpha_num' => 'Lauks :attribute var saturēt tikai burtus un skaitļus.',
'array' => 'Lauks :attribute var būt tikai masīvs.',
'before' => 'Laukam :attribute jābūt datumam pirms :date.',
'before_or_equal' => 'Laukam :attribute jābūt datumam pirms vai vienādam ar :date.',
'accepted' => ' :attribute ir jābūt pieņemtam.',
'active_url' => ' :attribute ir ar nederīgu linku.',
'after' => ' :attribute ir jābūt ar datumu pēc :datums.',
'after_or_equal' => ' :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.',
'alpha' => ' :attribute var saturēt tikai burtus.',
'alpha_dash' => ' :attribute var saturēt tikai burtus, nummurus un atstarpes.',
'alpha_num' => ' :attribute var tikai saturēt burtus un nummurus.',
'array' => ' :attribute ir jābūt sakārtotam.',
'before' => ' :attribute ir jābūt ar datumu pirms :datums.',
'before_or_equal' => ' :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.',
'between' => [
'numeric' => 'Lauka :attribute garumam jābūt starp :min un :max garam.',
'file' => 'Faila :attribute izmēram jābūt starp :min un :max kilobaitiem.',
'string' => 'Lauka :attribute garumam jābūt starp :min un :max rakstu zīmēm.',
'array' => 'Masīvam :attribute jāsatur starp :min un :max priekšmetiem.',
'numeric' => ' :attribute jābūt starp :min un :max.',
'file' => ' :attribute jābūt starp :min un :max kilobaiti.',
'string' => ' :attribute jābūt no :min līdz :max zīmēm.',
'array' => ' :attribute jābūt no :min līdz :max vienībām.',
],
'boolean' => ' :attribute laiciņam jābūt atbilstošam vai neatbilstošam.',
'confirmed' => ' :attribute apstiprinājums neatbilst.',
'date' => ' :attribute nav derīgs.',
'date_format' => ' :attribute neatbilst formātam :format.',
'different' => ' :attribute un :other ir jābūt citiem.',
'digits' => ' :attribute ir jābūt :digits ciparam.',
'digits_between' => ' :attribute ir jābūt :min un :max ciparam.',
'dimensions' => ' :attribute ir nederīgs attēla izmērs.',
'distinct' => ' :attribute laikam ir dubulta vērtība.',
'email' => ' :attribute derīgam e-pastam.',
'exists' => 'Izvēlētais :attribute ir nederīgs.',
'file' => ' :attribute jābūt failam.',
'filled' => ':attribute lauks ir nepieciešams.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'string' => 'The :attribute must be greater than or equal :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => ' :attribute jābūt attēlam.',
'in' => 'Izvēlētais :attribute ir nederīgs.',
'in_array' => ' :attribute laiks neeksistē :cits.',
'integer' => ' :attribute ir jabūt skaitim.',
'ip' => ' :attribute jābūt derīgai IP adresei.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => ' :attribute jābūt derīgai JSON virknei.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'string' => 'The :attribute must be less than or equal :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'boolean' => 'Laukam :attribute jābūt patiesam vai nepatiesam.',
'confirmed' => 'Lauka :attribute apstiprinājums nesakrīt.',
'date' => 'Lauks :attribute nav derīgs datums.',
'date_format' => 'Lauks :attribute nesakrīt ar formātu :format.',
'different' => 'Lauki :attribute un :other jābūt atšķirīgiem.',
'digits' => 'Laukam :attribute jābūt :digits ciparus garam.',
'digits_between' => 'Laukam :attribute jābūt starp :min un :max cipariem.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'Lauka :attribute vērtība ir dublikāts.',
'email' => 'Laukam :attribute jābūt derīgai e-pasta adresei.',
'exists' => 'Izvēlētā lauka :attribute vērtība ir nederīga.',
'file' => 'Laukam :attribute jābūt failam.',
'filled' => 'Laukam :attribute jābūt aizpildītam.',
'image' => 'Laukam :attribute jābūt bildei.',
'in' => 'Izvēlētā lauka :attribute vērtība ir nederīga.',
'in_array' => 'Lauka :attribute vērtība neeksistē iekš :other.',
'integer' => 'Laukam :attribute jābūt veselam skaitlim.',
'ip' => 'Laukam :attribute jābūt derīgai IP adresei.',
'ipv4' => 'Laukam :attribute jābūt derīgai IPv4 adresei.',
'ipv6' => 'Laukam :attribute jābūt derīgai IPv6 adresei.',
'json' => 'Laukam :attribute jābūt derīgai JSON virknei.',
'max' => [
'numeric' => 'Lauks :attribute nedrīkst būt garāks par :max.',
'file' => 'Fails :attribute nedrīgs būt lielāks par :max kilobaitiem.',
'string' => 'Lauks :attribute nedrīgs būt garāks par :max rakstu zīmēm.',
'array' => 'Masīvs :attribute nedrīkst saturēt vairāk kā :max priekšmetus.',
'numeric' => ' :attribute nedrīkst pārsniegt :max.',
'file' => ' :attribute nedrīkst pārsniegt :max kilobaiti.',
'string' => ' :attribute nedrīkst pārsniegt :max zīmes.',
'array' => ' :attribute nedrīkst pārsniegt :max vienības.',
],
'mimes' => 'Laukam :attribute jābūt faila tipam: :values.',
'mimetypes' => 'Laukam :attribute jābūt faila tipam: :values.',
'mimes' => ' :attribute jābūt faila tipam: :values',
'mimetypes' => ' :attribute jābūt faile tipam: :values.',
'min' => [
'numeric' => 'Laukam :attribute jābūt vismaz :min garam.',
'file' => 'Failam :attribute jābūt vismaz :min kilobaitiem lielam.',
'string' => 'Laukam :attribute jābūt vismaz :min rakstu zīmēm.',
'array' => 'Masīvā :attribute jābūt vismaz :min priekšmeti.',
'numeric' => ' :attribute jābūt vismaz :min.',
'file' => ' :attribute jābūt vismaz :min kilobaiti.',
'string' => ' :attribute jābūt vismaz :min zīmes.',
'array' => ' :attribute jāsatur vismaz :min vienības.',
],
'not_in' => 'Izvēlētā lauka :attribute vērtība ir nederīga.',
'numeric' => 'Laukam :attribute ir jābūt skaitlim.',
'present' => 'Lauka :attribute vērtībai ir jābūt norādītai.',
'regex' => 'Lauka :attribute formāts ir nederīgs.',
'required' => 'Lauks :attribute ir obligāts.',
'required_if' => 'Lauks :attribute ir obligāts, kad :other ir :value.',
'required_unless' => 'Lauks :attribute ir obligāts, ja vien :other ir iekš :values.',
'required_with' => 'Lauks :attribute ir obligāts, kad :values ir norādītas.',
'required_with_all' => 'Lauks :attribute ir obligāts, kad :values ir norādītas.',
'required_without' => 'Lauks :attribute ir obligāts, kad :values nav norādītas.',
'required_without_all' => 'Lauks :attribute ir obligāts, kad neviens no :values nav norādīts.',
'same' => 'Laukiem :attribute un :other jāsakrīt.',
'not_in' => ' izvēlieties :attribute ir nederīgs.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => ' :attribute jābūt skaitlim.',
'present' => ' :attribute laikums ir nepieciešams.',
'regex' => ' :attribute formāts ir nederīgs.',
'required' => ' :attribute laukums ir nepieciešams.',
'required_if' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
'required_unless' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
'required_with' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
'required_with_all' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
'required_without' => ' :attribute laukums ir nepieciešams, kad :values nav pieejama.',
'required_without_all' => ' :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.',
'same' => ' :attribute un :citiem ir jāsakrīt.',
'size' => [
'numeric' => 'Laukam :attribute jābūt :size garam.',
'file' => 'Failam :attribute jābūt :size kilobaitiem.',
'string' => 'Laukam :attribute jāsatur :size rakstu zīmes.',
'array' => 'Masīvam :attribute jāsatur :size priekšmetus.',
'numeric' => ' :attribute jābūt :size.',
'file' => ' :attribute jābūt :size kilobaiti.',
'string' => ' :attribute jābūt :size zīmes.',
'array' => ' :attribute jāsatur :size vienības.',
],
'string' => 'Laukam :attribute jābūt virknei.',
'timezone' => 'Laukam :attribute jābūt derīgai laika zonai.',
'unique' => 'Lauks :attribute ir jau aizņemts.',
'uploaded' => 'Neizdevās augšuplādēt lauku :attribute.',
'url' => 'Lauka :attribute formāts ir nederīgs.',
'captcha' => 'Lūdzu, apstipriniet, ka neesat robots.',
'string' => ' :attribute jābūt virknē.',
'timezone' => ' :attribute jābūt derīgā zonā.',
'unique' => ' :attribute jau ir aizņemts.',
'uploaded' => ' :attribute netika augšuplādēts.',
'url' => ' :attribute formāts ir nederīgs.',

/*
|--------------------------------------------------------------------------
Expand All @@ -102,7 +126,7 @@

'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
'rule-name' => 'ziņa pēc pieprasījuma',
],
],

Expand All @@ -119,4 +143,4 @@

'attributes' => [],

];
];

0 comments on commit f6a7b60

Please sign in to comment.