@deenruv/admin-ui 1.0.0
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/LICENSE +23 -0
- package/catalog/catalog.module.d.ts +43 -0
- package/catalog/catalog.routes.d.ts +4 -0
- package/catalog/components/apply-facet-dialog/apply-facet-dialog.component.d.ts +16 -0
- package/catalog/components/asset-detail/asset-detail.component.d.ts +28 -0
- package/catalog/components/asset-list/asset-list.component.d.ts +23 -0
- package/catalog/components/assign-products-to-channel-dialog/assign-products-to-channel-dialog.component.d.ts +35 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.d.ts +40 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.d.ts +4 -0
- package/catalog/components/collection-contents/collection-contents.component.d.ts +39 -0
- package/catalog/components/collection-data-table/collection-data-table.component.d.ts +80 -0
- package/catalog/components/collection-detail/collection-detail.component.d.ts +71 -0
- package/catalog/components/collection-list/collection-breadcrumb.pipe.d.ts +11 -0
- package/catalog/components/collection-list/collection-list-bulk-actions.d.ts +8 -0
- package/catalog/components/collection-list/collection-list.component.d.ts +25 -0
- package/catalog/components/collection-tree/array-to-tree.d.ts +19 -0
- package/catalog/components/collection-tree/collection-tree-node.component.d.ts +44 -0
- package/catalog/components/collection-tree/collection-tree.component.d.ts +22 -0
- package/catalog/components/collection-tree/collection-tree.service.d.ts +33 -0
- package/catalog/components/collection-tree/collection-tree.types.d.ts +7 -0
- package/catalog/components/confirm-variant-deletion-dialog/confirm-variant-deletion-dialog.component.d.ts +10 -0
- package/catalog/components/create-facet-value-dialog/create-facet-value-dialog.component.d.ts +19 -0
- package/catalog/components/create-product-option-group-dialog/create-product-option-group-dialog.component.d.ts +18 -0
- package/catalog/components/create-product-variant-dialog/create-product-variant-dialog.component.d.ts +27 -0
- package/catalog/components/facet-detail/facet-detail.component.d.ts +76 -0
- package/catalog/components/facet-list/facet-list-bulk-actions.d.ts +7 -0
- package/catalog/components/facet-list/facet-list.component.d.ts +19 -0
- package/catalog/components/generate-product-variants/generate-product-variants.component.d.ts +65 -0
- package/catalog/components/move-collections-dialog/move-collections-dialog.component.d.ts +23 -0
- package/catalog/components/option-value-input/option-value-input.component.d.ts +48 -0
- package/catalog/components/product-detail/product-detail.component.d.ts +75 -0
- package/catalog/components/product-list/product-list-bulk-actions.d.ts +7 -0
- package/catalog/components/product-list/product-list.component.d.ts +18 -0
- package/catalog/components/product-list/product-list.graphql.d.ts +1 -0
- package/catalog/components/product-options-editor/product-options-editor.component.d.ts +47 -0
- package/catalog/components/product-variant-detail/product-variant-detail.component.d.ts +79 -0
- package/catalog/components/product-variant-detail/product-variant-detail.graphql.d.ts +3 -0
- package/catalog/components/product-variant-list/product-variant-list-bulk-actions.d.ts +6 -0
- package/catalog/components/product-variant-list/product-variant-list.component.d.ts +14 -0
- package/catalog/components/product-variant-list/product-variant-list.graphql.d.ts +1 -0
- package/catalog/components/product-variant-quick-jump/product-variant-quick-jump.component.d.ts +18 -0
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +88 -0
- package/catalog/components/product-variants-table/product-variants-table.component.d.ts +55 -0
- package/catalog/components/update-product-option-dialog/update-product-option-dialog.component.d.ts +25 -0
- package/catalog/components/variant-price-detail/variant-price-detail.component.d.ts +20 -0
- package/catalog/components/variant-price-strategy-detail/variant-price-strategy-detail.component.d.ts +10 -0
- package/catalog/index.d.ts +5 -0
- package/catalog/providers/product-detail/product-detail.service.d.ts +286 -0
- package/catalog/providers/product-detail/replace-last.d.ts +6 -0
- package/catalog/providers/routing/product-variants-resolver.d.ts +8 -0
- package/catalog/public_api.d.ts +48 -0
- package/core/app.component.d.ts +19 -0
- package/core/app.component.module.d.ts +9 -0
- package/core/app.config.d.ts +3 -0
- package/core/common/base-detail.component.d.ts +146 -0
- package/core/common/base-entity-resolver.d.ts +45 -0
- package/core/common/base-list.component.d.ts +138 -0
- package/core/common/component-registry-types.d.ts +65 -0
- package/core/common/deactivate-aware.d.ts +8 -0
- package/core/common/detail-breadcrumb.d.ts +12 -0
- package/core/common/generated-types.d.ts +20279 -0
- package/core/common/introspection-result-wrapper.d.ts +1 -0
- package/core/common/introspection-result.d.ts +7 -0
- package/core/common/single-search-selection-model.d.ts +16 -0
- package/core/common/title-setter.d.ts +4 -0
- package/core/common/utilities/bulk-action-utils.d.ts +49 -0
- package/core/common/utilities/configurable-operation-utils.d.ts +48 -0
- package/core/common/utilities/create-updated-translatable.d.ts +25 -0
- package/core/common/utilities/custom-field-default-value.d.ts +6 -0
- package/core/common/utilities/find-translation.d.ts +14 -0
- package/core/common/utilities/get-default-ui-language.d.ts +3 -0
- package/core/common/utilities/interpolate-description.d.ts +7 -0
- package/core/common/utilities/selection-manager.d.ts +30 -0
- package/core/common/utilities/string-to-color.d.ts +4 -0
- package/core/common/version.d.ts +1 -0
- package/core/components/alerts/alerts.component.d.ts +11 -0
- package/core/components/app-shell/app-shell.component.d.ts +41 -0
- package/core/components/base-nav/base-nav.component.d.ts +30 -0
- package/core/components/breadcrumb/breadcrumb.component.d.ts +27 -0
- package/core/components/channel-switcher/channel-switcher.component.d.ts +21 -0
- package/core/components/main-nav/main-nav.component.d.ts +22 -0
- package/core/components/notification/notification.component.d.ts +37 -0
- package/core/components/overlay-host/overlay-host.component.d.ts +12 -0
- package/core/components/settings-nav/settings-nav.component.d.ts +11 -0
- package/core/components/theme-switcher/theme-switcher.component.d.ts +16 -0
- package/core/components/ui-language-switcher-dialog/ui-language-switcher-dialog.component.d.ts +30 -0
- package/core/components/user-menu/user-menu.component.d.ts +12 -0
- package/core/core.module.d.ts +39 -0
- package/core/data/check-jobs-link.d.ts +19 -0
- package/core/data/client-state/client-defaults.d.ts +32 -0
- package/core/data/client-state/client-resolvers.d.ts +12 -0
- package/core/data/data.module.d.ts +17 -0
- package/core/data/definitions/administrator-definitions.d.ts +14 -0
- package/core/data/definitions/auth-definitions.d.ts +4 -0
- package/core/data/definitions/client-definitions.d.ts +17 -0
- package/core/data/definitions/collection-definitions.d.ts +13 -0
- package/core/data/definitions/customer-definitions.d.ts +23 -0
- package/core/data/definitions/facet-definitions.d.ts +13 -0
- package/core/data/definitions/order-definitions.d.ts +39 -0
- package/core/data/definitions/product-definitions.d.ts +49 -0
- package/core/data/definitions/promotion-definitions.d.ts +6 -0
- package/core/data/definitions/settings-definitions.d.ts +69 -0
- package/core/data/definitions/shared-definitions.d.ts +3 -0
- package/core/data/definitions/shipping-definitions.d.ts +8 -0
- package/core/data/omit-typename-link.d.ts +11 -0
- package/core/data/providers/administrator-data.service.d.ts +19 -0
- package/core/data/providers/auth-data.service.d.ts +9 -0
- package/core/data/providers/base-data.service.d.ts +26 -0
- package/core/data/providers/client-data.service.d.ts +26 -0
- package/core/data/providers/collection-data.service.d.ts +25 -0
- package/core/data/providers/customer-data.service.d.ts +36 -0
- package/core/data/providers/data.service.d.ts +86 -0
- package/core/data/providers/facet-data.service.d.ts +19 -0
- package/core/data/providers/fetch-adapter.d.ts +14 -0
- package/core/data/providers/interceptor.d.ts +49 -0
- package/core/data/providers/order-data.service.d.ts +48 -0
- package/core/data/providers/product-data.service.d.ts +86 -0
- package/core/data/providers/promotion-data.service.d.ts +11 -0
- package/core/data/providers/settings-data.service.d.ts +74 -0
- package/core/data/providers/shipping-method-data.service.d.ts +17 -0
- package/core/data/query-result.d.ts +43 -0
- package/core/data/server-config.d.ts +39 -0
- package/core/data/utils/add-custom-fields.d.ts +7 -0
- package/core/data/utils/get-server-location.d.ts +4 -0
- package/core/data/utils/is-entity-create-or-update-mutation.d.ts +6 -0
- package/core/data/utils/remove-readonly-custom-fields.d.ts +17 -0
- package/core/data/utils/transform-relation-custom-field-inputs.d.ts +8 -0
- package/core/extension/add-action-bar-dropdown-menu-item.d.ts +25 -0
- package/core/extension/add-action-bar-item.d.ts +21 -0
- package/core/extension/add-nav-menu-item.d.ts +56 -0
- package/core/extension/components/angular-route.component.d.ts +26 -0
- package/core/extension/components/route.component.d.ts +20 -0
- package/core/extension/providers/page-metadata.service.d.ts +9 -0
- package/core/extension/register-alert.d.ts +11 -0
- package/core/extension/register-bulk-action.d.ts +49 -0
- package/core/extension/register-custom-detail-component.d.ts +55 -0
- package/core/extension/register-dashboard-widget.d.ts +17 -0
- package/core/extension/register-data-table-component.d.ts +45 -0
- package/core/extension/register-form-input-component.d.ts +51 -0
- package/core/extension/register-history-entry-component.d.ts +66 -0
- package/core/extension/register-page-tab.d.ts +23 -0
- package/core/extension/register-route-component.d.ts +109 -0
- package/core/extension/types.d.ts +11 -0
- package/core/index.d.ts +5 -0
- package/core/providers/alerts/alerts.service.d.ts +150 -0
- package/core/providers/auth/auth.service.d.ts +40 -0
- package/core/providers/breadcrumb/breadcrumb.service.d.ts +39 -0
- package/core/providers/bulk-action-registry/bulk-action-registry.service.d.ts +9 -0
- package/core/providers/bulk-action-registry/bulk-action-types.d.ts +149 -0
- package/core/providers/channel/channel.service.d.ts +16 -0
- package/core/providers/component-registry/component-registry.service.d.ts +13 -0
- package/core/providers/currency/currency.service.d.ts +10 -0
- package/core/providers/custom-detail-component/custom-detail-component-types.d.ts +26 -0
- package/core/providers/custom-detail-component/custom-detail-component.service.d.ts +9 -0
- package/core/providers/custom-field-component/custom-field-component.service.d.ts +25 -0
- package/core/providers/custom-history-entry-component/history-entry-component-types.d.ts +81 -0
- package/core/providers/custom-history-entry-component/history-entry-component.service.d.ts +10 -0
- package/core/providers/dashboard-widget/dashboard-widget-types.d.ts +56 -0
- package/core/providers/dashboard-widget/dashboard-widget.service.d.ts +24 -0
- package/core/providers/data-table/data-table-filter-collection.d.ts +48 -0
- package/core/providers/data-table/data-table-filter.d.ts +108 -0
- package/core/providers/data-table/data-table-sort-collection.d.ts +24 -0
- package/core/providers/data-table/data-table-sort.d.ts +14 -0
- package/core/providers/guard/auth.guard.d.ts +17 -0
- package/core/providers/health-check/health-check.service.d.ts +40 -0
- package/core/providers/i18n/custom-http-loader.d.ts +21 -0
- package/core/providers/i18n/custom-message-format-compiler.d.ts +15 -0
- package/core/providers/i18n/i18n.service.d.ts +39 -0
- package/core/providers/job-queue/job-queue.service.d.ts +22 -0
- package/core/providers/local-storage/local-storage.service.d.ts +66 -0
- package/core/providers/localization/localization.service.d.ts +21 -0
- package/core/providers/modal/modal.service.d.ts +67 -0
- package/core/providers/modal/modal.types.d.ts +69 -0
- package/core/providers/nav-builder/nav-builder-types.d.ts +279 -0
- package/core/providers/nav-builder/nav-builder.service.d.ts +64 -0
- package/core/providers/notification/notification.service.d.ts +105 -0
- package/core/providers/overlay-host/overlay-host.service.d.ts +25 -0
- package/core/providers/page/page.service.d.ts +61 -0
- package/core/providers/permissions/permissions.service.d.ts +26 -0
- package/core/public_api.d.ts +313 -0
- package/core/shared/components/action-bar/action-bar.component.d.ts +17 -0
- package/core/shared/components/action-bar-dropdown-menu/action-bar-dropdown-menu.component.d.ts +15 -0
- package/core/shared/components/action-bar-items/action-bar-base.component.d.ts +29 -0
- package/core/shared/components/action-bar-items/action-bar-items.component.d.ts +11 -0
- package/core/shared/components/address-form/address-form.component.d.ts +10 -0
- package/core/shared/components/affixed-input/affixed-input.component.d.ts +10 -0
- package/core/shared/components/affixed-input/percentage-suffix-input.component.d.ts +22 -0
- package/core/shared/components/asset-file-input/asset-file-input.component.d.ts +39 -0
- package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +97 -0
- package/core/shared/components/asset-gallery/asset-gallery.types.d.ts +3 -0
- package/core/shared/components/asset-picker-dialog/asset-picker-dialog.component.d.ts +60 -0
- package/core/shared/components/asset-preview/asset-preview.component.d.ts +61 -0
- package/core/shared/components/asset-preview-dialog/asset-preview-dialog.component.d.ts +22 -0
- package/core/shared/components/asset-preview-links/asset-preview-links.component.d.ts +8 -0
- package/core/shared/components/asset-search-input/asset-search-input.component.d.ts +26 -0
- package/core/shared/components/assets/assets.component.d.ts +36 -0
- package/core/shared/components/assign-to-channel-dialog/assign-to-channel-dialog.component.d.ts +28 -0
- package/core/shared/components/bulk-action-menu/bulk-action-menu.component.d.ts +34 -0
- package/core/shared/components/card/card.component.d.ts +13 -0
- package/core/shared/components/channel-assignment-control/channel-assignment-control.component.d.ts +32 -0
- package/core/shared/components/channel-badge/channel-badge.component.d.ts +7 -0
- package/core/shared/components/chart/chart.component.d.ts +28 -0
- package/core/shared/components/chart/tooltip-plugin.d.ts +21 -0
- package/core/shared/components/chip/chip.component.d.ts +38 -0
- package/core/shared/components/configurable-input/configurable-input.component.d.ts +43 -0
- package/core/shared/components/currency-code-selector/currency-code-selector.component.d.ts +21 -0
- package/core/shared/components/currency-input/currency-input.component.d.ts +53 -0
- package/core/shared/components/custom-detail-component-host/custom-detail-component-host.component.d.ts +20 -0
- package/core/shared/components/custom-field-control/custom-field-control.component.d.ts +31 -0
- package/core/shared/components/customer-label/customer-label.component.d.ts +7 -0
- package/core/shared/components/data-table/data-table-column.component.d.ts +11 -0
- package/core/shared/components/data-table/data-table.component.d.ts +107 -0
- package/core/shared/components/data-table-2/data-table-column.component.d.ts +25 -0
- package/core/shared/components/data-table-2/data-table-custom-component.service.d.ts +52 -0
- package/core/shared/components/data-table-2/data-table-custom-field-column.component.d.ts +18 -0
- package/core/shared/components/data-table-2/data-table-search.component.d.ts +10 -0
- package/core/shared/components/data-table-2/data-table2.component.d.ts +134 -0
- package/core/shared/components/data-table-column-picker/data-table-column-picker.component.d.ts +19 -0
- package/core/shared/components/data-table-filter-label/data-table-filter-label.component.d.ts +11 -0
- package/core/shared/components/data-table-filter-presets/add-filter-preset-button.component.d.ts +25 -0
- package/core/shared/components/data-table-filter-presets/data-table-filter-presets.component.d.ts +30 -0
- package/core/shared/components/data-table-filter-presets/filter-preset.service.d.ts +34 -0
- package/core/shared/components/data-table-filter-presets/rename-filter-preset-dialog.component.d.ts +9 -0
- package/core/shared/components/data-table-filters/custom-filter-component.directive.d.ts +8 -0
- package/core/shared/components/data-table-filters/data-table-filters.component.d.ts +30 -0
- package/core/shared/components/datetime-picker/constants.d.ts +5 -0
- package/core/shared/components/datetime-picker/datetime-picker.component.d.ts +100 -0
- package/core/shared/components/datetime-picker/datetime-picker.service.d.ts +37 -0
- package/core/shared/components/datetime-picker/types.d.ts +11 -0
- package/core/shared/components/dropdown/dropdown-item.directive.d.ts +9 -0
- package/core/shared/components/dropdown/dropdown-menu.component.d.ts +42 -0
- package/core/shared/components/dropdown/dropdown-trigger.directive.d.ts +11 -0
- package/core/shared/components/dropdown/dropdown.component.d.ts +39 -0
- package/core/shared/components/duplicate-entity-dialog/duplicate-entity-dialog.component.d.ts +33 -0
- package/core/shared/components/duplicate-entity-dialog/duplicate-entity-dialog.graphql.d.ts +2 -0
- package/core/shared/components/edit-note-dialog/edit-note-dialog.component.d.ts +18 -0
- package/core/shared/components/empty-placeholder/empty-placeholder.component.d.ts +6 -0
- package/core/shared/components/entity-info/entity-info.component.d.ts +11 -0
- package/core/shared/components/extension-host/extension-host-config.d.ts +9 -0
- package/core/shared/components/extension-host/extension-host.component.d.ts +28 -0
- package/core/shared/components/extension-host/extension-host.service.d.ts +23 -0
- package/core/shared/components/extension-host/host-external-frame.d.ts +28 -0
- package/core/shared/components/facet-value-chip/facet-value-chip.component.d.ts +11 -0
- package/core/shared/components/facet-value-selector/facet-value-selector.component.d.ts +49 -0
- package/core/shared/components/focal-point-control/focal-point-control.component.d.ts +24 -0
- package/core/shared/components/form-field/form-field-control.directive.d.ts +15 -0
- package/core/shared/components/form-field/form-field.component.d.ts +32 -0
- package/core/shared/components/form-item/form-item.component.d.ts +11 -0
- package/core/shared/components/formatted-address/formatted-address.component.d.ts +13 -0
- package/core/shared/components/help-tooltip/help-tooltip.component.d.ts +7 -0
- package/core/shared/components/history-entry-detail/history-entry-detail.component.d.ts +5 -0
- package/core/shared/components/items-per-page-controls/items-per-page-controls.component.d.ts +11 -0
- package/core/shared/components/labeled-data/labeled-data.component.d.ts +6 -0
- package/core/shared/components/language-code-selector/language-code-selector.component.d.ts +20 -0
- package/core/shared/components/language-selector/language-selector.component.d.ts +11 -0
- package/core/shared/components/localized-text/localized-text.component.d.ts +13 -0
- package/core/shared/components/manage-tags-dialog/manage-tags-dialog.component.d.ts +24 -0
- package/core/shared/components/modal-dialog/dialog-buttons.directive.d.ts +14 -0
- package/core/shared/components/modal-dialog/dialog-component-outlet.component.d.ts +14 -0
- package/core/shared/components/modal-dialog/dialog-title.directive.d.ts +14 -0
- package/core/shared/components/modal-dialog/modal-dialog.component.d.ts +44 -0
- package/core/shared/components/object-tree/object-tree.component.d.ts +32 -0
- package/core/shared/components/order-state-label/order-state-label.component.d.ts +17 -0
- package/core/shared/components/page/page.component.d.ts +21 -0
- package/core/shared/components/page-block/page-block.component.d.ts +5 -0
- package/core/shared/components/page-body/page-body.component.d.ts +5 -0
- package/core/shared/components/page-detail-layout/page-detail-layout.component.d.ts +5 -0
- package/core/shared/components/page-detail-layout/page-detail-sidebar.component.d.ts +5 -0
- package/core/shared/components/page-entity-info/page-entity-info.component.d.ts +10 -0
- package/core/shared/components/page-header/page-header.component.d.ts +5 -0
- package/core/shared/components/page-header-description/page-header-description.component.d.ts +5 -0
- package/core/shared/components/page-header-tabs/page-header-tabs.component.d.ts +14 -0
- package/core/shared/components/page-title/page-title.component.d.ts +16 -0
- package/core/shared/components/pagination-controls/pagination-controls.component.d.ts +11 -0
- package/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.d.ts +38 -0
- package/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.graphql.d.ts +1 -0
- package/core/shared/components/product-search-input/product-search-input.component.d.ts +28 -0
- package/core/shared/components/product-variant-selector/product-variant-selector.component.d.ts +58 -0
- package/core/shared/components/radio-card/radio-card-fieldset.component.d.ts +24 -0
- package/core/shared/components/radio-card/radio-card.component.d.ts +22 -0
- package/core/shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component.d.ts +21 -0
- package/core/shared/components/rich-text-editor/link-dialog/link-dialog.component.d.ts +19 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.d.ts +31 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.d.ts +34 -0
- package/core/shared/components/rich-text-editor/prosemirror/custom-nodes.d.ts +5 -0
- package/core/shared/components/rich-text-editor/prosemirror/inputrules.d.ts +8 -0
- package/core/shared/components/rich-text-editor/prosemirror/keymap.d.ts +3 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/links.d.ts +4 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.d.ts +16 -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/menu.d.ts +3 -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 +5 -0
- 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 +34 -0
- package/core/shared/components/rich-text-editor/prosemirror/types.d.ts +9 -0
- package/core/shared/components/rich-text-editor/prosemirror/utils.d.ts +9 -0
- package/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.d.ts +21 -0
- package/core/shared/components/rich-text-editor/rich-text-editor.component.d.ts +42 -0
- package/core/shared/components/select-toggle/select-toggle.component.d.ts +15 -0
- package/core/shared/components/simple-dialog/simple-dialog.component.d.ts +14 -0
- package/core/shared/components/split-view/split-view.component.d.ts +23 -0
- package/core/shared/components/split-view/split-view.directive.d.ts +13 -0
- package/core/shared/components/status-badge/status-badge.component.d.ts +6 -0
- package/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.d.ts +25 -0
- package/core/shared/components/table-row-action/table-row-action.component.d.ts +12 -0
- package/core/shared/components/tag-selector/tag-selector.component.d.ts +24 -0
- package/core/shared/components/timeline-entry/timeline-entry.component.d.ts +19 -0
- package/core/shared/components/title-input/title-input.component.d.ts +6 -0
- package/core/shared/components/ui-extension-point/ui-extension-point.component.d.ts +27 -0
- package/core/shared/components/zone-selector/zone-selector.component.d.ts +51 -0
- package/core/shared/directives/disabled.directive.d.ts +14 -0
- package/core/shared/directives/if-default-channel-active.directive.d.ts +16 -0
- package/core/shared/directives/if-directive-base.d.ts +27 -0
- package/core/shared/directives/if-multichannel.directive.d.ts +28 -0
- package/core/shared/directives/if-permissions.directive.d.ts +37 -0
- package/core/shared/dynamic-form-inputs/boolean-form-input/boolean-form-input.component.d.ts +19 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.d.ts +30 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.d.ts +22 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.d.ts +23 -0
- package/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.d.ts +28 -0
- package/core/shared/dynamic-form-inputs/currency-form-input/currency-form-input.component.d.ts +25 -0
- package/core/shared/dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component.d.ts +33 -0
- package/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.d.ts +22 -0
- package/core/shared/dynamic-form-inputs/default-form-inputs.d.ts +19 -0
- package/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.d.ts +58 -0
- package/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.d.ts +23 -0
- package/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.d.ts +24 -0
- package/core/shared/dynamic-form-inputs/password-form-input/password-form-input.component.d.ts +19 -0
- package/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.d.ts +25 -0
- package/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.d.ts +34 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.d.ts +23 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/customer/relation-customer-input.component.d.ts +25 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.d.ts +18 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/product/relation-product-input.component.d.ts +26 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/product-variant/relation-product-variant-input.component.d.ts +26 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/relation-card/relation-card.component.d.ts +23 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.d.ts +22 -0
- package/core/shared/dynamic-form-inputs/relation-form-input/relation-selector-dialog/relation-selector-dialog.component.d.ts +10 -0
- package/core/shared/dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component.d.ts +19 -0
- package/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.d.ts +30 -0
- package/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.d.ts +21 -0
- package/core/shared/dynamic-form-inputs/textarea-form-input/textarea-form-input.component.d.ts +20 -0
- package/core/shared/pipes/asset-preview.pipe.d.ts +22 -0
- package/core/shared/pipes/channel-label.pipe.d.ts +7 -0
- package/core/shared/pipes/custom-field-description.pipe.d.ts +11 -0
- package/core/shared/pipes/custom-field-label.pipe.d.ts +13 -0
- package/core/shared/pipes/duration.pipe.d.ts +22 -0
- package/core/shared/pipes/file-size.pipe.d.ts +18 -0
- package/core/shared/pipes/has-permission.pipe.d.ts +27 -0
- package/core/shared/pipes/locale-base.pipe.d.ts +21 -0
- package/core/shared/pipes/locale-currency-name.pipe.d.ts +21 -0
- package/core/shared/pipes/locale-currency.pipe.d.ts +25 -0
- package/core/shared/pipes/locale-date.pipe.d.ts +23 -0
- package/core/shared/pipes/locale-language-name.pipe.d.ts +21 -0
- package/core/shared/pipes/locale-region-name.pipe.d.ts +21 -0
- package/core/shared/pipes/sentence-case.pipe.d.ts +10 -0
- package/core/shared/pipes/sort.pipe.d.ts +12 -0
- package/core/shared/pipes/state-i18n-token.pipe.d.ts +9 -0
- package/core/shared/pipes/string-to-color.pipe.d.ts +7 -0
- package/core/shared/pipes/time-ago.pipe.d.ts +21 -0
- package/core/shared/providers/routing/can-deactivate-detail-guard.d.ts +11 -0
- package/core/shared/shared.module.d.ts +168 -0
- package/core/validators/unicode-pattern.validator.d.ts +2 -0
- package/customer/components/add-customer-to-group-dialog/add-customer-to-group-dialog.component.d.ts +22 -0
- package/customer/components/address-card/address-card.component.d.ts +28 -0
- package/customer/components/address-detail-dialog/address-detail-dialog.component.d.ts +17 -0
- package/customer/components/customer-detail/customer-detail.component.d.ts +70 -0
- package/customer/components/customer-group-detail/customer-group-detail.component.d.ts +26 -0
- package/customer/components/customer-group-detail-dialog/customer-group-detail-dialog.component.d.ts +24 -0
- package/customer/components/customer-group-list/customer-group-list-bulk-actions.d.ts +1 -0
- package/customer/components/customer-group-list/customer-group-list.component.d.ts +29 -0
- package/customer/components/customer-group-member-list/customer-group-member-list-bulk-actions.d.ts +3 -0
- package/customer/components/customer-group-member-list/customer-group-member-list.component.d.ts +39 -0
- package/customer/components/customer-history/customer-history-entry-host.component.d.ts +18 -0
- package/customer/components/customer-history/customer-history.component.d.ts +51 -0
- package/customer/components/customer-list/customer-list-bulk-actions.d.ts +1 -0
- package/customer/components/customer-list/customer-list.component.d.ts +12 -0
- package/customer/components/customer-status-label/customer-status-label.component.d.ts +7 -0
- package/customer/components/select-customer-group-dialog/select-customer-group-dialog.component.d.ts +16 -0
- package/customer/customer.module.d.ts +24 -0
- package/customer/customer.routes.d.ts +4 -0
- package/customer/index.d.ts +5 -0
- package/customer/public_api.d.ts +18 -0
- package/dashboard/components/dashboard/dashboard.component.d.ts +34 -0
- package/dashboard/components/dashboard-widget/dashboard-widget.component.d.ts +13 -0
- package/dashboard/dashboard.module.d.ts +13 -0
- package/dashboard/dashboard.routes.d.ts +2 -0
- package/dashboard/default-widgets.d.ts +5 -0
- package/dashboard/index.d.ts +5 -0
- package/dashboard/public_api.d.ts +10 -0
- package/dashboard/widgets/latest-orders-widget/latest-orders-widget.component.d.ts +18 -0
- package/dashboard/widgets/order-chart-widget/order-chart-widget.component.d.ts +17 -0
- package/dashboard/widgets/order-summary-widget/order-summary-widget.component.d.ts +32 -0
- package/dashboard/widgets/test-widget/test-widget.component.d.ts +10 -0
- package/dashboard/widgets/welcome-widget/welcome-widget.component.d.ts +22 -0
- package/esm2022/catalog/catalog.module.mjs +331 -0
- package/esm2022/catalog/catalog.routes.mjs +144 -0
- package/esm2022/catalog/components/apply-facet-dialog/apply-facet-dialog.component.mjs +30 -0
- package/esm2022/catalog/components/asset-detail/asset-detail.component.mjs +77 -0
- package/esm2022/catalog/components/asset-list/asset-list.component.mjs +120 -0
- package/esm2022/catalog/components/assign-products-to-channel-dialog/assign-products-to-channel-dialog.component.mjs +102 -0
- package/esm2022/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.mjs +83 -0
- package/esm2022/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.mjs +69 -0
- package/esm2022/catalog/components/collection-contents/collection-contents.component.mjs +124 -0
- package/esm2022/catalog/components/collection-data-table/collection-data-table.component.mjs +95 -0
- package/esm2022/catalog/components/collection-detail/collection-detail.component.mjs +263 -0
- package/esm2022/catalog/components/collection-list/collection-breadcrumb.pipe.mjs +19 -0
- package/esm2022/catalog/components/collection-list/collection-list-bulk-actions.mjs +97 -0
- package/esm2022/catalog/components/collection-list/collection-list.component.mjs +157 -0
- package/esm2022/catalog/components/collection-tree/array-to-tree.mjs +56 -0
- package/esm2022/catalog/components/collection-tree/collection-tree-node.component.mjs +125 -0
- package/esm2022/catalog/components/collection-tree/collection-tree.component.mjs +49 -0
- package/esm2022/catalog/components/collection-tree/collection-tree.service.mjs +68 -0
- package/esm2022/catalog/components/collection-tree/collection-tree.types.mjs +2 -0
- package/esm2022/catalog/components/confirm-variant-deletion-dialog/confirm-variant-deletion-dialog.component.mjs +23 -0
- package/esm2022/catalog/components/create-facet-value-dialog/create-facet-value-dialog.component.mjs +44 -0
- package/esm2022/catalog/components/create-product-option-group-dialog/create-product-option-group-dialog.component.mjs +44 -0
- package/esm2022/catalog/components/create-product-variant-dialog/create-product-variant-dialog.component.mjs +80 -0
- package/esm2022/catalog/components/facet-detail/facet-detail.component.mjs +338 -0
- package/esm2022/catalog/components/facet-list/facet-list-bulk-actions.mjs +148 -0
- package/esm2022/catalog/components/facet-list/facet-list.component.mjs +91 -0
- package/esm2022/catalog/components/generate-product-variants/generate-product-variants.component.mjs +133 -0
- package/esm2022/catalog/components/move-collections-dialog/move-collections-dialog.component.mjs +100 -0
- package/esm2022/catalog/components/option-value-input/option-value-input.component.mjs +156 -0
- package/esm2022/catalog/components/product-detail/product-detail.component.mjs +321 -0
- package/esm2022/catalog/components/product-list/product-list-bulk-actions.mjs +144 -0
- package/esm2022/catalog/components/product-list/product-list.component.mjs +159 -0
- package/esm2022/catalog/components/product-list/product-list.graphql.mjs +37 -0
- package/esm2022/catalog/components/product-options-editor/product-options-editor.component.mjs +207 -0
- package/esm2022/catalog/components/product-variant-detail/product-variant-detail.component.mjs +266 -0
- package/esm2022/catalog/components/product-variant-detail/product-variant-detail.graphql.mjs +129 -0
- package/esm2022/catalog/components/product-variant-list/product-variant-list-bulk-actions.mjs +123 -0
- package/esm2022/catalog/components/product-variant-list/product-variant-list.component.mjs +118 -0
- package/esm2022/catalog/components/product-variant-list/product-variant-list.graphql.mjs +51 -0
- package/esm2022/catalog/components/product-variant-quick-jump/product-variant-quick-jump.component.mjs +53 -0
- package/esm2022/catalog/components/product-variants-editor/product-variants-editor.component.mjs +292 -0
- package/esm2022/catalog/components/product-variants-table/product-variants-table.component.mjs +72 -0
- package/esm2022/catalog/components/update-product-option-dialog/update-product-option-dialog.component.mjs +64 -0
- package/esm2022/catalog/components/variant-price-detail/variant-price-detail.component.mjs +59 -0
- package/esm2022/catalog/components/variant-price-strategy-detail/variant-price-strategy-detail.component.mjs +33 -0
- package/esm2022/catalog/deenruv-admin-ui-catalog.mjs +5 -0
- package/esm2022/catalog/providers/product-detail/product-detail.service.mjs +236 -0
- package/esm2022/catalog/providers/product-detail/replace-last.mjs +18 -0
- package/esm2022/catalog/providers/routing/product-variants-resolver.mjs +28 -0
- package/esm2022/catalog/public_api.mjs +50 -0
- package/esm2022/core/app.component.mjs +94 -0
- package/esm2022/core/app.component.module.mjs +19 -0
- package/esm2022/core/app.config.mjs +11 -0
- package/esm2022/core/common/base-detail.component.mjs +208 -0
- package/esm2022/core/common/base-entity-resolver.mjs +60 -0
- package/esm2022/core/common/base-list.component.mjs +186 -0
- package/esm2022/core/common/component-registry-types.mjs +2 -0
- package/esm2022/core/common/deactivate-aware.mjs +2 -0
- package/esm2022/core/common/detail-breadcrumb.mjs +26 -0
- package/esm2022/core/common/generated-types.mjs +1371 -0
- package/esm2022/core/common/introspection-result-wrapper.mjs +3 -0
- package/esm2022/core/common/introspection-result.mjs +329 -0
- package/esm2022/core/common/single-search-selection-model.mjs +51 -0
- package/esm2022/core/common/title-setter.mjs +14 -0
- package/esm2022/core/common/utilities/bulk-action-utils.mjs +271 -0
- package/esm2022/core/common/utilities/configurable-operation-utils.mjs +116 -0
- package/esm2022/core/common/utilities/create-updated-translatable.mjs +58 -0
- package/esm2022/core/common/utilities/custom-field-default-value.mjs +28 -0
- package/esm2022/core/common/utilities/find-translation.mjs +9 -0
- package/esm2022/core/common/utilities/get-default-ui-language.mjs +12 -0
- package/esm2022/core/common/utilities/interpolate-description.mjs +27 -0
- package/esm2022/core/common/utilities/selection-manager.mjs +96 -0
- package/esm2022/core/common/utilities/string-to-color.mjs +36 -0
- package/esm2022/core/common/version.mjs +3 -0
- package/esm2022/core/components/alerts/alerts.component.mjs +26 -0
- package/esm2022/core/components/app-shell/app-shell.component.mjs +104 -0
- package/esm2022/core/components/base-nav/base-nav.component.mjs +298 -0
- package/esm2022/core/components/breadcrumb/breadcrumb.component.mjs +33 -0
- package/esm2022/core/components/channel-switcher/channel-switcher.component.mjs +50 -0
- package/esm2022/core/components/main-nav/main-nav.component.mjs +62 -0
- package/esm2022/core/components/notification/notification.component.mjs +85 -0
- package/esm2022/core/components/overlay-host/overlay-host.component.mjs +22 -0
- package/esm2022/core/components/settings-nav/settings-nav.component.mjs +27 -0
- package/esm2022/core/components/theme-switcher/theme-switcher.component.mjs +39 -0
- package/esm2022/core/components/ui-language-switcher-dialog/ui-language-switcher-dialog.component.mjs +75 -0
- package/esm2022/core/components/user-menu/user-menu.component.mjs +37 -0
- package/esm2022/core/core.module.mjs +165 -0
- package/esm2022/core/data/check-jobs-link.mjs +32 -0
- package/esm2022/core/data/client-state/client-defaults.mjs +33 -0
- package/esm2022/core/data/client-state/client-resolvers.mjs +136 -0
- package/esm2022/core/data/data.module.mjs +135 -0
- package/esm2022/core/data/definitions/administrator-definitions.mjs +135 -0
- package/esm2022/core/data/definitions/auth-definitions.mjs +40 -0
- package/esm2022/core/data/definitions/client-definitions.mjs +137 -0
- package/esm2022/core/data/definitions/collection-definitions.mjs +184 -0
- package/esm2022/core/data/definitions/customer-definitions.mjs +261 -0
- package/esm2022/core/data/definitions/facet-definitions.mjs +155 -0
- package/esm2022/core/data/definitions/order-definitions.mjs +594 -0
- package/esm2022/core/data/definitions/product-definitions.mjs +828 -0
- package/esm2022/core/data/definitions/promotion-definitions.mjs +76 -0
- package/esm2022/core/data/definitions/settings-definitions.mjs +735 -0
- package/esm2022/core/data/definitions/shared-definitions.mjs +33 -0
- package/esm2022/core/data/definitions/shipping-definitions.mjs +98 -0
- package/esm2022/core/data/omit-typename-link.mjs +20 -0
- package/esm2022/core/data/providers/administrator-data.service.mjs +53 -0
- package/esm2022/core/data/providers/auth-data.service.mjs +20 -0
- package/esm2022/core/data/providers/base-data.service.mjs +66 -0
- package/esm2022/core/data/providers/client-data.service.mjs +82 -0
- package/esm2022/core/data/providers/collection-data.service.mjs +84 -0
- package/esm2022/core/data/providers/customer-data.service.mjs +125 -0
- package/esm2022/core/data/providers/data.service.mjs +90 -0
- package/esm2022/core/data/providers/facet-data.service.mjs +63 -0
- package/esm2022/core/data/providers/fetch-adapter.mjs +34 -0
- package/esm2022/core/data/providers/interceptor.mjs +162 -0
- package/esm2022/core/data/providers/order-data.service.mjs +135 -0
- package/esm2022/core/data/providers/product-data.service.mjs +257 -0
- package/esm2022/core/data/providers/promotion-data.service.mjs +50 -0
- package/esm2022/core/data/providers/settings-data.service.mjs +246 -0
- package/esm2022/core/data/providers/shipping-method-data.service.mjs +58 -0
- package/esm2022/core/data/query-result.mjs +77 -0
- package/esm2022/core/data/server-config.mjs +78 -0
- package/esm2022/core/data/utils/add-custom-fields.mjs +84 -0
- package/esm2022/core/data/utils/get-server-location.mjs +17 -0
- package/esm2022/core/data/utils/is-entity-create-or-update-mutation.mjs +45 -0
- package/esm2022/core/data/utils/remove-readonly-custom-fields.mjs +30 -0
- package/esm2022/core/data/utils/transform-relation-custom-field-inputs.mjs +46 -0
- package/esm2022/core/deenruv-admin-ui-core.mjs +5 -0
- package/esm2022/core/extension/add-action-bar-dropdown-menu-item.mjs +35 -0
- package/esm2022/core/extension/add-action-bar-item.mjs +31 -0
- package/esm2022/core/extension/add-nav-menu-item.mjs +75 -0
- package/esm2022/core/extension/components/angular-route.component.mjs +67 -0
- package/esm2022/core/extension/components/route.component.mjs +80 -0
- package/esm2022/core/extension/providers/page-metadata.service.mjs +20 -0
- package/esm2022/core/extension/register-alert.mjs +22 -0
- package/esm2022/core/extension/register-bulk-action.mjs +59 -0
- package/esm2022/core/extension/register-custom-detail-component.mjs +65 -0
- package/esm2022/core/extension/register-dashboard-widget.mjs +36 -0
- package/esm2022/core/extension/register-data-table-component.mjs +51 -0
- package/esm2022/core/extension/register-form-input-component.mjs +61 -0
- package/esm2022/core/extension/register-history-entry-component.mjs +76 -0
- package/esm2022/core/extension/register-page-tab.mjs +36 -0
- package/esm2022/core/extension/register-route-component.mjs +95 -0
- package/esm2022/core/extension/types.mjs +2 -0
- package/esm2022/core/providers/alerts/alerts.service.mjs +114 -0
- package/esm2022/core/providers/auth/auth.service.mjs +124 -0
- package/esm2022/core/providers/breadcrumb/breadcrumb.service.mjs +109 -0
- package/esm2022/core/providers/bulk-action-registry/bulk-action-registry.service.mjs +28 -0
- package/esm2022/core/providers/bulk-action-registry/bulk-action-types.mjs +2 -0
- package/esm2022/core/providers/channel/channel.service.mjs +39 -0
- package/esm2022/core/providers/component-registry/component-registry.service.mjs +25 -0
- package/esm2022/core/providers/currency/currency.service.mjs +21 -0
- package/esm2022/core/providers/custom-detail-component/custom-detail-component-types.mjs +2 -0
- package/esm2022/core/providers/custom-detail-component/custom-detail-component.service.mjs +27 -0
- package/esm2022/core/providers/custom-field-component/custom-field-component.service.mjs +38 -0
- package/esm2022/core/providers/custom-history-entry-component/history-entry-component-types.mjs +2 -0
- package/esm2022/core/providers/custom-history-entry-component/history-entry-component.service.mjs +22 -0
- package/esm2022/core/providers/dashboard-widget/dashboard-widget-types.mjs +2 -0
- package/esm2022/core/providers/dashboard-widget/dashboard-widget.service.mjs +91 -0
- package/esm2022/core/providers/data-table/data-table-filter-collection.mjs +295 -0
- package/esm2022/core/providers/data-table/data-table-filter.mjs +114 -0
- package/esm2022/core/providers/data-table/data-table-sort-collection.mjs +115 -0
- package/esm2022/core/providers/data-table/data-table-sort.mjs +34 -0
- package/esm2022/core/providers/guard/auth.guard.mjs +38 -0
- package/esm2022/core/providers/health-check/health-check.service.mjs +34 -0
- package/esm2022/core/providers/i18n/custom-http-loader.mjs +39 -0
- package/esm2022/core/providers/i18n/custom-message-format-compiler.mjs +31 -0
- package/esm2022/core/providers/i18n/i18n.service.mjs +78 -0
- package/esm2022/core/providers/job-queue/job-queue.service.mjs +91 -0
- package/esm2022/core/providers/local-storage/local-storage.service.mjs +97 -0
- package/esm2022/core/providers/localization/localization.service.mjs +31 -0
- package/esm2022/core/providers/modal/modal.service.mjs +96 -0
- package/esm2022/core/providers/modal/modal.types.mjs +2 -0
- package/esm2022/core/providers/nav-builder/nav-builder-types.mjs +2 -0
- package/esm2022/core/providers/nav-builder/nav-builder.service.mjs +174 -0
- package/esm2022/core/providers/notification/notification.service.mjs +157 -0
- package/esm2022/core/providers/overlay-host/overlay-host.service.mjs +48 -0
- package/esm2022/core/providers/page/page.service.mjs +63 -0
- package/esm2022/core/providers/permissions/permissions.service.mjs +46 -0
- package/esm2022/core/public_api.mjs +315 -0
- package/esm2022/core/shared/components/action-bar/action-bar.component.mjs +54 -0
- package/esm2022/core/shared/components/action-bar-dropdown-menu/action-bar-dropdown-menu.component.mjs +69 -0
- package/esm2022/core/shared/components/action-bar-items/action-bar-base.component.mjs +72 -0
- package/esm2022/core/shared/components/action-bar-items/action-bar-items.component.mjs +50 -0
- package/esm2022/core/shared/components/address-form/address-form.component.mjs +24 -0
- package/esm2022/core/shared/components/affixed-input/affixed-input.component.mjs +19 -0
- package/esm2022/core/shared/components/affixed-input/percentage-suffix-input.component.mjs +86 -0
- package/esm2022/core/shared/components/asset-file-input/asset-file-input.component.mjs +97 -0
- package/esm2022/core/shared/components/asset-gallery/asset-gallery.component.mjs +96 -0
- package/esm2022/core/shared/components/asset-gallery/asset-gallery.types.mjs +2 -0
- package/esm2022/core/shared/components/asset-picker-dialog/asset-picker-dialog.component.mjs +144 -0
- package/esm2022/core/shared/components/asset-preview/asset-preview.component.mjs +229 -0
- package/esm2022/core/shared/components/asset-preview-dialog/asset-preview-dialog.component.mjs +49 -0
- package/esm2022/core/shared/components/asset-preview-links/asset-preview-links.component.mjs +25 -0
- package/esm2022/core/shared/components/asset-search-input/asset-search-input.component.mjs +102 -0
- package/esm2022/core/shared/components/assets/assets.component.mjs +109 -0
- package/esm2022/core/shared/components/assign-to-channel-dialog/assign-to-channel-dialog.component.mjs +56 -0
- package/esm2022/core/shared/components/bulk-action-menu/bulk-action-menu.component.mjs +100 -0
- package/esm2022/core/shared/components/card/card.component.mjs +32 -0
- package/esm2022/core/shared/components/channel-assignment-control/channel-assignment-control.component.mjs +116 -0
- package/esm2022/core/shared/components/channel-badge/channel-badge.component.mjs +19 -0
- package/esm2022/core/shared/components/chart/chart.component.mjs +100 -0
- package/esm2022/core/shared/components/chart/tooltip-plugin.mjs +143 -0
- package/esm2022/core/shared/components/chip/chip.component.mjs +47 -0
- package/esm2022/core/shared/components/configurable-input/configurable-input.component.mjs +161 -0
- package/esm2022/core/shared/components/currency-code-selector/currency-code-selector.component.mjs +64 -0
- package/esm2022/core/shared/components/currency-input/currency-input.component.mjs +155 -0
- package/esm2022/core/shared/components/custom-detail-component-host/custom-detail-component-host.component.mjs +44 -0
- package/esm2022/core/shared/components/custom-field-control/custom-field-control.component.mjs +88 -0
- package/esm2022/core/shared/components/customer-label/customer-label.component.mjs +17 -0
- package/esm2022/core/shared/components/data-table/data-table-column.component.mjs +29 -0
- package/esm2022/core/shared/components/data-table/data-table.component.mjs +177 -0
- package/esm2022/core/shared/components/data-table-2/data-table-column.component.mjs +64 -0
- package/esm2022/core/shared/components/data-table-2/data-table-custom-component.service.mjs +26 -0
- package/esm2022/core/shared/components/data-table-2/data-table-custom-field-column.component.mjs +52 -0
- package/esm2022/core/shared/components/data-table-2/data-table-search.component.mjs +21 -0
- package/esm2022/core/shared/components/data-table-2/data-table2.component.mjs +308 -0
- package/esm2022/core/shared/components/data-table-column-picker/data-table-column-picker.component.mjs +44 -0
- package/esm2022/core/shared/components/data-table-filter-label/data-table-filter-label.component.mjs +32 -0
- package/esm2022/core/shared/components/data-table-filter-presets/add-filter-preset-button.component.mjs +69 -0
- package/esm2022/core/shared/components/data-table-filter-presets/data-table-filter-presets.component.mjs +80 -0
- package/esm2022/core/shared/components/data-table-filter-presets/filter-preset.service.mjs +79 -0
- package/esm2022/core/shared/components/data-table-filter-presets/rename-filter-preset-dialog.component.mjs +20 -0
- package/esm2022/core/shared/components/data-table-filters/custom-filter-component.directive.mjs +16 -0
- package/esm2022/core/shared/components/data-table-filters/data-table-filters.component.mjs +220 -0
- package/esm2022/core/shared/components/datetime-picker/constants.mjs +20 -0
- package/esm2022/core/shared/components/datetime-picker/datetime-picker.component.mjs +226 -0
- package/esm2022/core/shared/components/datetime-picker/datetime-picker.service.mjs +201 -0
- package/esm2022/core/shared/components/datetime-picker/types.mjs +2 -0
- package/esm2022/core/shared/components/dropdown/dropdown-item.directive.mjs +28 -0
- package/esm2022/core/shared/components/dropdown/dropdown-menu.component.mjs +202 -0
- package/esm2022/core/shared/components/dropdown/dropdown-trigger.directive.mjs +25 -0
- package/esm2022/core/shared/components/dropdown/dropdown.component.mjs +58 -0
- package/esm2022/core/shared/components/duplicate-entity-dialog/duplicate-entity-dialog.component.mjs +111 -0
- package/esm2022/core/shared/components/duplicate-entity-dialog/duplicate-entity-dialog.graphql.mjs +38 -0
- package/esm2022/core/shared/components/edit-note-dialog/edit-note-dialog.component.mjs +32 -0
- package/esm2022/core/shared/components/empty-placeholder/empty-placeholder.component.mjs +16 -0
- package/esm2022/core/shared/components/entity-info/entity-info.component.mjs +26 -0
- package/esm2022/core/shared/components/extension-host/extension-host-config.mjs +7 -0
- package/esm2022/core/shared/components/extension-host/extension-host.component.mjs +81 -0
- package/esm2022/core/shared/components/extension-host/extension-host.service.mjs +99 -0
- package/esm2022/core/shared/components/extension-host/host-external-frame.mjs +41 -0
- package/esm2022/core/shared/components/facet-value-chip/facet-value-chip.component.mjs +26 -0
- package/esm2022/core/shared/components/facet-value-selector/facet-value-selector.component.mjs +150 -0
- package/esm2022/core/shared/components/focal-point-control/focal-point-control.component.mjs +71 -0
- package/esm2022/core/shared/components/form-field/form-field-control.directive.mjs +37 -0
- package/esm2022/core/shared/components/form-field/form-field.component.mjs +73 -0
- package/esm2022/core/shared/components/form-item/form-item.component.mjs +21 -0
- package/esm2022/core/shared/components/formatted-address/formatted-address.component.mjs +38 -0
- package/esm2022/core/shared/components/help-tooltip/help-tooltip.component.mjs +16 -0
- package/esm2022/core/shared/components/history-entry-detail/history-entry-detail.component.mjs +16 -0
- package/esm2022/core/shared/components/items-per-page-controls/items-per-page-controls.component.mjs +28 -0
- package/esm2022/core/shared/components/labeled-data/labeled-data.component.mjs +13 -0
- package/esm2022/core/shared/components/language-code-selector/language-code-selector.component.mjs +72 -0
- package/esm2022/core/shared/components/language-selector/language-selector.component.mjs +30 -0
- package/esm2022/core/shared/components/localized-text/localized-text.component.mjs +24 -0
- package/esm2022/core/shared/components/manage-tags-dialog/manage-tags-dialog.component.mjs +61 -0
- package/esm2022/core/shared/components/modal-dialog/dialog-buttons.directive.mjs +23 -0
- package/esm2022/core/shared/components/modal-dialog/dialog-component-outlet.component.mjs +29 -0
- package/esm2022/core/shared/components/modal-dialog/dialog-title.directive.mjs +23 -0
- package/esm2022/core/shared/components/modal-dialog/modal-dialog.component.mjs +69 -0
- package/esm2022/core/shared/components/object-tree/object-tree.component.mjs +56 -0
- package/esm2022/core/shared/components/order-state-label/order-state-label.component.mjs +47 -0
- package/esm2022/core/shared/components/page/page.component.mjs +38 -0
- package/esm2022/core/shared/components/page-block/page-block.component.mjs +11 -0
- package/esm2022/core/shared/components/page-body/page-body.component.mjs +11 -0
- package/esm2022/core/shared/components/page-detail-layout/page-detail-layout.component.mjs +11 -0
- package/esm2022/core/shared/components/page-detail-layout/page-detail-sidebar.component.mjs +15 -0
- package/esm2022/core/shared/components/page-entity-info/page-entity-info.component.mjs +16 -0
- package/esm2022/core/shared/components/page-header/page-header.component.mjs +11 -0
- package/esm2022/core/shared/components/page-header-description/page-header-description.component.mjs +11 -0
- package/esm2022/core/shared/components/page-header-tabs/page-header-tabs.component.mjs +26 -0
- package/esm2022/core/shared/components/page-title/page-title.component.mjs +40 -0
- package/esm2022/core/shared/components/pagination-controls/pagination-controls.component.mjs +26 -0
- package/esm2022/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.mjs +138 -0
- package/esm2022/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.graphql.mjs +44 -0
- package/esm2022/core/shared/components/product-search-input/product-search-input.component.mjs +104 -0
- package/esm2022/core/shared/components/product-variant-selector/product-variant-selector.component.mjs +62 -0
- package/esm2022/core/shared/components/radio-card/radio-card-fieldset.component.mjs +54 -0
- package/esm2022/core/shared/components/radio-card/radio-card.component.mjs +53 -0
- package/esm2022/core/shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component.mjs +37 -0
- package/esm2022/core/shared/components/rich-text-editor/link-dialog/link-dialog.component.mjs +35 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.mjs +136 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.mjs +44 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/custom-nodes.mjs +97 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/inputrules.mjs +61 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/keymap.mjs +118 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/menu/links.mjs +69 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.mjs +41 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/menu/menu-plugin.mjs +12 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/menu/menu.mjs +247 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/menu/sub-menu-with-icon.mjs +16 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/plugins/image-plugin.mjs +98 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/plugins/link-select-plugin.mjs +22 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/plugins/raw-editor-plugin.mjs +96 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/plugins/tables-plugin.mjs +164 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.mjs +155 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/types.mjs +2 -0
- package/esm2022/core/shared/components/rich-text-editor/prosemirror/utils.mjs +26 -0
- package/esm2022/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.mjs +59 -0
- package/esm2022/core/shared/components/rich-text-editor/rich-text-editor.component.mjs +106 -0
- package/esm2022/core/shared/components/select-toggle/select-toggle.component.mjs +35 -0
- package/esm2022/core/shared/components/simple-dialog/simple-dialog.component.mjs +24 -0
- package/esm2022/core/shared/components/split-view/split-view.component.mjs +62 -0
- package/esm2022/core/shared/components/split-view/split-view.directive.mjs +28 -0
- package/esm2022/core/shared/components/status-badge/status-badge.component.mjs +16 -0
- package/esm2022/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.mjs +70 -0
- package/esm2022/core/shared/components/table-row-action/table-row-action.component.mjs +28 -0
- package/esm2022/core/shared/components/tag-selector/tag-selector.component.mjs +60 -0
- package/esm2022/core/shared/components/timeline-entry/timeline-entry.component.mjs +54 -0
- package/esm2022/core/shared/components/title-input/title-input.component.mjs +21 -0
- package/esm2022/core/shared/components/ui-extension-point/ui-extension-point.component.mjs +142 -0
- package/esm2022/core/shared/components/zone-selector/zone-selector.component.mjs +99 -0
- package/esm2022/core/shared/directives/disabled.directive.mjs +41 -0
- package/esm2022/core/shared/directives/if-default-channel-active.directive.mjs +37 -0
- package/esm2022/core/shared/directives/if-directive-base.mjs +73 -0
- package/esm2022/core/shared/directives/if-multichannel.directive.mjs +43 -0
- package/esm2022/core/shared/directives/if-permissions.directive.mjs +66 -0
- package/esm2022/core/shared/dynamic-form-inputs/boolean-form-input/boolean-form-input.component.mjs +23 -0
- package/esm2022/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.mjs +62 -0
- package/esm2022/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.mjs +59 -0
- package/esm2022/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.mjs +85 -0
- package/esm2022/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.mjs +45 -0
- package/esm2022/core/shared/dynamic-form-inputs/currency-form-input/currency-form-input.component.mjs +32 -0
- package/esm2022/core/shared/dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component.mjs +47 -0
- package/esm2022/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.mjs +32 -0
- package/esm2022/core/shared/dynamic-form-inputs/default-form-inputs.mjs +44 -0
- package/esm2022/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.mjs +271 -0
- package/esm2022/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.mjs +34 -0
- package/esm2022/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.mjs +39 -0
- package/esm2022/core/shared/dynamic-form-inputs/password-form-input/password-form-input.component.mjs +21 -0
- package/esm2022/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.mjs +49 -0
- package/esm2022/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.mjs +66 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.mjs +84 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/customer/relation-customer-input.component.mjs +66 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.mjs +54 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/product/relation-product-input.component.mjs +87 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/product-variant/relation-product-variant-input.component.mjs +87 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/relation-card/relation-card.component.mjs +60 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.mjs +29 -0
- package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/relation-selector-dialog/relation-selector-dialog.component.mjs +14 -0
- package/esm2022/core/shared/dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component.mjs +21 -0
- package/esm2022/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +40 -0
- package/esm2022/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.mjs +28 -0
- package/esm2022/core/shared/dynamic-form-inputs/textarea-form-input/textarea-form-input.component.mjs +24 -0
- package/esm2022/core/shared/pipes/asset-preview.pipe.mjs +42 -0
- package/esm2022/core/shared/pipes/channel-label.pipe.mjs +23 -0
- package/esm2022/core/shared/pipes/custom-field-description.pipe.mjs +30 -0
- package/esm2022/core/shared/pipes/custom-field-label.pipe.mjs +39 -0
- package/esm2022/core/shared/pipes/duration.pipe.mjs +49 -0
- package/esm2022/core/shared/pipes/file-size.pipe.mjs +47 -0
- package/esm2022/core/shared/pipes/has-permission.pipe.mjs +54 -0
- package/esm2022/core/shared/pipes/locale-base.pipe.mjs +55 -0
- package/esm2022/core/shared/pipes/locale-currency-name.pipe.mjs +60 -0
- package/esm2022/core/shared/pipes/locale-currency.pipe.mjs +56 -0
- package/esm2022/core/shared/pipes/locale-date.pipe.mjs +90 -0
- package/esm2022/core/shared/pipes/locale-language-name.pipe.mjs +51 -0
- package/esm2022/core/shared/pipes/locale-region-name.pipe.mjs +51 -0
- package/esm2022/core/shared/pipes/sentence-case.pipe.mjs +30 -0
- package/esm2022/core/shared/pipes/sort.pipe.mjs +34 -0
- package/esm2022/core/shared/pipes/state-i18n-token.pipe.mjs +54 -0
- package/esm2022/core/shared/pipes/string-to-color.pipe.mjs +18 -0
- package/esm2022/core/shared/pipes/time-ago.pipe.mjs +52 -0
- package/esm2022/core/shared/providers/routing/can-deactivate-detail-guard.mjs +33 -0
- package/esm2022/core/shared/shared.module.mjs +707 -0
- package/esm2022/core/validators/unicode-pattern.validator.mjs +8 -0
- package/esm2022/customer/components/add-customer-to-group-dialog/add-customer-to-group-dialog.component.mjs +39 -0
- package/esm2022/customer/components/address-card/address-card.component.mjs +97 -0
- package/esm2022/customer/components/address-detail-dialog/address-detail-dialog.component.mjs +28 -0
- package/esm2022/customer/components/customer-detail/customer-detail.component.mjs +441 -0
- package/esm2022/customer/components/customer-group-detail/customer-group-detail.component.mjs +90 -0
- package/esm2022/customer/components/customer-group-detail-dialog/customer-group-detail-dialog.component.mjs +46 -0
- package/esm2022/customer/components/customer-group-list/customer-group-list-bulk-actions.mjs +9 -0
- package/esm2022/customer/components/customer-group-list/customer-group-list.component.mjs +148 -0
- package/esm2022/customer/components/customer-group-member-list/customer-group-member-list-bulk-actions.mjs +27 -0
- package/esm2022/customer/components/customer-group-member-list/customer-group-member-list.component.mjs +91 -0
- package/esm2022/customer/components/customer-history/customer-history-entry-host.component.mjs +62 -0
- package/esm2022/customer/components/customer-history/customer-history.component.mjs +89 -0
- package/esm2022/customer/components/customer-list/customer-list-bulk-actions.mjs +9 -0
- package/esm2022/customer/components/customer-list/customer-list.component.mjs +108 -0
- package/esm2022/customer/components/customer-status-label/customer-status-label.component.mjs +17 -0
- package/esm2022/customer/components/select-customer-group-dialog/select-customer-group-dialog.component.mjs +31 -0
- package/esm2022/customer/customer.module.mjs +146 -0
- package/esm2022/customer/customer.routes.mjs +50 -0
- package/esm2022/customer/deenruv-admin-ui-customer.mjs +5 -0
- package/esm2022/customer/public_api.mjs +20 -0
- package/esm2022/dashboard/components/dashboard/dashboard.component.mjs +124 -0
- package/esm2022/dashboard/components/dashboard-widget/dashboard-widget.component.mjs +32 -0
- package/esm2022/dashboard/dashboard.module.mjs +34 -0
- package/esm2022/dashboard/dashboard.routes.mjs +9 -0
- package/esm2022/dashboard/deenruv-admin-ui-dashboard.mjs +5 -0
- package/esm2022/dashboard/default-widgets.mjs +31 -0
- package/esm2022/dashboard/public_api.mjs +12 -0
- package/esm2022/dashboard/widgets/latest-orders-widget/latest-orders-widget.component.mjs +73 -0
- package/esm2022/dashboard/widgets/order-chart-widget/order-chart-widget.component.mjs +66 -0
- package/esm2022/dashboard/widgets/order-summary-widget/order-summary-widget.component.mjs +68 -0
- package/esm2022/dashboard/widgets/test-widget/test-widget.component.mjs +22 -0
- package/esm2022/dashboard/widgets/welcome-widget/welcome-widget.component.mjs +39 -0
- package/esm2022/deenruv-admin-ui.mjs +5 -0
- package/esm2022/login/components/login/login.component.mjs +97 -0
- package/esm2022/login/deenruv-admin-ui-login.mjs +5 -0
- package/esm2022/login/login.module.mjs +21 -0
- package/esm2022/login/login.routes.mjs +11 -0
- package/esm2022/login/providers/login.guard.mjs +31 -0
- package/esm2022/login/public_api.mjs +6 -0
- package/esm2022/marketing/components/promotion-detail/promotion-detail.component.mjs +269 -0
- package/esm2022/marketing/components/promotion-list/promotion-list-bulk-actions.mjs +78 -0
- package/esm2022/marketing/components/promotion-list/promotion-list.component.mjs +128 -0
- package/esm2022/marketing/deenruv-admin-ui-marketing.mjs +5 -0
- package/esm2022/marketing/marketing.module.mjs +75 -0
- package/esm2022/marketing/marketing.routes.mjs +32 -0
- package/esm2022/marketing/public_api.mjs +7 -0
- package/esm2022/order/common/get-refundable-payments.mjs +19 -0
- package/esm2022/order/common/modify-order-types.mjs +2 -0
- package/esm2022/order/components/add-manual-payment-dialog/add-manual-payment-dialog.component.mjs +61 -0
- package/esm2022/order/components/cancel-order-dialog/cancel-order-dialog.component.mjs +80 -0
- package/esm2022/order/components/coupon-code-selector/coupon-code-selector.component.mjs +62 -0
- package/esm2022/order/components/draft-order-detail/draft-order-detail.component.mjs +183 -0
- package/esm2022/order/components/draft-order-variant-selector/draft-order-variant-selector.component.mjs +59 -0
- package/esm2022/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +79 -0
- package/esm2022/order/components/fulfillment-card/fulfillment-card.component.mjs +48 -0
- package/esm2022/order/components/fulfillment-detail/fulfillment-detail.component.mjs +50 -0
- package/esm2022/order/components/fulfillment-state-label/fulfillment-state-label.component.mjs +28 -0
- package/esm2022/order/components/line-fulfillment/line-fulfillment.component.mjs +62 -0
- package/esm2022/order/components/line-refunds/line-refunds.component.mjs +28 -0
- package/esm2022/order/components/modification-detail/modification-detail.component.mjs +71 -0
- package/esm2022/order/components/order-custom-fields-card/order-custom-fields-card.component.mjs +64 -0
- package/esm2022/order/components/order-data-table/order-data-table.component.mjs +59 -0
- package/esm2022/order/components/order-data-table/order-total-column.component.mjs +20 -0
- package/esm2022/order/components/order-detail/order-detail.component.mjs +602 -0
- package/esm2022/order/components/order-editor/order-editor.component.mjs +485 -0
- package/esm2022/order/components/order-edits-preview-dialog/order-edits-preview-dialog.component.mjs +93 -0
- package/esm2022/order/components/order-history/order-history-entry-host.component.mjs +62 -0
- package/esm2022/order/components/order-history/order-history.component.mjs +184 -0
- package/esm2022/order/components/order-list/order-list.component.mjs +154 -0
- package/esm2022/order/components/order-modification-summary/order-modification-summary.component.mjs +76 -0
- package/esm2022/order/components/order-payment-card/order-payment-card.component.mjs +43 -0
- package/esm2022/order/components/order-process-graph/constants.mjs +2 -0
- package/esm2022/order/components/order-process-graph/order-process-edge.component.mjs +45 -0
- package/esm2022/order/components/order-process-graph/order-process-graph.component.mjs +96 -0
- package/esm2022/order/components/order-process-graph/order-process-node.component.mjs +53 -0
- package/esm2022/order/components/order-process-graph/types.mjs +2 -0
- package/esm2022/order/components/order-process-graph-dialog/order-process-graph-dialog.component.mjs +21 -0
- package/esm2022/order/components/order-state-select-dialog/order-state-select-dialog.component.mjs +28 -0
- package/esm2022/order/components/order-table/order-table.component.mjs +96 -0
- package/esm2022/order/components/payment-detail/payment-detail.component.mjs +18 -0
- package/esm2022/order/components/payment-for-refund-selector/payment-for-refund-selector.component.mjs +24 -0
- package/esm2022/order/components/payment-state-label/payment-state-label.component.mjs +28 -0
- package/esm2022/order/components/refund-detail/refund-detail.component.mjs +18 -0
- package/esm2022/order/components/refund-order-dialog/refund-order-dialog.component.mjs +173 -0
- package/esm2022/order/components/refund-state-label/refund-state-label.component.mjs +27 -0
- package/esm2022/order/components/select-address-dialog/select-address-dialog.component.mjs +89 -0
- package/esm2022/order/components/select-address-dialog/select-address-dialog.graphql.mjs +14 -0
- package/esm2022/order/components/select-customer-dialog/select-customer-dialog.component.mjs +65 -0
- package/esm2022/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.mjs +30 -0
- package/esm2022/order/components/seller-orders-card/seller-orders-card.component.mjs +39 -0
- package/esm2022/order/components/seller-orders-card/seller-orders-card.graphql.mjs +25 -0
- package/esm2022/order/components/settle-refund-dialog/settle-refund-dialog.component.mjs +24 -0
- package/esm2022/order/components/simple-item-list/simple-item-list.component.mjs +15 -0
- package/esm2022/order/deenruv-admin-ui-order.mjs +5 -0
- package/esm2022/order/order.module.mjs +244 -0
- package/esm2022/order/order.routes.mjs +56 -0
- package/esm2022/order/providers/order-transition.service.mjs +112 -0
- package/esm2022/order/providers/routing/order.guard.mjs +57 -0
- package/esm2022/order/public_api.mjs +53 -0
- package/esm2022/public_api.mjs +5 -0
- package/esm2022/react/components/react-custom-column.component.mjs +25 -0
- package/esm2022/react/components/react-custom-detail.component.mjs +23 -0
- package/esm2022/react/components/react-form-input.component.mjs +24 -0
- package/esm2022/react/components/react-route.component.mjs +26 -0
- package/esm2022/react/deenruv-admin-ui-react.mjs +5 -0
- package/esm2022/react/directives/react-component-host.directive.mjs +54 -0
- package/esm2022/react/public_api.mjs +27 -0
- package/esm2022/react/react-components/ActionBar.mjs +26 -0
- package/esm2022/react/react-components/Card.mjs +28 -0
- package/esm2022/react/react-components/CdsIcon.mjs +30 -0
- package/esm2022/react/react-components/FormField.mjs +28 -0
- package/esm2022/react/react-components/Link.mjs +30 -0
- package/esm2022/react/react-components/PageBlock.mjs +24 -0
- package/esm2022/react/react-components/PageDetailLayout.mjs +26 -0
- package/esm2022/react/react-components/RichTextEditor.mjs +73 -0
- package/esm2022/react/react-hooks/use-detail-component-data.mjs +48 -0
- package/esm2022/react/react-hooks/use-form-control.mjs +66 -0
- package/esm2022/react/react-hooks/use-injector.mjs +33 -0
- package/esm2022/react/react-hooks/use-page-metadata.mjs +41 -0
- package/esm2022/react/react-hooks/use-query.mjs +198 -0
- package/esm2022/react/react-hooks/use-rich-text-editor.mjs +50 -0
- package/esm2022/react/react-hooks/use-route-params.mjs +39 -0
- package/esm2022/react/register-react-custom-detail-component.mjs +33 -0
- package/esm2022/react/register-react-data-table-component.mjs +64 -0
- package/esm2022/react/register-react-form-input-component.mjs +27 -0
- package/esm2022/react/register-react-route-component.mjs +25 -0
- package/esm2022/react/types.mjs +2 -0
- package/esm2022/settings/components/add-country-to-zone-dialog/add-country-to-zone-dialog.component.mjs +57 -0
- package/esm2022/settings/components/admin-detail/admin-detail.component.mjs +205 -0
- package/esm2022/settings/components/administrator-list/administrator-list-bulk-actions.mjs +9 -0
- package/esm2022/settings/components/administrator-list/administrator-list.component.mjs +120 -0
- package/esm2022/settings/components/channel-detail/channel-detail.component.mjs +202 -0
- package/esm2022/settings/components/channel-list/channel-list-bulk-actions.mjs +16 -0
- package/esm2022/settings/components/channel-list/channel-list.component.mjs +81 -0
- package/esm2022/settings/components/country-detail/country-detail.component.mjs +126 -0
- package/esm2022/settings/components/country-list/country-list-bulk-actions.mjs +10 -0
- package/esm2022/settings/components/country-list/country-list.component.mjs +91 -0
- package/esm2022/settings/components/global-settings/global-settings.component.mjs +102 -0
- package/esm2022/settings/components/payment-method-detail/payment-method-detail.component.mjs +206 -0
- package/esm2022/settings/components/payment-method-list/payment-method-list-bulk-actions.mjs +56 -0
- package/esm2022/settings/components/payment-method-list/payment-method-list.component.mjs +99 -0
- package/esm2022/settings/components/permission-grid/permission-grid.component.mjs +81 -0
- package/esm2022/settings/components/profile/profile.component.mjs +96 -0
- package/esm2022/settings/components/role-detail/role-detail.component.mjs +119 -0
- package/esm2022/settings/components/role-list/role-list-bulk-actions.mjs +9 -0
- package/esm2022/settings/components/role-list/role-list.component.mjs +82 -0
- package/esm2022/settings/components/seller-detail/seller-detail.component.mjs +119 -0
- package/esm2022/settings/components/seller-list/seller-list-bulk-actions.mjs +9 -0
- package/esm2022/settings/components/seller-list/seller-list.component.mjs +75 -0
- package/esm2022/settings/components/shipping-eligibility-test-result/shipping-eligibility-test-result.component.mjs +30 -0
- package/esm2022/settings/components/shipping-method-detail/shipping-method-detail.component.mjs +256 -0
- package/esm2022/settings/components/shipping-method-list/shipping-method-list-bulk-actions.mjs +54 -0
- package/esm2022/settings/components/shipping-method-list/shipping-method-list.component.mjs +99 -0
- package/esm2022/settings/components/shipping-method-test-result/shipping-method-test-result.component.mjs +30 -0
- package/esm2022/settings/components/stock-location-detail/stock-location-detail.component.mjs +137 -0
- package/esm2022/settings/components/stock-location-list/stock-location-list-bulk-actions.mjs +68 -0
- package/esm2022/settings/components/stock-location-list/stock-location-list.component.mjs +87 -0
- package/esm2022/settings/components/tax-category-detail/tax-category-detail.component.mjs +114 -0
- package/esm2022/settings/components/tax-category-list/tax-category-list-bulk-actions.mjs +10 -0
- package/esm2022/settings/components/tax-category-list/tax-category-list.component.mjs +69 -0
- package/esm2022/settings/components/tax-rate-detail/tax-rate-detail.component.mjs +137 -0
- package/esm2022/settings/components/tax-rate-list/tax-rate-list-bulk-actions.mjs +10 -0
- package/esm2022/settings/components/tax-rate-list/tax-rate-list.component.mjs +83 -0
- package/esm2022/settings/components/test-address-form/test-address-form.component.mjs +48 -0
- package/esm2022/settings/components/test-order-builder/test-order-builder.component.mjs +71 -0
- package/esm2022/settings/components/test-shipping-methods/test-shipping-methods.component.mjs +52 -0
- package/esm2022/settings/components/zone-detail/zone-detail.component.mjs +117 -0
- package/esm2022/settings/components/zone-list/zone-list-bulk-actions.mjs +10 -0
- package/esm2022/settings/components/zone-list/zone-list.component.mjs +143 -0
- package/esm2022/settings/components/zone-member-list/zone-member-controls.directive.mjs +16 -0
- package/esm2022/settings/components/zone-member-list/zone-member-list-bulk-actions.mjs +26 -0
- package/esm2022/settings/components/zone-member-list/zone-member-list-header.directive.mjs +16 -0
- package/esm2022/settings/components/zone-member-list/zone-member-list.component.mjs +95 -0
- package/esm2022/settings/deenruv-admin-ui-settings.mjs +5 -0
- package/esm2022/settings/providers/routing/profile-resolver.mjs +30 -0
- package/esm2022/settings/public_api.mjs +51 -0
- package/esm2022/settings/settings.module.mjs +467 -0
- package/esm2022/settings/settings.routes.mjs +232 -0
- package/esm2022/system/components/health-check/health-check.component.mjs +18 -0
- package/esm2022/system/components/job-list/job-list.component.mjs +72 -0
- package/esm2022/system/components/job-state-label/job-state-label.component.mjs +46 -0
- package/esm2022/system/deenruv-admin-ui-system.mjs +5 -0
- package/esm2022/system/public_api.mjs +7 -0
- package/esm2022/system/system.module.mjs +22 -0
- package/esm2022/system/system.routes.mjs +20 -0
- package/fesm2022/deenruv-admin-ui-catalog.mjs +5171 -0
- package/fesm2022/deenruv-admin-ui-catalog.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-core.mjs +22758 -0
- package/fesm2022/deenruv-admin-ui-core.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-customer.mjs +1400 -0
- package/fesm2022/deenruv-admin-ui-customer.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-dashboard.mjs +454 -0
- package/fesm2022/deenruv-admin-ui-dashboard.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-login.mjs +157 -0
- package/fesm2022/deenruv-admin-ui-login.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-marketing.mjs +566 -0
- package/fesm2022/deenruv-admin-ui-marketing.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-order.mjs +3664 -0
- package/fesm2022/deenruv-admin-ui-order.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-react.mjs +999 -0
- package/fesm2022/deenruv-admin-ui-react.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-settings.mjs +4067 -0
- package/fesm2022/deenruv-admin-ui-settings.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui-system.mjs +164 -0
- package/fesm2022/deenruv-admin-ui-system.mjs.map +1 -0
- package/fesm2022/deenruv-admin-ui.mjs +11 -0
- package/fesm2022/deenruv-admin-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/login/components/login/login.component.d.ts +37 -0
- package/login/index.d.ts +5 -0
- package/login/login.module.d.ts +9 -0
- package/login/login.routes.d.ts +2 -0
- package/login/providers/login.guard.d.ts +15 -0
- package/login/public_api.d.ts +4 -0
- package/marketing/components/promotion-detail/promotion-detail.component.d.ts +70 -0
- package/marketing/components/promotion-list/promotion-list-bulk-actions.d.ts +6 -0
- package/marketing/components/promotion-list/promotion-list.component.d.ts +13 -0
- package/marketing/index.d.ts +5 -0
- package/marketing/marketing.module.d.ts +14 -0
- package/marketing/marketing.routes.d.ts +4 -0
- package/marketing/public_api.d.ts +5 -0
- package/order/common/get-refundable-payments.d.ts +9 -0
- package/order/common/modify-order-types.d.ts +29 -0
- package/order/components/add-manual-payment-dialog/add-manual-payment-dialog.component.d.ts +19 -0
- package/order/components/cancel-order-dialog/cancel-order-dialog.component.d.ts +24 -0
- package/order/components/coupon-code-selector/coupon-code-selector.component.d.ts +22 -0
- package/order/components/draft-order-detail/draft-order-detail.component.d.ts +51 -0
- package/order/components/draft-order-variant-selector/draft-order-variant-selector.component.d.ts +24 -0
- package/order/components/fulfill-order-dialog/fulfill-order-dialog.component.d.ts +28 -0
- package/order/components/fulfillment-card/fulfillment-card.component.d.ts +12 -0
- package/order/components/fulfillment-detail/fulfillment-detail.component.d.ts +23 -0
- package/order/components/fulfillment-state-label/fulfillment-state-label.component.d.ts +7 -0
- package/order/components/line-fulfillment/line-fulfillment.component.d.ts +26 -0
- package/order/components/line-refunds/line-refunds.component.d.ts +9 -0
- package/order/components/modification-detail/modification-detail.component.d.ts +34 -0
- package/order/components/order-custom-fields-card/order-custom-fields-card.component.d.ts +21 -0
- package/order/components/order-data-table/order-data-table.component.d.ts +15 -0
- package/order/components/order-data-table/order-total-column.component.d.ts +7 -0
- package/order/components/order-detail/order-detail.component.d.ts +68 -0
- package/order/components/order-editor/order-editor.component.d.ts +99 -0
- package/order/components/order-edits-preview-dialog/order-edits-preview-dialog.component.d.ts +51 -0
- package/order/components/order-history/order-history-entry-host.component.d.ts +18 -0
- package/order/components/order-history/order-history.component.d.ts +92 -0
- package/order/components/order-list/order-list.component.d.ts +21 -0
- package/order/components/order-modification-summary/order-modification-summary.component.d.ts +19 -0
- package/order/components/order-payment-card/order-payment-card.component.d.ts +67 -0
- package/order/components/order-process-graph/constants.d.ts +1 -0
- package/order/components/order-process-graph/order-process-edge.component.d.ts +21 -0
- package/order/components/order-process-graph/order-process-graph.component.d.ts +32 -0
- package/order/components/order-process-graph/order-process-node.component.d.ts +26 -0
- package/order/components/order-process-graph/types.d.ts +4 -0
- package/order/components/order-process-graph-dialog/order-process-graph-dialog.component.d.ts +13 -0
- package/order/components/order-state-select-dialog/order-state-select-dialog.component.d.ts +13 -0
- package/order/components/order-table/order-table.component.d.ts +43 -0
- package/order/components/payment-detail/payment-detail.component.d.ts +8 -0
- package/order/components/payment-for-refund-selector/payment-for-refund-selector.component.d.ts +14 -0
- package/order/components/payment-state-label/payment-state-label.component.d.ts +7 -0
- package/order/components/refund-detail/refund-detail.component.d.ts +8 -0
- package/order/components/refund-order-dialog/refund-order-dialog.component.d.ts +46 -0
- package/order/components/refund-state-label/refund-state-label.component.d.ts +7 -0
- package/order/components/select-address-dialog/select-address-dialog.component.d.ts +27 -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 +32 -0
- package/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.d.ts +18 -0
- package/order/components/seller-orders-card/seller-orders-card.component.d.ts +24 -0
- package/order/components/seller-orders-card/seller-orders-card.graphql.d.ts +1 -0
- package/order/components/settle-refund-dialog/settle-refund-dialog.component.d.ts +11 -0
- package/order/components/simple-item-list/simple-item-list.component.d.ts +9 -0
- package/order/index.d.ts +5 -0
- package/order/order.module.d.ts +52 -0
- package/order/order.routes.d.ts +3 -0
- package/order/providers/order-transition.service.d.ts +32 -0
- package/order/providers/routing/order.guard.d.ts +13 -0
- package/order/public_api.d.ts +51 -0
- package/package.json +133 -0
- package/public_api.d.ts +4 -0
- package/react/components/react-custom-column.component.d.ts +17 -0
- package/react/components/react-custom-detail.component.d.ts +24 -0
- package/react/components/react-form-input.component.d.ts +20 -0
- package/react/components/react-route.component.d.ts +10 -0
- package/react/directives/react-component-host.directive.d.ts +23 -0
- package/react/index.d.ts +5 -0
- package/react/public_api.d.ts +25 -0
- package/react/react-components/ActionBar.d.ts +23 -0
- package/react/react-components/Card.d.ts +24 -0
- package/react/react-components/CdsIcon.d.ts +45 -0
- package/react/react-components/FormField.d.ts +27 -0
- package/react/react-components/Link.d.ts +22 -0
- package/react/react-components/PageBlock.d.ts +21 -0
- package/react/react-components/PageDetailLayout.d.ts +23 -0
- package/react/react-components/RichTextEditor.d.ts +62 -0
- package/react/react-hooks/use-detail-component-data.d.ts +32 -0
- package/react/react-hooks/use-form-control.d.ts +29 -0
- package/react/react-hooks/use-injector.d.ts +24 -0
- package/react/react-hooks/use-page-metadata.d.ts +30 -0
- package/react/react-hooks/use-query.d.ts +163 -0
- package/react/react-hooks/use-rich-text-editor.d.ts +37 -0
- package/react/react-hooks/use-route-params.d.ts +22 -0
- package/react/register-react-custom-detail-component.d.ts +38 -0
- package/react/register-react-data-table-component.d.ts +83 -0
- package/react/register-react-form-input-component.d.ts +9 -0
- package/react/register-react-route-component.d.ts +32 -0
- package/react/types.d.ts +17 -0
- package/settings/components/add-country-to-zone-dialog/add-country-to-zone-dialog.component.d.ts +20 -0
- package/settings/components/admin-detail/admin-detail.component.d.ts +64 -0
- package/settings/components/administrator-list/administrator-list-bulk-actions.d.ts +1 -0
- package/settings/components/administrator-list/administrator-list.component.d.ts +29 -0
- package/settings/components/channel-detail/channel-detail.component.d.ts +46 -0
- package/settings/components/channel-list/channel-list-bulk-actions.d.ts +1 -0
- package/settings/components/channel-list/channel-list.component.d.ts +13 -0
- package/settings/components/country-detail/country-detail.component.d.ts +29 -0
- package/settings/components/country-list/country-list-bulk-actions.d.ts +1 -0
- package/settings/components/country-list/country-list.component.d.ts +11 -0
- package/settings/components/global-settings/global-settings.component.d.ts +29 -0
- package/settings/components/payment-method-detail/payment-method-detail.component.d.ts +64 -0
- package/settings/components/payment-method-list/payment-method-list-bulk-actions.d.ts +3 -0
- package/settings/components/payment-method-list/payment-method-list.component.d.ts +11 -0
- package/settings/components/permission-grid/permission-grid.component.d.ts +28 -0
- package/settings/components/profile/profile.component.d.ts +28 -0
- package/settings/components/role-detail/role-detail.component.d.ts +31 -0
- package/settings/components/role-list/role-list-bulk-actions.d.ts +1 -0
- package/settings/components/role-list/role-list.component.d.ts +17 -0
- package/settings/components/seller-detail/seller-detail.component.d.ts +31 -0
- package/settings/components/seller-list/seller-list-bulk-actions.d.ts +1 -0
- package/settings/components/seller-list/seller-list.component.d.ts +11 -0
- package/settings/components/shipping-eligibility-test-result/shipping-eligibility-test-result.component.d.ts +12 -0
- package/settings/components/shipping-method-detail/shipping-method-detail.component.d.ts +76 -0
- package/settings/components/shipping-method-list/shipping-method-list-bulk-actions.d.ts +3 -0
- package/settings/components/shipping-method-list/shipping-method-list.component.d.ts +12 -0
- package/settings/components/shipping-method-test-result/shipping-method-test-result.component.d.ts +12 -0
- package/settings/components/stock-location-detail/stock-location-detail.component.d.ts +32 -0
- package/settings/components/stock-location-list/stock-location-list-bulk-actions.d.ts +3 -0
- package/settings/components/stock-location-list/stock-location-list.component.d.ts +12 -0
- package/settings/components/tax-category-detail/tax-category-detail.component.d.ts +32 -0
- package/settings/components/tax-category-list/tax-category-list-bulk-actions.d.ts +1 -0
- package/settings/components/tax-category-list/tax-category-list.component.d.ts +11 -0
- package/settings/components/tax-rate-detail/tax-rate-detail.component.d.ts +39 -0
- package/settings/components/tax-rate-list/tax-rate-list-bulk-actions.d.ts +1 -0
- package/settings/components/tax-rate-list/tax-rate-list.component.d.ts +11 -0
- package/settings/components/test-address-form/test-address-form.component.d.ts +25 -0
- package/settings/components/test-order-builder/test-order-builder.component.d.ts +31 -0
- package/settings/components/test-shipping-methods/test-shipping-methods.component.d.ts +23 -0
- package/settings/components/zone-detail/zone-detail.component.d.ts +31 -0
- package/settings/components/zone-list/zone-list-bulk-actions.d.ts +1 -0
- package/settings/components/zone-list/zone-list.component.d.ts +26 -0
- package/settings/components/zone-member-list/zone-member-controls.directive.d.ts +8 -0
- package/settings/components/zone-member-list/zone-member-list-bulk-actions.d.ts +3 -0
- package/settings/components/zone-member-list/zone-member-list-header.directive.d.ts +8 -0
- package/settings/components/zone-member-list/zone-member-list.component.d.ts +40 -0
- package/settings/index.d.ts +5 -0
- package/settings/providers/routing/profile-resolver.d.ts +8 -0
- package/settings/public_api.d.ts +49 -0
- package/settings/settings.module.d.ts +45 -0
- package/settings/settings.routes.d.ts +3 -0
- package/static/assets/.gitkeep +0 -0
- package/static/assets/logo-login.webp +0 -0
- package/static/assets/logo-top.webp +0 -0
- package/static/deenruv-ui-config.json +290 -0
- package/static/favicon.ico +0 -0
- package/static/fonts/fonts.scss +253 -0
- package/static/fonts/inter-cyrillic-ext.woff2 +0 -0
- package/static/fonts/inter-cyrillic.woff2 +0 -0
- package/static/fonts/inter-greek-ext.woff2 +0 -0
- package/static/fonts/inter-greek.woff2 +0 -0
- package/static/fonts/inter-latin-ext.woff2 +0 -0
- package/static/fonts/inter-latin.woff2 +0 -0
- package/static/fonts/inter-vietnamese.woff2 +0 -0
- package/static/i18n-messages/ar.json +814 -0
- package/static/i18n-messages/cs.json +814 -0
- package/static/i18n-messages/de.json +814 -0
- package/static/i18n-messages/en.json +814 -0
- package/static/i18n-messages/es.json +814 -0
- package/static/i18n-messages/fa.json +814 -0
- package/static/i18n-messages/fr.json +814 -0
- package/static/i18n-messages/he.json +814 -0
- package/static/i18n-messages/hr.json +814 -0
- package/static/i18n-messages/it.json +814 -0
- package/static/i18n-messages/nb.json +812 -0
- package/static/i18n-messages/ne.json +814 -0
- package/static/i18n-messages/pl.json +814 -0
- package/static/i18n-messages/pt_BR.json +814 -0
- package/static/i18n-messages/pt_PT.json +814 -0
- package/static/i18n-messages/ru.json +814 -0
- package/static/i18n-messages/sv.json +807 -0
- package/static/i18n-messages/uk.json +814 -0
- package/static/i18n-messages/zh_Hans.json +814 -0
- package/static/i18n-messages/zh_Hant.json +814 -0
- package/static/index.html +14 -0
- package/static/polyfills.ts +66 -0
- package/static/styles/_mixins.scss +60 -0
- package/static/styles/_variables.scss +11 -0
- package/static/styles/component/prosemirror.scss +511 -0
- package/static/styles/global/_buttons.scss +147 -0
- package/static/styles/global/_clarity.scss +140 -0
- package/static/styles/global/_forms.scss +187 -0
- package/static/styles/global/_global.scss +41 -0
- package/static/styles/global/_overrides.scss +165 -0
- package/static/styles/global/_sass-overrides.scss +8 -0
- package/static/styles/global/_utilities.scss +155 -0
- package/static/styles/rtl.scss +143 -0
- package/static/styles/styles.scss +19 -0
- package/static/styles/theme/dark.scss +591 -0
- package/static/styles/theme/default.scss +254 -0
- package/static/styles/ui-extension-theme.scss +13 -0
- package/static/theme.min.css +1 -0
- package/system/components/health-check/health-check.component.d.ts +8 -0
- package/system/components/job-list/job-list.component.d.ts +19 -0
- package/system/components/job-state-label/job-state-label.component.d.ts +9 -0
- package/system/index.d.ts +5 -0
- package/system/public_api.d.ts +5 -0
- package/system/system.module.d.ts +11 -0
- package/system/system.routes.d.ts +2 -0
|
@@ -0,0 +1,814 @@
|
|
|
1
|
+
{
|
|
2
|
+
"admin": {
|
|
3
|
+
"create-new-administrator": "Crea nuovo amministratore"
|
|
4
|
+
},
|
|
5
|
+
"asset": {
|
|
6
|
+
"add-asset": "Aggiungi immagine",
|
|
7
|
+
"add-asset-with-count": "Aggiungi {count, plural, =0 {media} one {1 media} other {{count} media}}",
|
|
8
|
+
"assets-selected-count": "{ count } media selezionati",
|
|
9
|
+
"dimensions": "Dimensioni",
|
|
10
|
+
"focal-point": "Punto focale",
|
|
11
|
+
"notify-create-assets-success": "Creati {count, plural, one {nuovo media} other {{count} nuovi media}}",
|
|
12
|
+
"original-asset-size": "Dimensione originale",
|
|
13
|
+
"preview": "Anteprima",
|
|
14
|
+
"remove-asset": "Rimuovi media",
|
|
15
|
+
"select-asset": "Seleziona media",
|
|
16
|
+
"select-assets": "Seleziona media",
|
|
17
|
+
"set-as-featured-asset": "Imposta come media in evidenza",
|
|
18
|
+
"set-focal-point": "Imposta punto focale",
|
|
19
|
+
"source-file": "File sorgente",
|
|
20
|
+
"unset-focal-point": "Deseleziona",
|
|
21
|
+
"update-focal-point": "Aggiorna punto",
|
|
22
|
+
"update-focal-point-error": "Impossibile aggiornare il punto focale",
|
|
23
|
+
"update-focal-point-success": "Punto focale aggiornato",
|
|
24
|
+
"upload-assets": "Carica media",
|
|
25
|
+
"uploading": "Caricamento..."
|
|
26
|
+
},
|
|
27
|
+
"breadcrumb": {
|
|
28
|
+
"administrators": "Amministratori",
|
|
29
|
+
"assets": "Media",
|
|
30
|
+
"channels": "Canali",
|
|
31
|
+
"collections": "Collezioni",
|
|
32
|
+
"countries": "Nazioni",
|
|
33
|
+
"customer-groups": "Gruppi di Clienti",
|
|
34
|
+
"customers": "Clienti",
|
|
35
|
+
"dashboard": "Pannello",
|
|
36
|
+
"facets": "Attributi",
|
|
37
|
+
"global-settings": "Impostazioni Globali",
|
|
38
|
+
"job-queue": "Coda operazioni",
|
|
39
|
+
"manage-variants": "Gestione varianti",
|
|
40
|
+
"modifying-order": "Modifica ordine",
|
|
41
|
+
"orders": "Ordini",
|
|
42
|
+
"payment-methods": "Metodi di pagamento",
|
|
43
|
+
"product-options": "Opzioni prodotto",
|
|
44
|
+
"products": "Prodotti",
|
|
45
|
+
"profile": "Profilo",
|
|
46
|
+
"promotions": "Promozioni",
|
|
47
|
+
"roles": "Ruoli",
|
|
48
|
+
"seller-orders": "Ordini venditori",
|
|
49
|
+
"sellers": "Venditori",
|
|
50
|
+
"shipping-methods": "Metodi di spedizione",
|
|
51
|
+
"stock-locations": "Posizioni scorte",
|
|
52
|
+
"system-status": "Stato del sistema",
|
|
53
|
+
"tax-categories": "Impostazioni Tasse",
|
|
54
|
+
"tax-rates": "Importo Tasse",
|
|
55
|
+
"zones": "Zone"
|
|
56
|
+
},
|
|
57
|
+
"catalog": {
|
|
58
|
+
"add-facet-value": "Aggiungi valore attributo",
|
|
59
|
+
"add-facets": "Aggiungi attributi",
|
|
60
|
+
"add-option": "Aggiungi opzione",
|
|
61
|
+
"add-price-in-another-currency": "Aggiungi un prezzo in un'altra valuta",
|
|
62
|
+
"add-stock-location": "Aggiungi posizione scorte",
|
|
63
|
+
"add-stock-to-location": "ggiungi merce alla posizione",
|
|
64
|
+
"asset": "Media",
|
|
65
|
+
"asset-preview-links": "Media preview link",
|
|
66
|
+
"assets": "Media",
|
|
67
|
+
"assign-product-to-channel-success": "Prodotto assegnato correttamente a \"{ channel }\"",
|
|
68
|
+
"assign-products-to-channel": "Assegna prodotto al canale",
|
|
69
|
+
"assign-to-named-channel": "Assegna al canale { channelCode }",
|
|
70
|
+
"assign-variant-to-channel-success": "Variante assegnata con successo a \"{ channel }\"",
|
|
71
|
+
"assign-variants-to-channel": "Assegna varianti al canale",
|
|
72
|
+
"auto-update-option-variant-name": "Aggiorna automaticamente i nomi delle Varianti utilizzando questa opzione",
|
|
73
|
+
"auto-update-product-variant-name": "Aggiorna automaticamente i nomi delle Varianti",
|
|
74
|
+
"calculated-price": "Prezzo calcolato",
|
|
75
|
+
"calculated-price-tooltip": "È configurato un calcolo del prezzo personalizzato che modifica il prezzo impostato sopra:",
|
|
76
|
+
"cannot-create-variants-without-options": "Le varianti di prodotto possono essere create solo se è stato definito un gruppo di opzioni con almeno due opzioni di prodotto.",
|
|
77
|
+
"channel-price-preview": "Anteprima prezzo canale",
|
|
78
|
+
"collection": "Collezione",
|
|
79
|
+
"collection-contents": "Contenuti della Collezione",
|
|
80
|
+
"collections": "Collezioni",
|
|
81
|
+
"confirm-bulk-delete-products": "Cancellare {count} prodotti?",
|
|
82
|
+
"confirm-cancel": "Conferma cancellazione",
|
|
83
|
+
"confirm-delete-assets": "Eliminare {count} {count, plural, one {media} other {media}}?",
|
|
84
|
+
"confirm-delete-facet-value": "Eliminare il valore attributo?",
|
|
85
|
+
"confirm-delete-product": "Eliminare il prodotto?",
|
|
86
|
+
"confirm-delete-product-option": "Cancellare l'opzione di prodotto \"{name}\"?",
|
|
87
|
+
"confirm-delete-product-option-group": "Cancellare il gruppo di opzioni di prodotto \"{name}\"",
|
|
88
|
+
"confirm-delete-product-option-group-body": "Questo gruppo di opzioni è utilizzato da {count} {count, plural, one {variant} other {variants}}. Sei sicuro di volerlo eliminare?",
|
|
89
|
+
"confirm-delete-product-variant": "Eliminare la variante?",
|
|
90
|
+
"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.",
|
|
91
|
+
"confirm-deletion-of-unused-variants-title": "Cancellare le varianti obsolete?",
|
|
92
|
+
"create-draft-order": "Crea bozza ordine",
|
|
93
|
+
"create-facet-value": "Crea nuovo valore attributo",
|
|
94
|
+
"create-new-collection": "Crea nuova Collezione",
|
|
95
|
+
"create-new-facet": "Crea nuovo attributo",
|
|
96
|
+
"create-new-product": "Crea nuovo prodotto",
|
|
97
|
+
"create-new-stock-location": "Creare una nuova posizione delle scorte ",
|
|
98
|
+
"create-product-option-group": "Crea gruppo di opzione del prodotto",
|
|
99
|
+
"create-product-variant": "Crea variante prodotto",
|
|
100
|
+
"default-currency": "Valuta predefinita",
|
|
101
|
+
"do-not-inherit-filters": "Non ereditare i filtri",
|
|
102
|
+
"drop-files-to-upload": "Trascina file da caricare",
|
|
103
|
+
"duplicate-collections": "Duplica collezioni",
|
|
104
|
+
"duplicate-facets": "Duplica caratteristiche",
|
|
105
|
+
"duplicate-products": "Duplica prodotti",
|
|
106
|
+
"edit-facet-values": "Modifica il valore degli attributi",
|
|
107
|
+
"edit-options": "Modifica opzioni",
|
|
108
|
+
"facet": "Attributo",
|
|
109
|
+
"facet-value-not-available": "Valore attributo \"{ id }\" non disponibile",
|
|
110
|
+
"facet-values": "Valori attributo",
|
|
111
|
+
"facets": "Attributi",
|
|
112
|
+
"filter-by-name": "Filtra per nome",
|
|
113
|
+
"filter-inheritance": "Ereditarietà filtri",
|
|
114
|
+
"filters": "Filtri",
|
|
115
|
+
"inherit-filters-from-parent": "Eredita filtri dal padre",
|
|
116
|
+
"live-preview-contents": "Anteprima Contenuti",
|
|
117
|
+
"manage-variants": "Gestione varianti",
|
|
118
|
+
"move-collection-to": "Sposta su { name }",
|
|
119
|
+
"move-collections": "Sposta collezioni",
|
|
120
|
+
"move-collections-success": "Spostate {count, plural, one {1 collezione} other {{count} collezioni}}",
|
|
121
|
+
"move-down": "Sposta in basso",
|
|
122
|
+
"move-to": "Sposta in",
|
|
123
|
+
"move-up": "Sposta in alto",
|
|
124
|
+
"name": "Nome",
|
|
125
|
+
"no-channel-selected": "Nessun canale selezionato",
|
|
126
|
+
"no-featured-asset": "Nessun media in evidenza",
|
|
127
|
+
"no-selection": "Nessuna selezione",
|
|
128
|
+
"no-stock-locations-available-on-current-channel": "Non sono disponibili posizioni delle scorte nel canale corrente. Impostare almeno una posizione delle scorte prima di aggiungere prodotti.",
|
|
129
|
+
"notify-bulk-delete-products-success": "Rimossi con successo {count, plural, one {1 prodotto} other {{count} prodotti}}",
|
|
130
|
+
"notify-remove-facets-from-channel-success": "Rimossi con successo {count, plural, one {1 attributo} other {{count} attributi}} da { channelCode }",
|
|
131
|
+
"notify-remove-product-from-channel-error": "Impossibile rimuovere il prodotto dal canale",
|
|
132
|
+
"notify-remove-product-from-channel-success": "Prodotto rimosso dal canale",
|
|
133
|
+
"notify-remove-variant-from-channel-error": "Impossibile rimuovere la variante dal canale",
|
|
134
|
+
"notify-remove-variant-from-channel-success": "Variante rimossa dal canale",
|
|
135
|
+
"number-of-variants": "Numero di varianti",
|
|
136
|
+
"option": "Opzione",
|
|
137
|
+
"option-name": "Nome opzione",
|
|
138
|
+
"option-values": "Valori opzione",
|
|
139
|
+
"out-of-stock-threshold": "Soglia prodotto esaurito",
|
|
140
|
+
"out-of-stock-threshold-tooltip": "Imposta la soglia di scorte alla quale il prodotto è considerato non disponibile alla vendita. Utilizzando un valore negativo si abilitano gli ordini anche fuori scorta.",
|
|
141
|
+
"page-description-options-editor": "Modificare i nomi e i codici delle opzioni per questo prodotto. Per aggiungere o rimuovere opzioni, utilizzare il pulsante \"Gestione varianti\" sotto l'elenco delle varianti del prodotto.",
|
|
142
|
+
"price": "Prezzo",
|
|
143
|
+
"price-and-tax": "Prezzo e tasse",
|
|
144
|
+
"price-conversion-factor": "Fattore di conversione del prezzo",
|
|
145
|
+
"price-in-channel": "Prezzo in { channel }",
|
|
146
|
+
"price-includes-tax-at": "Include tasse al { rate }%",
|
|
147
|
+
"price-with-tax-in-default-zone": "Inc. { rate }% di tasse: { price }",
|
|
148
|
+
"private": "Privato",
|
|
149
|
+
"product": "Prodotto",
|
|
150
|
+
"product-name": "Nome del Prodotto",
|
|
151
|
+
"product-options": "Opzioni prodotto",
|
|
152
|
+
"product-variant-exists": "Esiste già una variante del prodotto con queste opzioni",
|
|
153
|
+
"product-variants": "Varianti del Prodotto",
|
|
154
|
+
"products": "Prodotti",
|
|
155
|
+
"public": "Pubblico",
|
|
156
|
+
"quick-jump-placeholder": "Salto rapido alla variante",
|
|
157
|
+
"rebuild-search-index": "Ricostruisci indice di ricerca",
|
|
158
|
+
"reindex-error": "Si è verificato un errore nella ricostruzione dell'indice di ricerca",
|
|
159
|
+
"reindex-successful": "{count, plural, one {Indicizzata una variante prodotto} other {Indicizzate {count} varianti prodotto}} in {time}ms",
|
|
160
|
+
"reindexing": "Ricostruzione indice",
|
|
161
|
+
"remove-from-channel": "Rimuovi dal canale",
|
|
162
|
+
"remove-option": "Rimuovi opzione",
|
|
163
|
+
"remove-product-from-channel": "Rimuovi prodotto dal canale",
|
|
164
|
+
"remove-product-variant-from-channel": "Rimuovi variante dal canale",
|
|
165
|
+
"reorder-collection": "Riordina collezione",
|
|
166
|
+
"root-collection": "Collezione base",
|
|
167
|
+
"run-pending-search-index-updates": "Indice di ricerca: eseguire {count, plural, one {1 aggiornamento in attesa} other {{count} aggiornamenti in attesa}}",
|
|
168
|
+
"running-search-index-updates": "Esecuzione {count, plural, one {1 aggiornamento} other {{count} aggiornamenti}} all'indice di ricerca",
|
|
169
|
+
"search-asset-name-or-tag": "Cerca per nome o tag del media",
|
|
170
|
+
"search-for-term": "Ricerca termine",
|
|
171
|
+
"search-product-name-or-code": "Ricerca per nome o codice prodotto",
|
|
172
|
+
"select-product": "Seleziona prodotto",
|
|
173
|
+
"select-product-variant": "Seleziona variante",
|
|
174
|
+
"sku": "SKU",
|
|
175
|
+
"slug": "Slug",
|
|
176
|
+
"slug-pattern-error": "Lo slug non è valido",
|
|
177
|
+
"stock-allocated": "Allocato",
|
|
178
|
+
"stock-levels": "Livello delle scorte",
|
|
179
|
+
"stock-location": "Posizione delle scorte",
|
|
180
|
+
"stock-locations": "Posizioni delle scorte",
|
|
181
|
+
"stock-on-hand": "Scorte",
|
|
182
|
+
"tax-category": "Categoria Tassa",
|
|
183
|
+
"taxes": "Tasse",
|
|
184
|
+
"track-inventory": "Traccia inventario",
|
|
185
|
+
"track-inventory-false": "Non gestire",
|
|
186
|
+
"track-inventory-inherit": "Usa impostazioni generali",
|
|
187
|
+
"track-inventory-tooltip": "Quando viene tracciato, l'inventario della variante viene aggiornato a fronte di una vendita",
|
|
188
|
+
"track-inventory-true": "Traccia",
|
|
189
|
+
"update-product-option": "Aggiorna opzione prodotto",
|
|
190
|
+
"use-global-value": "Usa valore generale",
|
|
191
|
+
"values": "Valori",
|
|
192
|
+
"variant": "Variante",
|
|
193
|
+
"variant-count": "{count, plural, one {1 variante} other {{count} varianti}}",
|
|
194
|
+
"view-contents": "Mostra contenuti",
|
|
195
|
+
"visibility": "Visibilità"
|
|
196
|
+
},
|
|
197
|
+
"common": {
|
|
198
|
+
"ID": "ID",
|
|
199
|
+
"add-filter": "Aggiungi filtro",
|
|
200
|
+
"add-item-to-list": "Aggiungi elemento alla lista",
|
|
201
|
+
"add-note": "Aggiungi nota",
|
|
202
|
+
"apply": "Applica",
|
|
203
|
+
"assign-to-channel": "Assegna a un canale",
|
|
204
|
+
"assign-to-channels": "Assegna a {count, plural, one {canale} other {canali}}",
|
|
205
|
+
"available-currencies": "Valute disponibili",
|
|
206
|
+
"available-languages": "Lingue disponibili",
|
|
207
|
+
"boolean-and": "e",
|
|
208
|
+
"boolean-false": "falso",
|
|
209
|
+
"boolean-or": "o",
|
|
210
|
+
"boolean-true": "vero",
|
|
211
|
+
"breadcrumb": "Breadcrumb",
|
|
212
|
+
"browser-default": "Predefinito del browser",
|
|
213
|
+
"cancel": "Annulla",
|
|
214
|
+
"cancel-navigation": "Annulla navigazione",
|
|
215
|
+
"change-selection": "Cambia selezione",
|
|
216
|
+
"channel": "Canale",
|
|
217
|
+
"channels": "Canali",
|
|
218
|
+
"clear-selection": "Pulisci selezione",
|
|
219
|
+
"code": "Codice",
|
|
220
|
+
"collapse-entries": "Riduci elementi",
|
|
221
|
+
"confirm": "Conferma",
|
|
222
|
+
"confirm-bulk-assign-to-channel": "Assegnare gli elementi al canale?",
|
|
223
|
+
"confirm-bulk-delete": "Cancellare gli elementi selezionati?",
|
|
224
|
+
"confirm-bulk-remove-from-channel": "Rimuovere gli elementi dal canale corrente?",
|
|
225
|
+
"confirm-delete-note": "Cancellare la nota?",
|
|
226
|
+
"confirm-navigation": "Prosegui con la navigazione",
|
|
227
|
+
"contents": "Contenuti",
|
|
228
|
+
"create": "Crea",
|
|
229
|
+
"created-at": "Creata il",
|
|
230
|
+
"custom-fields": "Campi personalizzati",
|
|
231
|
+
"data-table-filter-date-mode": "Modalità data",
|
|
232
|
+
"data-table-filter-date-range": "Intervallo date",
|
|
233
|
+
"data-table-filter-date-relative": "Data relativa",
|
|
234
|
+
"default-channel": "Canale predefinito",
|
|
235
|
+
"default-language": "Lingua predefinita",
|
|
236
|
+
"default-tax-category": "Categoria tasse predefinita",
|
|
237
|
+
"delete": "Cancella",
|
|
238
|
+
"description": "Descrizione",
|
|
239
|
+
"details": "Dettagli",
|
|
240
|
+
"disabled": "Disabilitato",
|
|
241
|
+
"discard-changes": "Annulla modifiche",
|
|
242
|
+
"duplicate": "Duplica",
|
|
243
|
+
"edit": "Modifica",
|
|
244
|
+
"edit-field": "Modifica campo",
|
|
245
|
+
"edit-note": "Modifica nota",
|
|
246
|
+
"enabled": "Abilitato",
|
|
247
|
+
"end-date": "Data di fine",
|
|
248
|
+
"expand-entries": "Espandi elementi",
|
|
249
|
+
"extension-running-in-separate-window": "L'estensione è in esecuzione in un'altra finestra",
|
|
250
|
+
"filter": "Filtra",
|
|
251
|
+
"filter-preset-name": "Nome preimpostazione filtro",
|
|
252
|
+
"force-delete": "Forza eliminazione",
|
|
253
|
+
"force-remove": "Forza cancellazione",
|
|
254
|
+
"general": "Generale",
|
|
255
|
+
"guest": "Ospite",
|
|
256
|
+
"id": "ID",
|
|
257
|
+
"image": "Immagine",
|
|
258
|
+
"items-per-page-option": "{ count } per pagina",
|
|
259
|
+
"items-selected-count": "{ count } {count, plural, one {elemento} other {elementi}} selezionati",
|
|
260
|
+
"keep-editing": "Continua a modificare",
|
|
261
|
+
"language": "Lingua",
|
|
262
|
+
"launch-extension": "Lancia estensione",
|
|
263
|
+
"list-items-and-n-more": "{ items } e altri {nMore}",
|
|
264
|
+
"live-update": "Aggiornamenti live",
|
|
265
|
+
"locale": "Località",
|
|
266
|
+
"log-out": "Log out",
|
|
267
|
+
"login": "Log in",
|
|
268
|
+
"login-image-title": "Ciao! Bentornato. È bello rivederti.",
|
|
269
|
+
"login-title": "Accedi su {brand}",
|
|
270
|
+
"manage-tags": "Gestisci tag",
|
|
271
|
+
"manage-tags-description": "Aggiungi o elimina tag globalmente",
|
|
272
|
+
"medium-date": "Data media",
|
|
273
|
+
"more": "Altri...",
|
|
274
|
+
"name": "Nome",
|
|
275
|
+
"no-alerts": "Nessun avviso",
|
|
276
|
+
"no-bulk-actions-available": "Nessuna azione di massa disponibile",
|
|
277
|
+
"no-channel-selected": "",
|
|
278
|
+
"no-results": "Nessun risultato",
|
|
279
|
+
"not-applicable": "Non applicabile",
|
|
280
|
+
"not-set": "Non impostato",
|
|
281
|
+
"notify-assign-to-channel-success-with-count": "Assegnato con successo {count, plural, one {1 elemento} other {{count} elementi}} a { channelCode }",
|
|
282
|
+
"notify-bulk-update-success": "Aggiornati { count } { entity }",
|
|
283
|
+
"notify-create-error": "Si è verificato un errore, impossibile creare { entity }",
|
|
284
|
+
"notify-create-success": "Creato nuovo { entity }",
|
|
285
|
+
"notify-delete-error": "Si è verificato un errore, impossibile cancellare { entity }",
|
|
286
|
+
"notify-delete-error-with-count": "Impossibile eliminare {count, plural, one {1 elemento} other {{count} elementi}}",
|
|
287
|
+
"notify-delete-success": "Cancellato { entity }",
|
|
288
|
+
"notify-delete-success-with-count": "Eliminati con successo {count, plural, one {1 elemento} other {{count} elementi}}",
|
|
289
|
+
"notify-duplicate-error": "Impossibile duplicare { name } a causa di un errore: { error }",
|
|
290
|
+
"notify-duplicate-error-excess": "Non è stato possibile duplicare ulteriori { count } {count, plural, one {elemento} other {elementi}} a causa di errori",
|
|
291
|
+
"notify-duplicate-success": "Duplicati con successo {count, plural, one {1 elemento} other {{count} elementi}}: { names }",
|
|
292
|
+
"notify-remove-from-channel-success-with-count": "Rimossi con successo { count } elementi dal canale",
|
|
293
|
+
"notify-save-changes-error": "Si è verificato un errore, impossibile salvare le modifiche",
|
|
294
|
+
"notify-saved-changes": "Modifiche salvate",
|
|
295
|
+
"notify-update-error": "Si è verificato un errore, impossibile aggiornare { entity }",
|
|
296
|
+
"notify-update-success": "Aggiornato { entity }",
|
|
297
|
+
"notify-updated-tags-success": "Tags aggiornati con successo",
|
|
298
|
+
"okay": "Ok",
|
|
299
|
+
"operator-contains": "contiene",
|
|
300
|
+
"operator-eq": "uguale",
|
|
301
|
+
"operator-gt": "maggiore di",
|
|
302
|
+
"operator-lt": "minore di",
|
|
303
|
+
"operator-not-contains": "non contiene",
|
|
304
|
+
"operator-not-eq": "non uguale",
|
|
305
|
+
"operator-notContains": "non contiene",
|
|
306
|
+
"operator-regex": "corrisponde a una regex",
|
|
307
|
+
"password": "Password",
|
|
308
|
+
"position": "Posizione",
|
|
309
|
+
"price": "Prezzo",
|
|
310
|
+
"price-with-tax": "Prezzo tasse incluse",
|
|
311
|
+
"private": "Privato",
|
|
312
|
+
"public": "Pubblico",
|
|
313
|
+
"remember-me": "Ricordami",
|
|
314
|
+
"remove": "Rimuovi",
|
|
315
|
+
"remove-from-channel": "Rimuovi dal canale",
|
|
316
|
+
"remove-item-from-list": "Rimuovi elemento dalla lista",
|
|
317
|
+
"rename-filter-preset": "Rinomina preimpostazione",
|
|
318
|
+
"reset-columns": "Reimposta Colonne",
|
|
319
|
+
"results-count": "{ count } {count, plural, one {risultato} other {risultati}}",
|
|
320
|
+
"sample-formatting": "Esempio di formattazione",
|
|
321
|
+
"save-filter-preset": "Salva come preimpostazione",
|
|
322
|
+
"search-and-filter-list": "Ricerca e filtra questa lista",
|
|
323
|
+
"search-by-name": "Ricerca per nome",
|
|
324
|
+
"select": "Seleziona...",
|
|
325
|
+
"select-display-language": "Seleziona lingua",
|
|
326
|
+
"select-items-with-count": "Seleziona { count } {count, plural, one {elemento} other {elementi}}",
|
|
327
|
+
"select-products": "Seleziona prodotti",
|
|
328
|
+
"select-relation-id": "Seleziona ID relazione",
|
|
329
|
+
"select-table-columns": "Seleziona le colonne della tabella",
|
|
330
|
+
"select-today": "Seleziona oggi",
|
|
331
|
+
"select-variants": "Seleziona varianti",
|
|
332
|
+
"seller": "Venditore",
|
|
333
|
+
"set-language": "Imposta lingua",
|
|
334
|
+
"short-date": "Data breve",
|
|
335
|
+
"slug": "Slug",
|
|
336
|
+
"start-date": "Data di inizio",
|
|
337
|
+
"status": "Stato",
|
|
338
|
+
"tags": "Tag",
|
|
339
|
+
"theme": "Tema",
|
|
340
|
+
"there-are-unsaved-changes": "Ci sono modifiche non salvate. Lasciando questa pagina le modifiche andranno perse.",
|
|
341
|
+
"toggle-all": "Cambia tutti",
|
|
342
|
+
"total-items": "{currentStart} - {currentEnd} di {totalItems}",
|
|
343
|
+
"update": "Aggiorna",
|
|
344
|
+
"updated-at": "Aggiornata il",
|
|
345
|
+
"username": "Username",
|
|
346
|
+
"value": "Valore",
|
|
347
|
+
"view-contents": "Mostra contenuti",
|
|
348
|
+
"view-next-month": "Vedi mese successivo",
|
|
349
|
+
"view-previous-month": "Vedi mese precedente",
|
|
350
|
+
"visibility": "Visibilità",
|
|
351
|
+
"with-selected": "Con selezionato..."
|
|
352
|
+
},
|
|
353
|
+
"customer": {
|
|
354
|
+
"add-customer-to-group": "Aggiungi cliente ad un gruppo",
|
|
355
|
+
"add-customer-to-groups-with-count": "Aggiungi cliente a {count, plural, one {1 gruppo} other {{count} gruppi}}",
|
|
356
|
+
"add-customers-to-group": "Aggiungi clienti ad un gruppo",
|
|
357
|
+
"add-customers-to-group-success": "{customerCount, plural, one {Aggiunto 1 cliente} other {Aggiunti {customerCount} clienti}} to \"{ groupName }\"",
|
|
358
|
+
"add-customers-to-group-with-count": "Ho aggiunto {count, plural, one {1 cliente} other {{count} clienti}}",
|
|
359
|
+
"add-customers-to-group-with-name": "Aggiungi clienti a \"{ groupName }\"",
|
|
360
|
+
"addresses": "Indirizzi",
|
|
361
|
+
"city": "Città",
|
|
362
|
+
"company": "Azienda",
|
|
363
|
+
"confirm-remove-customer-from-group": "Rimuovere il cliente dal gruppo?",
|
|
364
|
+
"country": "Nazione",
|
|
365
|
+
"create-customer-group": "Crea gruppo di clienti",
|
|
366
|
+
"create-new-address": "Crea nuovo indirizzo",
|
|
367
|
+
"create-new-customer": "Crea nuovo cliente",
|
|
368
|
+
"create-new-customer-group": "Crea nuovo gruppo di clienti",
|
|
369
|
+
"customer": "Cliente",
|
|
370
|
+
"customer-group": "Gruppi di clienti",
|
|
371
|
+
"customer-groups": "Gruppi di clienti",
|
|
372
|
+
"customer-history": "Storico cliente",
|
|
373
|
+
"customers": "Clienti",
|
|
374
|
+
"default-billing-address": "Indirizzo di fatturazione principale",
|
|
375
|
+
"default-shipping-address": "Indirizzo di spedizione principale",
|
|
376
|
+
"email-address": "Indirizzo email",
|
|
377
|
+
"email-verification-sent": "Una email di verifica è stata inviata a { emailAddress }",
|
|
378
|
+
"first-name": "Nome",
|
|
379
|
+
"full-name": "Nome completo",
|
|
380
|
+
"guest": "Ospite",
|
|
381
|
+
"history-customer-added-to-group": "Cliente aggiunto al gruppo \"{ groupName }\"",
|
|
382
|
+
"history-customer-address-created": "Indirizzo creato",
|
|
383
|
+
"history-customer-address-deleted": "Indirizzo cancellato",
|
|
384
|
+
"history-customer-address-updated": "Indirizzo aggiornato",
|
|
385
|
+
"history-customer-detail-updated": "Dettagli cliente aggiornati",
|
|
386
|
+
"history-customer-email-update-requested": "Richiesto aggiornamento email",
|
|
387
|
+
"history-customer-email-update-verified": "Aggiornamento email verificato",
|
|
388
|
+
"history-customer-password-reset-requested": "Richiesto reset password",
|
|
389
|
+
"history-customer-password-reset-verified": "Reset password verificato",
|
|
390
|
+
"history-customer-password-updated": "Password aggiornata",
|
|
391
|
+
"history-customer-registered": "Cliente registrato",
|
|
392
|
+
"history-customer-removed-from-group": "Cliente rimosso dal gruppo \"{ groupName }\"",
|
|
393
|
+
"history-customer-verified": "Cliente verificato",
|
|
394
|
+
"history-using-external-auth-strategy": "utilizzo { strategy }",
|
|
395
|
+
"history-using-native-auth-strategy": "usando indirizzo email",
|
|
396
|
+
"last-login": "Ultimo login",
|
|
397
|
+
"last-name": "Cognome",
|
|
398
|
+
"name": "Nome",
|
|
399
|
+
"new-email-address": "Nuovo indirizzo email",
|
|
400
|
+
"no-orders-placed": "Nessun ordine effettuato",
|
|
401
|
+
"not-a-member-of-any-groups": "Questo cliente non fa parte di alcun gruppo",
|
|
402
|
+
"old-email-address": "Indirizzo email precedente",
|
|
403
|
+
"orders": "Ordini",
|
|
404
|
+
"password": "Password",
|
|
405
|
+
"phone-number": "Numero di telefono",
|
|
406
|
+
"postal-code": "CAP",
|
|
407
|
+
"province": "Provincia",
|
|
408
|
+
"registered": "Registrato",
|
|
409
|
+
"remove-customers-from-group-success": "Ho rimosso {customerCount, plural, one {1 cuclientestomer} other {{customerCount} clienti}} from \"{ groupName }\"",
|
|
410
|
+
"remove-from-group": "Rimuovi da questo gruppo",
|
|
411
|
+
"search-customers-by-email": "Cerca per indirizzo email",
|
|
412
|
+
"search-customers-by-email-last-name-postal-code": "Cerca per cognome / indirizzo email / CAP",
|
|
413
|
+
"select-customer": "Seleziona cliente",
|
|
414
|
+
"set-as-default-billing-address": "Imposta come indirizzo di fatturazione predefinito",
|
|
415
|
+
"set-as-default-shipping-address": "Imposta come indirizzo di spedizione predefinito",
|
|
416
|
+
"street-line-1": "Indirizzo - riga 1",
|
|
417
|
+
"street-line-2": "Indirizzo - riga 2",
|
|
418
|
+
"title": "Titolo",
|
|
419
|
+
"update-customer-group": "Aggiorna gruppo cliente",
|
|
420
|
+
"verified": "Verificato",
|
|
421
|
+
"view-group-members": "Visualizza membri del gruppo"
|
|
422
|
+
},
|
|
423
|
+
"dashboard": {
|
|
424
|
+
"add-widget": "Aggiungi widget",
|
|
425
|
+
"latest-orders": "Ultimi ordini",
|
|
426
|
+
"metric-average-order-value": "Valore medio degli ordini",
|
|
427
|
+
"metric-number-of-orders": "Numero di ordini",
|
|
428
|
+
"metric-order-total-value": "Valore totale dell'ordine",
|
|
429
|
+
"metrics": "Metriche",
|
|
430
|
+
"orders-summary": "Riepilogo ordini",
|
|
431
|
+
"remove-widget": "Rimuovi widget",
|
|
432
|
+
"thisMonth": "Questo mese",
|
|
433
|
+
"thisWeek": "Questa settimana",
|
|
434
|
+
"today": "Oggi",
|
|
435
|
+
"total-order-value": "Valore totale",
|
|
436
|
+
"total-orders": "Ordini totali",
|
|
437
|
+
"widget-resize": "Ridimensiona",
|
|
438
|
+
"widget-width": "Larghezza: {width}",
|
|
439
|
+
"yesterday": "Ieri"
|
|
440
|
+
},
|
|
441
|
+
"datetime": {
|
|
442
|
+
"ago-days": "{count, plural, one {1 giorno} other {{count} giorni}} fa",
|
|
443
|
+
"ago-hours": "{count, plural, one {1 ora} other {{count} ore}} fa",
|
|
444
|
+
"ago-minutes": "{count, plural, one {1 min} other {{count} min}} fa",
|
|
445
|
+
"ago-seconds": "{count, plural, =0 {proprio ora} one {1 sec fa} other {{count} sec fa}}",
|
|
446
|
+
"ago-years": "{count, plural, one {1 anno} other {{count} anni}} fa",
|
|
447
|
+
"day": "giorno",
|
|
448
|
+
"duration-milliseconds": "{ms}ms",
|
|
449
|
+
"duration-minutes:seconds": "{m}:{s}m",
|
|
450
|
+
"duration-seconds": "{s}",
|
|
451
|
+
"month": "mese",
|
|
452
|
+
"month-apr": "Aprile",
|
|
453
|
+
"month-aug": "Agosto",
|
|
454
|
+
"month-dec": "Dicembre",
|
|
455
|
+
"month-feb": "Febbraio",
|
|
456
|
+
"month-jan": "Gennaio",
|
|
457
|
+
"month-jul": "Luglio",
|
|
458
|
+
"month-jun": "Giugno",
|
|
459
|
+
"month-mar": "Marzo",
|
|
460
|
+
"month-may": "Maggio",
|
|
461
|
+
"month-nov": "Novembre",
|
|
462
|
+
"month-oct": "Ottobre",
|
|
463
|
+
"month-sep": "Settembre",
|
|
464
|
+
"relative-past-days": "{count} {count, plural, one {giorno} other {giorni}} fa",
|
|
465
|
+
"relative-past-months": "{count} {count, plural, one {mese} other {mesi}} fa",
|
|
466
|
+
"relative-past-years": "{count} {count, plural, one {anno} other {anni}} fa",
|
|
467
|
+
"time": "Ora",
|
|
468
|
+
"weekday-fr": "Ve",
|
|
469
|
+
"weekday-mo": "Lu",
|
|
470
|
+
"weekday-sa": "Sa",
|
|
471
|
+
"weekday-su": "Do",
|
|
472
|
+
"weekday-th": "Gi",
|
|
473
|
+
"weekday-tu": "Ma",
|
|
474
|
+
"weekday-we": "Me",
|
|
475
|
+
"year": "anno"
|
|
476
|
+
},
|
|
477
|
+
"editor": {
|
|
478
|
+
"image-alt": "Descrizione (alt)",
|
|
479
|
+
"image-src": "Fonte (indirizzo immagine)",
|
|
480
|
+
"image-title": "Titolo",
|
|
481
|
+
"insert-image": "Inserisci immagine",
|
|
482
|
+
"link-href": "Link",
|
|
483
|
+
"link-target": "Destinazione link",
|
|
484
|
+
"link-title": "Titolo link",
|
|
485
|
+
"remove-link": "Rimuovi",
|
|
486
|
+
"set-link": "Imposta link"
|
|
487
|
+
},
|
|
488
|
+
"error": {
|
|
489
|
+
"403-forbidden": "Non sei autorizzato ad accedere a \"{ path }\". Potresti non avere sufficienti permessi, oppure la tua sessione è scaduta.",
|
|
490
|
+
"could-not-connect-to-server": "Non è stato possibile collegarsi al server Deenruv a { url }",
|
|
491
|
+
"health-check-failed": "La verifica del sistema ha dato esito negativo",
|
|
492
|
+
"no-default-shipping-zone-set": "Questo canale non ha una zona di spedizione di default. Questo potrebbe causare errori nel calcolo dei prezzi di spedizione.",
|
|
493
|
+
"no-default-tax-zone-set": "Questo canale non ha una zona di tassazione di default. Questo sarà causa di errori nel calcolo dei prezzi. Per favore seleziona una zona."
|
|
494
|
+
},
|
|
495
|
+
"marketing": {
|
|
496
|
+
"actions": "Azioni",
|
|
497
|
+
"add-action": "Aggiungi azioni",
|
|
498
|
+
"add-condition": "Aggiungi condizioni",
|
|
499
|
+
"conditions": "Condizioni",
|
|
500
|
+
"coupon-code": "Codice coupon",
|
|
501
|
+
"create-new-promotion": "Crea nuova promozione",
|
|
502
|
+
"duplicate-promotions": "Duplica promozioni",
|
|
503
|
+
"ends-at": "Finisce a",
|
|
504
|
+
"per-customer-limit": "Limiti per cliente",
|
|
505
|
+
"per-customer-limit-tooltip": "Numero massimo di volte in cui questa promozione può essere utilizzata da un singolo cliente",
|
|
506
|
+
"promotion": "Promozione",
|
|
507
|
+
"search-by-name-or-coupon-code": "Ricerca per nome o codice coupon",
|
|
508
|
+
"starts-at": "Inizia a",
|
|
509
|
+
"usage-limit": "Limite totale di utilizzo",
|
|
510
|
+
"usage-limit-tooltip": "Numero massimo di volte in cui questa promozione può essere utilizzata in totale"
|
|
511
|
+
},
|
|
512
|
+
"nav": {
|
|
513
|
+
"administrators": "Amministratori",
|
|
514
|
+
"assets": "Media",
|
|
515
|
+
"catalog": "Catalogo",
|
|
516
|
+
"channels": "Canali",
|
|
517
|
+
"collections": "Collezioni",
|
|
518
|
+
"countries": "Nazioni",
|
|
519
|
+
"customer-groups": "Gruppi di Clienti",
|
|
520
|
+
"customers": "Clienti",
|
|
521
|
+
"facets": "Attributi",
|
|
522
|
+
"global-settings": "Impostazioni globali",
|
|
523
|
+
"job-queue": "Coda operazioni",
|
|
524
|
+
"marketing": "Marketing",
|
|
525
|
+
"orders": "Ordini",
|
|
526
|
+
"payment-methods": "Metodi di Pagamento",
|
|
527
|
+
"products": "Prodotti",
|
|
528
|
+
"promotions": "Promozioni",
|
|
529
|
+
"roles": "Ruoli",
|
|
530
|
+
"sales": "Vendite",
|
|
531
|
+
"sellers": "Venditori",
|
|
532
|
+
"settings": "Impostazioni",
|
|
533
|
+
"shipping-methods": "Metodi di Spedizione",
|
|
534
|
+
"stock-locations": "Posizioni scorte",
|
|
535
|
+
"system": "Sistema",
|
|
536
|
+
"system-status": "Stato del Sistema",
|
|
537
|
+
"tax-categories": "Impostazioni Tasse",
|
|
538
|
+
"tax-rates": "Importo Tasse",
|
|
539
|
+
"zones": "Zone"
|
|
540
|
+
},
|
|
541
|
+
"order": {
|
|
542
|
+
"add-item-to-order": "Aggiungi elemento all'ordine",
|
|
543
|
+
"add-note": "Aggiungi nota",
|
|
544
|
+
"add-payment": "Aggiungi pagamento",
|
|
545
|
+
"add-payment-to-order": "Aggiungi pagamento all'ordine",
|
|
546
|
+
"add-payment-to-order-success": "Pagamento aggiunto con successo all'ordine",
|
|
547
|
+
"add-surcharge": "Aggiungi sovrapprezzo",
|
|
548
|
+
"added-items": "Aggiunti prodotti",
|
|
549
|
+
"amount": "Importo",
|
|
550
|
+
"arrange-additional-payment": "Effettua un ulteriore pagamento",
|
|
551
|
+
"assign-order-to-another-customer": "Assegna ordine a un altro cliente",
|
|
552
|
+
"billing-address": "Indirizzo di fatturazione",
|
|
553
|
+
"cancel": "Annulla",
|
|
554
|
+
"cancel-entire-order": "Annulla intero ordine",
|
|
555
|
+
"cancel-fulfillment": "Annulla consegna",
|
|
556
|
+
"cancel-modification": "Annulla modifica",
|
|
557
|
+
"cancel-order": "Annulla ordine",
|
|
558
|
+
"cancel-payment": "Annulla pagamento",
|
|
559
|
+
"cancel-reason-customer-request": "Richiesta del cliente",
|
|
560
|
+
"cancel-reason-not-available": "Non disponibile",
|
|
561
|
+
"cancel-selected-items": "Cancella prodotti selezionati",
|
|
562
|
+
"cancel-specified-items": "Cancella prodotti specifcati",
|
|
563
|
+
"cancellation-reason": "Motivo dell'annullamento",
|
|
564
|
+
"cancelled-order-items-success": "Annullati { count } { count, plural, one {articolo} other {articoli} } dall'ordine",
|
|
565
|
+
"cancelled-order-success": "Ordine cancellato con successo",
|
|
566
|
+
"complete-draft-order": "Salva bozza",
|
|
567
|
+
"confirm-modifications": "Conferma modifiche",
|
|
568
|
+
"contents": "Contenuti",
|
|
569
|
+
"create-fulfillment": "Crea consegna",
|
|
570
|
+
"create-fulfillment-success": "Consegna creata",
|
|
571
|
+
"customer": "Cliente",
|
|
572
|
+
"delete-draft-order": "Cancella bozza",
|
|
573
|
+
"draft-order": "Bozza ordine",
|
|
574
|
+
"edit-billing-address": "Modifica indirizzo di fatturazione",
|
|
575
|
+
"edit-shipping-address": "Modifica indirizzo di spedizione",
|
|
576
|
+
"error-message": "Messaggio di errore",
|
|
577
|
+
"existing-address": "Indirizzo esistente",
|
|
578
|
+
"existing-customer": "Indirizzo cliente",
|
|
579
|
+
"filter-is-active": "È attivo",
|
|
580
|
+
"fulfill": "Consegna",
|
|
581
|
+
"fulfill-order": "Consegna ordine",
|
|
582
|
+
"fulfillment": "Consegna",
|
|
583
|
+
"fulfillment-method": "Metodo di consegna",
|
|
584
|
+
"history-coupon-code-applied": "Codice coupon applicato",
|
|
585
|
+
"history-coupon-code-removed": "Codice coupon rimosso",
|
|
586
|
+
"history-customer-updated": "Cliente aggiornato",
|
|
587
|
+
"history-fulfillment-created": "Consegna creata",
|
|
588
|
+
"history-fulfillment-delivered": "Consegna completata",
|
|
589
|
+
"history-fulfillment-shipped": "Spedizione effettuata",
|
|
590
|
+
"history-fulfillment-transition": "Consegna passata da {from} a {to}",
|
|
591
|
+
"history-items-cancelled": "Cancellato {count} {count, plural, one {oggetto} other {oggetti}}",
|
|
592
|
+
"history-order-cancelled": "Ordine cancellato",
|
|
593
|
+
"history-order-created": "Ordine creato",
|
|
594
|
+
"history-order-fulfilled": "Ordine spedito",
|
|
595
|
+
"history-order-modified": "Ordine modificato",
|
|
596
|
+
"history-order-transition": "Ordine passato da {from} a {to}",
|
|
597
|
+
"history-payment-settled": "Pagamento ricevuto",
|
|
598
|
+
"history-payment-transition": "Pagamento #{id} passato da {from} a {to}",
|
|
599
|
+
"history-refund-transition": "Rimborso #{id} passato da {from} a {to}",
|
|
600
|
+
"item-count": "{count} {count, plural, one {prodotto} other {prodotti}}",
|
|
601
|
+
"line-fulfillment-all": "Tutti i prodotti spediti",
|
|
602
|
+
"line-fulfillment-none": "Nessun prodotto spedito",
|
|
603
|
+
"line-fulfillment-partial": "{ count } di { total } prodotti spediti",
|
|
604
|
+
"manually-transition-to-state": "Passa manualmente allo stato...",
|
|
605
|
+
"manually-transition-to-state-message": "Imposta manualmente un nuovo stato per l'ordine. Nota che lo stato prevede delle regole che potrebbero impedire determinate transizioni.",
|
|
606
|
+
"modification-adding-items": "Aggiungo {count} {count, plural, one {prodotto} other {prodotti}}",
|
|
607
|
+
"modification-adding-surcharges": "Aggiungo {count} {count, plural, one {sovrapprezzo} other {sovrapprezzi}}",
|
|
608
|
+
"modification-adjusting-lines": "Modifico {count} {count, plural, one {linea} other {linee}} dell'ordine",
|
|
609
|
+
"modification-not-settled": "Non ricevuto",
|
|
610
|
+
"modification-recalculate-shipping": "Ricalcola spedizione",
|
|
611
|
+
"modification-settled": "Ricevuto",
|
|
612
|
+
"modification-summary": "Riepilogo delle modifiche",
|
|
613
|
+
"modification-updating-billing-address": "Aggiornando l'indirizzo di fatturazione",
|
|
614
|
+
"modification-updating-shipping-address": "Aggiornando l'indirizzo di spedizione",
|
|
615
|
+
"modified-items": "Articoli modificati",
|
|
616
|
+
"modify-order": "Modifica ordine",
|
|
617
|
+
"modify-order-price-difference": "Differenza di prezzo",
|
|
618
|
+
"net-price": "Prezzo netto",
|
|
619
|
+
"new-customer": "Nuovo cliente",
|
|
620
|
+
"no-modifications-made": "Non sono state apportate modifiche",
|
|
621
|
+
"note": "Nota",
|
|
622
|
+
"note-is-private": "Le note sono private",
|
|
623
|
+
"note-only-visible-to-administrators": "Visibile solo agli amministratori",
|
|
624
|
+
"note-visible-to-customer": "Visibile agli amministratori e al cliente",
|
|
625
|
+
"order": "Ordina",
|
|
626
|
+
"order-history": "Storico ordine",
|
|
627
|
+
"order-is-empty": "L'ordine è vuoto",
|
|
628
|
+
"order-state-diagram": "Diagramma di stato dell'ordine",
|
|
629
|
+
"order-type": "Tipo ordine",
|
|
630
|
+
"order-type-aggregate": "Aggregato",
|
|
631
|
+
"order-type-regular": "Regolare",
|
|
632
|
+
"order-type-seller": "Venditore",
|
|
633
|
+
"orders": "Ordini",
|
|
634
|
+
"original-quantity-at-checkout": "Quantità originale al checkout",
|
|
635
|
+
"payment": "Pagamento",
|
|
636
|
+
"payment-amount": "Importo pagamento",
|
|
637
|
+
"payment-metadata": "Metadati pagamento",
|
|
638
|
+
"payment-method": "Metodo di pagamento",
|
|
639
|
+
"payment-state": "Stato",
|
|
640
|
+
"payments": "Pagamenti",
|
|
641
|
+
"placed-at": "Effettuato a",
|
|
642
|
+
"preview-changes": "Anteprima modifiche",
|
|
643
|
+
"previous-customer": "Cliente precedente",
|
|
644
|
+
"product-name": "Nome prodotto",
|
|
645
|
+
"product-sku": "SKU",
|
|
646
|
+
"promotions-applied": "Promozioni applicate",
|
|
647
|
+
"prorated-unit-price": "Prezzo unitario",
|
|
648
|
+
"quantity": "Quantità",
|
|
649
|
+
"refund": "Rimborso",
|
|
650
|
+
"refund-amount": "Importo del rimborso",
|
|
651
|
+
"refund-and-cancel-order": "Rimborsa & cancella ordine",
|
|
652
|
+
"refund-cancellation-reason": "Motivo del rimborso/cancellazione",
|
|
653
|
+
"refund-cancellation-reason-required": "Il motivo del rimborso/cancellazione è obbligatorio",
|
|
654
|
+
"refund-metadata": "Metadati rimborso",
|
|
655
|
+
"refund-order-failed": "Rimborso ordine fallito",
|
|
656
|
+
"refund-order-success": "Rimborso effettuato con successo",
|
|
657
|
+
"refund-reason": "Motivo del rimborso",
|
|
658
|
+
"refund-reason-customer-request": "Richiesta del cliente",
|
|
659
|
+
"refund-reason-not-available": "Non disponibile",
|
|
660
|
+
"refund-shipping": "Rimborso spedizione",
|
|
661
|
+
"refund-this-payment": "Rimborsa questo pagamento",
|
|
662
|
+
"refund-total": "Totale rimborso",
|
|
663
|
+
"refund-total-error": "Il totale del rimborso deve essere compreso tra {min} e {max}",
|
|
664
|
+
"refund-total-warning": "Si prega di specificare importi di rimborso che equivalgano all'importo totale del rimborso.",
|
|
665
|
+
"refund-with-amount": "Rimborsa {amount}",
|
|
666
|
+
"refundable-amount": "Importo rimborsabile",
|
|
667
|
+
"refunded-count": "Hai rimborsato {count} {count, plural, one {prodotto} other {prodotti}}",
|
|
668
|
+
"removed-items": "Prodotti rimossi",
|
|
669
|
+
"return-to-stock": "Ritorna allo stock",
|
|
670
|
+
"search-by-order-filters": "Cerca per codice ordine / cognome cliente / ID transazione",
|
|
671
|
+
"select-address": "Inserisci indirizzo",
|
|
672
|
+
"select-shipping-method": "Seleziona il metodo di consegna",
|
|
673
|
+
"select-state": "Seleziona stato",
|
|
674
|
+
"seller-orders": "Ordini venditore",
|
|
675
|
+
"set-billing-address": "Inserisci indirizzo di fatturazioine",
|
|
676
|
+
"set-coupon-codes": "Inserisci i codici coupon",
|
|
677
|
+
"set-customer-for-order": "Seleziona cliente",
|
|
678
|
+
"set-customer-success": "",
|
|
679
|
+
"set-fulfillment-state": "Segna come {state}",
|
|
680
|
+
"set-shipping-address": "Seleziona indirizzo di spedizione",
|
|
681
|
+
"set-shipping-method": "Seleziona metodo di consegna",
|
|
682
|
+
"settle-payment": "Incassa pagamento",
|
|
683
|
+
"settle-payment-error": "Non è stato possibile incassare il pagamento",
|
|
684
|
+
"settle-payment-success": "Pagamento incassato con successo",
|
|
685
|
+
"settle-refund": "Effettua rimborso",
|
|
686
|
+
"settle-refund-manual-instructions": "Dopo aver rimborsato manualmente con il metodo di pagamento ({method}), inserisci qui l'ID della transazione.",
|
|
687
|
+
"settle-refund-success": "Rimborso effettuato con successo",
|
|
688
|
+
"shipping": "Spedizione",
|
|
689
|
+
"shipping-address": "Indirizzo di spedizione",
|
|
690
|
+
"shipping-cancelled": "Spedizione cancellata",
|
|
691
|
+
"shipping-method": "Metodo di spedizione",
|
|
692
|
+
"state": "Stato",
|
|
693
|
+
"sub-total": "Sub totale",
|
|
694
|
+
"successfully-updated-fulfillment": "Consegna aggiornata con successo",
|
|
695
|
+
"surcharges": "Sovrapprezzi",
|
|
696
|
+
"tax-base": "Tassa base",
|
|
697
|
+
"tax-description": "Descrizione tassa",
|
|
698
|
+
"tax-rate": "Percentuale tassa",
|
|
699
|
+
"tax-summary": "Riempilogo tasse",
|
|
700
|
+
"tax-total": "Totale tasse",
|
|
701
|
+
"total": "Totale",
|
|
702
|
+
"tracking-code": "Codice di tracciamento",
|
|
703
|
+
"transaction-id": "ID transazione",
|
|
704
|
+
"transition-to-state": "Passa allo stato { state }",
|
|
705
|
+
"transitioned-payment-to-state-success": "Stato pagamento mutato in { state }",
|
|
706
|
+
"transitioned-to-state-success": "Passato con successo allo stato { state }",
|
|
707
|
+
"unable-to-transition-to-state-try-another": "Non è stato possibile tornare allo stato \"{state}\". Per favore seleziona un altro stato.",
|
|
708
|
+
"unfulfilled": "Non consegnato",
|
|
709
|
+
"unit-price": "Prezzo unitario"
|
|
710
|
+
},
|
|
711
|
+
"settings": {
|
|
712
|
+
"add-countries-to-zone": "Aggiungi nazioni a { zoneName }",
|
|
713
|
+
"add-countries-to-zone-success": "Ho aggiunto { countryCount } {countryCount, plural, one {nazione} other {nazioni}} alla zona \"{ zoneName }\"",
|
|
714
|
+
"add-products-to-test-order": "Aggiunti prodotti all'ordine di prova",
|
|
715
|
+
"administrator": "Amministratore",
|
|
716
|
+
"channel": "Canale",
|
|
717
|
+
"channel-token": "Token del canale",
|
|
718
|
+
"country": "Nazione",
|
|
719
|
+
"create-new-channel": "Crea nuovo canale",
|
|
720
|
+
"create-new-country": "Crea nuova nazione",
|
|
721
|
+
"create-new-payment-method": "Crea nuovo metodo di pagamento",
|
|
722
|
+
"create-new-role": "Crea nuovo ruolo",
|
|
723
|
+
"create-new-seller": "Crea nuovo venditore",
|
|
724
|
+
"create-new-shipping-method": "Crea nuovo metodo di spedizione",
|
|
725
|
+
"create-new-tax-category": "Crea categoria tassa",
|
|
726
|
+
"create-new-tax-rate": "Crea nuovo tasso fiscale",
|
|
727
|
+
"create-new-zone": "Crea nuova zona",
|
|
728
|
+
"default-currency": "Valuta predefinita",
|
|
729
|
+
"default-role-label": "Questo è un ruolo predefinito e non può essere modificato",
|
|
730
|
+
"default-shipping-zone": "Zona di spedizione predefinita",
|
|
731
|
+
"default-tax-zone": "Zona di tassazione predefinita",
|
|
732
|
+
"defaults": "Predefiniti",
|
|
733
|
+
"eligible": "Compatibile",
|
|
734
|
+
"email-address": "Indirizzo email",
|
|
735
|
+
"email-address-or-identifier": "Indirizzo email o identificativo",
|
|
736
|
+
"first-name": "Nome",
|
|
737
|
+
"fulfillment-handler": "Gestore spedizione",
|
|
738
|
+
"global-available-languages-tooltip": "Imposta le lingue disponibili per tutti i canali. I singoli canali possono poi supportare un sottoinsieme di queste lingue.",
|
|
739
|
+
"global-out-of-stock-threshold": "Soglia globale di indisponibilità",
|
|
740
|
+
"global-out-of-stock-threshold-tooltip": "Imposta il livello di scorte al quale questa variante viene considerata esaurita. Usando un valore negativo si abilitano gli ordini in riapprovvigionamento. Può essere modificato per le singole varianti.",
|
|
741
|
+
"last-name": "Cognome",
|
|
742
|
+
"no-eligible-shipping-methods": "Nessun metodo di spedizione compatibile",
|
|
743
|
+
"password": "Password",
|
|
744
|
+
"payment-eligibility-checker": "Criterio di idoneità metodo di pagamento",
|
|
745
|
+
"payment-handler": "Gestore Pagamento",
|
|
746
|
+
"payment-method": "Metodo di pagamento",
|
|
747
|
+
"permissions": "Permessi",
|
|
748
|
+
"prices-include-tax": "I prezzi includono le tasse per la zona fiscale predefinita",
|
|
749
|
+
"profile": "Profilo",
|
|
750
|
+
"rate": "Tasso",
|
|
751
|
+
"remove-countries-from-zone-success": "Ho rimosso { countryCount } {countryCount, plural, one {nazione} other {nazioni}} dalla zona \"{ zoneName }\"",
|
|
752
|
+
"remove-from-zone": "Rimuovi dalla zona",
|
|
753
|
+
"role": "Ruolo",
|
|
754
|
+
"roles": "Ruoli",
|
|
755
|
+
"search-by-product-name-or-sku": "Cerca per nome prodotto o codice SKU",
|
|
756
|
+
"seller": "Venditore",
|
|
757
|
+
"shipping-calculator": "Calcolo prezzo spedizione",
|
|
758
|
+
"shipping-eligibility-checker": "Criterio di idoneità metodo di spedizione",
|
|
759
|
+
"shipping-method": "Metodo di spedizione",
|
|
760
|
+
"tax-category": "Categoria tasse",
|
|
761
|
+
"tax-rate": "Tasso fiscale",
|
|
762
|
+
"test-address": "Indirizzo di prova",
|
|
763
|
+
"test-result": "Risultato prova",
|
|
764
|
+
"test-shipping-method": "Prova metodo di spedizione",
|
|
765
|
+
"test-shipping-methods": "Prova metodi di spedizione",
|
|
766
|
+
"track-inventory-default": "Monitora inventario automaticamente",
|
|
767
|
+
"view-zone-members": "Vedi membri",
|
|
768
|
+
"zone": "Zona"
|
|
769
|
+
},
|
|
770
|
+
"state": {
|
|
771
|
+
"adding-items": "Aggiunta prodotti",
|
|
772
|
+
"arranging-additional-payment": "Scelta ulteriore pagamento ",
|
|
773
|
+
"arranging-payment": "Scelta pagamento",
|
|
774
|
+
"authorized": "Autorizzato",
|
|
775
|
+
"cancelled": "Cancellato",
|
|
776
|
+
"created": "Creato",
|
|
777
|
+
"declined": "Rifiutato",
|
|
778
|
+
"delivered": "Consegnato",
|
|
779
|
+
"draft": "Bozza",
|
|
780
|
+
"error": "Errore",
|
|
781
|
+
"failed": "Fallito",
|
|
782
|
+
"modifying": "In modifica",
|
|
783
|
+
"partially-delivered": "Parzialmente consegnato",
|
|
784
|
+
"partially-shipped": "Parzialmente spedito",
|
|
785
|
+
"payment-authorized": "Pagamento autorizzato",
|
|
786
|
+
"payment-settled": "Pagamento completato",
|
|
787
|
+
"pending": "In attesa",
|
|
788
|
+
"settled": "Completato",
|
|
789
|
+
"shipped": "Spedito"
|
|
790
|
+
},
|
|
791
|
+
"system": {
|
|
792
|
+
"all-job-queues": "Tutte le operazioni",
|
|
793
|
+
"health-all-systems-up": "I sistemi sono attivi",
|
|
794
|
+
"health-error": "Errore: uno o più sistemi sono inattivi!",
|
|
795
|
+
"health-last-checked": "Ultimo controllo",
|
|
796
|
+
"health-message": "Messaggio",
|
|
797
|
+
"health-refresh": "Aggiorna",
|
|
798
|
+
"health-status": "Stato",
|
|
799
|
+
"health-status-down": "Inattivo",
|
|
800
|
+
"health-status-up": "Attivo",
|
|
801
|
+
"job-data": "Dati operazioni",
|
|
802
|
+
"job-duration": "Durata",
|
|
803
|
+
"job-error": "Errore operazione",
|
|
804
|
+
"job-queue-name": "Nome coda operazioni",
|
|
805
|
+
"job-result": "Risultato operazione",
|
|
806
|
+
"job-state": "Stato operazione",
|
|
807
|
+
"job-state-all": "Tutti gli stati",
|
|
808
|
+
"job-state-cancelled": "Annullato",
|
|
809
|
+
"job-state-completed": "Completato",
|
|
810
|
+
"job-state-failed": "Fallito",
|
|
811
|
+
"job-state-pending": "In attesa",
|
|
812
|
+
"job-state-running": "In esecuzione"
|
|
813
|
+
}
|
|
814
|
+
}
|