@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.ui.export",
3
- "version": "1.120.19",
3
+ "version": "1.120.20",
4
4
  "description": "SAPUI5 Library sap.ui.export",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -5,7 +5,7 @@
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>SAPUI5
7
7
  * (c) Copyright 2009-2023 SAP SE. All rights reserved.</copyright>
8
- <version>1.120.19</version>
8
+ <version>1.120.20</version>
9
9
 
10
10
  <documentation>UI5 library: sap.ui.export</documentation>
11
11
 
@@ -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.19
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
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.19
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.19")
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.19
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.19")</li>
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.19',
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.19
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.19
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.19
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.19"
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
- CANCEL_BUTTON=B5GEM8fcnsfefLM7NVhAUw_Cancel
4
+ #XBUT: Cancel button in the dialog
5
+ CANCEL_BUTTON=78XQQYTotI1eeTt8oYgVBQ_Cancel
3
6
 
4
- CLOSE_BUTTON=O7Six8Ssc92Yazz5wODhiQ_Close
7
+ #XBUT: Close button in the dialog
8
+ CLOSE_BUTTON=Ehxc44LmptyfpXWiIc65TQ_Close
5
9
 
6
- EXPORT_BUTTON=315zWEAcrk5pcONSDqL/8A_Export
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
- PROGRESS_TITLE=r+DMBVCJnrlzg6tri8tC6g_Export Document
13
+ #XHED: Default title text for the export progress dialog
14
+ PROGRESS_TITLE=Cz5sdKoI6My+uVRHFKULGQ_Export Document
9
15
 
10
- WARNING_TITLE=esLY0eNfzt6FcDjJRDe4Zg_Warning
16
+ #XHED: Default title text for the export warning dialog
17
+ WARNING_TITLE=gQNVpqobTvM7WxZ9cbJIIw_Warning
11
18
 
12
- PROGRESS_FETCHING_MSG=Y3tM1EuBHQ/70CV46MkiSw_Fetching data from server...
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
- PROGRESS_ERROR_TITLE=s/UVSJxJ3p+MBK9NPJXXlQ_Error
22
+ #XHED: Default title text for the export progress error message box
23
+ PROGRESS_ERROR_TITLE=O/+ASufNsLgroab/0NsiDQ_Error
15
24
 
16
- MSG_WARNING_CELL_COUNT=OEnK8g60HcfqE0TxU71DbQ_The document contains {0} rows and {1} column(s) ({2} cells).
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
- MSG_WARNING_CELL_LIMIT=NPnRPZNJGonHFhFSL1meVg_Documents with more than {0} cells might be too large to process.
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
- MSG_WARNING_ROW_COUNT=ix0yK3wD+7mFwQFG7LLcqw_The document contains {0} rows.
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
- MSG_WARNING_ROW_LIMIT=VaXXkAIrOVE4bEpRL1Lt6Q_Only {0} rows can be exported in a single {1} file.
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
- MSG_WARNING_COUNT_UNKNOWN=2hcHul2NZB3xj6XgR6UP3w_The document contains an unknown number of rows.
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
- MSG_WARNING_ADVICE=Rhg70iTbd5v+qlrHovGj/g_Please do not proceed unless you are sure that the current filter settings do not result in a large amount of data, as the file might be too large to process.
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
- MSG_WARNING_EXPORT_ANYWAY=Irl9Mm8hx/Ah07FCnxjW7g_Export anyway?
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
- MSG_ERROR_OUT_OF_MEMORY=2LR/jHxdHDOjdbJKDE2aCw_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.
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
- PROGRESS_ERROR_DEFAULT=+oIdespqYXzcYFjXTf4Qcw_Unknown error
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
- EXPORT_SETTINGS_TITLE=VmBLXE5Et46Y/QgjYR6fcA_Export As
52
+ #XHED: Default title text for the export settings dialog
53
+ EXPORT_SETTINGS_TITLE=m7+NVYEGRUkUoWsGhXS9nw_Export As
35
54
 
