diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 7b86161d2..919be95ad 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -675,6 +675,7 @@ define([ { value: 'de', displayValue: this.txtDe, exampleValue: this.txtExampleDe }, { value: 'es', displayValue: this.txtEs, exampleValue: this.txtExampleEs }, { value: 'fr', displayValue: this.txtFr, exampleValue: this.txtExampleFr }, + { value: 'it', displayValue: this.txtIt, exampleValue: this.txtExampleIt }, { value: 'ru', displayValue: this.txtRu, exampleValue: this.txtExampleRu }, { value: 'pl', displayValue: this.txtPl, exampleValue: this.txtExamplePl } ] @@ -884,12 +885,14 @@ define([ txtPl: 'Polish', txtEs: 'Spanish', txtFr: 'French', + txtIt: 'Italian', txtExampleEn: ' SUM; MIN; MAX; COUNT', txtExampleDe: ' SUMME; MIN; MAX; ANZAHL', txtExampleRu: ' СУММ; МИН; МАКС; СЧЁТ', txtExamplePl: ' SUMA; MIN; MAX; ILE.LICZB', txtExampleEs: ' SUMA; MIN; MAX; CALCULAR', txtExampleFr: ' SOMME; MIN; MAX; NB', + txtExampleIt: ' SOMMA; MIN; MAX; CONTA.NUMERI', strFuncLocale: 'Formula Language', strFuncLocaleEx: 'Example: SUM; MIN; MAX; COUNT', strRegSettings: 'Regional Settings', diff --git a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js index c818c000b..999d48469 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js @@ -56,9 +56,8 @@ define([ _options = {}; _.extend(_options, { - width : 350, + width : 375, height : 490, - contentWidth : 390, header : true, cls : 'formula-dlg', contentTemplate : '', @@ -76,7 +75,7 @@ define([ '', '
', '', - '', + '', '
', '', diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 27b5e4a98..9e65e2178 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1515,6 +1515,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "French", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commenting Display", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 29e497590..31998a15a 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -1515,6 +1515,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Испанский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Французский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Дюйм", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Итальянский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Отображение комментариев", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "как OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Собственный",