@sapui5/sap.ui.export 1.120.19 → 1.120.20
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 +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 +138 -68
- package/src/sap/ui/export/provider/DataProviderBase.js +1 -1
- 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.120.
|
|
30
|
+
* @version 1.120.20
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -16,7 +16,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', './util/PDFCapabi
|
|
|
16
16
|
* @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from an SAPUI5 application.
|
|
17
17
|
*
|
|
18
18
|
* @author SAP SE
|
|
19
|
-
* @version 1.120.
|
|
19
|
+
* @version 1.120.20
|
|
20
20
|
*
|
|
21
21
|
* @since 1.102
|
|
22
22
|
* @alias sap.ui.export.ExportHandler
|
|
@@ -136,7 +136,7 @@ sap.ui.define([
|
|
|
136
136
|
* @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
137
137
|
*
|
|
138
138
|
* @author SAP SE
|
|
139
|
-
* @version 1.120.
|
|
139
|
+
* @version 1.120.20
|
|
140
140
|
*
|
|
141
141
|
* @since 1.59
|
|
142
142
|
* @alias sap.ui.export.ExportUtils
|
|
@@ -1219,7 +1219,7 @@ sap.ui.define([
|
|
|
1219
1219
|
*
|
|
1220
1220
|
* @param {object} oContext Context object
|
|
1221
1221
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1222
|
-
* @param {string} [oContext.version] Application version (default: "1.120.
|
|
1222
|
+
* @param {string} [oContext.version] Application version (default: "1.120.20")
|
|
1223
1223
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1224
1224
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1225
1225
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* @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.
|
|
25
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.120.
|
|
27
|
+
* @version 1.120.20
|
|
28
28
|
*
|
|
29
29
|
* @since 1.96
|
|
30
30
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -84,7 +84,7 @@ sap.ui.define([
|
|
|
84
84
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
85
85
|
* <ul>
|
|
86
86
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
87
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.120.
|
|
87
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.120.20")</li>
|
|
88
88
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
89
89
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
90
90
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -167,7 +167,7 @@ sap.ui.define([
|
|
|
167
167
|
* columns: aColumns,
|
|
168
168
|
* context: {
|
|
169
169
|
* application: 'Debug Test Application',
|
|
170
|
-
* version: '1.120.
|
|
170
|
+
* version: '1.120.20',
|
|
171
171
|
* title: 'Some random title',
|
|
172
172
|
* modifiedBy: 'John Doe',
|
|
173
173
|
* metaSheetName: 'Custom metadata',
|
|
@@ -279,7 +279,7 @@ sap.ui.define([
|
|
|
279
279
|
* @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
280
280
|
*
|
|
281
281
|
* @author SAP SE
|
|
282
|
-
* @version 1.120.
|
|
282
|
+
* @version 1.120.20
|
|
283
283
|
*
|
|
284
284
|
* @since 1.50
|
|
285
285
|
* @alias sap.ui.export.Spreadsheet
|
|
@@ -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.120.
|
|
24
|
+
* @version 1.120.20
|
|
25
25
|
*
|
|
26
26
|
* @alias sap.ui.export.SpreadsheetExport
|
|
27
27
|
* @private
|
|
@@ -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.20
|
|
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.20"
|
|
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
|
|
|
2
|
-
|
|
4
|
+
#XBUT: Cancel button in the dialog
|
|
5
|
+
CANCEL_BUTTON=78XQQYTotI1eeTt8oYgVBQ_Cancel
|
|
3
6
|
|
|
4
|
-
|
|
7
|
+
#XBUT: Close button in the dialog
|
|
8
|
+
CLOSE_BUTTON=Ehxc44LmptyfpXWiIc65TQ_Close
|
|
5
9
|
|
|
6
|
-
|
|
10
|
+
#XBUT: Export button in the dialog. The meaning is: "Continue" but the first character should not be the same as by "Cancel"
|
|
11
|
+
EXPORT_BUTTON=NbQsjUUH1JZO8S24wwO1zA_Export
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
#XHED: Default title text for the export progress dialog
|
|
14
|
+
PROGRESS_TITLE=Cz5sdKoI6My+uVRHFKULGQ_Export Document
|
|
9
15
|
|
|
10
|
-
|
|
16
|
+
#XHED: Default title text for the export warning dialog
|
|
17
|
+
WARNING_TITLE=gQNVpqobTvM7WxZ9cbJIIw_Warning
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
#XMSG: Message text informing that exported data is fetched from the server
|
|
20
|
+
PROGRESS_FETCHING_MSG=XK4P77ZwWFfBZwMP1/rnMg_Fetching data from server...
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
#XHED: Default title text for the export progress error message box
|
|
23
|
+
PROGRESS_ERROR_TITLE=O/+ASufNsLgroab/0NsiDQ_Error
|
|
15
24
|
|
|
16
|
-
|
|
25
|
+
#XMSG: Message text informing that the exported file is too big
|
|
26
|
+
MSG_WARNING_CELL_COUNT=NDIZM3Ei/uhmEs9rth9SVQ_The document contains {0} rows and {1} column(s) ({2} cells).
|
|
17
27
|
|
|
18
|
-
|
|
28
|
+
#XMSG: Part of a message text that informs about the file specific cell limit for exporting
|
|
29
|
+
MSG_WARNING_CELL_LIMIT=wPwULdEIkz1JBrWh8Q4u9A_Documents with more than {0} cells might be too large to process.
|
|
19
30
|
|
|
20
|
-
|
|
31
|
+
#XMSG: Part of a message text that informs about the number of rows which will be exported
|
|
32
|
+
MSG_WARNING_ROW_COUNT=/DcCDDmbKCo8XfA2y9LSZg_The document contains {0} rows.
|
|
21
33
|
|
|
22
|
-
|
|
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
|
|
35
|
+
MSG_WARNING_ROW_LIMIT=7croylIUE+zH94LZXP4u9A_Only {0} rows can be exported in a single {1} file.
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
#XMSG: Part of a message text that will be used when the number of rows is unknown
|
|
38
|
+
MSG_WARNING_COUNT_UNKNOWN=ii7u+saEeOSno6XZgZdMaw_The document contains an unknown number of rows.
|
|
25
39
|
|
|
26
|
-
|
|
40
|
+
#XMSG: Part of a message text that gives advice on how to proceed
|
|
41
|
+
MSG_WARNING_ADVICE=rvUuVi3CP50dbWwW+fbanQ_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
|
|
|
28
|
-
|
|
43
|
+
#XMSG: Last sentence of a warning message to ask the user if he/she still wants to export
|
|
44
|
+
MSG_WARNING_EXPORT_ANYWAY=qPkPD1R3mhKcEM8OXVpdSw_Export anyway?
|
|
29
45
|
|
|
30
|
-
|
|
46
|
+
#XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
|
|
47
|
+
MSG_ERROR_OUT_OF_MEMORY=XPWaLckvw0D35xRDPHBq3Q_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
|
|
|
32
|
-
|
|
49
|
+
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
50
|
+
PROGRESS_ERROR_DEFAULT=w8n1I+ovDKxWbu/EzgasRA_Unknown error
|
|
33
51
|
|
|
34
|
-
|
|
52
|
+
#XHED: Default title text for the export settings dialog
|
|
53
|
+
EXPORT_SETTINGS_TITLE=m7+NVYEGRUkUoWsGhXS9nw_Export As
|
|
35
54
|
|
|
36
|
-
|
|
55
|
+
#XFLD: Label for File Name input field
|
|
56
|
+
FILE_NAME=lBQnGE7o38L7D3vl/8Mnpw_File Name
|
|
37
57
|
|
|
38
|
-
|
|
58
|
+
#XFLD: Label for the file format Select control
|
|
59
|
+
SELECT_FORMAT=ItBN6dz6yiG++pLVT/Vy5Q_Format
|
|
39
60
|
|
|
40
|
-
|
|
61
|
+
#XFLD: Split cells with multiple values
|
|
62
|
+
SPLIT_CELLS=S2HfyZa1VlgkOQGMQzbN1Q_Split cells with multiple values
|
|
41
63
|
|
|
42
|
-
|
|
64
|
+
#XFLD: Include filter settings
|
|
65
|
+
INCLUDE_FILTER_SETTINGS=gRlbBbyogzL6iB/cPmQUIg_Include filter settings
|
|
43
66
|
|
|
44
|
-
|
|
67
|
+
#XFLD: Techincal Information
|
|
68
|
+
TECHNICAL_INFORMATION=5mWUgxJo9rLUH03qiuemQA_Technical Information
|
|
45
69
|
|
|
46
|
-
|
|
70
|
+
#XFLD: User Information
|
|
71
|
+
USER_NAME=b2h/or0I3FvBNQ8udlSq7A_User
|
|
47
72
|
|
|
48
|
-
|
|
73
|
+
#XFLD: Creation time
|
|
74
|
+
CREATED_TIME=OTfCsDau/oB7zHlHheKrdA_Creation Time
|
|
49
75
|
|
|
50
|
-
|
|
76
|
+
#XFLD: Archive format
|
|
77
|
+
ARCHIVE_FORMAT=+SDoeuWxFQuAmMc/g/K+ZQ_Archive Format
|
|
51
78
|
|
|
52
|
-
|
|
79
|
+
#XHED: Header of the filter sheet
|
|
80
|
+
FILTER_HEADER=QZYTfZmgd4CstoExj7Ghsg_Filter
|
|
53
81
|
|
|
54
|
-
|
|
82
|
+
#XFLD: Add current date and time to the file name
|
|
83
|
+
ADD_DATE_TIME=9afWOfmyncH6TBTA4DCsJQ_Add current date and time to the file name
|
|
55
84
|
|
|
56
|
-
|
|
85
|
+
#XLST: Spreadsheet file type config for Microsoft Excel specific format
|
|
86
|
+
XLSX_FILETYPE=3Sl4OrUmHO7+AR/gaPOT8A_Microsoft Excel (*.xlsx)
|
|
57
87
|
|
|
58
|
-
|
|
88
|
+
#XLST: Spreadsheet file type for exporting to Google Sheets
|
|
89
|
+
GSHEET_FILETYPE=hbcBcfCTeurUOrL8KVYxIA_Google Sheets
|
|
59
90
|
|
|
60
|
-
|
|
91
|
+
#XMSG: File name warning text
|
|
92
|
+
FILENAME_WARNING=gX5Qfe4g/vWp3Fb9schnVA_The file name you entered exceeds 100 characters. This may prevent the spreadsheet from opening correctly.
|
|
61
93
|
|
|
62
|
-
|
|
94
|
+
#XFLD: Paper Size
|
|
95
|
+
PAPER_SIZE=1+qXdX1AoUFFI5O2qnYZ4g_Paper Size
|
|
63
96
|
|
|
64
|
-
|
|
97
|
+
#XFLD: Orientation
|
|
98
|
+
ORIENTATION=Y2W8cmFYtsrmcFK3t6ugAg_Orientation
|
|
65
99
|
|
|
66
|
-
|
|
100
|
+
#XFLD: Font Size
|
|
101
|
+
FONT_SIZE=KL5CpxAoviGEvdGOlBF7fw_Font Size
|
|
67
102
|
|
|
68
|
-
|
|
103
|
+
#XLST: Paper size config for PDF export
|
|
104
|
+
PAPER_SIZE_A4=mVEO+tjxf34cF1l5K1+qeg_A4
|
|
69
105
|
|
|
70
|
-
|
|
106
|
+
#XLST: Paper size config for PDF export
|
|
107
|
+
PAPER_SIZE_US_LETTER=feDVMXE2U7KpAb9JZp2Y3w_US Letter
|
|
71
108
|
|
|
72
|
-
|
|
109
|
+
#XLST: Orientation config for PDF export
|
|
110
|
+
ORIENTATION_LAND=D14BvgJolyYg11P565hmLQ_Landscape
|
|
73
111
|
|
|
74
|
-
|
|
112
|
+
#XLST: Orientation config for PDF export
|
|
113
|
+
ORIENTATION_PORT=PTaX69TvogOUsKKouBxrbA_Portrait
|
|
75
114
|
|
|
76
|
-
|
|
115
|
+
#XMSG: Font size error text
|
|
116
|
+
NUMBER_ERROR=fJDJZzdrMeKNX1dDj8nYZg_The value should be a number.
|
|
77
117
|
|
|
78
|
-
|
|
118
|
+
#XFLD: Fit to Page
|
|
119
|
+
ENABLE_ACCESSIBILITY=QQfnmASu0PZRcK44phZzYw_Enable Accessibility
|
|
79
120
|
|
|
80
|
-
|
|
121
|
+
#XFLD: Enable Accessibility
|
|
122
|
+
FITTOPAGE=yqmQTPRtzt4G0Db+hNRoag_Fit to Page
|
|
81
123
|
|
|
82
|
-
|
|
124
|
+
#XFLD: Enable Signature
|
|
125
|
+
ENABLE_SIGNATURE=PHnkJKScSLLzhuF9e5HwLQ_Enable Signature
|
|
83
126
|
|
|
84
|
-
|
|
127
|
+
#XFLD: Show Pagenumber
|
|
128
|
+
SHOW_PAGENUM=ilmD9lLyoHNdszruCIKU0Q_Show Page Number
|
|
85
129
|
|
|
86
|
-
|
|
130
|
+
#XFLD: Reason for the Signature
|
|
131
|
+
SIGNATURE_REASON=OX3ePBC5ULeLgSfgNt6eyg_Reason
|
|
87
132
|
|
|
88
|
-
|
|
133
|
+
#XMSG: Message text informing that PDF is generated
|
|
134
|
+
PDF_GENERATION_IN_PROGRESS=m+dcX0+D+JFgaNAPIapvAw_PDF is being generated
|
|
89
135
|
|
|
90
|
-
|
|
136
|
+
#XMSG: Message text informing that there was an error in PDF generation.
|
|
137
|
+
PDF_GENERATION_ERROR=Oa1TIyj3OjVbbBwfiYv0xg_There was an error during the PDF export.
|
|
91
138
|
|
|
92
|
-
|
|
139
|
+
#XMSG: Error text informing when PDF generation is failed
|
|
140
|
+
PDF_GENERIC_ERROR=GwBYS/Hxske6SfzcrxH/Lg_Error during PDF export
|
|
93
141
|
|
|
94
|
-
|
|
142
|
+
#XMSG: File name error text
|
|
143
|
+
FILENAME_ERROR=H3P3Z3C5N0F2zy9/SYkOlA_You cannot use any of the following characters in a file name\: \\ / \: * ? " < > |
|
|
95
144
|
|
|
96
|
-
|
|
145
|
+
#XMSG: Message text informing that exported file is being created
|
|
146
|
+
PROGRESS_BUNDLE_MSG=fUY+Kb6s70jIJzd73cY5JQ_Generating file...
|
|
97
147
|
|
|
98
|
-
|
|
148
|
+
#XTIT: Title of the XLSX document if no title is defined in SpreadSheet settings
|
|
149
|
+
XLSX_DEFAULT_TITLE=0W9aFSeF+yxOPDXwT5uaHg_SAPUI5 Export
|
|
99
150
|
|
|
100
|
-
|
|
151
|
+
#XTIT,30: Default label of the data sheet - use less than 31 characters!
|
|
152
|
+
XLSX_DEFAULT_SHEETNAME=HAoyvOFpUcqRrP/LrWZJ/Q_SAPUI5 Export
|
|
101
153
|
|
|
102
|
-
|
|
154
|
+
#XLST: Portable Document Format type config for PDF export
|
|
155
|
+
PDF_FILETYPE=b0ZTtfiokJqJNvMhKpTKGQ_Portable Document Format (*.pdf)
|
|
103
156
|
|
|
104
|
-
|
|
157
|
+
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
158
|
+
TOOLTIP_PDF_ACCESSIBILITY=4JZIrKINYY1GRNCh1C8KSg_Defines whether the generated document is accessible.
|
|
105
159
|
|
|
106
|
-
|
|
160
|
+
#XMSG: Tooltip that explains the show pagenumber checkbox and why it might be disabled
|
|
161
|
+
TOOLTIP_PDF_PAGENUMBER=VTep8mo9Lgs1/MYgvFWDEA_Defines whether the generated document contains page numbers in the footer of each page.
|
|
107
162
|
|
|
108
|
-
|
|
163
|
+
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
164
|
+
TOOLTIP_PDF_SIGNATURE=oj/C/Suv9oLln7kf7OTf5Q_Defines whether the generated document is signed with a digital signature.
|
|
109
165
|
|
|
110
|
-
|
|
166
|
+
#XMSG: Tooltip that explains the FitToPage checkbox and why it might be disabled
|
|
167
|
+
TOOLTIP_FITTOPAGE=J4g+X7z+bLnhoGF7CfF23g_The generated document has content that fits the size of the page.
|
|
111
168
|
|
|
112
|
-
|
|
169
|
+
#XMSG: Tooltip that explains the Archive format checkbox and why it might be disabled
|
|
170
|
+
TOOLTIP_ARCHIVE_FORMAT=phI/RsR0e72XnHC1GKnGdw_The generated document conforms with PDF/A.
|
|
113
171
|
|
|
114
|
-
|
|
172
|
+
#XMSG: Tooltip that explains the filter settings checkbox and why it might be disabled
|
|
173
|
+
TOOLTIP_FILTER_SETTINGS=+MMSoErlx12hUn3oa+8coA_The generated document has filter settings on the cover page.
|
|
115
174
|
|
|
116
|
-
|
|
175
|
+
#XMSG: Tooltip that explains the font size input and why it might be disabled
|
|
176
|
+
TOOLTIP_FONT_SIZE=BegzE9vjzRBpVfm/psOTlw_Defines the font size of the generated document.
|
|
117
177
|
|
|
118
|
-
|
|
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
|
|
179
|
+
SELECT_DESTINATION=OWnzr0nJ1C6/PnMbwPv/Ag_Destination
|
|
119
180
|
|
|
120
|
-
|
|
181
|
+
#XLST: This option indicates that the exported file will be saved on the local device
|
|
182
|
+
DESTINATION_LOCAL=cAKCv2XNwfc5B54iuWwQLw_Local
|
|
121
183
|
|
|
122
|
-
|
|
184
|
+
#XLST: This option indicates that the exported file will be saved on a remote or cloud file share
|
|
185
|
+
DESTINATION_REMOTE=/crHDCR1MT9JfjvSmr0kIQ_Cloud
|
|
123
186
|
|
|
124
|
-
|
|
187
|
+
#XHED: Dialog header for the CloudFilePicker
|
|
188
|
+
DESTINATION_DIALOG_TITLE=iGqO2ATSV/mVCRnHFozeIA_Export To
|
|
125
189
|
|
|
126
|
-
|
|
190
|
+
#XMSG: Status text on the progress dialog for transfering the file to the cloud destination
|
|
191
|
+
DESTINATION_DIALOG_STATUS=p6bzGTAOBCGRm1KIuIFxXA_File is being transferred - please be patient...
|
|
127
192
|
|
|
128
|
-
|
|
193
|
+
#XMSG: Error message when exported file could not be transferred
|
|
194
|
+
DESTINATION_TRANSFER_ERROR=cqthyiWaoReZVDd7bUvXcg_File could not be transferred.
|
|
129
195
|
|
|
130
|
-
|
|
196
|
+
#XMSG: Succuess message when the file has been saved to the cloud destination
|
|
197
|
+
DESTINATION_TRANSFER_SUCCESS=A5gaZ9OGboXZqo8sHtBAyQ_Your file has been saved successfully.
|
|
131
198
|
|
|
132
|
-
|
|
199
|
+
#XMSG: Error message when the user did not select a proper FileShare for storing the file
|
|
200
|
+
DESTINATION_SELECTION_INCOMPLETE=GFIQXEirJUU+ESc1/9XMHA_The selected file share is invalid.
|
|
133
201
|
|
|
134
|
-
|
|
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
|
|
203
|
+
DIALOG_BUTTON_CLOUD_DESTINATION=NsXHfCrspvGTZtJ1NVhmmQ_Export To...
|
|
135
204
|
|
|
136
|
-
|
|
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
|
|
206
|
+
DESTINATION_ERROR_NOT_GOOGLE=sb+yt+ELt7Z8rALPHiDTtQ_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.20
|
|
24
24
|
*
|
|
25
25
|
* @since 1.110
|
|
26
26
|
* @alias sap.ui.export.util.Filter
|