From 60574efd18d788000482970d1f0ef0ddfc106523 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 10 Sep 2019 09:47:19 +0300 Subject: [PATCH] Refactoring window component --- .../main/lib/view/AdvancedSettingsWindow.js | 5 +- .../main/lib/view/ExtendedColorDialog.js | 1 - .../main/lib/view/ImageFromUrlDialog.js | 2 - .../common/main/lib/view/InsertTableDialog.js | 2 - apps/common/main/lib/view/LanguageDialog.js | 6 +- apps/common/main/lib/view/OpenDialog.js | 2 - apps/common/main/lib/view/PasswordDialog.js | 2 - apps/common/main/lib/view/RenameDialog.js | 2 - apps/common/main/lib/view/SignDialog.js | 2 - .../main/lib/view/SignSettingsDialog.js | 2 - .../main/app/view/CellsAddDialog.js | 2 - .../main/app/view/CellsRemoveDialog.js | 2 - .../main/app/view/ControlSettingsDialog.js | 2 - .../main/app/view/CustomColumnsDialog.js | 4 +- .../main/app/view/DropcapSettingsAdvanced.js | 2 - .../main/app/view/HyperlinkSettingsDialog.js | 2 - .../main/app/view/ImageSettingsAdvanced.js | 2 - .../main/app/view/MailMergeEmailDlg.js | 2 - .../main/app/view/NoteSettingsDialog.js | 3 +- .../main/app/view/NumberingValueDialog.js | 4 +- .../main/app/view/PageMarginsDialog.js | 2 - .../main/app/view/PageSizeDialog.js | 2 - .../app/view/ParagraphSettingsAdvanced.js | 2 - .../main/app/view/TableFormulaDialog.js | 2 - .../main/app/view/TableOfContentsSettings.js | 2 - .../main/app/view/TableSettings.js | 2 - .../main/app/view/TableSettingsAdvanced.js | 2 - .../main/app/view/WatermarkSettingsDialog.js | 2 - apps/documenteditor/main/locale/en.json | 106 ++++++++--------- apps/documenteditor/main/locale/ru.json | 23 ---- .../main/app/view/ChartSettingsAdvanced.js | 2 - .../main/app/view/DateTimeDialog.js | 2 - .../main/app/view/HeaderFooterDialog.js | 1 - .../main/app/view/HyperlinkSettingsDialog.js | 2 - .../main/app/view/ImageSettingsAdvanced.js | 2 - .../app/view/ParagraphSettingsAdvanced.js | 2 - .../main/app/view/ShapeSettingsAdvanced.js | 2 - .../main/app/view/SlideSizeSettings.js | 2 - .../main/app/view/SlideshowSettings.js | 4 +- .../main/app/view/TableSettingsAdvanced.js | 2 - .../main/app/view/Toolbar.js | 2 - apps/presentationeditor/main/locale/en.json | 80 ++++++------- .../main/app/controller/Toolbar.js | 1 - .../main/app/view/AutoFilterDialog.js | 5 - .../main/app/view/CellRangeDialog.js | 1 - .../main/app/view/ChartSettingsDlg.js | 1 - .../main/app/view/FieldSettingsDialog.js | 2 - .../main/app/view/FormatSettingsDialog.js | 6 +- .../main/app/view/FormulaDialog.js | 2 - .../main/app/view/GroupDialog.js | 2 - .../main/app/view/HeaderFooterDialog.js | 2 - .../main/app/view/HyperlinkSettingsDialog.js | 1 - .../main/app/view/ImageSettingsAdvanced.js | 2 - .../main/app/view/NameManagerDlg.js | 1 - .../main/app/view/NamedRangeEditDlg.js | 2 - .../main/app/view/NamedRangePasteDlg.js | 2 - .../main/app/view/PageMarginsDialog.js | 4 +- .../app/view/ParagraphSettingsAdvanced.js | 2 - .../main/app/view/PivotSettings.js | 2 - .../main/app/view/PivotSettingsAdvanced.js | 2 - .../main/app/view/PrintSettings.js | 1 - .../main/app/view/SetValueDialog.js | 2 - .../main/app/view/ShapeSettingsAdvanced.js | 2 - .../main/app/view/TableOptionsDialog.js | 1 - .../main/app/view/TableSettings.js | 2 - .../main/app/view/TableSettingsAdvanced.js | 2 - .../main/app/view/ValueFieldSettingsDialog.js | 4 +- apps/spreadsheeteditor/main/locale/en.json | 110 +++++++++--------- 68 files changed, 159 insertions(+), 304 deletions(-) diff --git a/apps/common/main/lib/view/AdvancedSettingsWindow.js b/apps/common/main/lib/view/AdvancedSettingsWindow.js index c269de6e4..7f1ea7609 100644 --- a/apps/common/main/lib/view/AdvancedSettingsWindow.js +++ b/apps/common/main/lib/view/AdvancedSettingsWindow.js @@ -190,9 +190,6 @@ define([ if (this.storageName) Common.localStorage.setItem(this.storageName, this.getActiveCategory()); Common.UI.Window.prototype.close.call(this, suppressevent); - }, - - cancelButtonText: 'Cancel', - okButtonText : 'Ok' + } }, Common.Views.AdvancedSettingsWindow || {})); }); \ No newline at end of file diff --git a/apps/common/main/lib/view/ExtendedColorDialog.js b/apps/common/main/lib/view/ExtendedColorDialog.js index e7ac52a48..2790ee764 100644 --- a/apps/common/main/lib/view/ExtendedColorDialog.js +++ b/apps/common/main/lib/view/ExtendedColorDialog.js @@ -286,7 +286,6 @@ define([ return false; }, - cancelButtonText: 'Cancel', addButtonText: 'Add', textNew: 'New', textCurrent: 'Current', diff --git a/apps/common/main/lib/view/ImageFromUrlDialog.js b/apps/common/main/lib/view/ImageFromUrlDialog.js index 63b0ea685..38d77645b 100644 --- a/apps/common/main/lib/view/ImageFromUrlDialog.js +++ b/apps/common/main/lib/view/ImageFromUrlDialog.js @@ -123,8 +123,6 @@ define([ }, textUrl : 'Paste an image URL:', - cancelButtonText: 'Cancel', - okButtonText : 'Ok', txtEmpty : 'This field is required', txtNotUrl : 'This field should be a URL in the format \"http://www.example.com\"' }, Common.Views.ImageFromUrlDialog || {})); diff --git a/apps/common/main/lib/view/InsertTableDialog.js b/apps/common/main/lib/view/InsertTableDialog.js index c37c4890b..b7fed9ba8 100644 --- a/apps/common/main/lib/view/InsertTableDialog.js +++ b/apps/common/main/lib/view/InsertTableDialog.js @@ -138,8 +138,6 @@ define([ txtColumns: 'Number of Columns', txtRows: 'Number of Rows', textInvalidRowsCols: 'You need to specify valid rows and columns count.', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtMinText: 'The minimum value for this field is {0}', txtMaxText: 'The maximum value for this field is {0}' }, Common.Views.InsertTableDialog || {})) diff --git a/apps/common/main/lib/view/LanguageDialog.js b/apps/common/main/lib/view/LanguageDialog.js index 45a06a46c..a2ed576e9 100644 --- a/apps/common/main/lib/view/LanguageDialog.js +++ b/apps/common/main/lib/view/LanguageDialog.js @@ -69,7 +69,7 @@ define([ initialize : function(options) { _.extend(this.options, options || {}, { label: this.labelSelect, - btns: {ok: this.btnOk, cancel: this.btnCancel} + btns: {ok: this.okButtonText, cancel: this.cancelButtonText} }); this.options.tpl = _.template(this.template)(this.options); @@ -144,8 +144,6 @@ define([ return false; }, - labelSelect : 'Select document language', - btnCancel : 'Cancel', - btnOk : 'Ok' + labelSelect : 'Select document language' }, Common.Views.LanguageDialog || {})) }); \ No newline at end of file diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index aa7a80a92..a43a226c1 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -435,8 +435,6 @@ define([ this.updatePreview(); }, - okButtonText : "OK", - cancelButtonText : "Cancel", txtDelimiter : "Delimiter", txtEncoding : "Encoding ", txtSpace : "Space", diff --git a/apps/common/main/lib/view/PasswordDialog.js b/apps/common/main/lib/view/PasswordDialog.js index a1a26ac4e..2c7c92be1 100644 --- a/apps/common/main/lib/view/PasswordDialog.js +++ b/apps/common/main/lib/view/PasswordDialog.js @@ -154,8 +154,6 @@ define([ this.close(); }, - okButtonText : "OK", - cancelButtonText : "Cancel", txtTitle : "Set Password", txtPassword : "Password", txtDescription : "A Password is required to open this document", diff --git a/apps/common/main/lib/view/RenameDialog.js b/apps/common/main/lib/view/RenameDialog.js index 39c550523..7c6df91e7 100644 --- a/apps/common/main/lib/view/RenameDialog.js +++ b/apps/common/main/lib/view/RenameDialog.js @@ -128,8 +128,6 @@ define([ }, textName : 'File name', - cancelButtonText: 'Cancel', - okButtonText : 'Ok', txtInvalidName : 'The file name cannot contain any of the following characters: ' }, Common.Views.RenameDialog || {})); }); \ No newline at end of file diff --git a/apps/common/main/lib/view/SignDialog.js b/apps/common/main/lib/view/SignDialog.js index 9452df47f..9905af9c6 100644 --- a/apps/common/main/lib/view/SignDialog.js +++ b/apps/common/main/lib/view/SignDialog.js @@ -342,8 +342,6 @@ define([ textCertificate: 'Certificate', textValid: 'Valid from %1 to %2', textChange: 'Change', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textInputName: 'Input signer name', textUseImage: 'or click \'Select Image\' to use a picture as signature', textSelectImage: 'Select Image', diff --git a/apps/common/main/lib/view/SignSettingsDialog.js b/apps/common/main/lib/view/SignSettingsDialog.js index ef425720c..bb761ece4 100644 --- a/apps/common/main/lib/view/SignSettingsDialog.js +++ b/apps/common/main/lib/view/SignSettingsDialog.js @@ -200,8 +200,6 @@ define([ textInfoTitle: 'Signer Title', textInfoEmail: 'E-mail', textInstructions: 'Instructions for Signer', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtEmpty: 'This field is required', textAllowComment: 'Allow signer to add comment in the signature dialog', textShowDate: 'Show sign date in signature line', diff --git a/apps/documenteditor/main/app/view/CellsAddDialog.js b/apps/documenteditor/main/app/view/CellsAddDialog.js index 529cefae5..e74c94d91 100644 --- a/apps/documenteditor/main/app/view/CellsAddDialog.js +++ b/apps/documenteditor/main/app/view/CellsAddDialog.js @@ -152,8 +152,6 @@ define([ return false; }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textTitle: 'Insert Several', textLeft: 'To the left', textRight: 'To the right', diff --git a/apps/documenteditor/main/app/view/CellsRemoveDialog.js b/apps/documenteditor/main/app/view/CellsRemoveDialog.js index cd89ed8c2..758bf524e 100644 --- a/apps/documenteditor/main/app/view/CellsRemoveDialog.js +++ b/apps/documenteditor/main/app/view/CellsRemoveDialog.js @@ -120,8 +120,6 @@ define([ return false; }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textTitle: 'Delete Cells', textLeft: 'Shift cells left', textRow: 'Delete entire row', diff --git a/apps/documenteditor/main/app/view/ControlSettingsDialog.js b/apps/documenteditor/main/app/view/ControlSettingsDialog.js index 2ea82cd16..4ee0c109f 100644 --- a/apps/documenteditor/main/app/view/ControlSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ControlSettingsDialog.js @@ -349,8 +349,6 @@ define([ txtLockDelete: 'Content control cannot be deleted', txtLockEdit: 'Contents cannot be edited', textLock: 'Locking', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textShowAs: 'Show as', textColor: 'Color', textBox: 'Bounding box', diff --git a/apps/documenteditor/main/app/view/CustomColumnsDialog.js b/apps/documenteditor/main/app/view/CustomColumnsDialog.js index f6a035817..2a8a9521a 100644 --- a/apps/documenteditor/main/app/view/CustomColumnsDialog.js +++ b/apps/documenteditor/main/app/view/CustomColumnsDialog.js @@ -171,8 +171,6 @@ define([ textTitle: 'Columns', textSpacing: 'Spacing between columns', textColumns: 'Number of columns', - textSeparator: 'Column divider', - cancelButtonText: 'Cancel', - okButtonText: 'Ok' + textSeparator: 'Column divider' }, DE.Views.CustomColumnsDialog || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/DropcapSettingsAdvanced.js b/apps/documenteditor/main/app/view/DropcapSettingsAdvanced.js index 5c2488b13..d28c87872 100644 --- a/apps/documenteditor/main/app/view/DropcapSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/DropcapSettingsAdvanced.js @@ -1164,8 +1164,6 @@ define([ textBorderColor: 'Border Color', textBackColor: 'Background Color', textBorderDesc: 'Click on diagramm or use buttons to select borders', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtNoBorders: 'No borders', textNewColor: 'Add New Custom Color', textPosition: 'Position', diff --git a/apps/documenteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/documenteditor/main/app/view/HyperlinkSettingsDialog.js index 34bdb9c88..48a7bdfb3 100644 --- a/apps/documenteditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/documenteditor/main/app/view/HyperlinkSettingsDialog.js @@ -399,8 +399,6 @@ define([ textUrl: 'Link to', textDisplay: 'Display', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtEmpty: 'This field is required', txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"', textTooltip: 'ScreenTip text', diff --git a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js index 0191463e3..1dc6a5a6f 100644 --- a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js @@ -2029,8 +2029,6 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat textWrapInFrontTooltip: 'In Front', textTitle: 'Image - Advanced Settings', textKeepRatio: 'Constant Proportions', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textBtnWrap: 'Text Wrapping', textCenter: 'Center', textCharacter: 'Character', diff --git a/apps/documenteditor/main/app/view/MailMergeEmailDlg.js b/apps/documenteditor/main/app/view/MailMergeEmailDlg.js index e5f7c82ea..7cd7d5212 100644 --- a/apps/documenteditor/main/app/view/MailMergeEmailDlg.js +++ b/apps/documenteditor/main/app/view/MailMergeEmailDlg.js @@ -264,8 +264,6 @@ define([ 'text!documenteditor/main/app/template/MailMergeEmailDlg.template', textAttachPdf: 'Attach as PDF', subjectPlaceholder: 'Theme', filePlaceholder: 'PDF', - cancelButtonText: 'Cancel', - okButtonText: 'Send', textWarning: 'Warning!', textWarningMsg: 'Please note that mailing cannot be stopped once your click the \'Send\' button.' diff --git a/apps/documenteditor/main/app/view/NoteSettingsDialog.js b/apps/documenteditor/main/app/view/NoteSettingsDialog.js index e5571e63e..80b6ca468 100644 --- a/apps/documenteditor/main/app/view/NoteSettingsDialog.js +++ b/apps/documenteditor/main/app/view/NoteSettingsDialog.js @@ -124,7 +124,7 @@ define([ '' ].join('') }, options); @@ -427,7 +427,6 @@ define([ textSection: 'Current section', textApply: 'Apply', textInsert: 'Insert', - textCancel: 'Cancel', textCustom: 'Custom Mark' }, DE.Views.NoteSettingsDialog || {})) diff --git a/apps/documenteditor/main/app/view/NumberingValueDialog.js b/apps/documenteditor/main/app/view/NumberingValueDialog.js index 6590074f3..8edf75123 100644 --- a/apps/documenteditor/main/app/view/NumberingValueDialog.js +++ b/apps/documenteditor/main/app/view/NumberingValueDialog.js @@ -253,9 +253,7 @@ define([ } return result; - }, + } - cancelButtonText: 'Cancel', - okButtonText: 'Ok' }, DE.Views.NumberingValueDialog || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/PageMarginsDialog.js b/apps/documenteditor/main/app/view/PageMarginsDialog.js index a449691a8..ce293b263 100644 --- a/apps/documenteditor/main/app/view/PageMarginsDialog.js +++ b/apps/documenteditor/main/app/view/PageMarginsDialog.js @@ -222,8 +222,6 @@ define([ textLeft: 'Left', textBottom: 'Bottom', textRight: 'Right', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', notcriticalErrorTitle: 'Warning', txtMarginsW: 'Left and right margins are too high for a given page wight', txtMarginsH: 'Top and bottom margins are too high for a given page height' diff --git a/apps/documenteditor/main/app/view/PageSizeDialog.js b/apps/documenteditor/main/app/view/PageSizeDialog.js index 057011fd4..193b2330a 100644 --- a/apps/documenteditor/main/app/view/PageSizeDialog.js +++ b/apps/documenteditor/main/app/view/PageSizeDialog.js @@ -223,8 +223,6 @@ define([ textTitle: 'Page Size', textWidth: 'Width', textHeight: 'Height', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textPreset: 'Preset', txtCustom: 'Custom' }, DE.Views.PageSizeDialog || {})) diff --git a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js index 243acbb1a..bfc4f6191 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -1446,8 +1446,6 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem textBorderColor: 'Border Color', textBackColor: 'Background Color', textBorderDesc: 'Click on diagramm or use buttons to select borders', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtNoBorders: 'No borders', textNewColor: 'Add New Custom Color', textEffects: 'Effects', diff --git a/apps/documenteditor/main/app/view/TableFormulaDialog.js b/apps/documenteditor/main/app/view/TableFormulaDialog.js index 97a377813..2f658e31a 100644 --- a/apps/documenteditor/main/app/view/TableFormulaDialog.js +++ b/apps/documenteditor/main/app/view/TableFormulaDialog.js @@ -240,8 +240,6 @@ define([ textFormat: 'Number Format', textBookmark: 'Paste Bookmark', textInsertFunction: 'Paste Function', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textTitle: 'Formula Settings' }, DE.Views.TableFormulaDialog || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/TableOfContentsSettings.js b/apps/documenteditor/main/app/view/TableOfContentsSettings.js index 71a015642..d71c3a12f 100644 --- a/apps/documenteditor/main/app/view/TableOfContentsSettings.js +++ b/apps/documenteditor/main/app/view/TableOfContentsSettings.js @@ -649,8 +649,6 @@ define([ textRadioStyles: 'Selected styles', textStyle: 'Style', textLevel: 'Level', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtCurrent: 'Current', txtSimple: 'Simple', txtStandard: 'Standard', diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index ad1d1f911..1cb3398ab 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -823,8 +823,6 @@ define([ textSelectBorders : 'Select borders that you want to change', textAdvanced : 'Show advanced settings', txtNoBorders : 'No borders', - textOK : 'OK', - textCancel : 'Cancel', textNewColor : 'Add New Custom Color', textTemplate : 'Select From Template', textRows : 'Rows', diff --git a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js index 30107783b..ad16dda1d 100644 --- a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js @@ -2131,8 +2131,6 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat textPreview: 'Preview', textBorderDesc: 'Click on diagramm or use buttons to select borders', textTableBackColor: 'Table Background', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtNoBorders: 'No borders', textNewColor: 'Add New Custom Color', textCenter: 'Center', diff --git a/apps/documenteditor/main/app/view/WatermarkSettingsDialog.js b/apps/documenteditor/main/app/view/WatermarkSettingsDialog.js index e4174cfc5..1bf607bdb 100644 --- a/apps/documenteditor/main/app/view/WatermarkSettingsDialog.js +++ b/apps/documenteditor/main/app/view/WatermarkSettingsDialog.js @@ -667,8 +667,6 @@ define(['text!documenteditor/main/app/template/WatermarkSettings.template', textLayout: 'Layout', textDiagonal: 'Diagonal', textHor: 'Horizontal', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textColor: 'Text color', textNewColor: 'Add New Custom Color', textLanguage: 'Language' diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 54c1de625..314e635a4 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -73,7 +73,7 @@ "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", + "del_Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", "Common.UI.ExtendedColorDialog.textCurrent": "Current", "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "New", @@ -112,8 +112,8 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", - "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", - "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "del_Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", + "del_Common.Views.AdvancedSettingsWindow.okButtonText": "OK", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Add Comment", @@ -174,13 +174,13 @@ "Common.Views.History.textShow": "Expand", "Common.Views.History.textShowAll": "Show detailed changes", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", - "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "del_Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", + "del_Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "Common.Views.InsertTableDialog.cancelButtonText": "Cancel", - "Common.Views.InsertTableDialog.okButtonText": "OK", + "del_Common.Views.InsertTableDialog.cancelButtonText": "Cancel", + "del_Common.Views.InsertTableDialog.okButtonText": "OK", "Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns count.", "Common.Views.InsertTableDialog.txtColumns": "Number of Columns", "Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.", @@ -188,12 +188,12 @@ "Common.Views.InsertTableDialog.txtRows": "Number of Rows", "Common.Views.InsertTableDialog.txtTitle": "Table Size", "Common.Views.InsertTableDialog.txtTitleSplit": "Split Cell", - "Common.Views.LanguageDialog.btnCancel": "Cancel", - "Common.Views.LanguageDialog.btnOk": "OK", + "del_Common.Views.LanguageDialog.btnCancel": "Cancel", + "del_Common.Views.LanguageDialog.btnOk": "OK", "Common.Views.LanguageDialog.labelSelect": "Select document language", - "Common.Views.OpenDialog.cancelButtonText": "Cancel", + "del_Common.Views.OpenDialog.cancelButtonText": "Cancel", "Common.Views.OpenDialog.closeButtonText": "Close File", - "Common.Views.OpenDialog.okButtonText": "OK", + "del_Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtPassword": "Password", @@ -201,8 +201,8 @@ "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitleProtected": "Protected File", - "Common.Views.PasswordDialog.cancelButtonText": "Cancel", - "Common.Views.PasswordDialog.okButtonText": "OK", + "del_Common.Views.PasswordDialog.cancelButtonText": "Cancel", + "del_Common.Views.PasswordDialog.okButtonText": "OK", "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", "Common.Views.PasswordDialog.txtPassword": "Password", @@ -224,8 +224,8 @@ "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", "Common.Views.Protection.txtSignature": "Signature", "Common.Views.Protection.txtSignatureLine": "Add signature line", - "Common.Views.RenameDialog.cancelButtonText": "Cancel", - "Common.Views.RenameDialog.okButtonText": "OK", + "del_Common.Views.RenameDialog.cancelButtonText": "Cancel", + "del_Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "Common.Views.ReviewChanges.hintNext": "To next change", @@ -291,8 +291,8 @@ "Common.Views.SaveAsDlg.textTitle": "Folder for save", "Common.Views.SelectFileDlg.textLoading": "Loading", "Common.Views.SelectFileDlg.textTitle": "Select Data Source", - "Common.Views.SignDialog.cancelButtonText": "Cancel", - "Common.Views.SignDialog.okButtonText": "OK", + "del_Common.Views.SignDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignDialog.okButtonText": "OK", "Common.Views.SignDialog.textBold": "Bold", "Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textChange": "Change", @@ -307,8 +307,8 @@ "Common.Views.SignDialog.textValid": "Valid from %1 to %2", "Common.Views.SignDialog.tipFontName": "Font Name", "Common.Views.SignDialog.tipFontSize": "Font Size", - "Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", - "Common.Views.SignSettingsDialog.okButtonText": "OK", + "del_Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignSettingsDialog.okButtonText": "OK", "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", "Common.Views.SignSettingsDialog.textInfo": "Signer Info", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", @@ -1022,14 +1022,14 @@ "DE.Views.BookmarksDialog.textSort": "Sort by", "DE.Views.BookmarksDialog.textTitle": "Bookmarks", "DE.Views.BookmarksDialog.txtInvalidName": "Bookmark name can only contain letters, digits and underscores, and should begin with the letter", - "DE.Views.CellsRemoveDialog.cancelButtonText": "Cancel", - "DE.Views.CellsRemoveDialog.okButtonText": "Ok", + "del_DE.Views.CellsRemoveDialog.cancelButtonText": "Cancel", + "del_DE.Views.CellsRemoveDialog.okButtonText": "Ok", "DE.Views.CellsRemoveDialog.textTitle": "Delete Cells", "DE.Views.CellsRemoveDialog.textLeft": "Shift cells left", "DE.Views.CellsRemoveDialog.textRow": "Delete entire row", "DE.Views.CellsRemoveDialog.textCol": "Delete entire column", - "DE.Views.CellsAddDialog.cancelButtonText": "Cancel", - "DE.Views.CellsAddDialog.okButtonText": "Ok", + "del_DE.Views.CellsAddDialog.cancelButtonText": "Cancel", + "del_DE.Views.CellsAddDialog.okButtonText": "Ok", "DE.Views.CellsAddDialog.textTitle": "Insert Several", "DE.Views.CellsAddDialog.textLeft": "To the left", "DE.Views.CellsAddDialog.textRight": "To the right", @@ -1063,8 +1063,8 @@ "DE.Views.ChartSettings.txtTight": "Tight", "DE.Views.ChartSettings.txtTitle": "Chart", "DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom", - "DE.Views.ControlSettingsDialog.cancelButtonText": "Cancel", - "DE.Views.ControlSettingsDialog.okButtonText": "OK", + "del_DE.Views.ControlSettingsDialog.cancelButtonText": "Cancel", + "del_DE.Views.ControlSettingsDialog.okButtonText": "OK", "DE.Views.ControlSettingsDialog.textAppearance": "Appearance", "DE.Views.ControlSettingsDialog.textApplyAll": "Apply to All", "DE.Views.ControlSettingsDialog.textBox": "Bounding box", @@ -1079,8 +1079,8 @@ "DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings", "DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted", "DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited", - "DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel", - "DE.Views.CustomColumnsDialog.okButtonText": "OK", + "del_DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel", + "del_DE.Views.CustomColumnsDialog.okButtonText": "OK", "DE.Views.CustomColumnsDialog.textColumns": "Number of columns", "DE.Views.CustomColumnsDialog.textSeparator": "Column divider", "DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns", @@ -1296,8 +1296,8 @@ "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "DE.Views.DocumentHolder.textCells": "Cells", "DE.Views.DocumentHolder.textSeveral": "Several Rows/Columns", - "DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancel", - "DE.Views.DropcapSettingsAdvanced.okButtonText": "OK", + "del_DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancel", + "del_DE.Views.DropcapSettingsAdvanced.okButtonText": "OK", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", @@ -1464,8 +1464,8 @@ "DE.Views.HeaderFooterSettings.textTopLeft": "Top left", "DE.Views.HeaderFooterSettings.textTopPage": "Top of Page", "DE.Views.HeaderFooterSettings.textTopRight": "Top right", - "DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", - "DE.Views.HyperlinkSettingsDialog.okButtonText": "OK", + "del_DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", + "del_DE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Display", "DE.Views.HyperlinkSettingsDialog.textExternal": "External Link", @@ -1507,8 +1507,8 @@ "DE.Views.ImageSettings.txtThrough": "Through", "DE.Views.ImageSettings.txtTight": "Tight", "DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom", - "DE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", - "DE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "del_DE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", + "del_DE.Views.ImageSettingsAdvanced.okButtonText": "OK", "DE.Views.ImageSettingsAdvanced.strMargins": "Text Padding", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute", "DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment", @@ -1610,7 +1610,7 @@ "DE.Views.Links.tipContentsUpdate": "Refresh table of contents", "DE.Views.Links.tipInsertHyperlink": "Add hyperlink", "DE.Views.Links.tipNotes": "Insert or edit footnotes", - "DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel", + "del_DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", @@ -1671,7 +1671,7 @@ "DE.Views.Navigation.txtSelect": "Select content", "DE.Views.NoteSettingsDialog.textApply": "Apply", "DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to", - "DE.Views.NoteSettingsDialog.textCancel": "Cancel", + "del_DE.Views.NoteSettingsDialog.textCancel": "Cancel", "DE.Views.NoteSettingsDialog.textContinue": "Continuous", "DE.Views.NoteSettingsDialog.textCustom": "Custom Mark", "DE.Views.NoteSettingsDialog.textDocument": "Whole document", @@ -1688,11 +1688,11 @@ "DE.Views.NoteSettingsDialog.textStart": "Start at", "DE.Views.NoteSettingsDialog.textTextBottom": "Below text", "DE.Views.NoteSettingsDialog.textTitle": "Notes Settings", - "DE.Views.NumberingValueDialog.cancelButtonText": "Cancel", - "DE.Views.NumberingValueDialog.okButtonText": "OK", - "DE.Views.PageMarginsDialog.cancelButtonText": "Cancel", + "del_DE.Views.NumberingValueDialog.cancelButtonText": "Cancel", + "del_DE.Views.NumberingValueDialog.okButtonText": "OK", + "del_DE.Views.PageMarginsDialog.cancelButtonText": "Cancel", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", - "DE.Views.PageMarginsDialog.okButtonText": "OK", + "del_DE.Views.PageMarginsDialog.okButtonText": "OK", "DE.Views.PageMarginsDialog.textBottom": "Bottom", "DE.Views.PageMarginsDialog.textLeft": "Left", "DE.Views.PageMarginsDialog.textRight": "Right", @@ -1700,8 +1700,8 @@ "DE.Views.PageMarginsDialog.textTop": "Top", "DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height", "DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width", - "DE.Views.PageSizeDialog.cancelButtonText": "Cancel", - "DE.Views.PageSizeDialog.okButtonText": "OK", + "del_DE.Views.PageSizeDialog.cancelButtonText": "Cancel", + "del_DE.Views.PageSizeDialog.okButtonText": "OK", "DE.Views.PageSizeDialog.textHeight": "Height", "DE.Views.PageSizeDialog.textPreset": "Preset", "DE.Views.PageSizeDialog.textTitle": "Page Size", @@ -1720,9 +1720,9 @@ "DE.Views.ParagraphSettings.textExact": "Exactly", "DE.Views.ParagraphSettings.textNewColor": "Add New Custom Color", "DE.Views.ParagraphSettings.txtAutoText": "Auto", - "DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", + "del_DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", "DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "del_DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Page break before", @@ -1893,15 +1893,15 @@ "DE.Views.StyleTitleDialog.txtEmpty": "This field is required", "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", "DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style", - "DE.Views.TableFormulaDialog.cancelButtonText": "Cancel", - "DE.Views.TableFormulaDialog.okButtonText": "OK", + "del_DE.Views.TableFormulaDialog.cancelButtonText": "Cancel", + "del_DE.Views.TableFormulaDialog.okButtonText": "OK", "DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark", "DE.Views.TableFormulaDialog.textFormat": "Number Format", "DE.Views.TableFormulaDialog.textFormula": "Formula", "DE.Views.TableFormulaDialog.textInsertFunction": "Paste Function", "DE.Views.TableFormulaDialog.textTitle": "Formula Settings", - "DE.Views.TableOfContentsSettings.cancelButtonText": "Cancel", - "DE.Views.TableOfContentsSettings.okButtonText": "OK", + "del_DE.Views.TableOfContentsSettings.cancelButtonText": "Cancel", + "del_DE.Views.TableOfContentsSettings.okButtonText": "OK", "DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers", "DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links", "DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers", @@ -1941,7 +1941,7 @@ "DE.Views.TableSettings.textBanded": "Banded", "DE.Views.TableSettings.textBorderColor": "Color", "DE.Views.TableSettings.textBorders": "Borders Style", - "DE.Views.TableSettings.textCancel": "Cancel", + "del_DE.Views.TableSettings.textCancel": "Cancel", "DE.Views.TableSettings.textCellSize": "Cell Size", "DE.Views.TableSettings.textColumns": "Columns", "DE.Views.TableSettings.textDistributeCols": "Distribute columns", @@ -1953,7 +1953,7 @@ "DE.Views.TableSettings.textHeight": "Height", "DE.Views.TableSettings.textLast": "Last", "DE.Views.TableSettings.textNewColor": "Add New Custom Color", - "DE.Views.TableSettings.textOK": "OK", + "del_DE.Views.TableSettings.textOK": "OK", "DE.Views.TableSettings.textRows": "Rows", "DE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above", "DE.Views.TableSettings.textTemplate": "Select From Template", @@ -1970,8 +1970,8 @@ "DE.Views.TableSettings.tipRight": "Set outer right border only", "DE.Views.TableSettings.tipTop": "Set outer top border only", "DE.Views.TableSettings.txtNoBorders": "No borders", - "DE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", - "DE.Views.TableSettingsAdvanced.okButtonText": "OK", + "del_DE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", + "del_DE.Views.TableSettingsAdvanced.okButtonText": "OK", "DE.Views.TableSettingsAdvanced.textAlign": "Alignment", "DE.Views.TableSettingsAdvanced.textAlignment": "Alignment", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells", @@ -2254,8 +2254,8 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Foundry", - "DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancel", - "DE.Views.WatermarkSettingsDialog.okButtonText": "OK", + "del_DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancel", + "del_DE.Views.WatermarkSettingsDialog.okButtonText": "OK", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Bold", "DE.Views.WatermarkSettingsDialog.textColor": "Text color", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 64291dae6..497752fdb 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -73,7 +73,6 @@ "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ", "Common.UI.ComboDataView.emptyComboText": "Без стилей", "Common.UI.ExtendedColorDialog.addButtonText": "Добавить", - "Common.UI.ExtendedColorDialog.cancelButtonText": "Отмена", "Common.UI.ExtendedColorDialog.textCurrent": "Текущий", "Common.UI.ExtendedColorDialog.textHexErr": "Введено некорректное значение.
Пожалуйста, введите значение от 000000 до FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Новый", @@ -112,7 +111,6 @@ "Common.Views.About.txtPoweredBy": "Разработано", "Common.Views.About.txtTel": "тел.: ", "Common.Views.About.txtVersion": "Версия ", - "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Отмена", "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", "Common.Views.Chat.textSend": "Отправить", "Common.Views.Comments.textAdd": "Добавить", @@ -174,12 +172,10 @@ "Common.Views.History.textShow": "Развернуть", "Common.Views.History.textShowAll": "Показать подробные изменения", "Common.Views.History.textVer": "вер.", - "Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "Common.Views.InsertTableDialog.cancelButtonText": "Отмена", "Common.Views.InsertTableDialog.okButtonText": "OK", "Common.Views.InsertTableDialog.textInvalidRowsCols": "Необходимо указать допустимое количество строк и столбцов.", "Common.Views.InsertTableDialog.txtColumns": "Количество столбцов", @@ -191,7 +187,6 @@ "Common.Views.LanguageDialog.btnCancel": "Отмена", "Common.Views.LanguageDialog.btnOk": "ОК", "Common.Views.LanguageDialog.labelSelect": "Выбрать язык документа", - "Common.Views.OpenDialog.cancelButtonText": "Отмена", "Common.Views.OpenDialog.closeButtonText": "Закрыть файл", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Кодировка", @@ -201,7 +196,6 @@ "Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.", "Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1", "Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл", - "Common.Views.PasswordDialog.cancelButtonText": "Отмена", "Common.Views.PasswordDialog.okButtonText": "OK", "Common.Views.PasswordDialog.txtDescription": "Задайте пароль, чтобы защитить этот документ", "Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", @@ -224,7 +218,6 @@ "Common.Views.Protection.txtInvisibleSignature": "Добавить цифровую подпись", "Common.Views.Protection.txtSignature": "Подпись", "Common.Views.Protection.txtSignatureLine": "Добавить строку подписи", - "Common.Views.RenameDialog.cancelButtonText": "Отмена", "Common.Views.RenameDialog.okButtonText": "ОК", "Common.Views.RenameDialog.textName": "Имя файла", "Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ", @@ -291,7 +284,6 @@ "Common.Views.SaveAsDlg.textTitle": "Папка для сохранения", "Common.Views.SelectFileDlg.textLoading": "Загрузка", "Common.Views.SelectFileDlg.textTitle": "Выбрать источник данных", - "Common.Views.SignDialog.cancelButtonText": "Отмена", "Common.Views.SignDialog.okButtonText": "ОК", "Common.Views.SignDialog.textBold": "Полужирный", "Common.Views.SignDialog.textCertificate": "Сертификат", @@ -307,7 +299,6 @@ "Common.Views.SignDialog.textValid": "Действителен с %1 по %2", "Common.Views.SignDialog.tipFontName": "Шрифт", "Common.Views.SignDialog.tipFontSize": "Размер шрифта", - "Common.Views.SignSettingsDialog.cancelButtonText": "Отмена", "Common.Views.SignSettingsDialog.okButtonText": "ОК", "Common.Views.SignSettingsDialog.textAllowComment": "Разрешить подписывающему добавлять примечания в окне подписи", "Common.Views.SignSettingsDialog.textInfo": "Сведения о подписывающем", @@ -1047,7 +1038,6 @@ "DE.Views.ChartSettings.txtTight": "По контуру", "DE.Views.ChartSettings.txtTitle": "Диаграмма", "DE.Views.ChartSettings.txtTopAndBottom": "Сверху и снизу", - "DE.Views.ControlSettingsDialog.cancelButtonText": "Отмена", "DE.Views.ControlSettingsDialog.okButtonText": "ОК", "DE.Views.ControlSettingsDialog.textAppearance": "Вид", "DE.Views.ControlSettingsDialog.textApplyAll": "Применить ко всем", @@ -1063,7 +1053,6 @@ "DE.Views.ControlSettingsDialog.textTitle": "Параметры элемента управления содержимым", "DE.Views.ControlSettingsDialog.txtLockDelete": "Элемент управления содержимым нельзя удалить", "DE.Views.ControlSettingsDialog.txtLockEdit": "Содержимое нельзя редактировать", - "DE.Views.CustomColumnsDialog.cancelButtonText": "Отмена", "DE.Views.CustomColumnsDialog.okButtonText": "ОК", "DE.Views.CustomColumnsDialog.textColumns": "Количество колонок", "DE.Views.CustomColumnsDialog.textSeparator": "Разделитель", @@ -1278,7 +1267,6 @@ "DE.Views.DocumentHolder.txtUngroup": "Разгруппировать", "DE.Views.DocumentHolder.updateStyleText": "Обновить стиль %1", "DE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание", - "DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Отмена", "DE.Views.DropcapSettingsAdvanced.okButtonText": "ОК", "DE.Views.DropcapSettingsAdvanced.strBorders": "Границы и заливка", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Буквица", @@ -1445,7 +1433,6 @@ "DE.Views.HeaderFooterSettings.textTopLeft": "Сверху слева", "DE.Views.HeaderFooterSettings.textTopPage": "Вверху страницы", "DE.Views.HeaderFooterSettings.textTopRight": "Сверху справа", - "DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отмена", "DE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "DE.Views.HyperlinkSettingsDialog.textDefault": "Выделенный фрагмент текста", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Отображать", @@ -1488,7 +1475,6 @@ "DE.Views.ImageSettings.txtThrough": "Сквозное", "DE.Views.ImageSettings.txtTight": "По контуру", "DE.Views.ImageSettings.txtTopAndBottom": "Сверху и снизу", - "DE.Views.ImageSettingsAdvanced.cancelButtonText": "Отмена", "DE.Views.ImageSettingsAdvanced.okButtonText": "OK", "DE.Views.ImageSettingsAdvanced.strMargins": "Поля вокруг текста", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Абсолютная", @@ -1591,7 +1577,6 @@ "DE.Views.Links.tipContentsUpdate": "Обновить оглавление", "DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку", "DE.Views.Links.tipNotes": "Вставить или редактировать сноски", - "DE.Views.MailMergeEmailDlg.cancelButtonText": "Отмена", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Отправить", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема", @@ -1669,9 +1654,7 @@ "DE.Views.NoteSettingsDialog.textStart": "Начать с", "DE.Views.NoteSettingsDialog.textTextBottom": "Под текстом", "DE.Views.NoteSettingsDialog.textTitle": "Параметры сносок", - "DE.Views.NumberingValueDialog.cancelButtonText": "Отмена", "DE.Views.NumberingValueDialog.okButtonText": "ОК", - "DE.Views.PageMarginsDialog.cancelButtonText": "Отмена", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание", "DE.Views.PageMarginsDialog.okButtonText": "ОК", "DE.Views.PageMarginsDialog.textBottom": "Нижнее", @@ -1681,7 +1664,6 @@ "DE.Views.PageMarginsDialog.textTop": "Верхнее", "DE.Views.PageMarginsDialog.txtMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы", "DE.Views.PageMarginsDialog.txtMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы", - "DE.Views.PageSizeDialog.cancelButtonText": "Отмена", "DE.Views.PageSizeDialog.okButtonText": "ОК", "DE.Views.PageSizeDialog.textHeight": "Высота", "DE.Views.PageSizeDialog.textPreset": "Предустановка", @@ -1701,7 +1683,6 @@ "DE.Views.ParagraphSettings.textExact": "Точно", "DE.Views.ParagraphSettings.textNewColor": "Пользовательский цвет", "DE.Views.ParagraphSettings.txtAutoText": "Авто", - "DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Отмена", "DE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите", "DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные", @@ -1874,14 +1855,12 @@ "DE.Views.StyleTitleDialog.txtEmpty": "Это поле необходимо заполнить", "DE.Views.StyleTitleDialog.txtNotEmpty": "Поле не может быть пустым", "DE.Views.StyleTitleDialog.txtSameAs": "Такой же, как создаваемый стиль", - "DE.Views.TableFormulaDialog.cancelButtonText": "Отмена", "DE.Views.TableFormulaDialog.okButtonText": "ОК", "DE.Views.TableFormulaDialog.textBookmark": "Вставить закладку", "DE.Views.TableFormulaDialog.textFormat": "Формат числа", "DE.Views.TableFormulaDialog.textFormula": "Формула", "DE.Views.TableFormulaDialog.textInsertFunction": "Вставить функцию", "DE.Views.TableFormulaDialog.textTitle": "Настройки формулы", - "DE.Views.TableOfContentsSettings.cancelButtonText": "Отмена", "DE.Views.TableOfContentsSettings.okButtonText": "ОК", "DE.Views.TableOfContentsSettings.strAlign": "Номера страниц по правому краю", "DE.Views.TableOfContentsSettings.strLinks": "Форматировать оглавление как ссылки", @@ -1951,7 +1930,6 @@ "DE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу", "DE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу", "DE.Views.TableSettings.txtNoBorders": "Без границ", - "DE.Views.TableSettingsAdvanced.cancelButtonText": "Отмена", "DE.Views.TableSettingsAdvanced.okButtonText": "OK", "DE.Views.TableSettingsAdvanced.textAlign": "Выравнивание", "DE.Views.TableSettingsAdvanced.textAlignment": "Выравнивание", @@ -2235,7 +2213,6 @@ "DE.Views.Toolbar.txtScheme7": "Справедливость", "DE.Views.Toolbar.txtScheme8": "Поток", "DE.Views.Toolbar.txtScheme9": "Литейная", - "DE.Views.WatermarkSettingsDialog.cancelButtonText": "Отмена", "DE.Views.WatermarkSettingsDialog.okButtonText": "OK", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Полужирный", diff --git a/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js index 0c13c894a..fb0e919fa 100644 --- a/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js @@ -127,8 +127,6 @@ define([ 'text!presentationeditor/main/app/template/ChartSettingsAdvanced.tem }, textTitle: 'Chart - Advanced Settings', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index 367b9a45c..99ff9ba66 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -244,8 +244,6 @@ define([ }, // - cancelButtonText: 'Cancel', - okButtonText: 'OK', txtTitle: 'Date & Time', textLang: 'Language', textFormat: 'Formats', diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 1f41f68c4..591583d06 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -346,7 +346,6 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', }, textTitle: 'Header/Footer Settings', - cancelButtonText: 'Cancel', applyAllText: 'Apply to all', applyText: 'Apply', textLang: 'Language', diff --git a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js index 7f004ceb0..28e280c48 100644 --- a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js @@ -387,8 +387,6 @@ define([ txtEmpty: 'This field is required', txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"', strPlaceInDocument: 'Select a Place in This Document', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtNext: 'Next Slide', txtPrev: 'Previous Slide', txtFirst: 'First Slide', diff --git a/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js index ca98d8db5..fa3a58662 100644 --- a/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js @@ -323,8 +323,6 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem textHeight: 'Height', textTitle: 'Image - Advanced Settings', textKeepRatio: 'Constant Proportions', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textPlacement: 'Placement', textAlt: 'Alternative Text', textAltTitle: 'Title', diff --git a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js index da55d09cc..9f6924427 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js @@ -776,8 +776,6 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced strIndentsRightText: 'Right', strParagraphIndents: 'Indents & Spacing', strParagraphFont: 'Font', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textEffects: 'Effects', textCharacterSpacing: 'Character Spacing', strDoubleStrike: 'Double strikethrough', diff --git a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js index 2225935f6..84937cb3b 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js @@ -740,8 +740,6 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem textFlat: 'Flat', textBevel: 'Bevel', textTitle: 'Shape - Advanced Settings', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtNone: 'None', textWeightArrows: 'Weights & Arrows', textArrows: 'Arrows', diff --git a/apps/presentationeditor/main/app/view/SlideSizeSettings.js b/apps/presentationeditor/main/app/view/SlideSizeSettings.js index 5bcff936f..3016605b8 100644 --- a/apps/presentationeditor/main/app/view/SlideSizeSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSizeSettings.js @@ -249,8 +249,6 @@ define([ textSlideSize: 'Slide Size', textWidth: 'Width', textHeight: 'Height', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtStandard: 'Standard (4:3)', txtWidescreen1: 'Widescreen (16:9)', txtWidescreen2: 'Widescreen (16:10)', diff --git a/apps/presentationeditor/main/app/view/SlideshowSettings.js b/apps/presentationeditor/main/app/view/SlideshowSettings.js index e7ef9e249..fe5b31ef6 100644 --- a/apps/presentationeditor/main/app/view/SlideshowSettings.js +++ b/apps/presentationeditor/main/app/view/SlideshowSettings.js @@ -114,8 +114,6 @@ define([ }, textTitle: 'Show Settings', - textLoop: 'Loop continuously until \'Esc\' is pressed', - cancelButtonText: 'Cancel', - okButtonText: 'Ok' + textLoop: 'Loop continuously until \'Esc\' is pressed' }, PE.Views.SlideshowSettings || {})) }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js b/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js index eee1f882c..31ad9cd94 100644 --- a/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js @@ -426,8 +426,6 @@ define([ 'text!presentationeditor/main/app/template/TableSettingsAdvanced.tem textTitle: 'Table - Advanced Settings', textDefaultMargins: 'Default Margins', textCheckMargins: 'Use default margins', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 0956de53b..a375fb8c5 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1611,8 +1611,6 @@ define([ txtDistribHor: 'Distribute Horizontally', txtDistribVert: 'Distribute Vertically', tipChangeSlide: 'Change Slide Layout', - textOK: 'OK', - textCancel: 'Cancel', tipColorSchemas: 'Change Color Scheme', textNewColor: 'Add New Custom Color', mniSlideStandard: 'Standard (4:3)', diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 93422947e..971cbea07 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -9,7 +9,7 @@ "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", + "del_Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", "Common.UI.ExtendedColorDialog.textCurrent": "Current", "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "New", @@ -48,8 +48,8 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", - "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", - "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "del_Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", + "del_Common.Views.AdvancedSettingsWindow.okButtonText": "OK", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Add Comment", @@ -100,13 +100,13 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", - "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "del_Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", + "del_Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "Common.Views.InsertTableDialog.cancelButtonText": "Cancel", - "Common.Views.InsertTableDialog.okButtonText": "OK", + "del_Common.Views.InsertTableDialog.cancelButtonText": "Cancel", + "del_Common.Views.InsertTableDialog.okButtonText": "OK", "Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns number.", "Common.Views.InsertTableDialog.txtColumns": "Number of Columns", "Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.", @@ -114,20 +114,20 @@ "Common.Views.InsertTableDialog.txtRows": "Number of Rows", "Common.Views.InsertTableDialog.txtTitle": "Table Size", "Common.Views.InsertTableDialog.txtTitleSplit": "Split Cell", - "Common.Views.LanguageDialog.btnCancel": "Cancel", - "Common.Views.LanguageDialog.btnOk": "OK", + "del_Common.Views.LanguageDialog.btnCancel": "Cancel", + "del_Common.Views.LanguageDialog.btnOk": "OK", "Common.Views.LanguageDialog.labelSelect": "Select document language", - "Common.Views.OpenDialog.cancelButtonText": "Cancel", + "del_Common.Views.OpenDialog.cancelButtonText": "Cancel", "Common.Views.OpenDialog.closeButtonText": "Close File", - "Common.Views.OpenDialog.okButtonText": "OK", + "del_Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtPassword": "Password", "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitleProtected": "Protected File", - "Common.Views.PasswordDialog.cancelButtonText": "Cancel", - "Common.Views.PasswordDialog.okButtonText": "OK", + "del_Common.Views.PasswordDialog.cancelButtonText": "Cancel", + "del_Common.Views.PasswordDialog.okButtonText": "OK", "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", "Common.Views.PasswordDialog.txtPassword": "Password", @@ -149,8 +149,8 @@ "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", "Common.Views.Protection.txtSignature": "Signature", "Common.Views.Protection.txtSignatureLine": "Add signature line", - "Common.Views.RenameDialog.cancelButtonText": "Cancel", - "Common.Views.RenameDialog.okButtonText": "OK", + "del_Common.Views.RenameDialog.cancelButtonText": "Cancel", + "del_Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "Common.Views.ReviewChanges.hintNext": "To next change", @@ -206,8 +206,8 @@ "Common.Views.SaveAsDlg.textTitle": "Folder for save", "Common.Views.SelectFileDlg.textLoading": "Loading", "Common.Views.SelectFileDlg.textTitle": "Select Data Source", - "Common.Views.SignDialog.cancelButtonText": "Cancel", - "Common.Views.SignDialog.okButtonText": "OK", + "del_Common.Views.SignDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignDialog.okButtonText": "OK", "Common.Views.SignDialog.textBold": "Bold", "Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textChange": "Change", @@ -222,8 +222,8 @@ "Common.Views.SignDialog.textValid": "Valid from %1 to %2", "Common.Views.SignDialog.tipFontName": "Font Name", "Common.Views.SignDialog.tipFontSize": "Font Size", - "Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", - "Common.Views.SignSettingsDialog.okButtonText": "OK", + "del_Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignSettingsDialog.okButtonText": "OK", "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", "Common.Views.SignSettingsDialog.textInfo": "Signer Info", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", @@ -938,16 +938,16 @@ "PE.Views.ChartSettings.textStyle": "Style", "PE.Views.ChartSettings.textSurface": "Surface", "PE.Views.ChartSettings.textWidth": "Width", - "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel", - "PE.Views.ChartSettingsAdvanced.okButtonText": "OK", + "del_PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel", + "del_PE.Views.ChartSettingsAdvanced.okButtonText": "OK", "PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Description", "PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Title", "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings", - "PE.Views.DateTimeDialog.cancelButtonText": "Cancel", + "del_PE.Views.DateTimeDialog.cancelButtonText": "Cancel", "PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"", - "PE.Views.DateTimeDialog.okButtonText": "OK", + "del_PE.Views.DateTimeDialog.okButtonText": "OK", "PE.Views.DateTimeDialog.textDefault": "Set as default", "PE.Views.DateTimeDialog.textFormat": "Formats", "PE.Views.DateTimeDialog.textLang": "Language", @@ -1229,7 +1229,7 @@ "PE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "PE.Views.HeaderFooterDialog.applyAllText": "Apply to all", "PE.Views.HeaderFooterDialog.applyText": "Apply", - "PE.Views.HeaderFooterDialog.cancelButtonText": "Cancel", + "del_PE.Views.HeaderFooterDialog.cancelButtonText": "Cancel", "PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master.
To change the master, click 'Apply to all' instead of 'Apply'", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Warning", "PE.Views.HeaderFooterDialog.textDateTime": "Date and time", @@ -1242,8 +1242,8 @@ "PE.Views.HeaderFooterDialog.textSlideNum": "Slide number", "PE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings", "PE.Views.HeaderFooterDialog.textUpdate": "Update automatically", - "PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", - "PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", + "del_PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", + "del_PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To", "PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Select a Place in This Document", @@ -1282,8 +1282,8 @@ "PE.Views.ImageSettings.textRotation": "Rotation", "PE.Views.ImageSettings.textSize": "Size", "PE.Views.ImageSettings.textWidth": "Width", - "PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", - "PE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "del_PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", + "del_PE.Views.ImageSettingsAdvanced.okButtonText": "OK", "PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Description", "PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", @@ -1321,9 +1321,9 @@ "PE.Views.ParagraphSettings.textAuto": "Multiple", "PE.Views.ParagraphSettings.textExact": "Exactly", "PE.Views.ParagraphSettings.txtAutoText": "Auto", - "PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", + "del_PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "del_PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", @@ -1419,8 +1419,8 @@ "PE.Views.ShapeSettings.txtNoBorders": "No Line", "PE.Views.ShapeSettings.txtPapyrus": "Papyrus", "PE.Views.ShapeSettings.txtWood": "Wood", - "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel", - "PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "del_PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel", + "del_PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", "PE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", @@ -1543,12 +1543,12 @@ "PE.Views.SlideSettings.txtLeather": "Leather", "PE.Views.SlideSettings.txtPapyrus": "Papyrus", "PE.Views.SlideSettings.txtWood": "Wood", - "PE.Views.SlideshowSettings.cancelButtonText": "Cancel", - "PE.Views.SlideshowSettings.okButtonText": "OK", + "del_PE.Views.SlideshowSettings.cancelButtonText": "Cancel", + "del_PE.Views.SlideshowSettings.okButtonText": "OK", "PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed", "PE.Views.SlideshowSettings.textTitle": "Show Settings", - "PE.Views.SlideSizeSettings.cancelButtonText": "Cancel", - "PE.Views.SlideSizeSettings.okButtonText": "OK", + "del_PE.Views.SlideSizeSettings.cancelButtonText": "Cancel", + "del_PE.Views.SlideSizeSettings.okButtonText": "OK", "PE.Views.SlideSizeSettings.strLandscape": "Landscape", "PE.Views.SlideSizeSettings.strPortrait": "Portrait", "PE.Views.SlideSizeSettings.textHeight": "Height", @@ -1629,8 +1629,8 @@ "PE.Views.TableSettings.tipRight": "Set outer right border only", "PE.Views.TableSettings.tipTop": "Set outer top border only", "PE.Views.TableSettings.txtNoBorders": "No borders", - "PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", - "PE.Views.TableSettingsAdvanced.okButtonText": "OK", + "del_PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", + "del_PE.Views.TableSettingsAdvanced.okButtonText": "OK", "PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Description", "PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", @@ -1722,13 +1722,13 @@ "PE.Views.Toolbar.textArrangeFront": "Bring To Foreground", "PE.Views.Toolbar.textBar": "Bar", "PE.Views.Toolbar.textBold": "Bold", - "PE.Views.Toolbar.textCancel": "Cancel", + "del_PE.Views.Toolbar.textCancel": "Cancel", "PE.Views.Toolbar.textCharts": "Charts", "PE.Views.Toolbar.textColumn": "Column", "PE.Views.Toolbar.textItalic": "Italic", "PE.Views.Toolbar.textLine": "Line", "PE.Views.Toolbar.textNewColor": "Custom Color", - "PE.Views.Toolbar.textOK": "OK", + "del_PE.Views.Toolbar.textOK": "OK", "PE.Views.Toolbar.textPie": "Pie", "PE.Views.Toolbar.textPoint": "XY (Scatter)", "PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom", diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 89f6338f3..bf7539fb7 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -3364,7 +3364,6 @@ define([ warnMergeLostData : 'Operation can destroy data in the selected cells.
Continue?', textWarning : 'Warning', textFontSizeErr : 'The entered value is incorrect.
Please enter a numeric value between 1 and 409', - textCancel : 'Cancel', confirmAddFontName : 'The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?', textSymbols : 'Symbols', textFraction : 'Fraction', diff --git a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js index 5c99f5f19..2e5d99884 100644 --- a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js @@ -276,7 +276,6 @@ define([ return false; }, - cancelButtonText : "Cancel", capAnd : "And", capCondition1 : "equals", capCondition10 : "does not end with", @@ -461,8 +460,6 @@ define([ return false; }, - cancelButtonText : "Cancel", - okButtonText : 'OK', txtTitle : "Top 10 AutoFilter", textType : 'Show', txtTop : 'Top', @@ -1406,13 +1403,11 @@ define([ Common.Utils.InternalSettings.set('sse-settings-size-filter-window', size); }, - okButtonText : 'Ok', btnCustomFilter : 'Custom Filter', textSelectAll : 'Select All', txtTitle : 'Filter', warnNoSelected : 'You must choose at least one value', textWarning : 'Warning', - cancelButtonText : 'Cancel', textEmptyItem : '{Blanks}', txtEmpty : 'Enter cell\'s filter', txtSortLow2High : 'Sort Lowest to Highest', diff --git a/apps/spreadsheeteditor/main/app/view/CellRangeDialog.js b/apps/spreadsheeteditor/main/app/view/CellRangeDialog.js index edc3990f6..31991991d 100644 --- a/apps/spreadsheeteditor/main/app/view/CellRangeDialog.js +++ b/apps/spreadsheeteditor/main/app/view/CellRangeDialog.js @@ -170,7 +170,6 @@ define([ }, txtTitle : 'Select Data Range', - textCancel : 'Cancel', txtEmpty : 'This field is required', txtInvalidRange: 'ERROR! Invalid cells range', errorMaxRows: 'ERROR! The maximum number of data series per chart is 255.', diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js index cb64f5a10..c31345d3e 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js @@ -1651,7 +1651,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' textYAxisTitle: 'Y Axis Title', txtEmpty: 'This field is required', textInvalidRange: 'ERROR! Invalid cells range', - cancelButtonText: 'Cancel', textTypeStyle: 'Chart Type, Style &
Data Range', textChartElementsLegend: 'Chart Elements &
Chart Legend', textLayout: 'Layout', diff --git a/apps/spreadsheeteditor/main/app/view/FieldSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/FieldSettingsDialog.js index 06a871571..5d073e6d7 100644 --- a/apps/spreadsheeteditor/main/app/view/FieldSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FieldSettingsDialog.js @@ -298,8 +298,6 @@ define([ 'text!spreadsheeteditor/main/app/template/FieldSettingsDialog.templa }, textTitle: 'Field Settings', - textCancel: 'Cancel', - textOk: 'OK', strSubtotals: 'Subtotals', strLayout: 'Layout', txtSourceName: 'Source name: ', diff --git a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js index ad4b3fb11..d3f6b5e31 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js @@ -148,8 +148,8 @@ define([ '', '
', '' ].join('') }, options); @@ -501,8 +501,6 @@ define([ textSeparator: 'Use 1000 separator', textFormat: 'Format', textSymbols: 'Symbols', - textCancel: 'Cancel', - textOk: 'OK', txtGeneral: 'General', txtNumber: 'Number', txtCustom: 'Custom', diff --git a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js index c59178d5d..415948aef 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js @@ -375,8 +375,6 @@ define([ } }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textGroupDescription: 'Select Function Group', textListDescription: 'Select Function', sDescription: 'Description', diff --git a/apps/spreadsheeteditor/main/app/view/GroupDialog.js b/apps/spreadsheeteditor/main/app/view/GroupDialog.js index 0b918f9c3..61b01e86b 100644 --- a/apps/spreadsheeteditor/main/app/view/GroupDialog.js +++ b/apps/spreadsheeteditor/main/app/view/GroupDialog.js @@ -111,8 +111,6 @@ define([ return false; }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textRows: 'Rows', textColumns: 'Columns' }, SSE.Views.GroupDialog || {})) diff --git a/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js b/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js index 5e2a3cbd6..e9fe2b9dc 100644 --- a/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js @@ -1015,8 +1015,6 @@ define([ } }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', tipFontName: 'Font', tipFontSize: 'Font size', textBold: 'Bold', diff --git a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js index 97e5054cf..fdfb9bdaf 100644 --- a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js @@ -314,7 +314,6 @@ define([ txtEmpty: 'This field is required', textInvalidRange: 'ERROR! Invalid cells range', txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"', - cancelButtonText: 'Cancel', textDefault: 'Selected range' }, SSE.Views.HyperlinkSettingsDialog || {})) }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ImageSettingsAdvanced.js index 93e88d8a1..79cb76701 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettingsAdvanced.js @@ -163,8 +163,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ImageSettingsAdvanced.temp }, textTitle: 'Image - Advanced Settings', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', diff --git a/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js b/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js index 54f6182e0..bb7193210 100644 --- a/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js +++ b/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js @@ -408,7 +408,6 @@ define([ 'text!spreadsheeteditor/main/app/template/NameManagerDlg.template', txtTitle: 'Name Manager', closeButtonText : 'Close', - okButtonText : 'Ok', textDataRange: 'Data Range', textNew: 'New', textEdit: 'Edit', diff --git a/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js b/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js index cc638c0e4..3f8aae36f 100644 --- a/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js +++ b/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js @@ -321,8 +321,6 @@ define([ txtTitleNew: 'New Name', txtTitleEdit: 'Edit Name', - cancelButtonText : 'Cancel', - okButtonText : 'Ok', textSelectData: 'Select Data', textName: 'Name', textScope: 'Scope', diff --git a/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js b/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js index 44fea2bc6..298e7af56 100644 --- a/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js +++ b/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js @@ -171,8 +171,6 @@ define([ }, txtTitle: 'Paste Name', - cancelButtonText : 'Cancel', - okButtonText : 'Ok', textNames: 'Named Ranges' }, SSE.Views.NamedRangePasteDlg || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/PageMarginsDialog.js b/apps/spreadsheeteditor/main/app/view/PageMarginsDialog.js index 2a831f4b6..456825e6c 100644 --- a/apps/spreadsheeteditor/main/app/view/PageMarginsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/PageMarginsDialog.js @@ -202,8 +202,6 @@ define([ textTop: 'Top', textLeft: 'Left', textBottom: 'Bottom', - textRight: 'Right', - cancelButtonText: 'Cancel', - okButtonText: 'Ok' + textRight: 'Right' }, SSE.Views.PageMarginsDialog || {})) }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js index a92439417..a422a6bad 100644 --- a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -779,8 +779,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced. strIndentsRightText: 'Right', strParagraphIndents: 'Indents & Spacing', strParagraphFont: 'Font', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textEffects: 'Effects', textCharacterSpacing: 'Character Spacing', strDoubleStrike: 'Double strikethrough', diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettings.js b/apps/spreadsheeteditor/main/app/view/PivotSettings.js index 24b4168f2..9e163f9e0 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettings.js @@ -646,8 +646,6 @@ define([ }, textFields: 'Select Fields', - textOK : 'OK', - textCancel : 'Cancel', textValues : 'Values', textRows : 'Rows', textColumns : 'Columns', diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js index 053887819..746500dff 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettingsAdvanced.js @@ -284,8 +284,6 @@ define([ 'text!spreadsheeteditor/main/app/template/PivotSettingsAdvanced.temp }, textTitle: 'Pivot Table - Advanced Settings', - textCancel: 'Cancel', - textOk: 'OK', strLayout: 'Name and Layout', txtName: 'Name', textGrandTotals: 'Grand Totals', diff --git a/apps/spreadsheeteditor/main/app/view/PrintSettings.js b/apps/spreadsheeteditor/main/app/view/PrintSettings.js index 59cabc3c6..e86b1de44 100644 --- a/apps/spreadsheeteditor/main/app/view/PrintSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PrintSettings.js @@ -312,7 +312,6 @@ define([ 'text!spreadsheeteditor/main/app/template/PrintSettings.template', textFitCols: 'Fit All Columns on One Page', textFitRows: 'Fit All Rows on One Page', textShowDetails: 'Show Details', - cancelButtonText: 'Cancel', textHideDetails: 'Hide Details', textPageScaling: 'Scaling', textSettings: 'Sheet Settings', diff --git a/apps/spreadsheeteditor/main/app/view/SetValueDialog.js b/apps/spreadsheeteditor/main/app/view/SetValueDialog.js index fcf7de73e..6068c2dbd 100644 --- a/apps/spreadsheeteditor/main/app/view/SetValueDialog.js +++ b/apps/spreadsheeteditor/main/app/view/SetValueDialog.js @@ -137,8 +137,6 @@ define([ return false; }, - cancelButtonText: 'Cancel', - okButtonText: 'Ok', txtMinText: 'The minimum value for this field is {0}', txtMaxText: 'The maximum value for this field is {0}' }, SSE.Views.SetValueDialog || {})) diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js index 9771c72ab..43676378c 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js @@ -787,8 +787,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ShapeSettingsAdvanced.temp textWidth: 'Width', textHeight: 'Height', textKeepRatio: 'Constant Proportions', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textTitle: 'Shape - Advanced Settings', strMargins: 'Text Padding', textRound: 'Round', diff --git a/apps/spreadsheeteditor/main/app/view/TableOptionsDialog.js b/apps/spreadsheeteditor/main/app/view/TableOptionsDialog.js index 1469500d4..5137a8005 100644 --- a/apps/spreadsheeteditor/main/app/view/TableOptionsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/TableOptionsDialog.js @@ -214,7 +214,6 @@ define([ txtTitle : 'Title', txtFormat : 'Create table', - textCancel : 'Cancel', txtEmpty : 'This field is required', txtInvalidRange: 'ERROR! Invalid cells range', errorAutoFilterDataRange: 'The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.', diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index 810f49060..4e0b8d976 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -548,8 +548,6 @@ define([ deleteRowText : 'Delete Row', deleteColumnText : 'Delete Column', deleteTableText : 'Delete Table', - textOK : 'OK', - textCancel : 'Cancel', textTemplate : 'Select From Template', textRows : 'Rows', textColumns : 'Columns', diff --git a/apps/spreadsheeteditor/main/app/view/TableSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/TableSettingsAdvanced.js index f5af1246b..e829c38c8 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettingsAdvanced.js @@ -124,8 +124,6 @@ define([ 'text!spreadsheeteditor/main/app/template/TableSettingsAdvanced.temp }, textTitle: 'Table - Advanced Settings', - cancelButtonText: 'Cancel', - okButtonText: 'Ok', textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', diff --git a/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js index b9af390e5..9d37d08cc 100644 --- a/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js @@ -111,7 +111,7 @@ define([ '
', '' ].join('') }, options); @@ -275,8 +275,6 @@ define([ }, textTitle: 'Value Field Settings', - textCancel: 'Cancel', - textOk: 'OK', txtSourceName: 'Source name: ', txtCustomName: 'Custom name', txtSummarize: 'Summarize value field by', diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index a82f58820..a60d3d4f4 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -6,7 +6,7 @@ "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", + "del_Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel", "Common.UI.ExtendedColorDialog.textCurrent": "Current", "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "New", @@ -45,8 +45,8 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", - "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", - "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "del_Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel", + "del_Common.Views.AdvancedSettingsWindow.okButtonText": "OK", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Add Comment", @@ -94,14 +94,14 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", - "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "del_Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel", + "del_Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "Common.Views.OpenDialog.cancelButtonText": "Cancel", + "del_Common.Views.OpenDialog.cancelButtonText": "Cancel", "Common.Views.OpenDialog.closeButtonText": "Close File", - "Common.Views.OpenDialog.okButtonText": "OK", + "del_Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtColon": "Colon", "Common.Views.OpenDialog.txtComma": "Comma", "Common.Views.OpenDialog.txtDelimiter": "Delimiter", @@ -116,8 +116,8 @@ "Common.Views.OpenDialog.txtTab": "Tab", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitleProtected": "Protected File", - "Common.Views.PasswordDialog.cancelButtonText": "Cancel", - "Common.Views.PasswordDialog.okButtonText": "OK", + "del_Common.Views.PasswordDialog.cancelButtonText": "Cancel", + "del_Common.Views.PasswordDialog.okButtonText": "OK", "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", "Common.Views.PasswordDialog.txtPassword": "Password", @@ -139,8 +139,8 @@ "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", "Common.Views.Protection.txtSignature": "Signature", "Common.Views.Protection.txtSignatureLine": "Add signature line", - "Common.Views.RenameDialog.cancelButtonText": "Cancel", - "Common.Views.RenameDialog.okButtonText": "OK", + "del_Common.Views.RenameDialog.cancelButtonText": "Cancel", + "del_Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "Common.Views.ReviewChanges.hintNext": "To next change", @@ -196,8 +196,8 @@ "Common.Views.SaveAsDlg.textTitle": "Folder for save", "Common.Views.SelectFileDlg.textLoading": "Loading", "Common.Views.SelectFileDlg.textTitle": "Select Data Source", - "Common.Views.SignDialog.cancelButtonText": "Cancel", - "Common.Views.SignDialog.okButtonText": "OK", + "del_Common.Views.SignDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignDialog.okButtonText": "OK", "Common.Views.SignDialog.textBold": "Bold", "Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textChange": "Change", @@ -212,8 +212,8 @@ "Common.Views.SignDialog.textValid": "Valid from %1 to %2", "Common.Views.SignDialog.tipFontName": "Font Name", "Common.Views.SignDialog.tipFontSize": "Font Size", - "Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", - "Common.Views.SignSettingsDialog.okButtonText": "OK", + "del_Common.Views.SignSettingsDialog.cancelButtonText": "Cancel", + "del_Common.Views.SignSettingsDialog.okButtonText": "OK", "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", "Common.Views.SignSettingsDialog.textInfo": "Signer Info", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", @@ -766,7 +766,7 @@ "SSE.Controllers.Toolbar.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.", "SSE.Controllers.Toolbar.textAccent": "Accents", "SSE.Controllers.Toolbar.textBracket": "Brackets", - "SSE.Controllers.Toolbar.textCancel": "Cancel", + "del_SSE.Controllers.Toolbar.textCancel": "Cancel", "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 409", "SSE.Controllers.Toolbar.textFraction": "Fractions", "SSE.Controllers.Toolbar.textFunction": "Functions", @@ -1109,8 +1109,8 @@ "SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines", "SSE.Controllers.Viewport.textHideHeadings": "Hide Headings", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", - "SSE.Views.AutoFilterDialog.cancelButtonText": "Cancel", - "SSE.Views.AutoFilterDialog.okButtonText": "OK", + "del_SSE.Views.AutoFilterDialog.cancelButtonText": "Cancel", + "del_SSE.Views.AutoFilterDialog.okButtonText": "OK", "SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", @@ -1149,7 +1149,7 @@ "SSE.Views.CellEditor.tipFormula": "Insert function", "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", "SSE.Views.CellRangeDialog.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.", - "SSE.Views.CellRangeDialog.textCancel": "Cancel", + "del_SSE.Views.CellRangeDialog.textCancel": "Cancel", "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", @@ -1206,7 +1206,7 @@ "SSE.Views.ChartSettings.textType": "Type", "SSE.Views.ChartSettings.textWidth": "Width", "SSE.Views.ChartSettings.textWinLossSpark": "Win/Loss", - "SSE.Views.ChartSettingsDlg.cancelButtonText": "Cancel", + "del_SSE.Views.ChartSettingsDlg.cancelButtonText": "Cancel", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", "SSE.Views.ChartSettingsDlg.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.", @@ -1354,7 +1354,7 @@ "SSE.Views.DataTab.tipGroup": "Group range of cells", "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", - "SSE.Views.DigitalFilterDialog.cancelButtonText": "Cancel", + "del_SSE.Views.DigitalFilterDialog.cancelButtonText": "Cancel", "SSE.Views.DigitalFilterDialog.capAnd": "And", "SSE.Views.DigitalFilterDialog.capCondition1": "equals", "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", @@ -1592,11 +1592,11 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Page Settings", - "SSE.Views.FormatSettingsDialog.textCancel": "Cancel", + "del_SSE.Views.FormatSettingsDialog.textCancel": "Cancel", "SSE.Views.FormatSettingsDialog.textCategory": "Category", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Format", - "SSE.Views.FormatSettingsDialog.textOk": "OK", + "del_SSE.Views.FormatSettingsDialog.textOk": "OK", "SSE.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator", "SSE.Views.FormatSettingsDialog.textSymbols": "Symbols", "SSE.Views.FormatSettingsDialog.textTitle": "Number Format", @@ -1622,8 +1622,8 @@ "SSE.Views.FormatSettingsDialog.txtUpto1": "Up to one digit (1/3)", "SSE.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)", "SSE.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)", - "SSE.Views.FormulaDialog.cancelButtonText": "Cancel", - "SSE.Views.FormulaDialog.okButtonText": "OK", + "del_SSE.Views.FormulaDialog.cancelButtonText": "Cancel", + "del_SSE.Views.FormulaDialog.okButtonText": "OK", "SSE.Views.FormulaDialog.sDescription": "Description", "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", "SSE.Views.FormulaDialog.textListDescription": "Select Function", @@ -1642,12 +1642,12 @@ "SSE.Views.FormulaTab.textAutomatic": "Automatic", "SSE.Views.FormulaTab.textManual": "Manual", "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculate the entire workbook", - "SSE.Views.GroupDialog.cancelButtonText": "Cancel", - "SSE.Views.GroupDialog.okButtonText": "OK", + "del_SSE.Views.GroupDialog.cancelButtonText": "Cancel", + "del_SSE.Views.GroupDialog.okButtonText": "OK", "SSE.Views.GroupDialog.textColumns": "Columns", "SSE.Views.GroupDialog.textRows": "Rows", - "SSE.Views.HeaderFooterDialog.cancelButtonText": "Cancel", - "SSE.Views.HeaderFooterDialog.okButtonText": "OK", + "del_SSE.Views.HeaderFooterDialog.cancelButtonText": "Cancel", + "del_SSE.Views.HeaderFooterDialog.okButtonText": "OK", "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins", "SSE.Views.HeaderFooterDialog.textAll": "All pages", "SSE.Views.HeaderFooterDialog.textBold": "Bold", @@ -1681,7 +1681,7 @@ "SSE.Views.HeaderFooterDialog.textUnderline": "Underline", "SSE.Views.HeaderFooterDialog.tipFontName": "Font", "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size", - "SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", + "del_SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", @@ -1718,8 +1718,8 @@ "SSE.Views.ImageSettings.textRotation": "Rotation", "SSE.Views.ImageSettings.textSize": "Size", "SSE.Views.ImageSettings.textWidth": "Width", - "SSE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", - "SSE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "del_SSE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel", + "del_SSE.Views.ImageSettingsAdvanced.okButtonText": "OK", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description", "SSE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", @@ -1759,11 +1759,11 @@ "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings", "SSE.Views.MainSettingsPrint.textSettings": "Settings for", - "SSE.Views.NamedRangeEditDlg.cancelButtonText": "Cancel", + "del_SSE.Views.NamedRangeEditDlg.cancelButtonText": "Cancel", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning", - "SSE.Views.NamedRangeEditDlg.okButtonText": "OK", + "del_SSE.Views.NamedRangeEditDlg.okButtonText": "OK", "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range", "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", @@ -1777,13 +1777,13 @@ "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", - "SSE.Views.NamedRangePasteDlg.cancelButtonText": "Cancel", - "SSE.Views.NamedRangePasteDlg.okButtonText": "OK", + "del_SSE.Views.NamedRangePasteDlg.cancelButtonText": "Cancel", + "del_SSE.Views.NamedRangePasteDlg.okButtonText": "OK", "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", "SSE.Views.NameManagerDlg.closeButtonText": "Close", "SSE.Views.NameManagerDlg.guestText": "Guest", - "SSE.Views.NameManagerDlg.okButtonText": "OK", + "del_SSE.Views.NameManagerDlg.okButtonText": "OK", "SSE.Views.NameManagerDlg.textDataRange": "Data Range", "SSE.Views.NameManagerDlg.textDelete": "Delete", "SSE.Views.NameManagerDlg.textEdit": "Edit", @@ -1801,8 +1801,8 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", - "SSE.Views.PageMarginsDialog.cancelButtonText": "Cancel", - "SSE.Views.PageMarginsDialog.okButtonText": "OK", + "del_SSE.Views.PageMarginsDialog.cancelButtonText": "Cancel", + "del_SSE.Views.PageMarginsDialog.okButtonText": "OK", "SSE.Views.PageMarginsDialog.textBottom": "Bottom", "SSE.Views.PageMarginsDialog.textLeft": "Left", "SSE.Views.PageMarginsDialog.textRight": "Right", @@ -1818,9 +1818,9 @@ "SSE.Views.ParagraphSettings.textAuto": "Multiple", "SSE.Views.ParagraphSettings.textExact": "Exactly", "SSE.Views.ParagraphSettings.txtAutoText": "Auto", - "SSE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", + "del_SSE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel", "SSE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "SSE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "del_SSE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", @@ -1861,11 +1861,11 @@ "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "SSE.Views.PivotSettings.notcriticalErrorTitle": "Warning", "SSE.Views.PivotSettings.textAdvanced": "Show advanced settings", - "SSE.Views.PivotSettings.textCancel": "Cancel", + "del_SSE.Views.PivotSettings.textCancel": "Cancel", "SSE.Views.PivotSettings.textColumns": "Columns", "SSE.Views.PivotSettings.textFields": "Select Fields", "SSE.Views.PivotSettings.textFilters": "Filters", - "SSE.Views.PivotSettings.textOK": "OK", + "del_SSE.Views.PivotSettings.textOK": "OK", "SSE.Views.PivotSettings.textRows": "Rows", "SSE.Views.PivotSettings.textValues": "Values", "SSE.Views.PivotSettings.txtAddColumn": "Add to Columns", @@ -1914,7 +1914,7 @@ "SSE.Views.PivotTable.txtSelect": "Select", "SSE.Views.PrintSettings.btnDownload": "Save & Download", "SSE.Views.PrintSettings.btnPrint": "Save & Print", - "SSE.Views.PrintSettings.cancelButtonText": "Cancel", + "del_SSE.Views.PrintSettings.cancelButtonText": "Cancel", "SSE.Views.PrintSettings.strBottom": "Bottom", "SSE.Views.PrintSettings.strLandscape": "Landscape", "SSE.Views.PrintSettings.strLeft": "Left", @@ -1958,8 +1958,8 @@ "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline Settings", "SSE.Views.RightMenu.txtTableSettings": "Table settings", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art settings", - "SSE.Views.SetValueDialog.cancelButtonText": "Cancel", - "SSE.Views.SetValueDialog.okButtonText": "OK", + "del_SSE.Views.SetValueDialog.cancelButtonText": "Cancel", + "del_SSE.Views.SetValueDialog.okButtonText": "OK", "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", "SSE.Views.ShapeSettings.strBackground": "Background color", @@ -2013,8 +2013,8 @@ "SSE.Views.ShapeSettings.txtNoBorders": "No Line", "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", "SSE.Views.ShapeSettings.txtWood": "Wood", - "SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel", - "SSE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "del_SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel", + "del_SSE.Views.ShapeSettingsAdvanced.okButtonText": "OK", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", @@ -2113,7 +2113,7 @@ "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
Select a range so that the first table row was on the same row
and the resulting table overlapped the current one.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
Select a range which does not include other tables.", "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "SSE.Views.TableOptionsDialog.textCancel": "Cancel", + "del_SSE.Views.TableOptionsDialog.textCancel": "Cancel", "SSE.Views.TableOptionsDialog.txtEmpty": "This field is required", "SSE.Views.TableOptionsDialog.txtFormat": "Create table", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", @@ -2132,7 +2132,7 @@ "SSE.Views.TableSettings.selectTableText": "Select Table", "SSE.Views.TableSettings.textAdvanced": "Show advanced settings", "SSE.Views.TableSettings.textBanded": "Banded", - "SSE.Views.TableSettings.textCancel": "Cancel", + "del_SSE.Views.TableSettings.textCancel": "Cancel", "SSE.Views.TableSettings.textColumns": "Columns", "SSE.Views.TableSettings.textConvertRange": "Convert to range", "SSE.Views.TableSettings.textEdit": "Rows & Columns", @@ -2145,7 +2145,7 @@ "SSE.Views.TableSettings.textIsLocked": "This element is being edited by another user.", "SSE.Views.TableSettings.textLast": "Last", "SSE.Views.TableSettings.textLongOperation": "Long operation", - "SSE.Views.TableSettings.textOK": "OK", + "del_SSE.Views.TableSettings.textOK": "OK", "SSE.Views.TableSettings.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", "SSE.Views.TableSettings.textResize": "Resize table", "SSE.Views.TableSettings.textRows": "Rows", @@ -2154,8 +2154,8 @@ "SSE.Views.TableSettings.textTemplate": "Select From Template", "SSE.Views.TableSettings.textTotal": "Total", "SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
Are you sure you want to continue?", - "SSE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", - "SSE.Views.TableSettingsAdvanced.okButtonText": "OK", + "del_SSE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel", + "del_SSE.Views.TableSettingsAdvanced.okButtonText": "OK", "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", "SSE.Views.TableSettingsAdvanced.textAltDescription": "Description", "SSE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", @@ -2431,8 +2431,8 @@ "SSE.Views.Toolbar.txtTime": "Time", "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", "SSE.Views.Toolbar.txtYen": "¥ Yen", - "SSE.Views.Top10FilterDialog.cancelButtonText": "Cancel", - "SSE.Views.Top10FilterDialog.okButtonText": "OK", + "del_SSE.Views.Top10FilterDialog.cancelButtonText": "Cancel", + "del_SSE.Views.Top10FilterDialog.okButtonText": "OK", "SSE.Views.Top10FilterDialog.textType": "Show", "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", "SSE.Views.Top10FilterDialog.txtItems": "Item",