diff --git a/dev/External/SquireUI.js b/dev/External/SquireUI.js
index ad59860b0..826e23020 100644
--- a/dev/External/SquireUI.js
+++ b/dev/External/SquireUI.js
@@ -81,8 +81,7 @@ class SquireUI
[i18n('SETTINGS_GENERAL/EDITOR_HTML'),'wysiwyg'],
[i18n('SETTINGS_GENERAL/EDITOR_PLAIN'),'plain']
],
- cmd: s => this.setMode('plain' == s.value ? 'plain' : 'wysiwyg'),
- hint: i18n('EDITOR/TEXT_SWITCHER_PLAIN_TEXT', 'Plain')
+ cmd: s => this.setMode('plain' == s.value ? 'plain' : 'wysiwyg')
}
},
font: {
@@ -113,9 +112,9 @@ class SquireUI
},
dir: {
select: [
- ['LTR','ltr'],
- ['RTL','rtl'],
- ['Auto','auto'],
+ [i18n('EDITOR/DIR_LTR', 'LTR'),'ltr'],
+ [i18n('EDITOR/DIR_RTL', 'RTL'),'rtl'],
+ [i18n('EDITOR/DIR_AUTO', 'Auto'),'auto'],
['',''],
],
cmd: s => {
@@ -127,13 +126,11 @@ class SquireUI
colors: {
textColor: {
html: 'A▾',
- cmd: doClr('color'),
- hint: 'Text color'
+ cmd: doClr('color')
},
backgroundColor: {
html: '🎨', /* ▧ */
- cmd: doClr('backgroundColor'),
- hint: 'Background color'
+ cmd: doClr('backgroundColor')
},
},
inline: {
@@ -141,42 +138,36 @@ class SquireUI
html: 'B',
cmd: () => this.doAction('bold'),
key: 'B',
- hint: 'Bold',
matches: 'B,STRONT'
},
italic: {
html: 'I',
cmd: () => this.doAction('italic'),
key: 'I',
- hint: 'Italic',
matches: 'I'
},
underline: {
html: 'U',
cmd: () => this.doAction('underline'),
key: 'U',
- hint: 'Underline',
matches: 'U'
},
strike: {
html: 'S',
cmd: () => this.doAction('strikethrough'),
key: 'Shift + 7',
- hint: 'Strikethrough',
matches: 'S'
},
sub: {
html: 'Xₙ',
cmd: () => this.doAction('subscript'),
key: 'Shift + 5',
- hint: 'Subscript',
matches: 'SUB'
},
sup: {
html: 'Xⁿ',
cmd: () => this.doAction('superscript'),
key: 'Shift + 6',
- hint: 'Superscript',
matches: 'SUP'
}
},
@@ -185,14 +176,12 @@ class SquireUI
html: '#',
cmd: () => this.doList('OL'),
key: 'Shift + 8',
- hint: 'Ordered list',
matches: 'OL'
},
ul: {
html: '⋮',
cmd: () => this.doList('UL'),
key: 'Shift + 9',
- hint: 'Unordered list',
matches: 'UL'
},
quote: {
@@ -201,20 +190,17 @@ class SquireUI
let parent = squire.getSelectionClosest('UL,OL,BLOCKQUOTE')?.nodeName;
('BLOCKQUOTE' == parent) ? squire.decreaseQuoteLevel() : squire.increaseQuoteLevel();
},
- hint: 'Blockquote',
matches: 'BLOCKQUOTE'
},
indentDecrease: {
html: '⇤',
cmd: () => squire.changeIndentationLevel('decrease'),
- key: ']',
- hint: 'Decrease indent'
+ key: ']'
},
indentIncrease: {
html: '⇥',
cmd: () => squire.changeIndentationLevel('increase'),
- key: '[',
- hint: 'Increase indent'
+ key: '['
}
},
targets: {
@@ -227,7 +213,6 @@ class SquireUI
url.length ? squire.makeLink(url) : (node && squire.removeLink());
}
},
- hint: 'Link',
matches: 'A'
},
imageUrl: {
@@ -237,13 +222,11 @@ class SquireUI
src = prompt("Image", node?.src || "https://");
src?.length ? squire.insertImage(src) : (node && squire.detach(node));
},
- hint: 'Image URL',
matches: 'IMG'
},
imageUpload: {
html: '📂️',
cmd: () => browseImage.click(),
- hint: 'Image select',
matches: 'IMG'
}
},
@@ -256,22 +239,19 @@ class SquireUI
undo: {
html: '↶',
cmd: () => squire.undo(),
- key: 'Z',
- hint: 'Undo'
+ key: 'Z'
},
redo: {
html: '↷',
cmd: () => squire.redo(),
- key: 'Y',
- hint: 'Redo'
+ key: 'Y'
},
source: {
html: '👁',
cmd: btn => {
this.setMode('source' == this.mode ? 'wysiwyg' : 'source');
btn.classList.toggle('active', 'source' == this.mode);
- },
- hint: i18n('EDITOR/TEXT_SWITCHER_SOURCE', 'Source')
+ }
}
}
},
@@ -364,6 +344,7 @@ class SquireUI
*/
}
input.addEventListener(ev, () => cfg.cmd(input));
+ cfg.hint = i18n('EDITOR/' + action.toUpperCase());
if (cfg.hint) {
input.title = cfg.key ? cfg.hint + ' (' + ctrlKey + cfg.key + ')' : cfg.hint;
} else if (cfg.key) {
diff --git a/snappymail/v/0.0.0/app/localization/ar-SA/user.json b/snappymail/v/0.0.0/app/localization/ar-SA/user.json
index 5b4a86745..1802c2abf 100644
--- a/snappymail/v/0.0.0/app/localization/ar-SA/user.json
+++ b/snappymail/v/0.0.0/app/localization/ar-SA/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "حدث خطأ نتيجة إضافة ملف غير معروف النوع"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "العام",
diff --git a/snappymail/v/0.0.0/app/localization/bg-BG/user.json b/snappymail/v/0.0.0/app/localization/bg-BG/user.json
index c941c5798..51a9c907f 100644
--- a/snappymail/v/0.0.0/app/localization/bg-BG/user.json
+++ b/snappymail/v/0.0.0/app/localization/bg-BG/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Възникна неизвестна грешка при качването на файла"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> ТЕКСТ",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> ТЕКСТ",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Общи",
diff --git a/snappymail/v/0.0.0/app/localization/cs-CZ/user.json b/snappymail/v/0.0.0/app/localization/cs-CZ/user.json
index 7f41d288f..bbbcd94d9 100644
--- a/snappymail/v/0.0.0/app/localization/cs-CZ/user.json
+++ b/snappymail/v/0.0.0/app/localization/cs-CZ/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Nastala neznámá chyba při nahrávaní"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Všeobecné",
diff --git a/snappymail/v/0.0.0/app/localization/da-DK/user.json b/snappymail/v/0.0.0/app/localization/da-DK/user.json
index 25b9aade4..5beb8cd33 100644
--- a/snappymail/v/0.0.0/app/localization/da-DK/user.json
+++ b/snappymail/v/0.0.0/app/localization/da-DK/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ukendt upload fejl"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Generelt",
diff --git a/snappymail/v/0.0.0/app/localization/de-DE/user.json b/snappymail/v/0.0.0/app/localization/de-DE/user.json
index 3d787ea4c..8c4299845 100644
--- a/snappymail/v/0.0.0/app/localization/de-DE/user.json
+++ b/snappymail/v/0.0.0/app/localization/de-DE/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ein unbekannter Fehler trat beim Hochladen auf"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> QUELLE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> QUELLE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Allgemein",
diff --git a/snappymail/v/0.0.0/app/localization/el-GR/user.json b/snappymail/v/0.0.0/app/localization/el-GR/user.json
index 8495f9286..45a0e5920 100644
--- a/snappymail/v/0.0.0/app/localization/el-GR/user.json
+++ b/snappymail/v/0.0.0/app/localization/el-GR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Υπήρξε άγνωστο λάθος κατα τη διαδικασία μεταφόρτωσης του αρχείου"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Γενικό",
diff --git a/snappymail/v/0.0.0/app/localization/en-GB/user.json b/snappymail/v/0.0.0/app/localization/en-GB/user.json
index 2113492f3..cc88e690e 100644
--- a/snappymail/v/0.0.0/app/localization/en-GB/user.json
+++ b/snappymail/v/0.0.0/app/localization/en-GB/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "An unknown file upload error occurred"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "General",
diff --git a/snappymail/v/0.0.0/app/localization/en/user.json b/snappymail/v/0.0.0/app/localization/en/user.json
index e1bde21bc..e777708ff 100644
--- a/snappymail/v/0.0.0/app/localization/en/user.json
+++ b/snappymail/v/0.0.0/app/localization/en/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "An unknown file upload error occurred"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "General",
diff --git a/snappymail/v/0.0.0/app/localization/es-ES/user.json b/snappymail/v/0.0.0/app/localization/es-ES/user.json
index 90bcfa7a6..f55e35d79 100644
--- a/snappymail/v/0.0.0/app/localization/es-ES/user.json
+++ b/snappymail/v/0.0.0/app/localization/es-ES/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Se ha producido un error de carga de archivo desconocido"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXTO",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXTO",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "General",
diff --git a/snappymail/v/0.0.0/app/localization/et-EE/user.json b/snappymail/v/0.0.0/app/localization/et-EE/user.json
index 6c54cbc3b..130ed826e 100644
--- a/snappymail/v/0.0.0/app/localization/et-EE/user.json
+++ b/snappymail/v/0.0.0/app/localization/et-EE/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Faili üleslaadimisel tekkis tundmatu iseloomuga viga"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Üldine",
diff --git a/snappymail/v/0.0.0/app/localization/eu/user.json b/snappymail/v/0.0.0/app/localization/eu/user.json
index 5ff6bafc2..2283e7303 100644
--- a/snappymail/v/0.0.0/app/localization/eu/user.json
+++ b/snappymail/v/0.0.0/app/localization/eu/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Fitxategi-kargako errore ezezagun bat gertatu da"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TESTUA",
- "TEXT_SWITCHER_SOURCE": "HTML <-> JATORRIA"
+ "PLAIN": "HTML <-> TESTUA",
+ "SOURCE": "HTML <-> JATORRIA",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Orokorra",
diff --git a/snappymail/v/0.0.0/app/localization/fa-IR/user.json b/snappymail/v/0.0.0/app/localization/fa-IR/user.json
index ac7390a9d..eab971e22 100644
--- a/snappymail/v/0.0.0/app/localization/fa-IR/user.json
+++ b/snappymail/v/0.0.0/app/localization/fa-IR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "یک خطای نامشخص در بارگذاری فایل روی داده است"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "عمومی",
diff --git a/snappymail/v/0.0.0/app/localization/fi-FI/user.json b/snappymail/v/0.0.0/app/localization/fi-FI/user.json
index c1b313d71..ca27048ec 100644
--- a/snappymail/v/0.0.0/app/localization/fi-FI/user.json
+++ b/snappymail/v/0.0.0/app/localization/fi-FI/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Tuntematon virhe ladattaessa"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEKSTI",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEKSTI",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Yleinen",
diff --git a/snappymail/v/0.0.0/app/localization/fr-FR/user.json b/snappymail/v/0.0.0/app/localization/fr-FR/user.json
index b8849bd1e..53287f65b 100644
--- a/snappymail/v/0.0.0/app/localization/fr-FR/user.json
+++ b/snappymail/v/0.0.0/app/localization/fr-FR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Une erreur inconnue de téléversement de fichier s'est produite"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> Non-formaté",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> Non-formaté",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Général",
diff --git a/snappymail/v/0.0.0/app/localization/hu-HU/user.json b/snappymail/v/0.0.0/app/localization/hu-HU/user.json
index bd53518a4..02fb55a7b 100644
--- a/snappymail/v/0.0.0/app/localization/hu-HU/user.json
+++ b/snappymail/v/0.0.0/app/localization/hu-HU/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ismeretlen fájl feltöltési hiba történt"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Általános",
diff --git a/snappymail/v/0.0.0/app/localization/id-ID/user.json b/snappymail/v/0.0.0/app/localization/id-ID/user.json
index d3f4714f9..c805a954f 100644
--- a/snappymail/v/0.0.0/app/localization/id-ID/user.json
+++ b/snappymail/v/0.0.0/app/localization/id-ID/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Kesalahan tidak diketahui saat unggah file"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Umum",
diff --git a/snappymail/v/0.0.0/app/localization/is-IS/user.json b/snappymail/v/0.0.0/app/localization/is-IS/user.json
index e21f2d3c5..64bf7a678 100644
--- a/snappymail/v/0.0.0/app/localization/is-IS/user.json
+++ b/snappymail/v/0.0.0/app/localization/is-IS/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Óþekkt innsendingarvilla kom upp"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXTI",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXTI",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Almennt",
diff --git a/snappymail/v/0.0.0/app/localization/it-IT/user.json b/snappymail/v/0.0.0/app/localization/it-IT/user.json
index edf74a9e4..fa5005235 100644
--- a/snappymail/v/0.0.0/app/localization/it-IT/user.json
+++ b/snappymail/v/0.0.0/app/localization/it-IT/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Si è verificato un errore sconosciuto durante il caricamento del file"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> Testo semplice",
- "TEXT_SWITCHER_SOURCE": "HTML <-> Sorgente"
+ "PLAIN": "HTML <-> Testo semplice",
+ "SOURCE": "HTML <-> Sorgente",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Generali",
diff --git a/snappymail/v/0.0.0/app/localization/ja-JP/user.json b/snappymail/v/0.0.0/app/localization/ja-JP/user.json
index f6f73c0dd..078b9574c 100644
--- a/snappymail/v/0.0.0/app/localization/ja-JP/user.json
+++ b/snappymail/v/0.0.0/app/localization/ja-JP/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "不明なファイルアップロードエラーが発生しました"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "全般",
diff --git a/snappymail/v/0.0.0/app/localization/ko-KR/user.json b/snappymail/v/0.0.0/app/localization/ko-KR/user.json
index d20ff8685..b270b3283 100644
--- a/snappymail/v/0.0.0/app/localization/ko-KR/user.json
+++ b/snappymail/v/0.0.0/app/localization/ko-KR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "알 수 없는 업로드 오류가 발생했습니다."
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "일반",
diff --git a/snappymail/v/0.0.0/app/localization/lt-LT/user.json b/snappymail/v/0.0.0/app/localization/lt-LT/user.json
index 2d47dd541..6fd211baf 100644
--- a/snappymail/v/0.0.0/app/localization/lt-LT/user.json
+++ b/snappymail/v/0.0.0/app/localization/lt-LT/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Nežinoma klaida įkeliant failą"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEKSTAS",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEKSTAS",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Pagrindiniai",
diff --git a/snappymail/v/0.0.0/app/localization/lv-LV/user.json b/snappymail/v/0.0.0/app/localization/lv-LV/user.json
index 7f1fe5c1a..d7bfd9a10 100644
--- a/snappymail/v/0.0.0/app/localization/lv-LV/user.json
+++ b/snappymail/v/0.0.0/app/localization/lv-LV/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Nezināma faila ielādes kļūda"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEKSTS",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEKSTS",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Vispārējie",
diff --git a/snappymail/v/0.0.0/app/localization/nb-NO/user.json b/snappymail/v/0.0.0/app/localization/nb-NO/user.json
index b70c08a1e..fab82c528 100644
--- a/snappymail/v/0.0.0/app/localization/nb-NO/user.json
+++ b/snappymail/v/0.0.0/app/localization/nb-NO/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Det oppstod en ukjent feil under opplasting av fil"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEKST",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEKST",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Generelt",
diff --git a/snappymail/v/0.0.0/app/localization/nl-NL/user.json b/snappymail/v/0.0.0/app/localization/nl-NL/user.json
index fc5a557cb..456b7109e 100644
--- a/snappymail/v/0.0.0/app/localization/nl-NL/user.json
+++ b/snappymail/v/0.0.0/app/localization/nl-NL/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Er is een onbekende fout opgetreden"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEKST",
- "TEXT_SWITCHER_SOURCE": "HTML <-> BRONCODE"
+ "PLAIN": "HTML <-> TEKST",
+ "SOURCE": "HTML <-> BRONCODE",
+ "FONTFAMILY": "Lettertype",
+ "FONTSIZE": "Lettergrootte",
+ "DIR": "Tekstrichting",
+ "DIR_LTR": "Links naar rechts",
+ "DIR_RTL": "Rechts naar links",
+ "DIR_AUTO": "Automatisch",
+ "TEXTCOLOR": "Tekstkleur",
+ "BACKGROUNDCOLOR": "Achtergrondkleur",
+ "BOLD": "Dikgedrukt",
+ "ITALIC": "Cursief",
+ "UNDERLINE": "Onderstreept",
+ "STRIKE": "Doorgestreept",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Genummerde lijst",
+ "UL": "Ongenummerde lijst",
+ "QUOTE": "Citaat",
+ "INDENTDECREASE": "Inspringing verkleinen",
+ "INDENTINCREASE": "Inspringing vergroten",
+ "LINK": "Link",
+ "IMAGEURL": "Afbeelding URL",
+ "IMAGEUPLOAD": "Upload afbeelding",
+ "UNDO": "Ongedaan maken",
+ "REDO": "Opnieuw"
},
"SETTINGS_LABELS": {
"GENERAL": "Algemeen",
diff --git a/snappymail/v/0.0.0/app/localization/pl-PL/user.json b/snappymail/v/0.0.0/app/localization/pl-PL/user.json
index 697853f60..fdcb7862a 100644
--- a/snappymail/v/0.0.0/app/localization/pl-PL/user.json
+++ b/snappymail/v/0.0.0/app/localization/pl-PL/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Wystąpił nieznany błąd w trakcie przesyłania pliku na serwer"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> zwykły tekst",
- "TEXT_SWITCHER_SOURCE": "HTML <-> ŹRÓDŁO"
+ "PLAIN": "HTML <-> zwykły tekst",
+ "SOURCE": "HTML <-> ŹRÓDŁO",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Ogólne",
diff --git a/snappymail/v/0.0.0/app/localization/pt-BR/user.json b/snappymail/v/0.0.0/app/localization/pt-BR/user.json
index 270da7153..9f35c98a7 100644
--- a/snappymail/v/0.0.0/app/localization/pt-BR/user.json
+++ b/snappymail/v/0.0.0/app/localization/pt-BR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ocorreu um erro de envio de arquivo desconhecido"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXTO",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXTO",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Geral",
diff --git a/snappymail/v/0.0.0/app/localization/pt-PT/user.json b/snappymail/v/0.0.0/app/localization/pt-PT/user.json
index 90baaf08a..bcf132f2c 100644
--- a/snappymail/v/0.0.0/app/localization/pt-PT/user.json
+++ b/snappymail/v/0.0.0/app/localization/pt-PT/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ocorreu um erro desconhecido durante o carregamento do ficheiro"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXTO",
- "TEXT_SWITCHER_SOURCE": "HTML <-> FONTE"
+ "PLAIN": "HTML <-> TEXTO",
+ "SOURCE": "HTML <-> FONTE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Geral",
diff --git a/snappymail/v/0.0.0/app/localization/pt/user.json b/snappymail/v/0.0.0/app/localization/pt/user.json
index 90baaf08a..bcf132f2c 100644
--- a/snappymail/v/0.0.0/app/localization/pt/user.json
+++ b/snappymail/v/0.0.0/app/localization/pt/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ocorreu um erro desconhecido durante o carregamento do ficheiro"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXTO",
- "TEXT_SWITCHER_SOURCE": "HTML <-> FONTE"
+ "PLAIN": "HTML <-> TEXTO",
+ "SOURCE": "HTML <-> FONTE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Geral",
diff --git a/snappymail/v/0.0.0/app/localization/ro-RO/user.json b/snappymail/v/0.0.0/app/localization/ro-RO/user.json
index bf8ff11a1..7d9e34c0c 100644
--- a/snappymail/v/0.0.0/app/localization/ro-RO/user.json
+++ b/snappymail/v/0.0.0/app/localization/ro-RO/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Eroare la încărcarea de fișiere"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "De bază",
diff --git a/snappymail/v/0.0.0/app/localization/ru-RU/user.json b/snappymail/v/0.0.0/app/localization/ru-RU/user.json
index a30cd5fb6..2b60f80f5 100644
--- a/snappymail/v/0.0.0/app/localization/ru-RU/user.json
+++ b/snappymail/v/0.0.0/app/localization/ru-RU/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Ошибка загрузки файла"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Основные",
diff --git a/snappymail/v/0.0.0/app/localization/sk-SK/user.json b/snappymail/v/0.0.0/app/localization/sk-SK/user.json
index 599af7fba..96d8ed52e 100644
--- a/snappymail/v/0.0.0/app/localization/sk-SK/user.json
+++ b/snappymail/v/0.0.0/app/localization/sk-SK/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Nastala neznáma chyba pri nahrávaní"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Všeobecné",
diff --git a/snappymail/v/0.0.0/app/localization/sl-SI/user.json b/snappymail/v/0.0.0/app/localization/sl-SI/user.json
index 9ce8a6cfc..50b5be7d6 100644
--- a/snappymail/v/0.0.0/app/localization/sl-SI/user.json
+++ b/snappymail/v/0.0.0/app/localization/sl-SI/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Neznana napaka pri nalaganju datoteke"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> Navadno besedilo",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> Navadno besedilo",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Splošno",
diff --git a/snappymail/v/0.0.0/app/localization/sv-SE/user.json b/snappymail/v/0.0.0/app/localization/sv-SE/user.json
index 70072801a..70004888b 100644
--- a/snappymail/v/0.0.0/app/localization/sv-SE/user.json
+++ b/snappymail/v/0.0.0/app/localization/sv-SE/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Okänt uppladdingsfel"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Allmänt",
diff --git a/snappymail/v/0.0.0/app/localization/tr-TR/user.json b/snappymail/v/0.0.0/app/localization/tr-TR/user.json
index ca9223cad..76a72d33f 100644
--- a/snappymail/v/0.0.0/app/localization/tr-TR/user.json
+++ b/snappymail/v/0.0.0/app/localization/tr-TR/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Bilinmeyen bir dosya yükleme bir hatası oluştu"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> Yazi Formati",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> Yazi Formati",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Genel",
diff --git a/snappymail/v/0.0.0/app/localization/uk-UA/user.json b/snappymail/v/0.0.0/app/localization/uk-UA/user.json
index 34ffadfd6..5bff965dd 100644
--- a/snappymail/v/0.0.0/app/localization/uk-UA/user.json
+++ b/snappymail/v/0.0.0/app/localization/uk-UA/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Помилка завантаження файлу"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "Основні",
diff --git a/snappymail/v/0.0.0/app/localization/vi-VN/user.json b/snappymail/v/0.0.0/app/localization/vi-VN/user.json
index 9f0078665..9d6f1f3b3 100644
--- a/snappymail/v/0.0.0/app/localization/vi-VN/user.json
+++ b/snappymail/v/0.0.0/app/localization/vi-VN/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "Bị một lỗi chưa xác định khi tải tập tin lên"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "DẠNG HTML <-> DẠNG CHỮ VIẾT THƯỜNG",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "DẠNG HTML <-> DẠNG CHỮ VIẾT THƯỜNG",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "General",
diff --git a/snappymail/v/0.0.0/app/localization/zh-CN/user.json b/snappymail/v/0.0.0/app/localization/zh-CN/user.json
index 0bb28df53..71c3c2cc6 100644
--- a/snappymail/v/0.0.0/app/localization/zh-CN/user.json
+++ b/snappymail/v/0.0.0/app/localization/zh-CN/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "未知上传文件错误"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> TEXT",
- "TEXT_SWITCHER_SOURCE": "HTML <-> SOURCE"
+ "PLAIN": "HTML <-> TEXT",
+ "SOURCE": "HTML <-> SOURCE",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "常规",
diff --git a/snappymail/v/0.0.0/app/localization/zh-TW/user.json b/snappymail/v/0.0.0/app/localization/zh-TW/user.json
index 077720158..32c71800d 100644
--- a/snappymail/v/0.0.0/app/localization/zh-TW/user.json
+++ b/snappymail/v/0.0.0/app/localization/zh-TW/user.json
@@ -359,8 +359,32 @@
"ERROR_UNKNOWN": "發生未知的檔案上傳錯誤"
},
"EDITOR": {
- "TEXT_SWITCHER_PLAIN_TEXT": "HTML <-> 純文字",
- "TEXT_SWITCHER_SOURCE": "HTML <-> 來源"
+ "PLAIN": "HTML <-> 純文字",
+ "SOURCE": "HTML <-> 來源",
+ "FONTFAMILY": "Font family",
+ "FONTSIZE": "Font size",
+ "DIR": "Text direction",
+ "DIR_LTR": "Left to right",
+ "DIR_RTL": "Right to left",
+ "DIR_AUTO": "Automatic",
+ "TEXTCOLOR": "Text color",
+ "BACKGROUNDCOLOR": "Background color",
+ "BOLD": "Bold",
+ "ITALIC": "Italic",
+ "UNDERLINE": "Underline",
+ "STRIKE": "Strikethrough",
+ "SUB": "Subscript",
+ "SUP": "Superscript",
+ "OL": "Ordered list",
+ "UL": "Unordered list",
+ "QUOTE": "Blockquote",
+ "INDENTDECREASE": "Decrease indent",
+ "INDENTINCREASE": "Increase indent",
+ "LINK": "Link",
+ "IMAGEURL": "Image URL",
+ "IMAGEUPLOAD": "Image select",
+ "UNDO": "Undo",
+ "REDO": "Redo"
},
"SETTINGS_LABELS": {
"GENERAL": "一般設定",