Skip to content

Commit

Permalink
fix: fixed #2373
Browse files Browse the repository at this point in the history
  • Loading branch information
arnog committed May 12, 2024
1 parent ede2b5a commit 0d6ab51
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

### Issues Resolved

- **#2273** Using one of the Chinese locales would result in a runtime error.
- **#2280** Handle better very deeply nested expressions
- **#2282** Don't display selection when the mathfield is not focused
- When the mathfield is an iframe, the `before-virtual-keyboard-toggle` and
Expand Down
30 changes: 15 additions & 15 deletions src/editor/l10n-strings.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const STRINGS = {
en: {
'en': {
'keyboard.tooltip.symbols': 'Symbols',
'keyboard.tooltip.greek': 'Greek Letters',
'keyboard.tooltip.numeric': 'Numeric',
Expand Down Expand Up @@ -76,7 +76,7 @@ export const STRINGS = {
},

// Arabic
ar: {
'ar': {
'keyboard.tooltip.symbols': 'حرف او رمز',
'keyboard.tooltip.greek': 'حروف يونانية',
'keyboard.tooltip.numeric': 'الرقمية',
Expand Down Expand Up @@ -152,7 +152,7 @@ export const STRINGS = {
},

// German
de: {
'de': {
'keyboard.tooltip.symbols': 'Symbole',
'keyboard.tooltip.greek': 'Griechische Buchstaben',
'keyboard.tooltip.numeric': 'Numerisch',
Expand Down Expand Up @@ -226,7 +226,7 @@ export const STRINGS = {
},

// Greek
el: {
'el': {
'keyboard.tooltip.symbols': 'σύμβολα',
'keyboard.tooltip.greek': 'ελληνικά γράμματα',
'keyboard.tooltip.numeric': 'Αριθμητικός',
Expand Down Expand Up @@ -300,7 +300,7 @@ export const STRINGS = {
},

// Spanish
es: {
'es': {
'keyboard.tooltip.symbols': 'Símbolos',
'keyboard.tooltip.greek': 'Letras griegas',
'keyboard.tooltip.numeric': 'Numérico',
Expand Down Expand Up @@ -374,7 +374,7 @@ export const STRINGS = {
},

// French
fr: {
'fr': {
'keyboard.tooltip.symbols': 'Symboles',
'keyboard.tooltip.greek': 'Lettres grecques',
'keyboard.tooltip.numeric': 'Numérique',
Expand Down Expand Up @@ -449,7 +449,7 @@ export const STRINGS = {
},

// Hebrew (Israel)
he: {
'he': {
'keyboard.tooltip.symbols': 'סמלים',
'keyboard.tooltip.greek': 'אותיות יווניות',
'keyboard.tooltip.numeric': 'מספרי',
Expand Down Expand Up @@ -523,7 +523,7 @@ export const STRINGS = {
},

// Italian
it: {
'it': {
'keyboard.tooltip.symbols': 'Simboli',
'keyboard.tooltip.greek': 'Lettere greche',
'keyboard.tooltip.numeric': 'Numerico',
Expand Down Expand Up @@ -598,7 +598,7 @@ export const STRINGS = {
},

// Japanese
ja: {
'ja': {
'keyboard.tooltip.symbols': 'シンボル',
'keyboard.tooltip.greek': 'ギリシャ文字',
'keyboard.tooltip.numeric': '数値',
Expand Down Expand Up @@ -673,7 +673,7 @@ export const STRINGS = {
},

// Korean
ko: {
'ko': {
'keyboard.tooltip.symbols': '기호',
'keyboard.tooltip.greek': '그리스 문자',
'keyboard.tooltip.numeric': '숫자',
Expand Down Expand Up @@ -747,7 +747,7 @@ export const STRINGS = {
},

// Polish
pl: {
'pl': {
'keyboard.tooltip.symbols': 'Symbolika',
'keyboard.tooltip.greek': 'Litery greckie',
'keyboard.tooltip.numeric': 'Numeryczne',
Expand Down Expand Up @@ -821,7 +821,7 @@ export const STRINGS = {
},

// Portuguese
pt: {
'pt': {
'keyboard.tooltip.symbols': 'Símbolos',
'keyboard.tooltip.greek': 'Letras gregas',
'keyboard.tooltip.numeric': 'Numérico',
Expand Down Expand Up @@ -895,7 +895,7 @@ export const STRINGS = {
},

//Ukrainian
uk: {
'uk': {
'keyboard.tooltip.symbols': 'Символи',
'keyboard.tooltip.greek': 'Грецькі літери',
'keyboard.tooltip.numeric': 'Числовий',
Expand Down Expand Up @@ -969,7 +969,7 @@ export const STRINGS = {
},

// Simplified Chinese
zh_cn: {
'zh-cn': {
'keyboard.tooltip.symbols': '符号',
'keyboard.tooltip.greek': '希腊字母',
'keyboard.tooltip.numeric': '数字',
Expand Down Expand Up @@ -1043,7 +1043,7 @@ export const STRINGS = {
},

// Traditional Chinese
zh_tw: {
'zh-tw': {
'keyboard.tooltip.symbols': '符號',
'keyboard.tooltip.greek': '希臘字母',
'keyboard.tooltip.numeric': '數字',
Expand Down

0 comments on commit 0d6ab51

Please sign in to comment.