Fix i18n. Fixes #2805 (#2847)

Fix database extensions exporter which is corrupting the dictionary
name with the value of the language.
This commit is contained in:
Tom Morris 2020-06-30 02:22:12 -04:00 committed by GitHub
parent 0f3a6006f3
commit b64cbfea4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ $.ajax({
}, },
success : function(data) { success : function(data) {
dictionary = data['dictionary']; dictionary = data['dictionary'];
dictionary = data['lang']; lang = data['lang'];
} }
}); });
$.i18n().load(dictionary, lang); $.i18n().load(dictionary, lang);