Merge pull request #575 from ONLYOFFICE/fix/bugfix

Fix/bugfix
This commit is contained in:
Julia Radzhabova 2020-11-19 14:11:01 +03:00 committed by GitHub
commit 34f323a672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -434,7 +434,7 @@ define([
event.preventDefault();
}
} else if (key === 'Delete') {
if (event.target.selectionStart < me.positionCaption - 1) {
if (event.target.selectionStart < me.positionCaption) {
event.preventDefault();
}
} else if (key !== 'End') {

View file

@ -1815,7 +1815,7 @@
"DE.Views.Links.capBtnInsLink": "Hyperlink",
"DE.Views.Links.confirmDeleteFootnotes": "Do you want to delete all footnotes?",
"DE.Views.Links.mniConvertNote": "Convert All Notes",
"DE.Views.Links.mniDelFootnote": "Delete All Footnotes",
"DE.Views.Links.mniDelFootnote": "Delete All Notes",
"DE.Views.Links.mniInsEndnote": "Insert Endnote",
"DE.Views.Links.mniInsFootnote": "Insert Footnote",
"DE.Views.Links.mniNoteSettings": "Notes Settings",

View file

@ -277,7 +277,7 @@ define([
error: this.textRenameError,
value: rec.get('name'),
validation: function(value) {
return value.length<=128 ? true : me.textLongName;
return value.length<128 ? true : me.textLongName;
},
handler: function(result, value) {
if (result == 'ok') {
@ -362,7 +362,7 @@ define([
textRenameLabel: 'Rename view',
textRenameError: 'View name must not be empty.',
warnDeleteView: "You are trying to delete the currently enabled view '%1'.<br>Close this view and delete it?",
textLongName: 'View name is limited to 128 characters.'
textLongName: 'Enter a name that is less than 128 characters.'
}, SSE.Views.ViewManagerDlg || {}));
});

View file

@ -2953,7 +2953,7 @@
"SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager",
"SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'.<br>Close this view and delete it?",
"SSE.Views.ViewManagerDlg.textLongName": "View name is limited to 128 characters.",
"SSE.Views.ViewManagerDlg.textLongName": "Enter a name that is less than 128 characters.",
"SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes",
"SSE.Views.ViewTab.capBtnSheetView": "Sheet View",
"SSE.Views.ViewTab.textClose": "Close",