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