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 #2495

Closed
wants to merge 1 commit into from
Closed
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
109 changes: 109 additions & 0 deletions src/editor/l10n-strings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,113 @@
export const STRINGS = {
//Serbian

'sr': {
'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': 'Логаритам база а',
'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{d}^n}{\\mathrm{d}x^n}f(x)\\bigm|_{x=a}',
'menu.insert.integral': 'Интеграл',
'menu.insert.integral-template': '$\\int_a^b f(x)\\,\\mathrm{d}x$',
'menu.insert.sum': 'Сума',
'menu.insert.sum-template': '$\\sum_{i=1}^n x_i$',
'menu.insert.product': 'Производ',
'menu.insert.product-template': '\\prod_{i=1}^н 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': 'Копирај као АСЦИИ математика',
'menu.copy-as-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': 'Бела',
},
'en': {
'keyboard.tooltip.symbols': 'Symbols',
'keyboard.tooltip.greek': 'Greek Letters',
Expand Down
Loading