36
- FILE_NAME=38GdJbHnKaekaf5OsxThjw_File Name
55
+ #XFLD: Label for File Name input field
56
+ FILE_NAME=lBQnGE7o38L7D3vl/8Mnpw_File Name
37
57
 
38
- SELECT_FORMAT=1jnyR44PDNI8EQ0CeDM0JA_Format
58
+ #XFLD: Label for the file format Select control
59
+ SELECT_FORMAT=ItBN6dz6yiG++pLVT/Vy5Q_Format
39
60
 
40
- SPLIT_CELLS=9EGNRNkzPNpgBt/668KSyg_Split cells with multiple values
61
+ #XFLD: Split cells with multiple values
62
+ SPLIT_CELLS=S2HfyZa1VlgkOQGMQzbN1Q_Split cells with multiple values
41
63
 
42
- INCLUDE_FILTER_SETTINGS=tm3a/4eX1LMI2qYh1ohlKA_Include filter settings
64
+ #XFLD: Include filter settings
65
+ INCLUDE_FILTER_SETTINGS=gRlbBbyogzL6iB/cPmQUIg_Include filter settings
43
66
 
44
- TECHNICAL_INFORMATION=LhPJBKGljThWN3enNZBRnQ_Technical Information
67
+ #XFLD: Techincal Information
68
+ TECHNICAL_INFORMATION=5mWUgxJo9rLUH03qiuemQA_Technical Information
45
69
 
46
- USER_NAME=k55i+hJKEQvVCu0unFvt7w_User
70
+ #XFLD: User Information
71
+ USER_NAME=b2h/or0I3FvBNQ8udlSq7A_User
47
72
 
48
- CREATED_TIME=8aTPp2S9yUBtsCgHr6GRoA_Creation Time
73
+ #XFLD: Creation time
74
+ CREATED_TIME=OTfCsDau/oB7zHlHheKrdA_Creation Time
49
75
 
50
- ARCHIVE_FORMAT=gr2PxGornwapJnvSk0qRCw_Archive Format
76
+ #XFLD: Archive format
77
+ ARCHIVE_FORMAT=+SDoeuWxFQuAmMc/g/K+ZQ_Archive Format
51
78
 
52
- FILTER_HEADER=BIQexGIVBRlh4rkl/lD/wA_Filter
79
+ #XHED: Header of the filter sheet
80
+ FILTER_HEADER=QZYTfZmgd4CstoExj7Ghsg_Filter
53
81
 
54
- ADD_DATE_TIME=D3x9ygu0a0TihNE8VPn42g_Add current date and time to the file name
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
- XLSX_FILETYPE=s5osXBVx7lQpsLlVTqLRHw_Microsoft Excel (*.xlsx)
85
+ #XLST: Spreadsheet file type config for Microsoft Excel specific format
86
+ XLSX_FILETYPE=3Sl4OrUmHO7+AR/gaPOT8A_Microsoft Excel (*.xlsx)
57
87
 
58
- GSHEET_FILETYPE=xsKog8cm2r2n3OpPS1UA6Q_Google Sheets
88
+ #XLST: Spreadsheet file type for exporting to Google Sheets
89
+ GSHEET_FILETYPE=hbcBcfCTeurUOrL8KVYxIA_Google Sheets
59
90
 
60
- FILENAME_WARNING=yWxSLXox1BagW5haFrvYDw_The file name you entered exceeds 100 characters. This may prevent the spreadsheet from opening correctly.
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
- PAPER_SIZE=ErroKCycwFawC0Y4RiAVFg_Paper Size
94
+ #XFLD: Paper Size
95
+ PAPER_SIZE=1+qXdX1AoUFFI5O2qnYZ4g_Paper Size
63
96
 
64
- ORIENTATION=UjKyXzd47+qGPUk408ScfQ_Orientation
97
+ #XFLD: Orientation
98
+ ORIENTATION=Y2W8cmFYtsrmcFK3t6ugAg_Orientation
65
99
 
66
- FONT_SIZE=1zcKDBXbcDYP5VHqO5rPdA_Font Size
100
+ #XFLD: Font Size
101
+ FONT_SIZE=KL5CpxAoviGEvdGOlBF7fw_Font Size
67
102
 
