Cachet/resources/lang/ru/validation.php
2016-07-06 19:14:21 +01:00

123 lines
6.6 KiB
PHP

<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
/*
|--------------------------------------------------------------------------
| Validation Language 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.
|
*/
'accepted' => ':attribute должен быть принят.',
'active_url' => ':attribute не является допустимым URL.',
'after' => ':attribute должно быть датой после :date.',
'alpha' => ':attribute может содержать только буквы.',
'alpha_dash' => ':attribute может содержать только латинские буквы, цифры и дефис.',
'alpha_num' => ':attribute может содержать только буквы и цифры.',
'array' => ': attribute должно быть массивом.',
'before' => ':attribute должно быть датой до :date.',
'between' => [
'numeric' => ':attribute должно быть датой до :date.',
'file' => 'The :attribute must be between :min and :max.',
'string' => 'The :attribute must be between :min and :max kilobytes.',
'array' => ':attribute должно содержать от :min до :max элементов.',
],
'boolean' => ':attribute должно содержать от :min до :max элементов.',
'confirmed' => 'The :attribute field must be true or false.',
'date' => 'The :attribute confirmation does not match.',
'date_format' => 'The :attribute is not a valid date.',
'different' => 'The :attribute does not match the format :format.',
'digits' => 'The :attribute and :other must be different.',
'digits_between' => 'The :attribute must be :digits digits.',
'email' => 'The :attribute must be between :min and :max digits.',
'exists' => 'The :attribute must be a valid email address.',
'distinct' => 'The :attribute field has a duplicate value.',
'filled' => 'Неправильный формат :attribute.',
'image' => ':attribute должно быть изображением.',
'in' => ':attribute должно быть изображением.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The selected :attribute is invalid.',
'ip' => 'The :attribute must be an integer.',
'json' => ':attribute должен быть в JSON формате.',
'max' => [
'numeric' => 'The :attribute must be a valid IP address.',
'file' => 'The :attribute may not be greater than :max.',
'string' => 'The :attribute may not be greater than :max kilobytes.',
'array' => ':attribute не может содержать больше чем :max элементов.',
],
'mimes' => ':attribute не может содержать больше чем :max элементов.',
'min' => [
'numeric' => 'The :attribute must be a file of type: :values.',
'file' => ':attribute должно быть не меньше :min килобайт.',
'string' => ':attribute должно быть не меньше :min килобайт.',
'array' => 'The :attribute must be at least :min characters.',
],
'not_in' => 'The :attribute must have at least :min items.',
'numeric' => 'The selected :attribute is invalid.',
'present' => 'The :attribute field must be present.',
'regex' => 'The :attribute must be a number.',
'required' => 'Неправильный формат :attribute.',
'required_if' => 'The :attribute field is required.',
'required_unless' => 'Поле :attribute обязательно, если :other не из :values.',
'required_with' => 'The :attribute field is required when :other is :value.',
'required_with_all' => 'Поле :attribute является обязательным, если все :values заполнены.',
'required_without' => 'Поле :attribute является обязательным, если все :values заполнены.',
'required_without_all' => 'The :attribute field is required when :values is not present.',
'same' => 'The :attribute field is required when none of :values are present.',
'size' => [
'numeric' => 'The :attribute and :other must match.',
'file' => ':attribute должно быть объемом :size килобайт.',
'string' => 'Поле :attribute должно содержать :size символов.',
'array' => 'Поле :attribute должно содержать :size символов.',
],
'string' => 'The :attribute must contain :size items.',
'timezone' => ':attribute должно быть корректным часовым поясом.',
'unique' => ':attribute уже занято.',
'url' => 'Неправильный формат :attribute.',
/*
|--------------------------------------------------------------------------
| 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' => [
'attribute-name' => [
'rule-name' => 'настраиваемое сообщение',
],
],
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'attributes' => [],
];