summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2023-04-02 20:16:48 +0200
committerGitHub <noreply@github.com>2023-04-02 20:16:48 +0200
commit46292477c898a474e3645e0b4f2c311233de5743 (patch)
treede907d8f54c39b48a1f7974023bc24be578161cb
parent8decca7353a0a730226842aa33c9018ac5e6e44c (diff)
parent9a06058f66edb31f3d942e21b67319f243228330 (diff)
downloadnovnc-46292477c898a474e3645e0b4f2c311233de5743.tar.gz
Merge pull request #1768 from mathis-marcotte/add-english-to-supported-langs
Add english to list of supported languages
-rw-r--r--app/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ui.js b/app/ui.js
index c1f6776..07e0904 100644
--- a/app/ui.js
+++ b/app/ui.js
@@ -1762,7 +1762,7 @@ const UI = {
};
// Set up translations
-const LINGUAS = ["cs", "de", "el", "es", "fr", "it", "ja", "ko", "nl", "pl", "pt_BR", "ru", "sv", "tr", "zh_CN", "zh_TW"];
+const LINGUAS = ["cs", "de", "el", "en", "es", "fr", "it", "ja", "ko", "nl", "pl", "pt_BR", "ru", "sv", "tr", "zh_CN", "zh_TW"];
l10n.setup(LINGUAS);
if (l10n.language === "en" || l10n.dictionary !== undefined) {
UI.prime();