@sapui5/sap.ui.export 1.116.0 → 1.117.1
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 +24 -16
- package/src/sap/ui/export/ExportUtils.js +4 -4
- 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/fragments/SettingsDialog.fragment.xml +7 -7
- package/src/sap/ui/export/library.js +5 -4
- package/src/sap/ui/export/messagebundle.properties +7 -7
- package/src/sap/ui/export/messagebundle_ar.properties +7 -7
- package/src/sap/ui/export/messagebundle_bg.properties +7 -7
- package/src/sap/ui/export/messagebundle_ca.properties +7 -7
- package/src/sap/ui/export/messagebundle_cs.properties +7 -7
- package/src/sap/ui/export/messagebundle_cy.properties +7 -7
- package/src/sap/ui/export/messagebundle_da.properties +7 -7
- package/src/sap/ui/export/messagebundle_de.properties +7 -7
- package/src/sap/ui/export/messagebundle_el.properties +7 -7
- package/src/sap/ui/export/messagebundle_en.properties +7 -7
- package/src/sap/ui/export/messagebundle_en_GB.properties +7 -7
- package/src/sap/ui/export/messagebundle_en_US_sappsd.properties +7 -7
- package/src/sap/ui/export/messagebundle_en_US_saptrc.properties +7 -7
- package/src/sap/ui/export/messagebundle_es.properties +7 -7
- package/src/sap/ui/export/messagebundle_es_MX.properties +7 -7
- package/src/sap/ui/export/messagebundle_et.properties +7 -7
- package/src/sap/ui/export/messagebundle_fi.properties +6 -6
- package/src/sap/ui/export/messagebundle_fr.properties +7 -7
- package/src/sap/ui/export/messagebundle_fr_CA.properties +7 -7
- package/src/sap/ui/export/messagebundle_hi.properties +7 -7
- package/src/sap/ui/export/messagebundle_hr.properties +7 -7
- package/src/sap/ui/export/messagebundle_hu.properties +7 -7
- package/src/sap/ui/export/messagebundle_id.properties +7 -7
- package/src/sap/ui/export/messagebundle_it.properties +7 -7
- package/src/sap/ui/export/messagebundle_iw.properties +7 -7
- package/src/sap/ui/export/messagebundle_ja.properties +7 -7
- package/src/sap/ui/export/messagebundle_kk.properties +7 -7
- package/src/sap/ui/export/messagebundle_ko.properties +7 -7
- package/src/sap/ui/export/messagebundle_lt.properties +7 -7
- package/src/sap/ui/export/messagebundle_lv.properties +7 -7
- package/src/sap/ui/export/messagebundle_ms.properties +7 -7
- package/src/sap/ui/export/messagebundle_nl.properties +7 -7
- package/src/sap/ui/export/messagebundle_no.properties +7 -7
- package/src/sap/ui/export/messagebundle_pl.properties +7 -7
- package/src/sap/ui/export/messagebundle_pt.properties +7 -7
- package/src/sap/ui/export/messagebundle_pt_PT.properties +7 -7
- package/src/sap/ui/export/messagebundle_ro.properties +7 -7
- package/src/sap/ui/export/messagebundle_ru.properties +7 -7
- package/src/sap/ui/export/messagebundle_sh.properties +7 -7
- package/src/sap/ui/export/messagebundle_sk.properties +7 -7
- package/src/sap/ui/export/messagebundle_sl.properties +7 -7
- package/src/sap/ui/export/messagebundle_sv.properties +7 -7
- package/src/sap/ui/export/messagebundle_th.properties +7 -7
- package/src/sap/ui/export/messagebundle_tr.properties +7 -7
- package/src/sap/ui/export/messagebundle_uk.properties +7 -7
- package/src/sap/ui/export/messagebundle_vi.properties +7 -7
- package/src/sap/ui/export/messagebundle_zh_CN.properties +7 -7
- package/src/sap/ui/export/messagebundle_zh_TW.properties +7 -7
- package/src/sap/ui/export/provider/DataProviderBase.js +1 -1
- package/src/sap/ui/export/util/Filter.js +1 -1
- package/src/sap/ui/export/util/PDFCapabilities.js +47 -0
- package/ui5.yaml +4 -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.
|
|
30
|
+
* @version 1.117.1
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -2,35 +2,48 @@
|
|
|
2
2
|
* SAPUI5
|
|
3
3
|
* (c) Copyright 2009-2023 SAP SE. All rights reserved.
|
|
4
4
|
*/
|
|
5
|
-
sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToast', 'sap/ui/core/Core', 'sap/ui/base/EventProvider', 'sap/ui/model/odata/v4/ODataModel', 'sap/ui/util/openWindow'], function(library, ExportUtils, ExportDialog, MessageToast, Core, EventProvider, ODataModel, openWindow) {
|
|
5
|
+
sap.ui.define(['./library', './ExportUtils', './ExportDialog', './util/PDFCapabilities', 'sap/m/MessageToast', 'sap/ui/core/Core', 'sap/ui/base/EventProvider', 'sap/ui/model/odata/v4/ODataModel', 'sap/ui/util/openWindow'], function(library, ExportUtils, ExportDialog, PDFCapabilities, MessageToast, Core, EventProvider, ODataModel, openWindow) {
|
|
6
6
|
'use strict';
|
|
7
7
|
|
|
8
8
|
var Destination = library.Destination;
|
|
9
9
|
var FileType = library.FileType;
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* Any export
|
|
12
|
+
* Any export-related functionality is encapsulated in the <code>ExportHandler</code> that also stores user settings throughout the session.
|
|
13
13
|
*
|
|
14
|
-
* @param {object}
|
|
15
|
-
*
|
|
14
|
+
* @param {object} mCapabilities <code>ExportHandler</code> capabilities that define supported file types and features
|
|
15
|
+
*
|
|
16
|
+
* @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from an SAPUI5 application.
|
|
16
17
|
*
|
|
17
18
|
* @author SAP SE
|
|
18
|
-
* @version 1.
|
|
19
|
+
* @version 1.117.1
|
|
19
20
|
*
|
|
20
21
|
* @since 1.102
|
|
21
22
|
* @alias sap.ui.export.ExportHandler
|
|
22
23
|
* @extends sap.ui.base.EventProvider
|
|
23
|
-
* @
|
|
24
|
-
* @ui5-restricted sap.ui.comp.smarttable.SmartTable, sap.ui.mdc.Table
|
|
24
|
+
* @public
|
|
25
25
|
*/
|
|
26
26
|
var ExportHandler = EventProvider.extend('sap.ui.export.ExportHandler', {
|
|
27
27
|
constructor: function(mCapabilities) {
|
|
28
28
|
var that = this;
|
|
29
|
+
|
|
29
30
|
EventProvider.call(this);
|
|
30
31
|
|
|
31
32
|
/* Apply default capabilities if nothing is provided */
|
|
32
33
|
this._mCapabilities = mCapabilities instanceof Object ? mCapabilities : { XLSX: {} };
|
|
33
34
|
|
|
35
|
+
if (this._mCapabilities.PDF) {
|
|
36
|
+
var oCapabilities = this._mCapabilities.PDF;
|
|
37
|
+
|
|
38
|
+
if (typeof oCapabilities.isA !== 'function' || !oCapabilities.isA('sap.ui.export.util.PDFCapabilities')) {
|
|
39
|
+
this._mCapabilities.PDF = new PDFCapabilities(oCapabilities);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (!this._mCapabilities.PDF.isValid()) {
|
|
43
|
+
delete this._mCapabilities.PDF;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
34
47
|
/* Activate Google Sheet support */
|
|
35
48
|
this._initialized = new Promise(function(fnResolve) {
|
|
36
49
|
that.isGoogleSheetSupported().then(function(bSupported) {
|
|
@@ -56,7 +69,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
56
69
|
* @param {sap.ui.base.EventProvider} oEvent.getSource
|
|
57
70
|
* @param {object} oEvent.getParameters
|
|
58
71
|
* @param {object} oEvent.getParameters.exportSettings Contains export-related configuration
|
|
59
|
-
* @param {object} oEvent.getParameters.userExportSettings User
|
|
72
|
+
* @param {object} oEvent.getParameters.userExportSettings User-specific settings from the Export As dialog
|
|
60
73
|
* @param {sap.ui.export.util.Filter[]} oEvent.getParameters.filterSettings Array of filter settings for the exported data
|
|
61
74
|
*
|
|
62
75
|
* @name sap.ui.export.ExportHandler#beforeExport
|
|
@@ -74,7 +87,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
74
87
|
*
|
|
75
88
|
* @param {object} [oData] An application-specific payload object that will be passed to the event handler along with the event object when firing the event
|
|
76
89
|
* @param {function} fnHandler The function to be called when the event occurs
|
|
77
|
-
* @param {object} [oListener] Context object to call the event handler with
|
|
90
|
+
* @param {object} [oListener] Context object to call the event handler with; defaults to this <code>sap.ui.export.ExportHandler</code> instance itself
|
|
78
91
|
* @returns {this} Reference to <code>this</code> in order to allow method chaining
|
|
79
92
|
*
|
|
80
93
|
* @since 1.102
|
|
@@ -442,7 +455,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
442
455
|
* Exports the data as defined via parameter. The function
|
|
443
456
|
* returns a <code>Promise</code> that will be resolved
|
|
444
457
|
* after the export process has been finished. In case of
|
|
445
|
-
* an error, its message will be shown in a <code>Dialog</code
|
|
458
|
+
* an error, its message will be shown in a <code>Dialog</code>,
|
|
446
459
|
* and the <code>Promise</code> will be rejected.
|
|
447
460
|
*
|
|
448
461
|
* @param {object} mExportSettings Export settings that are used for the export
|
|
@@ -469,7 +482,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
469
482
|
* certain settings that influence the output of the export
|
|
470
483
|
* functionality.
|
|
471
484
|
*
|
|
472
|
-
* @param {object} oSettings General export settings containing workbook and dataSource information
|
|
485
|
+
* @param {object} oSettings General export settings containing <code>workbook</code> and <code>dataSource</code> information
|
|
473
486
|
* @param {function} [fnResolveColumnLabel] Resolves the label for a particular column that is not directly contained in the export settings
|
|
474
487
|
* @returns {Promise} A <code>Promise</code> that resolves once the data has been exported
|
|
475
488
|
*
|
|
@@ -629,11 +642,6 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', 'sap/m/MessageToa
|
|
|
629
642
|
var sDescription, sVendorType;
|
|
630
643
|
|
|
631
644
|
sVendorType = oContext.getProperty('FileShareVendorType');
|
|
632
|
-
|
|
633
|
-
if (new URL(window.location.href).search.indexOf("sap-ui-xx-enableGoogleSheets=true") === -1) {
|
|
634
|
-
return sVendorType === 'GOOGLE';
|
|
635
|
-
}
|
|
636
|
-
|
|
637
645
|
sDescription = oContext.getProperty('FileShareDescription');
|
|
638
646
|
|
|
639
647
|
return sVendorType === 'GOOGLE'
|
|
@@ -134,7 +134,7 @@ sap.ui.define([
|
|
|
134
134
|
* @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
135
135
|
*
|
|
136
136
|
* @author SAP SE
|
|
137
|
-
* @version 1.
|
|
137
|
+
* @version 1.117.1
|
|
138
138
|
*
|
|
139
139
|
* @since 1.59
|
|
140
140
|
* @alias sap.ui.export.ExportUtils
|
|
@@ -281,8 +281,8 @@ sap.ui.define([
|
|
|
281
281
|
name: 'sap.ui.export.fragments.SettingsDialog',
|
|
282
282
|
type: 'XML',
|
|
283
283
|
controller: {
|
|
284
|
-
isPDF: function(sValue) {
|
|
285
|
-
return sValue === FileType.PDF;
|
|
284
|
+
isPDF: function(sValue, bFeatureEnabled) {
|
|
285
|
+
return sValue === FileType.PDF && bFeatureEnabled !== false;
|
|
286
286
|
},
|
|
287
287
|
isSpreadsheet: function(sValue) {
|
|
288
288
|
return sValue === FileType.XLSX || sValue === FileType.GSHEET;
|
|
@@ -1200,7 +1200,7 @@ sap.ui.define([
|
|
|
1200
1200
|
*
|
|
1201
1201
|
* @param {object} oContext Context object
|
|
1202
1202
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1203
|
-
* @param {string} [oContext.version] Application version (default: "1.
|
|
1203
|
+
* @param {string} [oContext.version] Application version (default: "1.117.1")
|
|
1204
1204
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1205
1205
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1206
1206
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @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.
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.117.1
|
|
25
25
|
*
|
|
26
26
|
* @since 1.96
|
|
27
27
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -84,7 +84,7 @@ sap.ui.define([
|
|
|
84
84
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
85
85
|
* <ul>
|
|
86
86
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
87
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.
|
|
87
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.117.1")</li>
|
|
88
88
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
89
89
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
90
90
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -167,7 +167,7 @@ sap.ui.define([
|
|
|
167
167
|
* columns: aColumns,
|
|
168
168
|
* context: {
|
|
169
169
|
* application: 'Debug Test Application',
|
|
170
|
-
* version: '1.
|
|
170
|
+
* version: '1.117.1',
|
|
171
171
|
* title: 'Some random title',
|
|
172
172
|
* modifiedBy: 'John Doe',
|
|
173
173
|
* metaSheetName: 'Custom metadata',
|
|
@@ -279,7 +279,7 @@ sap.ui.define([
|
|
|
279
279
|
* @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
280
280
|
*
|
|
281
281
|
* @author SAP SE
|
|
282
|
-
* @version 1.
|
|
282
|
+
* @version 1.117.1
|
|
283
283
|
*
|
|
284
284
|
* @since 1.50
|
|
285
285
|
* @alias sap.ui.export.Spreadsheet
|
|
@@ -21,7 +21,7 @@ sap.ui.define(['sap/base/Log', 'sap/ui/export/ExportUtils'], function(Log, Expor
|
|
|
21
21
|
* Utility class to perform spreadsheet export.
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.117.1
|
|
25
25
|
*
|
|
26
26
|
* @alias sap.ui.export.SpreadsheetExport
|
|
27
27
|
* @private
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
</Select>
|
|
20
20
|
|
|
21
21
|
<CheckBox id="exportSettingsDialog-includeFilterSettings" selected="{/includeFilterSettings}" text="{i18n>INCLUDE_FILTER_SETTINGS}" visible="{path:'/fileType', formatter: '.isSpreadsheet'}"/>
|
|
22
|
-
<CheckBox id="exportSettingsDialog-includeFilterSettings-PDF"
|
|
23
|
-
<CheckBox id="exportSettingsDialog-pdfArchive"
|
|
22
|
+
<CheckBox id="exportSettingsDialog-includeFilterSettings-PDF" selected="{/includeFilterSettings}" text="{i18n>INCLUDE_FILTER_SETTINGS}" visible="{parts:['/fileType', '/capabilities/PDF/CoverPage'], formatter: '.isPDF'}" tooltip="{i18n>TOOLTIP_FILTER_SETTINGS}"/>
|
|
23
|
+
<CheckBox id="exportSettingsDialog-pdfArchive" selected="{/pdfArchive}" text="{i18n>ARCHIVE_FORMAT}" visible="{parts:['/fileType', '/capabilities/PDF/ArchiveFormat'], formatter: '.isPDF'}" tooltip="{i18n>TOOLTIP_ARCHIVE_FORMAT}"/>
|
|
24
24
|
<CheckBox id="exportSettingsDialog-splitCells" selected="{/splitCells}" text="{i18n>SPLIT_CELLS}" visible="{path:'/fileType', formatter: '.isSpreadsheet'}"/> <!-- Will be hidden in case of PDF because it needs to be always true and is applied implicitly -->
|
|
25
25
|
<CheckBox id="exportSettingsDialog-addDateTime" selected="{/addDateTime}" text="{i18n>ADD_DATE_TIME}" visible="false"/>
|
|
26
26
|
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
</items>
|
|
40
40
|
</Select>
|
|
41
41
|
|
|
42
|
-
<Label text="{i18n>FONT_SIZE}" labelFor="exportSettingsDialog-fontSize" visible="{
|
|
43
|
-
<Input id="exportSettingsDialog-fontSize" value="{/fontSize}"
|
|
42
|
+
<Label text="{i18n>FONT_SIZE}" labelFor="exportSettingsDialog-fontSize" visible="{parts:['/fileType', '/capabilities/PDF/FontSize'], formatter: '.isPDF'}"/>
|
|
43
|
+
<Input id="exportSettingsDialog-fontSize" value="{/fontSize}" liveChange=".onFontSizeChange" class="sapUiTinyMarginBottom" visible="{parts:['/fileType', '/capabilities/PDF/FontSize'], formatter: '.isPDF'}" tooltip="{i18n>TOOLTIP_FONT_SIZE}"/>
|
|
44
44
|
|
|
45
45
|
<CheckBox id="exportSettingsDialog-accessibility" selected="{/doEnableAccessibility}" text="{i18n>ENABLE_ACCESSIBILITY}" tooltip="{i18n>TOOLTIP_PDF_ACCESSIBILITY}" visible="{path:'/fileType', formatter: '.isPDF'}"/>
|
|
46
|
-
<CheckBox id="exportSettingsDialog-fitToPage"
|
|
47
|
-
<CheckBox id="exportSettingsDialog-signature"
|
|
46
|
+
<CheckBox id="exportSettingsDialog-fitToPage" selected="{/fitToPage}" text="{i18n>FITTOPAGE}" tooltip="{i18n>TOOLTIP_FITTOPAGE}" visible="{parts:['/fileType', '/capabilities/PDF/FitToPage'], formatter: '.isPDF'}"/>
|
|
47
|
+
<CheckBox id="exportSettingsDialog-signature" selected="{/signature}" text="{i18n>ENABLE_SIGNATURE}" tooltip="{i18n>TOOLTIP_PDF_SIGNATURE}" visible="{parts:['/fileType', '/capabilities/PDF/Signature'], formatter: '.isPDF'}"/>
|
|
48
48
|
|
|
49
49
|
<Label id="exportSettingsDialog-signatureReasonLabel" text="{i18n>SIGNATURE_REASON}" labelFor="exportSettingsDialog-signatureReason" visible="{/signature}"/>
|
|
50
50
|
<Input id="exportSettingsDialog-signatureReason" value="{/signatureReason}" class="sapUiTinyMarginBottom" visible="{/signature}"/>
|
|
51
51
|
|
|
52
|
-
<CheckBox id="exportSettingsDialog-showPageNumber"
|
|
52
|
+
<CheckBox id="exportSettingsDialog-showPageNumber" selected="{/showPageNumber}" text="{i18n>SHOW_PAGENUM}" tooltip="{i18n>TOOLTIP_PDF_PAGENUMBER}" visible="{parts:['/fileType', '/capabilities/PDF/HeaderFooter'], formatter: '.isPDF'}"/>
|
|
53
53
|
</VBox>
|
|
54
54
|
</content>
|
|
55
55
|
<beginButton>
|
|
@@ -15,7 +15,7 @@ sap.ui.define(['sap/ui/core/library'], function(library1) {
|
|
|
15
15
|
* @namespace
|
|
16
16
|
* @alias sap.ui.export
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.
|
|
18
|
+
* @version 1.117.1
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
21
|
|
|
@@ -31,7 +31,7 @@ sap.ui.define(['sap/ui/core/library'], function(library1) {
|
|
|
31
31
|
interfaces: [],
|
|
32
32
|
controls: [],
|
|
33
33
|
elements: [],
|
|
34
|
-
version: "1.
|
|
34
|
+
version: "1.117.1"
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
|
|
@@ -142,9 +142,10 @@ sap.ui.define(['sap/ui/core/library'], function(library1) {
|
|
|
142
142
|
GSHEET: "GSHEET",
|
|
143
143
|
|
|
144
144
|
/**
|
|
145
|
-
* Portable Document Format file type.
|
|
145
|
+
* Portable Document Format (PDF) file type.
|
|
146
146
|
*
|
|
147
|
-
* @
|
|
147
|
+
* @public
|
|
148
|
+
* @since 1.117
|
|
148
149
|
*/
|
|
149
150
|
PDF: "PDF",
|
|
150
151
|
|
|
@@ -155,25 +155,25 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5 Export
|
|
|
155
155
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
156
156
|
|
|
157
157
|
#XMSG: Tooltip that explains the Accessibility checkbox and why it might be disabled
|
|
158
|
-
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible.
|
|
158
|
+
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible.
|
|
159
159
|
|
|
160
160
|
#XMSG: Tooltip that explains the show pagenumber checkbox and why it might be disabled
|
|
161
|
-
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page.
|
|
161
|
+
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page.
|
|
162
162
|
|
|
163
163
|
#XMSG: Tooltip that explains the Signature checkbox and why it might be disabled
|
|
164
|
-
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature.
|
|
164
|
+
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature.
|
|
165
165
|
|
|
166
166
|
#XMSG: Tooltip that explains the FitToPage checkbox and why it might be disabled
|
|
167
|
-
TOOLTIP_FITTOPAGE=The generated document
|
|
167
|
+
TOOLTIP_FITTOPAGE=The generated document has content that fits the size of the page.
|
|
168
168
|
|
|
169
169
|
#XMSG: Tooltip that explains the Archive format checkbox and why it might be disabled
|
|
170
|
-
TOOLTIP_ARCHIVE_FORMAT=The generated document
|
|
170
|
+
TOOLTIP_ARCHIVE_FORMAT=The generated document is PDF/A-conformant.
|
|
171
171
|
|
|
172
172
|
#XMSG: Tooltip that explains the filter settings checkbox and why it might be disabled
|
|
173
|
-
TOOLTIP_FILTER_SETTINGS=The generated document
|
|
173
|
+
TOOLTIP_FILTER_SETTINGS=The generated document has filter settings on the cover page.
|
|
174
174
|
|
|
175
175
|
#XMSG: Tooltip that explains the font size input and why it might be disabled
|
|
176
|
-
TOOLTIP_FONT_SIZE=Defines the font size of the generated document.
|
|
176
|
+
TOOLTIP_FONT_SIZE=Defines the font size of the generated document.
|
|
177
177
|
|
|
178
178
|
#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
|
|
179
179
|
SELECT_DESTINATION=Destination
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=\u062A\u0635\u062F\u064A\u0631 SAPUI5
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=\u062A\u0646\u0633\u064A\u0642 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0645\u062A\u0646\u0642\u0644 (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u0645\u0643\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064A\u0647.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u0645\u0643\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064A\u0647.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0623\u0631\u0642\u0627\u0645 \u0635\u0641\u062D\u0627\u062A \u0641\u064A \u062A\u0630\u064A\u064A\u0644 \u0643\u0644 \u0635\u0641\u062D\u0629.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0623\u0631\u0642\u0627\u0645 \u0635\u0641\u062D\u0627\u062A \u0641\u064A \u062A\u0630\u064A\u064A\u0644 \u0643\u0644 \u0635\u0641\u062D\u0629.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u0648\u0642\u0651\u0639\u064B\u0627 \u0628\u062A\u0648\u0642\u064A\u0639 \u0631\u0642\u0645\u064A.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=\u064A\u062D\u062F\u062F \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u0648\u0642\u0651\u0639\u064B\u0627 \u0628\u062A\u0648\u0642\u064A\u0639 \u0631\u0642\u0645\u064A.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=\u0633\u064A\u0643\u0648\u0646 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u062D\u062A\u0648\u0649 \u064A\u062A\u0646\u0627\u0633\u0628 \u0645\u0639 \u062D\u062C\u0645 \u0627\u0644\u0635\u0641\u062D\u0629.
|
|
110
|
+
TOOLTIP_FITTOPAGE=\u0633\u064A\u0643\u0648\u0646 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u062D\u062A\u0648\u0649 \u064A\u062A\u0646\u0627\u0633\u0628 \u0645\u0639 \u062D\u062C\u0645 \u0627\u0644\u0635\u0641\u062D\u0629.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=\u0633\u064A\u062A\u0648\u0627\u0641\u0642 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u0639 PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=\u0633\u064A\u062A\u0648\u0627\u0641\u0642 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0645\u0639 PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=\u0633\u064A\u0643\u0648\u0646 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u062A\u0635\u0641\u064A\u0629 \u0641\u064A \u0635\u0641\u062D\u0629 \u0627\u0644\u063A\u0644\u0627\u0641.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=\u0633\u064A\u0643\u0648\u0646 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0630\u064A \u062A\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u062A\u0635\u0641\u064A\u0629 \u0641\u064A \u0635\u0641\u062D\u0629 \u0627\u0644\u063A\u0644\u0627\u0641.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=\u064A\u062D\u062F\u062F \u062D\u062C\u0645 \u0627\u0644\u062E\u0637 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0645\u0646\u0634\u0623.
|
|
116
|
+
TOOLTIP_FONT_SIZE=\u064A\u062D\u062F\u062F \u062D\u062C\u0645 \u0627\u0644\u062E\u0637 \u0644\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0645\u0646\u0634\u0623.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=\u0627\u0644\u0648\u062C\u0647\u0629
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5 \u0435\u043A\u0441\u043F\u043E\u0440\u0442
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=\u041F\u0440\u0435\u043D\u043E\u0441\u0438\u043C \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0435\u043D \u0444\u043E\u0440\u043C\u0430\u0442 (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0435 \u0434\u043E\u0441\u0442\u044A\u043F\u0435\u043D.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=\u0414\u0435\u0444\u0438\u043D\u0438\u0440\u0430 \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 \u043D\u043E\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u0432 \u0434\u043E\u043B\u043D\u0438\u044F \u043A\u043E\u043B\u043E\u043D\u0442\u0438\u0442\u0443\u043B \u043D\u0430 \u0432\u0441\u044F\u043A\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=\u0414\u0435\u0444\u0438\u043D\u0438\u0440\u0430 \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 \u043D\u043E\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u0432 \u0434\u043E\u043B\u043D\u0438\u044F \u043A\u043E\u043B\u043E\u043D\u0442\u0438\u0442\u0443\u043B \u043D\u0430 \u0432\u0441\u044F\u043A\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F \u0434\u0430\u043B\u0438 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0434\u043F\u0438\u0441\u0432\u0430 \u0441 \u0435\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u0435\u043D \u043F\u043E\u0434\u043F\u0438\u0441.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0438\u043C\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435, \u0441\u044A\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0430\u0449\u043E \u043D\u0430 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430.
|
|
110
|
+
TOOLTIP_FITTOPAGE=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0438\u043C\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435, \u0441\u044A\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0430\u0449\u043E \u043D\u0430 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0441\u0435 \u0441\u044A\u043E\u0431\u0440\u0430\u0437\u0438 \u0441 PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0441\u0435 \u0441\u044A\u043E\u0431\u0440\u0430\u0437\u0438 \u0441 PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0438\u043C\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043D\u0430 \u0444\u0438\u043B\u0442\u044A\u0440 \u043D\u0430 \u043D\u0430\u0447\u0430\u043B\u043D\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F\u0442 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0449\u0435 \u0438\u043C\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043D\u0430 \u0444\u0438\u043B\u0442\u044A\u0440 \u043D\u0430 \u043D\u0430\u0447\u0430\u043B\u043D\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=\
|
|
116
|
+
TOOLTIP_FONT_SIZE=\u0414\u0435\u0444\u0438\u043D\u0438\u0440\u0430 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u043D\u0430 \u0448\u0440\u0438\u0444\u0442\u0430 \u043D\u0430 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0438\u044F \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=\u041C\u0435\u0441\u0442\u043E\u043D\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=Exportaci\u00F3 SAPUI5
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=Defineix si el document generat \u00E9s accessible.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Defineix si el document generat \u00E9s accessible.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=Defineix si el document generat cont\u00E9 n\u00FAmeros de p\u00E0gina al peu de p\u00E0gina de cada p\u00E0gina.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Defineix si el document generat cont\u00E9 n\u00FAmeros de p\u00E0gina al peu de p\u00E0gina de cada p\u00E0gina.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=Defineix si el document generat est\u00E0 signat de forma digital.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Defineix si el document generat est\u00E0 signat de forma digital.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=El document generat tindr\u00E0 un contingut que s'ajusta a la mida de la p\u00E0gina.
|
|
110
|
+
TOOLTIP_FITTOPAGE=El document generat tindr\u00E0 un contingut que s'ajusta a la mida de la p\u00E0gina.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=El document generat ser\u00E0 conforme amb el PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=El document generat ser\u00E0 conforme amb el PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=El document generat tindr\u00E0 una configuraci\u00F3 de filtre a la portada.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=El document generat tindr\u00E0 una configuraci\u00F3 de filtre a la portada.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Defineix la mida del tipus de lletra del document generat.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Defineix la mida del tipus de lletra del document generat.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=Destinaci\u00F3
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5 Export
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=Definuje, zda je vygenerovan\u00FD dokument p\u0159\u00EDstupn\u00FD.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Definuje, zda je vygenerovan\u00FD dokument p\u0159\u00EDstupn\u00FD.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Definuje, zda generovan\u00FD dokument obsahuje \u010D\u00EDsla str\u00E1nek v pati\u010Dce ka\u017Ed\u00E9 str\u00E1nky.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=Definuje, zda je vygenerovan\u00FD dokument podeps\u00E1n digit\u00E1ln\u00EDm podpisem.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Definuje, zda je vygenerovan\u00FD dokument podeps\u00E1n digit\u00E1ln\u00EDm podpisem.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=Generovan\u00FD dokument bude m\u00EDt obsah, kter\u00FD odpov\u00EDd\u00E1 velikosti str\u00E1nky.
|
|
110
|
+
TOOLTIP_FITTOPAGE=Generovan\u00FD dokument bude m\u00EDt obsah, kter\u00FD odpov\u00EDd\u00E1 velikosti str\u00E1nky.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=Vygenerovan\u00FD dokument bude odpov\u00EDdat form\u00E1tu PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=Vygenerovan\u00FD dokument bude odpov\u00EDdat form\u00E1tu PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=Generovan\u00FD dokument bude m\u00EDt nastaven\u00ED filtru na kryc\u00EDm listu.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=Generovan\u00FD dokument bude m\u00EDt nastaven\u00ED filtru na kryc\u00EDm listu.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Definuje velikost fontu generovan\u00E9ho dokumentu.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Definuje velikost fontu generovan\u00E9ho dokumentu.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=C\u00EDl
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=Allgludo SAPUI5
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Fformat Dogfen Gludadwy (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Yn diffinio a yw'r ddogfen sydd wedi'i chreu ar gael yn hwylus.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Yn diffinio a yw'r ddogfen sydd wedi'i chreu yn cynnwys rhifau tudalennau yn nhroedyn pob tudalen.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Yn diffinio a yw'r ddogfen sydd wedi'i chreu wedi'i llofnodi \u00E2 llofnod digidol.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=Bydd gan y ddogfen sydd wedi'i chreu gynnwys sy'n ffitio i faint y dudalen.
|
|
110
|
+
TOOLTIP_FITTOPAGE=Bydd gan y ddogfen sydd wedi'i chreu gynnwys sy'n ffitio i faint y dudalen.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=Bydd y ddogfen sydd wedi'i chreu yn cydymffurfio \u00E2 PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=Bydd y ddogfen sydd wedi'i chreu yn cydymffurfio \u00E2 PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=Bydd gan y ddogfen sydd wedi'i chreu osodiadau hidlo ar y dudalen flaen.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=Bydd gan y ddogfen sydd wedi'i chreu osodiadau hidlo ar y dudalen flaen.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Yn diffinio maint ffont y ddogfen sydd wedi'i chreu.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Yn diffinio maint ffont y ddogfen sydd wedi'i chreu.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=Cyrchfan
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5-eksport
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=Definerer, om det genererede dokument er tilg\u00E6ngeligt.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Definerer, om det genererede dokument er tilg\u00E6ngeligt.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=Definerer, om det genererede dokument indeholder sidenumre i bundlinien p\u00E5 hver side.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Definerer, om det genererede dokument indeholder sidenumre i bundlinien p\u00E5 hver side.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=Definerer, om det genererede dokument er signeret med en digital signatur.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Definerer, om det genererede dokument er signeret med en digital signatur.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=Det genererede dokument vil have indhold, der passer til st\u00F8rrelsen p\u00E5 siden.
|
|
110
|
+
TOOLTIP_FITTOPAGE=Det genererede dokument vil have indhold, der passer til st\u00F8rrelsen p\u00E5 siden.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=Det genererede dokument overholder PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=Det genererede dokument overholder PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=Det genererede dokument vil have filterindstillinger p\u00E5 forsiden.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=Det genererede dokument vil have filterindstillinger p\u00E5 forsiden.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Definerer skriftst\u00F8rrelsen p\u00E5 det genererede dokument.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Definerer skriftst\u00F8rrelsen p\u00E5 det genererede dokument.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=Destination
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5-Export
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=Legt fest, ob das generierte Dokument barrierefrei ist.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Legt fest, ob das generierte Dokument barrierefrei ist.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=Legt fest, ob das generierte Dokument Seitenzahlen in der Fu\u00DFzeile jeder Seite enth\u00E4lt.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Legt fest, ob das generierte Dokument Seitenzahlen in der Fu\u00DFzeile jeder Seite enth\u00E4lt.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=Legt fest, ob das generierte Dokument mit einer digitalen Signatur signiert ist.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Legt fest, ob das generierte Dokument mit einer digitalen Signatur signiert ist.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=Das generierte Dokument hat Inhalte, die sich an die Gr\u00F6\u00DFe der Seite anpassen.
|
|
110
|
+
TOOLTIP_FITTOPAGE=Das generierte Dokument hat Inhalte, die sich an die Gr\u00F6\u00DFe der Seite anpassen.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=Das generierte Dokument entspricht PDF/A.
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=Das generierte Dokument entspricht PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=Das generierte Dokument hat Filtereinstellungen auf dem Deckblatt.
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=Das generierte Dokument hat Filtereinstellungen auf dem Deckblatt.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Legt die Schriftgr\u00F6\u00DFe des generierten Dokuments fest.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Legt die Schriftgr\u00F6\u00DFe des generierten Dokuments fest.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=Destination
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5 \u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=\u039C\u03BF\u03C1\u03C6\u03AE \u039C\u03B5\u03C4\u03B1\u03C6\u03B5\u03C1\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u0395\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B2\u03AC\u03C3\u03B9\u03BC\u03BF.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B2\u03AC\u03C3\u03B9\u03BC\u03BF.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03C3\u03C4\u03BF \u03C5\u03C0\u03BF\u03C3\u03AD\u03BB\u03B9\u03B4\u03BF \u03BA\u03AC\u03B8\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03C3\u03C4\u03BF \u03C5\u03C0\u03BF\u03C3\u03AD\u03BB\u03B9\u03B4\u03BF \u03BA\u03AC\u03B8\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF \u03BC\u03B5 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AE \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03BD \u03C4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF \u03BC\u03B5 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AE \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \
|
|
110
|
+
TOOLTIP_FITTOPAGE=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03AD\u03C7\u03B5\u03B9 \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1 \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03CC\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C3\u03C5\u03BC\u03B2\u03B1\u03B4\u03AF\u03B6\u03B5\u03B9 \u03BC\u03B5 PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=\u03A4\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03AD\u03C7\u03B5\u03B9 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 \u03C3\u03C4\u03BF \u03B5\u03BE\u03CE\u03C6\u03C5\u03BB\u03BB\u03BF.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03C4\u03BF\u03C5 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5.
|
|
116
|
+
TOOLTIP_FONT_SIZE=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03C4\u03BF\u03C5 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=\u03A0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2
|
|
119
119
|
|
|
@@ -101,19 +101,19 @@ XLSX_DEFAULT_SHEETNAME=SAPUI5 Export
|
|
|
101
101
|
|
|
102
102
|
PDF_FILETYPE=Portable Document Format (*.pdf)
|
|
103
103
|
|
|
104
|
-
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible.
|
|
104
|
+
TOOLTIP_PDF_ACCESSIBILITY=Defines whether the generated document is accessible.
|
|
105
105
|
|
|
106
|
-
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page.
|
|
106
|
+
TOOLTIP_PDF_PAGENUMBER=Defines whether the generated document contains page numbers in the footer of each page.
|
|
107
107
|
|
|
108
|
-
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature.
|
|
108
|
+
TOOLTIP_PDF_SIGNATURE=Defines whether the generated document is signed with a digital signature.
|
|
109
109
|
|
|
110
|
-
TOOLTIP_FITTOPAGE=The generated document
|
|
110
|
+
TOOLTIP_FITTOPAGE=The generated document has content that fits the size of the page.
|
|
111
111
|
|
|
112
|
-
TOOLTIP_ARCHIVE_FORMAT=The generated document
|
|
112
|
+
TOOLTIP_ARCHIVE_FORMAT=The generated document conforms with PDF/A.
|
|
113
113
|
|
|
114
|
-
TOOLTIP_FILTER_SETTINGS=The generated document
|
|
114
|
+
TOOLTIP_FILTER_SETTINGS=The generated document has filter settings on the cover page.
|
|
115
115
|
|
|
116
|
-
TOOLTIP_FONT_SIZE=Defines the font size of the generated document.
|
|
116
|
+
TOOLTIP_FONT_SIZE=Defines the font size of the generated document.
|
|
117
117
|
|
|
118
118
|
SELECT_DESTINATION=Destination
|
|
119
119
|
|