diff --git a/resources/lang/cs-CZ/validation.php b/resources/lang/cs-CZ/validation.php index 43d5e772..7d196d98 100644 --- a/resources/lang/cs-CZ/validation.php +++ b/resources/lang/cs-CZ/validation.php @@ -22,72 +22,72 @@ return [ | */ - 'accepted' => 'Je potřeba potvrdit :attribute.', - 'active_url' => ':attribute není platná adresa URL.', - 'after' => ':attribute musí být datum po :date.', - 'alpha' => ':attribute může obsahovat pouze písmena.', - 'alpha_dash' => ':attribute může obsahovat pouze písmena, čísla a pomlčky.', - 'alpha_num' => ':attribute může obsahovat pouze písmena a čísla.', - 'array' => ':attribute musí být textové pole.', - 'before' => ':attribute musí být datum před :date.', + 'accepted' => 'The :attribute must be accepted.', + 'active_url' => 'The :attribute is not a valid URL.', + 'after' => 'The :attribute must be a date after :date.', + 'alpha' => 'The :attribute may only contain letters.', + 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', + 'alpha_num' => 'The :attribute may only contain letters and numbers.', + 'array' => 'The :attribute must be an array.', + 'before' => 'The :attribute must be a date before :date.', 'between' => [ - 'numeric' => ':attribute musí mít hodnou mezi :min a :max.', - 'file' => ':attribute musí mít velikost v rozmezí :min až :max kilobytů.', - 'string' => ':attribute musí mít délku v rozmezí :min a :max znaků.', - 'array' => ':attribute musí mít mezi :min a :max položkami.', + 'numeric' => 'The :attribute must be between :min and :max.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'string' => 'The :attribute must be between :min and :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', ], - 'boolean' => ':attribute musí mít hodnotu pravda nebo nepravda.', - 'confirmed' => 'Potvrzení :attribute se neshoduje.', - 'date' => ':attribute není platné datum.', - 'date_format' => ':attribute se neshoduje se správným formátem :format.', - 'different' => ':attribute a :other se musí lišit.', - 'digits' => ':attribute musí obsahovat :digits číslice.', - 'digits_between' => ':attribute musí být v rozmezí :min a :max číslic.', - 'email' => ':attribute musí být platná e-mailová adresa.', - 'exists' => 'Vybraný :attribute je neplatný.', - 'distinct' => ':attribute má duplicitní hodnotu.', - 'filled' => 'Pole :attribute je vyžadováno.', - 'image' => ':attribute musí být obrázek.', - 'in' => 'Vybraný :attribute je neplatný.', - 'in_array' => ':attribute není v :other.', - 'integer' => ':attribute musí být celé číslo.', - 'ip' => ':attribute musí být platná IP adresa.', - 'json' => ': attribute musí být ve formátu JSON.', + 'boolean' => 'The :attribute field must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + 'date' => 'The :attribute is not a valid date.', + 'date_format' => 'The :attribute does not match the format :format.', + '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.', + 'email' => 'The :attribute must be a valid email address.', + 'exists' => 'The selected :attribute is invalid.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'filled' => 'The :attribute field is required.', + '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.', + 'json' => 'The :attribute must be a valid JSON string.', 'max' => [ - 'numeric' => ':attribute nesmí být větší než :max.', - 'file' => ':attribute nesmí být větší než :max kb.', - 'string' => ':attribute nesmí být delší než :max znaků.', - 'array' => 'Atribut nesmí mít více než :max položek.', + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => 'The :attribute may not have more than :max items.', ], - 'mimes' => ':attribute musí být soubor typu: :values.', + 'mimes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => ':attribute musí být alespoň :min.', - 'file' => 'Atribut musí mít alespoň :min kB.', - 'string' => ':attribute musí být dlouhý alespoň :min znaků.', - 'array' => ':attribute musí mít alespoň :min položek.', + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => 'Vybraný :attribute je neplatný.', - 'numeric' => 'Pole :attribute musí být číslo.', - 'present' => 'Pole :attribute je vyžadováno.', - 'regex' => 'Formát :attribute je neplatný.', - 'required' => 'Pole :attribute je vyžadováno.', - 'required_if' => 'Pole :attribute je požadováno, když :other je :value.', - 'required_unless' => 'Pole :attribute je požadováno, pokud :other není v :value.', - 'required_with' => 'Pole :attribute je požadováno, když je zadané :values.', - 'required_with_all' => 'Pole :attribute je požadováno, když je zadané :values.', - 'required_without' => 'Pole :attribute je požadováno když :values není k dispozici.', - 'required_without_all' => 'Pole :attribute je požadováno když :values není k dispozici.', - 'same' => ':attribute a: :other se musí shodovat.', + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', + '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 is 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' => [ - 'numeric' => ':attribute musí mít velikost: :size.', - 'file' => 'Atribut musí mít :size kB.', - 'string' => 'Atribut musí mít :size znaků.', - 'array' => ':attribute musí obsahovat :size položek.', + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', ], - 'string' => ':attribute musí být text.', - 'timezone' => ':attribute musí být platná zóna.', - 'unique' => ':attribute byl už použit.', - 'url' => 'Formát :attribute je neplatný.', + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'unique' => 'The :attribute has already been taken.', + 'url' => 'The :attribute format is invalid.', /* |-------------------------------------------------------------------------- @@ -102,7 +102,7 @@ return [ 'custom' => [ 'attribute-name' => [ - 'rule-name' => 'vlastní zpráva', + 'rule-name' => 'custom-message', ], ],