@sapui5/sap.ui.export 1.96.32 → 1.96.34
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 +1 -1
- package/src/sap/ui/export/ExportUtils.js +2 -2
- package/src/sap/ui/export/PortableDocument.js +1 -1
- package/src/sap/ui/export/Spreadsheet.js +3 -3
- package/src/sap/ui/export/SpreadsheetExport.js +1 -1
- package/src/sap/ui/export/library.js +2 -2
- package/src/sap/ui/export/messagebundle_en_US_saptrc.properties +52 -25
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ sap.ui.define([
|
|
|
15
15
|
* @constructor The <code>sap.ui.export.ExportBase</code> class allows you to export table data from a UI5 application to a Portable Document Format (*.PDF) file.
|
|
16
16
|
*
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.96.
|
|
18
|
+
* @version 1.96.34
|
|
19
19
|
*
|
|
20
20
|
* @since 1.96
|
|
21
21
|
* @name sap.ui.export.ExportBase
|
|
@@ -93,7 +93,7 @@ sap.ui.define([
|
|
|
93
93
|
* Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
94
94
|
*
|
|
95
95
|
* @author SAP SE
|
|
96
|
-
* @version 1.96.
|
|
96
|
+
* @version 1.96.34
|
|
97
97
|
*
|
|
98
98
|
* @since 1.59
|
|
99
99
|
* @name sap.ui.export.ExportUtils
|
|
@@ -912,7 +912,7 @@ sap.ui.define([
|
|
|
912
912
|
*
|
|
913
913
|
* @param {Object} oContext Context object
|
|
914
914
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
915
|
-
* @param {string} [oContext.version] Application version (default: "1.96.
|
|
915
|
+
* @param {string} [oContext.version] Application version (default: "1.96.34")
|
|
916
916
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
917
917
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
918
918
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
* @constructor 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.
|
|
17
17
|
*
|
|
18
18
|
* @author SAP SE
|
|
19
|
-
* @version 1.96.
|
|
19
|
+
* @version 1.96.34
|
|
20
20
|
*
|
|
21
21
|
* @since 1.96
|
|
22
22
|
* @name sap.ui.export.PortableDocument
|
|
@@ -82,7 +82,7 @@ sap.ui.define([
|
|
|
82
82
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
83
83
|
* <ul>
|
|
84
84
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
85
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.96.
|
|
85
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.96.34")</li>
|
|
86
86
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
87
87
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
88
88
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -165,7 +165,7 @@ sap.ui.define([
|
|
|
165
165
|
* columns: aColumns,
|
|
166
166
|
* context: {
|
|
167
167
|
* application: 'Debug Test Application',
|
|
168
|
-
* version: '1.96.
|
|
168
|
+
* version: '1.96.34',
|
|
169
169
|
* title: 'Some random title',
|
|
170
170
|
* modifiedBy: 'John Doe',
|
|
171
171
|
* metaSheetName: 'Custom metadata',
|
|
@@ -277,7 +277,7 @@ sap.ui.define([
|
|
|
277
277
|
* @constructor The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
278
278
|
*
|
|
279
279
|
* @author SAP SE
|
|
280
|
-
* @version 1.96.
|
|
280
|
+
* @version 1.96.34
|
|
281
281
|
*
|
|
282
282
|
* @since 1.50
|
|
283
283
|
* @name sap.ui.export.Spreadsheet
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @namespace
|
|
18
18
|
* @name sap.ui.export
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.96.
|
|
20
|
+
* @version 1.96.34
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
23
|
|
|
@@ -33,7 +33,7 @@ sap.ui.define([
|
|
|
33
33
|
interfaces: [],
|
|
34
34
|
controls: [],
|
|
35
35
|
elements: [],
|
|
36
|
-
version: "1.96.
|
|
36
|
+
version: "1.96.34"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
|
|
@@ -1,50 +1,77 @@
|
|
|
1
|
+
#This is the resource bundle for the SAPUI5 sap.ui.export library
|
|
2
|
+
#
|
|
1
3
|
|
|
2
|
-
|
|
4
|
+
#XBUT: Cancel button in the dialog
|
|
5
|
+
CANCEL_BUTTON=I46Xctecach/er07Ufu5tA_Cancel
|
|
3
6
|
|
|
4
|
-
|
|
7
|
+
#XBUT: Export button in the dialog. The meaning is: "Continue" but the first character should not be the same as by "Cancel"
|
|
8
|
+
EXPORT_BUTTON=BMyoZ31TjllRYzwoBnpxEA_Export
|
|
5
9
|
|
|
6
|
-
|
|
10
|
+
#XHED: Default title text for the export progress dialog
|
|
11
|
+
PROGRESS_TITLE=mWaCkqoYuETxERCMPDHYqA_Export Document
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
#XMSG: Message text informing that exported data is fetched from the server
|
|
14
|
+
PROGRESS_FETCHING_MSG=Ost6FT9ZrLoicOSAYc4lgw_Fetching data from server..
|
|
9
15
|
|
|
10
|
-
|
|
16
|
+
#XHED: Default title text for the export progress error message box
|
|
17
|
+
PROGRESS_ERROR_TITLE=Cyoy9G8bJf8XDHjczQ/w0Q_Export Error
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
#XMSG: Message text informing that an error has occurred during export
|
|
20
|
+
PROGRESS_ERROR_MSG=JRWYc6tT1pDCjc3q6HxP4A_The following error has occurred during export\:
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
#XMSG: Message text informing that the exported file is too big
|
|
23
|
+
SIZE_WARNING_MSG=kyx+9ngNx3cAJ/MFTa3wfA_The exported document with {0} rows and {1} columns is too big.\n The memory capacity of the application might be exceeded.\n Cancel and select a smaller data set for the export.
|
|
15
24
|
|
|
16
|
-
|
|
25
|
+
#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 of 1,048,576.
|
|
26
|
+
MSG_WARNING_CUT_OFF=f+zexV9DI2kW+OXTjekaBQ_The number of {0} rows exceeds the maximum number of 1,048,576 rows you can export per spreadsheet.\n If you proceed, the export will be cut off to match the maxium number.
|
|
17
27
|
|
|
18
|
-
|
|
28
|
+
#XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
|
|
29
|
+
MSG_ERROR_OUT_OF_MEMORY=FWuPVnBaclAIp2abvLdoeA_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.
|
|
19
30
|
|
|
20
|
-
|
|
31
|
+
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
32
|
+
PROGRESS_ERROR_DEFAULT=FiNBKvVTGcnKwMGqJ8D3LA_Unknown error
|
|
21
33
|
|
|
22
|
-
|
|
34
|
+
#XHED: Default title text for the export settings dialog
|
|
35
|
+
EXPORT_SETTINGS_TITLE=4DxgUzqU6zoRzpJI0QgtFQ_Export As
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
#XFLD: File name
|
|
38
|
+
FILE_NAME=7K7gkISMACQHHN6v74be4w_File Name
|
|
25
39
|
|
|
26
|
-
|
|
40
|
+
#XFLD: Select format
|
|
41
|
+
SELECT_FORMAT=m5Lk9Ean4RJ//Bvoe/mz7w_Select Format
|
|
27
42
|
|
|
28
|
-
|
|
43
|
+
#XFLD: Split cells with multiple values
|
|
44
|
+
SPLIT_CELLS=qJcmpMhb9ZpUtN413e1aHA_Split cells with multiple values
|
|
29
45
|
|
|
30
|
-
|
|
46
|
+
#XFLD: Include filter settings
|
|
47
|
+
INCLUDE_FILTER_SETTINGS=a2Qalp1ZeYMoOlqZ8cIHYA_Include filter setting
|
|
31
48
|
|
|
32
|
-
|
|
49
|
+
#XHED: Header of the filter sheet
|
|
50
|
+
FILTER_HEADER=F3tzGlZUXScmibdiYFR59w_Filter
|
|
33
51
|
|
|
34
|
-
|
|
52
|
+
#XFLD: Add current date and time to the file name
|
|
53
|
+
ADD_DATE_TIME=uLkkPwG8DatT3SwWrjMyFw_Add current date and time to the file name
|
|
35
54
|
|
|
36
|
-
|
|
55
|
+
#XLST: Microsoft Excel Workbook file type config for spreadsheet export
|
|
56
|
+
XLSX_FILETYPE=Fz8/Ng1sQugzPl8CmqLqTg_Microsoft Excel Workbook (*.xlsx)
|
|
37
57
|
|
|
38
|
-
|
|
58
|
+
#XMSG: File name warning text
|
|
59
|
+
FILENAME_WARNING=PpNPDJJ0DF33x6GQW0ACiQ_The file name you entered exceeds 100 characters. This may prevent the spreadsheet from opening correctly.
|
|
39
60
|
|
|
40
|
-
|
|
61
|
+
#XMSG: File name error text
|
|
62
|
+
FILENAME_ERROR=4t5+VF3xJH8cTzVkqUULkA_You cannot use any of the following characters in a file name\: \\ / \: * ? " < > |
|
|
41
63
|
|
|
42
|
-
|
|
64
|
+
#XMSG: Message text informing that exported file is being created
|
|
65
|
+
PROGRESS_BUNDLE_MSG=lVDa3uCU/uhaCvTjUDVljQ_Generating file
|
|
43
66
|
|
|
44
|
-
|
|
67
|
+
#XMSG: Message text informing that the exported file size cannot be predicted
|
|
68
|
+
NO_COUNT_WARNING_MSG=oEhYstUMAb6htu9TTpHfAw_There is no count provided in the export configuration. \nThe total number of exported rows cannot be predicted and might exceed the memory capacity of the application. \nPlease do not proceed unless you are sure that the current filter settings do not result in a large amount of data.
|
|
45
69
|
|
|
46
|
-
|
|
70
|
+
#XTIT: Title of the XLSX document if no title is defined in SpreadSheet settings
|
|
71
|
+
XLSX_DEFAULT_TITLE=STcyE9ZjkItDm8SfODceSw_SAPUI5 Export
|
|
47
72
|
|
|
48
|
-
|
|
73
|
+
#XTIT,30: Default label of the data sheet - use less than 31 characters!
|
|
74
|
+
XLSX_DEFAULT_SHEETNAME=s67aiVtseH/rLnukFFcn1w_SAPUI5 Export
|
|
49
75
|
|
|
50
|
-
|
|
76
|
+
#XLST: Portable Document Format type config for PDF export
|
|
77
|
+
PDF_FILETYPE=hsvKW2qCWCgEQln8jZhlkg_Portable Document Format (*.pdf)
|