@sapui5/sap.ui.export 1.120.13 → 1.120.16

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.13",
3
+ "version": "1.120.16",
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.13</version>
8
+ <version>1.120.16</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.13
30
+ * @version 1.120.16
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.13
19
+ * @version 1.120.16
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.13
139
+ * @version 1.120.16
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.13")
1222
+ * @param {string} [oContext.version] Application version (default: "1.120.16")
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.13
27
+ * @version 1.120.16
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.13")</li>
87
+ * <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.120.16")</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.13',
170
+ * version: '1.120.16',
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.13
282
+ * @version 1.120.16
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.13
24
+ * @version 1.120.16
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.13
18
+ * @version 1.120.16
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.13"
34
+ version: "1.120.16"
35
35
  });
36
36
 
37
37
 
@@ -38,10 +38,10 @@ MSG_WARNING_ROW_LIMIT=Samo {0} redova mo\u017Ee biti izvezeno u pojedina\u010Dno
38
38
  MSG_WARNING_COUNT_UNKNOWN=Dokument sadr\u017Ei nepoznati broj redova.
39
39
 
40
40
  #XMSG: Part of a message text that gives advice on how to proceed
41
- MSG_WARNING_ADVICE=Nemojte nastaviti dok se ne uvjerite da trenutna pode\u0161avanja filtera ne\u0107e za posljedicu imati veliku koli\u010Dinu podataka jer fajl mo\u017Ee biti prevelik za obradu.
41
+ MSG_WARNING_ADVICE=Nemojte nastaviti dok se ne uverite da trenutna pode\u0161avanja filtera ne\u0107e za posledicu imati veliku koli\u010Dinu podataka jer fajl mo\u017Ee biti prevelik za obradu.
42
42
 
43
43
  #XMSG: Last sentence of a warning message to ask the user if he/she still wants to export
44
- MSG_WARNING_EXPORT_ANYWAY=Ipak izvijesti?
44
+ MSG_WARNING_EXPORT_ANYWAY=Ipak izvesti?
45
45
 
46
46
  #XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
47
47
  MSG_ERROR_OUT_OF_MEMORY=Ponestalo je memorije za proces izvoza i on je prekinut.\nUskladite svoja pode\u0161avanja kolone ili filtera da biste izabrali manji broj \u0107elija.
@@ -59,7 +59,7 @@ FILE_NAME=Naziv fajla
59
59
  SELECT_FORMAT=Format
60
60
 
61
61
  #XFLD: Split cells with multiple values
62
- SPLIT_CELLS=Podijeli \u0107elije s vi\u0161estrukim vrijednostima
62
+ SPLIT_CELLS=Podeli \u0107elije s vi\u0161estrukim vrednostima
63
63
 
64
64
  #XFLD: Include filter settings
65
65
  INCLUDE_FILTER_SETTINGS=Uklju\u010Di pode\u0161avanja filtera
@@ -71,7 +71,7 @@ TECHNICAL_INFORMATION=Tehni\u010Dke informacije
71
71
  USER_NAME=Korisnik
72
72
 
73
73
  #XFLD: Creation time
74
- CREATED_TIME=Vrijeme kreiranja
74
+ CREATED_TIME=Vreme kreiranja
75
75
 
76
76
  #XFLD: Archive format
77
77
  ARCHIVE_FORMAT=Format arhive
@@ -80,7 +80,7 @@ ARCHIVE_FORMAT=Format arhive
80
80
  FILTER_HEADER=Filter
81
81
 
82
82
  #XFLD: Add current date and time to the file name
83
- ADD_DATE_TIME=Dodaj teku\u0107i datum i vrijeme u naziv fajla
83
+ ADD_DATE_TIME=Dodaj teku\u0107i datum i vreme u naziv fajla
84
84
 
85
85
  #XLST: Spreadsheet file type config for Microsoft Excel specific format
86
86
  XLSX_FILETYPE=Microsoft Excel (*.xlsx)
@@ -89,7 +89,7 @@ XLSX_FILETYPE=Microsoft Excel (*.xlsx)
89
89
  GSHEET_FILETYPE=Google Sheets
