From 0800af0484c921a3926676ef8ed2f626cc8f1312 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 29 Jun 2022 18:21:21 +0300 Subject: [PATCH] [SSE] Limit for cell watches --- apps/spreadsheeteditor/main/app/controller/Main.js | 5 +++-- apps/spreadsheeteditor/main/locale/en.json | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 111e44062..938646c09 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -2347,7 +2347,7 @@ define([ } else if (id == Asc.c_oAscConfirm.ConfirmAddCellWatches) { Common.UI.warning({ title: this.notcriticalErrorTitle, - msg: Common.Utils.String.format(this.confirmAddCellWatches, data), + msg: (data>Asc.c_nAscMaxAddCellWatchesCount) ? Common.Utils.String.format(this.confirmAddCellWatchesMax, Asc.c_nAscMaxAddCellWatchesCount) : Common.Utils.String.format(this.confirmAddCellWatches, data), buttons: ['yes', 'no'], primary: 'yes', callback: _.bind(function(btn) { @@ -3611,7 +3611,8 @@ define([ errorCannotUseCommandProtectedSheet: 'You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password.', textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?', textRememberMacros: 'Remember my choice for all macros', - confirmAddCellWatches: 'This action will add {0} cell watches.
Do you want to continue?' + confirmAddCellWatches: 'This action will add {0} cell watches.
Do you want to continue?', + confirmAddCellWatchesMax: 'This action will add only {0} cell watches by memory save reason. Do you want to continue?' } })(), SSE.Controllers.Main || {})) diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 9f3ffba6c..f83552b51 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1106,6 +1106,7 @@ "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", + "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason. Do you want to continue?", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", "SSE.Controllers.Print.textFirstRow": "First row",