68
- PAPER_SIZE_A4=QoB3aRA9dy1MI0rIZMagmQ_A4
103
+ #XLST: Paper size config for PDF export
104
+ PAPER_SIZE_A4=mVEO+tjxf34cF1l5K1+qeg_A4
69
105
 
70
- PAPER_SIZE_US_LETTER=lUtclQYZwnWF1krlPJEbrA_US Letter
106
+ #XLST: Paper size config for PDF export
107
+ PAPER_SIZE_US_LETTER=feDVMXE2U7KpAb9JZp2Y3w_US Letter
71
108
 
72
- ORIENTATION_LAND=LF+mvxiPlmJEUF99aY2T0Q_Landscape
109
+ #XLST: Orientation config for PDF export
110
+ ORIENTATION_LAND=D14BvgJolyYg11P565hmLQ_Landscape
73
111
 
74
- ORIENTATION_PORT=IK6X6aRescgJwdyDSuZ6aA_Portrait
112
+ #XLST: Orientation config for PDF export
113
+ ORIENTATION_PORT=PTaX69TvogOUsKKouBxrbA_Portrait
75
114
 
76
- NUMBER_ERROR=3ipzLl31hBGYKO+AUS5XdA_The value should be a number.
115
+ #XMSG: Font size error text
116
+ NUMBER_ERROR=fJDJZzdrMeKNX1dDj8nYZg_The value should be a number.
77
117
 
78
- ENABLE_ACCESSIBILITY=3i7Au8qV4HU7rDK9C7i4uw_Enable Accessibility
118
+ #XFLD: Fit to Page
119
+ ENABLE_ACCESSIBILITY=QQfnmASu0PZRcK44phZzYw_Enable Accessibility
79
120
 
80
- FITTOPAGE=9uDYfLsaI4vyN+E3pRAftw_Fit To Page
121
+ #XFLD: Enable Accessibility
122
+ FITTOPAGE=yqmQTPRtzt4G0Db+hNRoag_Fit to Page
81
123
 
82
- ENABLE_SIGNATURE=3hO5lOJjp6XYRLmfmnMmZQ_Enable Signature
124
+ #XFLD: Enable Signature
125
+ ENABLE_SIGNATURE=PHnkJKScSLLzhuF9e5HwLQ_Enable Signature
83
126
 
84
- SHOW_PAGENUM=e8oWdQvZDJDxoQJncNvncQ_Show Page Number
127
+ #XFLD: Show Pagenumber
128
+ SHOW_PAGENUM=ilmD9lLyoHNdszruCIKU0Q_Show Page Number
85
129
 
86
- SIGNATURE_REASON=IfKiI4l6ySDCQb8CDD/6pw_Reason
130
+ #XFLD: Reason for the Signature
131
+ SIGNATURE_REASON=OX3ePBC5ULeLgSfgNt6eyg_Reason
87
132
 
88
- PDF_GENERATION_IN_PROGRESS=SuU+7ewlfF/khTSO8HwVHQ_PDF is being generated
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
- PDF_GENERATION_ERROR=wb7orxCnDnpunVccAt/ipg_There has been an error during the PDF export
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
- PDF_GENERIC_ERROR=aiPVuaU1jX68kDjA1W/MZg_Error during PDF export
139
+ #XMSG: Error text informing when PDF generation is failed
140
+ PDF_GENERIC_ERROR=GwBYS/Hxske6SfzcrxH/Lg_Error during PDF export
93
141
 
94
- FILENAME_ERROR=SWYZjlpHbphmsczMuY036w_You cannot use any of the following characters in a file name\: \\ / \: * ? " < > |
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
- PROGRESS_BUNDLE_MSG=RsVBsoChSGSs6+sIrSTsWQ_Generating file...
145
+ #XMSG: Message text informing that exported file is being created
146
+ PROGRESS_BUNDLE_MSG=fUY+Kb6s70jIJzd73cY5JQ_Generating file...
97
147
 