90
90
 
91
91
  #XMSG: File name warning text
92
- FILENAME_WARNING=Naziv fajla koji ste unijeli prekora\u010Duje 100 znakova. To mo\u017Ee sprije\u010Diti pravilno otvaranje tabelarnog izra\u010Dunavanja.
92
+ FILENAME_WARNING=Naziv fajla koji ste uneli prekora\u010Duje 100 znakova. To mo\u017Ee spre\u010Diti pravilno otvaranje tabelarnog izra\u010Dunavanja.
93
93
 
94
94
  #XFLD: Paper Size
95
95
  PAPER_SIZE=Veli\u010Dina papira
@@ -113,7 +113,7 @@ ORIENTATION_LAND=Polo\u017Eeno
113
113
  ORIENTATION_PORT=Uspravno
114
114
 
115
115
  #XMSG: Font size error text
116
- NUMBER_ERROR=Vrijednost treba da bude broj.
116
+ NUMBER_ERROR=Vrednost treba da bude broj.
117
117
 
118
118
  #XFLD: Fit to Page
119
119
  ENABLE_ACCESSIBILITY=Aktiviraj dostupnost
@@ -140,7 +140,7 @@ PDF_GENERATION_ERROR=Do\u0161lo je do gre\u0161ke u toku izvoza PDF fajla.
140
140
  PDF_GENERIC_ERROR=Gre\u0161ka u toku izvoza PDF fajla
141
141
 
142
142
  #XMSG: File name error text
143
- FILENAME_ERROR=Ne mo\u017Eete koristiti nijedan od sljede\u0107ih znakova u nazivu fajla\: \\ / \: * ? " < > |
143
+ FILENAME_ERROR=Ne mo\u017Eete koristiti nijedan od slede\u0107ih znakova u nazivu fajla\: \\ / \: * ? " < > |
144
144
 
145
145
  #XMSG: Message text informing that exported file is being created
146
146
  PROGRESS_BUNDLE_MSG=Generisanje fajla...
@@ -191,16 +191,16 @@ DESTINATION_DIALOG_TITLE=Izvezi u
191
191
  DESTINATION_DIALOG_STATUS=Fajl se prenosi; budite strpljivi...
192
192
 
193
193
  #XMSG: Error message when exported file could not be transferred
194
- DESTINATION_TRANSFER_ERROR=Fajl se ne mo\u017Ee prenijeti.
194
+ DESTINATION_TRANSFER_ERROR=Fajl se ne mo\u017Ee preneti.
195
195
 
196
196
  #XMSG: Succuess message when the file has been saved to the cloud destination
197
- DESTINATION_TRANSFER_SUCCESS=Va\u0161 fajl je uspje\u0161no sa\u010Duvan.
197
+ DESTINATION_TRANSFER_SUCCESS=Va\u0161 fajl je uspe\u0161no sa\u010Duvan.
198
198
 
199
199
  #XMSG: Error message when the user did not select a proper FileShare for storing the file
200
- DESTINATION_SELECTION_INCOMPLETE=Odabrano dijeljenje fajla je neva\u017Ee\u0107e.
200
+ DESTINATION_SELECTION_INCOMPLETE=Odabrano deljenje fajla je neva\u017Ee\u0107e.
201
201
 
202
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
203
  DIALOG_BUTTON_CLOUD_DESTINATION=Izvezi u...
204
204
 
205
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=Izvoz fajla u Google Sheets zahtjeva Google Workspace za podjelu fajla.\nOdaberite razli\u010Diti format ili razli\u010Ditu podjelu fajla.
206
+ DESTINATION_ERROR_NOT_GOOGLE=Izvoz fajla u Google Sheets zahteva Google Workspace za podelu fajla.\nOdaberite razli\u010Diti format ili razli\u010Ditu podelu fajla.
@@ -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.13
37
+ * @version 1.120.16
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.13
23
+ * @version 1.120.16
24
24
  *
25
25
  * @since 1.110
26
26
  * @alias sap.ui.export.util.Filter