@sapui5/sap.ui.export 1.120.0 → 1.120.2
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/ExportHandler.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 +6 -5
- package/src/sap/ui/export/SpreadsheetExport.js +1 -1
- package/src/sap/ui/export/js/XLSXBuilder.js +1 -1
- package/src/sap/ui/export/js/XLSXBuilder.js.map +1 -1
- package/src/sap/ui/export/library.js +2 -2
- package/src/sap/ui/export/messagebundle_en.properties +70 -0
- package/src/sap/ui/export/provider/DataProviderBase.js +1 -1
- package/src/sap/ui/export/util/Filter.js +1 -1
|
@@ -15,7 +15,7 @@ sap.ui.define(['sap/ui/core/library'], function(library1) {
|
|
|
15
15
|
* @namespace
|
|
16
16
|
* @alias sap.ui.export
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.120.
|
|
18
|
+
* @version 1.120.2
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
21
|
|
|
@@ -31,7 +31,7 @@ sap.ui.define(['sap/ui/core/library'], function(library1) {
|
|
|
31
31
|
interfaces: [],
|
|
32
32
|
controls: [],
|
|
33
33
|
elements: [],
|
|
34
|
-
version: "1.120.
|
|
34
|
+
version: "1.120.2"
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
|
|
@@ -1,136 +1,206 @@
|
|
|
1
|
+
#This is the resource bundle for the SAPUI5 sap.ui.export library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XBUT: Cancel button in the dialog
|
|
2
5
|
CANCEL_BUTTON=Cancel
|
|
3
6
|
|
|
7
|
+
#XBUT: Close button in the dialog
|
|
4
8
|
CLOSE_BUTTON=Close
|
|
5
9
|
|
|
10
|
+
#XBUT: Export button in the dialog. The meaning is: "Continue" but the first character should not be the same as by "Cancel"
|
|
6
11
|
EXPORT_BUTTON=Export
|
|
7
12
|
|
|
13
|
+
#XHED: Default title text for the export progress dialog
|
|
8
14
|
PROGRESS_TITLE=Export Document
|
|
9
15
|
|
|
16
|
+
#XHED: Default title text for the export warning dialog
|
|
10
17
|
WARNING_TITLE=Warning
|
|
11
18
|
|
|
19
|
+
#XMSG: Message text informing that exported data is fetched from the server
|
|
12
20
|
PROGRESS_FETCHING_MSG=Fetching data from server...
|
|
13
21
|
|
|
22
|
+
#XHED: Default title text for the export progress error message box
|
|
14
23
|
PROGRESS_ERROR_TITLE=Error
|
|
15
24
|
|
|
25
|
+
#XMSG: Message text informing that the exported file is too big
|
|
16
26
|
MSG_WARNING_CELL_COUNT=The document contains {0} rows and {1} column(s) ({2} cells).
|
|
17
27
|
|
|
28
|
+
#XMSG: Part of a message text that informs about the file specific cell limit for exporting
|
|
18
29
|
MSG_WARNING_CELL_LIMIT=Documents with more than {0} cells might be too large to process.
|
|
19
30
|
|
|
31
|
+
#XMSG: Part of a message text that informs about the number of rows which will be exported
|
|
20
32
|
MSG_WARNING_ROW_COUNT=The document contains {0} rows.
|
|
21
33
|
|
|
34
|
+
#XMSG: Part of a message text that contains information about the file specific export limit - Placeholder 1 references the limit and placeholder 2 references the file type
|
|
22
35
|
MSG_WARNING_ROW_LIMIT=Only {0} rows can be exported in a single {1} file.
|
|
23
36
|
|
|
37
|
+
#XMSG: Part of a message text that will be used when the number of rows is unknown
|
|
24
38
|
MSG_WARNING_COUNT_UNKNOWN=The document contains an unknown number of rows.
|
|
25
39
|
|
|
40
|
+
#XMSG: Part of a message text that gives advice on how to proceed
|
|
26
41
|
MSG_WARNING_ADVICE=Please do not proceed unless you are sure that the current filter settings will not result in a large amount of data, as the file might be too large to process.
|
|
27
42
|
|
|
43
|
+
#XMSG: Last sentence of a warning message to ask the user if he/she still wants to export
|
|
28
44
|
MSG_WARNING_EXPORT_ANYWAY=Export anyway?
|
|
29
45
|
|
|
46
|
+
#XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
|
|
30
47
|
MSG_ERROR_OUT_OF_MEMORY=The export process ran out of memory and was terminated.\nPlease adjust your column or filter settings to select a smaller number of cells.
|
|
31
48
|
|
|
49
|
+
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
32
50
|
PROGRESS_ERROR_DEFAULT=Unknown error
|
|
33
51
|
|
|
52
|
+
#XHED: Default title text for the export settings dialog
|
|
34
53
|
EXPORT_SETTINGS_TITLE=Export As
|
|
35
54
|
|
|
55
|
+
#XFLD: Label for File Name input field
|
|
36
56
|
FILE_NAME=File Name
|
|
37
57
|
|
|
58
|
+
#XFLD: Label for the file format Select control
|
|
38
59
|
SELECT_FORMAT=Format
|
|
39
60
|
|
|
61
|
+
#XFLD: Split cells with multiple values
|
|
40
62
|
SPLIT_CELLS=Split cells with multiple values
|
|
41
63
|
|
|
64
|
+
#XFLD: Include filter settings
|
|
42
65
|
INCLUDE_FILTER_SETTINGS=Include filter settings
|
|
43
66
|
|
|
67
|
+
#XFLD: Techincal Information
|
|
44
68
|
TECHNICAL_INFORMATION=Technical Information
|
|
45
69
|
|
|
70
|
+
#XFLD: User Information
|
|
46
71
|
USER_NAME=User
|
|
47
72
|
|
|
73
|
+
#XFLD: Creation time
|
|
48
74
|
CREATED_TIME=Creation Time
|
|
49
75
|
|
|
76
|
+
#XFLD: Archive format
|
|
50
77
|
ARCHIVE_FORMAT=Archive Format
|
|
51
78
|
|
|
79
|
+
#XHED: Header of the filter sheet
|
|
52
80
|
FILTER_HEADER=Filter
|
|
53
81
|
|
|
82
|
+
#XFLD: Add current date and time to the file name
|
|
54
83
|
ADD_DATE_TIME=Add current date and time to the file name
|
|
55
84
|
|
|
85
|
+
#XLST: Spreadsheet file type config for Microsoft Excel specific format
|
|
56
86
|
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
57
87
|
|
|
88
|
+
#XLST: Spreadsheet file type for exporting to Google Sheets
|
|
58
89
|
GSHEET_FILETYPE=Google Sheets
|
|
59
90
|
|
|
91
|
+
#XMSG: File name warning text
|
|
60
92
|
FILENAME_WARNING=The file name you entered exceeds 100 characters. This may prevent the spreadsheet from opening correctly.
|
|
61
93
|
|
|
94
|
+
#XFLD: Paper Size
|
|
62
95
|
PAPER_SIZE=Paper Size
|
|
63
96
|
|
|
97
|
+
#XFLD: Orientation
|
|
64
98
|
ORIENTATION=Orientation
|
|
65
99
|
|
|
100
|
+
#XFLD: Font Size
|
|
66
101
|
FONT_SIZE=Font Size
|
|
67
102
|
|
|
103
|
+
#XLST: Paper size config for PDF export
|
|
68
104
|
PAPER_SIZE_A4=A4
|
|
69
105
|
|
|
106
|
+
#XLST: Paper size config for PDF export
|
|
70
107
|
PAPER_SIZE_US_LETTER=US Letter
|
|
71
108
|
|
|
109
|
+
#XLST: Orientation config for PDF export
|
|
72
110
|
ORIENTATION_LAND=Landscape
|
|
73
111
|
|
|
112
|
+
#XLST: Orientation config for PDF export
|
|
74
113
|
ORIENTATION_PORT=Portrait
|
|
75
114
|
|
|
115
|
+
#XMSG: Font size error text
|
|
76
116
|
NUMBER_ERROR=The value should be a number.
|
|
77
117
|
|
|
118
|
+
#XFLD: Fit to Page
|
|
78
119
|
ENABLE_ACCESSIBILITY=Enable Accessibility
|
|
79
120
|
|
|
121
|
+
#XFLD: Enable Accessibility
|
|
80
122
|
FITTOPAGE=Fit to Page
|
|
81
123
|
|
|
124
|
+
#XFLD: Enable Signature
|
|
82
125
|
ENABLE_SIGNATURE=Enable Signature
|
|
83
126
|
|
|
127
|
+
#XFLD: Show Pagenumber
|
|
84
128
|
SHOW_PAGENUM=Show Page Number
|
|
85
129
|
|
|
130
|
+
#XFLD: Reason for the Signature
|
|
86
131
|
SIGNATURE_REASON=Reason
|
|
87
132
|
|
|
133
|
+
#XMSG: Message text informing that PDF is generated
|
|
88
134
|
PDF_GENERATION_IN_PROGRESS=PDF is being generated
|
|
89
135
|
|
|
136
|
+
#XMSG: Message text informing that there was an error in PDF generation.
|
|
90
137
|
PDF_GENERATION_ERROR=There was an error during the PDF export.
|
|
91
138
|
|
|
139
|
+
#XMSG: Error text informing when PDF generation is failed
|
|
92
140
|
PDF_GENERIC_ERROR=Error during PDF export
|
|
93
141
|
|
|
142
|
+
#XMSG: File name error text
|
|
94
143
|
FILENAME_ERROR=You cannot use any of the following characters in a file name\: \\ / \: * ? " < > |
|
|
95
144
|
|
|
145
|
+
#XMSG: Message text informing that exported file is being created
|
|
96
146
|
PROGRESS_BUNDLE_MSG=Generating file...
|
|
97
147
|
|
|
148
|
+
#XTIT: Title of the XLSX document if no title is defined in SpreadSheet settings
|
|
98
149
|
XLSX_DEFAULT_TITLE=SAPUI5 Export
|
|
99
150
|
|
|
151
|
+
#XTIT,30: Default label of the data sheet - use less than 31 characters!
|
|
100
152
|
XLSX_DEFAULT_SHEETNAME=SAPUI5 Export
|
|
101
153
|
|
|
154
|
+
#XLST: Portable Document Format type config for PDF export
|
|
102
155
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
156
|
|
|
157
|
+
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
104
158
|
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible.
|
|
105
159
|
|
|
160
|
+
#XMSG: Tooltip that explains the show pagenumber checkbox and why it might be disabled
|
|
106
161
|
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page.
|
|
107
162
|
|
|
163
|
+
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
108
164
|
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature.
|
|
109
165
|
|
|
166
|
+
#XMSG: Tooltip that explains the FitToPage checkbox and why it might be disabled
|
|
110
167
|
TOOLTIP_FITTOPAGE=The generated document has content that fits the size of the page.
|
|
111
168
|
|
|
169
|
+
#XMSG: Tooltip that explains the Archive format checkbox and why it might be disabled
|
|
112
170
|
TOOLTIP_ARCHIVE_FORMAT=The generated document conforms with PDF/A.
|
|
113
171
|
|
|
172
|
+
#XMSG: Tooltip that explains the filter settings checkbox and why it might be disabled
|
|
114
173
|
TOOLTIP_FILTER_SETTINGS=The generated document has filter settings on the cover page.
|
|
115
174
|
|
|
175
|
+
#XMSG: Tooltip that explains the font size input and why it might be disabled
|
|
116
176
|
TOOLTIP_FONT_SIZE=Defines the font size of the generated document.
|
|
117
177
|
|
|
178
|
+
#XFLD: Label for the Destination Select control - Destination refers to the target location where the exported file should be stored and can be either Local or Remote/Cloud
|
|
118
179
|
SELECT_DESTINATION=Destination
|
|
119
180
|
|
|
181
|
+
#XLST: This option indicates that the exported file will be saved on the local device
|
|
120
182
|
DESTINATION_LOCAL=Local
|
|
121
183
|
|
|
184
|
+
#XLST: This option indicates that the exported file will be saved on a remote or cloud file share
|
|
122
185
|
DESTINATION_REMOTE=Cloud
|
|
123
186
|
|
|
187
|
+
#XHED: Dialog header for the CloudFilePicker
|
|
124
188
|
DESTINATION_DIALOG_TITLE=Export To
|
|
125
189
|
|
|
190
|
+
#XMSG: Status text on the progress dialog for transfering the file to the cloud destination
|
|
126
191
|
DESTINATION_DIALOG_STATUS=File is being transferred - please be patient...
|
|
127
192
|
|
|
193
|
+
#XMSG: Error message when exported file could not be transferred
|
|
128
194
|
DESTINATION_TRANSFER_ERROR=File could not be transferred.
|
|
129
195
|
|
|
196
|
+
#XMSG: Succuess message when the file has been saved to the cloud destination
|
|
130
197
|
DESTINATION_TRANSFER_SUCCESS=Your file has been saved successfully.
|
|
131
198
|
|
|
199
|
+
#XMSG: Error message when the user did not select a proper FileShare for storing the file
|
|
132
200
|
DESTINATION_SELECTION_INCOMPLETE=The selected file share is invalid.
|
|
133
201
|
|
|
202
|
+
#XBUT: Export button in the dialog when the user has selected to save the file on a cloud destination. This will open another file/folder selection. The text is followed by an ellipsis
|
|
134
203
|
DIALOG_BUTTON_CLOUD_DESTINATION=Export To...
|
|
135
204
|
|
|
205
|
+
#XMSG: Error message that is shown when the user has selected Google Sheets as format but the selected file location is on a FileShare that has a vendor different than Google
|
|
136
206
|
DESTINATION_ERROR_NOT_GOOGLE=Exporting a file to Google Sheets requires a Google Workspace as a file share.\nPlease select a different file format or a different file share.
|
|
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/Object'], function(BaseObject) {
|
|
|
20
20
|
* convenience functions like <code>sap.ui.export.util.Filter#setType</code> to improve the result.
|
|
21
21
|
*
|
|
22
22
|
* @author SAP SE
|
|
23
|
-
* @version 1.120.
|
|
23
|
+
* @version 1.120.2
|
|
24
24
|
*
|
|
25
25
|
* @since 1.110
|
|
26
26
|
* @alias sap.ui.export.util.Filter
|