Merge pull request #1239 from prokrypt/patch-3

Update TranslationEditor.html
This commit is contained in:
Ben V. Brown
2022-02-21 13:52:08 +11:00
committed by GitHub

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