Fix Bug 76507

This commit is contained in:
Julia.Radzhabova
2025-09-11 16:49:42 +03:00
parent c2e310ec63
commit 0f8584c230
26 changed files with 87 additions and 61 deletions

View File

@ -667,9 +667,9 @@ VE.ApplicationController = new(function(){
WarningShown = true;
common.controller.modals.showWarning({
title: me.notcriticalErrorTitle,
message: me.txtOpenWarning,
buttons: [me.txtYes, me.txtNo],
primary: me.txtYes,
message: me.txtOpenWarning.replace('%1', url || ''),
buttons: [me.txtNo, me.txtYes],
primary: me.txtNo,
callback: function (btn) {
WarningShown = false;
if (btn === me.txtYes) {
@ -973,7 +973,7 @@ VE.ApplicationController = new(function(){
errorToken: 'The document security token is not correctly formed.<br>Please contact your Document Server administrator.',
txtPressLink: 'Click the link to open it',
txtPage: 'Page',
txtOpenWarning: "Clicking this link can be harmful to your device and data.<br> Are you sure you want to continue?",
txtOpenWarning: 'Clicking this link can be harmful to your device and data.To protect you computer, click only those hyperlinks from trusted sources. This location may be unsafe:<br>%1<br>Are you sure you want to continue?',
txtYes:'Yes',
txtNo: 'No'
}

View File

@ -40,7 +40,7 @@
"VE.ApplicationController.titleLicenseNotActive": "License not active",
"VE.ApplicationController.txtClose": "Close",
"VE.ApplicationController.txtNo": "No",
"VE.ApplicationController.txtOpenWarning": "Clicking this link can be harmful to your device and data.<br> Are you sure you want to continue?",
"VE.ApplicationController.txtOpenWarning": "Clicking this link can be harmful to your device and data.To protect you computer, click only those hyperlinks from trusted sources. This location may be unsafe:<br>%1<br>Are you sure you want to continue?",
"VE.ApplicationController.txtPage": "Page",
"VE.ApplicationController.txtPressLink": "Click the link to open it",
"VE.ApplicationController.txtYes": "Yes",