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