@sapui5/sap.ui.export 1.108.24 → 1.108.26
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_en_US_saprigi.properties +60 -60
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @constructor 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.108.
|
|
30
|
+
* @version 1.108.26
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @name sap.ui.export.ExportBase
|
|
@@ -15,7 +15,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
15
15
|
* @constructor The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from a UI5 application.
|
|
16
16
|
*
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.108.
|
|
18
|
+
* @version 1.108.26
|
|
19
19
|
*
|
|
20
20
|
* @since 1.102
|
|
21
21
|
* @name sap.ui.export.ExportHandler
|
|
@@ -132,7 +132,7 @@ sap.ui.define([
|
|
|
132
132
|
* Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
133
133
|
*
|
|
134
134
|
* @author SAP SE
|
|
135
|
-
* @version 1.108.
|
|
135
|
+
* @version 1.108.26
|
|
136
136
|
*
|
|
137
137
|
* @since 1.59
|
|
138
138
|
* @name sap.ui.export.ExportUtils
|
|
@@ -1141,7 +1141,7 @@ sap.ui.define([
|
|
|
1141
1141
|
*
|
|
1142
1142
|
* @param {object} oContext Context object
|
|
1143
1143
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1144
|
-
* @param {string} [oContext.version] Application version (default: "1.108.
|
|
1144
|
+
* @param {string} [oContext.version] Application version (default: "1.108.26")
|
|
1145
1145
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1146
1146
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1147
1147
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @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.
|
|
18
18
|
*
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.108.
|
|
20
|
+
* @version 1.108.26
|
|
21
21
|
*
|
|
22
22
|
* @since 1.96
|
|
23
23
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -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.108.
|
|
86
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.108.26")</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.108.
|
|
169
|
+
* version: '1.108.26',
|
|
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.108.
|
|
281
|
+
* @version 1.108.26
|
|
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
|
* @alias sap.ui.export
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.108.
|
|
20
|
+
* @version 1.108.26
|
|
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.108.
|
|
36
|
+
version: "1.108.26"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
|
|
@@ -2,181 +2,181 @@
|
|
|
2
2
|
#
|
|
3
3
|
|
|
4
4
|
#XBUT: Cancel button in the dialog
|
|
5
|
-
CANCEL_BUTTON=\u206A\u206A\u206A\
|
|
5
|
+
CANCEL_BUTTON=\u206A\u206A\u206A\u200C\u200B\u200B\u200B\u200D\u200C\u200B\u200B\u200D\u200D\u200D\u200B\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200B\u200B\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200D\u200C\u200D\u200B\u200C\u200B\u200B\u200C\u200D\u200C\u200D\u200D\u206ACancel\u206A\u206A
|
|
6
6
|
|
|
7
7
|
#XBUT: Close button in the dialog
|
|
8
|
-
CLOSE_BUTTON=\u206A\u206A\u206A\
|
|
8
|
+
CLOSE_BUTTON=\u206A\u206A\u206A\u200D\u200D\u200D\u200B\u200B\u200B\u200D\u200C\u200C\u200D\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200B\u200D\u200C\u200B\u200C\u200C\u200D\u200D\u200C\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200D\u200C\u206AClose\u206A\u206A
|
|
9
9
|
|
|
10
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=\u206A\u206A\u206A\
|
|
11
|
+
EXPORT_BUTTON=\u206A\u206A\u206A\u200D\u200B\u200C\u200B\u200D\u200B\u200D\u200C\u200C\u200D\u200C\u200C\u200B\u200D\u200B\u200D\u200B\u200D\u200B\u200D\u200B\u200B\u200C\u200B\u200D\u200C\u200D\u200C\u200B\u200C\u200D\u200C\u200B\u200C\u200C\u200D\u200B\u200B\u200D\u200D\u206AExport\u206A\u206A
|
|
12
12
|
|
|
13
13
|
#XHED: Default title text for the export progress dialog
|
|
14
|
-
PROGRESS_TITLE=\u206A\u206A\u206A\u200C\u200C\u200D\
|
|
14
|
+
PROGRESS_TITLE=\u206A\u206A\u206A\u200C\u200C\u200C\u200D\u200C\u200B\u200B\u200D\u200C\u200D\u200B\u200D\u200C\u200B\u200C\u200B\u200B\u200C\u200C\u200B\u200D\u200D\u200B\u200D\u200C\u200B\u200B\u200B\u200D\u200D\u200B\u200D\u200B\u200C\u200C\u200C\u200D\u200C\u200C\u206AExport Document\u206A\u206A
|
|
15
15
|
|
|
16
16
|
#XMSG: Message text informing that exported data is fetched from the server
|
|
17
|
-
PROGRESS_FETCHING_MSG=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\
|
|
17
|
+
PROGRESS_FETCHING_MSG=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200B\u200C\u200D\u200B\u200D\u200C\u200C\u200B\u200D\u200D\u200C\u200C\u200C\u200B\u200B\u200C\u200B\u200C\u200B\u200B\u200D\u200B\u200C\u200B\u200D\u200D\u200B\u200C\u200C\u206AFetching data from server...\u206A\u206A
|
|
18
18
|
|
|
19
19
|
#XHED: Default title text for the export progress error message box
|
|
20
|
-
PROGRESS_ERROR_TITLE=\u206A\u206A\u206A\u200D\
|
|
20
|
+
PROGRESS_ERROR_TITLE=\u206A\u206A\u206A\u200D\u200C\u200B\u200B\u200C\u200D\u200B\u200C\u200D\u200D\u200B\u200D\u200B\u200B\u200B\u200D\u200C\u200D\u200C\u200D\u200D\u200D\u200B\u200C\u200D\u200B\u200B\u200C\u200B\u200D\u200D\u200B\u200C\u200D\u200B\u200B\u200C\u200D\u200D\u200C\u206AError\u206A\u206A
|
|
21
21
|
|
|
22
22
|
#XMSG: Message text informing that an error has occurred during export
|
|
23
|
-
PROGRESS_ERROR_MSG=\u206A\u206A\u206A\u200C\
|
|
23
|
+
PROGRESS_ERROR_MSG=\u206A\u206A\u206A\u200C\u200C\u200D\u200C\u200B\u200B\u200B\u200C\u200C\u200C\u200C\u200C\u200C\u200C\u200C\u200D\u200C\u200B\u200B\u200B\u200D\u200B\u200B\u200D\u200D\u200B\u200B\u200D\u200B\u200C\u200C\u200D\u200C\u200D\u200D\u200D\u200D\u200C\u200B\u200B\u206AThe following error has occurred during export\:\u206A\u206A
|
|
24
24
|
|
|
25
25
|
#XMSG: Message text informing that the exported file is too big
|
|
26
|
-
SIZE_WARNING_MSG=\u206A\u206A\u206A\u200C\
|
|
26
|
+
SIZE_WARNING_MSG=\u206A\u206A\u206A\u200D\u200C\u200D\u200C\u200C\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200D\u200D\u200B\u200B\u200C\u200D\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u200D\u200B\u200C\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200B\u200C\u200D\u200D\u206AThe exported document with \u200B\u200B\u200B{0}\u200C\u200C\u200C rows and \u200B\u200B\u200B{1}\u200C\u200C\u200C columns is too big.\nThe memory capacity of the application might be exceeded.\nCancel and select a smaller data set for the export.\u206A\u206A
|
|
27
27
|
|
|
28
28
|
#XMSG: Message text informing that the amount of items is too large to be exported in a single spreadsheet and the export is being cut off to maximum allowed amount of 1,048,576.
|
|
29
|
-
MSG_WARNING_CUT_OFF=\u206A\u206A\u206A\u200C\
|
|
29
|
+
MSG_WARNING_CUT_OFF=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200C\u200B\u200C\u200C\u200C\u200C\u200C\u200C\u200B\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200C\u200C\u200B\u200C\u200C\u200B\u200C\u200B\u200D\u200C\u200B\u200D\u200B\u200D\u200B\u200B\u200B\u200C\u200C\u200D\u200D\u206AThe number of rows (\u200B\u200B\u200B{0}\u200C\u200C\u200C) exceeds the maximum number of rows that you can export per spreadsheet (1,048,576).\nIf you proceed, the export will be cut off to match the maximum number.\u206A\u206A
|
|
30
30
|
|
|
31
31
|
#XMSG: Textual representation of the technical error message which indicates that the export ran out of memory.
|
|
32
|
-
MSG_ERROR_OUT_OF_MEMORY=\u206A\u206A\u206A\
|
|
32
|
+
MSG_ERROR_OUT_OF_MEMORY=\u206A\u206A\u206A\u200D\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200D\u200B\u200D\u200D\u200D\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200D\u200B\u200B\u200C\u200C\u200C\u200C\u200D\u200C\u200C\u200B\u206AThe export process ran out of memory and was terminated.\nPlease adjust your column or filter settings to select a smaller number of cells.\u206A\u206A
|
|
33
33
|
|
|
34
34
|
#XMSG: Message text informing that the original error message is empty or no specific error provided
|
|
35
|
-
PROGRESS_ERROR_DEFAULT=\u206A\u206A\u206A\u200C\u200B\u200B\
|
|
35
|
+
PROGRESS_ERROR_DEFAULT=\u206A\u206A\u206A\u200C\u200B\u200B\u200D\u200C\u200C\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200D\u200B\u200C\u200C\u200B\u200B\u200C\u200B\u200D\u200C\u200D\u200D\u200D\u200D\u200C\u200B\u200C\u200C\u200D\u200D\u200C\u200C\u200D\u200B\u200C\u200C\u200B\u200D\u206AUnknown error\u206A\u206A
|
|
36
36
|
|
|
37
37
|
#XHED: Default title text for the export settings dialog
|
|
38
|
-
EXPORT_SETTINGS_TITLE=\u206A\u206A\u206A\u200C\
|
|
38
|
+
EXPORT_SETTINGS_TITLE=\u206A\u206A\u206A\u200C\u200C\u200C\u200B\u200C\u200C\u200D\u200D\u200B\u200B\u200C\u200C\u200D\u200C\u200C\u200C\u200C\u200D\u200D\u200C\u200B\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u200D\u200C\u200B\u200C\u200D\u200C\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u206AExport As\u206A\u206A
|
|
39
39
|
|
|
40
40
|
#XFLD: Label for File Name input field
|
|
41
|
-
FILE_NAME=\u206A\u206A\u206A\u200C\u200C\
|
|
41
|
+
FILE_NAME=\u206A\u206A\u206A\u200C\u200C\u200B\u200D\u200B\u200C\u200B\u200B\u200D\u200D\u200D\u200C\u200B\u200B\u200C\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200B\u200C\u200B\u200B\u200C\u200B\u200B\u200C\u200C\u200B\u200B\u200C\u200C\u200B\u200D\u200D\u200C\u200C\u206AFile Name\u206A\u206A
|
|
42
42
|
|
|
43
43
|
#XFLD: Label for the file format Select control
|
|
44
|
-
SELECT_FORMAT=\u206A\u206A\u206A\u200C\u200B\
|
|
44
|
+
SELECT_FORMAT=\u206A\u206A\u206A\u200C\u200B\u200C\u200B\u200D\u200D\u200B\u200D\u200B\u200D\u200C\u200B\u200C\u200B\u200B\u200C\u200B\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200C\u200B\u200D\u200C\u200D\u200B\u200B\u200D\u200B\u200B\u200B\u200B\u200C\u200B\u200D\u206AFormat\u206A\u206A
|
|
45
45
|
|
|
46
46
|
#XFLD: Split cells with multiple values
|
|
47
|
-
SPLIT_CELLS=\u206A\u206A\u206A\u200C\
|
|
47
|
+
SPLIT_CELLS=\u206A\u206A\u206A\u200C\u200C\u200D\u200D\u200D\u200D\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200D\u200C\u200C\u200C\u200D\u200C\u200C\u200B\u200B\u200C\u200B\u200B\u200C\u200B\u200D\u200D\u200D\u200C\u200C\u200C\u200C\u200B\u200B\u200C\u200B\u200D\u200D\u206ASplit cells with multiple values\u206A\u206A
|
|
48
48
|
|
|
49
49
|
#XFLD: Include filter settings
|
|
50
|
-
INCLUDE_FILTER_SETTINGS=\u206A\u206A\u206A\u200C\u200B\u200C\u200C\u200B\u200C\
|
|
50
|
+
INCLUDE_FILTER_SETTINGS=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200C\u200D\u200D\u200B\u200D\u200C\u200C\u200C\u200B\u200D\u200C\u200B\u200C\u200D\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200B\u200D\u200D\u200B\u200C\u200D\u200C\u200C\u206AInclude filter settings\u206A\u206A
|
|
51
51
|
|
|
52
52
|
#XFLD: Techincal Information
|
|
53
|
-
TECHNICAL_INFORMATION=\u206A\u206A\u206A\u200C\u200C\
|
|
53
|
+
TECHNICAL_INFORMATION=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u200C\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u200C\u200B\u200B\u200C\u200D\u200D\u200B\u200B\u200B\u200C\u200D\u200C\u200C\u200C\u200B\u200D\u200D\u200C\u200D\u200B\u200B\u200B\u200B\u200C\u200C\u206ATechnical Information\u206A\u206A
|
|
54
54
|
|
|
55
55
|
#XFLD: User Information
|
|
56
|
-
USER_NAME=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200B\u200C\u200C\u200B\u200B\u200C\u200B\u200D\
|
|
56
|
+
USER_NAME=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200B\u200D\u200B\u200D\u200C\u200C\u200B\u200C\u200C\u200B\u200B\u200D\u200C\u200B\u200D\u200B\u200D\u200C\u200C\u200D\u200C\u200D\u200C\u200D\u200B\u200B\u200C\u200C\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u200D\u200C\u206AUser\u206A\u206A
|
|
57
57
|
|
|
58
58
|
#XFLD: Creation time
|
|
59
|
-
CREATED_TIME=\u206A\u206A\u206A\u200C\u200B\u200B\u200B\u200B\u200D\
|
|
59
|
+
CREATED_TIME=\u206A\u206A\u206A\u200C\u200B\u200B\u200C\u200C\u200D\u200D\u200B\u200B\u200D\u200D\u200B\u200B\u200C\u200D\u200C\u200D\u200C\u200C\u200D\u200D\u200B\u200C\u200C\u200B\u200D\u200D\u200D\u200B\u200B\u200D\u200C\u200C\u200B\u200B\u200C\u200C\u200D\u200D\u200D\u200C\u206ACreation Time\u206A\u206A
|
|
60
60
|
|
|
61
61
|
#XFLD: Archive format
|
|
62
|
-
ARCHIVE_FORMAT=\u206A\u206A\u206A\
|
|
62
|
+
ARCHIVE_FORMAT=\u206A\u206A\u206A\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200B\u200B\u200C\u200C\u200B\u200C\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200C\u200B\u200C\u200C\u200D\u200D\u200B\u200B\u200D\u200D\u200B\u200C\u200B\u200C\u200C\u200D\u200B\u200B\u200B\u206AArchive Format\u206A\u206A
|
|
63
63
|
|
|
64
64
|
#XHED: Header of the filter sheet
|
|
65
|
-
FILTER_HEADER=\u206A\u206A\u206A\u200C\u200C\
|
|
65
|
+
FILTER_HEADER=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200C\u200D\u200B\u200C\u200D\u200B\u200D\u200D\u200C\u200C\u200D\u200B\u200C\u200D\u200B\u200C\u200D\u200B\u200D\u200D\u200D\u200D\u200C\u200C\u200B\u200B\u200D\u200C\u200D\u200B\u200B\u200B\u200B\u200D\u200C\u200D\u200B\u206AFilter\u206A\u206A
|
|
66
66
|
|
|
67
67
|
#XFLD: Add current date and time to the file name
|
|
68
|
-
ADD_DATE_TIME=\u206A\u206A\u206A\u200C\u200B\u200D\u200B\u200C\u200C\u200C\u200B\
|
|
68
|
+
ADD_DATE_TIME=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200B\u200C\u200C\u200C\u200B\u200B\u200D\u200C\u200C\u200D\u200C\u200D\u200D\u200D\u200C\u200B\u200D\u200D\u200C\u200C\u200D\u200B\u200B\u200B\u200B\u200C\u200D\u200D\u200C\u200C\u200C\u200C\u200C\u200D\u200C\u200D\u200C\u206AAdd current date and time to the file name\u206A\u206A
|
|
69
69
|
|
|
70
70
|
#XLST: Spreadsheet file type config for Microsoft Excel specific format
|
|
71
|
-
XLSX_FILETYPE=\u206A\u206A\u206A\
|
|
71
|
+
XLSX_FILETYPE=\u206A\u206A\u206A\u200D\u200B\u200D\u200D\u200B\u200C\u200B\u200C\u200C\u200B\u200D\u200D\u200B\u200B\u200C\u200C\u200D\u200B\u200D\u200C\u200B\u200B\u200C\u200D\u200D\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200D\u200B\u200B\u200C\u200B\u200D\u200C\u206AMicrosoft Excel (*.xlsx)\u206A\u206A
|
|
72
72
|
|
|
73
73
|
#XLST: Spreadsheet file type for exporting to Google Sheets
|
|
74
|
-
GSHEET_FILETYPE=\u206A\u206A\u206A\u200C\u200D\
|
|
74
|
+
GSHEET_FILETYPE=\u206A\u206A\u206A\u200D\u200C\u200D\u200D\u200C\u200B\u200D\u200D\u200B\u200B\u200D\u200B\u200C\u200D\u200B\u200D\u200D\u200C\u200B\u200D\u200C\u200C\u200B\u200D\u200C\u200C\u200B\u200D\u200D\u200C\u200C\u200B\u200D\u200C\u200D\u200C\u200C\u200B\u200C\u206AGoogle Sheets\u206A\u206A
|
|
75
75
|
|
|
76
76
|
#XMSG: File name warning text
|
|
77
|
-
FILENAME_WARNING=\u206A\u206A\u206A\u200D\u200D\
|
|
77
|
+
FILENAME_WARNING=\u206A\u206A\u206A\u200D\u200B\u200B\u200D\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u200B\u200B\u200B\u200D\u200D\u200C\u200C\u200D\u200B\u200B\u200C\u200C\u200B\u200D\u200B\u200B\u200D\u200D\u200D\u200B\u200B\u200B\u200D\u200B\u200B\u200D\u206AThe file name you entered exceeds 100 characters. This may prevent the spreadsheet from opening correctly.\u206A\u206A
|
|
78
78
|
|
|
79
79
|
#XFLD: Paper Size
|
|
80
|
-
PAPER_SIZE=\u206A\u206A\u206A\
|
|
80
|
+
PAPER_SIZE=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200B\u200C\u200D\u200C\u200C\u200B\u200D\u200B\u200C\u200B\u200D\u200C\u200B\u200C\u200C\u200B\u200C\u200D\u200D\u200D\u200B\u200D\u200C\u200D\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200C\u200B\u200D\u200C\u200C\u206APaper Size\u206A\u206A
|
|
81
81
|
|
|
82
82
|
#XFLD: Orientation
|
|
83
|
-
ORIENTATION=\u206A\u206A\u206A\u200C\u200B\
|
|
83
|
+
ORIENTATION=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200B\u200C\u200C\u200D\u200B\u200D\u200B\u200B\u200D\u200D\u200B\u200B\u200D\u200B\u200D\u200D\u200C\u200D\u200C\u200C\u200C\u200D\u200B\u200B\u200D\u200B\u200B\u200B\u200C\u200B\u200D\u200C\u200C\u200C\u200D\u200C\u200C\u206AOrientation\u206A\u206A
|
|
84
84
|
|
|
85
85
|
#XFLD: Font Size
|
|
86
|
-
FONT_SIZE=\u206A\u206A\u206A\
|
|
86
|
+
FONT_SIZE=\u206A\u206A\u206A\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200C\u200B\u200B\u200C\u200C\u200B\u200D\u200C\u200B\u200C\u200B\u200C\u200B\u200B\u200B\u200C\u200C\u200B\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u200C\u200D\u200C\u200D\u200D\u206AFont Size\u206A\u206A
|
|
87
87
|
|
|
88
88
|
#XLST: Paper size config for PDF export
|
|
89
|
-
PAPER_SIZE_A4=\u206A\u206A\u206A\u200D\u200D\u200D\u200C\u200D\
|
|
89
|
+
PAPER_SIZE_A4=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200D\u200D\u200B\u200C\u200D\u200D\u200B\u200C\u200C\u200B\u200C\u200B\u200B\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200B\u200D\u200B\u200D\u200D\u200D\u200C\u200B\u200D\u200D\u200C\u200D\u200D\u200C\u200C\u200C\u200B\u206AA4\u206A\u206A
|
|
90
90
|
|
|
91
91
|
#XLST: Paper size config for PDF export
|
|
92
|
-
PAPER_SIZE_US_LETTER=\u206A\u206A\u206A\
|
|
92
|
+
PAPER_SIZE_US_LETTER=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200C\u200B\u200D\u200D\u200D\u200D\u200B\u200C\u200D\u200C\u200C\u200B\u200D\u200C\u200D\u200D\u200D\u200D\u200D\u200C\u200D\u200C\u200B\u200B\u200D\u200C\u200D\u200C\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200D\u206AUS Letter\u206A\u206A
|
|
93
93
|
|
|
94
94
|
#XLST: Orientation config for PDF export
|
|
95
|
-
ORIENTATION_LAND=\u206A\u206A\u206A\u200D\
|
|
95
|
+
ORIENTATION_LAND=\u206A\u206A\u206A\u200D\u200B\u200C\u200C\u200D\u200B\u200D\u200D\u200C\u200B\u200D\u200C\u200C\u200B\u200C\u200C\u200B\u200D\u200C\u200D\u200D\u200D\u200D\u200B\u200C\u200B\u200B\u200D\u200D\u200D\u200D\u200B\u200C\u200D\u200C\u200B\u200B\u200B\u200D\u200D\u206ALandscape\u206A\u206A
|
|
96
96
|
|
|
97
97
|
#XLST: Orientation config for PDF export
|
|
98
|
-
ORIENTATION_PORT=\u206A\u206A\u206A\u200D\u200D\u200D\u200B\u200D\u200B\u200D\u200D\u200D\
|
|
98
|
+
ORIENTATION_PORT=\u206A\u206A\u206A\u200D\u200C\u200D\u200D\u200C\u200B\u200C\u200C\u200D\u200B\u200C\u200C\u200D\u200D\u200D\u200C\u200B\u200C\u200C\u200C\u200D\u200D\u200C\u200D\u200C\u200C\u200D\u200B\u200B\u200B\u200B\u200C\u200D\u200D\u200B\u200B\u200B\u200C\u200D\u200D\u206APortrait\u206A\u206A
|
|
99
99
|
|
|
100
100
|
#XMSG: Font size error text
|
|
101
|
-
NUMBER_ERROR=\u206A\u206A\u206A\u200C\u200B\
|
|
101
|
+
NUMBER_ERROR=\u206A\u206A\u206A\u200C\u200B\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200D\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200B\u200C\u200B\u200B\u200C\u200D\u200B\u200D\u200C\u200B\u200D\u200C\u200C\u200C\u200B\u200B\u200B\u200B\u200C\u200B\u200C\u200B\u200B\u206AThe value should be a number.\u206A\u206A
|
|
102
102
|
|
|
103
103
|
#XFLD: Fit to Page
|
|
104
|
-
ENABLE_ACCESSIBILITY=\u206A\u206A\u206A\u200C\
|
|
104
|
+
ENABLE_ACCESSIBILITY=\u206A\u206A\u206A\u200C\u200B\u200D\u200B\u200D\u200B\u200D\u200C\u200D\u200D\u200B\u200D\u200B\u200D\u200C\u200C\u200B\u200C\u200C\u200C\u200C\u200D\u200D\u200D\u200C\u200D\u200D\u200B\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200D\u200D\u200D\u200B\u200C\u200B\u206AEnable Accessibility\u206A\u206A
|
|
105
105
|
|
|
106
106
|
#XFLD: Enable Accessibility
|
|
107
|
-
FITTOPAGE=\u206A\u206A\u206A\
|
|
107
|
+
FITTOPAGE=\u206A\u206A\u206A\u200C\u200B\u200B\u200C\u200D\u200D\u200C\u200D\u200C\u200D\u200D\u200D\u200C\u200B\u200B\u200B\u200B\u200C\u200D\u200C\u200B\u200D\u200B\u200C\u200B\u200C\u200D\u200C\u200C\u200C\u200B\u200D\u200B\u200C\u200C\u200C\u200B\u200D\u200C\u200D\u200B\u206AFit to Page\u206A\u206A
|
|
108
108
|
|
|
109
109
|
#XFLD: Enable Signature
|
|
110
|
-
ENABLE_SIGNATURE=\u206A\u206A\u206A\u200D\u200B\u200C\u200B\u200D\u200D\u200D\u200D\u200B\u200D\
|
|
110
|
+
ENABLE_SIGNATURE=\u206A\u206A\u206A\u200C\u200D\u200B\u200C\u200C\u200B\u200D\u200D\u200D\u200D\u200B\u200D\u200D\u200B\u200D\u200B\u200B\u200D\u200C\u200C\u200D\u200D\u200D\u200D\u200C\u200D\u200D\u200B\u200B\u200B\u200B\u200B\u200C\u200B\u200D\u200D\u200C\u200C\u200C\u200C\u206AEnable Signature\u206A\u206A
|
|
111
111
|
|
|
112
112
|
#XFLD: Reason for the Signature
|
|
113
|
-
SIGNATURE_REASON=\u206A\u206A\u206A\u200C\u200D\
|
|
113
|
+
SIGNATURE_REASON=\u206A\u206A\u206A\u200C\u200B\u200D\u200D\u200D\u200D\u200C\u200D\u200D\u200D\u200B\u200B\u200D\u200C\u200D\u200D\u200B\u200B\u200C\u200D\u200C\u200D\u200C\u200C\u200B\u200C\u200D\u200B\u200B\u200C\u200C\u200B\u200D\u200D\u200B\u200C\u200B\u200C\u200B\u200D\u200C\u206AReason\u206A\u206A
|
|
114
114
|
|
|
115
115
|
#XMSG: Message text informing that PDF is generated
|
|
116
|
-
PDF_GENERATION_IN_PROGRESS=\u206A\u206A\u206A\u200C\
|
|
116
|
+
PDF_GENERATION_IN_PROGRESS=\u206A\u206A\u206A\u200D\u200C\u200C\u200C\u200D\u200B\u200C\u200B\u200C\u200D\u200D\u200B\u200D\u200B\u200D\u200D\u200C\u200C\u200D\u200C\u200D\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u200B\u200B\u200B\u200B\u200D\u200B\u200B\u200B\u200D\u200C\u206APDF is being generated\u206A\u206A
|
|
117
117
|
|
|
118
118
|
#XMSG: File name error text
|
|
119
|
-
FILENAME_ERROR=\u206A\u206A\u206A\
|
|
119
|
+
FILENAME_ERROR=\u206A\u206A\u206A\u200D\u200B\u200B\u200C\u200C\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u200D\u200B\u200D\u200D\u200C\u200D\u200C\u200C\u200B\u200C\u200C\u200B\u200B\u200C\u200C\u200B\u200D\u200C\u200C\u200C\u200B\u200D\u200D\u200D\u206AYou cannot use any of the following characters in a file name\: \\ / \: * ? " < > |\u206A\u206A
|
|
120
120
|
|
|
121
121
|
#XMSG: Message text informing that exported file is being created
|
|
122
|
-
PROGRESS_BUNDLE_MSG=\u206A\u206A\u206A\u200C\
|
|
122
|
+
PROGRESS_BUNDLE_MSG=\u206A\u206A\u206A\u200C\u200D\u200C\u200B\u200B\u200D\u200D\u200D\u200B\u200C\u200B\u200C\u200D\u200D\u200B\u200B\u200B\u200B\u200B\u200D\u200B\u200B\u200C\u200D\u200B\u200B\u200D\u200C\u200B\u200B\u200B\u200C\u200D\u200B\u200B\u200D\u200C\u200D\u200C\u206AGenerating file...\u206A\u206A
|
|
123
123
|
|
|
124
124
|
#XMSG: Message text informing that the exported file size cannot be predicted
|
|
125
|
-
NO_COUNT_WARNING_MSG=\u206A\u206A\u206A\
|
|
125
|
+
NO_COUNT_WARNING_MSG=\u206A\u206A\u206A\u200D\u200B\u200B\u200C\u200D\u200B\u200B\u200B\u200D\u200D\u200B\u200B\u200B\u200B\u200D\u200D\u200C\u200C\u200B\u200D\u200B\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u200D\u200D\u200C\u200D\u200B\u200C\u200C\u200D\u200C\u200C\u200C\u200B\u206AThere 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.\u206A\u206A
|
|
126
126
|
|
|
127
127
|
#XTIT: Title of the XLSX document if no title is defined in SpreadSheet settings
|
|
128
|
-
XLSX_DEFAULT_TITLE=\u206A\u206A\u206A\u200C\u200B\
|
|
128
|
+
XLSX_DEFAULT_TITLE=\u206A\u206A\u206A\u200C\u200B\u200B\u200B\u200D\u200B\u200D\u200C\u200D\u200C\u200C\u200D\u200C\u200C\u200C\u200B\u200D\u200B\u200C\u200B\u200C\u200B\u200D\u200B\u200B\u200D\u200D\u200C\u200B\u200B\u200D\u200D\u200B\u200B\u200C\u200D\u200D\u200B\u200D\u200C\u200C\u206ASAPUI5 Export\u206A\u206A
|
|
129
129
|
|
|
130
130
|
#XTIT,30: Default label of the data sheet - use less than 31 characters!
|
|
131
|
-
XLSX_DEFAULT_SHEETNAME=\u206A\u206A\u206A\u200C\
|
|
131
|
+
XLSX_DEFAULT_SHEETNAME=\u206A\u206A\u206A\u200C\u200D\u200D\u200C\u200C\u200B\u200D\u200B\u200B\u200B\u200D\u200B\u200C\u200C\u200B\u200B\u200B\u200B\u200C\u200B\u200D\u200B\u200B\u200B\u200B\u200C\u200C\u200D\u200B\u200D\u200C\u200C\u200B\u200C\u200B\u200B\u200D\u200D\u200C\u200D\u206ASAPUI5 Export\u206A\u206A
|
|
132
132
|
|
|
133
133
|
#XLST: Portable Document Format type config for PDF export
|
|
134
|
-
PDF_FILETYPE=\u206A\u206A\u206A\u200C\u200B\u200C\
|
|
134
|
+
PDF_FILETYPE=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u200B\u200B\u200C\u200D\u200B\u200C\u200D\u200B\u200D\u200B\u200B\u200D\u200B\u200B\u200C\u200D\u200D\u200C\u200B\u200B\u200D\u200B\u200C\u200B\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u200C\u206APortable Document Format (*.pdf)\u206A\u206A
|
|
135
135
|
|
|
136
136
|
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
137
|
-
TOOLTIP_PDF_ACCESSIBILITY=\u206A\u206A\u206A\u200C\u200B\u200D\
|
|
137
|
+
TOOLTIP_PDF_ACCESSIBILITY=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200B\u200B\u200D\u200B\u200D\u200D\u200D\u200C\u200D\u200C\u200B\u200D\u200B\u200D\u200C\u200C\u200C\u200B\u200D\u200D\u200B\u200B\u200C\u200D\u200D\u200C\u200C\u200B\u200C\u206ADefines whether the generated document is accessible. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
138
138
|
|
|
139
139
|
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
140
|
-
TOOLTIP_PDF_SIGNATURE=\u206A\u206A\u206A\
|
|
140
|
+
TOOLTIP_PDF_SIGNATURE=\u206A\u206A\u206A\u200D\u200B\u200D\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200C\u200D\u200B\u200D\u200D\u200D\u200B\u200D\u200C\u200B\u200B\u200C\u200B\u200C\u200C\u200C\u200D\u200D\u200C\u200C\u200D\u200C\u200C\u200C\u200C\u200B\u200B\u206ADefines whether the generated document is signed with a digital signature. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
141
141
|
|
|
142
142
|
#XMSG: Tooltip that explains the FitToPage checkbox and why it might be disabled
|
|
143
|
-
TOOLTIP_FITTOPAGE=\u206A\u206A\u206A\u200C\u200C\
|
|
143
|
+
TOOLTIP_FITTOPAGE=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200B\u200D\u200C\u200C\u200B\u200B\u200D\u200C\u200C\u200B\u200D\u200B\u200C\u200B\u200C\u200B\u200B\u200D\u200B\u200D\u200C\u200B\u200C\u200D\u200C\u200C\u200D\u200B\u200B\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200C\u206AThe generated document will have content that fits to the size of the page. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
144
144
|
|
|
145
145
|
#XMSG: Tooltip that explains the Archive format checkbox and why it might be disabled
|
|
146
|
-
TOOLTIP_ARCHIVE_FORMAT=\u206A\u206A\u206A\u200D\
|
|
146
|
+
TOOLTIP_ARCHIVE_FORMAT=\u206A\u206A\u206A\u200D\u200C\u200C\u200D\u200B\u200B\u200D\u200B\u200C\u200B\u200D\u200D\u200D\u200D\u200C\u200C\u200B\u200C\u200B\u200C\u200B\u200D\u200D\u200D\u200B\u200C\u200B\u200B\u200D\u200B\u200B\u200B\u200D\u200D\u200D\u200C\u200C\u200D\u200D\u206AThe generated document will conform with PDF/A. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
147
147
|
|
|
148
148
|
#XMSG: Tooltip that explains the filter settings checkbox and why it might be disabled
|
|
149
|
-
TOOLTIP_FILTER_SETTINGS=\u206A\u206A\u206A\u200C\u200C\u200C\u200B\u200C\u200D\
|
|
149
|
+
TOOLTIP_FILTER_SETTINGS=\u206A\u206A\u206A\u200C\u200B\u200C\u200C\u200D\u200B\u200C\u200D\u200B\u200D\u200B\u200C\u200B\u200C\u200D\u200B\u200D\u200D\u200B\u200B\u200B\u200C\u200B\u200D\u200D\u200D\u200C\u200D\u200B\u200B\u200B\u200B\u200D\u200C\u200B\u200B\u200B\u200B\u200C\u200B\u200C\u206AThe generated document will have filter settings in the cover page. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
150
150
|
|
|
151
151
|
#XMSG: Tooltip that explains the font size input and why it might be disabled
|
|
152
|
-
TOOLTIP_FONT_SIZE=\u206A\u206A\u206A\u200C\u200B\
|
|
152
|
+
TOOLTIP_FONT_SIZE=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200B\u200D\u200C\u200D\u200C\u200B\u200C\u200D\u200D\u200C\u200B\u200D\u200B\u200B\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200B\u200B\u200D\u200B\u200D\u200B\u200B\u200B\u200C\u200D\u200D\u200D\u200C\u200B\u200D\u200C\u206ADefines the font size of the generated document. If this option is unavailable, it is not supported by the back-end service.\u206A\u206A
|
|
153
153
|
|
|
154
154
|
#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
|
|
155
|
-
SELECT_DESTINATION=\u206A\u206A\u206A\
|
|
155
|
+
SELECT_DESTINATION=\u206A\u206A\u206A\u200C\u200B\u200B\u200B\u200B\u200C\u200D\u200C\u200C\u200C\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200B\u200B\u200B\u200D\u200B\u200D\u200B\u200C\u200D\u200C\u200C\u200C\u200D\u200C\u200C\u200B\u200D\u206ADestination\u206A\u206A
|
|
156
156
|
|
|
157
157
|
#XLST: This option indicates that the exported file will be saved on the local device
|
|
158
|
-
DESTINATION_LOCAL=\u206A\u206A\u206A\u200C\u200B\u200C\
|
|
158
|
+
DESTINATION_LOCAL=\u206A\u206A\u206A\u200C\u200B\u200C\u200C\u200B\u200C\u200C\u200D\u200B\u200D\u200B\u200D\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200C\u200D\u200D\u200C\u200D\u200C\u200C\u200B\u200C\u200B\u200D\u200B\u200C\u200D\u200B\u200C\u200B\u200B\u200B\u200D\u200C\u200C\u206ALocal\u206A\u206A
|
|
159
159
|
|
|
160
160
|
#XLST: This option indicates that the exported file will be saved on a remote or cloud file share
|
|
161
|
-
DESTINATION_REMOTE=\u206A\u206A\u206A\u200D\
|
|
161
|
+
DESTINATION_REMOTE=\u206A\u206A\u206A\u200D\u200B\u200B\u200C\u200C\u200C\u200C\u200D\u200C\u200C\u200C\u200D\u200C\u200B\u200D\u200C\u200C\u200C\u200B\u200C\u200D\u200B\u200D\u200C\u200D\u200D\u200D\u200D\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200C\u200B\u200C\u200B\u200C\u206ACloud\u206A\u206A
|
|
162
162
|
|
|
163
163
|
#XHED: Dialog header for the CloudFilePicker
|
|
164
|
-
DESTINATION_DIALOG_TITLE=\u206A\u206A\u206A\u200C\
|
|
164
|
+
DESTINATION_DIALOG_TITLE=\u206A\u206A\u206A\u200C\u200B\u200B\u200B\u200C\u200D\u200D\u200C\u200B\u200D\u200B\u200D\u200D\u200D\u200C\u200C\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u200D\u200C\u200D\u200D\u200B\u200B\u200C\u200B\u200B\u200B\u200B\u200C\u200B\u200B\u200B\u200C\u200C\u206AExport To\u206A\u206A
|
|
165
165
|
|
|
166
166
|
#XMSG: Status text on the progress dialog for transfering the file to the cloud destination
|
|
167
|
-
DESTINATION_DIALOG_STATUS=\u206A\u206A\u206A\u200C\u200B\
|
|
167
|
+
DESTINATION_DIALOG_STATUS=\u206A\u206A\u206A\u200C\u200C\u200B\u200D\u200B\u200D\u200B\u200B\u200D\u200B\u200B\u200B\u200D\u200B\u200D\u200D\u200B\u200D\u200C\u200B\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u200D\u200D\u200D\u200D\u200B\u200C\u200B\u200C\u200C\u200C\u200B\u200B\u200C\u200B\u206AFile is being transferred - please be patient...\u206A\u206A
|
|
168
168
|
|
|
169
169
|
#XMSG: Error message when exported file could not be transferred
|
|
170
|
-
DESTINATION_TRANSFER_ERROR=\u206A\u206A\u206A\
|
|
170
|
+
DESTINATION_TRANSFER_ERROR=\u206A\u206A\u206A\u200C\u200B\u200B\u200D\u200D\u200C\u200B\u200B\u200C\u200B\u200B\u200D\u200D\u200C\u200C\u200B\u200B\u200B\u200B\u200D\u200C\u200D\u200B\u200B\u200B\u200D\u200D\u200C\u200B\u200B\u200D\u200B\u200C\u200D\u200B\u200B\u200B\u200B\u200C\u200D\u200C\u206AFile could not be transferred.\u206A\u206A
|
|
171
171
|
|
|
172
172
|
#XMSG: Succuess message when the file has been saved to the cloud destination
|
|
173
|
-
DESTINATION_TRANSFER_SUCCESS=\u206A\u206A\u206A\u200C\
|
|
173
|
+
DESTINATION_TRANSFER_SUCCESS=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u200B\u200B\u200C\u200B\u200B\u200B\u200B\u200C\u200D\u200B\u200C\u200C\u200B\u200C\u200C\u200D\u200D\u200D\u200D\u200B\u200D\u200C\u200D\u200B\u200B\u200C\u200C\u200B\u200B\u200D\u200B\u200D\u200C\u206AYour file has been saved successfully.\u206A\u206A
|
|
174
174
|
|
|
175
175
|
#XMSG: Error message when the user did not select a proper FileShare for storing the file
|
|
176
|
-
DESTINATION_SELECTION_INCOMPLETE=\u206A\u206A\u206A\u200C\
|
|
176
|
+
DESTINATION_SELECTION_INCOMPLETE=\u206A\u206A\u206A\u200C\u200C\u200C\u200B\u200B\u200D\u200D\u200C\u200C\u200D\u200D\u200D\u200B\u200D\u200C\u200B\u200D\u200D\u200D\u200C\u200D\u200D\u200C\u200D\u200C\u200C\u200D\u200D\u200B\u200D\u200D\u200D\u200B\u200B\u200B\u200D\u200D\u200B\u206AThe selected file share is invalid.\u206A\u206A
|
|
177
177
|
|
|
178
178
|
#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
|
|
179
|
-
DIALOG_BUTTON_CLOUD_DESTINATION=\u206A\u206A\u206A\u200C\u200D\
|
|
179
|
+
DIALOG_BUTTON_CLOUD_DESTINATION=\u206A\u206A\u206A\u200D\u200B\u200C\u200C\u200D\u200D\u200D\u200C\u200B\u200D\u200C\u200B\u200B\u200D\u200B\u200D\u200C\u200D\u200B\u200D\u200D\u200D\u200D\u200C\u200B\u200D\u200C\u200B\u200B\u200B\u200D\u200C\u200C\u200B\u200D\u200B\u200D\u200C\u200D\u200D\u206AExport To...\u206A\u206A
|
|
180
180
|
|
|
181
181
|
#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
|
|
182
|
-
DESTINATION_ERROR_NOT_GOOGLE=\u206A\u206A\u206A\
|
|
182
|
+
DESTINATION_ERROR_NOT_GOOGLE=\u206A\u206A\u206A\u200D\u200B\u200D\u200B\u200D\u200C\u200B\u200B\u200D\u200B\u200D\u200B\u200B\u200D\u200B\u200B\u200D\u200D\u200C\u200D\u200C\u200B\u200D\u200B\u200B\u200D\u200C\u200B\u200B\u200C\u200D\u200D\u200D\u200D\u200B\u200C\u200C\u200B\u200D\u200C\u206AExporting a file to Google Sheets requires a Google Workspace as a file share.\nPlease select a different file format or a different file share.\u206A\u206A
|