@sapui5/sap.ui.export 1.127.0 → 1.127.2
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_ar.properties +2 -0
- package/src/sap/ui/export/messagebundle_bg.properties +2 -0
- package/src/sap/ui/export/messagebundle_ca.properties +2 -0
- package/src/sap/ui/export/messagebundle_cnr.properties +2 -0
- package/src/sap/ui/export/messagebundle_cs.properties +2 -0
- package/src/sap/ui/export/messagebundle_cy.properties +2 -0
- package/src/sap/ui/export/messagebundle_da.properties +2 -0
- package/src/sap/ui/export/messagebundle_de.properties +2 -0
- package/src/sap/ui/export/messagebundle_el.properties +2 -0
- package/src/sap/ui/export/messagebundle_en_GB.properties +2 -0
- package/src/sap/ui/export/messagebundle_en_US_sappsd.properties +82 -7
- package/src/sap/ui/export/messagebundle_en_US_saptrc.properties +143 -68
- package/src/sap/ui/export/messagebundle_es.properties +2 -0
- package/src/sap/ui/export/messagebundle_es_MX.properties +2 -0
- package/src/sap/ui/export/messagebundle_et.properties +2 -0
- package/src/sap/ui/export/messagebundle_fi.properties +2 -0
- package/src/sap/ui/export/messagebundle_fr.properties +2 -0
- package/src/sap/ui/export/messagebundle_fr_CA.properties +2 -0
- package/src/sap/ui/export/messagebundle_hi.properties +2 -0
- package/src/sap/ui/export/messagebundle_hr.properties +2 -0
- package/src/sap/ui/export/messagebundle_hu.properties +2 -0
- package/src/sap/ui/export/messagebundle_id.properties +2 -0
- package/src/sap/ui/export/messagebundle_it.properties +2 -0
- package/src/sap/ui/export/messagebundle_iw.properties +2 -0
- package/src/sap/ui/export/messagebundle_ja.properties +2 -0
- package/src/sap/ui/export/messagebundle_kk.properties +2 -0
- package/src/sap/ui/export/messagebundle_ko.properties +2 -0
- package/src/sap/ui/export/messagebundle_lt.properties +2 -0
- package/src/sap/ui/export/messagebundle_lv.properties +2 -0
- package/src/sap/ui/export/messagebundle_mk.properties +2 -0
- package/src/sap/ui/export/messagebundle_ms.properties +2 -0
- package/src/sap/ui/export/messagebundle_nl.properties +2 -0
- package/src/sap/ui/export/messagebundle_no.properties +2 -0
- package/src/sap/ui/export/messagebundle_pl.properties +2 -0
- package/src/sap/ui/export/messagebundle_pt.properties +2 -0
- package/src/sap/ui/export/messagebundle_pt_PT.properties +2 -0
- package/src/sap/ui/export/messagebundle_ro.properties +2 -0
- package/src/sap/ui/export/messagebundle_ru.properties +2 -0
- package/src/sap/ui/export/messagebundle_sh.properties +2 -0
- package/src/sap/ui/export/messagebundle_sk.properties +2 -0
- package/src/sap/ui/export/messagebundle_sl.properties +2 -0
- package/src/sap/ui/export/messagebundle_sr.properties +2 -0
- package/src/sap/ui/export/messagebundle_sv.properties +2 -0
- package/src/sap/ui/export/messagebundle_th.properties +2 -0
- package/src/sap/ui/export/messagebundle_tr.properties +2 -0
- package/src/sap/ui/export/messagebundle_uk.properties +2 -0
- package/src/sap/ui/export/messagebundle_vi.properties +3 -1
- package/src/sap/ui/export/messagebundle_zh_CN.properties +2 -0
- package/src/sap/ui/export/messagebundle_zh_TW.properties +2 -0
- 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.127.
|
|
30
|
+
* @version 1.127.2
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -18,7 +18,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', './util/PDFCapabi
|
|
|
18
18
|
* @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from an SAPUI5 application.
|
|
19
19
|
*
|
|
20
20
|
* @author SAP SE
|
|
21
|
-
* @version 1.127.
|
|
21
|
+
* @version 1.127.2
|
|
22
22
|
*
|
|
23
23
|
* @since 1.102
|
|
24
24
|
* @alias sap.ui.export.ExportHandler
|
|
@@ -147,7 +147,7 @@ sap.ui.define([
|
|
|
147
147
|
* @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
148
148
|
*
|
|
149
149
|
* @author SAP SE
|
|
150
|
-
* @version 1.127.
|
|
150
|
+
* @version 1.127.2
|
|
151
151
|
*
|
|
152
152
|
* @since 1.59
|
|
153
153
|
* @alias sap.ui.export.ExportUtils
|
|
@@ -1228,7 +1228,7 @@ sap.ui.define([
|
|
|
1228
1228
|
*
|
|
1229
1229
|
* @param {object} oContext Context object
|
|
1230
1230
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1231
|
-
* @param {string} [oContext.version] Application version (default: "1.127.
|
|
1231
|
+
* @param {string} [oContext.version] Application version (default: "1.127.2")
|
|
1232
1232
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1233
1233
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1234
1234
|
* @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.127.
|
|
27
|
+
* @version 1.127.2
|
|
28
28
|
*
|
|
29
29
|
* @since 1.96
|
|
30
30
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -85,7 +85,7 @@ sap.ui.define([
|
|
|
85
85
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
86
86
|
* <ul>
|
|
87
87
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
88
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.127.
|
|
88
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.127.2")</li>
|
|
89
89
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
90
90
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
91
91
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -169,7 +169,7 @@ sap.ui.define([
|
|
|
169
169
|
* columns: aColumns,
|
|
170
170
|
* context: {
|
|
171
171
|
* application: 'Debug Test Application',
|
|
172
|
-
* version: '1.127.
|
|
172
|
+
* version: '1.127.2',
|
|
173
173
|
* title: 'Some random title',
|
|
174
174
|
* modifiedBy: 'John Doe',
|
|
175
175
|
* metaSheetName: 'Custom metadata',
|
|
@@ -281,7 +281,7 @@ sap.ui.define([
|
|
|
281
281
|
* @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
282
282
|
*
|
|
283
283
|
* @author SAP SE
|
|
284
|
-
* @version 1.127.
|
|
284
|
+
* @version 1.127.2
|
|
285
285
|
*
|
|
286
286
|
* @since 1.50
|
|
287
287
|
* @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.127.
|
|
24
|
+
* @version 1.127.2
|
|
25
25
|
*
|
|
26
26
|
* @alias sap.ui.export.SpreadsheetExport
|
|
27
27
|
* @private
|
|
@@ -15,7 +15,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
|
|
|
15
15
|
* @namespace
|
|
16
16
|
* @alias sap.ui.export
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.127.
|
|
18
|
+
* @version 1.127.2
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
21
|
|
|
@@ -33,7 +33,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
|
|
|
33
33
|
interfaces: [],
|
|
34
34
|
controls: [],
|
|
35
35
|
elements: [],
|
|
36
|
-
version: "1.127.
|
|
36
|
+
version: "1.127.2"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
/**
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=\u0646\u0641\u062F\u062A \u0630\u0627\u0643\u0631\u0629
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=\u0627\u0646\u062A\u0647\u0649 \u0627\u0644\u062A\u0635\u062F\u064A\u0631\u060C \u0648\u062A\u0645 \u062A\u0646\u0632\u064A\u0644 \u0627\u0644\u0645\u0644\u0641.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=\u062A\u0645 \u062A\u0646\u0632\u064A\u0644 {0} \u0645\u0646 {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=\u062D\u062F\u062B \u062E\u0637\u0623 \u063A\u064A\u0631 \u0645\u0639\u0631\u0648\u0641
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=\u041D\u044F\u043C\u0430 \u0434\u043E\u0441\u0442\u0430\
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=\u0415\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u0435 \u0437\u0430\u0432\u044A\u0440\u0448\u0435\u043D\u043E \u0438 \u0444\u0430\u0439\u043B\u044A\u0442 \u0435 \u0438\u0437\u0442\u0435\u0433\u043B\u0435\u043D.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=\u0418\u0437\u0442\u0435\u0433\u043B\u0435\u043D\u0438 {0} \u043E\u0442 {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=\u041D\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=El proc\u00E9s d'exportaci\u00F3 s'ha quedat sense mem\u
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=L'exportaci\u00F3 ha finalitzat i l'arxiu s'ha descarregat.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=S''ha descarregat {0} de {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Error desconegut
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=Ponestalo je memorije za proces izvoza i on je prekinut.
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=Izvoz je zavr\u0161en i fajl je prenijet sa servera.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=Prenijeto sa servera {0} od {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Nepoznata gre\u0161ka
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=Procesu exportu do\u0161la pam\u011B\u0165 a byl ukon\u0
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=Export je dokon\u010Den a soubor byl sta\u017Een.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=Sta\u017Eeno {0} z {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Nezn\u00E1m\u00E1 chyba
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=Mae'r broses allgludo wedi rhedeg allan o gof ac mae wed
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=Mae'r broses allgludo wedi dod i ben, ac mae'r ffeil wedi'i llwytho i lawr.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=Wedi lawrlwytho {0} o {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Gwall anhysbys
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=Eksportprocessen l\u00F8b t\u00F8r for hukommelse og ble
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=Eksporten er f\u00E6rdig, og filen er downloadet.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=Downloadede {0} af {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Ukendt fejl
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=Die Speicherkapazit\u00E4t f\u00FCr den Exportvorgang is
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=Der Export wurde abgeschlossen und die Datei wurde heruntergeladen.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE={0} von {1} heruntergeladen.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Unbekannter Fehler
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=\u0397 \u03B4\u03B9\u03B1\u03B4\u03B9\u03BA\u03B1\u03C3\
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=\u0397 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 \u03BA\u03B1\u03B9 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03BB\u03AE\u03C6\u03B8\u03B7\u03BA\u03B5.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=\u039B\u03AE\u03C6\u03B8\u03B7\u03BA\u03B5 {0} \u03B1\u03C0\u03CC {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1
|
|
54
56
|
|
|
@@ -49,6 +49,8 @@ MSG_ERROR_OUT_OF_MEMORY=The export process ran out of memory and was terminated.
|
|
|
49
49
|
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
50
|
MSG_INFO_EXPORT_FINISHED=The export is finished, and the file has been downloaded.
|
|
51
51
|
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=Downloaded {0} of {1}.
|
|
52
54
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
53
55
|
PROGRESS_ERROR_DEFAULT=Unknown error
|
|
54
56
|
|
|
@@ -1,136 +1,211 @@
|
|
|
1
|
+
#This is the resource bundle for the SAPUI5 sap.ui.export library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XBUT: Cancel button in the dialog
|
|
2
5
|
CANCEL_BUTTON=[[[\u0108\u0105\u014B\u010B\u0113\u013A\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
3
6
|
|
|
7
|
+
#XBUT: Close button in the dialog
|
|
4
8
|
CLOSE_BUTTON=[[[\u0108\u013A\u014F\u015F\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
5
9
|
|
|
10
|
+
#XBUT: Export button in the dialog. The meaning is: "Continue" but the first character should not be the same as by "Cancel"
|
|
6
11
|
EXPORT_BUTTON=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
7
12
|
|
|
13
|
+
#XHED: Default title text for the export progress dialog
|
|
8
14
|
PROGRESS_TITLE=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163 \u010E\u014F\u010B\u0171\u0271\u0113\u014B\u0163\u2219\u2219\u2219\u2219]]]
|
|
9
15
|
|
|
16
|
+
#XHED: Default title text for the export warning dialog
|
|
10
17
|
WARNING_TITLE=[[[\u0174\u0105\u0157\u014B\u012F\u014B\u011F\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
11
18
|
|
|
19
|
+
#XMSG: Message text informing that exported data is fetched from the server
|
|
12
20
|
PROGRESS_FETCHING_MSG=[[[\u0191\u0113\u0163\u010B\u0125\u012F\u014B\u011F \u018C\u0105\u0163\u0105 \u0192\u0157\u014F\u0271 \u015F\u0113\u0157\u028B\u0113\u0157...\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
13
21
|
|
|
22
|
+
#XHED: Default title text for the export progress error message box
|
|
14
23
|
PROGRESS_ERROR_TITLE=[[[\u0114\u0157\u0157\u014F\u0157\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
15
24
|
|
|
25
|
+
#XMSG: Message text informing that the exported file is too big
|
|
16
26
|
MSG_WARNING_CELL_COUNT=[[[\u0162\u0125\u0113 \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u010B\u014F\u014B\u0163\u0105\u012F\u014B\u015F {0} \u0157\u014F\u0175\u015F \u0105\u014B\u018C {1} \u010B\u014F\u013A\u0171\u0271\u014B(\u015F) ({2} \u010B\u0113\u013A\u013A\u015F).]]]
|
|
17
27
|
|
|
28
|
+
#XMSG: Part of a message text that informs about the file specific cell limit for exporting
|
|
18
29
|
MSG_WARNING_CELL_LIMIT=[[[\u010E\u014F\u010B\u0171\u0271\u0113\u014B\u0163\u015F \u0175\u012F\u0163\u0125 \u0271\u014F\u0157\u0113 \u0163\u0125\u0105\u014B {0} \u010B\u0113\u013A\u013A\u015F \u0271\u012F\u011F\u0125\u0163 \u0183\u0113 \u0163\u014F\u014F \u013A\u0105\u0157\u011F\u0113 \u0163\u014F \u03C1\u0157\u014F\u010B\u0113\u015F\u015F.]]]
|
|
19
30
|
|
|
31
|
+
#XMSG: Part of a message text that informs about the number of rows which will be exported
|
|
20
32
|
MSG_WARNING_ROW_COUNT=[[[\u0162\u0125\u0113 \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u010B\u014F\u014B\u0163\u0105\u012F\u014B\u015F {0} \u0157\u014F\u0175\u015F.]]]
|
|
21
33
|
|
|
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
|
|
22
35
|
MSG_WARNING_ROW_LIMIT=[[[\u014E\u014B\u013A\u0177 {0} \u0157\u014F\u0175\u015F \u010B\u0105\u014B \u0183\u0113 \u0113\u03C7\u03C1\u014F\u0157\u0163\u0113\u018C \u012F\u014B \u0105 \u015F\u012F\u014B\u011F\u013A\u0113 {1} \u0192\u012F\u013A\u0113.]]]
|
|
23
36
|
|
|
37
|
+
#XMSG: Part of a message text that will be used when the number of rows is unknown
|
|
24
38
|
MSG_WARNING_COUNT_UNKNOWN=[[[\u0162\u0125\u0113 \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u010B\u014F\u014B\u0163\u0105\u012F\u014B\u015F \u0105\u014B \u0171\u014B\u0137\u014B\u014F\u0175\u014B \u014B\u0171\u0271\u0183\u0113\u0157 \u014F\u0192 \u0157\u014F\u0175\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
25
39
|
|
|
26
|
-
|
|
40
|
+
#XMSG: Part of a message text that gives advice on how to proceed
|
|
41
|
+
MSG_WARNING_ADVICE=[[[\u01A4\u013A\u0113\u0105\u015F\u0113 \u018C\u014F \u014B\u014F\u0163 \u03C1\u0157\u014F\u010B\u0113\u0113\u018C \u0171\u014B\u013A\u0113\u015F\u015F \u0177\u014F\u0171 \u0105\u0157\u0113 \u015F\u0171\u0157\u0113 \u0163\u0125\u0105\u0163 \u0163\u0125\u0113 \u010B\u0171\u0157\u0157\u0113\u014B\u0163 \u0192\u012F\u013A\u0163\u0113\u0157 \u015F\u0113\u0163\u0163\u012F\u014B\u011F\u015F \u0175\u012F\u013A\u013A \u014B\u014F\u0163 \u0157\u0113\u015F\u0171\u013A\u0163 \u012F\u014B \u0105 \u013A\u0105\u0157\u011F\u0113 \u0105\u0271\u014F\u0171\u014B\u0163 \u014F\u0192 \u018C\u0105\u0163\u0105, \u0105\u015F \u0163\u0125\u0113 \u0192\u012F\u013A\u0113 \u0271\u012F\u011F\u0125\u0163 \u0183\u0113 \u0163\u014F\u014F \u013A\u0105\u0157\u011F\u0113 \u0163\u014F \u03C1\u0157\u014F\u010B\u0113\u015F\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
27
42
|
|
|
43
|
+
#XMSG: Last sentence of a warning message to ask the user if he/she still wants to export
|
|
28
44
|
MSG_WARNING_EXPORT_ANYWAY=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163 \u0105\u014B\u0177\u0175\u0105\u0177?\u2219\u2219\u2219\u2219\u2219]]]
|
|
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=[[[\u0162\u0125\u0113 \u0113\u03C7\u03C1\u014F\u0157\u0163 \u03C1\u0157\u014F\u010B\u0113\u015F\u015F \u0157\u0105\u014B \u014F\u0171\u0163 \u014F\u0192 \u0271\u0113\u0271\u014F\u0157\u0177 \u0105\u014B\u018C \u0175\u0105\u015F \u0163\u0113\u0157\u0271\u012F\u014B\u0105\u0163\u0113\u018C.\n\u01A4\u013A\u0113\u0105\u015F\u0113 \u0105\u018C\u0135\u0171\u015F\u0163 \u0177\u014F\u0171\u0157 \u010B\u014F\u013A\u0171\u0271\u014B \u014F\u0157 \u0192\u012F\u013A\u0163\u0113\u0157 \u015F\u0113\u0163\u0163\u012F\u014B\u011F\u015F \u0163\u014F \u015F\u0113\u013A\u0113\u010B\u0163 \u0105 \u015F\u0271\u0105\u013A\u013A\u0113\u0157 \u014B\u0171\u0271\u0183\u0113\u0157 \u014F\u0192 \u010B\u0113\u013A\u013A\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
31
48
|
|
|
49
|
+
#XMSG: Screenreader announcement that the export process has been finished.
|
|
50
|
+
MSG_INFO_EXPORT_FINISHED=[[[\u0162\u0125\u0113 \u0113\u03C7\u03C1\u014F\u0157\u0163 \u012F\u015F \u0192\u012F\u014B\u012F\u015F\u0125\u0113\u018C, \u0105\u014B\u018C \u0163\u0125\u0113 \u0192\u012F\u013A\u0113 \u0125\u0105\u015F \u0183\u0113\u0113\u014B \u018C\u014F\u0175\u014B\u013A\u014F\u0105\u018C\u0113\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
51
|
+
|
|
52
|
+
#XMSG: Screenreader announcement that the export is being updated.
|
|
53
|
+
MSG_INFO_EXPORT_UPDATE=[[[\u010E\u014F\u0175\u014B\u013A\u014F\u0105\u018C\u0113\u018C {0} \u014F\u0192 {1}.]]]
|
|
54
|
+
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
32
55
|
PROGRESS_ERROR_DEFAULT=[[[\u016E\u014B\u0137\u014B\u014F\u0175\u014B \u0113\u0157\u0157\u014F\u0157\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
33
56
|
|
|
57
|
+
#XHED: Default title text for the export settings dialog
|
|
34
58
|
EXPORT_SETTINGS_TITLE=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163 \u0100\u015F\u2219\u2219\u2219\u2219\u2219]]]
|
|
35
59
|
|
|
60
|
+
#XFLD: Label for File Name input field
|
|
36
61
|
FILE_NAME=[[[\u0191\u012F\u013A\u0113 \u0143\u0105\u0271\u0113\u2219\u2219\u2219\u2219\u2219]]]
|
|
37
62
|
|
|
63
|
+
#XFLD: Label for the file format Select control
|
|
38
64
|
SELECT_FORMAT=[[[\u0191\u014F\u0157\u0271\u0105\u0163\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
39
65
|
|
|
66
|
+
#XFLD: Split cells with multiple values
|
|
40
67
|
SPLIT_CELLS=[[[\u015C\u03C1\u013A\u012F\u0163 \u010B\u0113\u013A\u013A\u015F \u0175\u012F\u0163\u0125 \u0271\u0171\u013A\u0163\u012F\u03C1\u013A\u0113 \u028B\u0105\u013A\u0171\u0113\u015F\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
41
68
|
|
|
69
|
+
#XFLD: Include filter settings
|
|
42
70
|
INCLUDE_FILTER_SETTINGS=[[[\u012C\u014B\u010B\u013A\u0171\u018C\u0113 \u0192\u012F\u013A\u0163\u0113\u0157 \u015F\u0113\u0163\u0163\u012F\u014B\u011F\u015F\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
43
71
|
|
|
72
|
+
#XFLD: Techincal Information
|
|
44
73
|
TECHNICAL_INFORMATION=[[[\u0162\u0113\u010B\u0125\u014B\u012F\u010B\u0105\u013A \u012C\u014B\u0192\u014F\u0157\u0271\u0105\u0163\u012F\u014F\u014B\u2219\u2219\u2219\u2219\u2219]]]
|
|
45
74
|
|
|
75
|
+
#XFLD: User Information
|
|
46
76
|
USER_NAME=[[[\u016E\u015F\u0113\u0157]]]
|
|
47
77
|
|
|
78
|
+
#XFLD: Creation time
|
|
48
79
|
CREATED_TIME=[[[\u0108\u0157\u0113\u0105\u0163\u012F\u014F\u014B \u0162\u012F\u0271\u0113\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
49
80
|
|
|
81
|
+
#XFLD: Archive format
|
|
50
82
|
ARCHIVE_FORMAT=[[[\u0100\u0157\u010B\u0125\u012F\u028B\u0113 \u0191\u014F\u0157\u0271\u0105\u0163\u2219\u2219\u2219\u2219\u2219]]]
|
|
51
83
|
|
|
84
|
+
#XHED: Header of the filter sheet
|
|
52
85
|
FILTER_HEADER=[[[\u0191\u012F\u013A\u0163\u0113\u0157\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
53
86
|
|
|
87
|
+
#XFLD: Add current date and time to the file name
|
|
54
88
|
ADD_DATE_TIME=[[[\u0100\u018C\u018C \u010B\u0171\u0157\u0157\u0113\u014B\u0163 \u018C\u0105\u0163\u0113 \u0105\u014B\u018C \u0163\u012F\u0271\u0113 \u0163\u014F \u0163\u0125\u0113 \u0192\u012F\u013A\u0113 \u014B\u0105\u0271\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
55
89
|
|
|
90
|
+
#XLST: Spreadsheet file type config for Microsoft Excel specific format
|
|
56
91
|
XLSX_FILETYPE=[[[\u039C\u012F\u010B\u0157\u014F\u015F\u014F\u0192\u0163 \u0114\u03C7\u010B\u0113\u013A (*.\u03C7\u013A\u015F\u03C7)\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
57
92
|
|
|
93
|
+
#XLST: Spreadsheet file type for exporting to Google Sheets
|
|
58
94
|
GSHEET_FILETYPE=[[[\u0122\u014F\u014F\u011F\u013A\u0113 \u015C\u0125\u0113\u0113\u0163\u015F\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
59
95
|
|
|
96
|
+
#XMSG: File name warning text
|
|
60
97
|
FILENAME_WARNING=[[[\u0162\u0125\u0113 \u0192\u012F\u013A\u0113 \u014B\u0105\u0271\u0113 \u0177\u014F\u0171 \u0113\u014B\u0163\u0113\u0157\u0113\u018C \u0113\u03C7\u010B\u0113\u0113\u018C\u015F 100 \u010B\u0125\u0105\u0157\u0105\u010B\u0163\u0113\u0157\u015F. \u0162\u0125\u012F\u015F \u0271\u0105\u0177 \u03C1\u0157\u0113\u028B\u0113\u014B\u0163 \u0163\u0125\u0113 \u015F\u03C1\u0157\u0113\u0105\u018C\u015F\u0125\u0113\u0113\u0163 \u0192\u0157\u014F\u0271 \u014F\u03C1\u0113\u014B\u012F\u014B\u011F \u010B\u014F\u0157\u0157\u0113\u010B\u0163\u013A\u0177.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
61
98
|
|
|
99
|
+
#XFLD: Paper Size
|
|
62
100
|
PAPER_SIZE=[[[\u01A4\u0105\u03C1\u0113\u0157 \u015C\u012F\u017E\u0113\u2219\u2219\u2219\u2219]]]
|
|
63
101
|
|
|
102
|
+
#XFLD: Orientation
|
|
64
103
|
ORIENTATION=[[[\u014E\u0157\u012F\u0113\u014B\u0163\u0105\u0163\u012F\u014F\u014B\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
65
104
|
|
|
105
|
+
#XFLD: Font Size
|
|
66
106
|
FONT_SIZE=[[[\u0191\u014F\u014B\u0163 \u015C\u012F\u017E\u0113\u2219\u2219\u2219\u2219\u2219]]]
|
|
67
107
|
|
|
108
|
+
#XLST: Paper size config for PDF export
|
|
68
109
|
PAPER_SIZE_A4=[[[\u01004\u2219\u2219]]]
|
|
69
110
|
|
|
111
|
+
#XLST: Paper size config for PDF export
|
|
70
112
|
PAPER_SIZE_US_LETTER=[[[\u016E\u015C \u013B\u0113\u0163\u0163\u0113\u0157\u2219\u2219\u2219\u2219\u2219]]]
|
|
71
113
|
|
|
114
|
+
#XLST: Orientation config for PDF export
|
|
72
115
|
ORIENTATION_LAND=[[[\u013B\u0105\u014B\u018C\u015F\u010B\u0105\u03C1\u0113\u2219\u2219\u2219\u2219\u2219]]]
|
|
73
116
|
|
|
117
|
+
#XLST: Orientation config for PDF export
|
|
74
118
|
ORIENTATION_PORT=[[[\u01A4\u014F\u0157\u0163\u0157\u0105\u012F\u0163\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
75
119
|
|
|
120
|
+
#XMSG: Font size error text
|
|
76
121
|
NUMBER_ERROR=[[[\u0162\u0125\u0113 \u028B\u0105\u013A\u0171\u0113 \u015F\u0125\u014F\u0171\u013A\u018C \u0183\u0113 \u0105 \u014B\u0171\u0271\u0183\u0113\u0157.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
77
122
|
|
|
123
|
+
#XFLD: Fit to Page
|
|
78
124
|
ENABLE_ACCESSIBILITY=[[[\u0114\u014B\u0105\u0183\u013A\u0113 \u0100\u010B\u010B\u0113\u015F\u015F\u012F\u0183\u012F\u013A\u012F\u0163\u0177\u2219\u2219\u2219\u2219]]]
|
|
79
125
|
|
|
80
|
-
|
|
126
|
+
#XFLD: Enable Accessibility
|
|
127
|
+
FITTOPAGE=[[[\u0191\u012F\u0163 \u0163\u014F \u01A4\u0105\u011F\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
81
128
|
|
|
129
|
+
#XFLD: Enable Signature
|
|
82
130
|
ENABLE_SIGNATURE=[[[\u0114\u014B\u0105\u0183\u013A\u0113 \u015C\u012F\u011F\u014B\u0105\u0163\u0171\u0157\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
83
131
|
|
|
132
|
+
#XFLD: Show Pagenumber
|
|
84
133
|
SHOW_PAGENUM=[[[\u015C\u0125\u014F\u0175 \u01A4\u0105\u011F\u0113 \u0143\u0171\u0271\u0183\u0113\u0157\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
85
134
|
|
|
135
|
+
#XFLD: Reason for the Signature
|
|
86
136
|
SIGNATURE_REASON=[[[\u0158\u0113\u0105\u015F\u014F\u014B\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
87
137
|
|
|
138
|
+
#XMSG: Message text informing that PDF is generated
|
|
88
139
|
PDF_GENERATION_IN_PROGRESS=[[[\u01A4\u010E\u0191 \u012F\u015F \u0183\u0113\u012F\u014B\u011F \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C\u2219\u2219\u2219\u2219\u2219]]]
|
|
89
140
|
|
|
90
|
-
|
|
141
|
+
#XMSG: Message text informing that there was an error in PDF generation.
|
|
142
|
+
PDF_GENERATION_ERROR=[[[\u0162\u0125\u0113\u0157\u0113 \u0175\u0105\u015F \u0105\u014B \u0113\u0157\u0157\u014F\u0157 \u018C\u0171\u0157\u012F\u014B\u011F \u0163\u0125\u0113 \u01A4\u010E\u0191 \u0113\u03C7\u03C1\u014F\u0157\u0163.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
91
143
|
|
|
144
|
+
#XMSG: Error text informing when PDF generation is failed
|
|
92
145
|
PDF_GENERIC_ERROR=[[[\u0114\u0157\u0157\u014F\u0157 \u018C\u0171\u0157\u012F\u014B\u011F \u01A4\u010E\u0191 \u0113\u03C7\u03C1\u014F\u0157\u0163\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
93
146
|
|
|
147
|
+
#XMSG: File name error text
|
|
94
148
|
FILENAME_ERROR=[[[\u0176\u014F\u0171 \u010B\u0105\u014B\u014B\u014F\u0163 \u0171\u015F\u0113 \u0105\u014B\u0177 \u014F\u0192 \u0163\u0125\u0113 \u0192\u014F\u013A\u013A\u014F\u0175\u012F\u014B\u011F \u010B\u0125\u0105\u0157\u0105\u010B\u0163\u0113\u0157\u015F \u012F\u014B \u0105 \u0192\u012F\u013A\u0113 \u014B\u0105\u0271\u0113\: \\ / \: * ? " < > |\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
95
149
|
|
|
150
|
+
#XMSG: Message text informing that exported file is being created
|
|
96
151
|
PROGRESS_BUNDLE_MSG=[[[\u0122\u0113\u014B\u0113\u0157\u0105\u0163\u012F\u014B\u011F \u0192\u012F\u013A\u0113...\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
97
152
|
|
|
153
|
+
#XTIT: Title of the XLSX document if no title is defined in SpreadSheet settings
|
|
98
154
|
XLSX_DEFAULT_TITLE=[[[\u015C\u0100\u01A4\u016E\u012C5 \u0114\u03C7\u03C1\u014F\u0157\u0163\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
99
155
|
|
|
156
|
+
#XTIT,30: Default label of the data sheet - use less than 31 characters!
|
|
100
157
|
XLSX_DEFAULT_SHEETNAME=[[[\u015C\u0100\u01A4\u016E\u012C5 \u0114\u03C7\u03C1\u014F\u0157\u0163\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
101
158
|
|
|
159
|
+
#XLST: Portable Document Format type config for PDF export
|
|
102
160
|
PDF_FILETYPE=[[[\u01A4\u014F\u0157\u0163\u0105\u0183\u013A\u0113 \u010E\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u0191\u014F\u0157\u0271\u0105\u0163 (*.\u03C1\u018C\u0192)\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
103
161
|
|
|
162
|
+
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
104
163
|
TOOLTIP_PDF_ACCESSIBILITY=[[[\u010E\u0113\u0192\u012F\u014B\u0113\u015F \u0175\u0125\u0113\u0163\u0125\u0113\u0157 \u0163\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u012F\u015F \u0105\u010B\u010B\u0113\u015F\u015F\u012F\u0183\u013A\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
105
164
|
|
|
106
|
-
|
|
165
|
+
#XMSG: Tooltip that explains the show pagenumber checkbox and why it might be disabled
|
|
166
|
+
TOOLTIP_PDF_PAGENUMBER=[[[\u010E\u0113\u0192\u012F\u014B\u0113\u015F \u0175\u0125\u0113\u0163\u0125\u0113\u0157 \u0163\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u010B\u014F\u014B\u0163\u0105\u012F\u014B\u015F \u03C1\u0105\u011F\u0113 \u014B\u0171\u0271\u0183\u0113\u0157\u015F \u012F\u014B \u0163\u0125\u0113 \u0192\u014F\u014F\u0163\u0113\u0157 \u014F\u0192 \u0113\u0105\u010B\u0125 \u03C1\u0105\u011F\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
107
167
|
|
|
168
|
+
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
108
169
|
TOOLTIP_PDF_SIGNATURE=[[[\u010E\u0113\u0192\u012F\u014B\u0113\u015F \u0175\u0125\u0113\u0163\u0125\u0113\u0157 \u0163\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u012F\u015F \u015F\u012F\u011F\u014B\u0113\u018C \u0175\u012F\u0163\u0125 \u0105 \u018C\u012F\u011F\u012F\u0163\u0105\u013A \u015F\u012F\u011F\u014B\u0105\u0163\u0171\u0157\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
109
170
|
|
|
171
|
+
#XMSG: Tooltip that explains the FitToPage checkbox and why it might be disabled
|
|
110
172
|
TOOLTIP_FITTOPAGE=[[[\u0162\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u0125\u0105\u015F \u010B\u014F\u014B\u0163\u0113\u014B\u0163 \u0163\u0125\u0105\u0163 \u0192\u012F\u0163\u015F \u0163\u0125\u0113 \u015F\u012F\u017E\u0113 \u014F\u0192 \u0163\u0125\u0113 \u03C1\u0105\u011F\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
111
173
|
|
|
112
|
-
|
|
174
|
+
#XMSG: Tooltip that explains the Archive format checkbox and why it might be disabled
|
|
175
|
+
TOOLTIP_ARCHIVE_FORMAT=[[[\u0162\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u010B\u014F\u014B\u0192\u014F\u0157\u0271\u015F \u0175\u012F\u0163\u0125 \u01A4\u010E\u0191/\u0100.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
113
176
|
|
|
177
|
+
#XMSG: Tooltip that explains the filter settings checkbox and why it might be disabled
|
|
114
178
|
TOOLTIP_FILTER_SETTINGS=[[[\u0162\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163 \u0125\u0105\u015F \u0192\u012F\u013A\u0163\u0113\u0157 \u015F\u0113\u0163\u0163\u012F\u014B\u011F\u015F \u014F\u014B \u0163\u0125\u0113 \u010B\u014F\u028B\u0113\u0157 \u03C1\u0105\u011F\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
115
179
|
|
|
180
|
+
#XMSG: Tooltip that explains the font size input and why it might be disabled
|
|
116
181
|
TOOLTIP_FONT_SIZE=[[[\u010E\u0113\u0192\u012F\u014B\u0113\u015F \u0163\u0125\u0113 \u0192\u014F\u014B\u0163 \u015F\u012F\u017E\u0113 \u014F\u0192 \u0163\u0125\u0113 \u011F\u0113\u014B\u0113\u0157\u0105\u0163\u0113\u018C \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
117
182
|
|
|
183
|
+
#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
|
|
118
184
|
SELECT_DESTINATION=[[[\u010E\u0113\u015F\u0163\u012F\u014B\u0105\u0163\u012F\u014F\u014B\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
119
185
|
|
|
186
|
+
#XLST: This option indicates that the exported file will be saved on the local device
|
|
120
187
|
DESTINATION_LOCAL=[[[\u013B\u014F\u010B\u0105\u013A\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
121
188
|
|
|
189
|
+
#XLST: This option indicates that the exported file will be saved on a remote or cloud file share
|
|
122
190
|
DESTINATION_REMOTE=[[[\u0108\u013A\u014F\u0171\u018C\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
123
191
|
|
|
192
|
+
#XHED: Dialog header for the CloudFilePicker
|
|
124
193
|
DESTINATION_DIALOG_TITLE=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163 \u0162\u014F\u2219\u2219\u2219\u2219\u2219]]]
|
|
125
194
|
|
|
195
|
+
#XMSG: Status text on the progress dialog for transfering the file to the cloud destination
|
|
126
196
|
DESTINATION_DIALOG_STATUS=[[[\u0191\u012F\u013A\u0113 \u012F\u015F \u0183\u0113\u012F\u014B\u011F \u0163\u0157\u0105\u014B\u015F\u0192\u0113\u0157\u0157\u0113\u018C - \u03C1\u013A\u0113\u0105\u015F\u0113 \u0183\u0113 \u03C1\u0105\u0163\u012F\u0113\u014B\u0163...\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
127
197
|
|
|
198
|
+
#XMSG: Error message when exported file could not be transferred
|
|
128
199
|
DESTINATION_TRANSFER_ERROR=[[[\u0191\u012F\u013A\u0113 \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u0163\u0157\u0105\u014B\u015F\u0192\u0113\u0157\u0157\u0113\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
129
200
|
|
|
201
|
+
#XMSG: Succuess message when the file has been saved to the cloud destination
|
|
130
202
|
DESTINATION_TRANSFER_SUCCESS=[[[\u0176\u014F\u0171\u0157 \u0192\u012F\u013A\u0113 \u0125\u0105\u015F \u0183\u0113\u0113\u014B \u015F\u0105\u028B\u0113\u018C \u015F\u0171\u010B\u010B\u0113\u015F\u015F\u0192\u0171\u013A\u013A\u0177.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
131
203
|
|
|
204
|
+
#XMSG: Error message when the user did not select a proper FileShare for storing the file
|
|
132
205
|
DESTINATION_SELECTION_INCOMPLETE=[[[\u0162\u0125\u0113 \u015F\u0113\u013A\u0113\u010B\u0163\u0113\u018C \u0192\u012F\u013A\u0113 \u015F\u0125\u0105\u0157\u0113 \u012F\u015F \u012F\u014B\u028B\u0105\u013A\u012F\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
133
206
|
|
|
207
|
+
#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
|
|
134
208
|
DIALOG_BUTTON_CLOUD_DESTINATION=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163 \u0162\u014F...\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
135
209
|
|
|
136
|
-
|
|
210
|
+
#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
|
|
211
|
+
DESTINATION_ERROR_NOT_GOOGLE=[[[\u0114\u03C7\u03C1\u014F\u0157\u0163\u012F\u014B\u011F \u0105 \u0192\u012F\u013A\u0113 \u0163\u014F \u0122\u014F\u014F\u011F\u013A\u0113 \u015C\u0125\u0113\u0113\u0163\u015F \u0157\u0113\u01A3\u0171\u012F\u0157\u0113\u015F \u0105 \u0122\u014F\u014F\u011F\u013A\u0113 \u0174\u014F\u0157\u0137\u015F\u03C1\u0105\u010B\u0113 \u0105\u015F \u0105 \u0192\u012F\u013A\u0113 \u015F\u0125\u0105\u0157\u0113.\n\u01A4\u013A\u0113\u0105\u015F\u0113 \u015F\u0113\u013A\u0113\u010B\u0163 \u0105 \u018C\u012F\u0192\u0192\u0113\u0157\u0113\u014B\u0163 \u0192\u012F\u013A\u0113 \u0192\u014F\u0157\u0271\u0105\u0163 \u014F\u0157 \u0105 \u018C\u012F\u0192\u0192\u0113\u0157\u0113\u014B\u0163 \u0192\u012F\u013A\u0113 \u015F\u0125\u0105\u0157\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|