[DE] Fix translation

This commit is contained in:
Julia Radzhabova 2022-12-06 13:29:15 +03:00
parent 9815364c8f
commit efa7c5e0f7
3 changed files with 5 additions and 3 deletions

View file

@ -138,10 +138,10 @@ define([
props = me.api.asc_getDocumentProtection(); props = me.api.asc_getDocumentProtection();
if (props && props.asc_getIsPassword()) { if (props && props.asc_getIsPassword()) {
var win = new Common.Views.OpenDialog({ var win = new Common.Views.OpenDialog({
title: me.view.txtWBUnlockTitle, title: me.view.txtUnlockTitle,
closable: true, closable: true,
type: Common.Utils.importTextType.DRM, type: Common.Utils.importTextType.DRM,
txtOpenFile: me.view.txtWBUnlockDescription, txtOpenFile: me.view.txtDocUnlockDescription,
validatePwd: false, validatePwd: false,
maxPasswordLength: 15, maxPasswordLength: 15,
handler: function (result, value) { handler: function (result, value) {

View file

@ -141,7 +141,8 @@ define([
txtDocProtectedComment: 'Document is protected.<br>You may only insert comments to this document.', txtDocProtectedComment: 'Document is protected.<br>You may only insert comments to this document.',
txtDocProtectedForms: 'Document is protected.<br>You may only fill in forms in this document.', txtDocProtectedForms: 'Document is protected.<br>You may only fill in forms in this document.',
hintProtectDoc: 'Protect document', hintProtectDoc: 'Protect document',
txtDocUnlockDescription: 'Enter a password to unprotect document' txtDocUnlockDescription: 'Enter a password to unprotect document',
txtUnlockTitle: 'Unprotect Document'
} }
}()), DE.Views.DocProtection || {})); }()), DE.Views.DocProtection || {}));
}); });

View file

@ -1632,6 +1632,7 @@
"DE.Views.DocProtection.txtDocProtectedTrack": "Document is protected.<br>You may edit this document, but all changes will be tracked.", "DE.Views.DocProtection.txtDocProtectedTrack": "Document is protected.<br>You may edit this document, but all changes will be tracked.",
"DE.Views.DocProtection.txtDocProtectedView": "Document is protected.<br>You may only view this document.", "DE.Views.DocProtection.txtDocProtectedView": "Document is protected.<br>You may only view this document.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document",
"DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document",
"DE.Views.DocProtection.txtProtectDoc": "Protect Document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document",
"DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.aboveText": "Above",
"DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.addCommentText": "Add comment",