diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js
index 8764f1e85..d697b4088 100644
--- a/apps/spreadsheeteditor/main/app/controller/Main.js
+++ b/apps/spreadsheeteditor/main/app/controller/Main.js
@@ -1627,6 +1627,10 @@ define([
config.msg = this.errorPasteMultiSelect;
break;
+ case Asc.c_oAscError.ID.PivotWithoutUnderlyingData:
+ config.msg = this.errorPivotWithoutUnderlying;
+ break;
+
default:
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
break;
@@ -2842,7 +2846,8 @@ define([
txtQuarters: 'Quarters',
txtYears: 'Years',
errorPivotGroup: 'Cannot group that selection.',
- errorPasteMultiSelect: 'This action cannot be done on a multiple range selection.
Select a single range and try again.'
+ errorPasteMultiSelect: 'This action cannot be done on a multiple range selection.
Select a single range and try again.',
+ errorPivotWithoutUnderlying: 'The Pivot Table report was saved without the underlying data.
Use the \'Refresh\' button to update the report.'
}
})(), SSE.Controllers.Main || {}))
});
diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json
index 2f68ecc77..f7cdd8f1d 100644
--- a/apps/spreadsheeteditor/main/locale/en.json
+++ b/apps/spreadsheeteditor/main/locale/en.json
@@ -922,6 +922,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.errorPasteMultiSelect": "This action cannot be done on a multiple range selection.
Select a single range and try again.",
+ "SSE.Controllers.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.
Use the 'Refresh' button to update the report.",
"SSE.Controllers.Print.strAllSheets": "All Sheets",
"SSE.Controllers.Print.textFirstCol": "First column",
"SSE.Controllers.Print.textFirstRow": "First row",