@sapui5/sap.ui.export 1.112.2 → 1.113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/ui/export/.library +1 -1
- package/src/sap/ui/export/ExportBase.js +2 -1
- package/src/sap/ui/export/ExportDialog.js +9 -5
- package/src/sap/ui/export/ExportHandler.js +1 -1
- package/src/sap/ui/export/ExportUtils.js +39 -7
- package/src/sap/ui/export/PortableDocument.js +50 -31
- package/src/sap/ui/export/Spreadsheet.js +8 -6
- package/src/sap/ui/export/SpreadsheetExport.js +1 -1
- package/src/sap/ui/export/fragments/SettingsDialog.fragment.xml +2 -0
- package/src/sap/ui/export/library.js +3 -5
- package/src/sap/ui/export/messagebundle.properties +12 -6
- package/src/sap/ui/export/messagebundle_ar.properties +6 -2
- package/src/sap/ui/export/messagebundle_bg.properties +6 -2
- package/src/sap/ui/export/messagebundle_ca.properties +6 -2
- package/src/sap/ui/export/messagebundle_cs.properties +6 -2
- package/src/sap/ui/export/messagebundle_cy.properties +6 -2
- package/src/sap/ui/export/messagebundle_da.properties +6 -2
- package/src/sap/ui/export/messagebundle_de.properties +6 -2
- package/src/sap/ui/export/messagebundle_el.properties +6 -2
- package/src/sap/ui/export/messagebundle_en.properties +6 -2
- package/src/sap/ui/export/messagebundle_en_GB.properties +6 -2
- package/src/sap/ui/export/messagebundle_en_US_sappsd.properties +8 -4
- package/src/sap/ui/export/messagebundle_en_US_saprigi.properties +4 -4
- package/src/sap/ui/export/messagebundle_en_US_saptrc.properties +8 -4
- package/src/sap/ui/export/messagebundle_es.properties +6 -2
- package/src/sap/ui/export/messagebundle_es_MX.properties +6 -2
- package/src/sap/ui/export/messagebundle_et.properties +6 -2
- package/src/sap/ui/export/messagebundle_fi.properties +6 -2
- package/src/sap/ui/export/messagebundle_fr.properties +6 -2
- package/src/sap/ui/export/messagebundle_fr_CA.properties +6 -2
- package/src/sap/ui/export/messagebundle_hi.properties +6 -2
- package/src/sap/ui/export/messagebundle_hr.properties +6 -2
- package/src/sap/ui/export/messagebundle_hu.properties +6 -2
- package/src/sap/ui/export/messagebundle_id.properties +6 -2
- package/src/sap/ui/export/messagebundle_it.properties +6 -2
- package/src/sap/ui/export/messagebundle_iw.properties +6 -2
- package/src/sap/ui/export/messagebundle_ja.properties +6 -2
- package/src/sap/ui/export/messagebundle_kk.properties +6 -2
- package/src/sap/ui/export/messagebundle_ko.properties +6 -2
- package/src/sap/ui/export/messagebundle_lt.properties +6 -2
- package/src/sap/ui/export/messagebundle_lv.properties +6 -2
- package/src/sap/ui/export/messagebundle_ms.properties +6 -2
- package/src/sap/ui/export/messagebundle_nl.properties +6 -2
- package/src/sap/ui/export/messagebundle_no.properties +6 -2
- package/src/sap/ui/export/messagebundle_pl.properties +6 -2
- package/src/sap/ui/export/messagebundle_pt.properties +6 -2
- package/src/sap/ui/export/messagebundle_pt_PT.properties +6 -2
- package/src/sap/ui/export/messagebundle_ro.properties +6 -2
- package/src/sap/ui/export/messagebundle_ru.properties +6 -2
- package/src/sap/ui/export/messagebundle_sh.properties +6 -2
- package/src/sap/ui/export/messagebundle_sk.properties +6 -2
- package/src/sap/ui/export/messagebundle_sl.properties +6 -2
- package/src/sap/ui/export/messagebundle_sv.properties +6 -2
- package/src/sap/ui/export/messagebundle_th.properties +8 -4
- package/src/sap/ui/export/messagebundle_tr.properties +6 -2
- package/src/sap/ui/export/messagebundle_uk.properties +6 -2
- package/src/sap/ui/export/messagebundle_vi.properties +6 -2
- package/src/sap/ui/export/messagebundle_zh_CN.properties +6 -2
- package/src/sap/ui/export/messagebundle_zh_TW.properties +8 -4
- package/src/sap/ui/export/provider/DataProviderBase.js +18 -8
- package/src/sap/ui/export/util/Filter.js +1 -1
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @class The <code>sap.ui.export.ExportBase</code> class allows you to export table data from a UI5 application to certain formats. This class is an abstract class that requires specific implementations for each file format.
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.113.0
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -57,6 +57,7 @@ sap.ui.define([
|
|
|
57
57
|
/* Pre-process dataSource related settings */
|
|
58
58
|
if (this._mSettings.workbook) {
|
|
59
59
|
this._mSettings.workbook.hierarchyLevel = ExportUtils.getHierarchyLevelProperty(mSettings.dataSource);
|
|
60
|
+
this._mSettings.workbook.drillState = ExportUtils.getHierarchyDrillStateProperty(mSettings.dataSource);
|
|
60
61
|
}
|
|
61
62
|
}
|
|
62
63
|
});
|
|
@@ -121,13 +121,14 @@ sap.ui.define([
|
|
|
121
121
|
* @param {number} mParams.columns Amount of columns that will be exported
|
|
122
122
|
* @param {boolean} mParams.sizeLimit Indicates whether the size limit warning needs to be shown
|
|
123
123
|
* @param {boolean} mParams.cutOff Indicates whether the cut off message needs to be shown
|
|
124
|
+
* @param {String} mParams.fileType File type of the exported document
|
|
124
125
|
* @returns {Promise} Promise that gets resolved when the user wants to export, regardless of the warning
|
|
125
126
|
*/
|
|
126
127
|
function showWarningDialog(mParams) {
|
|
127
128
|
return new Promise(function(fnResolve, fnReject) {
|
|
128
129
|
|
|
129
130
|
oResourceBundlePromise.then(function(oResourceBundle) {
|
|
130
|
-
var bContinue, oWarningDialog, oWarningText, sWarningText, oNumberFormat, sRowsFormatted;
|
|
131
|
+
var bContinue, oWarningDialog, oWarningText, sWarningText, oNumberFormat, sRowsFormatted, sCellsFormatted, sCutOffFormatted, sFileTypeText;
|
|
131
132
|
|
|
132
133
|
oNumberFormat = NumberFormat.getIntegerInstance({groupingEnabled: true});
|
|
133
134
|
bContinue = false;
|
|
@@ -139,12 +140,15 @@ sap.ui.define([
|
|
|
139
140
|
sRowsFormatted = oNumberFormat.format(mParams.rows);
|
|
140
141
|
|
|
141
142
|
if (mParams.sizeLimit) {
|
|
142
|
-
|
|
143
|
+
sCellsFormatted = oNumberFormat.format(mParams.rows * mParams.columns);
|
|
144
|
+
sWarningText = oResourceBundle.getText("SIZE_WARNING_MSG", [sRowsFormatted, mParams.columns, sCellsFormatted]);
|
|
143
145
|
}
|
|
144
146
|
|
|
145
|
-
if (mParams.cutOff) {
|
|
147
|
+
if (mParams.rows > mParams.cutOff) {
|
|
148
|
+
sCutOffFormatted = oNumberFormat.format(mParams.cutOff);
|
|
146
149
|
sWarningText += sWarningText === '' ? '' : '\n\n'; // Add line breaks if there is already a message
|
|
147
|
-
|
|
150
|
+
sFileTypeText = oResourceBundle.getText(mParams.fileType + "_FILETYPE");
|
|
151
|
+
sWarningText += oResourceBundle.getText("MSG_WARNING_CUT_OFF", [sRowsFormatted, sCutOffFormatted, sFileTypeText]);
|
|
148
152
|
}
|
|
149
153
|
}
|
|
150
154
|
|
|
@@ -152,7 +156,7 @@ sap.ui.define([
|
|
|
152
156
|
text: sWarningText
|
|
153
157
|
});
|
|
154
158
|
oWarningDialog = new Dialog({
|
|
155
|
-
title: oResourceBundle.getText('
|
|
159
|
+
title: oResourceBundle.getText('WARNING_TITLE'),
|
|
156
160
|
type: DialogType.Message,
|
|
157
161
|
state: ValueState.Warning,
|
|
158
162
|
content: oWarningText,
|
|
@@ -15,7 +15,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
15
15
|
* @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from a UI5 application.
|
|
16
16
|
*
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.
|
|
18
|
+
* @version 1.113.0
|
|
19
19
|
*
|
|
20
20
|
* @since 1.102
|
|
21
21
|
* @alias sap.ui.export.ExportHandler
|
|
@@ -85,7 +85,8 @@ sap.ui.define([
|
|
|
85
85
|
],
|
|
86
86
|
fontSize: 10,
|
|
87
87
|
signature: false,
|
|
88
|
-
signatureReason: ''
|
|
88
|
+
signatureReason: '',
|
|
89
|
+
showPageNumber: true
|
|
89
90
|
};
|
|
90
91
|
|
|
91
92
|
aSupportedFormats.forEach(function(sFormat) {
|
|
@@ -122,7 +123,7 @@ sap.ui.define([
|
|
|
122
123
|
function processExportSettings(oSettings) {
|
|
123
124
|
var oFinalSettings = {};
|
|
124
125
|
|
|
125
|
-
['fileName', 'fileType', 'paperSize', 'orientation', 'splitCells', 'includeFilterSettings', 'addDateTime', 'doEnableAccessibility', 'fitToPage', 'fontSize', 'signature', 'signatureReason', 'pdfArchive', 'destination'].forEach(function(sProperty) {
|
|
126
|
+
['fileName', 'fileType', 'paperSize', 'orientation', 'splitCells', 'includeFilterSettings', 'addDateTime', 'doEnableAccessibility', 'fitToPage', 'fontSize', 'signature', 'signatureReason', 'pdfArchive', 'destination', 'showPageNumber'].forEach(function(sProperty) {
|
|
126
127
|
oFinalSettings[sProperty] = oSettings[sProperty];
|
|
127
128
|
});
|
|
128
129
|
|
|
@@ -133,7 +134,7 @@ sap.ui.define([
|
|
|
133
134
|
* @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
134
135
|
*
|
|
135
136
|
* @author SAP SE
|
|
136
|
-
* @version 1.
|
|
137
|
+
* @version 1.113.0
|
|
137
138
|
*
|
|
138
139
|
* @since 1.59
|
|
139
140
|
* @alias sap.ui.export.ExportUtils
|
|
@@ -355,6 +356,10 @@ sap.ui.define([
|
|
|
355
356
|
}).then(function(oDialog) {
|
|
356
357
|
oExportSettingsDialog = oDialog;
|
|
357
358
|
|
|
359
|
+
if (oExportCapabilities.PDF && !oExportCapabilities.PDF["HeaderFooter"]) {
|
|
360
|
+
oExportConfigModel.oData.showPageNumber = false;
|
|
361
|
+
}
|
|
362
|
+
|
|
358
363
|
oExportSettingsDialog.setModel(oExportConfigModel);
|
|
359
364
|
oExportSettingsDialog.setModel(new ResourceModel({
|
|
360
365
|
bundle: oResourceBundle
|
|
@@ -1138,7 +1143,7 @@ sap.ui.define([
|
|
|
1138
1143
|
*
|
|
1139
1144
|
* @param {object} oContext Context object
|
|
1140
1145
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1141
|
-
* @param {string} [oContext.version] Application version (default: "1.
|
|
1146
|
+
* @param {string} [oContext.version] Application version (default: "1.113.0")
|
|
1142
1147
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1143
1148
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1144
1149
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -1344,10 +1349,10 @@ sap.ui.define([
|
|
|
1344
1349
|
},
|
|
1345
1350
|
|
|
1346
1351
|
/**
|
|
1347
|
-
* Returns the "hierarchy-level-for" annotated property of the bound entity.
|
|
1352
|
+
* Returns the "hierarchy-level-for" / "DistanceFromRootProperty" annotated property of the bound entity.
|
|
1348
1353
|
*
|
|
1349
1354
|
* @param {sap.ui.model.odata.v2.ODataTreeBinding|sap.ui.model.odata.v4.ODataListBinding} oBinding Binding that is used to evaluate the property name
|
|
1350
|
-
* @returns {string|undefined} Name of the property which is annotated with "hierarchy-level-for"
|
|
1355
|
+
* @returns {string|undefined} Name of the property which is annotated with "hierarchy-level-for" or "DistanceFromRootProperty"
|
|
1351
1356
|
*
|
|
1352
1357
|
* @static
|
|
1353
1358
|
* @private
|
|
@@ -1365,7 +1370,34 @@ sap.ui.define([
|
|
|
1365
1370
|
|
|
1366
1371
|
if (oBinding.isA('sap.ui.model.odata.v4.ODataListBinding')) {
|
|
1367
1372
|
var oAggregationInfo = oBinding.getAggregation(/*bVerbose*/true);
|
|
1368
|
-
return oAggregationInfo
|
|
1373
|
+
return oAggregationInfo && oAggregationInfo.$DistanceFromRootProperty;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
return undefined;
|
|
1377
|
+
},
|
|
1378
|
+
|
|
1379
|
+
/**
|
|
1380
|
+
* Returns the "hierarchy-drill-state-for" / "DrillStateProperty" annotated property of the bound entity.
|
|
1381
|
+
*
|
|
1382
|
+
* @param {sap.ui.model.odata.v2.ODataTreeBinding|sap.ui.model.odata.v4.ODataListBinding} oBinding Binding that is used to evaluate the property name
|
|
1383
|
+
* @returns {string|undefined} Name of the property which is annotated with "hierarchy-drill-state-for" or "DrillStateProperty"
|
|
1384
|
+
*
|
|
1385
|
+
* @static
|
|
1386
|
+
* @private
|
|
1387
|
+
*/
|
|
1388
|
+
getHierarchyDrillStateProperty: function(oBinding) {
|
|
1389
|
+
if (!oBinding || typeof oBinding.isA !== 'function') {
|
|
1390
|
+
return undefined;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
/* Check for ODataTreeBinding#getTreeAnnotation since this is not a public function */
|
|
1394
|
+
if (oBinding.isA('sap.ui.model.odata.v2.ODataTreeBinding') && typeof oBinding.getTreeAnnotation === 'function') {
|
|
1395
|
+
return oBinding.getTreeAnnotation('hierarchy-drill-state-for');
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
if (oBinding.isA('sap.ui.model.odata.v4.ODataListBinding')) {
|
|
1399
|
+
var oAggregationInfo = oBinding.getAggregation(/*bVerbose*/true);
|
|
1400
|
+
return oAggregationInfo && oAggregationInfo.$DrillStateProperty;
|
|
1369
1401
|
}
|
|
1370
1402
|
|
|
1371
1403
|
return undefined;
|
|
@@ -8,16 +8,18 @@ sap.ui.define([
|
|
|
8
8
|
'sap/ui/core/Core',
|
|
9
9
|
'sap/ui/export/ExportBase',
|
|
10
10
|
'sap/ui/export/ExportUtils',
|
|
11
|
+
'sap/ui/export/library',
|
|
11
12
|
'sap/ui/model/odata/v4/ODataModel',
|
|
12
|
-
'./ExportDialog'
|
|
13
|
-
|
|
13
|
+
'./ExportDialog',
|
|
14
|
+
'sap/m/BusyDialog'
|
|
15
|
+
], function(Log, Core, ExportBase, ExportUtils, Library, ODataModel, ExportDialog, BusyDialog) {
|
|
14
16
|
'use strict';
|
|
15
17
|
|
|
16
18
|
/**
|
|
17
19
|
* @class The <code>sap.ui.export.PortableDocument</code> class allows you to export table data from a UI5 application to a Portable Document Format (*.PDF) file.
|
|
18
20
|
*
|
|
19
21
|
* @author SAP SE
|
|
20
|
-
* @version 1.
|
|
22
|
+
* @version 1.113.0
|
|
21
23
|
*
|
|
22
24
|
* @since 1.96
|
|
23
25
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -30,7 +32,7 @@ sap.ui.define([
|
|
|
30
32
|
ExportBase.call(this, mSettings, mCapabilities);
|
|
31
33
|
|
|
32
34
|
/* Only apply supported properties */
|
|
33
|
-
['paperSize', 'orientation', 'font', 'fontSize', 'doEnableAccessibility', 'fitToPage', 'signature', 'signatureReason', 'pdfArchive'].forEach(function(sProperty) {
|
|
35
|
+
['paperSize', 'orientation', 'font', 'fontSize', 'doEnableAccessibility', 'fitToPage', 'signature', 'signatureReason', 'pdfArchive', 'showPageNumber'].forEach(function(sProperty) {
|
|
34
36
|
if (typeof mSettings[sProperty] !== 'undefined') {
|
|
35
37
|
this._mSettings[sProperty] = mSettings[sProperty];
|
|
36
38
|
}
|
|
@@ -186,13 +188,21 @@ sap.ui.define([
|
|
|
186
188
|
"TableColumns": []
|
|
187
189
|
};
|
|
188
190
|
|
|
189
|
-
if (oWorkbook.hierarchyLevel && oWorkbook.drillState
|
|
191
|
+
if (oWorkbook.hierarchyLevel && oWorkbook.drillState) {
|
|
190
192
|
oDocumentDescription.Hierarchy = {
|
|
191
193
|
"DistanceFromRootElement": oWorkbook.hierarchyLevel,
|
|
192
194
|
"DrillStateElement": oWorkbook.drillState
|
|
193
195
|
};
|
|
194
196
|
}
|
|
195
197
|
|
|
198
|
+
if (mSettings.showPageNumber) {
|
|
199
|
+
oDocumentDescription["Footer"] = {
|
|
200
|
+
"Center": {
|
|
201
|
+
"Type": "PAGENUM"
|
|
202
|
+
}
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
|
|
196
206
|
oMetaInfo = oWorkbook.context.metainfo;
|
|
197
207
|
|
|
198
208
|
/* Add metaInfo to CoverPage */
|
|
@@ -377,7 +387,7 @@ sap.ui.define([
|
|
|
377
387
|
var oBusyDialog;
|
|
378
388
|
var oResourceBundle = Core.getLibraryResourceBundle('sap.ui.export');
|
|
379
389
|
|
|
380
|
-
oBusyDialog = new
|
|
390
|
+
oBusyDialog = new BusyDialog('PDFExportBusyDialog', {
|
|
381
391
|
title: oResourceBundle.getText('PROGRESS_TITLE'),
|
|
382
392
|
text: oResourceBundle.getText('PDF_GENERATION_IN_PROGRESS'),
|
|
383
393
|
showCancelButton: true,
|
|
@@ -394,31 +404,40 @@ sap.ui.define([
|
|
|
394
404
|
oDocumentDescription = that._createDocumentDescription(mSettings);
|
|
395
405
|
oBusyDialog.open();
|
|
396
406
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
return oBusyDialog && that.sendRequest(mSettings.dataSource.dataUrl, sDocumentDescriptionId).then(function(response) {
|
|
404
|
-
ExportUtils.saveAsFile(response, mSettings.fileName);
|
|
405
|
-
}).catch(function(oError) {
|
|
406
|
-
|
|
407
|
-
/* Handle ignore Promise rejection due to cancelation by the user */
|
|
408
|
-
if (oError === null) {
|
|
409
|
-
return;
|
|
410
|
-
}
|
|
407
|
+
//mParams for WarningDialog handling
|
|
408
|
+
var mParams = {
|
|
409
|
+
rows: mSettings.dataSource.count,
|
|
410
|
+
cutOff: this._mCapabilities.ResultSizeDefault,
|
|
411
|
+
fileType: Library.FileType.PDF
|
|
412
|
+
};
|
|
411
413
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
414
|
+
var oWarningPromise = Promise.resolve();
|
|
415
|
+
|
|
416
|
+
if (mParams.rows > mParams.cutOff) {
|
|
417
|
+
oWarningPromise = ExportDialog.showWarningDialog(mParams);
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
return oWarningPromise.then(function() {
|
|
421
|
+
return that.postDocumentDescription(oDocumentDescription, mSettings.dataSource);
|
|
422
|
+
}).then(function(sDocumentDescriptionId) {
|
|
423
|
+
return oBusyDialog && that.sendRequest(mSettings.dataSource.dataUrl, sDocumentDescriptionId);
|
|
424
|
+
}).then(function(response) {
|
|
425
|
+
ExportUtils.saveAsFile(response, mSettings.fileName);
|
|
426
|
+
}).catch(function(oError) {
|
|
427
|
+
/* Handle ignore Promise rejection due to cancellation by the user */
|
|
428
|
+
if (!oError) {
|
|
429
|
+
return;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
oError.text()
|
|
433
|
+
.then(function(sError) {
|
|
434
|
+
ExportDialog.showErrorMessage(sError);
|
|
435
|
+
})
|
|
436
|
+
.catch(function() {
|
|
437
|
+
ExportDialog.showErrorMessage(oResourceBundle.getText('PDF_GENERIC_ERROR'));
|
|
438
|
+
});
|
|
439
|
+
}).finally(function() {
|
|
440
|
+
oBusyDialog && oBusyDialog.close();
|
|
422
441
|
});
|
|
423
442
|
};
|
|
424
443
|
|
|
@@ -505,4 +524,4 @@ sap.ui.define([
|
|
|
505
524
|
};
|
|
506
525
|
|
|
507
526
|
return PortableDocument;
|
|
508
|
-
});
|
|
527
|
+
});
|
|
@@ -10,9 +10,10 @@ sap.ui.define([
|
|
|
10
10
|
'sap/ui/Device',
|
|
11
11
|
'sap/ui/export/SpreadsheetExport',
|
|
12
12
|
'sap/base/Log',
|
|
13
|
-
'sap/ui/export/ExportUtils'
|
|
13
|
+
'sap/ui/export/ExportUtils',
|
|
14
|
+
'sap/ui/export/library'
|
|
14
15
|
],
|
|
15
|
-
function(Core, ExportDialog, ExportBase, Device, SpreadsheetExport, Log, ExportUtils) {
|
|
16
|
+
function(Core, ExportDialog, ExportBase, Device, SpreadsheetExport, Log, ExportUtils, Library) {
|
|
16
17
|
'use strict';
|
|
17
18
|
|
|
18
19
|
// eslint-disable-next-line
|
|
@@ -83,7 +84,7 @@ sap.ui.define([
|
|
|
83
84
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
84
85
|
* <ul>
|
|
85
86
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
86
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.
|
|
87
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.113.0")</li>
|
|
87
88
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
88
89
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
89
90
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -166,7 +167,7 @@ sap.ui.define([
|
|
|
166
167
|
* columns: aColumns,
|
|
167
168
|
* context: {
|
|
168
169
|
* application: 'Debug Test Application',
|
|
169
|
-
* version: '1.
|
|
170
|
+
* version: '1.113.0',
|
|
170
171
|
* title: 'Some random title',
|
|
171
172
|
* modifiedBy: 'John Doe',
|
|
172
173
|
* metaSheetName: 'Custom metadata',
|
|
@@ -278,7 +279,7 @@ sap.ui.define([
|
|
|
278
279
|
* @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
279
280
|
*
|
|
280
281
|
* @author SAP SE
|
|
281
|
-
* @version 1.
|
|
282
|
+
* @version 1.113.0
|
|
282
283
|
*
|
|
283
284
|
* @since 1.50
|
|
284
285
|
* @alias sap.ui.export.Spreadsheet
|
|
@@ -752,7 +753,8 @@ sap.ui.define([
|
|
|
752
753
|
rows: nRows,
|
|
753
754
|
columns: nColumns,
|
|
754
755
|
sizeLimit: nRows * nColumns > nSizeLimit,
|
|
755
|
-
cutOff:
|
|
756
|
+
cutOff: MAX_ROWS,
|
|
757
|
+
fileType: Library.FileType.XLSX
|
|
756
758
|
};
|
|
757
759
|
|
|
758
760
|
// Show warning and execute
|
|
@@ -21,7 +21,7 @@ sap.ui.define(['sap/base/Log', 'sap/ui/export/ExportUtils'], function(Log, Expor
|
|
|
21
21
|
* Utility class to perform spreadsheet export.
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.113.0
|
|
25
25
|
*
|
|
26
26
|
* @alias sap.ui.export.SpreadsheetExport
|
|
27
27
|
* @private
|
|
@@ -48,6 +48,8 @@
|
|
|
48
48
|
|
|
49
49
|
<Label id="exportSettingsDialog-signatureReasonLabel" text="{i18n>SIGNATURE_REASON}" labelFor="exportSettingsDialog-signatureReason" visible="{/signature}"/>
|
|
50
50
|
<Input id="exportSettingsDialog-signatureReason" value="{/signatureReason}" class="sapUiTinyMarginBottom" visible="{/signature}"/>
|
|
51
|
+
|
|
52
|
+
<CheckBox id="exportSettingsDialog-showPageNumber" enabled="{/capabilities/PDF/HeaderFooter}" selected="{/showPageNumber}" text="{i18n>SHOW_PAGENUM}" tooltip="{i18n>TOOLTIP_PDF_PAGENUMBER}" visible="{path:'/fileType', formatter: '.isPDF'}"/>
|
|
51
53
|
</VBox>
|
|
52
54
|
</content>
|
|
53
55
|
<beginButton>
|
|
@@ -6,9 +6,7 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* Initialization Code and shared classes of library sap.ui.export.
|
|
8
8
|
*/
|
|
9
|
-
sap.ui.define([
|
|
10
|
-
'jquery.sap.global', 'sap/ui/core/library'
|
|
11
|
-
], function(jQuery, library1) {
|
|
9
|
+
sap.ui.define([], function() {
|
|
12
10
|
"use strict";
|
|
13
11
|
|
|
14
12
|
/**
|
|
@@ -17,7 +15,7 @@ sap.ui.define([
|
|
|
17
15
|
* @namespace
|
|
18
16
|
* @alias sap.ui.export
|
|
19
17
|
* @author SAP SE
|
|
20
|
-
* @version 1.
|
|
18
|
+
* @version 1.113.0
|
|
21
19
|
* @public
|
|
22
20
|
*/
|
|
23
21
|
|
|
@@ -33,7 +31,7 @@ sap.ui.define([
|
|
|
33
31
|
interfaces: [],
|
|
34
32
|
controls: [],
|
|
35
33
|
elements: [],
|
|
36
|
-
version: "1.
|
|
34
|
+
version: "1.113.0"
|
|
37
35
|
});
|
|
38
36
|
|
|
39
37
|
|
|
@@ -13,20 +13,20 @@ EXPORT_BUTTON=Export
|
|
|
13
13
|
#XHED: Default title text for the export progress dialog
|
|
14
14
|
PROGRESS_TITLE=Export Document
|
|
15
15
|
|
|
16
|
+
#XHED: Default title text for the export warning dialog
|
|
17
|
+
WARNING_TITLE=Warning
|
|
18
|
+
|
|
16
19
|
#XMSG: Message text informing that exported data is fetched from the server
|
|
17
20
|
PROGRESS_FETCHING_MSG=Fetching data from server...
|
|
18
21
|
|
|
19
22
|
#XHED: Default title text for the export progress error message box
|
|
20
23
|
PROGRESS_ERROR_TITLE=Error
|
|
21
24
|
|
|
22
|
-
#XMSG: Message text informing that an error has occurred during export
|
|
23
|
-
PROGRESS_ERROR_MSG=The following error has occurred during export:
|
|
24
|
-
|
|
25
25
|
#XMSG: Message text informing that the exported file is too big
|
|
26
|
-
SIZE_WARNING_MSG=The
|
|
26
|
+
SIZE_WARNING_MSG=The document contains {0} rows and {1} column(s) ({2} cells).\n Documents with more than 2,000,000 cells might be too large to process.\n Export anyway?
|
|
27
27
|
|
|
28
|
-
#XMSG: Message text informing that the amount of items is too large to be exported in a single spreadsheet and the export is being cut off to maximum allowed amount
|
|
29
|
-
MSG_WARNING_CUT_OFF=The
|
|
28
|
+
#XMSG: Message text informing that the amount of items is too large to be exported in a single spreadsheet/PDF and the export is being cut off to maximum allowed amount depending on the file type.
|
|
29
|
+
MSG_WARNING_CUT_OFF=The document contains {0} rows.\n Only {1} rows can be exported in a single {2} file.\n Export anyway?
|
|
30
30
|
|
|
31
31
|
#XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
|
|
32
32
|
MSG_ERROR_OUT_OF_MEMORY=The export process ran out of memory and was terminated.\n Please adjust your column or filter settings to select a smaller number of cells.
|
|
@@ -109,6 +109,9 @@ FITTOPAGE=Fit To Page
|
|
|
109
109
|
#XFLD: Enable Signature
|
|
110
110
|
ENABLE_SIGNATURE=Enable Signature
|
|
111
111
|
|
|
112
|
+
#XFLD: Show Pagenumber
|
|
113
|
+
SHOW_PAGENUM=Show Page Number
|
|
114
|
+
|
|
112
115
|
#XFLD: Reason for the Signature
|
|
113
116
|
SIGNATURE_REASON=Reason
|
|
114
117
|
|
|
@@ -142,6 +145,9 @@ PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
|
142
145
|
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
143
146
|
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible. If this option is unavailable, it is not supported by the back-end service.
|
|
144
147
|
|
|
148
|
+
#XMSG: Tooltip that explains the show pagenumber checkbox and why it might be disabled
|
|
149
|
+
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page. If this option is unavailable, it is not supported by the back-end service.
|
|
150
|
+
|
|
145
151
|
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
146
152
|
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature. If this option is unavailable, it is not supported by the back-end service.
|
|
147
153
|
|
|
@@ -7,12 +7,12 @@ EXPORT_BUTTON=\u062A\u0635\u062F\u064A\u0631
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_TITLE=\u062A\u0635\u062F\u064A\u0631 \u0627\u0644\u0645\u0633\u062A\u0646\u062F
|
|
9
9
|
|
|
10
|
+
WARNING_TITLE=Warning
|
|
11
|
+
|
|
10
12
|
PROGRESS_FETCHING_MSG=\u062C\u0627\u0631\u064D \u0627\u0633\u062A\u062F\u0639\u0627\u0621 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0645\u0646 \u0627\u0644\u062E\u0627\u062F\u0645...
|
|
11
13
|
|
|
12
14
|
PROGRESS_ERROR_TITLE=\u062E\u0637\u0623
|
|
13
15
|
|
|
14
|
-
PROGRESS_ERROR_MSG=\u062D\u062F\u062B \u0627\u0644\u062E\u0637\u0623 \u0627\u0644\u062A\u0627\u0644\u064A \u0623\u062B\u0646\u0627\u0621 \u0627\u0644\u062A\u0635\u062F\u064A\u0631\:
|
|
15
|
-
|
|
16
16
|
SIZE_WARNING_MSG=\u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u062A\u0635\u062F\u064A\u0631\u0647 \u0628\u0639\u062F\u062F {0} \u0645\u0646 \u0627\u0644\u0635\u0641\u0648\u0641 \u0648{1} \u0645\u0646 \u0627\u0644\u0623\u0639\u0645\u062F\u0629 \u0643\u0628\u064A\u0631 \u062C\u062F\u064B\u0627.\n\u0648\u0644\u0630\u0627\u060C \u0641\u0631\u0628\u0645\u0627 \u062A\u0645 \u062A\u062C\u0627\u0648\u0632 \u0633\u0639\u0629 \u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u062A\u0637\u0628\u064A\u0642.\n\u0642\u0645 \u0628\u0627\u0644\u0625\u0644\u063A\u0627\u0621 \u0648\u062A\u062D\u062F\u064A\u062F \u0645\u062C\u0645\u0648\u0639\u0629 \u0628\u064A\u0627\u0646\u0627\u062A \u0623\u0635\u063A\u0631 \u0644\u0644\u062A\u0635\u062F\u064A\u0631.
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=\u062A\u062C\u0627\u0648\u0632 \u0639\u062F\u062F \u0627\u0644\u0635\u0641\u0648\u0641 ({0}) \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0639\u062F\u062F \u0627\u0644\u0635\u0641\u0648\u0641 \u0627\u0644\u062A\u064A \u064A\u0645\u0643\u0646\u0643 \u062A\u0635\u062F\u064A\u0631\u0647\u0627 \u0644\u0643\u0644 \u062C\u062F\u0648\u0644 \u0628\u064A\u0627\u0646\u0627\u062A (1,048,576).\n\u0641\u064A \u062D\u0627\u0644\u0629 \u0627\u0644\u0645\u062A\u0627\u0628\u0639\u0629\u060C \u0633\u064A\u062A\u0645 \u0642\u0637\u0639 \u0627\u0644\u062A\u0635\u062F\u064A\u0631 \u0644\u0645\u0637\u0627\u0628\u0642\u0629 \u0623\u0642\u0635\u0649 \u0639\u062F\u062F.
|
|
@@ -71,6 +71,8 @@ FITTOPAGE=\u0627\u062D\u062A\u0648\u0627\u0621 \u0636\u0645\u0646 \u0627\u0644\u
|
|
|
71
71
|
|
|
72
72
|
ENABLE_SIGNATURE=\u062A\u0645\u0643\u064A\u0646 \u0627\u0644\u062A\u0648\u0642\u064A\u0639
|
|
73
73
|
|
|
74
|
+
SHOW_PAGENUM=\u0625\u0638\u0647\u0627\u0631 \u0631\u0642\u0645 \u0627\u0644\u0635\u0641\u062D\u0629
|
|
75
|
+
|
|
74
76
|
SIGNATURE_REASON=\u0627\u0644\u0633\u0628\u0628
|
|
75
77
|
|
|
76
78
|
PDF_GENERATION_IN_PROGRESS=\u064A\u062A\u0645 \u0625\u0646\u0634\u0627\u0621 PDF
|
|
@@ -93,6 +95,8 @@ PDF_FILETYPE=\u062A\u0646\u0633\u064A\u0642 \u0627\u0644\u0645\u0633\u062A\u0646
|
|
|
93
95
|
|
|
94
96
|
TOOLTIP_PDF_ACCESSIBILITY=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u0645\u0643\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064A\u0647. \u0625\u0630\u0627 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0627\u0644\u062E\u064A\u0627\u0631 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631\u060C \u0641\u0647\u0630\u0627 \u064A\u0639\u0646\u064A \u0623\u0646\u0647 \u0644\u0627 \u062A\u062F\u0639\u0645\u0647 \u062E\u062F\u0645\u0629 \u0627\u0644\u0646\u0638\u0627\u0645 \u0627\u0644\u062E\u0644\u0641\u064A.
|
|
95
97
|
|
|
98
|
+
TOOLTIP_PDF_PAGENUMBER=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0623\u0631\u0642\u0627\u0645 \u0635\u0641\u062D\u0627\u062A \u0641\u064A \u062A\u0630\u064A\u064A\u0644 \u0643\u0644 \u0635\u0641\u062D\u0629. \u0625\u0630\u0627 \u0644\u0645 \u064A\u0643\u0646 \u0647\u0630\u0627 \u0627\u0644\u062E\u064A\u0627\u0631 \u0645\u062A\u0648\u0641\u0631\u064B\u0627\u060C \u0641\u0644\u0646 \u064A\u0643\u0648\u0646 \u0645\u062F\u0639\u0648\u0645\u064B\u0627 \u0645\u0646 \u0642\u0628\u0644 \u062E\u062F\u0645\u0629 \u0627\u0644\u0646\u0638\u0627\u0645 \u0627\u0644\u062E\u0644\u0641\u064A.
|
|
99
|
+
|
|
96
100
|
TOOLTIP_PDF_SIGNATURE=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u0648\u0642\u0651\u0639\u064B\u0627 \u0628\u062A\u0648\u0642\u064A\u0639 \u0631\u0642\u0645\u064A. \u0625\u0630\u0627 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0627\u0644\u062E\u064A\u0627\u0631 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631\u060C \u0641\u0647\u0630\u0627 \u064A\u0639\u0646\u064A \u0623\u0646\u0647 \u0644\u0627 \u062A\u062F\u0639\u0645\u0647 \u062E\u062F\u0645\u0629 \u0627\u0644\u0646\u0638\u0627\u0645 \u0627\u0644\u062E\u0644\u0641\u064A.
|
|
97
101
|
|
|
98
102
|
TOOLTIP_FITTOPAGE=\u0633\u064A\u0643\u0648\u0646 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u062D\u062A\u0648\u0649 \u064A\u062A\u0646\u0627\u0633\u0628 \u0645\u0639 \u062D\u062C\u0645 \u0627\u0644\u0635\u0641\u062D\u0629. \u0625\u0630\u0627 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0627\u0644\u062E\u064A\u0627\u0631 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631\u060C \u0641\u0647\u0630\u0627 \u064A\u0639\u0646\u064A \u0623\u0646\u0647 \u0644\u0627 \u062A\u062F\u0639\u0645\u0647 \u062E\u062F\u0645\u0629 \u0627\u0644\u0646\u0638\u0627\u0645 \u0627\u0644\u062E\u0644\u0641\u064A.
|
|
@@ -7,12 +7,12 @@ EXPORT_BUTTON=\u0415\u043A\u0441\u043F\u043E\u0440\u0442
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_TITLE=\u0415\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442
|
|
9
9
|
|
|
10
|
+
WARNING_TITLE=Warning
|
|
11
|
+
|
|
10
12
|
PROGRESS_FETCHING_MSG=\u0412\u0437\u0435\u043C\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438\u0442\u0435 \u043E\u0442 \u0441\u044A\u0440\u0432\u044A\u0440\u0430...
|
|
11
13
|
|
|
12
14
|
PROGRESS_ERROR_TITLE=\u0413\u0440\u0435\u0448\u043A\u0430
|
|
13
15
|
|
|
14
|
-
PROGRESS_ERROR_MSG=\u041F\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0435\u043A\u0441\u043F\u043E\u0440\u0442 \u0432\u044A\u0437\u043D\u0438\u043A\u043D\u0430 \u0441\u043B\u0435\u0434\u043D\u0430\u0442\u0430 \u0433\u0440\u0435\u0448\u043A\u0430\:
|
|
15
|
-
|
|
16
16
|
SIZE_WARNING_MSG=E\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0441 {0} \u0440\u0435\u0434\u0430 \u0438 {1} \u043A\u043E\u043B\u043E\u043D\u0438 \u0435 \u043F\u0440\u0435\u043A\u0430\u043B\u0435\u043D\u043E \u0433\u043E\u043B\u044F\u043C.\n\u0412\u044A\u0437\u043C\u043E\u0436\u043D\u043E \u0435 \u043A\u0430\u043F\u0430\u0446\u0438\u0442\u0435\u0442\u044A\u0442 \u043D\u0430 \u043F\u0430\u043C\u0435\u0442\u0442\u0430 \u043D\u0430 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435\u0442\u043E \u0434\u0430 \u0435 \u043D\u0430\u0434\u0445\u0432\u044A\u0440\u043B\u0435\u043D.\n\u041E\u0442\u043C\u0435\u043D\u0435\u0442\u0435 \u0438 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043F\u043E-\u043C\u0430\u043B\u044A\u043A \u043D\u0430\u0431\u043E\u0440 \u043E\u0442 \u0434\u0430\u043D\u043D\u0438 \u0437\u0430 \u0435\u043A\u0441\u043F\u043E\u0440\u0442.
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=\u0411\u0440\u043E\u044F\u0442 \u043D\u0430 \u0440\u0435\u0434\u043E\u0432\u0435\u0442\u0435 ({0}) \u043D\u0430\u0434\u0445\u0432\u044A\u0440\u043B\u044F \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C\u0430, \u043A\u043E\u0439\u0442\u043E \u043C\u043E\u0436\u0435 \u0434\u0430 \u0435\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0432 \u0435\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u0430 (1,048,576).\n\u0410\u043A\u043E \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435, \u0435\u043A\u0441\u043F\u043E\u0440\u0442\u044A\u0442 \u0449\u0435 \u0431\u044A\u0434\u0435 \u0441\u044A\u043A\u0440\u0430\u0442\u0435\u043D, \u0442\u0430\u043A\u0430 \u0447\u0435 \u0434\u0430 \u043D\u0435 \u043D\u0430\u0434\u0445\u0432\u044A\u0440\u043B\u044F \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C\u0430.
|
|
@@ -71,6 +71,8 @@ FITTOPAGE=\u041D\u0430\u043F\u0430\u0441\u0432\u0430\u043D\u0435 \u043A\u044A\u0
|
|
|
71
71
|
|
|
72
72
|
ENABLE_SIGNATURE=\u0410\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043F\u043E\u0434\u043F\u0438\u0441
|
|
73
73
|
|
|
74
|
+
SHOW_PAGENUM=\u041F\u043E\u043A\u0430\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u043D\u043E\u043C\u0435\u0440 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430
|
|
75
|
+
|
|
74
76
|
SIGNATURE_REASON=\u041F\u0440\u0438\u0447\u0438\u043D\u0430
|
|
75
77
|
|
|
76
78
|
PDF_GENERATION_IN_PROGRESS=PDF \u0441\u0435 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430
|
|
@@ -93,6 +95,8 @@ PDF_FILETYPE=\u041F\u0440\u0435\u043D\u043E\u0441\u0438\u043C \u0434\u043E\u043A
|
|
|
93
95
|
|
|
94
96
|
TOOLTIP_PDF_ACCESSIBILITY=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0431\u044A\u0434\u0435 \u0434\u043E\u0441\u0442\u044A\u043F\u0435\u043D. \u0410\u043A\u043E \u0442\u0430\u0437\u0438 \u043E\u043F\u0446\u0438\u044F \u043B\u0438\u043F\u0441\u0432\u0430, \u0442\u044F \u043D\u0435 \u0441\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u043E\u0442 \u0431\u0435\u043A\u0435\u043D\u0434 \u0443\u0441\u043B\u0443\u0433\u0430\u0442\u0430.
|
|
95
97
|
|
|
98
|
+
TOOLTIP_PDF_PAGENUMBER=\u0414\u0435\u0444\u0438\u043D\u0438\u0440\u0430 \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 \u043D\u043E\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u0432 \u0434\u043E\u043B\u043D\u0438\u044F \u043A\u043E\u043B\u043E\u043D\u0442\u0438\u0442\u0443\u043B \u043D\u0430 \u0432\u0441\u044F\u043A\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430. \u0410\u043A\u043E \u0442\u0430\u0437\u0438 \u043E\u043F\u0446\u0438\u044F \u043D\u0435 \u0435 \u043D\u0430\u043B\u0438\u0447\u043D\u0430, \u0437\u043D\u0430\u0447\u0438 \u043D\u0435 \u0441\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u043E\u0442 \u0431\u0435\u043A\u0435\u043D\u0434 \u0443\u0441\u043B\u0443\u0433\u0430\u0442\u0430.
|
|
99
|
+
|
|
96
100
|
TOOLTIP_PDF_SIGNATURE=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0431\u044A\u0434\u0435 \u043F\u043E\u0434\u043F\u0438\u0441\u0430\u043D \u0441 \u0435\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u0435\u043D \u043F\u043E\u0434\u043F\u0438\u0441. \u0410\u043A\u043E \u0442\u0430\u0437\u0438 \u043E\u043F\u0446\u0438\u044F \u043B\u0438\u043F\u0441\u0432\u0430, \u0442\u044F \u043D\u0435 \u0441\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u043E\u0442 \u0431\u0435\u043A\u0435\u043D\u0434 \u0443\u0441\u043B\u0443\u0433\u0430\u0442\u0430.
|
|
97
101
|
|
|
98
102
|
TOOLTIP_FITTOPAGE=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0438\u043C\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435, \u0441\u044A\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0430\u0449\u043E \u043D\u0430 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430. \u0410\u043A\u043E \u0442\u0430\u0437\u0438 \u043E\u043F\u0446\u0438\u044F \u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u044A\u043F\u043D\u0430, \u0442\u044F \u043D\u0435 \u0441\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u043E\u0442 \u0443\u0441\u043B\u0443\u0433\u0430\u0442\u0430 \u0432 \u0431\u0435\u043A\u0435\u043D\u0434.
|
|
@@ -7,12 +7,12 @@ EXPORT_BUTTON=Exportar
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_TITLE=Document d\u2019exportaci\u00F3
|
|
9
9
|
|
|
10
|
+
WARNING_TITLE=Warning
|
|
11
|
+
|
|
10
12
|
PROGRESS_FETCHING_MSG=Sol\u00B7licitant dades del servidor...
|
|
11
13
|
|
|
12
14
|
PROGRESS_ERROR_TITLE=Error
|
|
13
15
|
|
|
14
|
-
PROGRESS_ERROR_MSG=S\u2019ha produ\u00EFt el seg\u00FCent error durant l\u2019exportaci\u00F3\:
|
|
15
|
-
|
|
16
16
|
SIZE_WARNING_MSG=El document exportat amb {0} l\u00EDnies y {1} columnes \u00E9s massa gran.\nPot ser que s\u2019hagi superat la capacitat de mem\u00F2ria de l\u2019aplicaci\u00F3.\nCancel\u00B7leu i seleccioneu un conjunt de dades m\u00E9s petit per a l\u2019exportaci\u00F3.
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=La quantitat de files ({0}) supera la quantitat m\u00E0xima de files que podeu exportar per full de c\u00E0lcul (1.048.576).\nSi continueu, l''exportaci\u00F3 es tallar\u00E0 per a qu\u00E8 coincideixi amb la quantitat m\u00E0xima.
|
|
@@ -71,6 +71,8 @@ FITTOPAGE=Adaptar a la p\u00E0gina
|
|
|
71
71
|
|
|
72
72
|
ENABLE_SIGNATURE=Activar signatura
|
|
73
73
|
|
|
74
|
+
SHOW_PAGENUM=Mostrar n\u00FAmero de p\u00E0gina
|
|
75
|
+
|
|
74
76
|
SIGNATURE_REASON=Motiu
|
|
75
77
|
|
|
76
78
|
PDF_GENERATION_IN_PROGRESS=S'est\u00E0 generant el PDF
|
|
@@ -93,6 +95,8 @@ PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
|
93
95
|
|
|
94
96
|
TOOLTIP_PDF_ACCESSIBILITY=Defineix si el document generat \u00E9s accessible. Si aquesta opci\u00F3 no est\u00E0 disponible, el servei back end no l\u2019admet.
|
|
95
97
|
|
|
98
|
+
TOOLTIP_PDF_PAGENUMBER=Defineix si el document generat cont\u00E9 n\u00FAmeros de p\u00E0gina al peu de p\u00E0gina de cada p\u00E0gina. Si aquesta opci\u00F3 no est\u00E0 disponible, el servei back end no l'admet.
|
|
99
|
+
|
|
96
100
|
TOOLTIP_PDF_SIGNATURE=Defineix si el document generat est\u00E0 signat de forma digital. Si aquesta opci\u00F3 no est\u00E0 disponible, el servei back end no l\u2019admet.
|
|
97
101
|
|
|
98
102
|
TOOLTIP_FITTOPAGE=El document generat tindr\u00E0 un contingut que s'ajusta a la mida de la p\u00E0gina. Si aquesta opci\u00F3 no est\u00E0 disponible, no \u00E9s compatible amb el servei de back end.
|
|
@@ -7,12 +7,12 @@ EXPORT_BUTTON=Exportovat
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_TITLE=Exportovat dokument
|
|
9
9
|
|
|
10
|
+
WARNING_TITLE=Warning
|
|
11
|
+
|
|
10
12
|
PROGRESS_FETCHING_MSG=Na\u010D\u00EDt\u00E1n\u00ED dat ze serveru...
|
|
11
13
|
|
|
12
14
|
PROGRESS_ERROR_TITLE=Chyba
|
|
13
15
|
|
|
14
|
-
PROGRESS_ERROR_MSG=P\u0159i exportu do\u0161lo k n\u00E1sleduj\u00EDc\u00ED chyb\u011B\:
|
|
15
|
-
|
|
16
16
|
SIZE_WARNING_MSG=Exportovan\u00FD dokument s {0} \u0159\u00E1dky a {1} sloupci je p\u0159\u00EDli\u0161 velk\u00FD.\nM\u016F\u017Ee b\u00FDt p\u0159ekro\u010Dena kapacita pam\u011Bti aplikace.\nProve\u010Fte zru\u0161en\u00ED a vyberte pro export men\u0161\u00ED mno\u017Einu dat.
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=Po\u010Det \u0159\u00E1dek ({0}) p\u0159ekra\u010Duje maxim\u00E1ln\u00ED po\u010Det \u0159\u00E1dek, kter\u00FD m\u016F\u017Eete exportovat na kalkula\u010Dn\u00ED tabulku (1,048,576).\nBudete-li pokra\u010Dovat, bude export o\u0159\u00EDznut, aby vyhovoval maxim\u00E1ln\u00EDmu po\u010Dtu.
|
|
@@ -71,6 +71,8 @@ FITTOPAGE=\u00DAprava podle strany
|
|
|
71
71
|
|
|
72
72
|
ENABLE_SIGNATURE=Aktivovat podpis
|
|
73
73
|
|
|
74
|
+
SHOW_PAGENUM=Zobrazit \u010D\u00EDsla stran
|
|
75
|
+
|
|
74
76
|
SIGNATURE_REASON=D\u016Fvod
|
|
75
77
|
|
|
76
78
|
PDF_GENERATION_IN_PROGRESS=PDF se pr\u00E1v\u011B generuje
|
|
@@ -93,6 +95,8 @@ PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
|
93
95
|
|
|
94
96
|
TOOLTIP_PDF_ACCESSIBILITY=Definuje, zda je vygenerovan\u00FD dokument p\u0159\u00EDstupn\u00FD. Je-li tato mo\u017Enost nedostupn\u00E1, nen\u00ED podporov\u00E1na backendovou slu\u017Ebou.
|
|
95
97
|
|
|
98
|
+
TOOLTIP_PDF_PAGENUMBER=Ur\u010Duje, zda generovan\u00FD dokument obsahuje \u010D\u00EDsla str\u00E1nek v pati\u010Dce ka\u017Ed\u00E9 str\u00E1nky. Pokud tato mo\u017Enost nen\u00ED k dispozici, nen\u00ED podporov\u00E1na back-endovou slu\u017Ebou.
|
|
99
|
+
|
|
96
100
|
TOOLTIP_PDF_SIGNATURE=Definuje, zda je vygenerovan\u00FD dokument podeps\u00E1n digit\u00E1ln\u00EDm podpisem. Je-li tato mo\u017Enost nedostupn\u00E1, nen\u00ED podporov\u00E1na backendovou slu\u017Ebou.
|
|
97
101
|
|
|
98
102
|
TOOLTIP_FITTOPAGE=Generovan\u00FD dokument bude m\u00EDt obsah, kter\u00FD odpov\u00EDd\u00E1 velikosti str\u00E1nky. Nen\u00ED-li tato mo\u017Enost dostupn\u00E1, nen\u00ED podporov\u00E1na backendovou slu\u017Ebou.
|
|
@@ -7,12 +7,12 @@ EXPORT_BUTTON=Allgludo
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_TITLE=Allgludo'r Ddogfen
|
|
9
9
|
|
|
10
|
+
WARNING_TITLE=Warning
|
|
11
|
+
|
|
10
12
|
PROGRESS_FETCHING_MSG=Wrthi'n cyrchu data o'r gweinydd...
|
|
11
13
|
|
|
12
14
|
PROGRESS_ERROR_TITLE=Gwall
|
|
13
15
|
|
|
14
|
-
PROGRESS_ERROR_MSG=Digwyddodd y gwall canlynol wrth allgludo\:
|
|
15
|
-
|
|
16
16
|
SIZE_WARNING_MSG=Mae''r ddogfen sydd wedi''i hallgludo \u00E2 {0} o resi a {1} o golofnau yn rhy fawr. Mae''n bosib eich bod wedi mynd dros gapasiti cof y rhaglen.\nDylech ganslo a dewis set ddata lai ar gyfer yr allgludo.
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=Mae nifer y rhesi ({0}) yn uwch na''r nifer uchaf o resi y gallwch eu hallgludo fesul taenlen (1,048,576).\nOs ydych yn bwrw ymlaen, bydd yr allgludo''n gorffen pan fydd yn cyrraedd yr uchafswm.
|
|
@@ -71,6 +71,8 @@ FITTOPAGE=Ffitio i'r Dudalen
|
|
|
71
71
|
|
|
72
72
|
ENABLE_SIGNATURE=Galluogi Llofnod
|
|
73
73
|
|
|
74
|
+
SHOW_PAGENUM=Dangos Rhif y Dudalen
|
|
75
|
+
|
|
74
76
|
SIGNATURE_REASON=Rheswm
|
|
75
77
|
|
|
76
78
|
PDF_GENERATION_IN_PROGRESS=Mae'r PDF yn cael ei gynhyrchu
|
|
@@ -93,6 +95,8 @@ PDF_FILETYPE=Fformat Dogfen Gludadwy (*.pdf)
|
|
|
93
95
|
|
|
94
96
|
TOOLTIP_PDF_ACCESSIBILITY=Diffinio a yw'r ddogfen sydd wedi'i chreu ar gael yn hwylus. Os nad yw'r opsiwn hwn ar gael, ni fydd yn gydnaws \u00E2'r gwasanaeth cefn.
|
|
95
97
|
|
|
98
|
+
TOOLTIP_PDF_PAGENUMBER=Diffinio a yw'r ddogfen sydd wedi'i chreu yn cynnwys rhifau tudalennau yn nhroedyn pob tudalen. Os nad yw'r opsiwn hwn ar gael, ni fydd yn gydnaws \u00E2'r gwasanaeth cefn.
|
|
99
|
+
|
|
96
100
|
TOOLTIP_PDF_SIGNATURE=Diffinio a yw'r ddogfen sydd wedi'i chreu wedi'i llofnodi \u00E2 llofnod digidol. Os nad yw'r opsiwn hwn ar gael, ni fydd yn gydnaws \u00E2'r gwasanaeth cefn.
|
|
97
101
|
|
|
98
102
|
TOOLTIP_FITTOPAGE=Bydd gan y ddogfen sydd wedi'i chreu gynnwys sy'n ffitio i faint y dudalen. Os nad yw'r opsiwn hwn ar gael, ni fydd y gwasanaeth cefn yn gallu delio \u00E2 hyn.
|