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

Merged
merged 1 commit 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
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 = {
//Afrikaans
'af': {
'keyboard.tooltip.symbols': 'Simbols',
'keyboard.tooltip.greek': 'Griekse Letters',
'keyboard.tooltip.numeric': 'Numeries',
'keyboard.tooltip.alphabetic': 'Romeinse Letters',
'tooltip.copy to clipboard': 'Kopieer na knipbord',
'tooltip.cut to clipboard': 'Sny na knipbord',
'tooltip.paste from clipboard': 'Plak van knipbord',
'tooltip.redo': 'Herstel',
'tooltip.toggle virtual keyboard': 'Skakel Virtuele Sleutelbord',
'tooltip.menu': 'Spyskaart',
'tooltip.undo': 'Ongedaan maak',
'menu.borders': 'Grense',
'menu.insert matrix': 'Voeg Matriks In',
'menu.array.add row above': 'Voeg ry voor',
'menu.array.add row below': 'Voeg ry na',
'menu.array.add column after': 'Voeg kolom na',
'menu.array.add column before': 'Voeg kolom voor',
'menu.array.delete row': 'Verwyder ry',
'menu.array.delete rows': 'Verwyder Geselekteerde Rye',
'menu.array.delete column': 'Verwyder kolom',
'menu.array.delete columns': 'Verwyder Geselekteerde Kolomme',

'menu.mode': 'Modus',
'menu.mode-math': 'Wiskunde',
'menu.mode-text': 'Teks',
'menu.mode-latex': 'LaTeX',

'menu.insert': 'Voeg in',
'menu.insert.abs': 'Absolute Waarde',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'n<sup>de</sup> Wortel',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Logaritme basis a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Calculus',
'menu.insert.derivative': 'Afgeleide',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'n<sup>de</sup> afgeleide',
'menu.insert.nth-derivative-template':
'\\dfrac{\\mathrm{d}^n}{\\mathrm{d}x^n}f(x)\\bigm|_{x=a}',
'menu.insert.integral': 'Integrale',
'menu.insert.integral-template': '$\\int_a^b f(x)\\,\\mathrm{d}x$',
'menu.insert.sum': 'Som',
'menu.insert.sum-template': '$\\sum_{i=1}^n x_i$',
'menu.insert.product': 'Produk',
'menu.insert.product-template': '\\prod_{i=1}^n x_i',
'menu.insert.heading-complex-numbers': 'Komplekse Getalle',
'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': 'Reële Deel',
'menu.insert.real-part-template': '\\Re(z)',
'menu.insert.imaginary-part': 'Denkbeeldige Deel',
'menu.insert.imaginary-part-template': '\\Im(z)',
'menu.insert.conjugate': 'Konjugaat',
'menu.insert.conjugate-template': '\\overline{z}',

'tooltip.blackboard': 'Swartbord',
'tooltip.bold': 'Vetgedruk',
'tooltip.italic': 'Skuinsgedruk',
'tooltip.fraktur': 'Fraktur',
'tooltip.script': 'Skrif',
'tooltip.caligraphic': 'Kaligrafies',
'tooltip.typewriter': 'Tikmasjien',
'tooltip.roman-upright': 'Romeins Oprig',

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

'menu.font-style': 'Lettertipe Styl',
'menu.accent': 'Aksent',
'menu.decoration': 'Versiering',
'menu.color': 'Kleur',
'menu.background-color': 'Agtergrondkleur',
'menu.evaluate': 'Evalueer',
'menu.simplify': 'Vereenvoudig',
'menu.solve': 'Los op',
'menu.solve-for': 'Los op vir %@',

'menu.cut': 'Sny',
'menu.copy': 'Kopieer',
'menu.copy-as-latex': 'Kopieer as LaTeX',
'menu.copy-as-ascii-math': 'Kopieer as ASCII Wiskunde',
'menu.copy-as-mathml': 'Kopieer as MathML',
'menu.paste': 'Plak',
'menu.select-all': 'Kies alles',

// Colors (accessible labels in color swatches)
'color.red': 'Rooi',
'color.orange': 'Oranje',
'color.yellow': 'Geel',
'color.lime': 'Lemoen',
'color.green': 'Groen',
'color.teal': 'Teel',
'color.cyan': 'Siaan',
'color.blue': 'Blou',
'color.indigo': 'Indigo',
'color.purple': 'Pers',
'color.magenta': 'Magenta',
'color.black': 'Swart',
'color.dark-grey': 'Donkergrys',
'color.grey': 'Grys',
'color.light-grey': 'Liggrys',
'color.white': 'Wit',
},
'en': {
'keyboard.tooltip.symbols': 'Symbols',
'keyboard.tooltip.greek': 'Greek Letters',
Expand Down
Loading