@sapui5/sap.ui.export 1.84.39 → 1.84.40
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/ExportUtils.js +2 -2
- 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.properties +1 -1
- package/src/sap/ui/export/messagebundle_sh.properties +7 -7
- package/src/sap/ui/export/messagebundle_sr.properties +44 -0
package/package.json
CHANGED
|
@@ -87,7 +87,7 @@ sap.ui.define([
|
|
|
87
87
|
* Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
88
88
|
*
|
|
89
89
|
* @author SAP SE
|
|
90
|
-
* @version 1.84.
|
|
90
|
+
* @version 1.84.40
|
|
91
91
|
*
|
|
92
92
|
* @since 1.59
|
|
93
93
|
* @name sap.ui.export.ExportUtils
|
|
@@ -873,7 +873,7 @@ sap.ui.define([
|
|
|
873
873
|
*
|
|
874
874
|
* @param {Object} oContext Context object
|
|
875
875
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
876
|
-
* @param {string} [oContext.version] Application version (default: "1.84.
|
|
876
|
+
* @param {string} [oContext.version] Application version (default: "1.84.40")
|
|
877
877
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
878
878
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
879
879
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -83,7 +83,7 @@ sap.ui.define([
|
|
|
83
83
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
84
84
|
* <ul>
|
|
85
85
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
86
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.84.
|
|
86
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.84.40")</li>
|
|
87
87
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
88
88
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
89
89
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -166,7 +166,7 @@ sap.ui.define([
|
|
|
166
166
|
* columns: aColumns,
|
|
167
167
|
* context: {
|
|
168
168
|
* application: 'Debug Test Application',
|
|
169
|
-
* version: '1.84.
|
|
169
|
+
* version: '1.84.40',
|
|
170
170
|
* title: 'Some random title',
|
|
171
171
|
* modifiedBy: 'John Doe',
|
|
172
172
|
* metaSheetName: 'Custom metadata',
|
|
@@ -278,7 +278,7 @@ sap.ui.define([
|
|
|
278
278
|
* @constructor The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
279
279
|
*
|
|
280
280
|
* @author SAP SE
|
|
281
|
-
* @version 1.84.
|
|
281
|
+
* @version 1.84.40
|
|
282
282
|
*
|
|
283
283
|
* @since 1.50
|
|
284
284
|
* @name sap.ui.export.Spreadsheet
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @namespace
|
|
18
18
|
* @name sap.ui.export
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.84.
|
|
20
|
+
* @version 1.84.40
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
23
|
|
|
@@ -33,7 +33,7 @@ sap.ui.define([
|
|
|
33
33
|
interfaces: [],
|
|
34
34
|
controls: [],
|
|
35
35
|
elements: [],
|
|
36
|
-
version: "1.84.
|
|
36
|
+
version: "1.84.40"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
|
|
@@ -7,11 +7,11 @@ PROGRESS_TITLE=Izvezi dokument
|
|
|
7
7
|
|
|
8
8
|
PROGRESS_FETCHING_MSG=Pozivanje podataka sa servera...
|
|
9
9
|
|
|
10
|
-
PROGRESS_ERROR_TITLE=
|
|
10
|
+
PROGRESS_ERROR_TITLE=Export Error
|
|
11
11
|
|
|
12
|
-
PROGRESS_ERROR_MSG=
|
|
12
|
+
PROGRESS_ERROR_MSG=The following error has occurred during export\:
|
|
13
13
|
|
|
14
|
-
SIZE_WARNING_MSG=
|
|
14
|
+
SIZE_WARNING_MSG=Warning\: The exported document with {0} rows and {1} columns is too big.\nThe memory capacity of the application might be exceeded.\nCancel and select a smaller data set for the export.
|
|
15
15
|
|
|
16
16
|
PROGRESS_ERROR_DEFAULT=Nepoznata gre\u0161ka
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ EXPORT_SETTINGS_TITLE=Izvezi kao
|
|
|
19
19
|
|
|
20
20
|
FILE_NAME=Naziv fajla
|
|
21
21
|
|
|
22
|
-
SELECT_FORMAT=
|
|
22
|
+
SELECT_FORMAT=Select format
|
|
23
23
|
|
|
24
24
|
SPLIT_CELLS=Podeli \u0107elije s vi\u0161estrukim vrednostima
|
|
25
25
|
|
|
@@ -29,15 +29,15 @@ FILTER_HEADER=Filter
|
|
|
29
29
|
|
|
30
30
|
ADD_DATE_TIME=Dodaj teku\u0107i datum i vreme u naziv fajla
|
|
31
31
|
|
|
32
|
-
XLSX_FILETYPE=Microsoft Excel
|
|
32
|
+
XLSX_FILETYPE=Microsoft Excel Workbook (*.xlsx)
|
|
33
33
|
|
|
34
34
|
FILENAME_WARNING=Naziv fajla koji ste uneli prekora\u010Duje 100 znakova. To mo\u017Ee spre\u010Diti pravilno otvaranje tabelarnog izra\u010Dunavanja.
|
|
35
35
|
|
|
36
36
|
FILENAME_ERROR=Ne mo\u017Eete koristiti nijedan od slede\u0107ih znakova u nazivu fajla\: \\ / \: * ? " < > |
|
|
37
37
|
|
|
38
|
-
PROGRESS_BUNDLE_MSG=
|
|
38
|
+
PROGRESS_BUNDLE_MSG=Generating file
|
|
39
39
|
|
|
40
|
-
NO_COUNT_WARNING_MSG=
|
|
40
|
+
NO_COUNT_WARNING_MSG=There is no count provided in the export configuration. \nThe total number of exported rows cannot be predicted and might exceed the memory capacity of the application. \nPlease do not proceed unless you are sure that the current filter settings will not result in a large amount of data.
|
|
41
41
|
|
|
42
42
|
XLSX_DEFAULT_TITLE=SAPUI5 izvoz
|
|
43
43
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
|
|
2
|
+
CANCEL_BUTTON=\u041E\u0434\u0443\u0441\u0442\u0430\u043D\u0438
|
|
3
|
+
|
|
4
|
+
EXPORT_BUTTON=\u0418\u0437\u0432\u0435\u0437\u0438
|
|
5
|
+
|
|
6
|
+
PROGRESS_TITLE=\u0418\u0437\u0432\u0435\u0437\u0438 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442
|
|
7
|
+
|
|
8
|
+
PROGRESS_FETCHING_MSG=\u041F\u043E\u0437\u0438\u0432\u0430\u045A\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u0441\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430...
|
|
9
|
+
|
|
10
|
+
PROGRESS_ERROR_TITLE=Export Error
|
|
11
|
+
|
|
12
|
+
PROGRESS_ERROR_MSG=The following error has occurred during export\:
|
|
13
|
+
|
|
14
|
+
SIZE_WARNING_MSG=Warning\: The exported document with {0} rows and {1} columns is too big.\nThe memory capacity of the application might be exceeded.\nCancel and select a smaller data set for the export.
|
|
15
|
+
|
|
16
|
+
PROGRESS_ERROR_DEFAULT=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0430 \u0433\u0440\u0435\u0448\u043A\u0430
|
|
17
|
+
|
|
18
|
+
EXPORT_SETTINGS_TITLE=\u0418\u0437\u0432\u0435\u0437\u0438 \u043A\u0430\u043E
|
|
19
|
+
|
|
20
|
+
FILE_NAME=\u041D\u0430\u0437\u0438\u0432 \u0444\u0430\u0458\u043B\u0430
|
|
21
|
+
|
|
22
|
+
SELECT_FORMAT=Select format
|
|
23
|
+
|
|
24
|
+
SPLIT_CELLS=\u041F\u043E\u0434\u0435\u043B\u0438 \u045B\u0435\u043B\u0438\u0458\u0435 \u0441 \u0432\u0438\u0448\u0435\u0441\u0442\u0440\u0443\u043A\u0438\u043C \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0438\u043C\u0430
|
|
25
|
+
|
|
26
|
+
INCLUDE_FILTER_SETTINGS=\u0423\u043A\u0459\u0443\u0447\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0444\u0438\u043B\u0442\u0435\u0440\u0430
|
|
27
|
+
|
|
28
|
+
FILTER_HEADER=\u0424\u0438\u043B\u0442\u0435\u0440
|
|
29
|
+
|
|
30
|
+
ADD_DATE_TIME=\u0414\u043E\u0434\u0430\u0458 \u0442\u0435\u043A\u0443\u045B\u0438 \u0434\u0430\u0442\u0443\u043C \u0438 \u0432\u0440\u0435\u043C\u0435 \u0443 \u043D\u0430\u0437\u0438\u0432 \u0444\u0430\u0458\u043B\u0430
|
|
31
|
+
|
|
32
|
+
XLSX_FILETYPE=Microsoft Excel Workbook (*.xlsx)
|
|
33
|
+
|
|
34
|
+
FILENAME_WARNING=\u041D\u0430\u0437\u0438\u0432 \u0444\u0430\u0458\u043B\u0430 \u043A\u043E\u0458\u0438 \u0441\u0442\u0435 \u0443\u043D\u0435\u043B\u0438 \u043F\u0440\u0435\u043A\u043E\u0440\u0430\u0447\u0443\u0458\u0435 100 \u0437\u043D\u0430\u043A\u043E\u0432\u0430. \u0422\u043E \u043C\u043E\u0436\u0435 \u0441\u043F\u0440\u0435\u0447\u0438\u0442\u0438 \u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E \u043E\u0442\u0432\u0430\u0440\u0430\u045A\u0435 \u0442\u0430\u0431\u0435\u043B\u0430\u0440\u043D\u043E\u0433 \u0438\u0437\u0440\u0430\u0447\u0443\u043D\u0430\u0432\u0430\u045A\u0430.
|
|
35
|
+
|
|
36
|
+
FILENAME_ERROR=\u041D\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u043D\u0438\u0458\u0435\u0434\u0430\u043D \u043E\u0434 \u0441\u043B\u0435\u0434\u0435\u045B\u0438\u0445 \u0437\u043D\u0430\u043A\u043E\u0432\u0430 \u0443 \u043D\u0430\u0437\u0438\u0432\u0443 \u0444\u0430\u0458\u043B\u0430\: \\ / \: * ? " < > |
|
|
37
|
+
|
|
38
|
+
PROGRESS_BUNDLE_MSG=Generating file
|
|
39
|
+
|
|
40
|
+
NO_COUNT_WARNING_MSG=There is no count provided in the export configuration. \nThe total number of exported rows cannot be predicted and might exceed the memory capacity of the application. \nPlease do not proceed unless you are sure that the current filter settings will not result in a large amount of data.
|
|
41
|
+
|
|
42
|
+
XLSX_DEFAULT_TITLE=SAPUI5 \u0438\u0437\u0432\u043E\u0437
|
|
43
|
+
|
|
44
|
+
XLSX_DEFAULT_SHEETNAME=SAPUI5 \u0438\u0437\u0432\u043E\u0437
|