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

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
Expand Up @@ -925,6 +925,115 @@ export const STRINGS = {
'color.light-grey': 'Cinza Claro',
'color.white': 'Branco',
},
//Swedish
'sv': {
'keyboard.tooltip.symbols': 'Symboler',
'keyboard.tooltip.greek': 'Grekiska bokstäver',
'keyboard.tooltip.numeric': 'Numerisk',
'keyboard.tooltip.alphabetic': 'Romerska bokstäver',
'tooltip.copy to clipboard': 'Kopiera till urklipp',
'tooltip.cut to clipboard': 'Klipp till urklipp',
'tooltip.paste from clipboard': 'Klistra in från urklipp',
'tooltip.redo': 'Gör om',
'tooltip.toggle virtual keyboard': 'Växla virtuellt tangentbord',
'tooltip.menu': 'Meny',
'tooltip.undo': 'Ångra',
'menu.borders': 'Ramar',
'menu.insert matrix': 'Infoga matris',
'menu.array.add row above': 'Lägg till rad före',
'menu.array.add row below': 'Lägg till rad efter',
'menu.array.add column after': 'Lägg till kolumn efter',
'menu.array.add column before': 'Lägg till kolumn före',
'menu.array.delete row': 'Ta bort rad',
'menu.array.delete rows': 'Ta bort valda rader',
'menu.array.delete column': 'Ta bort kolumn',
'menu.array.delete columns': 'Ta bort valda kolumner',

'menu.mode': 'Läge',
'menu.mode-math': 'Matematik',
'menu.mode-text': 'Text',
'menu.mode-latex': 'LaTeX',

'menu.insert': 'Infoga',
'menu.insert.abs': 'Absolutvärde',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'n<sup>te</sup> rot',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Logaritm bas a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Kalkyl',
'menu.insert.derivative': 'Derivata',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'n<sup>te</sup> derivata',
'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': 'Summa',
'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': 'Komplexa 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': 'Reell 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': 'Svarta tavlan',
'tooltip.bold': 'Fetstil',
'tooltip.italic': 'Kursiv',
'tooltip.fraktur': 'Fraktur',
'tooltip.script': 'Skrift',
'tooltip.caligraphic': 'Kalligrafisk',
'tooltip.typewriter': 'Skrivmaskin',
'tooltip.roman-upright': 'Romersk upprätt',

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

'menu.font-style': 'Teckensnittsstil',
'menu.accent': 'Accent',
'menu.decoration': 'Dekoration',
'menu.color': 'Färg',
'menu.background-color': 'Bakgrund',
'menu.evaluate': 'Utvärdera',
'menu.simplify': 'Förenkla',
'menu.solve': 'Lös',
'menu.solve-for': 'Lös för %@',

'menu.cut': 'Klipp ut',
'menu.copy': 'Kopiera',
'menu.copy-as-latex': 'Kopiera som LaTeX',
'menu.copy-as-ascii-math': 'Kopiera som ASCII Math',
'menu.copy-as-mathml': 'Kopiera som MathML',
'menu.paste': 'Klistra in',
'menu.select-all': 'Markera allt',

// 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': 'Lila',
'color.magenta': 'Magenta',
'color.black': 'Svart',
'color.dark-grey': 'Mörkgrå',
'color.grey': 'Grå',
'color.light-grey': 'Ljusgrå',
'color.white': 'Vit',
},


//Ukrainian
'uk': {
Expand Down
Loading