@vendure/admin-ui 1.7.4 → 1.8.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/bundles/vendure-admin-ui-catalog.umd.js +902 -74
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +2392 -820
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-customer.umd.js +4 -3
- package/bundles/vendure-admin-ui-customer.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-dashboard.umd.js +3 -1
- package/bundles/vendure-admin-ui-dashboard.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-order.umd.js +781 -175
- package/bundles/vendure-admin-ui-order.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js +5 -4
- package/bundles/vendure-admin-ui-settings.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-system.umd.js +1 -1
- package/catalog/catalog.module.d.ts +3 -0
- package/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.d.ts +17 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.d.ts +38 -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 +8 -4
- package/catalog/components/collection-tree/collection-tree.component.d.ts +2 -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-list/product-list-bulk-actions.d.ts +6 -0
- package/catalog/components/product-list/product-list.component.d.ts +2 -1
- package/catalog/public_api.d.ts +6 -0
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/component-registry-types.d.ts +1 -1
- package/core/common/generated-types.d.ts +609 -3
- 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/order-definitions.d.ts +12 -0
- package/core/data/definitions/product-definitions.d.ts +1 -0
- package/core/data/providers/collection-data.service.d.ts +4 -1
- package/core/data/providers/facet-data.service.d.ts +4 -1
- package/core/data/providers/order-data.service.d.ts +18 -1
- package/core/data/providers/product-data.service.d.ts +1 -0
- package/core/providers/bulk-action-registry/bulk-action-registry.service.d.ts +6 -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.service.d.ts +2 -0
- package/core/providers/nav-builder/nav-builder-types.d.ts +1 -0
- package/core/public_api.d.ts +18 -1
- package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +3 -3
- package/core/shared/components/bulk-action-menu/bulk-action-menu.component.d.ts +29 -0
- package/core/shared/components/data-table/data-table.component.d.ts +26 -7
- package/core/shared/components/dropdown/dropdown-menu.component.d.ts +1 -0
- package/core/shared/components/radio-card/radio-card-fieldset.component.d.ts +21 -0
- package/core/shared/components/radio-card/radio-card.component.d.ts +19 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.d.ts +28 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.d.ts +31 -0
- package/core/shared/components/rich-text-editor/prosemirror/custom-nodes.d.ts +4 -0
- package/core/shared/components/rich-text-editor/prosemirror/inputrules.d.ts +5 -5
- package/core/shared/components/rich-text-editor/prosemirror/menu/links.d.ts +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.d.ts +12 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/menu-plugin.d.ts +9 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/sub-menu-with-icon.d.ts +14 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/image-plugin.d.ts +7 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/link-select-plugin.d.ts +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/plugins/raw-editor-plugin.d.ts +7 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/tables-plugin.d.ts +13 -0
- package/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.d.ts +7 -3
- package/core/shared/components/rich-text-editor/prosemirror/types.d.ts +0 -2
- package/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.d.ts +18 -0
- package/core/shared/components/rich-text-editor/rich-text-editor.component.d.ts +6 -2
- package/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.d.ts +27 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.d.ts +19 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.d.ts +5 -17
- package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +2 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/customer/components/customer-group-member-list/customer-group-member-list.component.d.ts +11 -4
- package/customer/vendure-admin-ui-customer.metadata.json +1 -1
- package/esm2015/catalog/catalog.module.js +25 -2
- package/esm2015/catalog/components/assign-products-to-channel-dialog/assign-products-to-channel-dialog.component.js +4 -1
- package/esm2015/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.js +51 -0
- package/esm2015/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.js +89 -0
- package/esm2015/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.js +69 -0
- package/esm2015/catalog/components/collection-detail/collection-detail.component.js +3 -3
- package/esm2015/catalog/components/collection-list/collection-list-bulk-actions.js +147 -0
- package/esm2015/catalog/components/collection-list/collection-list.component.js +17 -8
- package/esm2015/catalog/components/collection-tree/collection-tree-node.component.js +16 -7
- package/esm2015/catalog/components/collection-tree/collection-tree.component.js +3 -2
- package/esm2015/catalog/components/facet-list/facet-list-bulk-actions.js +208 -0
- package/esm2015/catalog/components/facet-list/facet-list.component.js +13 -4
- package/esm2015/catalog/components/product-detail/product-detail.component.js +35 -23
- package/esm2015/catalog/components/product-list/product-list-bulk-actions.js +173 -0
- package/esm2015/catalog/components/product-list/product-list.component.js +10 -5
- package/esm2015/catalog/components/product-variants-list/product-variants-list.component.js +2 -2
- package/esm2015/catalog/providers/routing/collection-resolver.js +2 -1
- package/esm2015/catalog/public_api.js +7 -1
- package/esm2015/core/common/component-registry-types.js +1 -1
- package/esm2015/core/common/generated-types.js +5 -1
- package/esm2015/core/common/introspection-result.js +296 -191
- package/esm2015/core/common/utilities/bulk-action-utils.js +44 -0
- package/esm2015/core/common/utilities/selection-manager.js +33 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/breadcrumb/breadcrumb.component.js +1 -1
- package/esm2015/core/data/definitions/collection-definitions.js +30 -1
- package/esm2015/core/data/definitions/facet-definitions.js +31 -1
- package/esm2015/core/data/definitions/order-definitions.js +114 -1
- package/esm2015/core/data/definitions/product-definitions.js +15 -1
- package/esm2015/core/data/providers/collection-data.service.js +17 -2
- package/esm2015/core/data/providers/customer-data.service.js +8 -4
- package/esm2015/core/data/providers/facet-data.service.js +18 -2
- package/esm2015/core/data/providers/order-data.service.js +38 -2
- package/esm2015/core/data/providers/product-data.service.js +7 -2
- package/esm2015/core/data/utils/remove-readonly-custom-fields.js +5 -1
- package/esm2015/core/providers/bulk-action-registry/bulk-action-registry.service.js +27 -0
- package/esm2015/core/providers/bulk-action-registry/bulk-action-types.js +2 -0
- package/esm2015/core/providers/bulk-action-registry/register-bulk-action.js +63 -0
- package/esm2015/core/providers/dashboard-widget/dashboard-widget.service.js +1 -4
- package/esm2015/core/providers/modal/modal.service.js +2 -1
- package/esm2015/core/providers/nav-builder/nav-builder-types.js +1 -1
- package/esm2015/core/public_api.js +19 -2
- package/esm2015/core/shared/components/action-bar/action-bar.component.js +4 -8
- package/esm2015/core/shared/components/asset-gallery/asset-gallery.component.js +2 -2
- package/esm2015/core/shared/components/bulk-action-menu/bulk-action-menu.component.js +99 -0
- package/esm2015/core/shared/components/data-table/data-table.component.js +64 -15
- package/esm2015/core/shared/components/dropdown/dropdown-menu.component.js +4 -3
- package/esm2015/core/shared/components/facet-value-selector/facet-value-selector.component.js +2 -2
- package/esm2015/core/shared/components/language-selector/language-selector.component.js +2 -2
- package/esm2015/core/shared/components/order-state-label/order-state-label.component.js +2 -1
- package/esm2015/core/shared/components/product-search-input/product-search-input.component.js +1 -1
- package/esm2015/core/shared/components/product-selector/product-selector.component.js +1 -1
- package/esm2015/core/shared/components/radio-card/radio-card-fieldset.component.js +57 -0
- package/esm2015/core/shared/components/radio-card/radio-card.component.js +54 -0
- package/esm2015/core/shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component.js +2 -2
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.js +140 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.js +45 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/custom-nodes.js +60 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/links.js +4 -4
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.js +23 -1
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/menu-plugin.js +12 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/menu.js +73 -18
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/sub-menu-with-icon.js +16 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/plugins/image-plugin.js +100 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/plugins/raw-editor-plugin.js +97 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/plugins/tables-plugin.js +166 -0
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.js +47 -17
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/types.js +1 -1
- package/esm2015/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.js +57 -0
- package/esm2015/core/shared/components/rich-text-editor/rich-text-editor.component.js +20 -9
- package/esm2015/core/shared/components/simple-dialog/simple-dialog.component.js +2 -2
- package/esm2015/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.js +59 -0
- package/esm2015/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.js +66 -0
- package/esm2015/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.js +47 -84
- package/esm2015/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.js +3 -3
- package/esm2015/core/shared/dynamic-form-inputs/register-dynamic-input-components.js +3 -1
- package/esm2015/core/shared/pipes/state-i18n-token.pipe.js +2 -1
- package/esm2015/core/shared/shared.module.js +13 -1
- package/esm2015/customer/components/customer-group-list/customer-group-list.component.js +2 -2
- package/esm2015/customer/components/customer-group-member-list/customer-group-member-list.component.js +6 -6
- package/esm2015/customer/components/customer-list/customer-list.component.js +2 -2
- package/esm2015/dashboard/dashboard.module.js +6 -2
- package/esm2015/order/components/coupon-code-selector/coupon-code-selector.component.js +42 -0
- package/esm2015/order/components/draft-order-detail/draft-order-detail.component.js +195 -0
- package/esm2015/order/components/draft-order-variant-selector/draft-order-variant-selector.component.js +59 -0
- package/esm2015/order/components/order-detail/order-detail.component.js +2 -2
- package/esm2015/order/components/order-editor/order-editor.component.js +5 -11
- package/esm2015/order/components/order-list/order-list.component.js +20 -4
- package/esm2015/order/components/order-table/order-table.component.js +16 -5
- package/esm2015/order/components/select-address-dialog/select-address-dialog.component.js +91 -0
- package/esm2015/order/components/select-address-dialog/select-address-dialog.graphql.js +14 -0
- package/esm2015/order/components/select-customer-dialog/select-customer-dialog.component.js +59 -0
- package/esm2015/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.js +30 -0
- package/esm2015/order/order.module.js +13 -1
- package/esm2015/order/order.routes.js +26 -7
- package/esm2015/order/providers/routing/order-resolver.js +29 -12
- package/esm2015/order/providers/routing/order.guard.js +41 -0
- package/esm2015/order/public_api.js +9 -1
- package/esm2015/settings/components/country-list/country-list.component.js +2 -2
- package/esm2015/settings/components/profile/profile.component.js +2 -2
- package/esm2015/settings/components/zone-list/zone-list.component.js +2 -2
- package/esm2015/settings/components/zone-member-list/zone-member-list.component.js +2 -2
- package/esm2015/system/components/health-check/health-check.component.js +1 -1
- package/fesm2015/vendure-admin-ui-catalog.js +835 -61
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +3122 -1514
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.js +7 -7
- package/fesm2015/vendure-admin-ui-customer.js.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.js +5 -1
- package/fesm2015/vendure-admin-ui-dashboard.js.map +1 -1
- package/fesm2015/vendure-admin-ui-order.js +780 -232
- package/fesm2015/vendure-admin-ui-order.js.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.js +4 -4
- package/fesm2015/vendure-admin-ui-settings.js.map +1 -1
- package/fesm2015/vendure-admin-ui-system.js +1 -1
- package/order/components/coupon-code-selector/coupon-code-selector.component.d.ts +18 -0
- package/order/components/draft-order-detail/draft-order-detail.component.d.ts +49 -0
- package/order/components/draft-order-variant-selector/draft-order-variant-selector.component.d.ts +21 -0
- package/order/components/order-editor/order-editor.component.d.ts +1 -6
- package/order/components/order-list/order-list.component.d.ts +1 -0
- package/order/components/order-table/order-table.component.d.ts +11 -2
- package/order/components/select-address-dialog/select-address-dialog.component.d.ts +24 -0
- package/order/components/select-address-dialog/select-address-dialog.graphql.d.ts +1 -0
- package/order/components/select-customer-dialog/select-customer-dialog.component.d.ts +22 -0
- package/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.d.ts +16 -0
- package/order/providers/routing/order-resolver.d.ts +8 -5
- package/order/providers/routing/order.guard.d.ts +9 -0
- package/order/public_api.d.ts +8 -0
- package/order/vendure-admin-ui-order.metadata.json +1 -1
- package/package.json +13 -12
- package/settings/components/zone-member-list/zone-member-list.component.d.ts +3 -1
- package/settings/vendure-admin-ui-settings.metadata.json +1 -1
- package/static/i18n-messages/cs.json +33 -0
- package/static/i18n-messages/de.json +33 -0
- package/static/i18n-messages/en.json +36 -4
- package/static/i18n-messages/es.json +33 -0
- package/static/i18n-messages/fr.json +33 -0
- package/static/i18n-messages/it.json +33 -0
- package/static/i18n-messages/pl.json +33 -0
- package/static/i18n-messages/pt_BR.json +33 -0
- package/static/i18n-messages/pt_PT.json +33 -0
- package/static/i18n-messages/ru.json +33 -0
- package/static/i18n-messages/uk.json +33 -0
- package/static/i18n-messages/zh_Hans.json +33 -0
- package/static/i18n-messages/zh_Hant.json +33 -0
- package/static/styles/global/_forms.scss +4 -2
- package/static/styles/global/_overrides.scss +1 -1
- package/static/styles/global/_utilities.scss +4 -0
- package/static/theme.min.css +1 -1
- package/system/vendure-admin-ui-system.metadata.json +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/menu/images.d.ts +0 -4
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/menu/images.js +0 -36
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Přidat atribut",
|
|
57
57
|
"add-option": "Přidat možnost",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Produkt byl úspěšně přiřazen do \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Přiřadit produkty do kanálu",
|
|
61
63
|
"assign-to-channel": "Přiřadit do kanálu",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Automaticky aktualizovat jména variant",
|
|
67
69
|
"channel-price-preview": "Náhled ceny v kanálu",
|
|
68
70
|
"collection-contents": "Obsah kolekce",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Smazat administrátora?",
|
|
71
76
|
"confirm-delete-assets": "Smazat {count} {count, plural, one {médium} few {média} other {médií}}?",
|
|
@@ -78,12 +83,14 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Smazat hodnotu atributu?",
|
|
79
84
|
"confirm-delete-product": "Smazat produkt?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Smazat variantu produktu?",
|
|
82
88
|
"confirm-delete-promotion": "Smazat propagaci?",
|
|
83
89
|
"confirm-delete-shipping-method": "Smazat dopravní metodu?",
|
|
84
90
|
"confirm-delete-zone": "Smazat zónu?",
|
|
85
91
|
"confirm-deletion-of-unused-variants-body": "",
|
|
86
92
|
"confirm-deletion-of-unused-variants-title": "",
|
|
93
|
+
"create-draft-order": "",
|
|
87
94
|
"create-new-collection": "Vytvořit kolekci",
|
|
88
95
|
"create-new-facet": "Vytvořit nový atribut",
|
|
89
96
|
"create-new-product": "Nový produkt",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Zobrazit jako tabulku",
|
|
94
101
|
"drop-files-to-upload": "Přetáhněte soubory k nahrávání",
|
|
95
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Rozevřít všechny kolekce",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Hodnoty atributů",
|
|
99
108
|
"filter-by-name": "Filtrovat dle jména",
|
|
100
109
|
"filter-by-name-or-sku": "Filtrovat dle jména nebo SKU",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Žádný kanál nevybrán",
|
|
109
118
|
"no-featured-asset": "Žádné zvýrazněné médium",
|
|
110
119
|
"no-selection": "Žádný výběr",
|
|
120
|
+
"notify-bulk-delete-collections-success": "",
|
|
121
|
+
"notify-bulk-delete-facets-success": "",
|
|
122
|
+
"notify-bulk-delete-products-success": "",
|
|
123
|
+
"notify-remove-collections-from-channel-success": "",
|
|
124
|
+
"notify-remove-facets-from-channel-success": "",
|
|
111
125
|
"notify-remove-product-from-channel-error": "Produkt se nepovedlo odebrat z kanálu",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Produkt byl úspěšně odebrán z kanálu",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "Variantu se nepovedlo odebrat z kanálu",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Odebrat volbu",
|
|
137
151
|
"remove-product-from-channel": "Odebrat produkt z kanálu",
|
|
138
152
|
"remove-product-variant-from-channel": "Odebrat variantu z kanálu",
|
|
153
|
+
"root-collection": "",
|
|
139
154
|
"run-pending-search-index-updates": "",
|
|
140
155
|
"running-search-index-updates": "",
|
|
141
156
|
"search-asset-name-or-tag": "",
|
|
@@ -207,6 +222,8 @@
|
|
|
207
222
|
"expand-entries": "Otevřít vstupy",
|
|
208
223
|
"extension-running-in-separate-window": "Rozšíření běží v novém okně",
|
|
209
224
|
"filter": "",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Host",
|
|
212
229
|
"items-per-page-option": "{ count } na stránku",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Více...",
|
|
225
242
|
"name": "jméno",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Žádné výsledky",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Nenastaveno",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Vyskytla se chyba, nebylo vytvořeno: { entity }",
|
|
230
249
|
"notify-create-success": "Vytvořeno: { entity }",
|
|
231
250
|
"notify-delete-error": "Vyskytla se chyba, nebylo smazáno: { entity }",
|
|
232
251
|
"notify-delete-success": "Smazáno: { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Vyskytla se chyba, nebylo možné uložit změny",
|
|
234
254
|
"notify-saved-changes": "Změny uloženy",
|
|
235
255
|
"notify-update-error": "Vyskytla se chyba, nebylo aktualizováno: { entity }",
|
|
236
256
|
"notify-update-success": "Aktualizováno: { entity }",
|
|
237
257
|
"notify-updated-tags-success": "",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Otevřít",
|
|
239
260
|
"password": "Heslo",
|
|
240
261
|
"price": "Cena",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Důvod zrušení",
|
|
466
487
|
"cancelled-order-success": "Objednávka úspěšně zrušena",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Potvrdit úpravy",
|
|
468
490
|
"contents": "Obsah",
|
|
469
491
|
"create-fulfillment": "Zpracovat",
|
|
470
492
|
"create-fulfillment-success": "Zpracováno",
|
|
471
493
|
"customer": "Zákazník",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Upravit fakturační adresu",
|
|
473
496
|
"edit-shipping-address": "Upravit dodací adresu",
|
|
474
497
|
"error-message": "",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Vlastní",
|
|
476
501
|
"filter-preset-active": "Aktivní",
|
|
477
502
|
"filter-preset-completed": "Uzavřené",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "Otevřené",
|
|
479
505
|
"filter-preset-shipped": "Expedované",
|
|
480
506
|
"fulfill": "Zpracovat",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {položka} other {položky}} refundovány",
|
|
556
582
|
"removed-items": "Odebrané položky",
|
|
557
583
|
"search-by-order-filters": "Hledat na základě kódu objednávky / Příjmení / ID transakce",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Vyberte stav",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Označit jako {state}",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Vypořádání platby",
|
|
562
594
|
"settle-payment-error": "Nelze vyřídit platbu",
|
|
563
595
|
"settle-payment-success": "Platba úspěšně vypořádana",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Vytvořeno",
|
|
657
689
|
"declined": "Odmítnuto",
|
|
658
690
|
"delivered": "Doručeno",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Chyba",
|
|
660
693
|
"failed": "Selhalo",
|
|
661
694
|
"modifying": "Upravuje se",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Facetten hinzufügen",
|
|
57
57
|
"add-option": "Option hinzufügen",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Produkt erfolgreich an \"{ channel }\" zugewiesen",
|
|
60
62
|
"assign-products-to-channel": "Produkte dem Kanal zuweisen",
|
|
61
63
|
"assign-to-channel": "Zuweisung an Kanal",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Automatisch Namen der Produktvariante aktualisieren",
|
|
67
69
|
"channel-price-preview": "Kanal-Preisvorschau",
|
|
68
70
|
"collection-contents": "Inhalt der Sammlung",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Administrator löschen?",
|
|
71
76
|
"confirm-delete-assets": "{count} {count, plural, one {Asset} other {Assets}} löschen?",
|
|
@@ -78,12 +83,14 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Facettenwert löschen?",
|
|
79
84
|
"confirm-delete-product": "Produkt löschen?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Produktvariante löschen?",
|
|
82
88
|
"confirm-delete-promotion": "Werbeaktion löschen?",
|
|
83
89
|
"confirm-delete-shipping-method": "Versandart löschen?",
|
|
84
90
|
"confirm-delete-zone": "Zone löschen?",
|
|
85
91
|
"confirm-deletion-of-unused-variants-body": "",
|
|
86
92
|
"confirm-deletion-of-unused-variants-title": "",
|
|
93
|
+
"create-draft-order": "",
|
|
87
94
|
"create-new-collection": "Neue Kollektion anlegen",
|
|
88
95
|
"create-new-facet": "Neue Facette erstellen",
|
|
89
96
|
"create-new-product": "Neues Produkt",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Tabellenansicht",
|
|
94
101
|
"drop-files-to-upload": "Dateien zum Hochladen ablegen",
|
|
95
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Alle Sammlungen erweitern",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Facettenwerte",
|
|
99
108
|
"filter-by-name": "Nach Name filtern",
|
|
100
109
|
"filter-by-name-or-sku": "Nach Name oder Artikelnummer filtern",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Kein Kanal ausgewählt",
|
|
109
118
|
"no-featured-asset": "Kein \"Featured Asset\"",
|
|
110
119
|
"no-selection": "Keine Auswahl",
|
|
120
|
+
"notify-bulk-delete-collections-success": "",
|
|
121
|
+
"notify-bulk-delete-facets-success": "",
|
|
122
|
+
"notify-bulk-delete-products-success": "",
|
|
123
|
+
"notify-remove-collections-from-channel-success": "",
|
|
124
|
+
"notify-remove-facets-from-channel-success": "",
|
|
111
125
|
"notify-remove-product-from-channel-error": "Das Produkt konnte nicht aus dem Kanal entfernt werden",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Das Produkt wurde erfolgreich aus dem Kanal entfernt",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "Die Produktvariante konnte nicht aus dem Kanal entfernt werden",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Option entfernen",
|
|
137
151
|
"remove-product-from-channel": "Produkt aus dem Kanal entfernen",
|
|
138
152
|
"remove-product-variant-from-channel": "",
|
|
153
|
+
"root-collection": "",
|
|
139
154
|
"run-pending-search-index-updates": "",
|
|
140
155
|
"running-search-index-updates": "",
|
|
141
156
|
"search-asset-name-or-tag": "",
|
|
@@ -207,6 +222,8 @@
|
|
|
207
222
|
"expand-entries": "Einträge erweitern",
|
|
208
223
|
"extension-running-in-separate-window": "Die Erweiterung läuft in einem separaten Fenster",
|
|
209
224
|
"filter": "Filter",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Gast",
|
|
212
229
|
"items-per-page-option": "{ count } pro Seite",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Mehr...",
|
|
225
242
|
"name": "Name",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Keine Ergebnisse",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Nicht festgelegt",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Ein Fehler ist aufgetreten, { entity } konnte nicht erstellt werden",
|
|
230
249
|
"notify-create-success": "{ entity } erstellt",
|
|
231
250
|
"notify-delete-error": "Ein Fehler ist aufgetreten, { entity } konnte nicht gelöscht werden",
|
|
232
251
|
"notify-delete-success": "{ entity } gelöscht",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Ein Fehler ist aufgetreten, die Änderungen konnten nicht gespeichert werden",
|
|
234
254
|
"notify-saved-changes": "Änderungen gespeichert",
|
|
235
255
|
"notify-update-error": "Ein Fehler ist aufgetreten, { entity } konnte nicht aktualisiert werden",
|
|
236
256
|
"notify-update-success": "{ entity } aktualisiert",
|
|
237
257
|
"notify-updated-tags-success": "Tags aktualisiert",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Öffnen",
|
|
239
260
|
"password": "Passwort",
|
|
240
261
|
"price": "Preis",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Stornierungsgrund",
|
|
466
487
|
"cancelled-order-success": "Bestellung erfolgreich storniert",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Änderungen bestätigen",
|
|
468
490
|
"contents": "Inhalt",
|
|
469
491
|
"create-fulfillment": "Auftrag ausführen",
|
|
470
492
|
"create-fulfillment-success": "Auftrag ausgeführt",
|
|
471
493
|
"customer": "Kunde",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Rechnungsadresse bearbeiten",
|
|
473
496
|
"edit-shipping-address": "Versandadresse bearbeiten",
|
|
474
497
|
"error-message": "",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Benutzerdefiniert",
|
|
476
501
|
"filter-preset-active": "Aktiv",
|
|
477
502
|
"filter-preset-completed": "Abgeschlossen",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "Ausstehend",
|
|
479
505
|
"filter-preset-shipped": "Versandt",
|
|
480
506
|
"fulfill": "Ausführen",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {Artikel} other {Artikel}} erstattet",
|
|
556
582
|
"removed-items": "Entfernte Artikel",
|
|
557
583
|
"search-by-order-filters": "Suche nach Name / Bestellnummer / Transaktions-ID",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Status auswählen",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Abwicklungsstatus wählen",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Zahlung durchführen",
|
|
562
594
|
"settle-payment-error": "Die Zahlung konnte nicht durchgeführt werden",
|
|
563
595
|
"settle-payment-success": "Zahlung erfolgreich durchgeführt",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Erstellt",
|
|
657
689
|
"declined": "Abgelehnt",
|
|
658
690
|
"delivered": "Zugestellt",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Fehler",
|
|
660
693
|
"failed": "Fehlgeschlagen",
|
|
661
694
|
"modifying": "In Bearbeitung",
|
|
@@ -56,16 +56,21 @@
|
|
|
56
56
|
"add-facets": "Add facets",
|
|
57
57
|
"add-option": "Add option",
|
|
58
58
|
"asset-preview-links": "Asset preview links",
|
|
59
|
-
"assign-
|
|
59
|
+
"assign-collections-to-channel-success": "Successfully assigned {count, plural, one {1 collection} other {{count} collections}} to { channelCode }",
|
|
60
|
+
"assign-facets-to-channel-success": "Successfully assigned {count, plural, one {1 facet} other {{count} facets}} to { channelCode }",
|
|
61
|
+
"assign-product-to-channel-success": "Successfully assigned {count, plural, one {1 product} other {{count} products}} to { channel }",
|
|
60
62
|
"assign-products-to-channel": "Assign products to channel",
|
|
61
63
|
"assign-to-channel": "Assign to channel",
|
|
62
64
|
"assign-to-named-channel": "Assign to { channelCode }",
|
|
63
|
-
"assign-variant-to-channel-success": "Successfully assigned product variant to
|
|
65
|
+
"assign-variant-to-channel-success": "Successfully assigned {count, plural, one {1 product variant} other {{count} product variants}} to { channel }",
|
|
64
66
|
"assign-variants-to-channel": "Assign product variants to channel",
|
|
65
67
|
"auto-update-option-variant-name": "Automatically update the names of ProductVariants using this option",
|
|
66
68
|
"auto-update-product-variant-name": "Automatically update the names of ProductVariants",
|
|
67
69
|
"channel-price-preview": "Channel price preview",
|
|
68
70
|
"collection-contents": "Collection contents",
|
|
71
|
+
"confirm-bulk-delete-collections": "Delete {count} collections?",
|
|
72
|
+
"confirm-bulk-delete-facets": "Delete {count} facets?",
|
|
73
|
+
"confirm-bulk-delete-products": "Delete {count} products?",
|
|
69
74
|
"confirm-cancel": "Cancel?",
|
|
70
75
|
"confirm-delete-administrator": "Delete administrator?",
|
|
71
76
|
"confirm-delete-assets": "Delete {count} {count, plural, one {asset} other {assets}}?",
|
|
@@ -85,6 +90,7 @@
|
|
|
85
90
|
"confirm-delete-zone": "Delete zone?",
|
|
86
91
|
"confirm-deletion-of-unused-variants-body": "The following product variants have been made obsolete due to the addition of new options. They will be deleted during the creation of the new product variants.",
|
|
87
92
|
"confirm-deletion-of-unused-variants-title": "Delete obsolete product variants?",
|
|
93
|
+
"create-draft-order": "Create draft order",
|
|
88
94
|
"create-new-collection": "Create new collection",
|
|
89
95
|
"create-new-facet": "Create new facet",
|
|
90
96
|
"create-new-product": "New product",
|
|
@@ -94,8 +100,10 @@
|
|
|
94
100
|
"display-variant-table": "View as table",
|
|
95
101
|
"drop-files-to-upload": "Drop files to upload",
|
|
96
102
|
"duplicate-sku-warning": "Please ensure all SKUs are unique",
|
|
103
|
+
"edit-facet-values": "Edit facet values",
|
|
97
104
|
"edit-options": "Edit options",
|
|
98
105
|
"expand-all-collections": "Expand all collections",
|
|
106
|
+
"facet-value-not-available": "Facet value \"{ id }\" not available",
|
|
99
107
|
"facet-values": "Facet values",
|
|
100
108
|
"filter-by-name": "Filter by name",
|
|
101
109
|
"filter-by-name-or-sku": "Filter by name or SKU",
|
|
@@ -109,6 +117,11 @@
|
|
|
109
117
|
"no-channel-selected": "No channel selected",
|
|
110
118
|
"no-featured-asset": "No featured asset",
|
|
111
119
|
"no-selection": "No selection",
|
|
120
|
+
"notify-bulk-delete-collections-success": "Successfully deleted {count, plural, one {1 collection} other {{count} collections}}",
|
|
121
|
+
"notify-bulk-delete-facets-success": "Successfully deleted {count, plural, one {1 facet} other {{count} facets}}",
|
|
122
|
+
"notify-bulk-delete-products-success": "Successfully deleted {count, plural, one {1 product} other {{count} products}}",
|
|
123
|
+
"notify-remove-collections-from-channel-success": "Successfully removed {count, plural, one {1 collection} other {{count} collections}} from { channelCode }",
|
|
124
|
+
"notify-remove-facets-from-channel-success": "Successfully removed {count, plural, one {1 facet} other {{count} facets}} from { channelCode }",
|
|
112
125
|
"notify-remove-product-from-channel-error": "Could not remove product from channel",
|
|
113
126
|
"notify-remove-product-from-channel-success": "Successfully removed product from channel",
|
|
114
127
|
"notify-remove-variant-from-channel-error": "Could not remove product variant from channel",
|
|
@@ -133,10 +146,11 @@
|
|
|
133
146
|
"reindex-error": "An error occurred while rebuilding search index",
|
|
134
147
|
"reindex-successful": "Indexed {count, plural, one {product variant} other {{count} product variants}} in {time}ms",
|
|
135
148
|
"reindexing": "Rebuilding search index",
|
|
136
|
-
"remove-from-channel": "Remove from channel",
|
|
149
|
+
"remove-from-channel": "Remove from {channelCode, select, undefined{channel} other{{channelCode}}}",
|
|
137
150
|
"remove-option": "Remove option",
|
|
138
151
|
"remove-product-from-channel": "Remove product from channel",
|
|
139
152
|
"remove-product-variant-from-channel": "Remove product variant from channel",
|
|
153
|
+
"root-collection": "Root collection",
|
|
140
154
|
"run-pending-search-index-updates": "Run {count, plural, one {1 pending update} other {{count} pending updates}}",
|
|
141
155
|
"running-search-index-updates": "Running {count, plural, one {1 update} other {{count} updates}} to search index",
|
|
142
156
|
"search-asset-name-or-tag": "Search by asset name or tags",
|
|
@@ -208,6 +222,8 @@
|
|
|
208
222
|
"expand-entries": "Expand entries",
|
|
209
223
|
"extension-running-in-separate-window": "Extension is running in a separate window",
|
|
210
224
|
"filter": "Filter",
|
|
225
|
+
"force-delete": "Force delete",
|
|
226
|
+
"force-remove": "Force remove",
|
|
211
227
|
"general": "General",
|
|
212
228
|
"guest": "Guest",
|
|
213
229
|
"items-per-page-option": "{ count } per page",
|
|
@@ -224,18 +240,22 @@
|
|
|
224
240
|
"medium-date": "Medium date",
|
|
225
241
|
"more": "More...",
|
|
226
242
|
"name": "Name",
|
|
243
|
+
"no-bulk-actions-available": "No bulk actions available",
|
|
227
244
|
"no-results": "No results",
|
|
228
245
|
"not-applicable": "Not applicable",
|
|
229
246
|
"not-set": "Not set",
|
|
247
|
+
"notify-bulk-update-success": "Updated { count } { entity }",
|
|
230
248
|
"notify-create-error": "An error occurred, could not create { entity }",
|
|
231
249
|
"notify-create-success": "Created new { entity }",
|
|
232
250
|
"notify-delete-error": "An error occurred, could not delete { entity }",
|
|
233
251
|
"notify-delete-success": "Deleted { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "Successfully removed { count } products from channel",
|
|
234
253
|
"notify-save-changes-error": "An error occurred, could not save changes",
|
|
235
254
|
"notify-saved-changes": "Saved changes",
|
|
236
255
|
"notify-update-error": "An error occurred, could not update { entity }",
|
|
237
256
|
"notify-update-success": "Updated { entity }",
|
|
238
257
|
"notify-updated-tags-success": "Successfully updated tags",
|
|
258
|
+
"okay": "Okay",
|
|
239
259
|
"open": "Open",
|
|
240
260
|
"password": "Password",
|
|
241
261
|
"price": "Price",
|
|
@@ -266,7 +286,7 @@
|
|
|
266
286
|
"username": "Username",
|
|
267
287
|
"view-next-month": "View next month",
|
|
268
288
|
"view-previous-month": "View previous month",
|
|
269
|
-
"with-selected": "With selected..."
|
|
289
|
+
"with-selected": "With {count} selected..."
|
|
270
290
|
},
|
|
271
291
|
"customer": {
|
|
272
292
|
"add-customer-to-group": "Add customer to group",
|
|
@@ -465,17 +485,22 @@
|
|
|
465
485
|
"cancel-specified-items": "Cancel specified items",
|
|
466
486
|
"cancellation-reason": "Cancellation reason",
|
|
467
487
|
"cancelled-order-success": "Successfully cancelled order",
|
|
488
|
+
"complete-draft-order": "Complete draft",
|
|
468
489
|
"confirm-modifications": "Confirm modifications",
|
|
469
490
|
"contents": "Contents",
|
|
470
491
|
"create-fulfillment": "Create fulfillment",
|
|
471
492
|
"create-fulfillment-success": "Created fulfillment",
|
|
472
493
|
"customer": "Customer",
|
|
494
|
+
"delete-draft-order": "Delete draft",
|
|
473
495
|
"edit-billing-address": "Edit billing address",
|
|
474
496
|
"edit-shipping-address": "Edit shipping address",
|
|
475
497
|
"error-message": "Error message",
|
|
498
|
+
"existing-address": "Existing address",
|
|
499
|
+
"existing-customer": "Existing customer",
|
|
476
500
|
"filter-custom": "Custom",
|
|
477
501
|
"filter-preset-active": "Active",
|
|
478
502
|
"filter-preset-completed": "Completed",
|
|
503
|
+
"filter-preset-draft": "Draft",
|
|
479
504
|
"filter-preset-open": "Open",
|
|
480
505
|
"filter-preset-shipped": "Shipped",
|
|
481
506
|
"fulfill": "Fulfill",
|
|
@@ -556,9 +581,15 @@
|
|
|
556
581
|
"refunded-count": "{count} {count, plural, one {item} other {items}} refunded",
|
|
557
582
|
"removed-items": "Removed items",
|
|
558
583
|
"search-by-order-filters": "Search by name / code / transaction ID",
|
|
584
|
+
"select-address": "Select address",
|
|
585
|
+
"select-shipping-method": "Select shipping method",
|
|
559
586
|
"select-state": "Select state",
|
|
587
|
+
"set-billing-address": "Set billing address",
|
|
560
588
|
"set-coupon-codes": "Set coupon codes",
|
|
589
|
+
"set-customer-for-order": "Set customer",
|
|
561
590
|
"set-fulfillment-state": "Mark as {state}",
|
|
591
|
+
"set-shipping-address": "Set shipping address",
|
|
592
|
+
"set-shipping-method": "Set shipping method",
|
|
562
593
|
"settle-payment": "Settle payment",
|
|
563
594
|
"settle-payment-error": "Could not settle payment",
|
|
564
595
|
"settle-payment-success": "Successfully settled payment",
|
|
@@ -657,6 +688,7 @@
|
|
|
657
688
|
"created": "Created",
|
|
658
689
|
"declined": "Declined",
|
|
659
690
|
"delivered": "Delivered",
|
|
691
|
+
"draft": "Draft",
|
|
660
692
|
"error": "Error",
|
|
661
693
|
"failed": "Failed",
|
|
662
694
|
"modifying": "Modifying",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Añadir facetas",
|
|
57
57
|
"add-option": "Añadir opción",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Producto asignado a \"{ channel }\" con éxito",
|
|
60
62
|
"assign-products-to-channel": "Asignar productos a canal de ventas",
|
|
61
63
|
"assign-to-channel": "Asignar a canal de ventas",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Actualiza los nombres de las variantes de producto automáticamente",
|
|
67
69
|
"channel-price-preview": "Vista previa de precio para el canal de ventas",
|
|
68
70
|
"collection-contents": "Contenidos de la colección",
|
|
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 recurso?",
|
|
@@ -78,12 +83,14 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "¿Eliminar valor de faceta?",
|
|
79
84
|
"confirm-delete-product": "¿Eliminar producto?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "¿Eliminar variante?",
|
|
82
88
|
"confirm-delete-promotion": "¿Eliminar promoción?",
|
|
83
89
|
"confirm-delete-shipping-method": "¿Eliminar método de envío?",
|
|
84
90
|
"confirm-delete-zone": "¿Eliminar zona?",
|
|
85
91
|
"confirm-deletion-of-unused-variants-body": "Las siguientes variantes de producto han quedado obsoletas debido a la incorporación de nuevas opciones. Se eliminarán durante la creación de las nuevas variantes de producto.",
|
|
86
92
|
"confirm-deletion-of-unused-variants-title": "¿Eliminar variantes de producto obsoletas?",
|
|
93
|
+
"create-draft-order": "",
|
|
87
94
|
"create-new-collection": "Crear nueva colección",
|
|
88
95
|
"create-new-facet": "Crear nueva faceta",
|
|
89
96
|
"create-new-product": "Crear nuevo producto",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Ver como tabla",
|
|
94
101
|
"drop-files-to-upload": "Arrastra recursos para subirlos",
|
|
95
102
|
"duplicate-sku-warning": "Por favor, asegúrese de que todos los códigos de referencia son únicos",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "Editar opciones",
|
|
97
105
|
"expand-all-collections": "Expandir todas las colecciones",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Valores de faceta",
|
|
99
108
|
"filter-by-name": "Filtrar por nombre",
|
|
100
109
|
"filter-by-name-or-sku": "Filtrar por código de referencia",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Ninún canal seleccionado",
|
|
109
118
|
"no-featured-asset": "Sin recurso destacado",
|
|
110
119
|
"no-selection": "Sin selección",
|
|
120
|
+
"notify-bulk-delete-collections-success": "",
|
|
121
|
+
"notify-bulk-delete-facets-success": "",
|
|
122
|
+
"notify-bulk-delete-products-success": "",
|
|
123
|
+
"notify-remove-collections-from-channel-success": "",
|
|
124
|
+
"notify-remove-facets-from-channel-success": "",
|
|
111
125
|
"notify-remove-product-from-channel-error": "No fue posible eliminar el producto del canal",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Producto eliminado del canal con éxito",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "No fue posible eliminar la variante de producto del canal",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Eliminar opción",
|
|
137
151
|
"remove-product-from-channel": "Eliminar producto del canal de ventas",
|
|
138
152
|
"remove-product-variant-from-channel": "Eliminar variante de producto del canal de ventas ",
|
|
153
|
+
"root-collection": "",
|
|
139
154
|
"run-pending-search-index-updates": "",
|
|
140
155
|
"running-search-index-updates": "",
|
|
141
156
|
"search-asset-name-or-tag": "Buscar por nombre de recurso o faceta",
|
|
@@ -207,6 +222,8 @@
|
|
|
207
222
|
"expand-entries": "Mostrar entradas",
|
|
208
223
|
"extension-running-in-separate-window": "La extensión se está ejecutando en una nueva ventana",
|
|
209
224
|
"filter": "Filtro",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Invitado",
|
|
212
229
|
"items-per-page-option": "{ count } por página",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Más...",
|
|
225
242
|
"name": "Nombre",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Sin resultados",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Sin fijar",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Ha ocurrido un problema, imposible de crear { entity }",
|
|
230
249
|
"notify-create-success": "Creado nuevo { entity }",
|
|
231
250
|
"notify-delete-error": "Ha ocurrido un problema, imposible de eliminar { entity }",
|
|
232
251
|
"notify-delete-success": "Eliminado { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Ha ocurrido un problema, imposible de guardar cambios",
|
|
234
254
|
"notify-saved-changes": "Cambios guardados",
|
|
235
255
|
"notify-update-error": "Ha ocurrido un problema, imposible de actualizar{ entity }",
|
|
236
256
|
"notify-update-success": "Actualizado { entity }",
|
|
237
257
|
"notify-updated-tags-success": "Etiquetas actualizadas con éxito",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Abrir",
|
|
239
260
|
"password": "Contraseña",
|
|
240
261
|
"price": "Precio",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Motivo de la cancelación",
|
|
466
487
|
"cancelled-order-success": "Pedido cancelado con éxito",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Confirmar modificaciones",
|
|
468
490
|
"contents": "Contenidos",
|
|
469
491
|
"create-fulfillment": "Crear fulfillment",
|
|
470
492
|
"create-fulfillment-success": "Fulfillment creado",
|
|
471
493
|
"customer": "Cliente",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Editar dirección de facturación",
|
|
473
496
|
"edit-shipping-address": "Editar dirección de envío",
|
|
474
497
|
"error-message": "Mensaje de error",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Personalizado",
|
|
476
501
|
"filter-preset-active": "Activo",
|
|
477
502
|
"filter-preset-completed": "Completado",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "En curso",
|
|
479
505
|
"filter-preset-shipped": "Enviado",
|
|
480
506
|
"fulfill": "Completar",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {artículo} other {artículos}} {count, plural, one {reembolsado} other {reembolsados}}",
|
|
556
582
|
"removed-items": "Artículos eliminados",
|
|
557
583
|
"search-by-order-filters": "Buscar por el código de pedido / apellido del cliente / ID de transacción",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Seleccionar estado",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Fijar como {state}",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Liquidar pago",
|
|
562
594
|
"settle-payment-error": "No pudo liquidar el pago",
|
|
563
595
|
"settle-payment-success": "Pago liquidado con éxito",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Creado",
|
|
657
689
|
"declined": "Rechazado",
|
|
658
690
|
"delivered": "Entregado",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Error",
|
|
660
693
|
"failed": "Fallido",
|
|
661
694
|
"modifying": "Modificando",
|