@sapui5/sap.ui.export 1.108.0 → 1.108.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 +19 -7
- package/src/sap/ui/export/ExportUtils.js +33 -10
- package/src/sap/ui/export/PortableDocument.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/fragments/SettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/export/library.js +2 -2
- package/src/sap/ui/export/messagebundle.properties +1 -1
- package/src/sap/ui/export/messagebundle_ar.properties +1 -1
- package/src/sap/ui/export/messagebundle_bg.properties +1 -1
- package/src/sap/ui/export/messagebundle_ca.properties +1 -1
- package/src/sap/ui/export/messagebundle_cs.properties +1 -1
- package/src/sap/ui/export/messagebundle_cy.properties +1 -1
- package/src/sap/ui/export/messagebundle_da.properties +1 -1
- package/src/sap/ui/export/messagebundle_de.properties +1 -1
- package/src/sap/ui/export/messagebundle_el.properties +1 -1
- package/src/sap/ui/export/messagebundle_en.properties +1 -1
- package/src/sap/ui/export/messagebundle_en_GB.properties +1 -1
- package/src/sap/ui/export/messagebundle_en_US_saprigi.properties +1 -1
- package/src/sap/ui/export/messagebundle_fi.properties +1 -1
- package/src/sap/ui/export/messagebundle_fr.properties +1 -1
- package/src/sap/ui/export/messagebundle_fr_CA.properties +3 -3
- package/src/sap/ui/export/messagebundle_hi.properties +1 -1
- package/src/sap/ui/export/messagebundle_hu.properties +1 -1
- package/src/sap/ui/export/messagebundle_id.properties +1 -1
- package/src/sap/ui/export/messagebundle_it.properties +1 -1
- package/src/sap/ui/export/messagebundle_ja.properties +1 -1
- package/src/sap/ui/export/messagebundle_kk.properties +1 -1
- package/src/sap/ui/export/messagebundle_lv.properties +1 -1
- package/src/sap/ui/export/messagebundle_ms.properties +1 -1
- package/src/sap/ui/export/messagebundle_nl.properties +1 -1
- package/src/sap/ui/export/messagebundle_no.properties +1 -1
- package/src/sap/ui/export/messagebundle_pl.properties +1 -1
- package/src/sap/ui/export/messagebundle_pt.properties +1 -1
- package/src/sap/ui/export/messagebundle_pt_PT.properties +1 -1
- package/src/sap/ui/export/messagebundle_ro.properties +1 -1
- package/src/sap/ui/export/messagebundle_sh.properties +1 -1
- package/src/sap/ui/export/messagebundle_sk.properties +1 -1
- package/src/sap/ui/export/messagebundle_sl.properties +1 -1
- package/src/sap/ui/export/messagebundle_sv.properties +1 -1
- package/src/sap/ui/export/messagebundle_th.properties +1 -1
- package/src/sap/ui/export/messagebundle_tr.properties +1 -1
- package/src/sap/ui/export/messagebundle_uk.properties +1 -1
- package/src/sap/ui/export/messagebundle_vi.properties +1 -1
- package/src/sap/ui/export/messagebundle_zh_CN.properties +1 -1
- package/src/sap/ui/export/messagebundle_zh_TW.properties +1 -1
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.2
|
|
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.2
|
|
19
19
|
*
|
|
20
20
|
* @since 1.102
|
|
21
21
|
* @name sap.ui.export.ExportHandler
|
|
@@ -129,6 +129,14 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
129
129
|
this._oFileShareBinding.destroy();
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
if (this._oExportDialog) {
|
|
133
|
+
this._oExportDialog.destroy();
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
if (this._oFilePicker) {
|
|
137
|
+
this._oFilePicker.destroy();
|
|
138
|
+
}
|
|
139
|
+
|
|
132
140
|
this._mCapabilities = null;
|
|
133
141
|
this._oDataSource = null;
|
|
134
142
|
this._mDialogSettings = null;
|
|
@@ -183,7 +191,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
183
191
|
sap.ui.require(['sap/suite/ui/commons/CloudFilePicker'], function(CloudFilePicker) {
|
|
184
192
|
var oFilePicker;
|
|
185
193
|
|
|
186
|
-
oFilePicker = new CloudFilePicker({
|
|
194
|
+
that._oFilePicker = oFilePicker = new CloudFilePicker({
|
|
187
195
|
sharedModel: oModel,
|
|
188
196
|
suggestedFileName: sFileName,
|
|
189
197
|
enableDuplicateCheck: true,
|
|
@@ -261,6 +269,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
261
269
|
aArrayBuffer = oEvent.getParameter('data');
|
|
262
270
|
oExportDialog = oEvent.getParameter('exportDialog');
|
|
263
271
|
mCloudFileInfo['FileShareItemContentType'] = oExportInstance.getMimeType();
|
|
272
|
+
mCloudFileInfo['FileShareItemConvertToMimeType'] = oExportInstance.getMimeType();
|
|
264
273
|
|
|
265
274
|
/* Enforce file conversion for Google Sheet */
|
|
266
275
|
if (mExportSettings.fileType === FileType.GSHEET) {
|
|
@@ -430,7 +439,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
430
439
|
|
|
431
440
|
return that.getFileShareContexts();
|
|
432
441
|
}).then(function(aContexts) {
|
|
433
|
-
return ExportUtils.getExportSettingsViaDialog(mExportSettings, that._mCapabilities, aContexts.length > 0);
|
|
442
|
+
return ExportUtils.getExportSettingsViaDialog(mExportSettings, that._mCapabilities, aContexts.length > 0, function(oDialog) { that._oExportDialog = oDialog; });
|
|
434
443
|
}).then(function(mDialogSettings) {
|
|
435
444
|
|
|
436
445
|
/* Cache settings dialog settings */
|
|
@@ -439,9 +448,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
439
448
|
/* Merge export settings with user settings from the dialog */
|
|
440
449
|
Object.assign(mExportSettings, mDialogSettings);
|
|
441
450
|
|
|
442
|
-
|
|
443
|
-
ExportUtils.validateFileSettings(mExportSettings);
|
|
444
|
-
}
|
|
451
|
+
ExportUtils.validateFileSettings(mExportSettings);
|
|
445
452
|
|
|
446
453
|
mUserSettings.splitCells = mDialogSettings.splitCells;
|
|
447
454
|
mUserSettings.includeFilterSettings = mDialogSettings.includeFilterSettings;
|
|
@@ -497,6 +504,11 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
497
504
|
return that.getRemoteFileLocation(mExportSettings.fileName);
|
|
498
505
|
}).then(function(mCloudFileInfo) {
|
|
499
506
|
|
|
507
|
+
/* Validate file name only if file does not exist */
|
|
508
|
+
if (mCloudFileInfo && !mCloudFileInfo['FileShareItem']) {
|
|
509
|
+
mCloudFileInfo.FileShareItemName = ExportUtils.validateFileName(mCloudFileInfo.FileShareItemName, mExportSettings.fileType);
|
|
510
|
+
}
|
|
511
|
+
|
|
500
512
|
/* Verify that selected FileShare is a Google Workspace */
|
|
501
513
|
if (mExportSettings.fileType === FileType.GSHEET) {
|
|
502
514
|
return that.validateFileShare(mCloudFileInfo);
|
|
@@ -598,4 +610,4 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
598
610
|
};
|
|
599
611
|
|
|
600
612
|
return ExportHandler;
|
|
601
|
-
}, /* bExports */ true);
|
|
613
|
+
}, /* bExports */ true);
|
|
@@ -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.2
|
|
136
136
|
*
|
|
137
137
|
* @since 1.59
|
|
138
138
|
* @name sap.ui.export.ExportUtils
|
|
@@ -237,6 +237,8 @@ sap.ui.define([
|
|
|
237
237
|
oOpener = bRemoteDestination;
|
|
238
238
|
} else if (typeof bRemoteDestination === 'function') {
|
|
239
239
|
fnCallback = bRemoteDestination;
|
|
240
|
+
} else if (typeof oOpener === 'function') {
|
|
241
|
+
fnCallback = oOpener;
|
|
240
242
|
}
|
|
241
243
|
|
|
242
244
|
oResourceBundlePromise.then(function (oResourceBundle) {
|
|
@@ -254,8 +256,11 @@ sap.ui.define([
|
|
|
254
256
|
isSpreadsheet: function(sValue) {
|
|
255
257
|
return sValue === FileType.XLSX || sValue === FileType.GSHEET;
|
|
256
258
|
},
|
|
257
|
-
|
|
258
|
-
return sFileType === FileType.XLSX
|
|
259
|
+
isDestinationEnabled: function(sFileType) {
|
|
260
|
+
return sFileType === FileType.XLSX;
|
|
261
|
+
},
|
|
262
|
+
hasDestinations: function(aDestinationCollection) {
|
|
263
|
+
return aDestinationCollection.length > 1;
|
|
259
264
|
},
|
|
260
265
|
formatExportButton: function(sDestination) {
|
|
261
266
|
return sDestination === Destination.LOCAL ? oResourceBundle.getText('EXPORT_BUTTON') : oResourceBundle.getText('DIALOG_BUTTON_CLOUD_DESTINATION');
|
|
@@ -757,18 +762,36 @@ sap.ui.define([
|
|
|
757
762
|
Utils._validateScaleCustomizing(mSettings.customizing, 'unit');
|
|
758
763
|
},
|
|
759
764
|
|
|
765
|
+
/**
|
|
766
|
+
* Validates the filename and type related export settings
|
|
767
|
+
*
|
|
768
|
+
* @param {object} mSettings Export settings containing the file
|
|
769
|
+
*/
|
|
760
770
|
validateFileSettings: function(mSettings) {
|
|
771
|
+
mSettings.fileType = FileType[mSettings.fileType] ? mSettings.fileType : FileType.XLSX;
|
|
772
|
+
mSettings.fileName = Utils.validateFileName(mSettings.fileName, mSettings.fileType);
|
|
773
|
+
},
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* Ensures that the corresponding file extension is present
|
|
777
|
+
* on the name of the file.
|
|
778
|
+
*
|
|
779
|
+
* @param {string} sName Name of the file
|
|
780
|
+
* @param {sap.ui.export.FileType} sType Selected FileType
|
|
781
|
+
* @returns {string} Updated file name
|
|
782
|
+
*/
|
|
783
|
+
validateFileName: function(sName, sType) {
|
|
761
784
|
var sExtension;
|
|
762
785
|
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
sExtension = '.' + mSettings.fileType.toLowerCase();
|
|
766
|
-
mSettings.fileName = mSettings.fileName || 'export' + sExtension;
|
|
786
|
+
sName = sName || 'export';
|
|
787
|
+
sExtension = '.' + sType.toLowerCase();
|
|
767
788
|
|
|
768
|
-
if (!
|
|
769
|
-
|
|
789
|
+
if (!sName.endsWith(sExtension) && sType !== FileType.GSHEET) {
|
|
790
|
+
sName += sExtension;
|
|
770
791
|
Log.info(CLASS_NAME + ': fileName was missing the proper file extension - extension has been added');
|
|
771
792
|
}
|
|
793
|
+
|
|
794
|
+
return sName;
|
|
772
795
|
},
|
|
773
796
|
|
|
774
797
|
/**
|
|
@@ -1098,7 +1121,7 @@ sap.ui.define([
|
|
|
1098
1121
|
*
|
|
1099
1122
|
* @param {object} oContext Context object
|
|
1100
1123
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1101
|
-
* @param {string} [oContext.version] Application version (default: "1.108.
|
|
1124
|
+
* @param {string} [oContext.version] Application version (default: "1.108.2")
|
|
1102
1125
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1103
1126
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1104
1127
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @constructor 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.2
|
|
21
21
|
*
|
|
22
22
|
* @since 1.96
|
|
23
23
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -391,7 +391,7 @@ sap.ui.define([
|
|
|
391
391
|
oXHR.addEventListener('load', function() {
|
|
392
392
|
var status = oXHR.status;
|
|
393
393
|
|
|
394
|
-
if (status >= 200 && status
|
|
394
|
+
if (status >= 200 && status < 400) {
|
|
395
395
|
fnResolve(oXHR.response);
|
|
396
396
|
} else {
|
|
397
397
|
fnReject(oXHR.response);
|
|
@@ -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.2")</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.2',
|
|
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.2
|
|
282
282
|
*
|
|
283
283
|
* @since 1.50
|
|
284
284
|
* @name sap.ui.export.Spreadsheet
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
</items>
|
|
12
12
|
</Select>
|
|
13
13
|
|
|
14
|
-
<Label text="{i18n>SELECT_DESTINATION}" labelFor="exportSettingsDialog-destination" visible="{
|
|
15
|
-
<Select id="exportSettingsDialog-destination" selectedKey="{/destination}" items="{path: '/destinationCollection'}" visible="{
|
|
14
|
+
<Label text="{i18n>SELECT_DESTINATION}" labelFor="exportSettingsDialog-destination" visible="{path: '/destinationCollection', formatter: '.hasDestinations'}"/>
|
|
15
|
+
<Select id="exportSettingsDialog-destination" selectedKey="{/destination}" items="{path: '/destinationCollection'}" visible="{path: '/destinationCollection', formatter: '.hasDestinations'}" enabled="{path: '/fileType', formatter: '.isDestinationEnabled'}" width="100%" class="sapUiTinyMarginBottom">
|
|
16
16
|
<items>
|
|
17
17
|
<core:Item key="{key}" text="{text}"/>
|
|
18
18
|
</items>
|
|
@@ -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.2
|
|
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.2"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
|
|
@@ -68,7 +68,7 @@ FILTER_HEADER=Filter
|
|
|
68
68
|
ADD_DATE_TIME=Add current date and time to the file name
|
|
69
69
|
|
|
70
70
|
#XLST: Spreadsheet file type config for Microsoft Excel specific format
|
|
71
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
71
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
72
72
|
|
|
73
73
|
#XLST: Spreadsheet file type for exporting to Google Sheets
|
|
74
74
|
GSHEET_FILETYPE=Google Sheets
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u062A\u0635\u0641\u064A\u0629
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0648\u0642\u062A \u0648\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u062D\u0627\u0644\u064A \u0625\u0644\u0649 \u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=\u0635\u062D\u0627\u0626\u0641 Google
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u0424\u0438\u043B\u0442\u044A\u0440
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u0442\u0435\u043A\u0443\u0449\u0438 \u0434\u0430\u0442\u0430 \u0438 \u0447\u0430\u0441 \u043A\u044A\u043C \u0438\u043C\u0435\u0442\u043E \u043D\u0430 \u0444\u0430\u0439\u043B\u0430
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google \u0442\u0430\u0431\u043B\u0438\u0446\u0438
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03B7\u03BC/\u03BD\u03AF\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03CE\u03C1\u03B1\u03C2 \u03C3\u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=\u03A5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03A6\u03CD\u03BB\u03BB\u03B1 Google
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u206A\u206A\u206A\u200D\u200B\u200C\u200C\u200B\u200C\u200C\u200D
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u206A\u206A\u206A\u200C\u200B\u200B\u200C\u200C\u200C\u200D\u200B\u200B\u200C\u200B\u200C\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200B\u200B\u200D\u200C\u200C\u200C\u200D\u200D\u200C\u200D\u200B\u200D\u200D\u200B\u200D\u200D\u200C\u200B\u200B\u200C\u200B\u200D\u206AAdd current date and time to the file name\u206A\u206A
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=\u206A\u206A\u206A\u200C\u200B\u200D\u200D\u200C\u200C\u200B\u200C\u200D\u200C\u200B\u200C\u200C\u200D\u200C\u200B\u200B\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200B\u200B\u200D\u200D\u200C\u200C\u200C\u200D\u200B\u200D\u200C\u200B\u200B\u200C\u200D\u200B\u206AMicrosoft Excel (
|
|
46
|
+
XLSX_FILETYPE=\u206A\u206A\u206A\u200C\u200B\u200D\u200D\u200C\u200C\u200B\u200C\u200D\u200C\u200B\u200C\u200C\u200D\u200C\u200B\u200B\u200B\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200B\u200B\u200D\u200D\u200C\u200C\u200C\u200D\u200B\u200D\u200C\u200B\u200B\u200C\u200D\u200B\u206AMicrosoft Excel (*.xlsx)\u206A\u206A
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200C\u200C\u200C\u200C\u200B\u200C\u200D\u200C\u200D\u200D\u200D\u200B\u200C\u200D\u200C\u200B\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200C\u200C\u200C\u200D\u200D\u200B\u200C\u200C\u200C\u200C\u200B\u200C\u206AGoogle Sheets\u206A\u206A
|
|
49
49
|
|
|
@@ -17,7 +17,7 @@ SIZE_WARNING_MSG=Le document export\u00E9 contenant {0} lignes et {1} colonnes e
|
|
|
17
17
|
|
|
18
18
|
MSG_WARNING_CUT_OFF=Le nombre de lignes ({0}) d\u00E9passe le nombre maximal de lignes que vous pouvez exporter par feuille de calcul (1\u00A0048\u00A0576).\nSi vous poursuivez, l''exportation sera tronqu\u00E9e pour respecter le nombre maximal.
|
|
19
19
|
|
|
20
|
-
MSG_ERROR_OUT_OF_MEMORY=Le processus d'exportation manque de m\u00E9moire et a \u00E9t\u00E9 interrompu.\nVeuillez ajuster les
|
|
20
|
+
MSG_ERROR_OUT_OF_MEMORY=Le processus d'exportation manque de m\u00E9moire et a \u00E9t\u00E9 interrompu.\nVeuillez ajuster les param\u00E8tres de colonne ou de filtre pour s\u00E9lectionner un nombre de cellules plus petit.
|
|
21
21
|
|
|
22
22
|
PROGRESS_ERROR_DEFAULT=Erreur inconnue
|
|
23
23
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=Filtre
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=Ajouter la date et l'heure actuelles au nom du fichier
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -95,7 +95,7 @@ TOOLTIP_FITTOPAGE=Le contenu du document g\u00E9n\u00E9r\u00E9 est ajust\u00E9 \
|
|
|
95
95
|
|
|
96
96
|
TOOLTIP_ARCHIVE_FORMAT=Le document g\u00E9n\u00E9r\u00E9 est conforme \u00E0 PDF/A. Si cette option n'est pas disponible, elle n'est pas prise en charge par le service backend.
|
|
97
97
|
|
|
98
|
-
TOOLTIP_FILTER_SETTINGS=Les
|
|
98
|
+
TOOLTIP_FILTER_SETTINGS=Les param\u00E8tres de filtre du document g\u00E9n\u00E9r\u00E9 se trouvent sur la page de couverture. Si cette option n'est pas disponible, elle n'est pas prise en charge par le service du syst\u00E8me dorsal.
|
|
99
99
|
|
|
100
100
|
TOOLTIP_FONT_SIZE=D\u00E9finit la taille de la police du document g\u00E9n\u00E9r\u00E9 est accessible. Si cette option n'est pas disponible, elle n'est pas prise en charge par le service du syst\u00E8me dorsal.
|
|
101
101
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u095E\u093F\u0932\u094D\u091F\u0930
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u092B\u093C\u093E\u0907\u0932 \u0928\u093E\u092E \u092A\u0930 \u0935\u0930\u094D\u0924\u092E\u093E\u0928 \u0926\u093F\u0928\u093E\u0902\u0915 \u0914\u0930 \u0938\u092E\u092F \u091C\u094B\u0921\u093C\u0947\u0902
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=Sz\u0171r\u00E9s
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=Aktu\u00E1lis d\u00E1tum \u00E9s id\u0151pont hozz\u00E1ad\u00E1sa a f\u00E1jl nev\u00E9hez
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google T\u00E1bl\u00E1zatok
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u30D5\u30A3\u30EB\u30BF
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u73FE\u5728\u306E\u65E5\u4ED8\u304A\u3088\u3073\u6642\u523B\u3092\u30D5\u30A1\u30A4\u30EB\u540D\u306B\u8FFD\u52A0
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u0421\u04AF\u0437\u0443
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u043A\u04AF\u043D \u043C\u0435\u043D \u0443\u0430\u049B\u044B\u0442\u0442\u044B \u0444\u0430\u0439\u043B \u0430\u0442\u044B\u043D\u0430 \u049B\u043E\u0441\u0443
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u0E1F\u0E34\u0E25\u0E40\u0E15\u0E2D\u0E23\u0E4C
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E41\u0E25\u0E30\u0E40\u0E27\u0E25\u0E32\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E43\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=\u0424\u0456\u043B\u044C\u0442\u0440
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=\u0414\u043E\u0434\u0430\u0442\u0438 \u043F\u043E\u0442\u043E\u0447\u043D\u0443 \u0434\u0430\u0442\u0443 \u0456 \u0447\u0430\u0441 \u0434\u043E \u0456\u043C\u0435\u043D\u0456 \u0444\u0430\u0439\u043B\u0443
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|
|
@@ -43,7 +43,7 @@ FILTER_HEADER=B\u00F4\u0323 lo\u0323c
|
|
|
43
43
|
|
|
44
44
|
ADD_DATE_TIME=Th\u00EAm nga\u0300y va\u0300 gi\u01A1\u0300 hi\u00EA\u0323n ta\u0323i va\u0300o t\u00EAn t\u00E2\u0323p tin
|
|
45
45
|
|
|
46
|
-
XLSX_FILETYPE=Microsoft Excel (
|
|
46
|
+
XLSX_FILETYPE=Microsoft Excel (*.xlsx)
|
|
47
47
|
|
|
48
48
|
GSHEET_FILETYPE=Google Sheets
|
|
49
49
|
|