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

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
108 changes: 108 additions & 0 deletions src/editor/l10n-strings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,112 @@
export const STRINGS = {
///Luxembourgish
'lb': {
'keyboard.tooltip.symbols': 'Symboler',
'keyboard.tooltip.greek': 'Griichesch Buschtawen',
'keyboard.tooltip.numeric': 'Numeresch',
'keyboard.tooltip.alphabetic': 'Réimesch Buschtawen',
'tooltip.copy to clipboard': 'An d\'Zwëschespäicher kopéieren',
'tooltip.cut to clipboard': 'An d\'Zwëschespäicher ausschneiden',
'tooltip.paste from clipboard': 'Aus der Zwëschespäicher pechen',
'tooltip.redo': 'Widderhuelen',
'tooltip.toggle virtual keyboard': 'Virtuell Tastatur ëmschalten',
'tooltip.menu': 'Menu',
'tooltip.undo': 'Réckgängeg maachen',
'menu.borders': 'Grenzen',
'menu.insert matrix': 'Matrice afügen',
'menu.array.add row above': 'Rei virun derbäisetzen',
'menu.array.add row below': 'Rei duerno derbäisetzen',
'menu.array.add column after': 'Kolonn duerno derbäisetzen',
'menu.array.add column before': 'Kolonn virun derbäisetzen',
'menu.array.delete row': 'Rei läschen',
'menu.array.delete rows': 'Ausgewielte Reihen läschen',
'menu.array.delete column': 'Kolonn läschen',
'menu.array.delete columns': 'Ausgewielte Kolonnen läschen',

'menu.mode': 'Modus',
'menu.mode-math': 'Mathematik',
'menu.mode-text': 'Text',
'menu.mode-latex': 'LaTeX',

'menu.insert': 'Aféieren',
'menu.insert.abs': 'Absolutwäert',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'n<sup>te</sup> Wuerzel',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Logarithmus Basis a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Kalkül',
'menu.insert.derivative': 'Ofgeleet',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'n<sup>te</sup> Ofgeleet',
'menu.insert.nth-derivative-template':
'\\dfrac{\\mathrm{d}^n}{\\mathrm{d}x^n}f(x)\\bigm|_{x=a}',
'menu.insert.integral': 'Integral',
'menu.insert.integral-template': '$\\int_a^b f(x)\\,\\mathrm{d}x$',
'menu.insert.sum': 'Zomm',
'menu.insert.sum-template': '$\\sum_{i=1}^n x_i$',
'menu.insert.product': 'Produkt',
'menu.insert.product-template': '\\prod_{i=1}^n x_i',
'menu.insert.heading-complex-numbers': 'Komplex Zuelen',
'menu.insert.modulus': 'Modul',
'menu.insert.modulus-template': '\\lvert z \\rvert',
'menu.insert.argument': 'Argument',
'menu.insert.argument-template': '\\arg(z)',
'menu.insert.real-part': 'Reell Deel',
'menu.insert.real-part-template': '\\Re(z)',
'menu.insert.imaginary-part': 'Imaginär Deel',
'menu.insert.imaginary-part-template': '\\Im(z)',
'menu.insert.conjugate': 'Konjugéiert',
'menu.insert.conjugate-template': '\\overline{z}',

'tooltip.blackboard': 'Schäif',
'tooltip.bold': 'Fett',
'tooltip.italic': 'Kursiv',
'tooltip.fraktur': 'Fraktur',
'tooltip.script': 'Skript',
'tooltip.caligraphic': 'Kalligrafesch',
'tooltip.typewriter': 'Schreiwmaschinn',
'tooltip.roman-upright': 'Réimesch Oprecht',

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

'menu.font-style': 'Schrëftstil',
'menu.accent': 'Akzent',
'menu.decoration': 'Dekoratioun',
'menu.color': 'Faarf',
'menu.background-color': 'Hannergrondfaarf',
'menu.evaluate': 'Bewäerten',
'menu.simplify': 'Vereinfacht',
'menu.solve': 'Léisen',
'menu.solve-for': 'Léisen fir %@',

'menu.cut': 'Ausschneiden',
'menu.copy': 'Kopéieren',
'menu.copy-as-latex': 'Als LaTeX kopéieren',
'menu.copy-as-ascii-math': 'Als ASCII Math kopéieren',
'menu.copy-as-mathml': 'Als MathML kopéieren',
'menu.paste': 'Pechen',
'menu.select-all': 'Alles auswielen',

// Colors (accessible labels in color swatches)
'color.red': 'Rout',
'color.orange': 'Orange',
'color.yellow': 'Giel',
'color.lime': 'Limette',
'color.green': 'Gréng',
'color.teal': 'Blaugréng',
'color.cyan': 'Zyan',
'color.blue': 'Blo',
'color.indigo': 'Indigo',
'color.purple': 'Violett',
'color.magenta': 'Magenta',
'color.black': 'Schwaarz',
'color.dark-grey': 'Däischtergro',
'color.grey': 'Gro',
'color.light-grey': 'Liichtgro',
'color.white': 'Wäiss',
},
'en': {
'keyboard.tooltip.symbols': 'Symbols',
'keyboard.tooltip.greek': 'Greek Letters',
Expand Down
Loading