Merge pull request #2160 from ONLYOFFICE/fix/bugfix

[SSE] For Bug 60301
This commit is contained in:
Julia Radzhabova 2022-12-22 18:34:36 +03:00 committed by GitHub
commit 51d187bc25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View file

@ -1213,6 +1213,9 @@ define([
case Asc.c_oAscError.ID.ComboSeriesError:
msg = me.errorComboSeries;
break;
case Asc.c_oAscError.ID.MaxDataPointsError:
msg = me.errorMaxPoints;
break;
}
Common.UI.warning({
msg: msg,
@ -5392,7 +5395,8 @@ define([
textIndicator: 'Indicators',
textRating: 'Ratings',
txtLockSort: 'Data is found next to your selection, but you do not have sufficient permissions to change those cells.<br>Do you wish to continue with the current selection?',
textRecentlyUsed: 'Recently Used'
textRecentlyUsed: 'Recently Used',
errorMaxPoints: 'The maximum number of points in series per chart is 4096.'
}, SSE.Controllers.Toolbar || {}));
});

View file

@ -1695,6 +1695,7 @@
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table style Medium",
"SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.<br>Are you sure you want to continue?",
"SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. <br>Are you sure you want to continue?",
"SSE.Controllers.Toolbar.errorMaxPoints": "The maximum number of points in series per chart is 4096.",
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
"SSE.Controllers.Viewport.textFreezePanesShadow": "Show Frozen Panes Shadow",
"SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar",

View file

@ -1695,6 +1695,7 @@
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Стиль таблицы: средний",
"SSE.Controllers.Toolbar.warnLongOperation": "Для завершения операции, которую вы собираетесь выполнить, может потребоваться довольно много времени.<br>Вы действительно хотите продолжить?",
"SSE.Controllers.Toolbar.warnMergeLostData": "В объединенной ячейке останутся только данные из левой верхней ячейки.<br>Вы действительно хотите продолжить?",
"SSE.Controllers.Toolbar.errorMaxPoints": "Максимальное число точек в серии для диаграммы составляет 4096.",
"SSE.Controllers.Viewport.textFreezePanes": "Закрепить области",
"SSE.Controllers.Viewport.textFreezePanesShadow": "Показывать тень для закрепленных областей",
"SSE.Controllers.Viewport.textHideFBar": "Скрыть строку формул",