From 2210d315fc3645ad4230493e8fa48645ad7ac522 Mon Sep 17 00:00:00 2001 From: Alexander Yuzhin Date: Wed, 29 Mar 2017 12:40:40 +0300 Subject: [PATCH] [SE mobile] Fix load formula description --- apps/spreadsheeteditor/mobile/app/controller/add/AddFunction.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/spreadsheeteditor/mobile/app/controller/add/AddFunction.js b/apps/spreadsheeteditor/mobile/app/controller/add/AddFunction.js index 5104fdf3f..e44925767 100644 --- a/apps/spreadsheeteditor/mobile/app/controller/add/AddFunction.js +++ b/apps/spreadsheeteditor/mobile/app/controller/add/AddFunction.js @@ -107,6 +107,8 @@ define([ functions = {}, editorLang = SSE.getController("Main").editorConfig.lang; + editorLang = (editorLang ? editorLang : 'en').split("-")[0].toLowerCase(); + var localizationFunctionsDesc = function (data) { var jsonDesc = {}, view = me.getView('AddFunction');