Skip to content

Commit

Permalink
Merge pull request #311 from tlegenbayangali/3.x
Browse files Browse the repository at this point in the history
add russian language translations
  • Loading branch information
awcodes authored Sep 22, 2023
2 parents 4221454 + 300f733 commit 6fb0c39
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 0 deletions.
29 changes: 29 additions & 0 deletions resources/lang/ru/forms.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

return [
'sections' => [
'details' => 'Детали',
'exif' => 'Exif данные',
'file' => 'Файл',
'meta' => 'Мета',
'preview' => 'Превью',
'upload_new' => 'Загрузить еще',
'upload_new_helper' => 'Если у вас есть какие-либо курирования для этого медиа, то вам придется из воссоздать, они не создадуться автоматически.',
'curation' => 'Курирование',
],
'fields' => [
'alt' => 'Alt текст',
'alt_hint' => 'Alt?',
'caption' => 'Заголовок',
'description' => 'Описание',
'file' => 'Файл',
'title' => 'Заголовок',
'name' => 'Название',
],
'notices' => [
'success' => 'Элемент обновлен успешно',
],
'curations' => [
'button_label' => 'Создание курирования',
],
];
8 changes: 8 additions & 0 deletions resources/lang/ru/notifications.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'update_success' => 'Запись обновлена успешно.',
'update_error' => 'При обновлении записи произошла ошибка.',
'delete_success' => 'Запись удалена успешно.',
'delete_error' => 'При удалении записи произошла ошибка.',
];
16 changes: 16 additions & 0 deletions resources/lang/ru/tables.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

return [
'columns' => [
'url' => 'URL',
'name' => 'Имя',
'ext' => 'Расширение',
'disk' => 'Диск',
'directory' => 'Директория',
'created_at' => 'Создано',
],
'actions' => [
'toggle_table_grid' => 'Вид сеткой',
'toggle_table_list' => 'Вид списком',
],
];
70 changes: 70 additions & 0 deletions resources/lang/ru/views.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<?php

return [
'details' => [
'uploaded_on' => 'Загружено',
'file_type' => 'Тип файла',
'file_size' => 'Размер файла',
'dimensions' => 'Размеры',
'disk' => 'Диск',
'directory' => 'Директория',
'file_url' => 'URL файла',
'file' => 'Файл',
'ext' => 'Расш.',
'copy_url' => 'Скопировать URL',
'url_copied' => 'Скопировано!',
],
'picker' => [
'button' => 'Добавить медиа',
'reorder' => 'Пересортировать',
'view' => 'Вид',
'edit' => 'Редактирование',
'download' => 'Скачать',
'remove' => 'Удалить',
'clear' => 'Удалить все',
],
'panel' => [
'button' => 'Добавить медиа',
'heading' => 'Выбор медиа',
'search_label' => 'Поиск',
'search_placeholder' => 'Поиск',
'upload_tab' => 'Загрузить медиа',
'media_library_tab' => 'Медиабиблиотека',
'deselect' => 'Отменить выбор',
'load_more' => 'Загрузить еще',
'empty' => 'По вашему запросу в библиотеке ничего не найдено.',
'edit_media' => 'Редактировать медиа',
'edit_save' => 'Сохранить',
'edit_delete' => 'Удалить',
'edit_cancel' => 'Отмена',
'use_selected_image' => 'Вставить',
'add_files' => 'Добавить файлы',
'view' => 'Вид',
'edit' => 'Редактировать',
'download' => 'Скачать',
'remove' => 'Удалть',
'deselect_all' => 'Отменить все',
],
'curation' => [
'heading' => 'Курирование',
'adjustments' => 'Корректировки',
'cancel' => 'Отмена',
'custom' => 'Пользовательский',
'key' => 'Ключ',
'key_helper' => 'Нет референсов для извлечения курирований для показа.',
'zoom_in' => 'Приблизить',
'zoom_out' => 'Отдалить',
'flip_horizontally' => 'Отразить горизонтально',
'flip_vertically' => 'Отразить вертикально',
'drag_mode' => 'Режим перетаскивания',
'crop_mode' => 'Режим обрезки',
'reset' => 'Сбросить',
'save_curation' => 'Сохранить курированое',
'height' => 'Высота',
'width' => 'Ширина',
'format' => 'Формат',
'quality' => 'Качество',
'rotate' => 'Перевернуть',
'rotate_deg' => 'град',
],
];

0 comments on commit 6fb0c39

Please sign in to comment.