@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": "Ajout composant",
|
|
57
57
|
"add-option": "Ajout 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": "produit attribué au canal \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Attribuer les produits au canal",
|
|
61
63
|
"assign-to-channel": "Attribuer au canal",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Mettre à jour automatiquement les noms de variations du produit ",
|
|
67
69
|
"channel-price-preview": "Prévisualisation du prix du canal",
|
|
68
70
|
"collection-contents": "Contenu de la Collection",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Supprimer administrateur?",
|
|
71
76
|
"confirm-delete-assets": "Supprimer {count} {count, plural, one {fichier} other {fichiers}} ?",
|
|
@@ -78,12 +83,14 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Supprimer valeur du composant ?",
|
|
79
84
|
"confirm-delete-product": "Supprimer produit ?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Supprimer variation du produit ?",
|
|
82
88
|
"confirm-delete-promotion": "Supprimer promotion ?",
|
|
83
89
|
"confirm-delete-shipping-method": "Supprimer mode d'expédition ?",
|
|
84
90
|
"confirm-delete-zone": "Supprimer zone ?",
|
|
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": "Créer nouvelle collection",
|
|
88
95
|
"create-new-facet": "Créer nouveau composant",
|
|
89
96
|
"create-new-product": "Nouveau produit",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Voir en tant que tableau",
|
|
94
101
|
"drop-files-to-upload": "Déposer des fichiers pour téléverser",
|
|
95
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Etendre toutes les collections",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Valeurs de composant",
|
|
99
108
|
"filter-by-name": "Filtrer par nom",
|
|
100
109
|
"filter-by-name-or-sku": "Filtrer par nom ou UGS",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Pas de canal sélectionné",
|
|
109
118
|
"no-featured-asset": "Pas de fichier vedette",
|
|
110
119
|
"no-selection": "Pas de sélection",
|
|
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": "Retrait du produit du canal échoué",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Retrait du produit du canal réussi",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "Retrait de la variation du produit du canal échoué",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Retirer l'option",
|
|
137
151
|
"remove-product-from-channel": "Retirer le produit du canal",
|
|
138
152
|
"remove-product-variant-from-channel": "Retirer la variante du produit du canal",
|
|
153
|
+
"root-collection": "",
|
|
139
154
|
"run-pending-search-index-updates": "",
|
|
140
155
|
"running-search-index-updates": "",
|
|
141
156
|
"search-asset-name-or-tag": "Rechercher par nom de fichier ou mot-clé",
|
|
@@ -207,6 +222,8 @@
|
|
|
207
222
|
"expand-entries": "Développer les éléments",
|
|
208
223
|
"extension-running-in-separate-window": "Extension fonctionne dans une fenêtre à part",
|
|
209
224
|
"filter": "Filtre",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Invité",
|
|
212
229
|
"items-per-page-option": "{ count } par page",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Plus...",
|
|
225
242
|
"name": "Nom",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Aucun resultat",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Non défini",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Une erreur est survenue, création de { entity } échouée",
|
|
230
249
|
"notify-create-success": "Nouveau { entity } créé",
|
|
231
250
|
"notify-delete-error": "Une erreur est survenue, suppression de { entity } échouée",
|
|
232
251
|
"notify-delete-success": "{ entity } supprimé",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Une erreur est survenue, Changements non enregistrés",
|
|
234
254
|
"notify-saved-changes": "Changements enregistrés",
|
|
235
255
|
"notify-update-error": "Une erreur est survenue, mise à jour de { entity } échouée",
|
|
236
256
|
"notify-update-success": "{ entity } mis à jour",
|
|
237
257
|
"notify-updated-tags-success": "Mots-clés mis à jour avec succès",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Ouvert",
|
|
239
260
|
"password": "Mot de passe",
|
|
240
261
|
"price": "Prix",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Raison de l'annulation",
|
|
466
487
|
"cancelled-order-success": "Commande annulée",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Confirmer les modifications",
|
|
468
490
|
"contents": "Contenu",
|
|
469
491
|
"create-fulfillment": "Créer préparation",
|
|
470
492
|
"create-fulfillment-success": "Préparation créée",
|
|
471
493
|
"customer": "Client",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Modifier l'adresse de facturation",
|
|
473
496
|
"edit-shipping-address": "Modifier l'adresse de livraison",
|
|
474
497
|
"error-message": "Message d'erreur",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Personnalisé",
|
|
476
501
|
"filter-preset-active": "Active",
|
|
477
502
|
"filter-preset-completed": "Terminée",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "Ouverte",
|
|
479
505
|
"filter-preset-shipped": "Expédiée",
|
|
480
506
|
"fulfill": "Préparer",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {article remboursé} other {articles remboursés}}",
|
|
556
582
|
"removed-items": "Articles supprimés",
|
|
557
583
|
"search-by-order-filters": "Rehercher par numéro de commande / nom du client / Numéro de transaction",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Sélectionner un état",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Marquer {state}",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Régler le paiement",
|
|
562
594
|
"settle-payment-error": "Règlement du paiement échoué",
|
|
563
595
|
"settle-payment-success": "Paiement réglé",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Créé",
|
|
657
689
|
"declined": "Decliné",
|
|
658
690
|
"delivered": "Livré",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Erreur",
|
|
660
693
|
"failed": "Echec",
|
|
661
694
|
"modifying": "En cours de modification",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"add-facets": "Aggiungi attributi",
|
|
57
57
|
"add-option": "Aggiungi opzione",
|
|
58
58
|
"asset-preview-links": "",
|
|
59
|
+
"assign-collections-to-channel-success": "",
|
|
60
|
+
"assign-facets-to-channel-success": "",
|
|
59
61
|
"assign-product-to-channel-success": "Prodotto assegnato correttamente a \"{ channel }\"",
|
|
60
62
|
"assign-products-to-channel": "Assegna prodotto al canale",
|
|
61
63
|
"assign-to-channel": "Assegna a un canale",
|
|
@@ -66,6 +68,9 @@
|
|
|
66
68
|
"auto-update-product-variant-name": "Aggiorna automaticamente i nomi delle Varianti",
|
|
67
69
|
"channel-price-preview": "Anteprima prezzo canale",
|
|
68
70
|
"collection-contents": "Contenuti della Collezione",
|
|
71
|
+
"confirm-bulk-delete-collections": "",
|
|
72
|
+
"confirm-bulk-delete-facets": "",
|
|
73
|
+
"confirm-bulk-delete-products": "",
|
|
69
74
|
"confirm-cancel": "",
|
|
70
75
|
"confirm-delete-administrator": "Eliminare l'amministratore?",
|
|
71
76
|
"confirm-delete-assets": "Eliminare {count} {count, plural, one {media} other {media}}?",
|
|
@@ -78,12 +83,14 @@
|
|
|
78
83
|
"confirm-delete-facet-value": "Eliminare il valore attributo?",
|
|
79
84
|
"confirm-delete-product": "Eliminare il prodotto?",
|
|
80
85
|
"confirm-delete-product-option": "",
|
|
86
|
+
"confirm-delete-product-option-group": "",
|
|
81
87
|
"confirm-delete-product-variant": "Eliminare la variante?",
|
|
82
88
|
"confirm-delete-promotion": "Eliminare la promozione?",
|
|
83
89
|
"confirm-delete-shipping-method": "Eliminare il metodo di spedizione?",
|
|
84
90
|
"confirm-delete-zone": "Eliminare la zona?",
|
|
85
91
|
"confirm-deletion-of-unused-variants-body": "Le seguenti varianti sono diventate obsolete a seguito dell'aggiunta di nuove opzioni. Queste verranno cancellate durante la creazione delle nuove varianti.",
|
|
86
92
|
"confirm-deletion-of-unused-variants-title": "Cancellare le varianti obsolete?",
|
|
93
|
+
"create-draft-order": "",
|
|
87
94
|
"create-new-collection": "Crea nuova Collezione",
|
|
88
95
|
"create-new-facet": "Crea nuovo attributo",
|
|
89
96
|
"create-new-product": "Crea nuovo prodotto",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Visualizza come tabella",
|
|
94
101
|
"drop-files-to-upload": "Trascina file da caricare",
|
|
95
102
|
"duplicate-sku-warning": "Per favore assicurati che tutte le SKU siano univoche",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Espandi le collezioni",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Valori attributo",
|
|
99
108
|
"filter-by-name": "Filtra per nome",
|
|
100
109
|
"filter-by-name-or-sku": "Filtra per nome o SKU",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Nessun canale selezionato",
|
|
109
118
|
"no-featured-asset": "Nessun media in evidenza",
|
|
110
119
|
"no-selection": "Nessuna selezione",
|
|
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": "Impossibile rimuovere il prodotto dal canale",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Prodotto rimosso dal canale",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "Impossibile rimuovere la variante dal canale",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Rimuovi opzione",
|
|
137
151
|
"remove-product-from-channel": "Rimuovi prodotto dal canale",
|
|
138
152
|
"remove-product-variant-from-channel": "Rimuovi variante dal canale",
|
|
153
|
+
"root-collection": "",
|
|
139
154
|
"run-pending-search-index-updates": "",
|
|
140
155
|
"running-search-index-updates": "",
|
|
141
156
|
"search-asset-name-or-tag": "Cerca per nome o tag del media",
|
|
@@ -207,6 +222,8 @@
|
|
|
207
222
|
"expand-entries": "Espandi elementi",
|
|
208
223
|
"extension-running-in-separate-window": "L'estensione è in esecuzione in un'altra finestra",
|
|
209
224
|
"filter": "Filtra",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Ospite",
|
|
212
229
|
"items-per-page-option": "{ count } per pagina",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Altri...",
|
|
225
242
|
"name": "Nome",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Nessun risultato",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Non impostato",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Si è verificato un errore, impossibile creare { entity }",
|
|
230
249
|
"notify-create-success": "Creato nuovo { entity }",
|
|
231
250
|
"notify-delete-error": "Si è verificato un errore, impossibile cancellare { entity }",
|
|
232
251
|
"notify-delete-success": "Cancellato { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Si è verificato un errore, impossibile salvare le modifiche",
|
|
234
254
|
"notify-saved-changes": "Modifiche salvate",
|
|
235
255
|
"notify-update-error": "Si è verificato un errore, impossibile aggiornare { entity }",
|
|
236
256
|
"notify-update-success": "Aggiornato { entity }",
|
|
237
257
|
"notify-updated-tags-success": "Tags aggiornati con successo",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Apri",
|
|
239
260
|
"password": "Password",
|
|
240
261
|
"price": "Prezzo",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Motivo dell'annullamento",
|
|
466
487
|
"cancelled-order-success": "Ordine cancellato con successo",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Conferma modifiche",
|
|
468
490
|
"contents": "Contenuti",
|
|
469
491
|
"create-fulfillment": "Crea consegna",
|
|
470
492
|
"create-fulfillment-success": "Consegna creata",
|
|
471
493
|
"customer": "Cliente",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Modifica indirizzo di fatturazione",
|
|
473
496
|
"edit-shipping-address": "Modifica indirizzo di spedizione",
|
|
474
497
|
"error-message": "Messaggio di errore",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Personalizzato",
|
|
476
501
|
"filter-preset-active": "Attivi",
|
|
477
502
|
"filter-preset-completed": "Completati",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "Aperti",
|
|
479
505
|
"filter-preset-shipped": "Spediti",
|
|
480
506
|
"fulfill": "Consegna",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "Hai rimborsato {count} {count, plural, one {prodotto} other {prodotti}}",
|
|
556
582
|
"removed-items": "Prodotti rimossi",
|
|
557
583
|
"search-by-order-filters": "Cerca per codice ordine / cognome cliente / ID transazione",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Seleziona stato",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Segna come {state}",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Incassa pagamento",
|
|
562
594
|
"settle-payment-error": "Non è stato possibile incassare il pagamento",
|
|
563
595
|
"settle-payment-success": "Pagamento incassato con successo",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Creato",
|
|
657
689
|
"declined": "Rifiutato",
|
|
658
690
|
"delivered": "Consegnato",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Errore",
|
|
660
693
|
"failed": "Fallito",
|
|
661
694
|
"modifying": "In modifica",
|
|
@@ -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,12 +83,14 @@
|
|
|
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?",
|
|
84
90
|
"confirm-delete-zone": "",
|
|
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": "Utwórz nową kolekcje",
|
|
88
95
|
"create-new-facet": "Utwórz faset",
|
|
89
96
|
"create-new-product": "Nowy produkt",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Wyświetl jako tabele",
|
|
94
101
|
"drop-files-to-upload": "Upuść pliki do uploadu",
|
|
95
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Rozwiń wszystkie kolekcje",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Wartości faseta",
|
|
99
108
|
"filter-by-name": "Filtruj po nazwie",
|
|
100
109
|
"filter-by-name-or-sku": "",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Brak zaznaczonego kanału",
|
|
109
118
|
"no-featured-asset": "Brak polecanego zasobu",
|
|
110
119
|
"no-selection": "Brak zaznaczenia",
|
|
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": "Błąd usuwania produktu z kanału",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Produkt pomyślnie usunięty z kanału",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Usuń opcje",
|
|
137
151
|
"remove-product-from-channel": "Usuń produkt z kanału",
|
|
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": "",
|
|
208
223
|
"extension-running-in-separate-window": "Rozszerzenie jest włączone w innym oknie",
|
|
209
224
|
"filter": "",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Gość",
|
|
212
229
|
"items-per-page-option": "{ count } na stronę",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Więcej...",
|
|
225
242
|
"name": "Nazwa",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Brak wyników",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Nie ustawione",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Wystąpił błąd, nie można utworzyć { entity }",
|
|
230
249
|
"notify-create-success": "Utworzono { entity }",
|
|
231
250
|
"notify-delete-error": "Wystąpił błąd, nie można usunąć { entity }",
|
|
232
251
|
"notify-delete-success": "Usunięto { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Wystąpił błąd, nie można zapisać zmian",
|
|
234
254
|
"notify-saved-changes": "Zapisano zmiany",
|
|
235
255
|
"notify-update-error": "Wystąpił błąd, nie można zaktualizować { entity }",
|
|
236
256
|
"notify-update-success": "Zaktualizowano { entity }",
|
|
237
257
|
"notify-updated-tags-success": "",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Otwórz",
|
|
239
260
|
"password": "Hasło",
|
|
240
261
|
"price": "Cena",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Powód anulowania",
|
|
466
487
|
"cancelled-order-success": "Pomyślnie anulowano zamówienie",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "",
|
|
468
490
|
"contents": "Zawartość",
|
|
469
491
|
"create-fulfillment": "Utwórz wypełnienie",
|
|
470
492
|
"create-fulfillment-success": "Utworzono wypełnienie pomyślnie",
|
|
471
493
|
"customer": "Klient",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "",
|
|
473
496
|
"edit-shipping-address": "",
|
|
474
497
|
"error-message": "",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "",
|
|
476
501
|
"filter-preset-active": "",
|
|
477
502
|
"filter-preset-completed": "",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "",
|
|
479
505
|
"filter-preset-shipped": "",
|
|
480
506
|
"fulfill": "Zrealizuj",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {zamówienie} other {zamówień}} zwrócono",
|
|
556
582
|
"removed-items": "",
|
|
557
583
|
"search-by-order-filters": "Szukaj po numerze zamówienia / Nazwisko / Numer transakcji",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Rozlicz płatność",
|
|
562
594
|
"settle-payment-error": "Nie można rozliczyć płatności",
|
|
563
595
|
"settle-payment-success": "Płatność rozliczona pomyślnie",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "",
|
|
657
689
|
"declined": "",
|
|
658
690
|
"delivered": "Zrealizowano",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "",
|
|
660
693
|
"failed": "",
|
|
661
694
|
"modifying": "",
|
|
@@ -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,12 +83,14 @@
|
|
|
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?",
|
|
84
90
|
"confirm-delete-zone": "Excluir zona?",
|
|
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": "Criar nova categoria",
|
|
88
95
|
"create-new-facet": "Criar nova etiqueta",
|
|
89
96
|
"create-new-product": "Novo produto",
|
|
@@ -93,8 +100,10 @@
|
|
|
93
100
|
"display-variant-table": "Ver como tabela",
|
|
94
101
|
"drop-files-to-upload": "Soltar arquivos para envio",
|
|
95
102
|
"duplicate-sku-warning": "",
|
|
103
|
+
"edit-facet-values": "",
|
|
96
104
|
"edit-options": "",
|
|
97
105
|
"expand-all-collections": "Expandir todas as categorias",
|
|
106
|
+
"facet-value-not-available": "",
|
|
98
107
|
"facet-values": "Valor da Etiqueta",
|
|
99
108
|
"filter-by-name": "Filtrar por nome",
|
|
100
109
|
"filter-by-name-or-sku": "Filtrar por nome ou SKU",
|
|
@@ -108,6 +117,11 @@
|
|
|
108
117
|
"no-channel-selected": "Nenhum canal selecionado",
|
|
109
118
|
"no-featured-asset": "Nenhum recurso em destaque",
|
|
110
119
|
"no-selection": "Nenhuma seleção",
|
|
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": "Não foi possível remover o produto do canal",
|
|
112
126
|
"notify-remove-product-from-channel-success": "Produto removido com sucesso do canal",
|
|
113
127
|
"notify-remove-variant-from-channel-error": "Erro ao remover variação do canal",
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"remove-option": "Excluir opção",
|
|
137
151
|
"remove-product-from-channel": "Excluir produto do canal",
|
|
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": "Expandir entradas",
|
|
208
223
|
"extension-running-in-separate-window": "A extensão está sendo executada em uma janela separada",
|
|
209
224
|
"filter": "Filtro",
|
|
225
|
+
"force-delete": "",
|
|
226
|
+
"force-remove": "",
|
|
210
227
|
"general": "",
|
|
211
228
|
"guest": "Convidado",
|
|
212
229
|
"items-per-page-option": "{ count } por página",
|
|
@@ -223,18 +240,22 @@
|
|
|
223
240
|
"medium-date": "",
|
|
224
241
|
"more": "Mais...",
|
|
225
242
|
"name": "Nome",
|
|
243
|
+
"no-bulk-actions-available": "",
|
|
226
244
|
"no-results": "Sem resultados",
|
|
227
245
|
"not-applicable": "",
|
|
228
246
|
"not-set": "Não configurado",
|
|
247
|
+
"notify-bulk-update-success": "",
|
|
229
248
|
"notify-create-error": "Ocorreu um erro, não foi possível criar { entity }",
|
|
230
249
|
"notify-create-success": "Criado novo { entity }",
|
|
231
250
|
"notify-delete-error": "Ocorreu um erro, não foi possível excluir { entity }",
|
|
232
251
|
"notify-delete-success": "Excluído { entity }",
|
|
252
|
+
"notify-remove-products-from-channel-success": "",
|
|
233
253
|
"notify-save-changes-error": "Ocorreu um erro, não foi possível salvar as alterações",
|
|
234
254
|
"notify-saved-changes": "Alterações salvas",
|
|
235
255
|
"notify-update-error": "Ocorreu um erro, não foi possível atualizar { entity }",
|
|
236
256
|
"notify-update-success": "Atualizado { entity }",
|
|
237
257
|
"notify-updated-tags-success": "",
|
|
258
|
+
"okay": "",
|
|
238
259
|
"open": "Aberto",
|
|
239
260
|
"password": "Senha",
|
|
240
261
|
"price": "Preço",
|
|
@@ -464,17 +485,22 @@
|
|
|
464
485
|
"cancel-specified-items": "",
|
|
465
486
|
"cancellation-reason": "Motivo do cancelamento",
|
|
466
487
|
"cancelled-order-success": "Pedido cancelado com sucesso",
|
|
488
|
+
"complete-draft-order": "",
|
|
467
489
|
"confirm-modifications": "Confirmar modificações",
|
|
468
490
|
"contents": "Conteúdo",
|
|
469
491
|
"create-fulfillment": "Criar a execução",
|
|
470
492
|
"create-fulfillment-success": "Execução criada",
|
|
471
493
|
"customer": "Cliente",
|
|
494
|
+
"delete-draft-order": "",
|
|
472
495
|
"edit-billing-address": "Editar endereço de fatura",
|
|
473
496
|
"edit-shipping-address": "Editar endereço de envio",
|
|
474
497
|
"error-message": "",
|
|
498
|
+
"existing-address": "",
|
|
499
|
+
"existing-customer": "",
|
|
475
500
|
"filter-custom": "Customizar",
|
|
476
501
|
"filter-preset-active": "Ativo",
|
|
477
502
|
"filter-preset-completed": "Concluído",
|
|
503
|
+
"filter-preset-draft": "",
|
|
478
504
|
"filter-preset-open": "Aberto",
|
|
479
505
|
"filter-preset-shipped": "Enviado",
|
|
480
506
|
"fulfill": "Executar",
|
|
@@ -555,9 +581,15 @@
|
|
|
555
581
|
"refunded-count": "{count} {count, plural, one {item} other {items}} reembolsado",
|
|
556
582
|
"removed-items": "Itens removidos",
|
|
557
583
|
"search-by-order-filters": "Buscar por código do pedido / Sobrenome / Código ID da transação",
|
|
584
|
+
"select-address": "",
|
|
585
|
+
"select-shipping-method": "",
|
|
558
586
|
"select-state": "Selecionar estado",
|
|
587
|
+
"set-billing-address": "",
|
|
559
588
|
"set-coupon-codes": "",
|
|
589
|
+
"set-customer-for-order": "",
|
|
560
590
|
"set-fulfillment-state": "Marcar como {state}",
|
|
591
|
+
"set-shipping-address": "",
|
|
592
|
+
"set-shipping-method": "",
|
|
561
593
|
"settle-payment": "Liquidar pagamento",
|
|
562
594
|
"settle-payment-error": "Não posso liquidar pagamento",
|
|
563
595
|
"settle-payment-success": "Pagamento liquidado com sucesso",
|
|
@@ -656,6 +688,7 @@
|
|
|
656
688
|
"created": "Criado",
|
|
657
689
|
"declined": "Recusado",
|
|
658
690
|
"delivered": "Entregue",
|
|
691
|
+
"draft": "",
|
|
659
692
|
"error": "Erro",
|
|
660
693
|
"failed": "Falhado",
|
|
661
694
|
"modifying": "Modificando",
|