diff --git a/resources/lang/ru-RU/validation.php b/resources/lang/ru-RU/validation.php index b40a81bd..3e681b54 100644 --- a/resources/lang/ru-RU/validation.php +++ b/resources/lang/ru-RU/validation.php @@ -37,54 +37,54 @@ return [ 'array' => ':attribute должно содержать от :min до :max элементов.', ], 'boolean' => 'Значение :attribute должно быть true или false.', - 'confirmed' => 'The :attribute confirmation does not match.', + 'confirmed' => 'Подтверждение для :attribute не совпадает.', 'date' => 'Значение :attribute не является корректной датой.', 'date_format' => 'Значение :attribute не соответствует формату :format.', 'different' => 'Значения :attribute и :other должны быть разными.', - '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.', + 'digits' => 'Значение :attribute должно быть :digits цифр.', + 'digits_between' => 'Значение :attribute должно содержать от :min до :max цифр.', + 'email' => 'Значение :attribute должно быть действительным E-mail адресом.', + 'exists' => 'Выбранное значение :attribute недопустимо.', 'distinct' => 'Поле :attribute содержит дублирующееся значение.', - 'filled' => 'The :attribute field is required.', + 'filled' => 'Поле :attribute обязательно для заполнения.', 'image' => ':attribute должно быть изображением.', - 'in' => 'The selected :attribute is invalid.', + 'in' => 'Выбранное значение :attribute недопустимо.', 'in_array' => 'Поле :attribute не существует в :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', + 'integer' => 'Значение :attribute должно быть целым числом.', + 'ip' => 'Значение :attribute должно быть действительным IP-адресом.', 'json' => ':attribute должен быть в JSON формате.', 'max' => [ - '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.', + 'numeric' => 'Значение :attribute не может быть более :max.', + 'file' => 'Значение :attribute не может быть более :max килобайт(а).', + 'string' => 'Значение :attribute не может быть больше :max символов.', 'array' => ':attribute не может содержать больше чем :max элементов.', ], - 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimes' => ':attribute должно быть файлом одного из следующих типов: :values.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', + 'numeric' => 'Значение :attribute не должно быть меньше чем :min.', 'file' => ':attribute должно быть не меньше :min килобайт.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', + 'string' => 'Значение :attribute должно быть по крайней мере :min символов.', + 'array' => 'Значение :attribute должно быть не менее :min элементов.', ], - 'not_in' => 'The selected :attribute is invalid.', + 'not_in' => 'Выбранное значение :attribute недопустимо.', 'numeric' => 'Значение :attribute должно быть числом.', 'present' => 'Поле :attribute должно быть заполнено.', 'regex' => 'Неправильный формат :attribute.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', + 'required' => 'Поле :attribute обязательно для заполнения.', + 'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', 'required_unless' => 'Поле :attribute обязательно, если :other не из :values.', 'required_with' => 'Поле :attribute является обязательным, если все :values заполнены.', 'required_with_all' => 'Поле :attribute является обязательным, если все :values заполнены.', - '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.', + 'required_without' => 'Поле :attribute является обязательным, если :values не заполнены.', + 'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.', + 'same' => 'Значение :attribute должно совпадать с :other.', 'size' => [ - 'numeric' => 'The :attribute must be :size.', + 'numeric' => 'Значение :attribute должно быть длиной :size.', 'file' => ':attribute должно быть объемом :size килобайт.', 'string' => 'Поле :attribute должно содержать :size символов.', - 'array' => 'The :attribute must contain :size items.', + 'array' => 'Количество элементов в поле :attribute должно быть равным :size.', ], - 'string' => 'The :attribute must be a string.', + 'string' => 'Значение :attribute должно быть строкой.', 'timezone' => ':attribute должно быть корректным часовым поясом.', 'unique' => ':attribute уже занято.', 'url' => 'Неправильный формат :attribute.',