98
- XLSX_DEFAULT_TITLE=g5onhcihi8Z9VxzVOEDiIQ_SAPUI5 Export
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
- XLSX_DEFAULT_SHEETNAME=CZOFscMIF00iHFskNDqDvw_SAPUI5 Export
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
- PDF_FILETYPE=ZoZbxIepwc5jkvyMJYnUiw_Portable Document Format (*.pdf)
154
+ #XLST: Portable Document Format type config for PDF export
155
+ PDF_FILETYPE=b0ZTtfiokJqJNvMhKpTKGQ_Portable Document Format (*.pdf)
103
156
 
104
- TOOLTIP_PDF_ACCESSIBILITY=LontypVpaGVGBgxcaY/fsw_Defines whether the generated document is accessible.
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
- TOOLTIP_PDF_PAGENUMBER=5vc/glu8sVW70O2P8dS6Dw_Defines whether the generated document contains page numbers in the footer of each page.
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
- TOOLTIP_PDF_SIGNATURE=uU6m/Rv3nHfXgO1MpxV9Xg_Defines whether the generated document is signed with a digital signature.
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
- TOOLTIP_FITTOPAGE=wAMqXxw2U7NsBigdJEWkXQ_The generated document has content that fits the size of the page.
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
- TOOLTIP_ARCHIVE_FORMAT=+gqe7C0H7cQMjZhoqWEUbg_The generated document is PDF/A-conformant.
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
- TOOLTIP_FILTER_SETTINGS=m0du6Q+V/j7r7La1AbLVvg_The generated document has filter settings on the cover page.
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
- TOOLTIP_FONT_SIZE=zRQiqKA1QIaxHwGQhvScIg_Defines the font size of the generated document.
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
- SELECT_DESTINATION=Sohsaj/yErSFoih9HWvrVA_Destination
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
- DESTINATION_LOCAL=bKLrzJXRvk8OodD363yyYQ_Local
181
+ #XLST: This option indicates that the exported file will be saved on the local device
182
+ DESTINATION_LOCAL=cAKCv2XNwfc5B54iuWwQLw_Local
121
183
 
122
- DESTINATION_REMOTE=Wd1/LKrUYGgGb6ZhFMaBiA_Cloud
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
- DESTINATION_DIALOG_TITLE=hN+23uOkvPjaSmBaIb50qA_Export To
187
+ #XHED: Dialog header for the CloudFilePicker
188
+ DESTINATION_DIALOG_TITLE=iGqO2ATSV/mVCRnHFozeIA_Export To
125
189
 
126
- DESTINATION_DIALOG_STATUS=B3tRwQfZ2cK0PINtebRn7Q_File is being transferred - please be patient...
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
- DESTINATION_TRANSFER_ERROR=qjai6WCupHCs0kAwLxTGGw_File could not be transferred.
193
+ #XMSG: Error message when exported file could not be transferred
194
+ DESTINATION_TRANSFER_ERROR=cqthyiWaoReZVDd7bUvXcg_File could not be transferred.
129
195
 
130
- DESTINATION_TRANSFER_SUCCESS=zjVuv/nDdjQBfg7Zw2N5rA_Your file has been saved successfully.
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
- DESTINATION_SELECTION_INCOMPLETE=HwrO6MZA6XH3HDT9a8EavQ_The selected file share is invalid.
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
- DIALOG_BUTTON_CLOUD_DESTINATION=daPIPJoHmynqcMlkLDdusw_Export To...
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
- DESTINATION_ERROR_NOT_GOOGLE=cTRDrnpz2Bpk+qJ0cMqs/g_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.
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.
@@ -34,7 +34,7 @@
34
34
  * @param {object} mSettings Data service related part of the export configuration
35
35
  *
36
36
  * @author SAP SE
37
- * @version 1.120.19
37
+ * @version 1.120.20
38
38
  *
39
39
  * @constructor
40
40
  * @class DataProviderBase
@@ -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.19
23
+ * @version 1.120.20
24
24
  *
25
25
  * @since 1.110
26
26
  * @alias sap.ui.export.util.Filter