Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/i18n/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import zh_tw from "./zh_tw";
import pl from "./pl";
import es from "./es";
import ja from "./ja";
import uk from "./uk";

export default {
en,
Expand All @@ -27,5 +28,6 @@ export default {
zh_tw,
pl,
es,
ja
ja,
uk,
};
81 changes: 81 additions & 0 deletions src/i18n/uk.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
export default {
// Generic
"generic.add": "Додати",
"generic.cancel": "Скасувати",

// BlockType
"components.controls.blocktype.h1": "Заголовок 1",
"components.controls.blocktype.h2": "Заголовок 2",
"components.controls.blocktype.h3": "Заголовок 3",
"components.controls.blocktype.h4": "Заголовок 4",
"components.controls.blocktype.h5": "Заголовок 5",
"components.controls.blocktype.h6": "Заголовок 6",
"components.controls.blocktype.blockquote": "Цитата",
"components.controls.blocktype.code": "Код",
"components.controls.blocktype.blocktype": "Форматування",
"components.controls.blocktype.normal": "Звичайний",

// Color Picker
"components.controls.colorpicker.colorpicker": "Вибір кольору",
"components.controls.colorpicker.text": "Текст",
"components.controls.colorpicker.background": "Фон",

// Embedded
"components.controls.embedded.embedded": "Вбудовування",
"components.controls.embedded.embeddedlink": "Посилання в iFrame",
"components.controls.embedded.enterlink": "Вставте посилання",

// Emoji
"components.controls.emoji.emoji": "Емодзі",

// FontFamily
"components.controls.fontfamily.fontfamily": "Шрифт",

// FontSize
"components.controls.fontsize.fontsize": "Розмір шрифту",

// History
"components.controls.history.history": "Історія",
"components.controls.history.undo": "Скасувати",
"components.controls.history.redo": "Повернути",

// Image
"components.controls.image.image": "Зображення",
"components.controls.image.fileUpload": "Файли",
"components.controls.image.byURL": "URL",
"components.controls.image.dropFileText":
"Перетягніть файли в цю область або натисніть для завантаження",

// Inline
"components.controls.inline.bold": "Жирний",
"components.controls.inline.italic": "Курсив",
"components.controls.inline.underline": "Підкреслення",
"components.controls.inline.strikethrough": "Закреслення",
"components.controls.inline.monospace": "Моноширинний",
"components.controls.inline.superscript": "Верхній індекс",
"components.controls.inline.subscript": "Нижній індекс",

// Link
"components.controls.link.linkTitle": "Текст",
"components.controls.link.linkTarget": "Адреса посилання",
"components.controls.link.linkTargetOption": "Відкривати у новому вікні",
"components.controls.link.link": "Посилання",
"components.controls.link.unlink": "Прибрати посилання",

// List
"components.controls.list.list": "Список",
"components.controls.list.unordered": "Невпорядкований",
"components.controls.list.ordered": "Впорядкований",
"components.controls.list.indent": "Відступ",
"components.controls.list.outdent": "Виступ",

// Remove
"components.controls.remove.remove": "Видалити",

// TextAlign
"components.controls.textalign.textalign": "Вирівнювання тексту",
"components.controls.textalign.left": "Зліва",
"components.controls.textalign.center": "По центру",
"components.controls.textalign.right": "Справа",
"components.controls.textalign.justify": "Вирівняти",
};