@vendure/core 3.1.8 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +42 -42
- package/README.md +11 -11
- package/cli/populate.js +4 -5
- package/cli/populate.js.map +1 -1
- package/dist/api/api-internal-modules.js +4 -0
- package/dist/api/api-internal-modules.js.map +1 -1
- package/dist/api/api.module.js +3 -6
- package/dist/api/api.module.js.map +1 -1
- package/dist/api/common/extract-session-token.js +1 -2
- package/dist/api/common/extract-session-token.js.map +1 -1
- package/dist/api/common/get-api-type.js +1 -2
- package/dist/api/common/get-api-type.js.map +1 -1
- package/dist/api/common/is-field-resolver.js +1 -2
- package/dist/api/common/is-field-resolver.js.map +1 -1
- package/dist/api/common/parse-context.js +1 -2
- package/dist/api/common/parse-context.js.map +1 -1
- package/dist/api/common/request-context.js +3 -3
- package/dist/api/common/request-context.js.map +1 -1
- package/dist/api/common/set-session-token.js +1 -2
- package/dist/api/common/set-session-token.js.map +1 -1
- package/dist/api/common/user-has-permissions-on-custom-field.js +1 -2
- package/dist/api/common/user-has-permissions-on-custom-field.js.map +1 -1
- package/dist/api/common/validate-custom-field-value.js +1 -2
- package/dist/api/common/validate-custom-field-value.js.map +1 -1
- package/dist/api/config/configure-graphql-module.js +9 -51
- package/dist/api/config/configure-graphql-module.js.map +1 -1
- package/dist/api/config/generate-active-order-types.js +1 -2
- package/dist/api/config/generate-active-order-types.js.map +1 -1
- package/dist/api/config/generate-auth-types.js +1 -2
- package/dist/api/config/generate-auth-types.js.map +1 -1
- package/dist/api/config/generate-error-code-enum.js +5 -5
- package/dist/api/config/generate-error-code-enum.js.map +1 -1
- package/dist/api/config/generate-list-options.js +1 -2
- package/dist/api/config/generate-list-options.js.map +1 -1
- package/dist/api/config/generate-permissions.js +30 -31
- package/dist/api/config/generate-permissions.js.map +1 -1
- package/dist/api/config/generate-resolvers.d.ts +4 -4
- package/dist/api/config/generate-resolvers.js +1 -2
- package/dist/api/config/generate-resolvers.js.map +1 -1
- package/dist/api/config/get-custom-fields-config-without-interfaces.js +1 -2
- package/dist/api/config/get-custom-fields-config-without-interfaces.js.map +1 -1
- package/dist/api/config/get-final-vendure-schema.d.ts +47 -0
- package/dist/api/config/get-final-vendure-schema.js +71 -0
- package/dist/api/config/get-final-vendure-schema.js.map +1 -0
- package/dist/api/config/graphql-custom-fields.js +166 -167
- package/dist/api/config/graphql-custom-fields.js.map +1 -1
- package/dist/api/config/money-scalar.js +2 -2
- package/dist/api/config/money-scalar.js.map +1 -1
- package/dist/api/constants.d.ts +2 -0
- package/dist/api/constants.js +10 -0
- package/dist/api/constants.js.map +1 -0
- package/dist/api/decorators/transaction.decorator.d.ts +1 -1
- package/dist/api/index.d.ts +2 -0
- package/dist/api/index.js +2 -0
- package/dist/api/index.js.map +1 -1
- package/dist/api/resolvers/admin/product.resolver.d.ts +2 -1
- package/dist/api/resolvers/admin/product.resolver.js +14 -0
- package/dist/api/resolvers/admin/product.resolver.js.map +1 -1
- package/dist/api/resolvers/shop/shop-payment-methods.resolver.d.ts +8 -0
- package/dist/api/resolvers/shop/shop-payment-methods.resolver.js +40 -0
- package/dist/api/resolvers/shop/shop-payment-methods.resolver.js.map +1 -0
- package/dist/api/resolvers/shop/shop-shipping-methods.resolver.d.ts +8 -0
- package/dist/api/resolvers/shop/shop-shipping-methods.resolver.js +40 -0
- package/dist/api/resolvers/shop/shop-shipping-methods.resolver.js.map +1 -0
- package/dist/api/schema/admin-api/administrator.api.graphql +47 -47
- package/dist/api/schema/admin-api/administrator.type.graphql +14 -14
- package/dist/api/schema/admin-api/asset.api.graphql +68 -68
- package/dist/api/schema/admin-api/auth.api.graphql +22 -22
- package/dist/api/schema/admin-api/channel.api.graphql +69 -69
- package/dist/api/schema/admin-api/collection-admin.type.graphql +4 -4
- package/dist/api/schema/admin-api/collection.api.graphql +94 -94
- package/dist/api/schema/admin-api/country.api.graphql +41 -41
- package/dist/api/schema/admin-api/customer-admin.type.graphql +4 -4
- package/dist/api/schema/admin-api/customer-group.api.graphql +37 -37
- package/dist/api/schema/admin-api/customer.api.graphql +63 -63
- package/dist/api/schema/admin-api/duplicate-entity.api.graphql +40 -40
- package/dist/api/schema/admin-api/facet-admin.type.graphql +3 -3
- package/dist/api/schema/admin-api/facet.api.graphql +100 -100
- package/dist/api/schema/admin-api/global-settings.api.graphql +26 -26
- package/dist/api/schema/admin-api/global-settings.type.graphql +28 -28
- package/dist/api/schema/admin-api/history-entry-admin.type.graphql +4 -4
- package/dist/api/schema/admin-api/import.api.graphql +3 -3
- package/dist/api/schema/admin-api/import.type.graphql +5 -5
- package/dist/api/schema/admin-api/job.api.graphql +63 -63
- package/dist/api/schema/admin-api/order-admin.type.graphql +37 -37
- package/dist/api/schema/admin-api/order.api.graphql +463 -463
- package/dist/api/schema/admin-api/payment-method.api.graphql +65 -65
- package/dist/api/schema/admin-api/payment.api.graphql +2 -2
- package/dist/api/schema/admin-api/product-admin.type.graphql +21 -21
- package/dist/api/schema/admin-api/product-option-group.api.graphql +58 -58
- package/dist/api/schema/admin-api/product-search-admin.type.graphql +5 -5
- package/dist/api/schema/admin-api/product-search.api.graphql +10 -10
- package/dist/api/schema/admin-api/product.api.graphql +225 -222
- package/dist/api/schema/admin-api/promotion.api.graphql +70 -70
- package/dist/api/schema/admin-api/province.api.graphql +37 -37
- package/dist/api/schema/admin-api/role.api.graphql +33 -33
- package/dist/api/schema/admin-api/seller.api.graphql +31 -31
- package/dist/api/schema/admin-api/shipping-method.api.graphql +91 -91
- package/dist/api/schema/admin-api/stock-level.type.graphql +9 -9
- package/dist/api/schema/admin-api/stock-location.api.graphql +51 -51
- package/dist/api/schema/admin-api/stock-location.type.graphql +7 -7
- package/dist/api/schema/admin-api/stock-movement.type.graphql +80 -80
- package/dist/api/schema/admin-api/tag.api.graphql +25 -25
- package/dist/api/schema/admin-api/tax-category.api.graphql +36 -36
- package/dist/api/schema/admin-api/tax-rate.api.graphql +37 -37
- package/dist/api/schema/admin-api/zone.api.graphql +42 -42
- package/dist/api/schema/common/address.type.graphql +16 -16
- package/dist/api/schema/common/asset.type.graphql +31 -31
- package/dist/api/schema/common/auth.type.graphql +12 -12
- package/dist/api/schema/common/channel.type.graphql +24 -24
- package/dist/api/schema/common/collection.type.graphql +40 -40
- package/dist/api/schema/common/common-enums.graphql +35 -35
- package/dist/api/schema/common/common-error-results.graphql +107 -107
- package/dist/api/schema/common/common-types.graphql +285 -285
- package/dist/api/schema/common/currency-code.graphql +322 -322
- package/dist/api/schema/common/custom-field-types.graphql +265 -265
- package/dist/api/schema/common/customer-group.type.graphql +10 -10
- package/dist/api/schema/common/customer.type.graphql +18 -18
- package/dist/api/schema/common/facet-value.type.graphql +19 -19
- package/dist/api/schema/common/facet.type.graphql +35 -35
- package/dist/api/schema/common/history-entry.type.graphql +43 -43
- package/dist/api/schema/common/language-code.graphql +325 -325
- package/dist/api/schema/common/order.type.graphql +257 -257
- package/dist/api/schema/common/payment-method.type.graphql +21 -21
- package/dist/api/schema/common/product-option-group.type.graphql +38 -38
- package/dist/api/schema/common/product-search.type.graphql +69 -69
- package/dist/api/schema/common/product.type.graphql +70 -70
- package/dist/api/schema/common/promotion.type.graphql +31 -31
- package/dist/api/schema/common/region.type.graphql +65 -65
- package/dist/api/schema/common/role.type.graphql +14 -14
- package/dist/api/schema/common/seller.type.graphql +6 -6
- package/dist/api/schema/common/shipping-method.type.graphql +27 -27
- package/dist/api/schema/common/tag.type.graphql +11 -11
- package/dist/api/schema/common/tax-category.type.graphql +7 -7
- package/dist/api/schema/common/tax-rate.type.graphql +16 -16
- package/dist/api/schema/common/user.type.graphql +17 -17
- package/dist/api/schema/common/zone.type.graphql +8 -8
- package/dist/api/schema/shop-api/shop-error-results.graphql +114 -114
- package/dist/api/schema/shop-api/shop.api.graphql +287 -267
- package/dist/bootstrap.d.ts +4 -0
- package/dist/bootstrap.js +7 -7
- package/dist/bootstrap.js.map +1 -1
- package/dist/common/calculated-decorator.js +2 -2
- package/dist/common/calculated-decorator.js.map +1 -1
- package/dist/common/constants.js +2 -2
- package/dist/common/constants.js.map +1 -1
- package/dist/common/error/error-result.js +1 -2
- package/dist/common/error/error-result.js.map +1 -1
- package/dist/common/finite-state-machine/merge-transition-definitions.js +1 -2
- package/dist/common/finite-state-machine/merge-transition-definitions.js.map +1 -1
- package/dist/common/finite-state-machine/validate-transition-definition.js +1 -2
- package/dist/common/finite-state-machine/validate-transition-definition.js.map +1 -1
- package/dist/common/generate-public-id.js +1 -2
- package/dist/common/generate-public-id.js.map +1 -1
- package/dist/common/permission-definition.d.ts +1 -1
- package/dist/common/round-money.js +1 -2
- package/dist/common/round-money.js.map +1 -1
- package/dist/common/self-refreshing-cache.js +1 -2
- package/dist/common/self-refreshing-cache.js.map +1 -1
- package/dist/common/tax-utils.js +4 -5
- package/dist/common/tax-utils.js.map +1 -1
- package/dist/common/ttl-cache.js +4 -1
- package/dist/common/ttl-cache.js.map +1 -1
- package/dist/common/utils.js +10 -11
- package/dist/common/utils.js.map +1 -1
- package/dist/config/asset-import-strategy/asset-import-strategy.d.ts +0 -1
- package/dist/config/asset-import-strategy/default-asset-import-strategy.d.ts +0 -1
- package/dist/config/asset-preview-strategy/asset-preview-strategy.d.ts +0 -1
- package/dist/config/asset-preview-strategy/no-asset-preview-strategy.d.ts +0 -1
- package/dist/config/asset-storage-strategy/asset-storage-strategy.d.ts +0 -2
- package/dist/config/asset-storage-strategy/no-asset-storage-strategy.d.ts +0 -2
- package/dist/config/auth/default-verification-token-strategy.d.ts +27 -0
- package/dist/config/auth/default-verification-token-strategy.js +51 -0
- package/dist/config/auth/default-verification-token-strategy.js.map +1 -0
- package/dist/config/auth/native-authentication-strategy.js +5 -5
- package/dist/config/auth/verification-token-strategy.d.ts +32 -0
- package/dist/config/auth/verification-token-strategy.js +3 -0
- package/dist/config/auth/verification-token-strategy.js.map +1 -0
- package/dist/config/catalog/default-collection-filters.js +2 -2
- package/dist/config/catalog/default-collection-filters.js.map +1 -1
- package/dist/config/config-helpers.js +4 -5
- package/dist/config/config-helpers.js.map +1 -1
- package/dist/config/config.module.js +2 -1
- package/dist/config/config.module.js.map +1 -1
- package/dist/config/default-config.js +2 -0
- package/dist/config/default-config.js.map +1 -1
- package/dist/config/index.d.ts +2 -0
- package/dist/config/index.js +2 -0
- package/dist/config/index.js.map +1 -1
- package/dist/config/job-queue/inspectable-job-queue-strategy.js +1 -2
- package/dist/config/job-queue/inspectable-job-queue-strategy.js.map +1 -1
- package/dist/config/merge-config.js +1 -2
- package/dist/config/merge-config.js.map +1 -1
- package/dist/config/order/default-order-process.js +2 -2
- package/dist/config/order/default-order-process.js.map +1 -1
- package/dist/config/order/order-merge-strategy.js +1 -2
- package/dist/config/order/order-merge-strategy.js.map +1 -1
- package/dist/config/payment/payment-method-handler.d.ts +4 -4
- package/dist/config/session-cache/default-session-cache-strategy.d.ts +2 -2
- package/dist/config/session-cache/in-memory-session-cache-strategy.js +4 -1
- package/dist/config/session-cache/in-memory-session-cache-strategy.js.map +1 -1
- package/dist/config/system/in-memory-cache-strategy.js +4 -1
- package/dist/config/system/in-memory-cache-strategy.js.map +1 -1
- package/dist/config/vendure-config.d.ts +9 -0
- package/dist/connection/find-options-object-to-array.js +1 -2
- package/dist/connection/find-options-object-to-array.js.map +1 -1
- package/dist/data-import/providers/import-parser/import-parser.d.ts +0 -1
- package/dist/data-import/providers/importer/importer.d.ts +0 -1
- package/dist/entity/entity-id.decorator.js +4 -5
- package/dist/entity/entity-id.decorator.js.map +1 -1
- package/dist/entity/money.decorator.js +2 -3
- package/dist/entity/money.decorator.js.map +1 -1
- package/dist/entity/register-custom-entity-fields.js +1 -2
- package/dist/entity/register-custom-entity-fields.js.map +1 -1
- package/dist/entity/run-entity-metadata-modifiers.js +1 -2
- package/dist/entity/run-entity-metadata-modifiers.js.map +1 -1
- package/dist/entity/set-entity-id-strategy.js +1 -2
- package/dist/entity/set-entity-id-strategy.js.map +1 -1
- package/dist/entity/set-money-strategy.js +1 -2
- package/dist/entity/set-money-strategy.js.map +1 -1
- package/dist/entity/validate-custom-fields-config.js +1 -2
- package/dist/entity/validate-custom-fields-config.js.map +1 -1
- package/dist/i18n/i18n.service.js +17 -7
- package/dist/i18n/i18n.service.js.map +1 -1
- package/dist/i18n/messages/de.json +117 -117
- package/dist/i18n/messages/en.json +140 -140
- package/dist/i18n/messages/es.json +38 -38
- package/dist/i18n/messages/fr.json +138 -138
- package/dist/i18n/messages/pt_BR.json +99 -99
- package/dist/i18n/messages/pt_PT.json +118 -118
- package/dist/i18n/messages/ru.json +118 -118
- package/dist/i18n/messages/uk.json +118 -118
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/migrate.js +18 -19
- package/dist/migrate.js.map +1 -1
- package/dist/plugin/default-cache-plugin/cache-item.entity.js +1 -1
- package/dist/plugin/default-cache-plugin/cache-item.entity.js.map +1 -1
- package/dist/plugin/default-search-plugin/api/api-extensions.js +8 -8
- package/dist/plugin/default-search-plugin/search-strategy/mysql-search-strategy.js +3 -3
- package/dist/plugin/default-search-plugin/search-strategy/postgres-search-strategy.js +5 -5
- package/dist/plugin/default-search-plugin/search-strategy/search-strategy-common.js +2 -2
- package/dist/plugin/default-search-plugin/search-strategy/search-strategy-common.js.map +1 -1
- package/dist/plugin/default-search-plugin/search-strategy/search-strategy-utils.js +5 -6
- package/dist/plugin/default-search-plugin/search-strategy/search-strategy-utils.js.map +1 -1
- package/dist/plugin/default-search-plugin/search-strategy/sqlite-search-strategy.js +4 -4
- package/dist/plugin/dynamic-plugin-api.module.d.ts +0 -5
- package/dist/plugin/dynamic-plugin-api.module.js +1 -16
- package/dist/plugin/dynamic-plugin-api.module.js.map +1 -1
- package/dist/plugin/index.d.ts +1 -0
- package/dist/plugin/index.js +1 -0
- package/dist/plugin/index.js.map +1 -1
- package/dist/plugin/plugin-metadata.d.ts +3 -1
- package/dist/plugin/plugin-metadata.js +15 -10
- package/dist/plugin/plugin-metadata.js.map +1 -1
- package/dist/plugin/plugin-utils.js +3 -4
- package/dist/plugin/plugin-utils.js.map +1 -1
- package/dist/plugin/vendure-plugin.d.ts +4 -0
- package/dist/plugin/vendure-plugin.js +1 -2
- package/dist/plugin/vendure-plugin.js.map +1 -1
- package/dist/process-context/process-context.js +2 -2
- package/dist/process-context/process-context.js.map +1 -1
- package/dist/service/helpers/entity-hydrator/merge-deep.js +1 -2
- package/dist/service/helpers/entity-hydrator/merge-deep.js.map +1 -1
- package/dist/service/helpers/list-query-builder/connection-utils.js +3 -4
- package/dist/service/helpers/list-query-builder/connection-utils.js.map +1 -1
- package/dist/service/helpers/list-query-builder/get-calculated-columns.js +1 -2
- package/dist/service/helpers/list-query-builder/get-calculated-columns.js.map +1 -1
- package/dist/service/helpers/list-query-builder/list-query-builder.js +2 -2
- package/dist/service/helpers/list-query-builder/list-query-builder.js.map +1 -1
- package/dist/service/helpers/list-query-builder/parse-filter-params.js +1 -2
- package/dist/service/helpers/list-query-builder/parse-filter-params.js.map +1 -1
- package/dist/service/helpers/list-query-builder/parse-sort-params.js +1 -2
- package/dist/service/helpers/list-query-builder/parse-sort-params.js.map +1 -1
- package/dist/service/helpers/order-calculator/order-calculator.js.map +1 -1
- package/dist/service/helpers/order-calculator/prorate.js +1 -2
- package/dist/service/helpers/order-calculator/prorate.js.map +1 -1
- package/dist/service/helpers/translatable-saver/translatable-saver.js.map +1 -1
- package/dist/service/helpers/utils/address-to-line.js +1 -2
- package/dist/service/helpers/utils/address-to-line.js.map +1 -1
- package/dist/service/helpers/utils/get-user-channels-permissions.js +2 -3
- package/dist/service/helpers/utils/get-user-channels-permissions.js.map +1 -1
- package/dist/service/helpers/utils/move-to-index.js +1 -2
- package/dist/service/helpers/utils/move-to-index.js.map +1 -1
- package/dist/service/helpers/utils/order-utils.js +8 -9
- package/dist/service/helpers/utils/order-utils.js.map +1 -1
- package/dist/service/helpers/utils/patch-entity.js +1 -2
- package/dist/service/helpers/utils/patch-entity.js.map +1 -1
- package/dist/service/helpers/utils/samples-each.js +1 -2
- package/dist/service/helpers/utils/samples-each.js.map +1 -1
- package/dist/service/helpers/utils/translate-entity.js +3 -4
- package/dist/service/helpers/utils/translate-entity.js.map +1 -1
- package/dist/service/helpers/utils/tree-relations-qb-joiner.js +1 -2
- package/dist/service/helpers/utils/tree-relations-qb-joiner.js.map +1 -1
- package/dist/service/helpers/verification-token-generator/verification-token-generator.d.ts +10 -6
- package/dist/service/helpers/verification-token-generator/verification-token-generator.js +11 -24
- package/dist/service/helpers/verification-token-generator/verification-token-generator.js.map +1 -1
- package/dist/service/services/asset.service.d.ts +0 -2
- package/dist/service/services/payment-method.service.d.ts +1 -0
- package/dist/service/services/payment-method.service.js +6 -0
- package/dist/service/services/payment-method.service.js.map +1 -1
- package/dist/service/services/product-variant.service.js +4 -2
- package/dist/service/services/product-variant.service.js.map +1 -1
- package/dist/service/services/user.service.js +13 -7
- package/dist/service/services/user.service.js.map +1 -1
- package/package.json +17 -18
- package/cli/cli-utils.d.ts +0 -1
- package/cli/cli-utils.js +0 -8
- package/cli/cli-utils.js.map +0 -1
- package/cli/vendure-cli.d.ts +0 -2
- package/cli/vendure-cli.js +0 -119
- package/cli/vendure-cli.js.map +0 -1
|
@@ -1,140 +1,140 @@
|
|
|
1
|
-
{
|
|
2
|
-
"error": {
|
|
3
|
-
"active-user-does-not-have-sufficient-permissions": "Active user does not have sufficient permissions",
|
|
4
|
-
"available-currency-codes-must-include-default": "availableCurrencyCodes must include the defaultCurrencyCode ({ defaultCurrencyCode })",
|
|
5
|
-
"cannot-delete-role": "The role \"{ roleCode }\" cannot be deleted",
|
|
6
|
-
"cannot-delete-sole-superadmin": "The sole SuperAdmin cannot be deleted",
|
|
7
|
-
"cannot-delete-default-channel": "The default Channel cannot be deleted",
|
|
8
|
-
"cannot-locate-customer-for-user": "Cannot locate a Customer for the user",
|
|
9
|
-
"cannot-modify-role": "The role \"{ roleCode }\" cannot be modified",
|
|
10
|
-
"cannot-move-collection-into-self": "Cannot move a Collection into itself",
|
|
11
|
-
"cannot-transition-payment-from-to": "Cannot transition Payment from \"{ fromState }\" to \"{ toState }\"",
|
|
12
|
-
"cannot-transition-refund-from-to": "Cannot transition Refund from \"{ fromState }\" to \"{ toState }\"",
|
|
13
|
-
"cannot-transition-fulfillment-from-to": "Cannot transition Fulfillment from \"{ fromState }\" to \"{ toState }\"",
|
|
14
|
-
"channel-not-found": "No Channel with the token \"{ token }\" could be found",
|
|
15
|
-
"collection-id-or-slug-must-be-provided": "Either the Collection id or slug must be provided",
|
|
16
|
-
"collection-id-slug-mismatch": "The provided id and slug refer to different Collections",
|
|
17
|
-
"conditions-required-for-action": "The PromotionAction \"{ action }\" requires the following conditions: { conditions }",
|
|
18
|
-
"configurable-argument-is-required": "The argument \"{ name }\" is required",
|
|
19
|
-
"country-code-not-valid": "The countryCode \"{ countryCode }\" was not recognized",
|
|
20
|
-
"currency-not-available-in-channel": "The currency \"{ currencyCode }\" is not available in the current Channel",
|
|
21
|
-
"customer-does-not-belong-to-customer-group": "Customer does not belong to this CustomerGroup",
|
|
22
|
-
"default-channel-not-found": "Default channel not found",
|
|
23
|
-
"entity-has-no-translation-in-language": "Translatable entity \"{ entityName }\" has not been translated into the requested language ({ languageCode })",
|
|
24
|
-
"entity-with-id-not-found": "No { entityName } with the id \"{ id }\" could be found",
|
|
25
|
-
"items-cannot-be-removed-from-default-channel": "Items cannot be removed from the default Channel",
|
|
26
|
-
"facetfilterinput-invalid-input": "A FacetValueFilterInput object may not specify the 'and' and 'or' fields simultaneously",
|
|
27
|
-
"field-invalid-datetime-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
28
|
-
"field-invalid-datetime-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
29
|
-
"field-invalid-non-nullable": "The custom field \"{ name }\" value cannot be set to null",
|
|
30
|
-
"field-invalid-no-permission": "You do not have the required permissions to update the \"{ name }\" field",
|
|
31
|
-
"field-invalid-number-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
32
|
-
"field-invalid-number-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
33
|
-
"field-invalid-readonly": "The custom field \"{ name }\" is readonly",
|
|
34
|
-
"field-invalid-string-option": "The custom field \"{ name }\" value [\"{ value }\"] is invalid. Valid options are [{ validOptions }]",
|
|
35
|
-
"field-invalid-string-pattern": "The custom field \"{ name }\" value [\"{ value }\"] does not match the pattern [{ pattern }]",
|
|
36
|
-
"forbidden": "You are not currently authorized to perform this action",
|
|
37
|
-
"invalid-sort-field": "The sort field \"{ fieldName }\" is invalid. Valid fields are: { validFields }",
|
|
38
|
-
"list-query-limit-exceeded": "Cannot take more than { limit } results from a list query",
|
|
39
|
-
"no-active-tax-zone": "The active tax zone could not be determined. Ensure a default tax zone is set for the current channel.",
|
|
40
|
-
"no-configurable-operation-def-with-code-found": "No { type } with the code \"{ code }\" could be found",
|
|
41
|
-
"no-price-found-for-channel": "No price information was found for ProductVariant ID \"{ variantId}\" in the Channel \"{ channel }\".",
|
|
42
|
-
"no-search-plugin-configured": "No search plugin has been configured",
|
|
43
|
-
"order-could-not-be-determined-or-created": "No active Order could be determined nor created",
|
|
44
|
-
"order-does-not-contain-line-with-id": "This order does not contain an OrderLine with the id { id }",
|
|
45
|
-
"pending-identifier-missing": "Could not find the pending email address to update",
|
|
46
|
-
"permission-invalid": "The permission \"{ permission }\" may not be assigned",
|
|
47
|
-
"product-id-or-slug-must-be-provided": "Either the Product id or slug must be provided",
|
|
48
|
-
"product-id-slug-mismatch": "The provided id and slug refer to different Products",
|
|
49
|
-
"product-option-group-already-assigned": "The ProductOptionGroup \"{ groupCode }\" is already assigned to the Product \"{ productName }\"",
|
|
50
|
-
"product-variant-option-ids-not-compatible": "ProductVariant optionIds must include one optionId from each of the groups: {groupNames}",
|
|
51
|
-
"product-variant-options-combination-already-exists": "A ProductVariant with the selected options already exists: {variantName}",
|
|
52
|
-
"promotion-channels-can-only-be-changed-from-default-channel": "Promotions channels may only be changed from the Default Channel",
|
|
53
|
-
"stockonhand-cannot-be-negative": "stockOnHand cannot be a negative value",
|
|
54
|
-
"superadmin-must-have-superadmin-role": "Cannot remove the SuperAdmin role from the sole SuperAdmin",
|
|
55
|
-
"target-customer-not-assigned-to-order-channels": "The target Customer is not assigned to the same Channels as the Order. Missing channels IDs: { missingChannelIds }",
|
|
56
|
-
"unauthorized": "The credentials did not match. Please check and try again"
|
|
57
|
-
},
|
|
58
|
-
"errorResult": {
|
|
59
|
-
"ALREADY_LOGGED_IN_ERROR": "Cannot set a Customer for the Order when already logged in",
|
|
60
|
-
"ALREADY_REFUNDED_ERROR": "Cannot refund an OrderItem which has already been refunded",
|
|
61
|
-
"CANCEL_ACTIVE_ORDER_ERROR": "Cannot cancel OrderLines from an Order in the \"{ orderState }\" state",
|
|
62
|
-
"CANCEL_PAYMENT_ERROR": "Cancelling the payment failed",
|
|
63
|
-
"CHANNEL_DEFAULT_LANGUAGE_ERROR": "Cannot make language \"{ language }\" unavailable as it is used as the defaultLanguage by the channel \"{ channelCode }\"",
|
|
64
|
-
"COUPON_CODE_EXPIRED_ERROR": "Coupon code \"{ couponCode }\" has expired",
|
|
65
|
-
"COUPON_CODE_INVALID_ERROR": "Coupon code \"{ couponCode }\" is not valid",
|
|
66
|
-
"COUPON_CODE_LIMIT_ERROR": "Coupon code cannot be used more than {limit, plural, one {once} other {# times}} per customer",
|
|
67
|
-
"CREATE_FULFILLMENT_ERROR": "An error occurred when attempting to create the Fulfillment",
|
|
68
|
-
"DUPLICATE_ENTITY_ERROR": "The entity could not be duplicated",
|
|
69
|
-
"EMAIL_ADDRESS_CONFLICT_ERROR": "The email address is not available.",
|
|
70
|
-
"EMPTY_ORDER_LINE_SELECTION_ERROR": "At least one OrderLine must be specified",
|
|
71
|
-
"FACET_IN_USE_ERROR": "The Facet \"{ facetCode }\" includes FacetValues which are assigned to {productCount, plural, =0 {} one {1 Product} other {# Products}} {variantCount, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
72
|
-
"IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR": "Identifier change token not recognized",
|
|
73
|
-
"INELIGIBLE_SHIPPING_METHOD_ERROR": "This Order is not eligible for the selected ShippingMethod",
|
|
74
|
-
"INSUFFICIENT_STOCK_ERROR": "{quantityAvailable, plural, =0 {No items were} one {Only 1 item was} other {Only # items were}} added to the order due to insufficient stock",
|
|
75
|
-
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Cannot create a Fulfillment as \"{productVariantName}\" has insufficient stockOnHand ({stockOnHand})",
|
|
76
|
-
"INVALID_CREDENTIALS_ERROR": "The provided credentials are invalid",
|
|
77
|
-
"ITEMS_ALREADY_FULFILLED_ERROR": "One or more OrderItems are already part of a Fulfillment",
|
|
78
|
-
"LANGUAGE_NOT_AVAILABLE_ERROR": "Language \"{languageCode}\" is not available. First enable it via GlobalSettings and try again",
|
|
79
|
-
"MANUAL_PAYMENT_STATE_ERROR": "A manual payment may only be added when in the \"ArrangingPayment\" or \"ArrangingAdditionalPayment\" states",
|
|
80
|
-
"MIME_TYPE_ERROR": "The MIME type \"{ mimeType }\" is not permitted.",
|
|
81
|
-
"MISSING_CONDITIONS_ERROR": "A Promotion must have either at least one condition or a coupon code set",
|
|
82
|
-
"MISSING_PASSWORD_ERROR": "A password must be provided.",
|
|
83
|
-
"NEGATIVE_QUANTITY_ERROR": "The quantity for an OrderItem cannot be negative",
|
|
84
|
-
"NO_ACTIVE_ORDER_ERROR": "There is no active Order associated with the current session",
|
|
85
|
-
"NOTHING_TO_REFUND_ERROR": "Nothing to refund",
|
|
86
|
-
"NOT_VERIFIED_ERROR": "Please verify this email address before logging in",
|
|
87
|
-
"ORDER_INTERCEPTOR_ERROR": "An error occurred when attempting to modify the Order",
|
|
88
|
-
"ORDER_LIMIT_ERROR": "Cannot add items. An order may consist of a maximum of { maxItems } items",
|
|
89
|
-
"ORDER_MODIFICATION_ERROR": "Order contents may only be modified when in the \"AddingItems\" state",
|
|
90
|
-
"ORDER_PAYMENT_STATE_ERROR": "A Payment may only be added when Order is in \"ArrangingPayment\" state",
|
|
91
|
-
"ORDER_STATE_TRANSITION_ERROR": "Cannot transition Order from \"{ fromState }\" to \"{ toState }\"",
|
|
92
|
-
"PASSWORD_ALREADY_SET_ERROR": "A password has already been set during registration",
|
|
93
|
-
"PASSWORD_RESET_TOKEN_EXPIRED_ERROR": "Password reset token has expired",
|
|
94
|
-
"PASSWORD_RESET_TOKEN_INVALID_ERROR": "Password reset token not recognized",
|
|
95
|
-
"PASSWORD_VALIDATION_ERROR": "Password is invalid",
|
|
96
|
-
"PAYMENT_DECLINED_ERROR": "The payment was declined",
|
|
97
|
-
"PAYMENT_FAILED_ERROR": "The payment failed",
|
|
98
|
-
"PAYMENT_ORDER_MISMATCH_ERROR": "The Payment and OrderLines do not belong to the same Order",
|
|
99
|
-
"PAYMENT_STATE_TRANSITION_ERROR": "Cannot transition Payment from \"{ fromState }\" to \"{ toState }\"",
|
|
100
|
-
"PRODUCT_OPTION_IN_USE_ERROR": "Cannot remove ProductOptionGroup \"{ optionGroupCode }\" as it is used by {productVariantCount, plural, one {1 ProductVariant} other {# ProductVariants}}. Use the `force` argument to remove it anyway",
|
|
101
|
-
"QUANTITY_TOO_GREAT_ERROR": "The specified quantity is greater than the available OrderItems",
|
|
102
|
-
"REFUND_AMOUNT_ERROR": "The amount specified exceeds the refundable amount for this payment",
|
|
103
|
-
"REFUND_ORDER_STATE_ERROR": "Cannot refund an Order in the \"{ orderState }\" state",
|
|
104
|
-
"SETTLE_PAYMENT_ERROR": "Settling the payment failed",
|
|
105
|
-
"VERIFICATION_TOKEN_EXPIRED_ERROR": "Verification token has expired. Use refreshCustomerVerification to send a new token.",
|
|
106
|
-
"VERIFICATION_TOKEN_INVALID_ERROR": "Verification token not recognized"
|
|
107
|
-
},
|
|
108
|
-
"message": {
|
|
109
|
-
"asset-to-be-deleted-is-featured": "The selected {assetCount, plural, one {Asset is} other {Assets are}} featured by {products, plural, =0 {} one {1 Product} other {# Products}} {variants, plural, =0 {} one { 1 ProductVariant} other { # ProductVariants}} {collections, plural, =0 {} one { 1 Collection} other { # Collections}}",
|
|
110
|
-
"cannot-delete-last-stock-location": "The last remaining StockLocation cannot be deleted",
|
|
111
|
-
"cannot-remove-tax-category-due-to-tax-rates": "Cannot remove TaxCategory \"{ name }\" as it is referenced by {count, plural, one {1 TaxRate} other {# TaxRates}}",
|
|
112
|
-
"cannot-transition-order-contains-products-which-are-unavailable": "Cannot transition to \"{ toState }\" because the Order contains ProductVariants which are no longer available",
|
|
113
|
-
"cannot-transition-from-arranging-additional-payment": "Cannot transition away from \"ArrangingAdditionalPayment\" unless Order total is covered by Payments",
|
|
114
|
-
"cannot-transition-order-from-to": "Cannot transition Order from \"{ fromState }\" to \"{ toState }\"",
|
|
115
|
-
"cannot-transition-no-additional-payments-needed": "Cannot transition Order to the \"ArrangingAdditionalPayment\" state as no additional payments are needed",
|
|
116
|
-
"cannot-transition-to-shipping-when-order-is-empty": "Cannot transition Order to the \"ArrangingShipping\" state when it is empty",
|
|
117
|
-
"cannot-transition-to-payment-due-to-insufficient-stock": "Cannot transition Order to the \"ArrangingPayment\" state due to insufficient stock of { productVariantNames }",
|
|
118
|
-
"cannot-transition-to-payment-without-customer": "Cannot transition Order to the \"ArrangingPayment\" state without Customer details",
|
|
119
|
-
"cannot-transition-to-payment-without-shipping-method": "Cannot transition Order to the \"ArrangingPayment\" state without a ShippingMethod",
|
|
120
|
-
"cannot-transition-unless-all-cancelled": "Cannot transition Order to the \"Cancelled\" state unless all OrderItems are cancelled",
|
|
121
|
-
"cannot-transition-unless-all-order-items-delivered": "Cannot transition Order to the \"Delivered\" state unless all OrderItems are delivered",
|
|
122
|
-
"cannot-transition-unless-some-order-items-delivered": "Cannot transition Order to the \"PartiallyDelivered\" state unless some OrderItems are delivered",
|
|
123
|
-
"cannot-transition-unless-some-order-items-shipped": "Cannot transition Order to the \"PartiallyShipped\" state unless some OrderItems are shipped",
|
|
124
|
-
"cannot-transition-unless-all-order-items-shipped": "Cannot transition Order to the \"Shipped\" state unless all OrderItems are shipped",
|
|
125
|
-
"cannot-transition-without-authorized-payments": "Cannot transition Order to the \"PaymentAuthorized\" state when the total is not covered by authorized Payments",
|
|
126
|
-
"cannot-transition-without-modification-payment": "Can only transition to the \"ArrangingAdditionalPayment\" state",
|
|
127
|
-
"cannot-transition-without-settled-payments": "Cannot transition Order to the \"PaymentSettled\" state when the total is not covered by settled Payments",
|
|
128
|
-
"country-used-in-addresses": "The selected Country cannot be deleted as it is used in {count, plural, one {1 Address} other {# Addresses}}",
|
|
129
|
-
"entity-duplication-no-permission": "You do not have the required permissions to duplicate this entity",
|
|
130
|
-
"entity-duplication-no-strategy-found": "No duplication strategy with code \"{ code }\" was found for the entity type \"{ entityName }\"",
|
|
131
|
-
"facet-force-deleted": "The Facet was deleted and its FacetValues were removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
132
|
-
"facet-used": "The Facet \"{ facetCode }\" includes FacetValues which are assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
133
|
-
"facet-value-force-deleted": "The selected FacetValue was removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}} and deleted",
|
|
134
|
-
"facet-value-used": "The FacetValue \"{ facetValueCode }\" is assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
135
|
-
"payment-method-used-in-channels": "The selected PaymentMethod is assigned to the following Channels: { channelCodes }. Set \"force: true\" to delete from all Channels.",
|
|
136
|
-
"product-option-used": "Cannot delete the option \"{code}\" as it is being used by {count, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
137
|
-
"zone-used-in-channels": "The selected Zone cannot be deleted as it used as a default in the following Channels: { channelCodes }",
|
|
138
|
-
"zone-used-in-tax-rates": "The selected Zone cannot be deleted as it is used in the following TaxRates: { taxRateNames }"
|
|
139
|
-
}
|
|
140
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"error": {
|
|
3
|
+
"active-user-does-not-have-sufficient-permissions": "Active user does not have sufficient permissions",
|
|
4
|
+
"available-currency-codes-must-include-default": "availableCurrencyCodes must include the defaultCurrencyCode ({ defaultCurrencyCode })",
|
|
5
|
+
"cannot-delete-role": "The role \"{ roleCode }\" cannot be deleted",
|
|
6
|
+
"cannot-delete-sole-superadmin": "The sole SuperAdmin cannot be deleted",
|
|
7
|
+
"cannot-delete-default-channel": "The default Channel cannot be deleted",
|
|
8
|
+
"cannot-locate-customer-for-user": "Cannot locate a Customer for the user",
|
|
9
|
+
"cannot-modify-role": "The role \"{ roleCode }\" cannot be modified",
|
|
10
|
+
"cannot-move-collection-into-self": "Cannot move a Collection into itself",
|
|
11
|
+
"cannot-transition-payment-from-to": "Cannot transition Payment from \"{ fromState }\" to \"{ toState }\"",
|
|
12
|
+
"cannot-transition-refund-from-to": "Cannot transition Refund from \"{ fromState }\" to \"{ toState }\"",
|
|
13
|
+
"cannot-transition-fulfillment-from-to": "Cannot transition Fulfillment from \"{ fromState }\" to \"{ toState }\"",
|
|
14
|
+
"channel-not-found": "No Channel with the token \"{ token }\" could be found",
|
|
15
|
+
"collection-id-or-slug-must-be-provided": "Either the Collection id or slug must be provided",
|
|
16
|
+
"collection-id-slug-mismatch": "The provided id and slug refer to different Collections",
|
|
17
|
+
"conditions-required-for-action": "The PromotionAction \"{ action }\" requires the following conditions: { conditions }",
|
|
18
|
+
"configurable-argument-is-required": "The argument \"{ name }\" is required",
|
|
19
|
+
"country-code-not-valid": "The countryCode \"{ countryCode }\" was not recognized",
|
|
20
|
+
"currency-not-available-in-channel": "The currency \"{ currencyCode }\" is not available in the current Channel",
|
|
21
|
+
"customer-does-not-belong-to-customer-group": "Customer does not belong to this CustomerGroup",
|
|
22
|
+
"default-channel-not-found": "Default channel not found",
|
|
23
|
+
"entity-has-no-translation-in-language": "Translatable entity \"{ entityName }\" has not been translated into the requested language ({ languageCode })",
|
|
24
|
+
"entity-with-id-not-found": "No { entityName } with the id \"{ id }\" could be found",
|
|
25
|
+
"items-cannot-be-removed-from-default-channel": "Items cannot be removed from the default Channel",
|
|
26
|
+
"facetfilterinput-invalid-input": "A FacetValueFilterInput object may not specify the 'and' and 'or' fields simultaneously",
|
|
27
|
+
"field-invalid-datetime-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
28
|
+
"field-invalid-datetime-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
29
|
+
"field-invalid-non-nullable": "The custom field \"{ name }\" value cannot be set to null",
|
|
30
|
+
"field-invalid-no-permission": "You do not have the required permissions to update the \"{ name }\" field",
|
|
31
|
+
"field-invalid-number-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
32
|
+
"field-invalid-number-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
33
|
+
"field-invalid-readonly": "The custom field \"{ name }\" is readonly",
|
|
34
|
+
"field-invalid-string-option": "The custom field \"{ name }\" value [\"{ value }\"] is invalid. Valid options are [{ validOptions }]",
|
|
35
|
+
"field-invalid-string-pattern": "The custom field \"{ name }\" value [\"{ value }\"] does not match the pattern [{ pattern }]",
|
|
36
|
+
"forbidden": "You are not currently authorized to perform this action",
|
|
37
|
+
"invalid-sort-field": "The sort field \"{ fieldName }\" is invalid. Valid fields are: { validFields }",
|
|
38
|
+
"list-query-limit-exceeded": "Cannot take more than { limit } results from a list query",
|
|
39
|
+
"no-active-tax-zone": "The active tax zone could not be determined. Ensure a default tax zone is set for the current channel.",
|
|
40
|
+
"no-configurable-operation-def-with-code-found": "No { type } with the code \"{ code }\" could be found",
|
|
41
|
+
"no-price-found-for-channel": "No price information was found for ProductVariant ID \"{ variantId}\" in the Channel \"{ channel }\".",
|
|
42
|
+
"no-search-plugin-configured": "No search plugin has been configured",
|
|
43
|
+
"order-could-not-be-determined-or-created": "No active Order could be determined nor created",
|
|
44
|
+
"order-does-not-contain-line-with-id": "This order does not contain an OrderLine with the id { id }",
|
|
45
|
+
"pending-identifier-missing": "Could not find the pending email address to update",
|
|
46
|
+
"permission-invalid": "The permission \"{ permission }\" may not be assigned",
|
|
47
|
+
"product-id-or-slug-must-be-provided": "Either the Product id or slug must be provided",
|
|
48
|
+
"product-id-slug-mismatch": "The provided id and slug refer to different Products",
|
|
49
|
+
"product-option-group-already-assigned": "The ProductOptionGroup \"{ groupCode }\" is already assigned to the Product \"{ productName }\"",
|
|
50
|
+
"product-variant-option-ids-not-compatible": "ProductVariant optionIds must include one optionId from each of the groups: {groupNames}",
|
|
51
|
+
"product-variant-options-combination-already-exists": "A ProductVariant with the selected options already exists: {variantName}",
|
|
52
|
+
"promotion-channels-can-only-be-changed-from-default-channel": "Promotions channels may only be changed from the Default Channel",
|
|
53
|
+
"stockonhand-cannot-be-negative": "stockOnHand cannot be a negative value",
|
|
54
|
+
"superadmin-must-have-superadmin-role": "Cannot remove the SuperAdmin role from the sole SuperAdmin",
|
|
55
|
+
"target-customer-not-assigned-to-order-channels": "The target Customer is not assigned to the same Channels as the Order. Missing channels IDs: { missingChannelIds }",
|
|
56
|
+
"unauthorized": "The credentials did not match. Please check and try again"
|
|
57
|
+
},
|
|
58
|
+
"errorResult": {
|
|
59
|
+
"ALREADY_LOGGED_IN_ERROR": "Cannot set a Customer for the Order when already logged in",
|
|
60
|
+
"ALREADY_REFUNDED_ERROR": "Cannot refund an OrderItem which has already been refunded",
|
|
61
|
+
"CANCEL_ACTIVE_ORDER_ERROR": "Cannot cancel OrderLines from an Order in the \"{ orderState }\" state",
|
|
62
|
+
"CANCEL_PAYMENT_ERROR": "Cancelling the payment failed",
|
|
63
|
+
"CHANNEL_DEFAULT_LANGUAGE_ERROR": "Cannot make language \"{ language }\" unavailable as it is used as the defaultLanguage by the channel \"{ channelCode }\"",
|
|
64
|
+
"COUPON_CODE_EXPIRED_ERROR": "Coupon code \"{ couponCode }\" has expired",
|
|
65
|
+
"COUPON_CODE_INVALID_ERROR": "Coupon code \"{ couponCode }\" is not valid",
|
|
66
|
+
"COUPON_CODE_LIMIT_ERROR": "Coupon code cannot be used more than {limit, plural, one {once} other {# times}} per customer",
|
|
67
|
+
"CREATE_FULFILLMENT_ERROR": "An error occurred when attempting to create the Fulfillment",
|
|
68
|
+
"DUPLICATE_ENTITY_ERROR": "The entity could not be duplicated",
|
|
69
|
+
"EMAIL_ADDRESS_CONFLICT_ERROR": "The email address is not available.",
|
|
70
|
+
"EMPTY_ORDER_LINE_SELECTION_ERROR": "At least one OrderLine must be specified",
|
|
71
|
+
"FACET_IN_USE_ERROR": "The Facet \"{ facetCode }\" includes FacetValues which are assigned to {productCount, plural, =0 {} one {1 Product} other {# Products}} {variantCount, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
72
|
+
"IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR": "Identifier change token not recognized",
|
|
73
|
+
"INELIGIBLE_SHIPPING_METHOD_ERROR": "This Order is not eligible for the selected ShippingMethod",
|
|
74
|
+
"INSUFFICIENT_STOCK_ERROR": "{quantityAvailable, plural, =0 {No items were} one {Only 1 item was} other {Only # items were}} added to the order due to insufficient stock",
|
|
75
|
+
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Cannot create a Fulfillment as \"{productVariantName}\" has insufficient stockOnHand ({stockOnHand})",
|
|
76
|
+
"INVALID_CREDENTIALS_ERROR": "The provided credentials are invalid",
|
|
77
|
+
"ITEMS_ALREADY_FULFILLED_ERROR": "One or more OrderItems are already part of a Fulfillment",
|
|
78
|
+
"LANGUAGE_NOT_AVAILABLE_ERROR": "Language \"{languageCode}\" is not available. First enable it via GlobalSettings and try again",
|
|
79
|
+
"MANUAL_PAYMENT_STATE_ERROR": "A manual payment may only be added when in the \"ArrangingPayment\" or \"ArrangingAdditionalPayment\" states",
|
|
80
|
+
"MIME_TYPE_ERROR": "The MIME type \"{ mimeType }\" is not permitted.",
|
|
81
|
+
"MISSING_CONDITIONS_ERROR": "A Promotion must have either at least one condition or a coupon code set",
|
|
82
|
+
"MISSING_PASSWORD_ERROR": "A password must be provided.",
|
|
83
|
+
"NEGATIVE_QUANTITY_ERROR": "The quantity for an OrderItem cannot be negative",
|
|
84
|
+
"NO_ACTIVE_ORDER_ERROR": "There is no active Order associated with the current session",
|
|
85
|
+
"NOTHING_TO_REFUND_ERROR": "Nothing to refund",
|
|
86
|
+
"NOT_VERIFIED_ERROR": "Please verify this email address before logging in",
|
|
87
|
+
"ORDER_INTERCEPTOR_ERROR": "An error occurred when attempting to modify the Order",
|
|
88
|
+
"ORDER_LIMIT_ERROR": "Cannot add items. An order may consist of a maximum of { maxItems } items",
|
|
89
|
+
"ORDER_MODIFICATION_ERROR": "Order contents may only be modified when in the \"AddingItems\" state",
|
|
90
|
+
"ORDER_PAYMENT_STATE_ERROR": "A Payment may only be added when Order is in \"ArrangingPayment\" state",
|
|
91
|
+
"ORDER_STATE_TRANSITION_ERROR": "Cannot transition Order from \"{ fromState }\" to \"{ toState }\"",
|
|
92
|
+
"PASSWORD_ALREADY_SET_ERROR": "A password has already been set during registration",
|
|
93
|
+
"PASSWORD_RESET_TOKEN_EXPIRED_ERROR": "Password reset token has expired",
|
|
94
|
+
"PASSWORD_RESET_TOKEN_INVALID_ERROR": "Password reset token not recognized",
|
|
95
|
+
"PASSWORD_VALIDATION_ERROR": "Password is invalid",
|
|
96
|
+
"PAYMENT_DECLINED_ERROR": "The payment was declined",
|
|
97
|
+
"PAYMENT_FAILED_ERROR": "The payment failed",
|
|
98
|
+
"PAYMENT_ORDER_MISMATCH_ERROR": "The Payment and OrderLines do not belong to the same Order",
|
|
99
|
+
"PAYMENT_STATE_TRANSITION_ERROR": "Cannot transition Payment from \"{ fromState }\" to \"{ toState }\"",
|
|
100
|
+
"PRODUCT_OPTION_IN_USE_ERROR": "Cannot remove ProductOptionGroup \"{ optionGroupCode }\" as it is used by {productVariantCount, plural, one {1 ProductVariant} other {# ProductVariants}}. Use the `force` argument to remove it anyway",
|
|
101
|
+
"QUANTITY_TOO_GREAT_ERROR": "The specified quantity is greater than the available OrderItems",
|
|
102
|
+
"REFUND_AMOUNT_ERROR": "The amount specified exceeds the refundable amount for this payment",
|
|
103
|
+
"REFUND_ORDER_STATE_ERROR": "Cannot refund an Order in the \"{ orderState }\" state",
|
|
104
|
+
"SETTLE_PAYMENT_ERROR": "Settling the payment failed",
|
|
105
|
+
"VERIFICATION_TOKEN_EXPIRED_ERROR": "Verification token has expired. Use refreshCustomerVerification to send a new token.",
|
|
106
|
+
"VERIFICATION_TOKEN_INVALID_ERROR": "Verification token not recognized"
|
|
107
|
+
},
|
|
108
|
+
"message": {
|
|
109
|
+
"asset-to-be-deleted-is-featured": "The selected {assetCount, plural, one {Asset is} other {Assets are}} featured by {products, plural, =0 {} one {1 Product} other {# Products}} {variants, plural, =0 {} one { 1 ProductVariant} other { # ProductVariants}} {collections, plural, =0 {} one { 1 Collection} other { # Collections}}",
|
|
110
|
+
"cannot-delete-last-stock-location": "The last remaining StockLocation cannot be deleted",
|
|
111
|
+
"cannot-remove-tax-category-due-to-tax-rates": "Cannot remove TaxCategory \"{ name }\" as it is referenced by {count, plural, one {1 TaxRate} other {# TaxRates}}",
|
|
112
|
+
"cannot-transition-order-contains-products-which-are-unavailable": "Cannot transition to \"{ toState }\" because the Order contains ProductVariants which are no longer available",
|
|
113
|
+
"cannot-transition-from-arranging-additional-payment": "Cannot transition away from \"ArrangingAdditionalPayment\" unless Order total is covered by Payments",
|
|
114
|
+
"cannot-transition-order-from-to": "Cannot transition Order from \"{ fromState }\" to \"{ toState }\"",
|
|
115
|
+
"cannot-transition-no-additional-payments-needed": "Cannot transition Order to the \"ArrangingAdditionalPayment\" state as no additional payments are needed",
|
|
116
|
+
"cannot-transition-to-shipping-when-order-is-empty": "Cannot transition Order to the \"ArrangingShipping\" state when it is empty",
|
|
117
|
+
"cannot-transition-to-payment-due-to-insufficient-stock": "Cannot transition Order to the \"ArrangingPayment\" state due to insufficient stock of { productVariantNames }",
|
|
118
|
+
"cannot-transition-to-payment-without-customer": "Cannot transition Order to the \"ArrangingPayment\" state without Customer details",
|
|
119
|
+
"cannot-transition-to-payment-without-shipping-method": "Cannot transition Order to the \"ArrangingPayment\" state without a ShippingMethod",
|
|
120
|
+
"cannot-transition-unless-all-cancelled": "Cannot transition Order to the \"Cancelled\" state unless all OrderItems are cancelled",
|
|
121
|
+
"cannot-transition-unless-all-order-items-delivered": "Cannot transition Order to the \"Delivered\" state unless all OrderItems are delivered",
|
|
122
|
+
"cannot-transition-unless-some-order-items-delivered": "Cannot transition Order to the \"PartiallyDelivered\" state unless some OrderItems are delivered",
|
|
123
|
+
"cannot-transition-unless-some-order-items-shipped": "Cannot transition Order to the \"PartiallyShipped\" state unless some OrderItems are shipped",
|
|
124
|
+
"cannot-transition-unless-all-order-items-shipped": "Cannot transition Order to the \"Shipped\" state unless all OrderItems are shipped",
|
|
125
|
+
"cannot-transition-without-authorized-payments": "Cannot transition Order to the \"PaymentAuthorized\" state when the total is not covered by authorized Payments",
|
|
126
|
+
"cannot-transition-without-modification-payment": "Can only transition to the \"ArrangingAdditionalPayment\" state",
|
|
127
|
+
"cannot-transition-without-settled-payments": "Cannot transition Order to the \"PaymentSettled\" state when the total is not covered by settled Payments",
|
|
128
|
+
"country-used-in-addresses": "The selected Country cannot be deleted as it is used in {count, plural, one {1 Address} other {# Addresses}}",
|
|
129
|
+
"entity-duplication-no-permission": "You do not have the required permissions to duplicate this entity",
|
|
130
|
+
"entity-duplication-no-strategy-found": "No duplication strategy with code \"{ code }\" was found for the entity type \"{ entityName }\"",
|
|
131
|
+
"facet-force-deleted": "The Facet was deleted and its FacetValues were removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
132
|
+
"facet-used": "The Facet \"{ facetCode }\" includes FacetValues which are assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
133
|
+
"facet-value-force-deleted": "The selected FacetValue was removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}} and deleted",
|
|
134
|
+
"facet-value-used": "The FacetValue \"{ facetValueCode }\" is assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
135
|
+
"payment-method-used-in-channels": "The selected PaymentMethod is assigned to the following Channels: { channelCodes }. Set \"force: true\" to delete from all Channels.",
|
|
136
|
+
"product-option-used": "Cannot delete the option \"{code}\" as it is being used by {count, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
137
|
+
"zone-used-in-channels": "The selected Zone cannot be deleted as it used as a default in the following Channels: { channelCodes }",
|
|
138
|
+
"zone-used-in-tax-rates": "The selected Zone cannot be deleted as it is used in the following TaxRates: { taxRateNames }"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"error": {
|
|
3
|
-
"cannot-modify-role": "El rol \"{ roleCode }\" no puede ser modificado",
|
|
4
|
-
"cannot-move-product-category-into-self": "No se puede mover la categoría de producto, a dentro de si misma",
|
|
5
|
-
"cannot-transition-order-from-to": "No se puede cambiar el estado del pedido de \"{ fromState }\" a \"{ toState }\"",
|
|
6
|
-
"cannot-transition-to-shipping-when-order-is-empty": "No se puede cambiar el estado del envío a \"ArrangingShipping\" cuando esta vacío",
|
|
7
|
-
"cannot-transition-to-payment-without-customer": "No se puede cambiar el estado del pago a \"ArrangingPayment\"sin detalles del Cliente",
|
|
8
|
-
"channel-not-found": "Ningún canal con el token \"{ token }\" existe",
|
|
9
|
-
"country-code-not-valid": "El código de país \"{ countryCode }\" no fue reconocido",
|
|
10
|
-
"email-address-not-verified": "Por favor verifica este email, antes de iniciar sesión",
|
|
11
|
-
"entity-has-no-translation-in-language": "Entidad traducible \"{ entityName }\" no ha sido traducida al idioma seleccionando ({ languageCode })",
|
|
12
|
-
"entity-with-id-not-found": "No { entityName } con el id \"{ id }\" se ha encontrado",
|
|
13
|
-
"forbidden": "Actualmente no estás autorizado a realizar esta acción",
|
|
14
|
-
"invalid-sort-field": "El campo de ordenar \"{ fieldName }\" es inválido. Campos válidos: { validFields }",
|
|
15
|
-
"missing-password-on-registration": "Una contraseña debe proporcionarse cuándo `authOptions.requireVerification` está en \"false\"",
|
|
16
|
-
"no-search-plugin-configured": "No se ha configurado ningún plugin de búsqueda",
|
|
17
|
-
"no-valid-channel-specified": "No se ha especificado ningún canal válido (asegúrate de que el encabezado 'vendure-token' sea especificado en el requisito)",
|
|
18
|
-
"order-contents-may-only-be-modified-in-addingitems-state": "Los contenidos de un pedido solo pueden ser modificados durante el \"AddingItems\" estado ",
|
|
19
|
-
"order-does-not-contain-line-with-id": "Este pedido no contiene una línea de pedido con el id { id }",
|
|
20
|
-
"order-item-quantity-must-be-positive": "no es una cantidad válida para una linea de pedido",
|
|
21
|
-
"order-items-limit-exceeded": "No es posible añadir artículos, Un pedido puede consistir de un máximo de { maxItems } artículos ",
|
|
22
|
-
"payment-may-only-be-added-in-arrangingpayment-state": "Un pago sólo puede ser añadido cuando el pedido se encuentra en el estado de \"ArrangingPayment\"",
|
|
23
|
-
"password-reset-token-has-expired": "Este token de restablecimiento de contraseña ha expirado.",
|
|
24
|
-
"password-reset-token-not-recognized": "No reconocemos este token de restablecimiento de contraseña",
|
|
25
|
-
"verification-token-has-expired": "Este token de verificación ha expirado. Utiliza refreshCustomerVerification para enviar un nuevo token.",
|
|
26
|
-
"verification-token-not-recognized": "No reconocemos este token de verificación",
|
|
27
|
-
"unauthorized": "Las credenciales no concuerdan, por favor comprueba y vuelve a probar",
|
|
28
|
-
"unexpected-password-on-registration": "No proveer conntraseña cuándo `authOptions.requireVerification` está \"true\""
|
|
29
|
-
},
|
|
30
|
-
"message": {
|
|
31
|
-
"country-used-in-addresses": "El país seleccionado no puede ser eliminado ya que es usado en {count, plural, one {1 Dirección} other {# Direcciones}}",
|
|
32
|
-
"facet-force-deleted": "El valor de faceta fue eliminado, y sus instancias fueron eliminadas en {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
33
|
-
"facet-used": "El valor de faceta seleccionado, incluye valores que están asignados a {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
34
|
-
"facet-value-force-deleted": "El valor de faceta seleccionado, fue eliminnado de {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}} and deleted",
|
|
35
|
-
"facet-value-used": "El valor de faceta seleccionado, está asignado a {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
36
|
-
"zone-used-in-tax-rates": "La zona seleccionada no se puede eliminar, es usada por estas Tasas de impuestos: { taxRateNames }"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"error": {
|
|
3
|
+
"cannot-modify-role": "El rol \"{ roleCode }\" no puede ser modificado",
|
|
4
|
+
"cannot-move-product-category-into-self": "No se puede mover la categoría de producto, a dentro de si misma",
|
|
5
|
+
"cannot-transition-order-from-to": "No se puede cambiar el estado del pedido de \"{ fromState }\" a \"{ toState }\"",
|
|
6
|
+
"cannot-transition-to-shipping-when-order-is-empty": "No se puede cambiar el estado del envío a \"ArrangingShipping\" cuando esta vacío",
|
|
7
|
+
"cannot-transition-to-payment-without-customer": "No se puede cambiar el estado del pago a \"ArrangingPayment\"sin detalles del Cliente",
|
|
8
|
+
"channel-not-found": "Ningún canal con el token \"{ token }\" existe",
|
|
9
|
+
"country-code-not-valid": "El código de país \"{ countryCode }\" no fue reconocido",
|
|
10
|
+
"email-address-not-verified": "Por favor verifica este email, antes de iniciar sesión",
|
|
11
|
+
"entity-has-no-translation-in-language": "Entidad traducible \"{ entityName }\" no ha sido traducida al idioma seleccionando ({ languageCode })",
|
|
12
|
+
"entity-with-id-not-found": "No { entityName } con el id \"{ id }\" se ha encontrado",
|
|
13
|
+
"forbidden": "Actualmente no estás autorizado a realizar esta acción",
|
|
14
|
+
"invalid-sort-field": "El campo de ordenar \"{ fieldName }\" es inválido. Campos válidos: { validFields }",
|
|
15
|
+
"missing-password-on-registration": "Una contraseña debe proporcionarse cuándo `authOptions.requireVerification` está en \"false\"",
|
|
16
|
+
"no-search-plugin-configured": "No se ha configurado ningún plugin de búsqueda",
|
|
17
|
+
"no-valid-channel-specified": "No se ha especificado ningún canal válido (asegúrate de que el encabezado 'vendure-token' sea especificado en el requisito)",
|
|
18
|
+
"order-contents-may-only-be-modified-in-addingitems-state": "Los contenidos de un pedido solo pueden ser modificados durante el \"AddingItems\" estado ",
|
|
19
|
+
"order-does-not-contain-line-with-id": "Este pedido no contiene una línea de pedido con el id { id }",
|
|
20
|
+
"order-item-quantity-must-be-positive": "no es una cantidad válida para una linea de pedido",
|
|
21
|
+
"order-items-limit-exceeded": "No es posible añadir artículos, Un pedido puede consistir de un máximo de { maxItems } artículos ",
|
|
22
|
+
"payment-may-only-be-added-in-arrangingpayment-state": "Un pago sólo puede ser añadido cuando el pedido se encuentra en el estado de \"ArrangingPayment\"",
|
|
23
|
+
"password-reset-token-has-expired": "Este token de restablecimiento de contraseña ha expirado.",
|
|
24
|
+
"password-reset-token-not-recognized": "No reconocemos este token de restablecimiento de contraseña",
|
|
25
|
+
"verification-token-has-expired": "Este token de verificación ha expirado. Utiliza refreshCustomerVerification para enviar un nuevo token.",
|
|
26
|
+
"verification-token-not-recognized": "No reconocemos este token de verificación",
|
|
27
|
+
"unauthorized": "Las credenciales no concuerdan, por favor comprueba y vuelve a probar",
|
|
28
|
+
"unexpected-password-on-registration": "No proveer conntraseña cuándo `authOptions.requireVerification` está \"true\""
|
|
29
|
+
},
|
|
30
|
+
"message": {
|
|
31
|
+
"country-used-in-addresses": "El país seleccionado no puede ser eliminado ya que es usado en {count, plural, one {1 Dirección} other {# Direcciones}}",
|
|
32
|
+
"facet-force-deleted": "El valor de faceta fue eliminado, y sus instancias fueron eliminadas en {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
33
|
+
"facet-used": "El valor de faceta seleccionado, incluye valores que están asignados a {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
34
|
+
"facet-value-force-deleted": "El valor de faceta seleccionado, fue eliminnado de {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}} and deleted",
|
|
35
|
+
"facet-value-used": "El valor de faceta seleccionado, está asignado a {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
36
|
+
"zone-used-in-tax-rates": "La zona seleccionada no se puede eliminar, es usada por estas Tasas de impuestos: { taxRateNames }"
|
|
37
|
+
}
|
|
38
|
+
}
|