Skip to content

Commit 4de13f0

Browse files
committed
Merge pull request Laravel-Lang#522 from peterangelov/patch-1
Translated new validation rules
2 parents 3218c3b + 395ce2d commit 4de13f0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sk/validation.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
'string' => ':attribute musí mať rozsah :min - :max znakov.',
2828
'array' => ':attribute musí mať rozsah :min - :max prvkov.',
2929
],
30-
'boolean' => 'The :attribute field must be true or false',
30+
'boolean' => ':attribute musí byť pravda alebo nepravda.',
3131
'confirmed' => ':attribute konfirmácia sa nezhoduje.',
3232
'date' => ':attribute má neplatný dátum.',
3333
'date_format' => ':attribute sa nezhoduje s formátom :format.',
3434
'different' => ':attribute a :other musia byť odlišné.',
3535
'digits' => ':attribute musí mať :digits číslic.',
3636
'digits_between' => ':attribute musí mať rozsah :min až :max číslic.',
37-
'distinct' => 'The :attribute field has a duplicate value.',
37+
'distinct' => ':attribute je duplicitný.',
3838
'email' => ':attribute má neplatný formát.',
3939
'exists' => 'označený :attribute je neplatný.',
4040
'filled' => ':attribute je požadované.',
4141
'image' => ':attribute musí byť obrázok.',
4242
'in' => 'označený :attribute je neplatný.',
43-
'in_array' => 'The :attribute field does not exist in :other.',
43+
'in_array' => ':attribute sa nenachádza v :other.',
4444
'integer' => ':attribute musí byť celé číslo.',
4545
'ip' => ':attribute musí byť platná IP adresa.',
4646
'json' => ':attribute musí byť platný JSON reťazec.',
@@ -57,13 +57,13 @@
5757
'string' => ':attribute musí mať aspoň :min znakov.',
5858
'array' => ':attribute musí mať aspoň :min prvkov.',
5959
],
60-
'not_in' => 'označený:attribute je neplatný.',
60+
'not_in' => 'označený :attribute je neplatný.',
6161
'numeric' => ':attribute musí byť číslo.',
62-
'present' => 'The :attribute field must be present.',
62+
'present' => ':attribute musí byť odoslaný.',
6363
'regex' => ':attribute má neplatný formát.',
6464
'required' => ':attribute je požadované.',
6565
'required_if' => ':attribute je požadované keď :other je :value.',
66-
'required_unless' => 'The :attribute field is required unless :other is in :values.',
66+
'required_unless' => ':attribute je požadované, okrem prípadu keď :other je v :values.',
6767
'required_with' => ':attribute je požadované keď :values je prítomné.',
6868
'required_with_all' => ':attribute je požadované ak :values je nastavené.',
6969
'required_without' => ':attribute je požadované keď :values nie je prítomné.',
@@ -77,8 +77,8 @@
7777
],
7878
'string' => ':attribute musí byť reťazec znakov.',
7979
'timezone' => ':attribute musí byť platné časové pásmo.',
80-
'unique' => ':attribute je nedostupný.',
81-
'url' => ':attribute neplatný formát.',
80+
'unique' => ':attribute už existuje.',
81+
'url' => ':attribute musí mať formát URL.',
8282

8383
/*
8484
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)