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