@vendure/admin-ui 2.0.0-next.17 → 2.0.0-next.19
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/catalog/catalog.module.d.ts +8 -3
- package/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.d.ts +22 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.d.ts +41 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.d.ts +4 -0
- package/catalog/components/collection-list/collection-list-bulk-actions.d.ts +6 -0
- package/catalog/components/collection-list/collection-list.component.d.ts +7 -5
- package/catalog/components/collection-tree/collection-tree-node.component.d.ts +10 -6
- package/catalog/components/collection-tree/collection-tree.component.d.ts +3 -1
- package/catalog/components/facet-list/facet-list-bulk-actions.d.ts +5 -0
- package/catalog/components/facet-list/facet-list.component.d.ts +2 -1
- package/catalog/components/product-detail/product-detail.component.d.ts +1 -1
- package/catalog/components/product-list/product-list-bulk-actions.d.ts +6 -0
- package/catalog/components/product-list/product-list.component.d.ts +4 -2
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +2 -2
- package/catalog/public_api.d.ts +6 -0
- package/core/common/generated-types.d.ts +269 -2
- package/core/common/utilities/bulk-action-utils.d.ts +19 -0
- package/core/common/utilities/selection-manager.d.ts +7 -0
- package/core/common/version.d.ts +1 -1
- package/core/data/definitions/collection-definitions.d.ts +3 -0
- package/core/data/definitions/facet-definitions.d.ts +3 -0
- package/core/data/definitions/product-definitions.d.ts +1 -0
- package/core/data/providers/collection-data.service.d.ts +3 -0
- package/core/data/providers/facet-data.service.d.ts +3 -0
- package/core/data/providers/product-data.service.d.ts +1 -0
- package/core/providers/bulk-action-registry/bulk-action-registry.service.d.ts +9 -0
- package/core/providers/bulk-action-registry/bulk-action-types.d.ts +149 -0
- package/core/providers/bulk-action-registry/register-bulk-action.d.ts +53 -0
- package/core/providers/modal/modal.types.d.ts +2 -0
- package/core/providers/nav-builder/nav-builder-types.d.ts +1 -0
- package/core/public_api.d.ts +5 -0
- package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +1 -1
- package/core/shared/components/bulk-action-menu/bulk-action-menu.component.d.ts +32 -0
- package/core/shared/components/data-table/data-table.component.d.ts +27 -8
- package/core/shared/shared.module.d.ts +32 -31
- package/customer/components/customer-group-member-list/customer-group-member-list.component.d.ts +11 -4
- package/esm2020/catalog/catalog.module.mjs +31 -6
- package/esm2020/catalog/components/assign-products-to-channel-dialog/assign-products-to-channel-dialog.component.mjs +4 -1
- package/esm2020/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.mjs +50 -0
- package/esm2020/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.mjs +84 -0
- package/esm2020/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.mjs +69 -0
- package/esm2020/catalog/components/collection-contents/collection-contents.component.mjs +1 -1
- package/esm2020/catalog/components/collection-detail/collection-detail.component.mjs +3 -3
- package/esm2020/catalog/components/collection-list/collection-list-bulk-actions.mjs +143 -0
- package/esm2020/catalog/components/collection-list/collection-list.component.mjs +16 -7
- package/esm2020/catalog/components/collection-tree/collection-tree-node.component.mjs +13 -6
- package/esm2020/catalog/components/collection-tree/collection-tree.component.mjs +5 -3
- package/esm2020/catalog/components/facet-list/facet-list-bulk-actions.mjs +202 -0
- package/esm2020/catalog/components/facet-list/facet-list.component.mjs +14 -5
- package/esm2020/catalog/components/generate-product-variants/generate-product-variants.component.mjs +1 -1
- package/esm2020/catalog/components/option-value-input/option-value-input.component.mjs +1 -1
- package/esm2020/catalog/components/product-detail/product-detail.component.mjs +34 -22
- package/esm2020/catalog/components/product-list/product-list-bulk-actions.mjs +168 -0
- package/esm2020/catalog/components/product-list/product-list.component.mjs +9 -4
- package/esm2020/catalog/components/product-variants-editor/product-variants-editor.component.mjs +29 -18
- package/esm2020/catalog/components/product-variants-list/product-variants-list.component.mjs +3 -3
- package/esm2020/catalog/providers/routing/collection-resolver.mjs +2 -1
- package/esm2020/catalog/public_api.mjs +7 -1
- package/esm2020/core/common/generated-types.mjs +3 -2
- package/esm2020/core/common/introspection-result.mjs +266 -191
- package/esm2020/core/common/utilities/bulk-action-utils.mjs +35 -0
- package/esm2020/core/common/utilities/configurable-operation-utils.mjs +2 -2
- package/esm2020/core/common/utilities/selection-manager.mjs +33 -1
- package/esm2020/core/common/version.mjs +2 -2
- package/esm2020/core/data/definitions/collection-definitions.mjs +30 -1
- package/esm2020/core/data/definitions/facet-definitions.mjs +31 -1
- package/esm2020/core/data/definitions/order-definitions.mjs +443 -443
- package/esm2020/core/data/definitions/product-definitions.mjs +751 -743
- package/esm2020/core/data/providers/collection-data.service.mjs +17 -2
- package/esm2020/core/data/providers/facet-data.service.mjs +18 -2
- package/esm2020/core/data/providers/product-data.service.mjs +7 -2
- package/esm2020/core/data/utils/remove-readonly-custom-fields.mjs +1 -1
- package/esm2020/core/providers/bulk-action-registry/bulk-action-registry.service.mjs +28 -0
- package/esm2020/core/providers/bulk-action-registry/bulk-action-types.mjs +2 -0
- package/esm2020/core/providers/bulk-action-registry/register-bulk-action.mjs +63 -0
- package/esm2020/core/providers/modal/modal.service.mjs +2 -1
- package/esm2020/core/providers/modal/modal.types.mjs +1 -1
- package/esm2020/core/providers/nav-builder/nav-builder-types.mjs +1 -1
- package/esm2020/core/public_api.mjs +6 -1
- package/esm2020/core/shared/components/asset-gallery/asset-gallery.component.mjs +2 -2
- package/esm2020/core/shared/components/bulk-action-menu/bulk-action-menu.component.mjs +97 -0
- package/esm2020/core/shared/components/custom-field-control/custom-field-control.component.mjs +1 -1
- package/esm2020/core/shared/components/data-table/data-table.component.mjs +62 -19
- package/esm2020/core/shared/components/dropdown/dropdown-menu.component.mjs +2 -2
- package/esm2020/core/shared/components/facet-value-selector/facet-value-selector.component.mjs +7 -4
- package/esm2020/core/shared/components/language-selector/language-selector.component.mjs +3 -3
- package/esm2020/core/shared/components/simple-dialog/simple-dialog.component.mjs +3 -3
- package/esm2020/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +1 -1
- package/esm2020/core/shared/pipes/custom-field-label.pipe.mjs +1 -1
- package/esm2020/core/shared/pipes/locale-currency.pipe.mjs +1 -1
- package/esm2020/core/shared/shared.module.mjs +7 -3
- package/esm2020/customer/components/customer-detail/customer-detail.component.mjs +1 -1
- package/esm2020/customer/components/customer-group-list/customer-group-list.component.mjs +3 -3
- package/esm2020/customer/components/customer-group-member-list/customer-group-member-list.component.mjs +3 -3
- package/esm2020/customer/components/customer-list/customer-list.component.mjs +1 -1
- package/esm2020/dashboard/widgets/latest-orders-widget/latest-orders-widget.component.mjs +1 -1
- package/esm2020/marketing/components/promotion-detail/promotion-detail.component.mjs +3 -3
- package/esm2020/marketing/components/promotion-list/promotion-list.component.mjs +1 -1
- package/esm2020/order/components/order-editor/order-editor.component.mjs +1 -1
- package/esm2020/order/components/order-list/order-list.component.mjs +1 -1
- package/esm2020/settings/components/administrator-list/administrator-list.component.mjs +1 -1
- package/esm2020/settings/components/channel-list/channel-list.component.mjs +1 -1
- package/esm2020/settings/components/country-list/country-list.component.mjs +1 -1
- package/esm2020/settings/components/payment-method-list/payment-method-list.component.mjs +1 -1
- package/esm2020/settings/components/role-list/role-list.component.mjs +1 -1
- package/esm2020/settings/components/shipping-method-detail/shipping-method-detail.component.mjs +3 -1
- package/esm2020/settings/components/shipping-method-list/shipping-method-list.component.mjs +1 -1
- package/esm2020/settings/components/tax-category-list/tax-category-list.component.mjs +1 -1
- package/esm2020/settings/components/tax-rate-list/tax-rate-list.component.mjs +1 -1
- package/esm2020/settings/components/zone-list/zone-list.component.mjs +3 -3
- package/esm2020/settings/components/zone-member-list/zone-member-list.component.mjs +3 -3
- package/esm2020/system/components/job-list/job-list.component.mjs +1 -1
- package/fesm2015/vendure-admin-ui-catalog.mjs +829 -66
- package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-core.mjs +1916 -1448
- package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.mjs +6 -6
- package/fesm2015/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.mjs +1 -1
- package/fesm2015/vendure-admin-ui-marketing.mjs +3 -3
- package/fesm2015/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.mjs +14 -12
- package/fesm2015/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-system.mjs +1 -1
- package/fesm2020/vendure-admin-ui-catalog.mjs +822 -65
- package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-core.mjs +1909 -1448
- package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-customer.mjs +6 -6
- package/fesm2020/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-dashboard.mjs +1 -1
- package/fesm2020/vendure-admin-ui-marketing.mjs +3 -3
- package/fesm2020/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-settings.mjs +14 -12
- package/fesm2020/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-system.mjs +1 -1
- package/package.json +2 -2
- package/settings/components/zone-member-list/zone-member-list.component.d.ts +3 -1
- package/static/i18n-messages/cs.json +19 -0
- package/static/i18n-messages/de.json +19 -0
- package/static/i18n-messages/en.json +22 -4
- package/static/i18n-messages/es.json +19 -0
- package/static/i18n-messages/fr.json +19 -0
- package/static/i18n-messages/it.json +19 -0
- package/static/i18n-messages/pl.json +19 -0
- package/static/i18n-messages/pt_BR.json +19 -0
- package/static/i18n-messages/pt_PT.json +19 -0
- package/static/i18n-messages/ru.json +19 -0
- package/static/i18n-messages/uk.json +19 -0
- package/static/i18n-messages/zh_Hans.json +19 -0
- package/static/i18n-messages/zh_Hant.json +19 -0
- package/static/styles/global/_overrides.scss +1 -1
- package/static/theme.min.css +1 -1
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Dodaj faset",
|
|
57
57
|
"add-option": "Dodaj opcje",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Pomyślnie przypisano produkt do \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Przypisz produkt do kanału",
|
|
61
63
|
"assign-to-channel": "Przypisz do kanału",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "",
|
|
67
69
|
"channel-price-preview": "Podgląd cen kanału",
|
|
68
70
|
"collection-contents": "Zawartość kolekcji",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "",
|
|
71
76
|
"confirm-delete-assets": "",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Usunąć wartość faseta?",
|
|
79
84
|
"confirm-delete-product": "Usunąć produkt?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Usunąć wariant produktu?",
|
|
82
88
|
"confirm-delete-promotion": "Usunąć promocje?",
|
|
83
89
|
"confirm-delete-shipping-method": "Usunąć metode wysyłki?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "Upuść pliki do uploadu",
|
|
96
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "Rozwiń wszystkie kolekcje",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "Wartości faseta",
|
|
100
108
|
"filter-by-name": "Filtruj po nazwie",
|
|
101
109
|
"filter-by-name-or-sku": "",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "Brak zaznaczonego kanału",
|
|
112
120
|
"no-featured-asset": "Brak polecanego zasobu",
|
|
113
121
|
"no-selection": "Brak zaznaczenia",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "Błąd usuwania produktu z kanału",
|
|
115
128
|
"notify-remove-product-from-channel-success": "Produkt pomyślnie usunięty z kanału",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "Usuń opcje",
|
|
140
153
|
"remove-product-from-channel": "Usuń produkt z kanału",
|
|
141
154
|
"remove-product-variant-from-channel": "",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "",
|
|
211
225
|
"extension-running-in-separate-window": "Rozszerzenie jest włączone w innym oknie",
|
|
212
226
|
"filter": "",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "Gość",
|
|
215
231
|
"items-per-page-option": "{ count } na stronę",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "Więcej...",
|
|
228
244
|
"name": "Nazwa",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "Brak wyników",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "Nie ustawione",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "Wystąpił błąd, nie można utworzyć { entity }",
|
|
233
251
|
"notify-create-success": "Utworzono { entity }",
|
|
234
252
|
"notify-delete-error": "Wystąpił błąd, nie można usunąć { entity }",
|
|
235
253
|
"notify-delete-success": "Usunięto { entity }",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "Wystąpił błąd, nie można zapisać zmian",
|
|
237
256
|
"notify-saved-changes": "Zapisano zmiany",
|
|
238
257
|
"notify-update-error": "Wystąpił błąd, nie można zaktualizować { entity }",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Adiciona etiqueta",
|
|
57
57
|
"add-option": "Adiciona opção",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Produto atribuído com sucesso a \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Atribuir produtos ao canal",
|
|
61
63
|
"assign-to-channel": "Atribuir ao canal",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Atualizar automaticamente os nomes das variações do produto",
|
|
67
69
|
"channel-price-preview": "Visualizar preço do canal",
|
|
68
70
|
"collection-contents": "Conteúdo da categoria",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Excluir administrador?",
|
|
71
76
|
"confirm-delete-assets": "Excluir {count} {count, plural, one {asset} other {assets}}?",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Excluir valor da etiqueta?",
|
|
79
84
|
"confirm-delete-product": "Excluir produto?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Excluir variação de produto?",
|
|
82
88
|
"confirm-delete-promotion": "Excluir promoção?",
|
|
83
89
|
"confirm-delete-shipping-method": "Excluir método de envio?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "Soltar arquivos para envio",
|
|
96
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "Expandir todas as categorias",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "Valor da Etiqueta",
|
|
100
108
|
"filter-by-name": "Filtrar por nome",
|
|
101
109
|
"filter-by-name-or-sku": "Filtrar por nome ou SKU",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "Nenhum canal selecionado",
|
|
112
120
|
"no-featured-asset": "Nenhum recurso em destaque",
|
|
113
121
|
"no-selection": "Nenhuma seleção",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "Não foi possível remover o produto do canal",
|
|
115
128
|
"notify-remove-product-from-channel-success": "Produto removido com sucesso do canal",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "Erro ao remover variação do canal",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "Excluir opção",
|
|
140
153
|
"remove-product-from-channel": "Excluir produto do canal",
|
|
141
154
|
"remove-product-variant-from-channel": "",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "Expandir entradas",
|
|
211
225
|
"extension-running-in-separate-window": "A extensão está sendo executada em uma janela separada",
|
|
212
226
|
"filter": "Filtro",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "Convidado",
|
|
215
231
|
"items-per-page-option": "{ count } por página",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "Mais...",
|
|
228
244
|
"name": "Nome",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "Sem resultados",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "Não configurado",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "Ocorreu um erro, não foi possível criar { entity }",
|
|
233
251
|
"notify-create-success": "Criado novo { entity }",
|
|
234
252
|
"notify-delete-error": "Ocorreu um erro, não foi possível excluir { entity }",
|
|
235
253
|
"notify-delete-success": "Excluído { entity }",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "Ocorreu um erro, não foi possível salvar as alterações",
|
|
237
256
|
"notify-saved-changes": "Alterações salvas",
|
|
238
257
|
"notify-update-error": "Ocorreu um erro, não foi possível atualizar { entity }",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Adicionar etiqueta",
|
|
57
57
|
"add-option": "Adicionar opção",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Produto atribuído com sucesso a \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Atribuir produtos ao canal",
|
|
61
63
|
"assign-to-channel": "Atribuir ao canal",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Actualizar automaticamente os nomes das variantes do produto",
|
|
67
69
|
"channel-price-preview": "Visualizar preço do canal",
|
|
68
70
|
"collection-contents": "Conteúdo da categoria",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Eliminar administrador?",
|
|
71
76
|
"confirm-delete-assets": "Eliminar {count} {count, plural, one {imagem} other {imagens}}?",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Eliminar valor da etiqueta?",
|
|
79
84
|
"confirm-delete-product": "Eliminar produto?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Eliminar variante do produto?",
|
|
82
88
|
"confirm-delete-promotion": "Eliminar promoção?",
|
|
83
89
|
"confirm-delete-shipping-method": "Eliminar método de envio?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "Colocar ficheiros para enviar",
|
|
96
102
|
"duplicate-sku-warning": "Certifique-se de que todos os SKUs sejam únicos",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "Editar opções",
|
|
98
105
|
"expand-all-collections": "Expandir todas as categorias",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "Valor da Etiqueta",
|
|
100
108
|
"filter-by-name": "Filtrar por nome",
|
|
101
109
|
"filter-by-name-or-sku": "Filtrar por nome ou SKU",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "Nenhum canal seleccionado",
|
|
112
120
|
"no-featured-asset": "Nenhum recurso em destaque",
|
|
113
121
|
"no-selection": "Nenhuma imagem seleccionada",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "Não foi possível remover o produto do canal",
|
|
115
128
|
"notify-remove-product-from-channel-success": "Produto removido do canal com sucesso",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "Erro ao remover a variante do canal",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "Eliminar opção",
|
|
140
153
|
"remove-product-from-channel": "Eliminar produto do canal",
|
|
141
154
|
"remove-product-variant-from-channel": "Remover variante do canal?",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "Executar {count, plural, one {1 actualização pendente} other {{count} actualizações pendentes}}",
|
|
143
157
|
"running-search-index-updates": "A executar {count, plural, one {1 actualização} other {{count} actualizações}}",
|
|
144
158
|
"search-asset-name-or-tag": "Pesquisar pelo nome ou tag",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "Expandir entradas",
|
|
211
225
|
"extension-running-in-separate-window": "A extensão está a ser executada em uma janela separada",
|
|
212
226
|
"filter": "Filtro",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "Geral",
|
|
214
230
|
"guest": "Convidado",
|
|
215
231
|
"items-per-page-option": "{ count } por página",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "Data média",
|
|
227
243
|
"more": "Mais...",
|
|
228
244
|
"name": "Nome",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "Nenhum resultado encontrado",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "Não configurado",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "Ocorreu um erro. Não foi possível criar { entity }",
|
|
233
251
|
"notify-create-success": "Novo(a) { entity } adicionado(a)",
|
|
234
252
|
"notify-delete-error": "Ocorreu um erro, não foi possível eliminar { entity }",
|
|
235
253
|
"notify-delete-success": "{ entity } excluído(a)",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "Ocorreu um erro. Não foi possível guardar as alterações",
|
|
237
256
|
"notify-saved-changes": "Alterações guardadas",
|
|
238
257
|
"notify-update-error": "Ocorreu um erro. Não foi possível actualizar a entidade { entity }",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Добавить тег",
|
|
57
57
|
"add-option": "Добавить опции",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Товар успешно добавлен в канал \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Добавить товары в канал",
|
|
61
63
|
"assign-to-channel": "Добавить в канал",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Автоматически обновлять названия вариантов товара",
|
|
67
69
|
"channel-price-preview": "Предварительный просмотр цен канала",
|
|
68
70
|
"collection-contents": "Содержание коллекции",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Удалить администратора?",
|
|
71
76
|
"confirm-delete-assets": "Удалить {count} {count, plural, one {медиа-объект} other {медиа-объектов}}?",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Удалить значение тега?",
|
|
79
84
|
"confirm-delete-product": "Удалить товар?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Удалить вариант товара?",
|
|
82
88
|
"confirm-delete-promotion": "Удалить промо-акцию?",
|
|
83
89
|
"confirm-delete-shipping-method": "Удалить способ доставки?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "Перетащите файлы для загрузки",
|
|
96
102
|
"duplicate-sku-warning": "Убедитесь, что все артикулы (SKU) уникальны",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "Развернуть все коллекции",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "Значения тега",
|
|
100
108
|
"filter-by-name": "Фильтр по имени",
|
|
101
109
|
"filter-by-name-or-sku": "Фильтр по имени или артикулу (SKU)",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "Канал не выбран",
|
|
112
120
|
"no-featured-asset": "Нет избранного медиа-объекта",
|
|
113
121
|
"no-selection": "Не выбрано",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "Не удалось удалить товар из канала",
|
|
115
128
|
"notify-remove-product-from-channel-success": "Товар успешно удален из канала",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "Не удалось удалить вариант товара из канала",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "Удалить опции",
|
|
140
153
|
"remove-product-from-channel": "Удалить товар из канала",
|
|
141
154
|
"remove-product-variant-from-channel": "Удалить вариант товара из канала",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "Поиск по названию медиа-объект или тегам",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "Развернуть записи",
|
|
211
225
|
"extension-running-in-separate-window": "Расширение работает в отдельном окне",
|
|
212
226
|
"filter": "Фильтр",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "Гость",
|
|
215
231
|
"items-per-page-option": "{ count } на странице",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "Больше...",
|
|
228
244
|
"name": "Имя",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "Нет результатов",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "Не задано",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "Ошибка, не удалось создать { entity }",
|
|
233
251
|
"notify-create-success": "Создано новое { entity }",
|
|
234
252
|
"notify-delete-error": "Ошибка, не удалось удалить { entity }",
|
|
235
253
|
"notify-delete-success": "Удалено { entity }",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "Произошла ошибка, не удалось сохранить изменения",
|
|
237
256
|
"notify-saved-changes": "Сохранены изменения",
|
|
238
257
|
"notify-update-error": "Произошла ошибка, не удалось обновить { entity }",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Додати тег",
|
|
57
57
|
"add-option": "Додати опцію",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Товар успішно доданий в канал \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Додати товари в канал",
|
|
61
63
|
"assign-to-channel": "Додати в канал",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Автоматично оновлювати назви варіантів товару",
|
|
67
69
|
"channel-price-preview": "Попередній перегляд цін каналу",
|
|
68
70
|
"collection-contents": "Зміст колекції",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Видалити адміністратора?",
|
|
71
76
|
"confirm-delete-assets": "Видалити {count} {count, plural, one {медіа-об'єкт} other {медіа-об'єктів}}?",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Видалити значення тегу?",
|
|
79
84
|
"confirm-delete-product": "Видалити товар?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Видалити варіант товару?",
|
|
82
88
|
"confirm-delete-promotion": "Видалити промо-акцію?",
|
|
83
89
|
"confirm-delete-shipping-method": "Видалити спосіб доставки?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "Перетягніть файли для завантаження",
|
|
96
102
|
"duplicate-sku-warning": "Переконайтесь, що всі артикули (SKU) унікальні",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "Розгорнути всі колекції",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "Значення тегу",
|
|
100
108
|
"filter-by-name": "Фільтр по імені",
|
|
101
109
|
"filter-by-name-or-sku": "Фільтр по імені або артикулу (SKU)",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "Канал не вибрано",
|
|
112
120
|
"no-featured-asset": "Немає обраного медіа-об'єкта",
|
|
113
121
|
"no-selection": "Не вибрано",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "Не вдалося видалити товар з каналу",
|
|
115
128
|
"notify-remove-product-from-channel-success": "Товар успішно видалений з каналу",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "Не вдалося видалити варіант товару з каналу",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "Видалити опції",
|
|
140
153
|
"remove-product-from-channel": "Видалити товар з каналу",
|
|
141
154
|
"remove-product-variant-from-channel": "Видалити варіант товару з каналу",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "Пошук за назвою медіа-об'єкта або тегами",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "Розгорнути записи",
|
|
211
225
|
"extension-running-in-separate-window": "Розширення працює в окремому вікні",
|
|
212
226
|
"filter": "Фільтр",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "Гість",
|
|
215
231
|
"items-per-page-option": "{ count } на сторінці",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "Більше...",
|
|
228
244
|
"name": "Ім'я",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "Немає результатів",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "Не задано",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "Помилка, не вдалося створити { entity }",
|
|
233
251
|
"notify-create-success": "Створено нове { entity }",
|
|
234
252
|
"notify-delete-error": "Помилка, не вдалося видалити { entity }",
|
|
235
253
|
"notify-delete-success": "Видалено { entity }",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "Сталася помилка, не вдалося зберегти зміни",
|
|
237
256
|
"notify-saved-changes": "Збережені зміни",
|
|
238
257
|
"notify-update-error": "Сталася помилка, не вдалося оновити { entity }",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "添加特征",
|
|
57
57
|
"add-option": "添加规格组",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "成功将产品添加至销售渠道\"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "分配产品到销售渠道",
|
|
61
63
|
"assign-to-channel": "分配至销售渠道",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "自动更新不同商品变体名称",
|
|
67
69
|
"channel-price-preview": "渠道价格预览",
|
|
68
70
|
"collection-contents": "系列产品",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "确认删除管理员吗?",
|
|
71
76
|
"confirm-delete-assets": "确认删除{count}个资源吗?",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "确认删除特征值?",
|
|
79
84
|
"confirm-delete-product": "确认删除商品?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "确认删除商品规格?",
|
|
82
88
|
"confirm-delete-promotion": "确认删除优惠券?",
|
|
83
89
|
"confirm-delete-shipping-method": "确认删除邮寄方式?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "拖拽文件上传",
|
|
96
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "展开所有系列",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "特征值列表",
|
|
100
108
|
"filter-by-name": "按名字过滤",
|
|
101
109
|
"filter-by-name-or-sku": "按名字或商品编码过滤",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "未选择销售渠道",
|
|
112
120
|
"no-featured-asset": "无特征图片",
|
|
113
121
|
"no-selection": "尚未选择",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "从渠道中移除商品失败",
|
|
115
128
|
"notify-remove-product-from-channel-success": "成功从渠道中移除商品",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "从渠道中移除商品变体失败",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "移除选项",
|
|
140
153
|
"remove-product-from-channel": "从销售渠道移除商品",
|
|
141
154
|
"remove-product-variant-from-channel": "从销售渠道移除商品变体",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "输入要搜索的资源名称或标签",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "展开",
|
|
211
225
|
"extension-running-in-separate-window": "扩展已在另一个窗口启动",
|
|
212
226
|
"filter": "过滤",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "游客",
|
|
215
231
|
"items-per-page-option": "每页显示 { count } 条",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "更多...",
|
|
228
244
|
"name": "名称",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "没找到任何结果",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "未设置",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "添加{ entity }失败",
|
|
233
251
|
"notify-create-success": "{ entity }已添加",
|
|
234
252
|
"notify-delete-error": "删除{ entity }失败",
|
|
235
253
|
"notify-delete-success": "{ entity }已删除",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "保存失败",
|
|
237
256
|
"notify-saved-changes": "修改已保存",
|
|
238
257
|
"notify-update-error": "更新{ entity }失败",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "新增特徵",
|
|
57
57
|
"add-option": "新增規格選項",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "成功將產品新增至渠道\"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "分配產品到渠道",
|
|
61
63
|
"assign-to-channel": "分配至渠道",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "",
|
|
67
69
|
"channel-price-preview": "渠道價格覽",
|
|
68
70
|
"collection-contents": "系列產品",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "",
|
|
71
76
|
"confirm-delete-assets": "",
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "確認移除特徵值?",
|
|
79
84
|
"confirm-delete-product": "確認移除商品?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "確認移除商品規格?",
|
|
82
88
|
"confirm-delete-promotion": "確認移除優惠券?",
|
|
83
89
|
"confirm-delete-shipping-method": "確認移除此郵寄方式?",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"do-not-inherit-filters": "",
|
|
95
101
|
"drop-files-to-upload": "拖拽文件上傳",
|
|
96
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
97
104
|
"edit-options": "",
|
|
98
105
|
"expand-all-collections": "展開所有系列",
|
|
106
|
+
"facet-value-not-available": "",
|
|
99
107
|
"facet-values": "特徵值列表",
|
|
100
108
|
"filter-by-name": "按名字篩選",
|
|
101
109
|
"filter-by-name-or-sku": "",
|
|
@@ -111,6 +119,11 @@
|
|
|
111
119
|
"no-channel-selected": "並未選擇渠道",
|
|
112
120
|
"no-featured-asset": "並無特徵圖片",
|
|
113
121
|
"no-selection": "尚未選擇",
|
|
122
|
+
"notify-bulk-delete-collections-success": "",
|
|
123
|
+
"notify-bulk-delete-facets-success": "",
|
|
124
|
+
"notify-bulk-delete-products-success": "",
|
|
125
|
+
"notify-remove-collections-from-channel-success": "",
|
|
126
|
+
"notify-remove-facets-from-channel-success": "",
|
|
114
127
|
"notify-remove-product-from-channel-error": "從渠道中移除商品失敗",
|
|
115
128
|
"notify-remove-product-from-channel-success": "成功從渠道中移除商品",
|
|
116
129
|
"notify-remove-variant-from-channel-error": "",
|
|
@@ -139,6 +152,7 @@
|
|
|
139
152
|
"remove-option": "移除選項",
|
|
140
153
|
"remove-product-from-channel": "從渠道移除商品",
|
|
141
154
|
"remove-product-variant-from-channel": "",
|
|
155
|
+
"root-collection": "",
|
|
142
156
|
"run-pending-search-index-updates": "",
|
|
143
157
|
"running-search-index-updates": "",
|
|
144
158
|
"search-asset-name-or-tag": "",
|
|
@@ -210,6 +224,8 @@
|
|
|
210
224
|
"expand-entries": "",
|
|
211
225
|
"extension-running-in-separate-window": "扩展已在另一個窗口启動",
|
|
212
226
|
"filter": "",
|
|
227
|
+
"force-delete": "",
|
|
228
|
+
"force-remove": "",
|
|
213
229
|
"general": "",
|
|
214
230
|
"guest": "游客",
|
|
215
231
|
"items-per-page-option": "每页顯示 { count } 條",
|
|
@@ -226,13 +242,16 @@
|
|
|
226
242
|
"medium-date": "",
|
|
227
243
|
"more": "更多...",
|
|
228
244
|
"name": "名稱",
|
|
245
|
+
"no-bulk-actions-available": "",
|
|
229
246
|
"no-results": "没找到任何結果",
|
|
230
247
|
"not-applicable": "",
|
|
231
248
|
"not-set": "未設定",
|
|
249
|
+
"notify-bulk-update-success": "",
|
|
232
250
|
"notify-create-error": "新增{ entity }失敗",
|
|
233
251
|
"notify-create-success": "{ entity }已新增",
|
|
234
252
|
"notify-delete-error": "移除{ entity }失敗",
|
|
235
253
|
"notify-delete-success": "{ entity }已移除",
|
|
254
|
+
"notify-remove-products-from-channel-success": "",
|
|
236
255
|
"notify-save-changes-error": "保存失敗",
|
|
237
256
|
"notify-saved-changes": "修改已保存",
|
|
238
257
|
"notify-update-error": "更新{ entity }失敗",
|