From f17e9bdca0f4fa39d5e6554d56fdbe0ad88a5ee5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 8 Feb 2017 13:03:36 +0300 Subject: [PATCH] [SSE] Add polish language for formulas. --- apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 5 ++++- apps/spreadsheeteditor/main/locale/en.json | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index d55744713..9a3aacbe4 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -582,7 +582,8 @@ define([ data : [ { value: 'en', displayValue: this.txtEn, exampleValue: this.txtExampleEn }, { value: 'de', displayValue: this.txtDe, exampleValue: this.txtExampleDe }, - { value: 'ru', displayValue: this.txtRu, exampleValue: this.txtExampleRu } + { value: 'ru', displayValue: this.txtRu, exampleValue: this.txtExampleRu }, + { value: 'pl', displayValue: this.txtPl, exampleValue: this.txtExamplePl } ] }).on('selected', _.bind(function(combo, record) { this.updateFuncExample(record.exampleValue); @@ -781,9 +782,11 @@ define([ txtEn: 'English', txtDe: 'Deutsch', txtRu: 'Russian', + txtPl: 'Polish', txtExampleEn: ' SUM; MIN; MAX; COUNT', txtExampleDe: ' SUMME; MIN; MAX; ANZAHL', txtExampleRu: ' СУММ; МИН; МАКС; СЧЁТ', + txtExamplePl: ' SUMA; MIN; MAX; ILE.LICZB', strFuncLocale: 'Formula Language', strFuncLocaleEx: 'Example: SUM; MIN; MAX; COUNT', strRegSettings: 'Regional Settings', diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 863ccaaf9..debf62f32 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1008,6 +1008,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General",