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() {
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"
);
}