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

Merged
merged 2 commits 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 = {

// Albanian
'sq': {
'keyboard.tooltip.symbols': 'Simbolet',
'keyboard.tooltip.greek': 'Gërmat greke',
'keyboard.tooltip.numeric': 'Numerike',
'keyboard.tooltip.alphabetic': 'Gërmat romake',
'tooltip.copy to clipboard': 'Kopjo në kujtesë',
'tooltip.cut to clipboard': 'Prij në kujtesë',
'tooltip.paste from clipboard': 'Ngjit nga kujtesa',
'tooltip.redo': 'Rikthe',
'tooltip.toggle virtual keyboard': 'Ndrysho tastierën virtuale',
'tooltip.menu': 'Menyja',
'tooltip.undo': 'Zhbëj',
'menu.borders': 'Kufijtë',
'menu.insert matrix': 'Fut matricë',
'menu.array.add row above': 'Shto rresht para',
'menu.array.add row below': 'Shto rresht pas',
'menu.array.add column after': 'Shto kolonë pas',
'menu.array.add column before': 'Shto kolonë para',
'menu.array.delete row': 'Fshi rreshtin',
'menu.array.delete rows': 'Fshi rreshtat e zgjedhur',
'menu.array.delete column': 'Fshi kolonën',
'menu.array.delete columns': 'Fshi kolonat e zgjedhura',

'menu.mode': 'Mënyra',
'menu.mode-math': 'Matematikë',
'menu.mode-text': 'Tekst',
'menu.mode-latex': 'LaTeX',

'menu.insert': 'Fut',
'menu.insert.abs': 'Vlera absolute',
'menu.insert.abs-template': '\\left|x\\right|',
'menu.insert.nth-root': 'rrënja n<sup>të</sup>',
'menu.insert.nth-root-template': '\\sqrt[n]{x}',
'menu.insert.log-base': 'Logaritmi baza a',
'menu.insert.log-base-template': '\\log_a(x)',
'menu.insert.heading-calculus': 'Kalkulimi',
'menu.insert.derivative': 'Derivati',
'menu.insert.derivative-template':
'\\dfrac{\\mathrm{d}}{\\mathrm{d}x}f(x)\\bigm|_{x=a}',
'menu.insert.nth-derivative': 'Derivati n<sup>të</sup>',
'menu.insert.nth-derivative-template':
'\\dfrac{\\mathrm{d}^n}{\\mathrm{d}x^n}f(x)\\bigm|_{x=a}',
'menu.insert.integral': 'Integrali',
'menu.insert.integral-template': '$\\int_a^b f(x)\\,\\mathrm{d}x$',
'menu.insert.sum': 'Shuma',
'menu.insert.sum-template': '$\\sum_{i=1}^n x_i$',
'menu.insert.product': 'Prodhimi',
'menu.insert.product-template': '\\prod_{i=1}^n x_i',
'menu.insert.heading-complex-numbers': 'Numrat kompleks',
'menu.insert.modulus': 'Moduli',
'menu.insert.modulus-template': '\\lvert z \\rvert',
'menu.insert.argument': 'Argumenti',
'menu.insert.argument-template': '\\arg(z)',
'menu.insert.real-part': 'Pjesa reale',
'menu.insert.real-part-template': '\\Re(z)',
'menu.insert.imaginary-part': 'Pjesa imagjinare',
'menu.insert.imaginary-part-template': '\\Im(z)',
'menu.insert.conjugate': 'Konjugimi',
'menu.insert.conjugate-template': '\\overline{z}',

'tooltip.blackboard': 'Tabela',
'tooltip.bold': 'Të trashë',
'tooltip.italic': 'Pjerrët',
'tooltip.fraktur': 'Fraktur',
'tooltip.script': 'Shkrimi',
'tooltip.caligraphic': 'Kalligrafik',
'tooltip.typewriter': 'Makina e shkrimit',
'tooltip.roman-upright': 'Romake në këmbë',

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

'menu.font-style': 'Stili i fontit',
'menu.accent': 'Theksi',
'menu.decoration': 'Dekorimi',
'menu.color': 'Ngjyra',
'menu.background-color': 'Ngjyra e sfondit',
'menu.evaluate': 'Vlerëso',
'menu.simplify': 'Thjeshto',
'menu.solve': 'Zgjidh',
'menu.solve-for': 'Zgjidh për %@',

'menu.cut': 'Prij',
'menu.copy': 'Kopjo',
'menu.copy-as-latex': 'Kopjo si LaTeX',
'menu.copy-as-ascii-math': 'Kopjo si ASCII Math',
'menu.copy-as-mathml': 'Kopjo si MathML',
'menu.paste': 'Ngjit',
'menu.select-all': 'Përzgjidh të gjitha',

// Colors (accessible labels in color swatches)
'color.red': 'E kuqe',
'color.orange': 'Portokalli',
'color.yellow': 'E verdhë',
'color.lime': 'Limon',
'color.green': 'E gjelbër',
'color.teal': 'Teal',
'color.cyan': 'Cian',
'color.blue': 'Blu',
'color.indigo': 'Indigo',
'color.purple': 'E purpurt',
'color.magenta': 'Magenta',
'color.black': 'E zezë',
'color.dark-grey': 'Gri e errët',
'color.grey': 'Gri',
'color.light-grey': 'Gri e çelur',
'color.white': 'E bardhë',

//Macedonian
'mk': {
Expand Down Expand Up @@ -1366,3 +1474,3 @@
'color.white': '白色',
},
};
Loading