<?php
/**
- * Validation Lines / Стрічки перевірки
- * The following language lines contain the default error messages used by / Наступні мовні лінії містять повідомлення про помилку за замовчуванням,
- * the validator class. Some of these rules have multiple versions such / що використовуються класом валідатора. Деякі з цих правил мають кілька версій,
- * as the size rules. Feel free to tweak each of these messages here. / таких як правила розмірів. Ви можете налаштувати кожен з цих повідомлень тут.
+ * Validation Lines
+ * The following language lines contain the default error messages used by
+ * the validator class. Some of these rules have multiple versions such
+ * as the size rules. Feel free to tweak each of these messages here.
*/
return [
'digits' => ':attribute повинні бути :digits цифрами.',
'digits_between' => ':attribute має бути між :min та :max цифр.',
'email' => ':attribute повинна бути дійсною електронною адресою.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values',
'filled' => ':attribute поле обов\'язкове.',
+ 'gt' => [
+ 'numeric' => 'The :attribute must be greater than :value.',
+ 'file' => ':attribute має бути більшим ніж :value кілобайт.',
+ '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' => 'Вибраний :attribute недійсний.',
'image' => ':attribute повинен бути зображенням.',
'image_extension' => ':attribute повинен мати дійсне та підтримуване розширення зображення.',
'in' => 'Вибраний :attribute недійсний.',
'integer' => ':attribute повинен бути цілим числом.',
'ip' => ':attribute повинна бути дійсною IP-адресою.',
+ '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 не може бути більшим за :max.',
'file' => ':attribute не може бути більшим за :max кілобайт.',
],
'no_double_extension' => ':attribute повинен мати тільки одне розширення файлу.',
'not_in' => 'Вибраний :attribute недійсний.',
+ 'not_regex' => 'The :attribute format is invalid.',
'numeric' => ':attribute повинен бути числом.',
'regex' => ':attribute формат недійсний.',
'required' => ':attribute поле обов\'язкове.',