From a2f6368632460ec9c796aa315e131d659f0da5ce Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Sun, 9 Nov 2025 23:37:38 +0100 Subject: [PATCH 1/3] Update terminalSettings.js --- src/settings/terminalSettings.js | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/settings/terminalSettings.js b/src/settings/terminalSettings.js index d82f11112..e54703782 100644 --- a/src/settings/terminalSettings.js +++ b/src/settings/terminalSettings.js @@ -32,7 +32,7 @@ export default function terminalSettings() { { key: "all_file_access", text: strings["allFileAccess"], - info: "Enable access of /sdcard and /storage in terminal", + info: strings["info-all_file_access"], }, { key: "fontSize", @@ -46,7 +46,7 @@ export default function terminalSettings() { return value >= 8 && value <= 32; }, }, - info: "The font size used to render text.", + info: strings["info-fontSize"], }, { key: "fontFamily", @@ -55,13 +55,13 @@ export default function terminalSettings() { get select() { return fonts.getNames(); }, - info: "The font family used to render text.", + info: strings["info-fontFamily"], }, { key: "theme", text: strings["theme"], value: terminalValues.theme, - info: "The color theme of the terminal.", + info: strings["info-theme"], get select() { return TerminalThemeManager.getThemeNames().map((name) => [ name, @@ -78,14 +78,14 @@ export default function terminalSettings() { text: strings["terminal:cursor style"], value: terminalValues.cursorStyle, select: ["block", "underline", "bar"], - info: "The style of the cursor when the terminal is focused.", + info: strings["info-cursorStyle"], }, { key: "cursorInactiveStyle", text: strings["terminal:cursor inactive style"], value: terminalValues.cursorInactiveStyle, select: ["outline", "block", "bar", "underline", "none"], - info: "The style of the cursor when the terminal is not focused.", + info: strings["info-cursorInactiveStyle"], }, { key: "fontWeight", @@ -104,13 +104,13 @@ export default function terminalSettings() { "800", "900", ], - info: "The font weight used to render non-bold text.", + info: strings["info-fontWeight"], }, { key: "cursorBlink", text: strings["terminal:cursor blink"], checkbox: terminalValues.cursorBlink, - info: "Whether the cursor blinks.", + info: strings["info-cursorBlink"], }, { key: "scrollback", @@ -124,7 +124,7 @@ export default function terminalSettings() { return value >= 100 && value <= 10000; }, }, - info: "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + info: strings["info-scrollback"], }, { key: "tabStopWidth", @@ -138,7 +138,7 @@ export default function terminalSettings() { return value >= 1 && value <= 8; }, }, - info: "The size of tab stops in the terminal.", + info: strings["info-tabStopWidth"], }, { key: "letterSpacing", @@ -146,7 +146,7 @@ export default function terminalSettings() { value: terminalValues.letterSpacing, prompt: strings["letter spacing"], promptType: "number", - info: "The spacing in whole pixels between characters.", + info: strings["info-letterSpacing"], }, { key: "convertEol", @@ -157,34 +157,34 @@ export default function terminalSettings() { key: "imageSupport", text: strings["terminal:image support"], checkbox: terminalValues.imageSupport, - info: "Whether images are supported in the terminal.", + info: strings["info-imageSupport"], }, { key: "fontLigatures", text: strings["font ligatures"], checkbox: terminalValues.fontLigatures, - info: "Whether font ligatures are enabled in the terminal.", + info: strings["info-fontLigatures"], }, { key: "confirmTabClose", text: strings["terminal:confirm tab close"], checkbox: terminalValues.confirmTabClose !== false, - info: "Ask for confirmation before closing terminal tabs.", + info: strings["info-confirmTabClose"], }, { key: "backup", text: strings.backup, - info: "Creates a backup of the terminal installation", + info: strings["info-backup"], }, { key: "restore", text: strings.restore, - info: "Restores a backup of the terminal installation", + info: strings["info-restore"], }, { key: "uninstall", text: strings.uninstall, - info: "Uninstalls the terminal installation", + info: strings["info-uninstall"], }, ]; From 6ccabff8dbf39fa48e73ba3b86e53f199ed44ce3 Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Sun, 9 Nov 2025 23:40:26 +0100 Subject: [PATCH 2/3] Add files via upload --- src/lang/ar-ye.json | 17 +++++++++++++++++ src/lang/be-by.json | 17 +++++++++++++++++ src/lang/bn-bd.json | 17 +++++++++++++++++ src/lang/cs-cz.json | 17 +++++++++++++++++ src/lang/de-de.json | 17 +++++++++++++++++ src/lang/en-us.json | 17 +++++++++++++++++ src/lang/es-sv.json | 17 +++++++++++++++++ src/lang/fr-fr.json | 17 +++++++++++++++++ src/lang/he-il.json | 17 +++++++++++++++++ src/lang/hi-in.json | 17 +++++++++++++++++ src/lang/hu-hu.json | 17 +++++++++++++++++ src/lang/id-id.json | 17 +++++++++++++++++ src/lang/ir-fa.json | 17 +++++++++++++++++ src/lang/it-it.json | 17 +++++++++++++++++ src/lang/ja-jp.json | 17 +++++++++++++++++ src/lang/ko-kr.json | 17 +++++++++++++++++ src/lang/ml-in.json | 17 +++++++++++++++++ src/lang/mm-unicode.json | 17 +++++++++++++++++ src/lang/mm-zawgyi.json | 17 +++++++++++++++++ src/lang/pl-pl.json | 17 +++++++++++++++++ src/lang/pt-br.json | 17 +++++++++++++++++ src/lang/pu-in.json | 17 +++++++++++++++++ src/lang/ru-ru.json | 17 +++++++++++++++++ src/lang/tl-ph.json | 17 +++++++++++++++++ src/lang/tr-tr.json | 17 +++++++++++++++++ src/lang/uk-ua.json | 17 +++++++++++++++++ src/lang/uz-uz.json | 17 +++++++++++++++++ src/lang/vi-vn.json | 17 +++++++++++++++++ src/lang/zh-cn.json | 17 +++++++++++++++++ src/lang/zh-hant.json | 17 +++++++++++++++++ src/lang/zh-tw.json | 17 +++++++++++++++++ 31 files changed, 527 insertions(+) diff --git a/src/lang/ar-ye.json b/src/lang/ar-ye.json index 70e3c457e..6872d3988 100644 --- a/src/lang/ar-ye.json +++ b/src/lang/ar-ye.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "مملوك", "api_error": "الخادم غير متاح حاليًا ،يرجى المحاولة لاحقًا. ", "installed": "مثبت", diff --git a/src/lang/be-by.json b/src/lang/be-by.json index e6e2b2fee..53c7b6ef2 100644 --- a/src/lang/be-by.json +++ b/src/lang/be-by.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Ва ўласнасці", "api_error": "Сервер API не працуе, паспрабуйце праз некаторы час.", "installed": "Усталявана", diff --git a/src/lang/bn-bd.json b/src/lang/bn-bd.json index 45bb74795..fffb15dac 100644 --- a/src/lang/bn-bd.json +++ b/src/lang/bn-bd.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API সার্ভার ডাউন, দয়া করে পুনরায় চেষ্টা করুন", "installed": "ইনস্টল করা হয়েছে", diff --git a/src/lang/cs-cz.json b/src/lang/cs-cz.json index b2d32eb8d..62f5c1311 100644 --- a/src/lang/cs-cz.json +++ b/src/lang/cs-cz.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/de-de.json b/src/lang/de-de.json index 2f88bb57c..49faa2357 100644 --- a/src/lang/de-de.json +++ b/src/lang/de-de.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Automatisch nach App-Updates suchen.", "info-quickTools": "Schnelltools ein- oder ausblenden.", "info-showHiddenFiles": "Versteckte Dateien und Ordner anzeigen. (Beginnen mit einem .)", + "info-all_file_access": "Zugriff auf /sdcard und /storage im Terminal aktivieren.", + "info-fontSize": "Die Schriftgröße, die zum Rendern von Text verwendet wird.", + "info-fontFamily": "Die Schriftfamilie, die zum Rendern von Text verwendet wird.", + "info-theme": "Das Farbthema des Terminals.", + "info-cursorStyle": "Der Cursorstil, wenn das Terminal fokussiert ist.", + "info-cursorInactiveStyle": "Der Cursorstil, wenn das Terminal nicht im Fokus ist.", + "info-fontWeight": "Die Schriftstärke, die zum Rendern von nicht fettem Text verwendet wird.", + "info-cursorBlink": "Erlaubt das Blinken des Cursors.", + "info-scrollback": "Die Anzahl der Zeilen, die beim Zurückblättern erhalten bleiben, wenn über den anfänglichen Anzeigebereich hinaus gescrollt wird.", + "info-tabStopWidth": "Die Größe der Tabulatoren im Terminal.", + "info-letterSpacing": "Der Abstand zwischen den Zeichen in ganzen Pixeln.", + "info-imageSupport": "Unterstützung von Bildern im Terminal.", + "info-fontLigatures": "Unterstützung von Ligaturen in der Schriftart im Terminal.", + "info-confirmTabClose": "Bestätigung beim Schließen von Terminal-Tabs.", + "info-backup": "Erstellt eine Sicherungskopie der Terminal-Installation.", + "info-restore": "Stellt eine Sicherung der Terminal-Installation wieder her.", + "info-uninstall": "Deinstalliert die Terminal-Installation.", "owned": "Eigene", "api_error": "API-Server nicht verfügbar, bitte nach kurzer Zeit nochmal versuchen.", "installed": "Installiert", diff --git a/src/lang/en-us.json b/src/lang/en-us.json index d98d99a96..e5d82356c 100644 --- a/src/lang/en-us.json +++ b/src/lang/en-us.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/es-sv.json b/src/lang/es-sv.json index 98214a4a8..c5ebe9f49 100644 --- a/src/lang/es-sv.json +++ b/src/lang/es-sv.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "En propiedad", "api_error": "El servidor API no funciona, inténtelo después de un rato.", "installed": "Instalado", diff --git a/src/lang/fr-fr.json b/src/lang/fr-fr.json index e05950746..53d0eb27d 100644 --- a/src/lang/fr-fr.json +++ b/src/lang/fr-fr.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Propriété", "api_error": "Serveur d'API éteint, veuillez réessayer plus tard.", "installed": "Installé", diff --git a/src/lang/he-il.json b/src/lang/he-il.json index c55b6382b..af9642e1f 100644 --- a/src/lang/he-il.json +++ b/src/lang/he-il.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "בבעלות", "api_error": "שרת ה-API מושבת, אנא נסה שוב בעוד מספר דקות.", "installed": "מותקן", diff --git a/src/lang/hi-in.json b/src/lang/hi-in.json index 367597bbe..7da743ac4 100644 --- a/src/lang/hi-in.json +++ b/src/lang/hi-in.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/hu-hu.json b/src/lang/hu-hu.json index b2720f4b2..1ca613661 100644 --- a/src/lang/hu-hu.json +++ b/src/lang/hu-hu.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Alkalmazás-frissítések automatikus ellenőrzése.", "info-quickTools": "Gyors-eszközök megjelenítése vagy elrejtése.", "info-showHiddenFiles": "Rejtett fájlok és mappák megjelenítése (, amelyek nevei „.” ponttal kezdődnek)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Saját tulajdonú", "api_error": "Az API-kiszolgáló leállt, próbálja meg később.", "installed": "Telepített", diff --git a/src/lang/id-id.json b/src/lang/id-id.json index ff994f010..d3c1889b9 100644 --- a/src/lang/id-id.json +++ b/src/lang/id-id.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Dimiliki", "api_error": "API server turun, silakan coba setelah beberapa waktu.", "installed": "Terpasang", diff --git a/src/lang/ir-fa.json b/src/lang/ir-fa.json index 7fa02e227..28e97c161 100644 --- a/src/lang/ir-fa.json +++ b/src/lang/ir-fa.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/it-it.json b/src/lang/it-it.json index b09eee717..7efdabbbf 100644 --- a/src/lang/it-it.json +++ b/src/lang/it-it.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ja-jp.json b/src/lang/ja-jp.json index 28b2f5981..eb6a222e7 100644 --- a/src/lang/ja-jp.json +++ b/src/lang/ja-jp.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "所有済み", "api_error": "APIサーバーDown。しばらくしてから実行してください。", "installed": "インストール済み", diff --git a/src/lang/ko-kr.json b/src/lang/ko-kr.json index e3d269045..e25f7b265 100644 --- a/src/lang/ko-kr.json +++ b/src/lang/ko-kr.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ml-in.json b/src/lang/ml-in.json index 52f2e1477..bcd136085 100644 --- a/src/lang/ml-in.json +++ b/src/lang/ml-in.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "ഉടമസ്ഥതയിലുള്ളത്", "api_error": "API സെർവർ പ്രവർത്തനരഹിതമാണ്, കുറച്ച് സമയത്തിന് ശേഷം ശ്രമിക്കുക.", "installed": "ഇൻസ്റ്റാൾ ചെയ്തു", diff --git a/src/lang/mm-unicode.json b/src/lang/mm-unicode.json index 87376d0a4..d06c06474 100644 --- a/src/lang/mm-unicode.json +++ b/src/lang/mm-unicode.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/mm-zawgyi.json b/src/lang/mm-zawgyi.json index 74a8f5f47..2becd1684 100644 --- a/src/lang/mm-zawgyi.json +++ b/src/lang/mm-zawgyi.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/pl-pl.json b/src/lang/pl-pl.json index 1f9b31335..a7cbad071 100644 --- a/src/lang/pl-pl.json +++ b/src/lang/pl-pl.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Posiadane", "api_error": "Serwer API nie działa, spróbuj za jakiś czas.", "installed": "Zainstalowane", diff --git a/src/lang/pt-br.json b/src/lang/pt-br.json index 8d6e6863d..efae246fb 100644 --- a/src/lang/pt-br.json +++ b/src/lang/pt-br.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Meu", "api_error": "Servidor API desativado, por favor, tente depois de algum tempo.", "installed": "Instalado", diff --git a/src/lang/pu-in.json b/src/lang/pu-in.json index 657864b49..05d7f369b 100644 --- a/src/lang/pu-in.json +++ b/src/lang/pu-in.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ru-ru.json b/src/lang/ru-ru.json index f6970c394..0720c949a 100644 --- a/src/lang/ru-ru.json +++ b/src/lang/ru-ru.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Свои", "api_error": "Сервер API недоступен, повторите попытку позже", "installed": "Установленные", diff --git a/src/lang/tl-ph.json b/src/lang/tl-ph.json index a18402191..e034d3564 100644 --- a/src/lang/tl-ph.json +++ b/src/lang/tl-ph.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "Ang API server ay down, mangyaring subukan pagkatapos ng ilang oras.", "installed": "Installed", diff --git a/src/lang/tr-tr.json b/src/lang/tr-tr.json index 20d310e47..83f1cae29 100644 --- a/src/lang/tr-tr.json +++ b/src/lang/tr-tr.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/uk-ua.json b/src/lang/uk-ua.json index f1c715b44..b47c8c3c1 100644 --- a/src/lang/uk-ua.json +++ b/src/lang/uk-ua.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/uz-uz.json b/src/lang/uz-uz.json index bc785e80c..c2774915d 100644 --- a/src/lang/uz-uz.json +++ b/src/lang/uz-uz.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/vi-vn.json b/src/lang/vi-vn.json index 2558796e2..01fc89cd0 100644 --- a/src/lang/vi-vn.json +++ b/src/lang/vi-vn.json @@ -307,6 +307,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Đã sở hữu", "api_error": "Máy chủ API không hoạt động, Hãy thử lại sau", "installed": "Đã cài đặt", diff --git a/src/lang/zh-cn.json b/src/lang/zh-cn.json index 0f0ac97f2..7ecd506e2 100644 --- a/src/lang/zh-cn.json +++ b/src/lang/zh-cn.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已拥有", "api_error": "API 服务器未回应,请稍后再试", "installed": "已安装", diff --git a/src/lang/zh-hant.json b/src/lang/zh-hant.json index c69084a51..a4cbc6d4c 100644 --- a/src/lang/zh-hant.json +++ b/src/lang/zh-hant.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已擁有", "api_error": "API 服務器未回應,請稍後再試", "installed": "已安裝", diff --git a/src/lang/zh-tw.json b/src/lang/zh-tw.json index 9d5e4e9a3..67881256d 100644 --- a/src/lang/zh-tw.json +++ b/src/lang/zh-tw.json @@ -306,6 +306,23 @@ "info-checkForAppUpdates": "Check for app updates automatically.", "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", + "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已擁有", "api_error": "API 伺服器沒有回應,請稍後再試。", "installed": "已安裝", From 6ada53d7c18f145d881f20272953a17cc182b5b3 Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 11 Nov 2025 00:23:32 +0100 Subject: [PATCH 3/3] Add files via upload --- src/lang/ar-ye.json | 32 ++++++++++++++++---------------- src/lang/be-by.json | 32 ++++++++++++++++---------------- src/lang/bn-bd.json | 32 ++++++++++++++++---------------- src/lang/cs-cz.json | 32 ++++++++++++++++---------------- src/lang/en-us.json | 32 ++++++++++++++++---------------- src/lang/es-sv.json | 32 ++++++++++++++++---------------- src/lang/fr-fr.json | 32 ++++++++++++++++---------------- src/lang/he-il.json | 32 ++++++++++++++++---------------- src/lang/hi-in.json | 32 ++++++++++++++++---------------- src/lang/hu-hu.json | 32 ++++++++++++++++---------------- src/lang/id-id.json | 32 ++++++++++++++++---------------- src/lang/ir-fa.json | 32 ++++++++++++++++---------------- src/lang/it-it.json | 32 ++++++++++++++++---------------- src/lang/ja-jp.json | 32 ++++++++++++++++---------------- src/lang/ko-kr.json | 32 ++++++++++++++++---------------- src/lang/ml-in.json | 32 ++++++++++++++++---------------- src/lang/mm-unicode.json | 32 ++++++++++++++++---------------- src/lang/mm-zawgyi.json | 32 ++++++++++++++++---------------- src/lang/pl-pl.json | 32 ++++++++++++++++---------------- src/lang/pt-br.json | 32 ++++++++++++++++---------------- src/lang/pu-in.json | 32 ++++++++++++++++---------------- src/lang/ru-ru.json | 32 ++++++++++++++++---------------- src/lang/tl-ph.json | 32 ++++++++++++++++---------------- src/lang/tr-tr.json | 32 ++++++++++++++++---------------- src/lang/uk-ua.json | 32 ++++++++++++++++---------------- src/lang/uz-uz.json | 32 ++++++++++++++++---------------- src/lang/vi-vn.json | 32 ++++++++++++++++---------------- src/lang/zh-cn.json | 32 ++++++++++++++++---------------- src/lang/zh-hant.json | 32 ++++++++++++++++---------------- src/lang/zh-tw.json | 32 ++++++++++++++++---------------- 30 files changed, 480 insertions(+), 480 deletions(-) diff --git a/src/lang/ar-ye.json b/src/lang/ar-ye.json index 6872d3988..041717bc1 100644 --- a/src/lang/ar-ye.json +++ b/src/lang/ar-ye.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "مملوك", "api_error": "الخادم غير متاح حاليًا ،يرجى المحاولة لاحقًا. ", "installed": "مثبت", diff --git a/src/lang/be-by.json b/src/lang/be-by.json index 53c7b6ef2..73d12da1b 100644 --- a/src/lang/be-by.json +++ b/src/lang/be-by.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Ва ўласнасці", "api_error": "Сервер API не працуе, паспрабуйце праз некаторы час.", "installed": "Усталявана", diff --git a/src/lang/bn-bd.json b/src/lang/bn-bd.json index fffb15dac..bfd20c349 100644 --- a/src/lang/bn-bd.json +++ b/src/lang/bn-bd.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API সার্ভার ডাউন, দয়া করে পুনরায় চেষ্টা করুন", "installed": "ইনস্টল করা হয়েছে", diff --git a/src/lang/cs-cz.json b/src/lang/cs-cz.json index 62f5c1311..e4f830f73 100644 --- a/src/lang/cs-cz.json +++ b/src/lang/cs-cz.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/en-us.json b/src/lang/en-us.json index e5d82356c..d8fd68634 100644 --- a/src/lang/en-us.json +++ b/src/lang/en-us.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/es-sv.json b/src/lang/es-sv.json index c5ebe9f49..380080c9b 100644 --- a/src/lang/es-sv.json +++ b/src/lang/es-sv.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "En propiedad", "api_error": "El servidor API no funciona, inténtelo después de un rato.", "installed": "Instalado", diff --git a/src/lang/fr-fr.json b/src/lang/fr-fr.json index 53d0eb27d..8e0ab79a9 100644 --- a/src/lang/fr-fr.json +++ b/src/lang/fr-fr.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Propriété", "api_error": "Serveur d'API éteint, veuillez réessayer plus tard.", "installed": "Installé", diff --git a/src/lang/he-il.json b/src/lang/he-il.json index af9642e1f..c164181ad 100644 --- a/src/lang/he-il.json +++ b/src/lang/he-il.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "בבעלות", "api_error": "שרת ה-API מושבת, אנא נסה שוב בעוד מספר דקות.", "installed": "מותקן", diff --git a/src/lang/hi-in.json b/src/lang/hi-in.json index 7da743ac4..017f81b18 100644 --- a/src/lang/hi-in.json +++ b/src/lang/hi-in.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/hu-hu.json b/src/lang/hu-hu.json index 1ca613661..01195d4b8 100644 --- a/src/lang/hu-hu.json +++ b/src/lang/hu-hu.json @@ -307,22 +307,22 @@ "info-quickTools": "Gyors-eszközök megjelenítése vagy elrejtése.", "info-showHiddenFiles": "Rejtett fájlok és mappák megjelenítése (, amelyek nevei „.” ponttal kezdődnek)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Saját tulajdonú", "api_error": "Az API-kiszolgáló leállt, próbálja meg később.", "installed": "Telepített", diff --git a/src/lang/id-id.json b/src/lang/id-id.json index d3c1889b9..9b96455ac 100644 --- a/src/lang/id-id.json +++ b/src/lang/id-id.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Dimiliki", "api_error": "API server turun, silakan coba setelah beberapa waktu.", "installed": "Terpasang", diff --git a/src/lang/ir-fa.json b/src/lang/ir-fa.json index 28e97c161..57f638d10 100644 --- a/src/lang/ir-fa.json +++ b/src/lang/ir-fa.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/it-it.json b/src/lang/it-it.json index 7efdabbbf..1a9eb1c4e 100644 --- a/src/lang/it-it.json +++ b/src/lang/it-it.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ja-jp.json b/src/lang/ja-jp.json index eb6a222e7..48d8cb040 100644 --- a/src/lang/ja-jp.json +++ b/src/lang/ja-jp.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "所有済み", "api_error": "APIサーバーDown。しばらくしてから実行してください。", "installed": "インストール済み", diff --git a/src/lang/ko-kr.json b/src/lang/ko-kr.json index e25f7b265..e139a2ccc 100644 --- a/src/lang/ko-kr.json +++ b/src/lang/ko-kr.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ml-in.json b/src/lang/ml-in.json index bcd136085..808f375d4 100644 --- a/src/lang/ml-in.json +++ b/src/lang/ml-in.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "ഉടമസ്ഥതയിലുള്ളത്", "api_error": "API സെർവർ പ്രവർത്തനരഹിതമാണ്, കുറച്ച് സമയത്തിന് ശേഷം ശ്രമിക്കുക.", "installed": "ഇൻസ്റ്റാൾ ചെയ്തു", diff --git a/src/lang/mm-unicode.json b/src/lang/mm-unicode.json index d06c06474..2684b86cc 100644 --- a/src/lang/mm-unicode.json +++ b/src/lang/mm-unicode.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/mm-zawgyi.json b/src/lang/mm-zawgyi.json index 2becd1684..c7911dce5 100644 --- a/src/lang/mm-zawgyi.json +++ b/src/lang/mm-zawgyi.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/pl-pl.json b/src/lang/pl-pl.json index a7cbad071..75427bbbb 100644 --- a/src/lang/pl-pl.json +++ b/src/lang/pl-pl.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Posiadane", "api_error": "Serwer API nie działa, spróbuj za jakiś czas.", "installed": "Zainstalowane", diff --git a/src/lang/pt-br.json b/src/lang/pt-br.json index efae246fb..d01ea4147 100644 --- a/src/lang/pt-br.json +++ b/src/lang/pt-br.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Meu", "api_error": "Servidor API desativado, por favor, tente depois de algum tempo.", "installed": "Instalado", diff --git a/src/lang/pu-in.json b/src/lang/pu-in.json index 05d7f369b..df54e283b 100644 --- a/src/lang/pu-in.json +++ b/src/lang/pu-in.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/ru-ru.json b/src/lang/ru-ru.json index 0720c949a..a001a312d 100644 --- a/src/lang/ru-ru.json +++ b/src/lang/ru-ru.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Свои", "api_error": "Сервер API недоступен, повторите попытку позже", "installed": "Установленные", diff --git a/src/lang/tl-ph.json b/src/lang/tl-ph.json index e034d3564..15e928023 100644 --- a/src/lang/tl-ph.json +++ b/src/lang/tl-ph.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "Ang API server ay down, mangyaring subukan pagkatapos ng ilang oras.", "installed": "Installed", diff --git a/src/lang/tr-tr.json b/src/lang/tr-tr.json index 83f1cae29..67503c1cc 100644 --- a/src/lang/tr-tr.json +++ b/src/lang/tr-tr.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/uk-ua.json b/src/lang/uk-ua.json index b47c8c3c1..2d07a49a0 100644 --- a/src/lang/uk-ua.json +++ b/src/lang/uk-ua.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/uz-uz.json b/src/lang/uz-uz.json index c2774915d..aeac2080d 100644 --- a/src/lang/uz-uz.json +++ b/src/lang/uz-uz.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Owned", "api_error": "API server down, please try after some time.", "installed": "Installed", diff --git a/src/lang/vi-vn.json b/src/lang/vi-vn.json index 01fc89cd0..39ee9f228 100644 --- a/src/lang/vi-vn.json +++ b/src/lang/vi-vn.json @@ -308,22 +308,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "Đã sở hữu", "api_error": "Máy chủ API không hoạt động, Hãy thử lại sau", "installed": "Đã cài đặt", diff --git a/src/lang/zh-cn.json b/src/lang/zh-cn.json index 7ecd506e2..02fad4e9d 100644 --- a/src/lang/zh-cn.json +++ b/src/lang/zh-cn.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已拥有", "api_error": "API 服务器未回应,请稍后再试", "installed": "已安装", diff --git a/src/lang/zh-hant.json b/src/lang/zh-hant.json index a4cbc6d4c..a7e5e1b9c 100644 --- a/src/lang/zh-hant.json +++ b/src/lang/zh-hant.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已擁有", "api_error": "API 服務器未回應,請稍後再試", "installed": "已安裝", diff --git a/src/lang/zh-tw.json b/src/lang/zh-tw.json index 67881256d..d9b5f8e86 100644 --- a/src/lang/zh-tw.json +++ b/src/lang/zh-tw.json @@ -307,22 +307,22 @@ "info-quickTools": "Show or hide quick tools.", "info-showHiddenFiles": "Show hidden files and folders. (Start with .)", "info-all_file_access": "Enable access of /sdcard and /storage in terminal.", - "info-fontSize": "The font size used to render text.", - "info-fontFamily": "The font family used to render text.", - "info-theme": "The color theme of the terminal.", - "info-cursorStyle": "The style of the cursor when the terminal is focused.", - "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", - "info-fontWeight": "The font weight used to render non-bold text.", - "info-cursorBlink": "Whether the cursor blinks.", - "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", - "info-tabStopWidth": "The size of tab stops in the terminal.", - "info-letterSpacing": "The spacing in whole pixels between characters.", - "info-imageSupport": "Whether images are supported in the terminal.", - "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", - "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", - "info-backup": "Creates a backup of the terminal installation.", - "info-restore": "Restores a backup of the terminal installation.", - "info-uninstall": "Uninstalls the terminal installation.", + "info-fontSize": "The font size used to render text.", + "info-fontFamily": "The font family used to render text.", + "info-theme": "The color theme of the terminal.", + "info-cursorStyle": "The style of the cursor when the terminal is focused.", + "info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.", + "info-fontWeight": "The font weight used to render non-bold text.", + "info-cursorBlink": "Whether the cursor blinks.", + "info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.", + "info-tabStopWidth": "The size of tab stops in the terminal.", + "info-letterSpacing": "The spacing in whole pixels between characters.", + "info-imageSupport": "Whether images are supported in the terminal.", + "info-fontLigatures": "Whether font ligatures are enabled in the terminal.", + "info-confirmTabClose": "Ask for confirmation before closing terminal tabs.", + "info-backup": "Creates a backup of the terminal installation.", + "info-restore": "Restores a backup of the terminal installation.", + "info-uninstall": "Uninstalls the terminal installation.", "owned": "已擁有", "api_error": "API 伺服器沒有回應,請稍後再試。", "installed": "已安裝",