first commit
This commit is contained in:
19
resources/lang/en/auth.php
Normal file
19
resources/lang/en/auth.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
36
resources/lang/en/emails.php
Normal file
36
resources/lang/en/emails.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Email Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
*/
|
||||
|
||||
'reset_password' => [
|
||||
'subject' => 'Reset Password Notification',
|
||||
'intro' => 'You are receiving this email because we received a password reset request for your account.',
|
||||
'action' => 'Reset Password',
|
||||
'outro' => 'If you did not request a password reset, no further action is required.'
|
||||
],
|
||||
|
||||
'invite' => [
|
||||
'welcome' => 'Welcome to :name',
|
||||
'use_these_credentials' => 'Use these credentials for your first login',
|
||||
'login' => 'Login',
|
||||
'password' => 'Password',
|
||||
'login_btn' => 'Login',
|
||||
'regards' => 'Regards, :name',
|
||||
],
|
||||
|
||||
'registration' => [
|
||||
'welcome' => 'Welcome to :name!',
|
||||
'invited' => 'You\'ve been invited to :name.',
|
||||
'registration' => 'Please complete the registration account by following this link.',
|
||||
'create' => 'Create account',
|
||||
'regards' => 'Regards, :name',
|
||||
],
|
||||
|
||||
];
|
||||
22
resources/lang/en/errors.php
Normal file
22
resources/lang/en/errors.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Message Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the Laravel Responder package.
|
||||
| When it generates error responses, it will search the messages array
|
||||
| below for any key matching the given error code for the response.
|
||||
|
|
||||
*/
|
||||
|
||||
'unauthenticated' => 'You are not authenticated for this request.',
|
||||
'unauthorized' => 'You are not authorized for this request.',
|
||||
'page_not_found' => 'The requested page does not exist.',
|
||||
'relation_not_found' => 'The requested relation does not exist.',
|
||||
'validation_failed' => 'The given data failed to pass validation.',
|
||||
|
||||
];
|
||||
19
resources/lang/en/pagination.php
Normal file
19
resources/lang/en/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
resources/lang/en/passwords.php
Normal file
22
resources/lang/en/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset action!',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
|
||||
];
|
||||
140
resources/lang/en/validation.php
Normal file
140
resources/lang/en/validation.php
Normal file
@@ -0,0 +1,140 @@
|
||||
<?php
|
||||
|
||||
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' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :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.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'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' => '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.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'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.',
|
||||
'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.',
|
||||
'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.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'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' => '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' => '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' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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-message',
|
||||
],
|
||||
],
|
||||
|
||||
'time_interval_already_exist' => 'The time for this interval already exists.',
|
||||
|
||||
'offline-sync' => [
|
||||
'cannot_create_interval' => 'Cannot create interval, make sure You are a member of the project or assigned to the task',
|
||||
'cannot_find_interval' => 'Cannot find interval, to attach screenshot to',
|
||||
'screenshot_attached' => 'Screenshot added to the queue (see logs)',
|
||||
'screenshot_not_attached' => 'Screenshot not attached (see logs)',
|
||||
'time_interval_already_exist' => 'The time for this interval already exists.',
|
||||
'time_interval_added' => 'Added',
|
||||
'wrong_extension' => 'File extension should be .cattr'
|
||||
],
|
||||
|
||||
'tasks-relations' => [
|
||||
'already_exists' => 'Relation already exists!',
|
||||
'must_have_same_project' => 'Tasks mush have same project.',
|
||||
'cyclic_relation_detected' => 'Cyclic relation detected!',
|
||||
'cannot_start_before_parent_ends' => "Task can't start before parent task!",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [],
|
||||
|
||||
];
|
||||
19
resources/lang/ru/auth.php
Normal file
19
resources/lang/ru/auth.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Не удалось найти такую учетную запись.',
|
||||
'throttle' => 'Слишком много попыток авторизации. Пожалуйста, попробуйте через :seconds секунд.',
|
||||
|
||||
];
|
||||
36
resources/lang/ru/emails.php
Normal file
36
resources/lang/ru/emails.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Email Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
*/
|
||||
|
||||
'reset_password' => [
|
||||
'subject' => 'Сброс пароля',
|
||||
'intro' => 'Вы получили это письмо, потому что мы получили запрос на сброс пароля для вашей учетной записи.',
|
||||
'action' => 'Сбросить пароль',
|
||||
'outro' => 'Если вы не запрашивали сброс пароля, проигнорируйте это сообщение.'
|
||||
],
|
||||
|
||||
'invite' => [
|
||||
'welcome' => 'Добро пожаловать в :name',
|
||||
'use_these_credentials' => 'Используйте эти учетные данные для вашего первого входа в систему',
|
||||
'login' => 'Логин',
|
||||
'password' => 'Пароль',
|
||||
'login_btn' => 'Войти',
|
||||
'regards' => 'С уважением, :name',
|
||||
],
|
||||
|
||||
'registration' => [
|
||||
'welcome' => 'Добро пожаловать в :name!',
|
||||
'invited' => 'Вы были приглашены в :name.',
|
||||
'registration' => 'Завершите регистрацию аккаунта, перейдя по этой ссылке.',
|
||||
'create' => 'Создать аккаунт',
|
||||
'regards' => 'С уважением, :name',
|
||||
],
|
||||
|
||||
];
|
||||
22
resources/lang/ru/passwords.php
Normal file
22
resources/lang/ru/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Пароль должен содержать не менее 6 символов.',
|
||||
'reset' => 'Ваш пароль был сброшен.',
|
||||
'sent' => 'Мы отправили на вашу почту письмо для восстановления пароля.',
|
||||
'token' => 'Токен для сброса пароля недействителен.',
|
||||
'user' => 'Мы не смогли найти пользователя с таким E-mail.',
|
||||
|
||||
];
|
||||
205
resources/lang/ru/validation.php
Normal file
205
resources/lang/ru/validation.php
Normal file
@@ -0,0 +1,205 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Языковые ресурсы для проверки значений
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Последующие языковые строки содержат сообщения по-умолчанию, используемые
|
||||
| классом, проверяющим значения (валидатором). Некоторые из правил имеют
|
||||
| несколько версий, например, size. Вы можете поменять их на любые
|
||||
| другие, которые лучше подходят для вашего приложения.
|
||||
|
|
||||
*/
|
||||
'accepted' => 'Вы должны принять :attribute.',
|
||||
'active_url' => 'Поле :attribute содержит недействительный URL.',
|
||||
'after' => 'В поле :attribute должна быть дата после :date.',
|
||||
'after_or_equal' => 'В поле :attribute должна быть дата после или равняться :date.',
|
||||
'alpha' => 'Поле :attribute может содержать только буквы.',
|
||||
'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.',
|
||||
'alpha_num' => 'Поле :attribute может содержать только буквы и цифры.',
|
||||
'array' => 'Поле :attribute должно быть массивом.',
|
||||
'before' => 'В поле :attribute должна быть дата до :date.',
|
||||
'before_or_equal' => 'В поле :attribute должна быть дата до или равняться :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Поле :attribute должно быть между :min и :max.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть между :min и :max Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть между :min и :max.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть между :min и :max.',
|
||||
],
|
||||
'boolean' => 'Поле :attribute должно иметь значение логического типа.',
|
||||
'confirmed' => 'Поле :attribute не совпадает с подтверждением.',
|
||||
'date' => 'Поле :attribute не является датой.',
|
||||
'date_equals' => 'Поле :attribute должно быть датой равной :date.',
|
||||
'date_format' => 'Поле :attribute не соответствует формату :format.',
|
||||
'different' => 'Поля :attribute и :other должны различаться.',
|
||||
'digits' => 'Длина цифрового поля :attribute должна быть :digits.',
|
||||
'digits_between' => 'Длина цифрового поля :attribute должна быть между :min и :max.',
|
||||
'dimensions' => 'Поле :attribute имеет недопустимые размеры изображения.',
|
||||
'distinct' => 'Поле :attribute содержит повторяющееся значение.',
|
||||
'email' => 'Поле :attribute должно быть действительным электронным адресом.',
|
||||
'ends_with' => 'Поле :attribute должно заканчиваться одним из следующих значений: :values',
|
||||
'exists' => 'Выбранное значение для :attribute некорректно.',
|
||||
'file' => 'Поле :attribute должно быть файлом.',
|
||||
'filled' => 'Поле :attribute обязательно для заполнения.',
|
||||
'gt' => [
|
||||
'numeric' => 'Поле :attribute должно быть больше :value.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть больше :value Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть больше :value.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть больше :value.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'Поле :attribute должно быть больше или равно :value.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть больше или равен :value Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть больше или равно :value.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть больше или равно :value.',
|
||||
],
|
||||
'image' => 'Поле :attribute должно быть изображением.',
|
||||
'in' => 'Выбранное значение для :attribute ошибочно.',
|
||||
'in_array' => 'Поле :attribute не существует в :other.',
|
||||
'integer' => 'Поле :attribute должно быть целым числом.',
|
||||
'ip' => 'Поле :attribute должно быть действительным IP-адресом.',
|
||||
'ipv4' => 'Поле :attribute должно быть действительным IPv4-адресом.',
|
||||
'ipv6' => 'Поле :attribute должно быть действительным IPv6-адресом.',
|
||||
'json' => 'Поле :attribute должно быть JSON строкой.',
|
||||
'lt' => [
|
||||
'numeric' => 'Поле :attribute должно быть меньше :value.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть меньше :value Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть меньше :value.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть меньше :value.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'Поле :attribute должно быть меньше или равно :value.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть меньше или равен :value Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть меньше или равно :value.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть меньше или равно :value.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'Поле :attribute не может быть более :max.',
|
||||
'file' => 'Размер файла в поле :attribute не может быть более :max Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute не может превышать :max.',
|
||||
'array' => 'Количество элементов в поле :attribute не может превышать :max.',
|
||||
],
|
||||
'mimes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.',
|
||||
'mimetypes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'Поле :attribute должно быть не менее :min.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть не менее :min Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть не менее :min.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть не менее :min.',
|
||||
],
|
||||
'not_in' => 'Выбранное значение для :attribute ошибочно.',
|
||||
'not_regex' => 'Выбранный формат для :attribute ошибочный.',
|
||||
'numeric' => 'Поле :attribute должно быть числом.',
|
||||
'password' => 'Неверный пароль.',
|
||||
'present' => 'Поле :attribute должно присутствовать.',
|
||||
'regex' => 'Поле :attribute имеет ошибочный формат.',
|
||||
'required' => 'Поле :attribute обязательно для заполнения.',
|
||||
'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.',
|
||||
'required_unless' => 'Поле :attribute обязательно для заполнения, когда :other не равно :values.',
|
||||
'required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.',
|
||||
'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.',
|
||||
'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.',
|
||||
'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.',
|
||||
'same' => 'Значения полей :attribute и :other должны совпадать.',
|
||||
'size' => [
|
||||
'numeric' => 'Поле :attribute должно быть равным :size.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть равен :size Килобайт(а).',
|
||||
'string' => 'Количество символов в поле :attribute должно быть равным :size.',
|
||||
'array' => 'Количество элементов в поле :attribute должно быть равным :size.',
|
||||
],
|
||||
'starts_with' => 'Поле :attribute должно начинаться из одного из следующих значений: :values',
|
||||
'string' => 'Поле :attribute должно быть строкой.',
|
||||
'timezone' => 'Поле :attribute должно быть действительным часовым поясом.',
|
||||
'unique' => 'Такое значение поля :attribute уже существует.',
|
||||
'uploaded' => 'Загрузка поля :attribute не удалась.',
|
||||
'url' => 'Поле :attribute имеет ошибочный формат.',
|
||||
'uuid' => 'Поле :attribute должно быть корректным UUID.',
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Собственные языковые ресурсы для проверки значений
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Здесь Вы можете указать собственные сообщения для атрибутов.
|
||||
| Это позволяет легко указать свое сообщение для заданного правила атрибута.
|
||||
|
|
||||
| http://laravel.com/docs/validation#custom-error-messages
|
||||
| Пример использования
|
||||
|
|
||||
| 'custom' => [
|
||||
| 'email' => [
|
||||
| 'required' => 'Нам необходимо знать Ваш электронный адрес!',
|
||||
| ],
|
||||
| ],
|
||||
|
|
||||
*/
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
'time_interval_already_exist' => 'Время для этого интервала уже существует.',
|
||||
|
||||
'offline-sync' => [
|
||||
'cannot_create_interval' => 'Невозможно создать интервал, убедитесь что Вы являетесь членом проекта или исполнителем задачи.',
|
||||
'cannot_find_interval' => 'Не получилось найти интервал для прикрепления скриншота',
|
||||
'screenshot_attached' => 'Скриншот добавлен в очередь (см. лог очереди)',
|
||||
'screenshot_not_attached' => 'Скриншот не прикреплён (см. логи)',
|
||||
'time_interval_already_exist' => 'Время для этого интервала уже существует.',
|
||||
'time_interval_added' => 'Добавлен',
|
||||
'wrong_extension' => 'Расширение файла должно быть .cattr'
|
||||
],
|
||||
|
||||
'tasks-relations' => [
|
||||
'already_exists' => 'Связь уже существует!',
|
||||
'must_have_same_project' => 'Задачи должны быть из одного проекта.',
|
||||
'cyclic_relation_detected' => 'Обнаружена цикличная связь!',
|
||||
'cannot_start_before_parent_ends' => "Задача не может начаться до родительской задачи!",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Собственные названия атрибутов
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Последующие строки используются для подмены программных имен элементов
|
||||
| пользовательского интерфейса на удобочитаемые. Например, вместо имени
|
||||
| поля "email" в сообщениях будет выводиться "электронный адрес".
|
||||
|
|
||||
| Пример использования
|
||||
|
|
||||
| 'attributes' => [
|
||||
| 'email' => 'электронный адрес',
|
||||
| ],
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
'full_name' => 'Имя',
|
||||
'email' => 'E-mail',
|
||||
'url' => 'URL',
|
||||
'company_id' => 'Компания',
|
||||
'avatar' => 'Изображение пользователя',
|
||||
'screenshots_state' => 'Снятие скриншотов',
|
||||
'manual_time' => 'Ручная установка интервалов',
|
||||
'computer_time_popup' => 'Время неактивности пользователя',
|
||||
'screenshots_interval' => 'Интервал снятия скриншота',
|
||||
'active' => 'Активен',
|
||||
'password' => 'Пароль',
|
||||
'timezone' => 'Часовая пояс',
|
||||
'important' => 'Важно',
|
||||
'change_password' => 'Обязать пользователя сменить пароль',
|
||||
'role_id' => 'Роль',
|
||||
'user_language' => 'Язык пользователя',
|
||||
|
||||
'project_id' => 'Проект',
|
||||
'task_name' => 'Имя задачи',
|
||||
'description' => 'Описание',
|
||||
'user_id' => 'Пользователь',
|
||||
'assigned_by' => 'Назначена',
|
||||
'priority_id' => 'Приоритет',
|
||||
'name' => 'Имя'
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user