Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update l10n-strings.ts #2492

Merged
merged 2 commits into from
Aug 18, 2024
Merged
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
110 changes: 110 additions & 0 deletions src/editor/l10n-strings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,114 @@
export const STRINGS = {

//Macedonian
'mk': {
'keyboard.tooltip.symbols': 'Симболи',
'keyboard.tooltip.greek': 'Грчки букви',
'keyboard.tooltip.numeric': 'Нумерички',
'keyboard.tooltip.alphabetic': 'Римски букви',
'tooltip.copy to clipboard': 'Копирај во привремена меморија',
'tooltip.cut to clipboard': 'Исечи во привремена меморија',
'tooltip.paste from clipboard': 'Залепи од привремена меморија',
'tooltip.redo': 'Повтори',
'tooltip.toggle virtual keyboard': 'Вклучи/исклучи виртуелна тастатура',
'tooltip.menu': 'Мени',
'tooltip.undo': 'Врати',
'menu.borders': 'Граници',
'menu.insert matrix': 'Вметни матрица',
'menu.array.add row above': 'Додај ред погоре',
'menu.array.add row below': 'Додај ред подолу',
'menu.array.add column after': 'Додај колона потоа',
'menu.array.add column before': 'Додај колона претходно',
'menu.array.delete row': 'Избриши ред',
'menu.array.delete rows': 'Избриши избрани редови',
'menu.array.delete column': 'Избриши колона',
'menu.array.delete columns': 'Избриши избрани колони',

'menu.mode': 'Режим',
'menu.mode-math': 'Математика',
'menu.mode-text': 'Текст',
'menu.mode-latex': 'ЛаТеКс',

'menu.insert': 'Вметни',
'menu.insert.abs': 'Апсолутна вредност',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'н<sup>ти</sup> корен',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Логаритам база a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Калкулус',
'menu.insert.derivative': 'Извод',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'н<sup>ти</sup> извод',
'menu.insert.nth-derivative-template':
'\\dfrac{\\mathrm{д}^н}{\\mathrm{д}x^н}f(x)\\bigm|_{x=a}',
'menu.insert.integral': 'Интеграл',
'menu.insert.integral-template': '$\\int_a^b f(x)\\,\\mathrm{д}x$',
'menu.insert.sum': 'Сума',
'menu.insert.sum-template': '$\\sum_{i=1}^n x_i$',
'menu.insert.product': 'Производ',
'menu.insert.product-template': '\\prod_{i=1}^n x_i',
'menu.insert.heading-complex-numbers': 'Комплексни броеви',
'menu.insert.modulus': 'Модул',
'menu.insert.modulus-template': '\\lvert z \\rvert',
'menu.insert.argument': 'Аргумент',
'menu.insert.argument-template': '\\arg(z)',
'menu.insert.real-part': 'Реален дел',
'menu.insert.real-part-template': '\\Re(z)',
'menu.insert.imaginary-part': 'Имагинарен дел',
'menu.insert.imaginary-part-template': '\\Im(z)',
'menu.insert.conjugate': 'Конјугат',
'menu.insert.conjugate-template': '\\overline{z}',

'tooltip.blackboard': 'Табла',
'tooltip.bold': 'Подебелено',
'tooltip.italic': 'Курзив',
'tooltip.fraktur': 'Фрактур',
'tooltip.script': 'Ракопис',
'tooltip.caligraphic': 'Калиграфски',
'tooltip.typewriter': 'Пишувачка машина',
'tooltip.roman-upright': 'Римски исправено',

'tooltip.row-by-col': '%@ × %@',

'menu.font-style': 'Стил на фонт',
'menu.accent': 'Акцент',
'menu.decoration': 'Декорација',
'menu.color': 'Боја',
'menu.background-color': 'Позадина',
'menu.evaluate': 'Процени',
'menu.simplify': 'Поедностави',
'menu.solve': 'Реши',
'menu.solve-for': 'Реши за %@',

'menu.cut': 'Исечи',
'menu.copy': 'Копирај',
'menu.copy-as-latex': 'Копирај како ЛаТеКс',
'menu.copy-as-ascii-math': 'Копирај како ASCII Math',
'menu.copy-as-mathml': 'Копирај како MathML',
'menu.paste': 'Залепи',
'menu.select-all': 'Избери сè',

// Colors (accessible labels in color swatches)
'color.red': 'Црвена',
'color.orange': 'Портокалова',
'color.yellow': 'Жолта',
'color.lime': 'Лимон',
'color.green': 'Зелена',
'color.teal': 'Тиркизна',
'color.cyan': 'Цијан',
'color.blue': 'Сина',
'color.indigo': 'Индиго',
'color.purple': 'Виолетова',
'color.magenta': 'Магента',
'color.black': 'Црна',
'color.dark-grey': 'Темно сива',
'color.grey': 'Сива',
'color.light-grey': 'Светло сива',
'color.white': 'Бела',
},

// Icelandic
'is': {
'keyboard.tooltip.symbols': 'Tákn',
Expand Down
Loading