@commercetools-frontend-extensions/export-resources-modal 5.12.0 → 5.13.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/README.md +2 -0
- package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.dev.js +9 -9
- package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.prod.js +9 -9
- package/dist/commercetools-frontend-extensions-export-resources-modal.esm.js +9 -9
- package/dist/{de-c329851c.cjs.prod.js → de-6b509aa7.cjs.dev.js} +40 -16
- package/dist/{de-e750003d.cjs.dev.js → de-8110043f.cjs.prod.js} +40 -16
- package/dist/{de-c4790906.esm.js → de-b9fb4989.esm.js} +40 -16
- package/dist/declarations/src/@types/export-resources-modal-types.d.ts +1 -0
- package/dist/{en-71b1a370.cjs.prod.js → en-377deb39.cjs.dev.js} +24 -0
- package/dist/{en-266b37b4.cjs.dev.js → en-9fe86528.cjs.prod.js} +24 -0
- package/dist/{en-95d6ae91.esm.js → en-de85a5ef.esm.js} +24 -0
- package/dist/{es-247f58fc.cjs.prod.js → es-0ea45787.cjs.dev.js} +41 -17
- package/dist/{es-ec8412cc.esm.js → es-86ebb4a7.esm.js} +41 -17
- package/dist/{es-e7f0907c.cjs.dev.js → es-dd446447.cjs.prod.js} +41 -17
- package/dist/{fr-FR-e38078dc.cjs.dev.js → fr-FR-0d9f3e3d.cjs.prod.js} +37 -13
- package/dist/{fr-FR-91c6dc87.cjs.prod.js → fr-FR-39e29254.cjs.dev.js} +37 -13
- package/dist/{fr-FR-b8239dad.esm.js → fr-FR-df020a8e.esm.js} +37 -13
- package/dist/{pt-BR-59bc8b1c.cjs.dev.js → pt-BR-22c0a143.cjs.dev.js} +41 -17
- package/dist/{pt-BR-0e9382e5.cjs.prod.js → pt-BR-55b92776.cjs.prod.js} +41 -17
- package/dist/{pt-BR-26f18714.esm.js → pt-BR-57d11a42.esm.js} +41 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -358,6 +358,8 @@ import ExportResourcesModal from '@commercetools-frontend-extensions/export-reso
|
|
|
358
358
|
| `fieldGroups[].fields[].isExpandable` | `boolean` | | `false`| `isExpandable` property indicates if the field can be expanded/collapsed on the UI. If the `isExpandable` is passed as true, then a expand/collapse button is displayed on the UI to control |
|
|
359
359
|
| `fieldGroups[].fields[].isExpanded` | `boolean` | | `false` | This property is used along with `fieldGroups[].fields[].isExpandable` to control the default state of each expandable fields in the UI. If `fieldGroups[].fields[].isExpanded` is set to `true`, then the corresponding field will be expanded when the component loads. The default value is `false` which means unless explicitly set to `true`, the field will be collapsed on initial load |
|
|
360
360
|
| `fieldOrder` | `string[]` | | | The field names are sorted based on the order passed. The value `*` can be passed to denote any fields and for example fieldOrder=['*', 'custom'] will push all the fields that starts with custom to the last in the list and any other fields will be at the beginning of the list |
|
|
361
|
+
| `stores` | `Array<{ key: string; name: string }>` | | | When provided (and the `resourceType` defines an `exportScopeSpecificStore` message), renders an additional "Specific store" scope option with a store-selection dropdown. Selecting a store sets `where=store(key="<key>")` on the export request. |
|
|
362
|
+
| `selectedScopeQueryPredicateBuilder` | `(selectedResourceIds: string[]) => string` | | | Overrides the `where` predicate produced for the SELECTED scope. Useful when `selectedResourceIds` reference a related resource — e.g. tailoring exports where IDs are product IDs, so the predicate must be `product(id in (...))` instead of the default `id in (...)`. |
|
|
361
363
|
|
|
362
364
|
## Releasing
|
|
363
365
|
|
|
@@ -1821,7 +1821,7 @@ const useStartExportOperation = props => {
|
|
|
1821
1821
|
let where = undefined;
|
|
1822
1822
|
let filters = undefined;
|
|
1823
1823
|
if (exportType === EXPORT_TYPES.SELECTED && props.selectedResourceIds?.length) {
|
|
1824
|
-
where = buildSelectedExportFilters(props.selectedResourceIds);
|
|
1824
|
+
where = props.selectedScopeQueryPredicateBuilder ? props.selectedScopeQueryPredicateBuilder(props.selectedResourceIds) : buildSelectedExportFilters(props.selectedResourceIds);
|
|
1825
1825
|
} else if (exportType === EXPORT_TYPES.FILTERED && props.filters) {
|
|
1826
1826
|
where = props.filters.where;
|
|
1827
1827
|
if (isQueryFilter(props.filters.filters)) {
|
|
@@ -2211,7 +2211,8 @@ function ExportScopeSection() {
|
|
|
2211
2211
|
selectedStoreKey = _useExportResourcesMo.selectedStoreKey,
|
|
2212
2212
|
setSelectedStoreKey = _useExportResourcesMo.setSelectedStoreKey;
|
|
2213
2213
|
const shouldShowQueryPredicateField = exportType === EXPORT_TYPES.QUERY_PREDICATE;
|
|
2214
|
-
return jsxRuntime.jsxs(
|
|
2214
|
+
return jsxRuntime.jsxs(uiKit.Spacings.Stack, {
|
|
2215
|
+
scale: "xs",
|
|
2215
2216
|
children: [jsxRuntime.jsxs(uiKit.RadioInput.Group, {
|
|
2216
2217
|
value: exportType,
|
|
2217
2218
|
onChange: e => {
|
|
@@ -2263,11 +2264,10 @@ function ExportScopeSection() {
|
|
|
2263
2264
|
intlMessage: resourceTypeMessages[resourceType].exportScopeSpecificStore
|
|
2264
2265
|
})
|
|
2265
2266
|
})]
|
|
2266
|
-
}), stores && stores.length > 0 && exportType
|
|
2267
|
+
}), stores && stores.length > 0 && exportType === EXPORT_TYPES.SPECIFIC_STORE && jsxRuntime.jsx(uiKit.SelectField, {
|
|
2267
2268
|
name: "selectedStoreKey",
|
|
2268
2269
|
title: "",
|
|
2269
2270
|
horizontalConstraint: 7,
|
|
2270
|
-
isDisabled: exportType !== EXPORT_TYPES.SPECIFIC_STORE,
|
|
2271
2271
|
value: selectedStoreKey,
|
|
2272
2272
|
onChange: event => setSelectedStoreKey(event.target.value),
|
|
2273
2273
|
options: _mapInstanceProperty__default["default"](stores).call(stores, store => ({
|
|
@@ -3649,17 +3649,17 @@ const getChunkImport = locale => {
|
|
|
3649
3649
|
const intlLocale = i18n.mapLocaleToIntlLocale(locale);
|
|
3650
3650
|
switch (intlLocale) {
|
|
3651
3651
|
case 'de':
|
|
3652
|
-
return Promise.resolve().then(function () { return require('./de-
|
|
3652
|
+
return Promise.resolve().then(function () { return require('./de-6b509aa7.cjs.dev.js'); });
|
|
3653
3653
|
case 'es':
|
|
3654
|
-
return Promise.resolve().then(function () { return require('./es-
|
|
3654
|
+
return Promise.resolve().then(function () { return require('./es-0ea45787.cjs.dev.js'); });
|
|
3655
3655
|
case 'fr-FR':
|
|
3656
|
-
return Promise.resolve().then(function () { return require('./fr-FR-
|
|
3656
|
+
return Promise.resolve().then(function () { return require('./fr-FR-39e29254.cjs.dev.js'); });
|
|
3657
3657
|
case 'ja':
|
|
3658
3658
|
return Promise.resolve().then(function () { return require('./ja-9bd5f452.cjs.dev.js'); });
|
|
3659
3659
|
case 'pt-BR':
|
|
3660
|
-
return Promise.resolve().then(function () { return require('./pt-BR-
|
|
3660
|
+
return Promise.resolve().then(function () { return require('./pt-BR-22c0a143.cjs.dev.js'); });
|
|
3661
3661
|
default:
|
|
3662
|
-
return Promise.resolve().then(function () { return require('./en-
|
|
3662
|
+
return Promise.resolve().then(function () { return require('./en-377deb39.cjs.dev.js'); });
|
|
3663
3663
|
}
|
|
3664
3664
|
};
|
|
3665
3665
|
const loadMessages = async locale => {
|
|
@@ -1821,7 +1821,7 @@ const useStartExportOperation = props => {
|
|
|
1821
1821
|
let where = undefined;
|
|
1822
1822
|
let filters = undefined;
|
|
1823
1823
|
if (exportType === EXPORT_TYPES.SELECTED && props.selectedResourceIds?.length) {
|
|
1824
|
-
where = buildSelectedExportFilters(props.selectedResourceIds);
|
|
1824
|
+
where = props.selectedScopeQueryPredicateBuilder ? props.selectedScopeQueryPredicateBuilder(props.selectedResourceIds) : buildSelectedExportFilters(props.selectedResourceIds);
|
|
1825
1825
|
} else if (exportType === EXPORT_TYPES.FILTERED && props.filters) {
|
|
1826
1826
|
where = props.filters.where;
|
|
1827
1827
|
if (isQueryFilter(props.filters.filters)) {
|
|
@@ -2211,7 +2211,8 @@ function ExportScopeSection() {
|
|
|
2211
2211
|
selectedStoreKey = _useExportResourcesMo.selectedStoreKey,
|
|
2212
2212
|
setSelectedStoreKey = _useExportResourcesMo.setSelectedStoreKey;
|
|
2213
2213
|
const shouldShowQueryPredicateField = exportType === EXPORT_TYPES.QUERY_PREDICATE;
|
|
2214
|
-
return jsxRuntime.jsxs(
|
|
2214
|
+
return jsxRuntime.jsxs(uiKit.Spacings.Stack, {
|
|
2215
|
+
scale: "xs",
|
|
2215
2216
|
children: [jsxRuntime.jsxs(uiKit.RadioInput.Group, {
|
|
2216
2217
|
value: exportType,
|
|
2217
2218
|
onChange: e => {
|
|
@@ -2263,11 +2264,10 @@ function ExportScopeSection() {
|
|
|
2263
2264
|
intlMessage: resourceTypeMessages[resourceType].exportScopeSpecificStore
|
|
2264
2265
|
})
|
|
2265
2266
|
})]
|
|
2266
|
-
}), stores && stores.length > 0 && exportType
|
|
2267
|
+
}), stores && stores.length > 0 && exportType === EXPORT_TYPES.SPECIFIC_STORE && jsxRuntime.jsx(uiKit.SelectField, {
|
|
2267
2268
|
name: "selectedStoreKey",
|
|
2268
2269
|
title: "",
|
|
2269
2270
|
horizontalConstraint: 7,
|
|
2270
|
-
isDisabled: exportType !== EXPORT_TYPES.SPECIFIC_STORE,
|
|
2271
2271
|
value: selectedStoreKey,
|
|
2272
2272
|
onChange: event => setSelectedStoreKey(event.target.value),
|
|
2273
2273
|
options: _mapInstanceProperty__default["default"](stores).call(stores, store => ({
|
|
@@ -3616,17 +3616,17 @@ const getChunkImport = locale => {
|
|
|
3616
3616
|
const intlLocale = i18n.mapLocaleToIntlLocale(locale);
|
|
3617
3617
|
switch (intlLocale) {
|
|
3618
3618
|
case 'de':
|
|
3619
|
-
return Promise.resolve().then(function () { return require('./de-
|
|
3619
|
+
return Promise.resolve().then(function () { return require('./de-8110043f.cjs.prod.js'); });
|
|
3620
3620
|
case 'es':
|
|
3621
|
-
return Promise.resolve().then(function () { return require('./es-
|
|
3621
|
+
return Promise.resolve().then(function () { return require('./es-dd446447.cjs.prod.js'); });
|
|
3622
3622
|
case 'fr-FR':
|
|
3623
|
-
return Promise.resolve().then(function () { return require('./fr-FR-
|
|
3623
|
+
return Promise.resolve().then(function () { return require('./fr-FR-0d9f3e3d.cjs.prod.js'); });
|
|
3624
3624
|
case 'ja':
|
|
3625
3625
|
return Promise.resolve().then(function () { return require('./ja-37632763.cjs.prod.js'); });
|
|
3626
3626
|
case 'pt-BR':
|
|
3627
|
-
return Promise.resolve().then(function () { return require('./pt-BR-
|
|
3627
|
+
return Promise.resolve().then(function () { return require('./pt-BR-55b92776.cjs.prod.js'); });
|
|
3628
3628
|
default:
|
|
3629
|
-
return Promise.resolve().then(function () { return require('./en-
|
|
3629
|
+
return Promise.resolve().then(function () { return require('./en-9fe86528.cjs.prod.js'); });
|
|
3630
3630
|
}
|
|
3631
3631
|
};
|
|
3632
3632
|
const loadMessages = async locale => {
|
|
@@ -1778,7 +1778,7 @@ const useStartExportOperation = props => {
|
|
|
1778
1778
|
let where = undefined;
|
|
1779
1779
|
let filters = undefined;
|
|
1780
1780
|
if (exportType === EXPORT_TYPES.SELECTED && props.selectedResourceIds?.length) {
|
|
1781
|
-
where = buildSelectedExportFilters(props.selectedResourceIds);
|
|
1781
|
+
where = props.selectedScopeQueryPredicateBuilder ? props.selectedScopeQueryPredicateBuilder(props.selectedResourceIds) : buildSelectedExportFilters(props.selectedResourceIds);
|
|
1782
1782
|
} else if (exportType === EXPORT_TYPES.FILTERED && props.filters) {
|
|
1783
1783
|
where = props.filters.where;
|
|
1784
1784
|
if (isQueryFilter(props.filters.filters)) {
|
|
@@ -2168,7 +2168,8 @@ function ExportScopeSection() {
|
|
|
2168
2168
|
selectedStoreKey = _useExportResourcesMo.selectedStoreKey,
|
|
2169
2169
|
setSelectedStoreKey = _useExportResourcesMo.setSelectedStoreKey;
|
|
2170
2170
|
const shouldShowQueryPredicateField = exportType === EXPORT_TYPES.QUERY_PREDICATE;
|
|
2171
|
-
return jsxs(
|
|
2171
|
+
return jsxs(Spacings.Stack, {
|
|
2172
|
+
scale: "xs",
|
|
2172
2173
|
children: [jsxs(RadioInput.Group, {
|
|
2173
2174
|
value: exportType,
|
|
2174
2175
|
onChange: e => {
|
|
@@ -2220,11 +2221,10 @@ function ExportScopeSection() {
|
|
|
2220
2221
|
intlMessage: resourceTypeMessages[resourceType].exportScopeSpecificStore
|
|
2221
2222
|
})
|
|
2222
2223
|
})]
|
|
2223
|
-
}), stores && stores.length > 0 && exportType
|
|
2224
|
+
}), stores && stores.length > 0 && exportType === EXPORT_TYPES.SPECIFIC_STORE && jsx(SelectField, {
|
|
2224
2225
|
name: "selectedStoreKey",
|
|
2225
2226
|
title: "",
|
|
2226
2227
|
horizontalConstraint: 7,
|
|
2227
|
-
isDisabled: exportType !== EXPORT_TYPES.SPECIFIC_STORE,
|
|
2228
2228
|
value: selectedStoreKey,
|
|
2229
2229
|
onChange: event => setSelectedStoreKey(event.target.value),
|
|
2230
2230
|
options: _mapInstanceProperty(stores).call(stores, store => ({
|
|
@@ -3606,17 +3606,17 @@ const getChunkImport = locale => {
|
|
|
3606
3606
|
const intlLocale = mapLocaleToIntlLocale(locale);
|
|
3607
3607
|
switch (intlLocale) {
|
|
3608
3608
|
case 'de':
|
|
3609
|
-
return import('./de-
|
|
3609
|
+
return import('./de-b9fb4989.esm.js');
|
|
3610
3610
|
case 'es':
|
|
3611
|
-
return import('./es-
|
|
3611
|
+
return import('./es-86ebb4a7.esm.js');
|
|
3612
3612
|
case 'fr-FR':
|
|
3613
|
-
return import('./fr-FR-
|
|
3613
|
+
return import('./fr-FR-df020a8e.esm.js');
|
|
3614
3614
|
case 'ja':
|
|
3615
3615
|
return import('./ja-73c088a7.esm.js');
|
|
3616
3616
|
case 'pt-BR':
|
|
3617
|
-
return import('./pt-BR-
|
|
3617
|
+
return import('./pt-BR-57d11a42.esm.js');
|
|
3618
3618
|
default:
|
|
3619
|
-
return import('./en-
|
|
3619
|
+
return import('./en-de85a5ef.esm.js');
|
|
3620
3620
|
}
|
|
3621
3621
|
};
|
|
3622
3622
|
const loadMessages = async locale => {
|
|
@@ -47,19 +47,19 @@ var de = {
|
|
|
47
47
|
},
|
|
48
48
|
"ExportResourcesModal.columnSeparatorComma": {
|
|
49
49
|
developer_comment: "Label for comma column separator option",
|
|
50
|
-
string: "
|
|
50
|
+
string: "Komma (,)"
|
|
51
51
|
},
|
|
52
52
|
"ExportResourcesModal.columnSeparatorPipe": {
|
|
53
53
|
developer_comment: "Label for pipe column separator option",
|
|
54
|
-
string: "
|
|
54
|
+
string: "senkrechter Strich (|)"
|
|
55
55
|
},
|
|
56
56
|
"ExportResourcesModal.columnSeparatorSemicolon": {
|
|
57
57
|
developer_comment: "Label for semicolon column separator option",
|
|
58
|
-
string: "
|
|
58
|
+
string: "Semikolon (;)"
|
|
59
59
|
},
|
|
60
60
|
"ExportResourcesModal.columnSeparatorTab": {
|
|
61
61
|
developer_comment: "Label for tab column separator option",
|
|
62
|
-
string: "
|
|
62
|
+
string: "Tab (\\t)"
|
|
63
63
|
},
|
|
64
64
|
"ExportResourcesModal.columns": {
|
|
65
65
|
developer_comment: "Label for column separator select",
|
|
@@ -71,7 +71,7 @@ var de = {
|
|
|
71
71
|
},
|
|
72
72
|
"ExportResourcesModal.csvSettings": {
|
|
73
73
|
developer_comment: "Label for CSV settings section",
|
|
74
|
-
string: "CSV
|
|
74
|
+
string: "CSV-Einstellungen:"
|
|
75
75
|
},
|
|
76
76
|
"ExportResourcesModal.csvUploadFailed": {
|
|
77
77
|
developer_comment: "CSV upload failed title",
|
|
@@ -79,11 +79,11 @@ var de = {
|
|
|
79
79
|
},
|
|
80
80
|
"ExportResourcesModal.decimalSeparatorComma": {
|
|
81
81
|
developer_comment: "Label for comma decimal separator option",
|
|
82
|
-
string: "
|
|
82
|
+
string: "Komma (,)"
|
|
83
83
|
},
|
|
84
84
|
"ExportResourcesModal.decimalSeparatorPoint": {
|
|
85
85
|
developer_comment: "Label for point decimal separator option",
|
|
86
|
-
string: "
|
|
86
|
+
string: "Punkt (.)"
|
|
87
87
|
},
|
|
88
88
|
"ExportResourcesModal.decimals": {
|
|
89
89
|
developer_comment: "Label for decimal separator select",
|
|
@@ -99,7 +99,7 @@ var de = {
|
|
|
99
99
|
},
|
|
100
100
|
"ExportResourcesModal.documentation": {
|
|
101
101
|
developer_comment: "A label for Documentation link",
|
|
102
|
-
string: "
|
|
102
|
+
string: "Dokumentation"
|
|
103
103
|
},
|
|
104
104
|
"ExportResourcesModal.dragAndDropCSV": {
|
|
105
105
|
developer_comment: "Label for \"Drag and drop CSV\" text",
|
|
@@ -177,6 +177,10 @@ var de = {
|
|
|
177
177
|
developer_comment: "Label for Export All orders",
|
|
178
178
|
string: "Alle exportieren: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
179
179
|
},
|
|
180
|
+
"ExportResourcesModal.exportScopeAllProductTailorings": {
|
|
181
|
+
developer_comment: "Label for Export All product tailorings",
|
|
182
|
+
string: "Export tailored products for {total, plural, one {# product} other {# products}} in all stores"
|
|
183
|
+
},
|
|
180
184
|
"ExportResourcesModal.exportScopeAllProductTypes": {
|
|
181
185
|
developer_comment: "Label for Export All product types",
|
|
182
186
|
string: "Alle exportieren: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -205,6 +209,10 @@ var de = {
|
|
|
205
209
|
developer_comment: "Label for Export Filtered orders",
|
|
206
210
|
string: "Export gefiltert: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
207
211
|
},
|
|
212
|
+
"ExportResourcesModal.exportScopeFilteredProductTailorings": {
|
|
213
|
+
developer_comment: "Label for Export Filtered product tailorings",
|
|
214
|
+
string: "Export tailored products for the {total, plural, one {# filtered product} other {# filtered products}}"
|
|
215
|
+
},
|
|
208
216
|
"ExportResourcesModal.exportScopeFilteredProductTypes": {
|
|
209
217
|
developer_comment: "Label for Export Filtered product types",
|
|
210
218
|
string: "Export gefiltert: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -237,6 +245,10 @@ var de = {
|
|
|
237
245
|
developer_comment: "Label for Export Selected orders",
|
|
238
246
|
string: "Export ausgewählt: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
239
247
|
},
|
|
248
|
+
"ExportResourcesModal.exportScopeSelectedProductTailorings": {
|
|
249
|
+
developer_comment: "Label for Export Selected product tailorings",
|
|
250
|
+
string: "Export tailored products for the {total, plural, one {# selected product} other {# selected products}}"
|
|
251
|
+
},
|
|
240
252
|
"ExportResourcesModal.exportScopeSelectedProductTypes": {
|
|
241
253
|
developer_comment: "Label for Export Selected product types",
|
|
242
254
|
string: "Export ausgewählt: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -249,6 +261,10 @@ var de = {
|
|
|
249
261
|
developer_comment: "Label for Export Selected without count",
|
|
250
262
|
string: "Auswahl exportieren"
|
|
251
263
|
},
|
|
264
|
+
"ExportResourcesModal.exportScopeSpecificStoreProductTailorings": {
|
|
265
|
+
developer_comment: "Label for Export For a specific store option for product tailorings",
|
|
266
|
+
string: "Export tailored products for a specific store"
|
|
267
|
+
},
|
|
252
268
|
"ExportResourcesModal.fieldDefinitionNotFound": {
|
|
253
269
|
developer_comment: "Field definition not found error",
|
|
254
270
|
string: "Felddefinition nicht gefunden"
|
|
@@ -267,7 +283,7 @@ var de = {
|
|
|
267
283
|
},
|
|
268
284
|
"ExportResourcesModal.fieldsToBeExportedInLanguages": {
|
|
269
285
|
developer_comment: "Label for fields to be exported in languages",
|
|
270
|
-
string: "{fieldCount, plural, one {<b>1</b>
|
|
286
|
+
string: "{fieldCount, plural, one {<b>1</b> Feld wird in {languageCount, plural, one {<b>1</b> Sprache} other {<b>{languageCount}</b> Sprachen}} exportiert.} other {<b>{fieldCount}</b> Felder werden in {languageCount, plural, one {<b>1</b> Sprache} other {<b>{languageCount}</b> Sprachen}} exportiert}}:"
|
|
271
287
|
},
|
|
272
288
|
"ExportResourcesModal.fileName": {
|
|
273
289
|
developer_comment: "exported file name",
|
|
@@ -275,7 +291,7 @@ var de = {
|
|
|
275
291
|
},
|
|
276
292
|
"ExportResourcesModal.fillRows": {
|
|
277
293
|
developer_comment: "A checkbox label for filling rows with complete data",
|
|
278
|
-
string: "
|
|
294
|
+
string: "Alle Zeilen müssen vollständig ausgefüllt sein."
|
|
279
295
|
},
|
|
280
296
|
"ExportResourcesModal.includeAllLocales": {
|
|
281
297
|
developer_comment: "label for \"Include all locales\" checkbox",
|
|
@@ -307,7 +323,7 @@ var de = {
|
|
|
307
323
|
},
|
|
308
324
|
"ExportResourcesModal.itemCount": {
|
|
309
325
|
developer_comment: "Label for item count",
|
|
310
|
-
string: "{count, plural, one {#
|
|
326
|
+
string: "{count, plural, one {# Artikel} other {# Artikel}}"
|
|
311
327
|
},
|
|
312
328
|
"ExportResourcesModal.loadMoreFields": {
|
|
313
329
|
developer_comment: "Load more fields message",
|
|
@@ -365,13 +381,17 @@ var de = {
|
|
|
365
381
|
developer_comment: "Label for the products modal title",
|
|
366
382
|
string: "Produkte exportieren"
|
|
367
383
|
},
|
|
384
|
+
"ExportResourcesModal.modalTitle.productTailoring": {
|
|
385
|
+
developer_comment: "Label for the product tailorings modal title",
|
|
386
|
+
string: "Export tailored products"
|
|
387
|
+
},
|
|
368
388
|
"ExportResourcesModal.modalTitle.productType": {
|
|
369
389
|
developer_comment: "Label for the product types modal title",
|
|
370
390
|
string: "Produkttypen exportieren"
|
|
371
391
|
},
|
|
372
392
|
"ExportResourcesModal.moreInformation": {
|
|
373
393
|
developer_comment: "A label for more information",
|
|
374
|
-
string: "
|
|
394
|
+
string: "Weitere Informationen finden Sie unter {documentationLink}"
|
|
375
395
|
},
|
|
376
396
|
"ExportResourcesModal.myViews": {
|
|
377
397
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
@@ -379,7 +399,7 @@ var de = {
|
|
|
379
399
|
},
|
|
380
400
|
"ExportResourcesModal.noResourcesToExport": {
|
|
381
401
|
developer_comment: "Error message when there are no resources to export",
|
|
382
|
-
string: "
|
|
402
|
+
string: "Es stehen keine Ressourcen für den Export zur Verfügung. Bitte passen Sie Ihre Auswahl oder Filter an und versuchen Sie es erneut."
|
|
383
403
|
},
|
|
384
404
|
"ExportResourcesModal.noResourcesToExportForQueryPredicate": {
|
|
385
405
|
developer_comment: "Error message when there are no resources to export for given query predicate",
|
|
@@ -427,7 +447,7 @@ var de = {
|
|
|
427
447
|
},
|
|
428
448
|
"ExportResourcesModal.saveAs": {
|
|
429
449
|
developer_comment: "Label for \"Save as:\"",
|
|
430
|
-
string: "
|
|
450
|
+
string: "Speichern unter:"
|
|
431
451
|
},
|
|
432
452
|
"ExportResourcesModal.scope": {
|
|
433
453
|
developer_comment: "Label for \"Scope:\"",
|
|
@@ -460,17 +480,21 @@ var de = {
|
|
|
460
480
|
"ExportResourcesModal.selectFieldsToExport": {
|
|
461
481
|
string: "Zu exportierende Felder auswählen"
|
|
462
482
|
},
|
|
483
|
+
"ExportResourcesModal.selectStorePlaceholder": {
|
|
484
|
+
developer_comment: "Placeholder for the store selection dropdown",
|
|
485
|
+
string: "Select store"
|
|
486
|
+
},
|
|
463
487
|
"ExportResourcesModal.selected": {
|
|
464
488
|
developer_comment: "Label for total Selected",
|
|
465
489
|
string: "{total} ausgewählt"
|
|
466
490
|
},
|
|
467
491
|
"ExportResourcesModal.separators": {
|
|
468
492
|
developer_comment: "Label for separators",
|
|
469
|
-
string: "
|
|
493
|
+
string: "Trennzeichen"
|
|
470
494
|
},
|
|
471
495
|
"ExportResourcesModal.separatorsDescription": {
|
|
472
496
|
developer_comment: "Description for column separators",
|
|
473
|
-
string: "
|
|
497
|
+
string: "Konfigurieren Sie, wie Spalten in der exportierten Datei getrennt werden"
|
|
474
498
|
},
|
|
475
499
|
"ExportResourcesModal.showAll": {
|
|
476
500
|
developer_comment: "Label for \"Show all\" button",
|
|
@@ -47,19 +47,19 @@ var de = {
|
|
|
47
47
|
},
|
|
48
48
|
"ExportResourcesModal.columnSeparatorComma": {
|
|
49
49
|
developer_comment: "Label for comma column separator option",
|
|
50
|
-
string: "
|
|
50
|
+
string: "Komma (,)"
|
|
51
51
|
},
|
|
52
52
|
"ExportResourcesModal.columnSeparatorPipe": {
|
|
53
53
|
developer_comment: "Label for pipe column separator option",
|
|
54
|
-
string: "
|
|
54
|
+
string: "senkrechter Strich (|)"
|
|
55
55
|
},
|
|
56
56
|
"ExportResourcesModal.columnSeparatorSemicolon": {
|
|
57
57
|
developer_comment: "Label for semicolon column separator option",
|
|
58
|
-
string: "
|
|
58
|
+
string: "Semikolon (;)"
|
|
59
59
|
},
|
|
60
60
|
"ExportResourcesModal.columnSeparatorTab": {
|
|
61
61
|
developer_comment: "Label for tab column separator option",
|
|
62
|
-
string: "
|
|
62
|
+
string: "Tab (\\t)"
|
|
63
63
|
},
|
|
64
64
|
"ExportResourcesModal.columns": {
|
|
65
65
|
developer_comment: "Label for column separator select",
|
|
@@ -71,7 +71,7 @@ var de = {
|
|
|
71
71
|
},
|
|
72
72
|
"ExportResourcesModal.csvSettings": {
|
|
73
73
|
developer_comment: "Label for CSV settings section",
|
|
74
|
-
string: "CSV
|
|
74
|
+
string: "CSV-Einstellungen:"
|
|
75
75
|
},
|
|
76
76
|
"ExportResourcesModal.csvUploadFailed": {
|
|
77
77
|
developer_comment: "CSV upload failed title",
|
|
@@ -79,11 +79,11 @@ var de = {
|
|
|
79
79
|
},
|
|
80
80
|
"ExportResourcesModal.decimalSeparatorComma": {
|
|
81
81
|
developer_comment: "Label for comma decimal separator option",
|
|
82
|
-
string: "
|
|
82
|
+
string: "Komma (,)"
|
|
83
83
|
},
|
|
84
84
|
"ExportResourcesModal.decimalSeparatorPoint": {
|
|
85
85
|
developer_comment: "Label for point decimal separator option",
|
|
86
|
-
string: "
|
|
86
|
+
string: "Punkt (.)"
|
|
87
87
|
},
|
|
88
88
|
"ExportResourcesModal.decimals": {
|
|
89
89
|
developer_comment: "Label for decimal separator select",
|
|
@@ -99,7 +99,7 @@ var de = {
|
|
|
99
99
|
},
|
|
100
100
|
"ExportResourcesModal.documentation": {
|
|
101
101
|
developer_comment: "A label for Documentation link",
|
|
102
|
-
string: "
|
|
102
|
+
string: "Dokumentation"
|
|
103
103
|
},
|
|
104
104
|
"ExportResourcesModal.dragAndDropCSV": {
|
|
105
105
|
developer_comment: "Label for \"Drag and drop CSV\" text",
|
|
@@ -177,6 +177,10 @@ var de = {
|
|
|
177
177
|
developer_comment: "Label for Export All orders",
|
|
178
178
|
string: "Alle exportieren: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
179
179
|
},
|
|
180
|
+
"ExportResourcesModal.exportScopeAllProductTailorings": {
|
|
181
|
+
developer_comment: "Label for Export All product tailorings",
|
|
182
|
+
string: "Export tailored products for {total, plural, one {# product} other {# products}} in all stores"
|
|
183
|
+
},
|
|
180
184
|
"ExportResourcesModal.exportScopeAllProductTypes": {
|
|
181
185
|
developer_comment: "Label for Export All product types",
|
|
182
186
|
string: "Alle exportieren: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -205,6 +209,10 @@ var de = {
|
|
|
205
209
|
developer_comment: "Label for Export Filtered orders",
|
|
206
210
|
string: "Export gefiltert: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
207
211
|
},
|
|
212
|
+
"ExportResourcesModal.exportScopeFilteredProductTailorings": {
|
|
213
|
+
developer_comment: "Label for Export Filtered product tailorings",
|
|
214
|
+
string: "Export tailored products for the {total, plural, one {# filtered product} other {# filtered products}}"
|
|
215
|
+
},
|
|
208
216
|
"ExportResourcesModal.exportScopeFilteredProductTypes": {
|
|
209
217
|
developer_comment: "Label for Export Filtered product types",
|
|
210
218
|
string: "Export gefiltert: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -237,6 +245,10 @@ var de = {
|
|
|
237
245
|
developer_comment: "Label for Export Selected orders",
|
|
238
246
|
string: "Export ausgewählt: {total, plural, one {# Bestellung} other {# Bestellungen}}"
|
|
239
247
|
},
|
|
248
|
+
"ExportResourcesModal.exportScopeSelectedProductTailorings": {
|
|
249
|
+
developer_comment: "Label for Export Selected product tailorings",
|
|
250
|
+
string: "Export tailored products for the {total, plural, one {# selected product} other {# selected products}}"
|
|
251
|
+
},
|
|
240
252
|
"ExportResourcesModal.exportScopeSelectedProductTypes": {
|
|
241
253
|
developer_comment: "Label for Export Selected product types",
|
|
242
254
|
string: "Export ausgewählt: {total, plural, one {# Produkttyp} other {# Produkttypen}}"
|
|
@@ -249,6 +261,10 @@ var de = {
|
|
|
249
261
|
developer_comment: "Label for Export Selected without count",
|
|
250
262
|
string: "Auswahl exportieren"
|
|
251
263
|
},
|
|
264
|
+
"ExportResourcesModal.exportScopeSpecificStoreProductTailorings": {
|
|
265
|
+
developer_comment: "Label for Export For a specific store option for product tailorings",
|
|
266
|
+
string: "Export tailored products for a specific store"
|
|
267
|
+
},
|
|
252
268
|
"ExportResourcesModal.fieldDefinitionNotFound": {
|
|
253
269
|
developer_comment: "Field definition not found error",
|
|
254
270
|
string: "Felddefinition nicht gefunden"
|
|
@@ -267,7 +283,7 @@ var de = {
|
|
|
267
283
|
},
|
|
268
284
|
"ExportResourcesModal.fieldsToBeExportedInLanguages": {
|
|
269
285
|
developer_comment: "Label for fields to be exported in languages",
|
|
270
|
-
string: "{fieldCount, plural, one {<b>1</b>
|
|
286
|
+
string: "{fieldCount, plural, one {<b>1</b> Feld wird in {languageCount, plural, one {<b>1</b> Sprache} other {<b>{languageCount}</b> Sprachen}} exportiert.} other {<b>{fieldCount}</b> Felder werden in {languageCount, plural, one {<b>1</b> Sprache} other {<b>{languageCount}</b> Sprachen}} exportiert}}:"
|
|
271
287
|
},
|
|
272
288
|
"ExportResourcesModal.fileName": {
|
|
273
289
|
developer_comment: "exported file name",
|
|
@@ -275,7 +291,7 @@ var de = {
|
|
|
275
291
|
},
|
|
276
292
|
"ExportResourcesModal.fillRows": {
|
|
277
293
|
developer_comment: "A checkbox label for filling rows with complete data",
|
|
278
|
-
string: "
|
|
294
|
+
string: "Alle Zeilen müssen vollständig ausgefüllt sein."
|
|
279
295
|
},
|
|
280
296
|
"ExportResourcesModal.includeAllLocales": {
|
|
281
297
|
developer_comment: "label for \"Include all locales\" checkbox",
|
|
@@ -307,7 +323,7 @@ var de = {
|
|
|
307
323
|
},
|
|
308
324
|
"ExportResourcesModal.itemCount": {
|
|
309
325
|
developer_comment: "Label for item count",
|
|
310
|
-
string: "{count, plural, one {#
|
|
326
|
+
string: "{count, plural, one {# Artikel} other {# Artikel}}"
|
|
311
327
|
},
|
|
312
328
|
"ExportResourcesModal.loadMoreFields": {
|
|
313
329
|
developer_comment: "Load more fields message",
|
|
@@ -365,13 +381,17 @@ var de = {
|
|
|
365
381
|
developer_comment: "Label for the products modal title",
|
|
366
382
|
string: "Produkte exportieren"
|
|
367
383
|
},
|
|
384
|
+
"ExportResourcesModal.modalTitle.productTailoring": {
|
|
385
|
+
developer_comment: "Label for the product tailorings modal title",
|
|
386
|
+
string: "Export tailored products"
|
|
387
|
+
},
|
|
368
388
|
"ExportResourcesModal.modalTitle.productType": {
|
|
369
389
|
developer_comment: "Label for the product types modal title",
|
|
370
390
|
string: "Produkttypen exportieren"
|
|
371
391
|
},
|
|
372
392
|
"ExportResourcesModal.moreInformation": {
|
|
373
393
|
developer_comment: "A label for more information",
|
|
374
|
-
string: "
|
|
394
|
+
string: "Weitere Informationen finden Sie unter {documentationLink}"
|
|
375
395
|
},
|
|
376
396
|
"ExportResourcesModal.myViews": {
|
|
377
397
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
@@ -379,7 +399,7 @@ var de = {
|
|
|
379
399
|
},
|
|
380
400
|
"ExportResourcesModal.noResourcesToExport": {
|
|
381
401
|
developer_comment: "Error message when there are no resources to export",
|
|
382
|
-
string: "
|
|
402
|
+
string: "Es stehen keine Ressourcen für den Export zur Verfügung. Bitte passen Sie Ihre Auswahl oder Filter an und versuchen Sie es erneut."
|
|
383
403
|
},
|
|
384
404
|
"ExportResourcesModal.noResourcesToExportForQueryPredicate": {
|
|
385
405
|
developer_comment: "Error message when there are no resources to export for given query predicate",
|
|
@@ -427,7 +447,7 @@ var de = {
|
|
|
427
447
|
},
|
|
428
448
|
"ExportResourcesModal.saveAs": {
|
|
429
449
|
developer_comment: "Label for \"Save as:\"",
|
|
430
|
-
string: "
|
|
450
|
+
string: "Speichern unter:"
|
|
431
451
|
},
|
|
432
452
|
"ExportResourcesModal.scope": {
|
|
433
453
|
developer_comment: "Label for \"Scope:\"",
|
|
@@ -460,17 +480,21 @@ var de = {
|
|
|
460
480
|
"ExportResourcesModal.selectFieldsToExport": {
|
|
461
481
|
string: "Zu exportierende Felder auswählen"
|
|
462
482
|
},
|
|
483
|
+
"ExportResourcesModal.selectStorePlaceholder": {
|
|
484
|
+
developer_comment: "Placeholder for the store selection dropdown",
|
|
485
|
+
string: "Select store"
|
|
486
|
+
},
|
|
463
487
|
"ExportResourcesModal.selected": {
|
|
464
488
|
developer_comment: "Label for total Selected",
|
|
465
489
|
string: "{total} ausgewählt"
|
|
466
490
|
},
|
|
467
491
|
"ExportResourcesModal.separators": {
|
|
468
492
|
developer_comment: "Label for separators",
|
|
469
|
-
string: "
|
|
493
|
+
string: "Trennzeichen"
|
|
470
494
|
},
|
|
471
495
|
"ExportResourcesModal.separatorsDescription": {
|
|
472
496
|
developer_comment: "Description for column separators",
|
|
473
|
-
string: "
|
|
497
|
+
string: "Konfigurieren Sie, wie Spalten in der exportierten Datei getrennt werden"
|
|
474
498
|
},
|
|
475
499
|
"ExportResourcesModal.showAll": {
|
|
476
500
|
developer_comment: "Label for \"Show all\" button",
|