X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/46c01ecba25e5e925e72f65b182fa94a1fa17703..refs/pull/2522/head:/resources/lang/sk/validation.php diff --git a/resources/lang/sk/validation.php b/resources/lang/sk/validation.php index b365b409d..c127b0623 100644 --- a/resources/lang/sk/validation.php +++ b/resources/lang/sk/validation.php @@ -1,18 +1,13 @@ ':attribute musí byť akceptovaný.', 'active_url' => ':attribute nie je platná URL.', 'after' => ':attribute musí byť dátum po :date.', @@ -35,12 +30,41 @@ return [ 'digits' => ':attribute musí mať :digits číslic.', 'digits_between' => ':attribute musí mať medzi :min a :max číslicami.', 'email' => ':attribute musí byť platná emailová adresa.', + 'ends_with' => 'The :attribute must end with one of the following: :values', 'filled' => 'Políčko :attribute je povinné.', + '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.', + ], 'exists' => 'Vybraný :attribute nie je platný.', 'image' => ':attribute musí byť obrázok.', + 'image_extension' => 'The :attribute must have a valid & supported image extension.', 'in' => 'Vybraný :attribute je neplatný.', 'integer' => ':attribute musí byť celé číslo.', 'ip' => ':attribute musí byť platná IP adresa.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'json' => 'The :attribute must be a valid JSON string.', + 'lt' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], 'max' => [ 'numeric' => ':attribute nesmie byť väčší ako :max.', 'file' => ':attribute nesmie byť väčší ako :max kilobajtov.', @@ -54,7 +78,9 @@ return [ 'string' => ':attribute musí mať aspoň :min znakov.', 'array' => ':attribute musí mať aspoň :min položiek.', ], + 'no_double_extension' => 'The :attribute must only have a single file extension.', 'not_in' => 'Vybraný :attribute je neplatný.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute musí byť číslo.', 'regex' => ':attribute formát je neplatný.', 'required' => 'Políčko :attribute je povinné.', @@ -64,6 +90,7 @@ return [ 'required_without' => 'Políčko :attribute je povinné aj :values neexistuje.', 'required_without_all' => 'Políčko :attribute je povinné ak ani jedno z :values neexistuje.', 'same' => ':attribute a :other musia byť rovnaké.', + 'safe_url' => 'The provided link may not be safe.', 'size' => [ 'numeric' => ':attribute musí byť :size.', 'file' => ':attribute musí mať :size kilobajtov.', @@ -74,35 +101,15 @@ return [ 'timezone' => ':attribute musí byť plantá časová zóna.', 'unique' => ':attribute je už použité.', 'url' => ':attribute formát je neplatný.', + 'uploaded' => 'The file could not be uploaded. The server may not accept files of this size.', - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - + // Custom validation lines 'custom' => [ 'password-confirm' => [ 'required_with' => 'Vyžaduje sa potvrdenie hesla', ], ], - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - + // Custom validation attributes 'attributes' => [], - ];