Update TranslationEditor.html

Remove toLowerCase() from languageCode.
This commit is contained in:
prokrypt
2022-02-20 13:49:01 -08:00
committed by GitHub
parent 324921a8c3
commit ba3e5760f4

View File

@@ -13,14 +13,14 @@
function save() { function save() {
saveJSON( saveJSON(
app.current, app.current,
"translation_" + app.current.languageCode.toLowerCase() + ".json" "translation_" + app.current.languageCode + ".json"
); );
} }
function view() { function view() {
showJSON( showJSON(
app.current, app.current,
"translation_" + app.current.languageCode.toLowerCase() + ".json" "translation_" + app.current.languageCode + ".json"
); );
} }