Update translation keys
Customize the branding and updated Russian translation.
This commit is contained in:
parent
d8077b8167
commit
415ef45a81
|
|
@ -241,6 +241,20 @@ return [
|
|||
'branding' => [
|
||||
'menu_label' => 'Customize back-end',
|
||||
'menu_description' => 'Customize the administration area such as name, colors and logo.',
|
||||
'brand' => 'Brand',
|
||||
'logo' => 'Logo',
|
||||
'logo_description' => 'Upload a custom logo to use in the back-end.',
|
||||
'app_name' => 'App Name',
|
||||
'app_name_description' => 'This name is shown in the title area of the back-end.',
|
||||
'app_tagline' => 'App Tagline',
|
||||
'app_tagline_description' => 'This name is shown on the sign in screen for the back-end.',
|
||||
'colors' => 'Colors',
|
||||
'primary_light' => 'Primary (Light)',
|
||||
'primary_dark' => 'Primary (Dark)',
|
||||
'secondary_light' => 'Secondary (Light)',
|
||||
'secondary_dark' => 'Secondary (Dark)',
|
||||
'styles' => 'Styles',
|
||||
'custom_stylesheet' => 'Custom stylesheet'
|
||||
],
|
||||
'backend_preferences' => [
|
||||
'menu_label' => 'Back-end preferences',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'auth' => [
|
||||
'title' => 'Административная панель',
|
||||
],
|
||||
'field' => [
|
||||
'invalid_type' => 'Использован неверный тип поля: :type.',
|
||||
'options_method_not_exists' => 'Класс модели :model должен содержать метод :method(), возвращающий опции для поля формы ":field".',
|
||||
|
|
@ -139,14 +142,18 @@ return [
|
|||
'missing_model' => 'Для формы используемой в :class не определена модель.',
|
||||
'missing_definition' => "Поведение формы не содержит поле для':field'.",
|
||||
'not_found' => 'Форма записи с идентификатором :ID не найдена.',
|
||||
'action_confirm' => "Вы уверены, что хотите сделать это?",
|
||||
'create' => 'Создать',
|
||||
'create_and_close' => 'Создать и закрыть',
|
||||
'creating' => 'Создание...',
|
||||
'creating_name' => 'Создание :name...',
|
||||
'save' => 'Сохранить',
|
||||
'save_and_close' => 'Сохранить и закрыть',
|
||||
'saving' => 'Сохранение...',
|
||||
'saving_name' => 'Сохранение :name...',
|
||||
'delete' => 'Удалить',
|
||||
'deleting' => 'Удаление...',
|
||||
'deleting_name' => 'Удаление :name...',
|
||||
'undefined_tab' => 'Разное',
|
||||
'field_off' => 'Выкл',
|
||||
'field_on' => 'Вкл',
|
||||
|
|
@ -154,6 +161,8 @@ return [
|
|||
'apply' => 'Применить',
|
||||
'cancel' => 'Отмена',
|
||||
'close' => 'Закрыть',
|
||||
'confirm' => 'Подтвердить',
|
||||
'reload' => 'Обновить',
|
||||
'ok' => 'OK',
|
||||
'or' => 'или',
|
||||
'confirm_tab_close' => 'Закрыть вкладку? Несохраненные изменения будут потеряны.',
|
||||
|
|
@ -164,7 +173,9 @@ return [
|
|||
'select_none' => 'ничего',
|
||||
'select_placeholder' => 'Пожалуйста, выберите',
|
||||
'insert_row' => 'Вставить строку',
|
||||
'delete_row' => 'Удалить строку'
|
||||
'delete_row' => 'Удалить строку',
|
||||
'concurrency_file_changed_title' => "Файл был изменен",
|
||||
'concurrency_file_changed_description' => "Файл, который вы редактируете был изменен другим пользователем. Вы можете либо перезагрузить файл и потерять ваши изменения или перезаписать его",
|
||||
],
|
||||
'relation' => [
|
||||
'missing_definition' => "Поведение отношения не содержит определения для ':field'.",
|
||||
|
|
@ -227,6 +238,24 @@ return [
|
|||
'menu_description' => 'Управление личной информацией (имя, почта, пароль)',
|
||||
'menu_keywords' => 'безопасность логин'
|
||||
],
|
||||
'branding' => [
|
||||
'menu_label' => 'Настройка панели администрирования',
|
||||
'menu_description' => 'Управление внешним видом административной панели (название, цвет, логотип)',
|
||||
'brand' => 'Брэнд',
|
||||
'logo' => 'Логотип',
|
||||
'logo_description' => 'Загрузите логотип для административной панели',
|
||||
'app_name' => 'Название приложения',
|
||||
'app_name_description' => 'Это имя отображается в заголовке административной панели',
|
||||
'app_tagline' => 'Слоган приложения',
|
||||
'app_tagline_description' => 'Слоган будет отображаться на экране входа в панель администрирования.',
|
||||
'colors' => 'Цвета',
|
||||
'primary_light' => 'Первичный (Светлый)',
|
||||
'primary_dark' => 'Первичный (Тёмный)',
|
||||
'secondary_light' => 'Вторичный (Светлый)',
|
||||
'secondary_dark' => 'Вторичный (Тёмный)',
|
||||
'styles' => 'Стили',
|
||||
'custom_stylesheet' => 'Пользовательские стили'
|
||||
],
|
||||
'backend_preferences' => [
|
||||
'menu_label' => 'Настройки панели управления',
|
||||
'menu_description' => 'Управление языком и внешним видом панели управления.',
|
||||
|
|
@ -244,4 +273,7 @@ return [
|
|||
'last_name' => 'Фамилия',
|
||||
'email' => 'Почта',
|
||||
],
|
||||
'filter' => [
|
||||
'all' => 'все'
|
||||
]
|
||||
];
|
||||
|
|
|
|||
|
|
@ -7,52 +7,52 @@ tabs:
|
|||
fields:
|
||||
|
||||
logo:
|
||||
label: Logo
|
||||
label: backend::lang.branding.logo
|
||||
type: fileupload
|
||||
commentAbove: Upload a custom logo to use in the back-end.
|
||||
commentAbove: backend::lang.branding.logo_description
|
||||
mode: image
|
||||
imageHeight: 170
|
||||
imageWidth: 170
|
||||
tab: Brand
|
||||
tab: backend::lang.branding.brand
|
||||
|
||||
app_name:
|
||||
label: App Name
|
||||
commentAbove: This name is shown in the title area of the back-end.
|
||||
tab: Brand
|
||||
label: backend::lang.branding.app_name
|
||||
commentAbove: backend::lang.branding.app_name_description
|
||||
tab: backend::lang.branding.brand
|
||||
|
||||
app_tagline:
|
||||
label: App Tagline
|
||||
commentAbove: This name is shown on the sign in screen for the back-end.
|
||||
tab: Brand
|
||||
label: backend::lang.branding.app_tagline
|
||||
commentAbove: backend::lang.branding.app_tagline_description
|
||||
tab: backend::lang.branding.brand
|
||||
|
||||
primary_color_light:
|
||||
label: Primary (Light)
|
||||
label: backend::lang.branding.primary_light
|
||||
type: colorpicker
|
||||
tab: Colors
|
||||
tab: backend::lang.branding.colors
|
||||
availableColors: [#1abc9c, #2ecc71, #3498db, #9b59b6, #34495e, #f1c40f, #e67e22, #e74c3c, #ecf0f1, #95a5a6]
|
||||
|
||||
primary_color_dark:
|
||||
label: Primary (Dark)
|
||||
label: backend::lang.branding.primary_dark
|
||||
type: colorpicker
|
||||
tab: Colors
|
||||
tab: backend::lang.branding.colors
|
||||
availableColors: [#16a085, #27ae60, #2980b9, #8e44ad, #2b3e50, #f39c12, #d35400, #c0392b, #bdc3c7, #7f8c8d]
|
||||
|
||||
secondary_color_light:
|
||||
label: Secondary (Light)
|
||||
label: backend::lang.branding.secondary_light
|
||||
type: colorpicker
|
||||
tab: Colors
|
||||
tab: backend::lang.branding.colors
|
||||
availableColors: [#1abc9c, #2ecc71, #3498db, #9b59b6, #34495e, #f1c40f, #e67e22, #e74c3c, #ecf0f1, #95a5a6]
|
||||
|
||||
secondary_color_dark:
|
||||
label: Secondary (Dark)
|
||||
label: backend::lang.branding.secondary_dark
|
||||
type: colorpicker
|
||||
tab: Colors
|
||||
tab: backend::lang.branding.colors
|
||||
availableColors: [#16a085, #27ae60, #2980b9, #8e44ad, #2b3e50, #f39c12, #d35400, #c0392b, #bdc3c7, #7f8c8d]
|
||||
|
||||
custom_css:
|
||||
label: Custom stylesheet
|
||||
label: backend::lang.branding.custom_stylesheet
|
||||
type: codeeditor
|
||||
tab: Styles
|
||||
tab: backend::lang.branding.styles
|
||||
size: giant
|
||||
language: css
|
||||
|
||||
|
|
|
|||
|
|
@ -111,6 +111,10 @@ return [
|
|||
'sendmail_path' => 'Sendmail Путь',
|
||||
'sendmail_path_comment' => 'Пожалуйста, укажите путь к sendmail.',
|
||||
'mailgun' => 'Mailgun',
|
||||
'mailgun_domain' => 'Mailgun домен',
|
||||
'mailgun_domain_comment' => 'Пожалуйста, укажите Mailgun домен.',
|
||||
'mailgun_secret' => 'Секретный API-ключ',
|
||||
'mailgun_domain_secret' => 'Введите ваш Mailgun API-ключ.',
|
||||
],
|
||||
'mail_templates' => [
|
||||
'menu_label' => 'Шаблоны почты',
|
||||
|
|
|
|||
Loading…
Reference in New Issue