@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 +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_sh.properties +12 -12
- 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.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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|
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=
|
|
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=
|
|
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
|
|
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
|
|
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=
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
@@ -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.16
|
|
24
24
|
*
|
|
25
25
|
* @since 1.110
|
|
26
26
|
* @alias sap.ui.export.util.Filter
|