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

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
112 changes: 112 additions & 0 deletions src/editor/l10n-strings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,116 @@
export const STRINGS = {

//Danish
'da': {
'keyboard.tooltip.symbols': 'Symboler',
'keyboard.tooltip.greek': 'Græske bogstaver',
'keyboard.tooltip.numeric': 'Numerisk',
'keyboard.tooltip.alphabetic': 'Romerske bogstaver',
'tooltip.copy to clipboard': 'Kopier til udklipsholder',
'tooltip.cut to clipboard': 'Klip til udklipsholder',
'tooltip.paste from clipboard': 'Indsæt fra udklipsholder',
'tooltip.redo': 'Gentag',
'tooltip.toggle virtual keyboard': 'Skift virtuelt tastatur',
'tooltip.menu': 'Menu',
'tooltip.undo': 'Fortryd',
'menu.borders': 'Kanter',
'menu.insert matrix': 'Indsæt matrix',
'menu.array.add row above': 'Tilføj række før',
'menu.array.add row below': 'Tilføj række efter',
'menu.array.add column after': 'Tilføj kolonne efter',
'menu.array.add column before': 'Tilføj kolonne før',
'menu.array.delete row': 'Slet række',
'menu.array.delete rows': 'Slet valgte rækker',
'menu.array.delete column': 'Slet kolonne',
'menu.array.delete columns': 'Slet valgte kolonner',

'menu.mode': 'Tilstand',
'menu.mode-math': 'Matematik',
'menu.mode-text': 'Tekst',
'menu.mode-latex': 'LaTeX',

'menu.insert': 'Indsæt',
'menu.insert.abs': 'Absolut værdi',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'n<sup>te</sup> rod',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Logaritme base a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Kalkyle',
'menu.insert.derivative': 'Afledt',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'n<sup>te</sup> afledt',
'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': 'Sum',
'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': 'Komplekse tal',
'menu.insert.modulus': 'Modulus',
'menu.insert.modulus-template': '\\lvert z \\rvert',
'menu.insert.argument': 'Argument',
'menu.insert.argument-template': '\\arg(z)',
'menu.insert.real-part': 'Reel del',
'menu.insert.real-part-template': '\\Re(z)',
'menu.insert.imaginary-part': 'Imaginær del',
'menu.insert.imaginary-part-template': '\\Im(z)',
'menu.insert.conjugate': 'Konjugat',
'menu.insert.conjugate-template': '\\overline{z}',

'tooltip.blackboard': 'Tavle',
'tooltip.bold': 'Fed',
'tooltip.italic': 'Kursiv',
'tooltip.fraktur': 'Fraktur',
'tooltip.script': 'Skrift',
'tooltip.caligraphic': 'Kalligrafi',
'tooltip.typewriter': 'Skrivemaskine',
'tooltip.roman-upright': 'Romersk opretstående',

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

'menu.font-style': 'Skrifttype',
'menu.accent': 'Accent',
'menu.decoration': 'Dekoration',
'menu.color': 'Farve',
'menu.background-color': 'Baggrund',
'menu.evaluate': 'Evaluér',
'menu.simplify': 'Forenkle',
'menu.solve': 'Løs',
'menu.solve-for': 'Løs for %@',

'menu.cut': 'Klip',
'menu.copy': 'Kopiér',
'menu.copy-as-latex': 'Kopiér som LaTeX',
'menu.copy-as-ascii-math': 'Kopiér som ASCII Math',
'menu.copy-as-mathml': 'Kopiér som MathML',
'menu.paste': 'Indsæt',
'menu.select-all': 'Vælg alt',

// Colors (accessible labels in color swatches)
'color.red': 'Rød',
'color.orange': 'Orange',
'color.yellow': 'Gul',
'color.lime': 'Lime',
'color.green': 'Grøn',
'color.teal': 'Teal',
'color.cyan': 'Cyan',
'color.blue': 'Blå',
'color.indigo': 'Indigo',
'color.purple': 'Lilla',
'color.magenta': 'Magenta',
'color.black': 'Sort',
'color.dark-grey': 'Mørkegrå',
'color.grey': 'Grå',
'color.light-grey': 'Lysegrå',
'color.white': 'Hvid',
},


//English
'en': {
'keyboard.tooltip.symbols': 'Symbols',
'keyboard.tooltip.greek': 'Greek Letters',
Expand Down
Loading