Skip to content

Commit

Permalink
ru lang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
osbre authored Jun 4, 2018
1 parent 8063eda commit ded0205
Showing 1 changed file with 112 additions and 1 deletion.
113 changes: 112 additions & 1 deletion src/Lang/ru/installer_messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'welcome' => [
'title' => 'Установка Laravel',
'message' => 'Добро пожаловать в первоначальную настройку фреймворка Laravel.',
'next' => 'Следующий шаг',
],


Expand All @@ -29,8 +30,9 @@
*/
'requirements' => [
'title' => 'Необходимые модули',
'next' => 'Следующий шаг',
],


/**
*
Expand All @@ -39,6 +41,7 @@
*/
'permissions' => [
'title' => 'Проверка прав на папках',
'next' => 'Следующий шаг',
],


Expand All @@ -48,6 +51,114 @@
*
*/
'environment' => [
'menu' => [
'templateTitle' => 'Шаг 3 | Настройки среды',
'title' => 'Настройки среды',
'desc' => 'Выберите, как вы хотите настроить файл <code> .env </code>.',
'wizard-button' => 'Мастера форм',
'classic-button' => 'Редактор текста',
],
'wizard' => [
'templateTitle' => 'Шаг 3 | Настройки среды | Управляемый мастер',
'title' => 'Управляемый <code> .env </code> Мастер',
'tabs' => [
'environment' => 'Окружение',
'database' => 'База данных',
'application' => 'Приложение'
],
'form' => [
'name_required' => 'Требуется имя среды.',
'app_name_label' => 'Имя приложения',
'app_name_placeholder' => 'Имя приложения',
'app_environment_label' => 'Окружение приложения',
'app_environment_label_local' => 'Локальное',
'app_environment_label_developement' => 'Разработочное',
'app_environment_label_qa' => 'Qa',
'app_environment_label_production' => 'Продакшн',
'app_environment_label_other' => 'Другое',
'app_environment_placeholder_other' => 'Введите свое окружение ...',
'app_debug_label' => 'Дебаг приложения',
'app_debug_label_true' => 'Да',
'app_debug_label_false' => 'Нет',
'app_log_level_label' => 'Уровень журнала логирования',
'app_log_level_label_debug' => 'debug',
'app_log_level_label_info' => 'info',
'app_log_level_label_notice' => 'notice',
'app_log_level_label_warning' => 'warning',
'app_log_level_label_error' => 'error',
'app_log_level_label_critical' => 'critical',
'app_log_level_label_alert' => 'alert',
'app_log_level_label_emergency' => 'emergency',
'app_url_label' => 'URL приложения',
'app_url_placeholder' => 'URL приложения',
'db_connection_label' => 'Подключение к базе данных',
'db_connection_label_mysql' => 'mysql',
'db_connection_label_sqlite' => 'sqlite',
'db_connection_label_pgsql' => 'pgsql',
'db_connection_label_sqlsrv' => 'sqlsrv',
'db_host_label' => 'Хост базы данных',
'db_host_placeholder' => 'Хост базы данных',
'db_port_label' => 'Порт базы данных',
'db_port_placeholder' => 'Порт базы данных',
'db_name_label' => 'Название базы данных',
'db_name_placeholder' => 'Название базы данных',
'db_username_label' => 'Имя пользователя базы данных',
'db_username_placeholder' => 'Имя пользователя базы данных',
'db_password_label' => 'Пароль базы данных',
'db_password_placeholder' => 'Пароль базы данных',

'app_tabs' => [
'more_info' => 'Больше информации',
'broadcasting_title' => 'Broadcasting, Caching, Session, &amp; Queue',
'broadcasting_label' => 'Broadcast Driver',
'broadcasting_placeholder' => 'Broadcast Driver',
'cache_label' => 'Cache Driver',
'cache_placeholder' => 'Cache Driver',
'session_label' => 'Session Driver',
'session_placeholder' => 'Session Driver',
'queue_label' => 'Queue Driver',
'queue_placeholder' => 'Queue Driver',
'redis_label' => 'Redis Driver',
'redis_host' => 'Redis Host',
'redis_password' => 'Redis Password',
'redis_port' => 'Redis Port',

'mail_label' => 'Mail',
'mail_driver_label' => 'Mail Driver',
'mail_driver_placeholder' => 'Mail Driver',
'mail_host_label' => 'Mail Host',
'mail_host_placeholder' => 'Mail Host',
'mail_port_label' => 'Mail Port',
'mail_port_placeholder' => 'Mail Port',
'mail_username_label' => 'Mail Username',
'mail_username_placeholder' => 'Mail Username',
'mail_password_label' => 'Mail Password',
'mail_password_placeholder' => 'Mail Password',
'mail_encryption_label' => 'Mail Encryption',
'mail_encryption_placeholder' => 'Mail Encryption',

'pusher_label' => 'Pusher',
'pusher_app_id_label' => 'Pusher App Id',
'pusher_app_id_palceholder' => 'Pusher App Id',
'pusher_app_key_label' => 'Pusher App Key',
'pusher_app_key_palceholder' => 'Pusher App Key',
'pusher_app_secret_label' => 'Pusher App Secret',
'pusher_app_secret_palceholder' => 'Pusher App Secret',
],
'buttons' => [
'setup_database' => 'Настройка базы данных',
'setup_application' => 'Настройка приложения',
'install' => 'Установить',
],
],
],
'classic' => [
'templateTitle' => 'Шаг 3 | Настройки среды | Классический редактор',
'title' => 'Классический редактор среды',
'save' => 'Сохранить .env',
'back' => 'Использовать мастер форм',
'install' => 'Сохранить и установить',
],
'title' => 'Настройки окружения',
'save' => 'Сохранить .env',
'success' => 'Настройки успешно сохранены в файле .env',
Expand Down

0 comments on commit ded0205

Please sign in to comment.