diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 2c913d7b5..f084ea7a5 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -466,7 +466,7 @@ define([ }; selectdata && panel.txtRangeLeft.updateBtnHint(this.textSelectRange); - var data = ((selectdata) ? [{caption: this.textSelectRange, value: 'select'}] : []).concat([ + var data = ((selectdata) ? [{caption: this.textSelectRange + '...', value: 'select'}] : []).concat([ {caption: this.textFrozenRows, value: 'frozen'}, {caption: this.textFirstRow, value: 'first'}, {caption: '--'}, @@ -477,7 +477,7 @@ define([ maxHeight: 200, items: data })); - data = ((selectdata) ? [{caption: this.textSelectRange, value: 'select'}] : []).concat([ + data = ((selectdata) ? [{caption: this.textSelectRange + '...', value: 'select'}] : []).concat([ {caption: this.textFrozenCols, value: 'frozen'}, {caption: this.textFirstCol, value: 'first'}, {caption: '--'}, @@ -544,7 +544,7 @@ define([ textInvalidRange: 'ERROR! Invalid cells range', textRepeat: 'Repeat...', textNoRepeat: 'Not repeat', - textSelectRange: 'Select range...', + textSelectRange: 'Select range', textFrozenRows: 'Frozen rows', textFrozenCols: 'Frozen columns', textFirstRow: 'First row', diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js index 81871d989..b9e7b9c1b 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js @@ -1711,7 +1711,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' textType: 'Type', textTypeData: 'Type & Data', textStyle: 'Style', - textSelectData: 'Select Data', + textSelectData: 'Select data', textDataSeries: 'Data series', errorMaxRows: 'ERROR! The maximum number of data series per chart is 255.', errorStockChart: 'Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.', diff --git a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js index 8b4601aeb..03c2ad436 100644 --- a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js +++ b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js @@ -272,7 +272,7 @@ define([ textTitle: 'Create Table', textDataRange: 'Source data range', - textSelectData: 'Select', + textSelectData: 'Select data', textDestination: 'Choose, where to place the table', textNew: 'New worksheet', textExist: 'Existing worksheet', diff --git a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js index 6cc6b2bb5..9c19cb4a6 100644 --- a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js @@ -553,6 +553,6 @@ define([ textNames: 'Defined names', textGetLink: 'Get Link', textCopy: 'Copy', - textSelectData: 'Select Data' + textSelectData: 'Select data' }, SSE.Views.HyperlinkSettingsDialog || {})) }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js index c32910f45..f9134b973 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js @@ -300,7 +300,7 @@ define([ 'text!spreadsheeteditor/main/app/template/PivotSettingsAdvanced.temp textShowCols: 'Show for columns', textDataSource: 'Data Source', textDataRange: 'Data Range', - textSelectData: 'Select Data', + textSelectData: 'Select data', textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', diff --git a/apps/spreadsheeteditor/main/app/view/PrintTitlesDialog.js b/apps/spreadsheeteditor/main/app/view/PrintTitlesDialog.js index 3c126c41f..426beb752 100644 --- a/apps/spreadsheeteditor/main/app/view/PrintTitlesDialog.js +++ b/apps/spreadsheeteditor/main/app/view/PrintTitlesDialog.js @@ -145,7 +145,7 @@ define([ maxHeight: 200, additionalAlign: this.menuAddAlign, items: [ - {caption: this.textSelectRange, value: 'select'}, + {caption: this.textSelectRange + '...', value: 'select'}, {caption: this.textFrozenRows, value: 'frozen', range: frozen, disabled: !frozen}, {caption: this.textFirstRow, value: 'first', range: this.api.asc_getPrintTitlesRange(Asc.c_oAscPrintTitlesRangeType.first, false, this.sheet)}, {caption: '--'}, @@ -182,7 +182,7 @@ define([ maxHeight: 200, additionalAlign: this.menuAddAlign, items: [ - {caption: this.textSelectRange, value: 'select'}, + {caption: this.textSelectRange + '...', value: 'select'}, {caption: this.textFrozenCols, value: 'frozen', range: frozen, disabled: !frozen}, {caption: this.textFirstCol, value: 'first', range: this.api.asc_getPrintTitlesRange(Asc.c_oAscPrintTitlesRangeType.first, true, this.sheet)}, {caption: '--'}, @@ -299,7 +299,7 @@ define([ textLeft: 'Repeat columns at left', textRepeat: 'Repeat...', textNoRepeat: 'Not repeat', - textSelectRange: 'Select range...', + textSelectRange: 'Select range', textFrozenRows: 'Frozen rows', textFrozenCols: 'Frozen columns', textFirstRow: 'First row', diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index b8d0edbdf..45122c077 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -814,7 +814,7 @@ "SSE.Controllers.Print.textInvalidRange": "ERROR! Invalid cells range", "SSE.Controllers.Print.textRepeat": "Repeat...", "SSE.Controllers.Print.textNoRepeat": "Not repeat", - "SSE.Controllers.Print.textSelectRange": "Select range...", + "SSE.Controllers.Print.textSelectRange": "Select range", "SSE.Controllers.Print.textFrozenRows": "Frozen rows", "SSE.Controllers.Print.textFrozenCols": "Frozen columns", "SSE.Controllers.Print.textFirstRow": "First row", @@ -1359,7 +1359,7 @@ "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", "SSE.Views.ChartSettingsDlg.textSameAll": "Same for All", - "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", + "SSE.Views.ChartSettingsDlg.textSelectData": "Select data", "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator", "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name", "SSE.Views.ChartSettingsDlg.textShow": "Show", @@ -1399,7 +1399,7 @@ "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", "SSE.Views.CreatePivotDialog.textTitle": "Create Table", "SSE.Views.CreatePivotDialog.textDataRange": "Source data range", - "SSE.Views.CreatePivotDialog.textSelectData": "Select", + "SSE.Views.CreatePivotDialog.textSelectData": "Select data", "SSE.Views.CreatePivotDialog.textDestination": "Choose, where to place the table", "SSE.Views.CreatePivotDialog.textNew": "New worksheet", "SSE.Views.CreatePivotDialog.textExist": "Existing worksheet", @@ -1795,7 +1795,7 @@ "SSE.Views.HyperlinkSettingsDialog.textNames": "Defined names", "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copy", - "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select Data", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select data", "SSE.Views.ImageSettings.textAdvanced": "Show advanced settings", "SSE.Views.ImageSettings.textCrop": "Crop", "SSE.Views.ImageSettings.textCropFill": "Fill", @@ -1878,7 +1878,7 @@ "SSE.Views.NamedRangeEditDlg.textName": "Name", "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", "SSE.Views.NamedRangeEditDlg.textScope": "Scope", - "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Select data", "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", @@ -1985,7 +1985,7 @@ "SSE.Views.PivotSettingsAdvanced.textShowCols": "Show for columns", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range", - "SSE.Views.PivotSettingsAdvanced.textSelectData": "Select Data", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Select data", "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", @@ -2074,7 +2074,7 @@ "SSE.Views.PrintTitlesDialog.textLeft": "Repeat columns at left", "SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...", "SSE.Views.PrintTitlesDialog.textNoRepeat": "Not repeat", - "SSE.Views.PrintTitlesDialog.textSelectRange": "Select range...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Select range", "SSE.Views.PrintTitlesDialog.textFrozenRows": "Frozen rows", "SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen columns", "SSE.Views.PrintTitlesDialog.textFirstRow": "First row",