From ba3e5760f484a83d073adfe9d6411fb4222df78c Mon Sep 17 00:00:00 2001 From: prokrypt Date: Sun, 20 Feb 2022 13:49:01 -0800 Subject: [PATCH] Update TranslationEditor.html Remove toLowerCase() from languageCode. --- Translations/TranslationEditor.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Translations/TranslationEditor.html b/Translations/TranslationEditor.html index a68cfcf8..5cce1fd1 100644 --- a/Translations/TranslationEditor.html +++ b/Translations/TranslationEditor.html @@ -13,14 +13,14 @@ function save() { saveJSON( app.current, - "translation_" + app.current.languageCode.toLowerCase() + ".json" + "translation_" + app.current.languageCode + ".json" ); } function view() { showJSON( app.current, - "translation_" + app.current.languageCode.toLowerCase() + ".json" + "translation_" + app.current.languageCode + ".json" ); }