From b64cbfea4f055057a085ec3e855943bec628b0b9 Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Tue, 30 Jun 2020 02:22:12 -0400 Subject: [PATCH] Fix i18n. Fixes #2805 (#2847) Fix database extensions exporter which is corrupting the dictionary name with the value of the language. --- .../database/module/scripts/project/database-exporters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/database/module/scripts/project/database-exporters.js b/extensions/database/module/scripts/project/database-exporters.js index c83b097f8..5f11b3e5b 100644 --- a/extensions/database/module/scripts/project/database-exporters.js +++ b/extensions/database/module/scripts/project/database-exporters.js @@ -38,7 +38,7 @@ $.ajax({ }, success : function(data) { dictionary = data['dictionary']; - dictionary = data['lang']; + lang = data['lang']; } }); $.i18n().load(dictionary, lang);