@vendure/core 2.0.2 → 2.0.4
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/dist/api/api-internal-modules.d.ts +2 -2
- package/dist/api/api-internal-modules.js +1 -1
- package/dist/api/api-internal-modules.js.map +1 -1
- package/dist/api/config/configure-graphql-module.js +1 -1
- package/dist/api/config/configure-graphql-module.js.map +1 -1
- package/dist/api/resolvers/admin/auth.resolver.js +12 -1
- package/dist/api/resolvers/admin/auth.resolver.js.map +1 -1
- package/dist/api/resolvers/admin/order.resolver.d.ts +1 -1
- package/dist/api/resolvers/base/base-auth.resolver.d.ts +1 -4
- package/dist/api/resolvers/base/base-auth.resolver.js +0 -14
- package/dist/api/resolvers/base/base-auth.resolver.js.map +1 -1
- package/dist/api/resolvers/entity/product-entity.resolver.d.ts +3 -1
- package/dist/api/resolvers/entity/product-entity.resolver.js +11 -10
- package/dist/api/resolvers/entity/product-entity.resolver.js.map +1 -1
- package/dist/api/resolvers/shop/shop-auth.resolver.js +11 -1
- package/dist/api/resolvers/shop/shop-auth.resolver.js.map +1 -1
- package/dist/common/types/common-types.d.ts +22 -0
- package/dist/config/default-config.js +1 -0
- package/dist/config/default-config.js.map +1 -1
- package/dist/config/order/default-order-process.js +5 -0
- package/dist/config/order/default-order-process.js.map +1 -1
- package/dist/config/promotion/index.d.ts +53 -53
- package/dist/config/session-cache/session-cache-strategy.d.ts +24 -8
- package/dist/connection/connection.module.d.ts +1 -1
- package/dist/i18n/i18n.service.d.ts +1 -1
- package/dist/i18n/i18n.service.js +3 -3
- package/dist/i18n/i18n.service.js.map +1 -1
- package/dist/i18n/messages/de.json +4 -4
- package/dist/i18n/messages/en.json +23 -23
- package/dist/i18n/messages/es.json +8 -8
- package/dist/i18n/messages/pt_BR.json +16 -16
- package/dist/i18n/messages/pt_PT.json +24 -24
- package/dist/i18n/messages/ru.json +23 -23
- package/dist/i18n/messages/uk.json +23 -23
- package/dist/service/helpers/locale-string-hydrator/locale-string-hydrator.js +2 -2
- package/dist/service/helpers/locale-string-hydrator/locale-string-hydrator.js.map +1 -1
- package/dist/service/helpers/order-modifier/order-modifier.d.ts +1 -1
- package/dist/service/helpers/request-context/request-context.service.d.ts +2 -1
- package/dist/service/helpers/request-context/request-context.service.js +2 -1
- package/dist/service/helpers/request-context/request-context.service.js.map +1 -1
- package/dist/service/services/channel.service.js +18 -0
- package/dist/service/services/channel.service.js.map +1 -1
- package/dist/service/services/customer.service.js +1 -1
- package/dist/service/services/customer.service.js.map +1 -1
- package/dist/service/services/product-variant.service.js +3 -3
- package/dist/service/services/product-variant.service.js.map +1 -1
- package/dist/service/services/product.service.js +1 -1
- package/dist/service/services/product.service.js.map +1 -1
- package/dist/service/services/session.service.d.ts +6 -0
- package/dist/service/services/session.service.js +20 -9
- package/dist/service/services/session.service.js.map +1 -1
- package/dist/service/services/stock-location.service.js +5 -8
- package/dist/service/services/stock-location.service.js.map +1 -1
- package/dist/service/services/user.service.d.ts +4 -2
- package/dist/service/services/user.service.js +17 -13
- package/dist/service/services/user.service.js.map +1 -1
- package/package.json +8 -7
|
@@ -12,22 +12,42 @@ export * from './conditions/contains-products-condition';
|
|
|
12
12
|
export * from './conditions/customer-group-condition';
|
|
13
13
|
export * from './conditions/buy-x-get-y-free-condition';
|
|
14
14
|
export * from './utils/facet-value-checker';
|
|
15
|
-
export declare const defaultPromotionActions: (import("./promotion-action").
|
|
16
|
-
|
|
15
|
+
export declare const defaultPromotionActions: (import("./promotion-action").PromotionItemAction<{}, import("./promotion-condition").PromotionCondition<{
|
|
16
|
+
amountX: {
|
|
17
17
|
type: "int";
|
|
18
|
+
defaultValue: number;
|
|
19
|
+
};
|
|
20
|
+
variantIdsX: {
|
|
21
|
+
type: "ID";
|
|
22
|
+
list: true;
|
|
18
23
|
ui: {
|
|
19
24
|
component: string;
|
|
20
25
|
};
|
|
26
|
+
label: {
|
|
27
|
+
languageCode: import("@vendure/common/lib/generated-types").LanguageCode.en;
|
|
28
|
+
value: string;
|
|
29
|
+
}[];
|
|
21
30
|
};
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
31
|
+
amountY: {
|
|
32
|
+
type: "int";
|
|
33
|
+
defaultValue: number;
|
|
34
|
+
};
|
|
35
|
+
variantIdsY: {
|
|
36
|
+
type: "ID";
|
|
37
|
+
list: true;
|
|
25
38
|
ui: {
|
|
26
39
|
component: string;
|
|
27
|
-
suffix: string;
|
|
28
40
|
};
|
|
41
|
+
label: {
|
|
42
|
+
languageCode: import("@vendure/common/lib/generated-types").LanguageCode.en;
|
|
43
|
+
value: string;
|
|
44
|
+
}[];
|
|
29
45
|
};
|
|
30
|
-
},
|
|
46
|
+
}, "buy_x_get_y_free", false | {
|
|
47
|
+
freeItemsPerLine: {
|
|
48
|
+
[lineId: string]: number;
|
|
49
|
+
};
|
|
50
|
+
}>[]> | import("./promotion-action").PromotionItemAction<{
|
|
31
51
|
discount: {
|
|
32
52
|
type: "float";
|
|
33
53
|
ui: {
|
|
@@ -42,6 +62,21 @@ export declare const defaultPromotionActions: (import("./promotion-action").Prom
|
|
|
42
62
|
component: string;
|
|
43
63
|
};
|
|
44
64
|
};
|
|
65
|
+
}, []> | import("./promotion-action").PromotionShippingAction<{}, []> | import("./promotion-action").PromotionOrderAction<{
|
|
66
|
+
discount: {
|
|
67
|
+
type: "int";
|
|
68
|
+
ui: {
|
|
69
|
+
component: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
}, []> | import("./promotion-action").PromotionOrderAction<{
|
|
73
|
+
discount: {
|
|
74
|
+
type: "float";
|
|
75
|
+
ui: {
|
|
76
|
+
component: string;
|
|
77
|
+
suffix: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
45
80
|
}, []> | import("./promotion-action").PromotionItemAction<{
|
|
46
81
|
discount: {
|
|
47
82
|
type: "float";
|
|
@@ -61,7 +96,8 @@ export declare const defaultPromotionActions: (import("./promotion-action").Prom
|
|
|
61
96
|
value: string;
|
|
62
97
|
}[];
|
|
63
98
|
};
|
|
64
|
-
}, []>
|
|
99
|
+
}, []>)[];
|
|
100
|
+
export declare const defaultPromotionConditions: (import("./promotion-condition").PromotionCondition<{
|
|
65
101
|
amountX: {
|
|
66
102
|
type: "int";
|
|
67
103
|
defaultValue: number;
|
|
@@ -96,32 +132,7 @@ export declare const defaultPromotionActions: (import("./promotion-action").Prom
|
|
|
96
132
|
freeItemsPerLine: {
|
|
97
133
|
[lineId: string]: number;
|
|
98
134
|
};
|
|
99
|
-
}>
|
|
100
|
-
export declare const defaultPromotionConditions: (import("./promotion-condition").PromotionCondition<{
|
|
101
|
-
amount: {
|
|
102
|
-
type: "int";
|
|
103
|
-
defaultValue: number;
|
|
104
|
-
ui: {
|
|
105
|
-
component: string;
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
taxInclusive: {
|
|
109
|
-
type: "boolean";
|
|
110
|
-
defaultValue: false;
|
|
111
|
-
};
|
|
112
|
-
}, "minimum_order_amount", boolean> | import("./promotion-condition").PromotionCondition<{
|
|
113
|
-
minimum: {
|
|
114
|
-
type: "int";
|
|
115
|
-
defaultValue: number;
|
|
116
|
-
};
|
|
117
|
-
facets: {
|
|
118
|
-
type: "ID";
|
|
119
|
-
list: true;
|
|
120
|
-
ui: {
|
|
121
|
-
component: string;
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
}, "at_least_n_with_facets", boolean> | import("./promotion-condition").PromotionCondition<{
|
|
135
|
+
}> | import("./promotion-condition").PromotionCondition<{
|
|
125
136
|
minimum: {
|
|
126
137
|
type: "int";
|
|
127
138
|
defaultValue: number;
|
|
@@ -149,38 +160,27 @@ export declare const defaultPromotionConditions: (import("./promotion-condition"
|
|
|
149
160
|
}[];
|
|
150
161
|
};
|
|
151
162
|
}, "customer_group", boolean> | import("./promotion-condition").PromotionCondition<{
|
|
152
|
-
|
|
163
|
+
minimum: {
|
|
153
164
|
type: "int";
|
|
154
165
|
defaultValue: number;
|
|
155
166
|
};
|
|
156
|
-
|
|
167
|
+
facets: {
|
|
157
168
|
type: "ID";
|
|
158
169
|
list: true;
|
|
159
170
|
ui: {
|
|
160
171
|
component: string;
|
|
161
172
|
};
|
|
162
|
-
label: {
|
|
163
|
-
languageCode: import("@vendure/common/lib/generated-types").LanguageCode.en;
|
|
164
|
-
value: string;
|
|
165
|
-
}[];
|
|
166
173
|
};
|
|
167
|
-
|
|
174
|
+
}, "at_least_n_with_facets", boolean> | import("./promotion-condition").PromotionCondition<{
|
|
175
|
+
amount: {
|
|
168
176
|
type: "int";
|
|
169
177
|
defaultValue: number;
|
|
170
|
-
};
|
|
171
|
-
variantIdsY: {
|
|
172
|
-
type: "ID";
|
|
173
|
-
list: true;
|
|
174
178
|
ui: {
|
|
175
179
|
component: string;
|
|
176
180
|
};
|
|
177
|
-
label: {
|
|
178
|
-
languageCode: import("@vendure/common/lib/generated-types").LanguageCode.en;
|
|
179
|
-
value: string;
|
|
180
|
-
}[];
|
|
181
181
|
};
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
taxInclusive: {
|
|
183
|
+
type: "boolean";
|
|
184
|
+
defaultValue: false;
|
|
185
185
|
};
|
|
186
|
-
}>)[];
|
|
186
|
+
}, "minimum_order_amount", boolean>)[];
|
|
@@ -75,23 +75,39 @@ export type CachedSession = {
|
|
|
75
75
|
* this.client.on('error', err => Logger.error(err.message, loggerCtx, err.stack));
|
|
76
76
|
* }
|
|
77
77
|
*
|
|
78
|
+
* async destroy() {
|
|
79
|
+
* await this.client.quit();
|
|
80
|
+
* }
|
|
81
|
+
*
|
|
78
82
|
* async get(sessionToken: string): Promise<CachedSession | undefined> {
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
83
|
+
* try {
|
|
84
|
+
* const retrieved = await this.client.get(this.namespace(sessionToken));
|
|
85
|
+
* if (retrieved) {
|
|
86
|
+
* try {
|
|
87
|
+
* return JSON.parse(retrieved);
|
|
88
|
+
* } catch (e: any) {
|
|
89
|
+
* Logger.error(`Could not parse cached session data: ${e.message}`, loggerCtx);
|
|
90
|
+
* }
|
|
85
91
|
* }
|
|
92
|
+
* } catch (e: any) {
|
|
93
|
+
* Logger.error(`Could not get cached session: ${e.message}`, loggerCtx);
|
|
86
94
|
* }
|
|
87
95
|
* }
|
|
88
96
|
*
|
|
89
97
|
* async set(session: CachedSession) {
|
|
90
|
-
*
|
|
98
|
+
* try {
|
|
99
|
+
* await this.client.set(this.namespace(session.token), JSON.stringify(session));
|
|
100
|
+
* } catch (e: any) {
|
|
101
|
+
* Logger.error(`Could not set cached session: ${e.message}`, loggerCtx);
|
|
102
|
+
* }
|
|
91
103
|
* }
|
|
92
104
|
*
|
|
93
105
|
* async delete(sessionToken: string) {
|
|
94
|
-
*
|
|
106
|
+
* try {
|
|
107
|
+
* await this.client.del(this.namespace(sessionToken));
|
|
108
|
+
* } catch (e: any) {
|
|
109
|
+
* Logger.error(`Could not delete cached session: ${e.message}`, loggerCtx);
|
|
110
|
+
* }
|
|
95
111
|
* }
|
|
96
112
|
*
|
|
97
113
|
* clear() {
|
|
@@ -3,5 +3,5 @@ import { DataSourceOptions } from 'typeorm';
|
|
|
3
3
|
export declare class ConnectionModule {
|
|
4
4
|
static forRoot(): DynamicModule;
|
|
5
5
|
static forPlugin(): DynamicModule;
|
|
6
|
-
static getTypeOrmLogger(dbConnectionOptions: DataSourceOptions): "debug" | "advanced-console" | "simple-console" | "file"
|
|
6
|
+
static getTypeOrmLogger(dbConnectionOptions: DataSourceOptions): import("typeorm").Logger | "debug" | "advanced-console" | "simple-console" | "file";
|
|
7
7
|
}
|
|
@@ -39,8 +39,8 @@ exports.I18nService = void 0;
|
|
|
39
39
|
const common_1 = require("@nestjs/common");
|
|
40
40
|
const fs = __importStar(require("fs"));
|
|
41
41
|
const i18next_1 = __importDefault(require("i18next"));
|
|
42
|
-
const i18next_express_middleware_1 = __importDefault(require("i18next-express-middleware"));
|
|
43
42
|
const i18next_fs_backend_1 = __importDefault(require("i18next-fs-backend"));
|
|
43
|
+
const i18next_http_middleware_1 = __importDefault(require("i18next-http-middleware"));
|
|
44
44
|
const i18next_icu_1 = __importDefault(require("i18next-icu"));
|
|
45
45
|
const path_1 = __importDefault(require("path"));
|
|
46
46
|
const config_1 = require("../config");
|
|
@@ -69,7 +69,7 @@ let I18nService = class I18nService {
|
|
|
69
69
|
*/
|
|
70
70
|
onModuleInit() {
|
|
71
71
|
return i18next_1.default
|
|
72
|
-
.use(
|
|
72
|
+
.use(i18next_http_middleware_1.default.LanguageDetector)
|
|
73
73
|
.use(i18next_fs_backend_1.default)
|
|
74
74
|
.use(i18next_icu_1.default)
|
|
75
75
|
.init({
|
|
@@ -89,7 +89,7 @@ let I18nService = class I18nService {
|
|
|
89
89
|
* @internal
|
|
90
90
|
*/
|
|
91
91
|
handle() {
|
|
92
|
-
return
|
|
92
|
+
return i18next_http_middleware_1.default.handle(i18next_1.default);
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
95
|
* @description
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.service.js","sourceRoot":"","sources":["../../src/i18n/i18n.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAA0D;AAE1D,uCAAyB;AAEzB,sDAA6C;AAC7C,
|
|
1
|
+
{"version":3,"file":"i18n.service.js","sourceRoot":"","sources":["../../src/i18n/i18n.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
"cannot-transition-without-modification-payment": "Die Bestellung kann nur in den Status \"ArrangingAdditionalPayment\" übergehen",
|
|
106
106
|
"cannot-transition-without-settled-payments": "Die Bestellung kann nicht in den Status \"PaymentSettled\" übergehen, da die Summe noch nicht komplett abgerechnet ist",
|
|
107
107
|
"country-used-in-addresses": "Das gewählte Land kann nicht gelöscht werden, da es von {count, plural, one {einer Adresse} other {# Adressen}} genutzt wird",
|
|
108
|
-
"facet-force-deleted": "Die Facette wurde gelöscht und ihre FacetValues wurden von {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvariantem}} entfernt",
|
|
109
|
-
"facet-used": "Die ausgewählte Facette enthält FacetValues, die {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} zugewiesen sind",
|
|
110
|
-
"facet-value-force-deleted": "Der gewählte FacetValue wurde von {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} entfernt und gelöscht",
|
|
111
|
-
"facet-value-used": "Der FacetValue \"{ facetValueCode }\" wurde {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} zugewiesen",
|
|
108
|
+
"facet-force-deleted": "Die Facette wurde gelöscht und ihre FacetValues wurden von {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {} other {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvariantem}} entfernt",
|
|
109
|
+
"facet-used": "Die ausgewählte Facette enthält FacetValues, die {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {} other {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} zugewiesen sind",
|
|
110
|
+
"facet-value-force-deleted": "Der gewählte FacetValue wurde von {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {} other {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} entfernt und gelöscht",
|
|
111
|
+
"facet-value-used": "Der FacetValue \"{ facetValueCode }\" wurde {products, plural, =0 {} one {einem Produkt} other {# Produkten}}{both, select, both { und } single {} other {}}{variants, plural, =0 {} one {einer Produktvariante} other {# Produktvarianten}} zugewiesen",
|
|
112
112
|
"payment-method-used-in-channels": "Die gewählte Zahlungsmethode wird von den folgenden Kanälen verwendet: { channelCodes }. Mit \"force: true\" wird sie von allen Kanälen entfernt.",
|
|
113
113
|
"zone-used-in-channels": "Die ausgewählte Zone kann nicht gelöscht werden, da sie als Standard in den folgenden Kanälen verwendet wird: { channelCodes }",
|
|
114
114
|
"zone-used-in-tax-rates": "Die ausgewählte Zone kann nicht gelöscht werden, da sie in den folgenden Steuersätzen verwendet wird: { taxRateNames }"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"error": {
|
|
3
3
|
"active-user-does-not-have-sufficient-permissions": "Active user does not have sufficient permissions",
|
|
4
|
-
"cannot-delete-role": "The role
|
|
4
|
+
"cannot-delete-role": "The role \"{ roleCode }\" cannot be deleted",
|
|
5
5
|
"cannot-delete-sole-superadmin": "The sole SuperAdmin cannot be deleted",
|
|
6
6
|
"cannot-locate-customer-for-user": "Cannot locate a Customer for the user",
|
|
7
|
-
"cannot-modify-role": "The role
|
|
7
|
+
"cannot-modify-role": "The role \"{ roleCode }\" cannot be modified",
|
|
8
8
|
"cannot-create-sales-for-active-order": "Cannot create a Sale for an Order which is still active",
|
|
9
9
|
"cannot-move-collection-into-self": "Cannot move a Collection into itself",
|
|
10
10
|
"cannot-transition-payment-from-to": "Cannot transition Payment from \"{ fromState }\" to \"{ toState }\"",
|
|
@@ -13,30 +13,30 @@
|
|
|
13
13
|
"channel-not-found": "No Channel with the token \"{ token }\" could be found",
|
|
14
14
|
"collection-id-or-slug-must-be-provided": "Either the Collection id or slug must be provided",
|
|
15
15
|
"collection-id-slug-mismatch": "The provided id and slug refer to different Collections",
|
|
16
|
-
"conditions-required-for-action": "The PromotionAction
|
|
17
|
-
"configurable-argument-is-required": "The argument
|
|
16
|
+
"conditions-required-for-action": "The PromotionAction \"{ action }\" requires the following conditions: { conditions }",
|
|
17
|
+
"configurable-argument-is-required": "The argument \"{ name }\" is required",
|
|
18
18
|
"country-code-not-valid": "The countryCode \"{ countryCode }\" was not recognized",
|
|
19
19
|
"currency-not-available-in-channel": "The currency \"{ currencyCode }\" is not available in the current Channel",
|
|
20
20
|
"customer-does-not-belong-to-customer-group": "Customer does not belong to this CustomerGroup",
|
|
21
21
|
"default-channel-not-found": "Default channel not found",
|
|
22
|
-
"entity-has-no-translation-in-language": "Translatable entity
|
|
23
|
-
"entity-with-id-not-found": "No { entityName } with the id
|
|
22
|
+
"entity-has-no-translation-in-language": "Translatable entity \"{ entityName }\" has not been translated into the requested language ({ languageCode })",
|
|
23
|
+
"entity-with-id-not-found": "No { entityName } with the id \"{ id }\" could be found",
|
|
24
24
|
"items-cannot-be-removed-from-default-channel": "Items cannot be removed from the default Channel",
|
|
25
25
|
"facetfilterinput-invalid-input": "A FacetValueFilterInput object may not specify the 'and' and 'or' fields simultaneously",
|
|
26
|
-
"field-invalid-datetime-range-max": "The custom field
|
|
27
|
-
"field-invalid-datetime-range-min": "The custom field
|
|
28
|
-
"field-invalid-non-nullable": "The custom field
|
|
29
|
-
"field-invalid-number-range-max": "The custom field
|
|
30
|
-
"field-invalid-number-range-min": "The custom field
|
|
31
|
-
"field-invalid-readonly": "The custom field
|
|
32
|
-
"field-invalid-string-option": "The custom field
|
|
33
|
-
"field-invalid-string-pattern": "The custom field
|
|
26
|
+
"field-invalid-datetime-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
27
|
+
"field-invalid-datetime-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
28
|
+
"field-invalid-non-nullable": "The custom field \"{ name }\" value cannot be set to null",
|
|
29
|
+
"field-invalid-number-range-max": "The custom field \"{ name }\" value [{ value }] is greater than the maximum [{ max }]",
|
|
30
|
+
"field-invalid-number-range-min": "The custom field \"{ name }\" value [{ value }] is less than the minimum [{ min }]",
|
|
31
|
+
"field-invalid-readonly": "The custom field \"{ name }\" is readonly",
|
|
32
|
+
"field-invalid-string-option": "The custom field \"{ name }\" value [\"{ value }\"] is invalid. Valid options are [{ validOptions }]",
|
|
33
|
+
"field-invalid-string-pattern": "The custom field \"{ name }\" value [\"{ value }\"] does not match the pattern [{ pattern }]",
|
|
34
34
|
"forbidden": "You are not currently authorized to perform this action",
|
|
35
|
-
"invalid-sort-field": "The sort field
|
|
35
|
+
"invalid-sort-field": "The sort field \"{ fieldName }\" is invalid. Valid fields are: { validFields }",
|
|
36
36
|
"list-query-limit-exceeded": "Cannot take more than { limit } results from a list query",
|
|
37
37
|
"no-active-tax-zone": "The active tax zone could not be determined. Ensure a default tax zone is set for the current channel.",
|
|
38
|
-
"no-configurable-operation-def-with-code-found": "No { type } with the code
|
|
39
|
-
"no-price-found-for-channel": "No price information was found for ProductVariant ID
|
|
38
|
+
"no-configurable-operation-def-with-code-found": "No { type } with the code \"{ code }\" could be found",
|
|
39
|
+
"no-price-found-for-channel": "No price information was found for ProductVariant ID \"{ variantId}\" in the Channel \"{ channel }\".",
|
|
40
40
|
"no-search-plugin-configured": "No search plugin has been configured",
|
|
41
41
|
"order-could-not-be-determined-or-created": "No active Order could be determined nor created",
|
|
42
42
|
"order-does-not-contain-line-with-id": "This order does not contain an OrderLine with the id { id }",
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR": "Identifier change token not recognized",
|
|
69
69
|
"INELIGIBLE_SHIPPING_METHOD_ERROR": "This Order is not eligible for the selected ShippingMethod",
|
|
70
70
|
"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",
|
|
71
|
-
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Cannot create a Fulfillment as
|
|
71
|
+
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Cannot create a Fulfillment as \"{productVariantName}\" has insufficient stockOnHand ({stockOnHand})",
|
|
72
72
|
"INVALID_CREDENTIALS_ERROR": "The provided credentials are invalid",
|
|
73
73
|
"ITEMS_ALREADY_FULFILLED_ERROR": "One or more OrderItems are already part of a Fulfillment",
|
|
74
74
|
"LANGUAGE_NOT_AVAILABLE_ERROR": "Language \"{languageCode}\" is not available. First enable it via GlobalSettings and try again",
|
|
75
75
|
"MANUAL_PAYMENT_STATE_ERROR": "A manual payment may only be added when in the \"ArrangingPayment\" or \"ArrangingAdditionalPayment\" states",
|
|
76
|
-
"MIME_TYPE_ERROR": "The MIME type
|
|
76
|
+
"MIME_TYPE_ERROR": "The MIME type \"{ mimeType }\" is not permitted.",
|
|
77
77
|
"MISSING_CONDITIONS_ERROR": "A Promotion must have either at least one condition or a coupon code set",
|
|
78
78
|
"MISSING_PASSWORD_ERROR": "A password must be provided.",
|
|
79
79
|
"NEGATIVE_QUANTITY_ERROR": "The quantity for an OrderItem cannot be negative",
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"cannot-transition-without-modification-payment": "Can only transition to the \"ArrangingAdditionalPayment\" state",
|
|
121
121
|
"cannot-transition-without-settled-payments": "Cannot transition Order to the \"PaymentSettled\" state when the total is not covered by settled Payments",
|
|
122
122
|
"country-used-in-addresses": "The selected Country cannot be deleted as it is used in {count, plural, one {1 Address} other {# Addresses}}",
|
|
123
|
-
"facet-force-deleted": "The Facet was deleted and its FacetValues were removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
124
|
-
"facet-used": "The Facet \"{ facetCode }\" includes FacetValues which are assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
125
|
-
"facet-value-force-deleted": "The selected FacetValue was removed from {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
126
|
-
"facet-value-used": "The FacetValue \"{ facetValueCode }\" is assigned to {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
123
|
+
"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}}",
|
|
124
|
+
"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}}",
|
|
125
|
+
"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",
|
|
126
|
+
"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}}",
|
|
127
127
|
"payment-method-used-in-channels": "The selected PaymentMethod is assigned to the following Channels: { channelCodes }. Set \"force: true\" to delete from all Channels.",
|
|
128
128
|
"product-option-used": "Cannot delete the option \"{code}\" as it is being used by {count, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
129
129
|
"zone-used-in-channels": "The selected Zone cannot be deleted as it used as a default in the following Channels: { channelCodes }",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"error": {
|
|
3
|
-
"cannot-modify-role": "El rol
|
|
3
|
+
"cannot-modify-role": "El rol \"{ roleCode }\" no puede ser modificado",
|
|
4
4
|
"cannot-move-product-category-into-self": "No se puede mover la categoría de producto, a dentro de si misma",
|
|
5
5
|
"cannot-transition-order-from-to": "No se puede cambiar el estado del pedido de \"{ fromState }\" a \"{ toState }\"",
|
|
6
6
|
"cannot-transition-to-shipping-when-order-is-empty": "No se puede cambiar el estado del envío a \"ArrangingShipping\" cuando esta vacío",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"channel-not-found": "Ningún canal con el token \"{ token }\" existe",
|
|
9
9
|
"country-code-not-valid": "El código de país \"{ countryCode }\" no fue reconocido",
|
|
10
10
|
"email-address-not-verified": "Por favor verifica este email, antes de iniciar sesión",
|
|
11
|
-
"entity-has-no-translation-in-language": "Entidad traducible
|
|
12
|
-
"entity-with-id-not-found": "No { entityName } con el id
|
|
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
13
|
"forbidden": "Actualmente no estás autorizado a realizar esta acción",
|
|
14
|
-
"invalid-sort-field": "El campo de ordenar
|
|
14
|
+
"invalid-sort-field": "El campo de ordenar \"{ fieldName }\" es inválido. Campos válidos: { validFields }",
|
|
15
15
|
"missing-password-on-registration": "Una contraseña debe proporcionarse cuándo `authOptions.requireVerification` está en \"false\"",
|
|
16
16
|
"no-search-plugin-configured": "No se ha configurado ningún plugin de búsqueda",
|
|
17
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)",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
},
|
|
30
30
|
"message": {
|
|
31
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 {
|
|
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 {
|
|
34
|
-
"facet-value-force-deleted": "El valor de faceta seleccionado, fue eliminnado de {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {
|
|
35
|
-
"facet-value-used": "El valor de faceta seleccionado, está asignado a {products, plural, =0 {} one {1 Producto} other {# Productos}}{both, select, both {
|
|
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
36
|
"zone-used-in-tax-rates": "La zona seleccionada no se puede eliminar, es usada por estas Tasas de impuestos: { taxRateNames }"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"cancel-order-lines-invalid-order-state": "Não é possível cancelar o OrderLines de um pedido no estado: \"{ state }\"",
|
|
4
4
|
"cancel-order-lines-nothing-to-cancel": "Nada a cancelar",
|
|
5
5
|
"cancel-order-lines-quantity-too-high": "A quantidade a cancelar é maior que a quantidade existente da OrderLine",
|
|
6
|
-
"cannot-delete-role": "A função
|
|
6
|
+
"cannot-delete-role": "A função \"{ roleCode }\" não pode ser excluída",
|
|
7
7
|
"cannot-locate-customer-for-user": "Não é possível localizar um cliente para o usuário",
|
|
8
|
-
"cannot-modify-role": "A função
|
|
8
|
+
"cannot-modify-role": "A função \"{ roleCode }\" não pode ser modificada",
|
|
9
9
|
"cannot-create-sales-for-active-order": "Não é possível criar uma venda para um pedido ainda ativo",
|
|
10
10
|
"cannot-move-collection-into-self": "Não é possível mover uma coleção para si mesma",
|
|
11
11
|
"cannot-remove-option-group-due-to-variants": "Não é possível remover o ProductOptionGroup \"{code}\", pois é usado por {count, plural, um {1 ProductVariant} outro {# ProductVariants}}",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"email-address-must-be-unique": "O endereço de email deve ser único",
|
|
41
41
|
"email-address-not-available": "Este endereço de email não está disponível",
|
|
42
42
|
"email-address-not-verified": "Verifique este endereço de e-mail antes de fazer login",
|
|
43
|
-
"entity-has-no-translation-in-language": "A entidade traduzível
|
|
44
|
-
"entity-with-id-not-found": "Nenhum { entityName } com o código
|
|
45
|
-
"field-invalid-datetime-range-max": "O valor do campo personalizado
|
|
46
|
-
"field-invalid-datetime-range-min": "O valor do campo personalizado
|
|
47
|
-
"field-invalid-non-nullable": "O valor do campo personalizado
|
|
48
|
-
"field-invalid-number-range-max": "O valor do campo personalizado
|
|
49
|
-
"field-invalid-number-range-min": "O valor do campo personalizado
|
|
50
|
-
"field-invalid-readonly": "O campo personalizado
|
|
51
|
-
"field-invalid-string-option": "O valor do campo personalizado
|
|
52
|
-
"field-invalid-string-pattern": "O valor do campo personalizado
|
|
43
|
+
"entity-has-no-translation-in-language": "A entidade traduzível \"{ entityName }\" não foi traduzida para o idioma solicitado ({languageCode})",
|
|
44
|
+
"entity-with-id-not-found": "Nenhum { entityName } com o código \"{ id }\" foi encontrado",
|
|
45
|
+
"field-invalid-datetime-range-max": "O valor do campo personalizado \"{ name }\" [{ value }] é maior que o máximo [{ max }]",
|
|
46
|
+
"field-invalid-datetime-range-min": "O valor do campo personalizado \"{ name }\" [{ value }] é menor que o mínimo [{ min }]",
|
|
47
|
+
"field-invalid-non-nullable": "O valor do campo personalizado \"{ name }\" não pode ser definido como nulo",
|
|
48
|
+
"field-invalid-number-range-max": "O valor do campo personalizado \"{ name }\" [{ value }] é maior que o máximo [{ max }]",
|
|
49
|
+
"field-invalid-number-range-min": "O valor do campo personalizado \"{ name }\" [{ value }] é menor que o mínimo [{ min }]",
|
|
50
|
+
"field-invalid-readonly": "O campo personalizado \"{ name }\" é somente leitura",
|
|
51
|
+
"field-invalid-string-option": "O valor do campo personalizado \"{ name }\" [\"{ value }\"] é inválido. As opções válidas são [{ validOptions }]",
|
|
52
|
+
"field-invalid-string-pattern": "O valor do campo personalizado \"{ name }\" [\"{ value }\"] não corresponde ao padrão [{ pattern }]",
|
|
53
53
|
"forbidden": "No momento, você não está autorizado a executar esta ação",
|
|
54
54
|
"identifier-change-token-not-recognized": "Token de alteração de identificador não reconhecido",
|
|
55
55
|
"identifier-change-token-has-expired": "O token de alteração do identificador expirou",
|
|
56
|
-
"invalid-sort-field": "O campo de classificação
|
|
56
|
+
"invalid-sort-field": "O campo de classificação \"{ fieldName }\" é inválido. Os campos válidos são: { validFields }",
|
|
57
57
|
"language-not-available-in-global-settings": "O idioma \"{code}\" não está disponível. Primeiro, ative-o através do GlobalSettings e tente novamente.",
|
|
58
58
|
"missing-password-on-registration": "Uma senha deve ser fornecida quando` authOptions.requireVerification` estiver definido como\"false\"",
|
|
59
59
|
"no-active-tax-zone": "Não foi possível determinar a zona tributária ativa. Verifique se uma zona tributária padrão está definida para o canal atual.",
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
"asset-to-be-deleted-is-featured": "A seleção {assetCount, plural, one {Asset is} other {Assets are}} apresentado por {products, plural, =0 {} one {1 Product} other {# Products}} {variants, plural, =0 {} one { 1 ProductVariant} other { # ProductVariants}} {collections, plural, =0 {} one { 1 Collection} other { # Collections}}",
|
|
91
91
|
"country-used-in-addresses": "O país selecionado não pode ser excluído, pois é usado em {count, plural, um {1 Address} outro {# Addresses}}",
|
|
92
92
|
"facet-force-deleted": "A Faceta foi excluída e seus Valores de Faceta foram removidos de {produtos, plural, = 0 {} um {1 Produto} outro {# Produtos}} {ambos, selecione, ambos {,} únicos {}} {variantes, plural, = 0 {} um {1 ProductVariant} outro {# ProductVariants}} ",
|
|
93
|
-
"facet-used": "A faceta selecionada inclui valores de faceta atribuídos a {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
94
|
-
"facet-value-force-deleted": "O FacetValue selecionado foi removido de {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
95
|
-
"facet-value-used": "O FacetValue selecionado é atribuído a {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {
|
|
93
|
+
"facet-used": "A faceta selecionada inclui valores de faceta atribuídos a {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
94
|
+
"facet-value-force-deleted": "O FacetValue selecionado foi removido de {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}} e excluídos ",
|
|
95
|
+
"facet-value-used": "O FacetValue selecionado é atribuído a {products, plural, =0 {} one {1 Product} other {# Products}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 ProductVariant} other {# ProductVariants}}",
|
|
96
96
|
"zone-used-in-channels": "A zona selecionada não pode ser excluída, pois foi usada como padrão nos seguintes canais: { channelCodes }",
|
|
97
97
|
"zone-used-in-tax-rates": "A zona selecionada não pode ser excluída, pois é usada nos seguintes TaxRates: { taxRateNames }"
|
|
98
98
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"error": {
|
|
3
|
-
"cannot-delete-role": "A regra
|
|
3
|
+
"cannot-delete-role": "A regra \"{ roleCode }\" não pode ser eliminada",
|
|
4
4
|
"cannot-locate-customer-for-user": "Não é possível localizar a conta associada ao utilizador",
|
|
5
|
-
"cannot-modify-role": "A regra
|
|
5
|
+
"cannot-modify-role": "A regra \"{ roleCode }\" não pode ser alterada",
|
|
6
6
|
"cannot-create-sales-for-active-order": "Não é possível criar uma venda para uma encomenda ativa",
|
|
7
7
|
"cannot-move-collection-into-self": "Não é possível mover a colecção para ela mesma",
|
|
8
8
|
"cannot-transition-payment-from-to": "Não é possível transitar o pagamento do estado \"{ fromState }\" para \"{ toState }\"",
|
|
@@ -10,28 +10,28 @@
|
|
|
10
10
|
"cannot-transition-fulfillment-from-to": "Não é possível transitar o envio do estado \"{ fromState }\" para \"{ toState }\"",
|
|
11
11
|
"collection-id-or-slug-must-be-provided": "O ID da colecção ou slug deve ser fornecido",
|
|
12
12
|
"collection-id-slug-mismatch": "O ID e slug fornecidos referem-se a diferentes colecções",
|
|
13
|
-
"conditions-required-for-action": "A acção
|
|
14
|
-
"configurable-argument-is-required": "O argumento
|
|
13
|
+
"conditions-required-for-action": "A acção \"{ action }\" requer as seguintes condições: { conditions }",
|
|
14
|
+
"configurable-argument-is-required": "O argumento \"{ name }\" é obrigatório",
|
|
15
15
|
"country-code-not-valid": "O código do país \"{ countryCode }\" não é válido",
|
|
16
16
|
"customer-does-not-belong-to-customer-group": "O cliente não pertence ao grupo",
|
|
17
17
|
"default-channel-not-found": "Canal padrão não encontrado",
|
|
18
|
-
"entity-has-no-translation-in-language": "A entidade
|
|
19
|
-
"entity-with-id-not-found": "A entidade { entityName } com o ID
|
|
18
|
+
"entity-has-no-translation-in-language": "A entidade \"{entityName}\" não foi traduzida para o idioma solicitado ({languageCode})",
|
|
19
|
+
"entity-with-id-not-found": "A entidade { entityName } com o ID \"{ id }\" não foi encontrada",
|
|
20
20
|
"facetfilterinput-invalid-input": "O objecto FacetValueFilterInput não pode especificar os campos 'and' e 'or' simultaneamente",
|
|
21
|
-
"field-invalid-datetime-range-max": "O valor do campo personalizado
|
|
22
|
-
"field-invalid-datetime-range-min": "O valor do campo personalizado
|
|
23
|
-
"field-invalid-non-nullable": "O valor do campo personalizado
|
|
24
|
-
"field-invalid-number-range-max": "O valor do campo personalizado
|
|
25
|
-
"field-invalid-number-range-min": "O valor do campo personalizado
|
|
26
|
-
"field-invalid-readonly": "O campo personalizado
|
|
27
|
-
"field-invalid-string-option": "O campo personalizado
|
|
28
|
-
"field-invalid-string-pattern": "O campo personalizado
|
|
21
|
+
"field-invalid-datetime-range-max": "O valor do campo personalizado \"{name}\" [{value}] é maior que o máximo de [{max}]",
|
|
22
|
+
"field-invalid-datetime-range-min": "O valor do campo personalizado \"{name}\" [{value}] é menor que o mínimo de [{min}]",
|
|
23
|
+
"field-invalid-non-nullable": "O valor do campo personalizado \"{name}\" não pode ser definido como nulo",
|
|
24
|
+
"field-invalid-number-range-max": "O valor do campo personalizado \"{name}\" [{value}] é maior que o máximo de [{max}]",
|
|
25
|
+
"field-invalid-number-range-min": "O valor do campo personalizado \"{name}\" [{value}] é menor que o mínimo de [{min}]",
|
|
26
|
+
"field-invalid-readonly": "O campo personalizado \"{name}\" é somente para leitura",
|
|
27
|
+
"field-invalid-string-option": "O campo personalizado \"{name}\" é inválido. As opções válidas são [{validOptions}]",
|
|
28
|
+
"field-invalid-string-pattern": "O campo personalizado \"{ name }\" é inválido e não corresponde a regra [{pattern}]",
|
|
29
29
|
"forbidden": "Você não está autorizado a realizar esta acção no momento",
|
|
30
|
-
"invalid-sort-field": "O campo de classificação
|
|
30
|
+
"invalid-sort-field": "O campo de classificação \"{fieldName}\" é inválido. Os campos válidos são: {validFields}",
|
|
31
31
|
"list-query-limit-exceeded": "Não é possível obter mais de {limit} resultados para uma consulta",
|
|
32
32
|
"no-active-tax-zone": "A região fiscal activa não pôde ser determinada. Certifique-se de que uma região de imposto padrão seja definida para o canal actual",
|
|
33
|
-
"no-configurable-operation-def-with-code-found": "Nenhum {type} com o código
|
|
34
|
-
"no-price-found-for-channel": "Nenhuma informação de preço foi encontrada para a variante com o ID
|
|
33
|
+
"no-configurable-operation-def-with-code-found": "Nenhum {type} com o código \"{code}\" foi encontrado",
|
|
34
|
+
"no-price-found-for-channel": "Nenhuma informação de preço foi encontrada para a variante com o ID \"{variantId}\" no canal \"{channel}\".",
|
|
35
35
|
"no-search-plugin-configured": "Nenhum plugin de pesquisa foi configurado",
|
|
36
36
|
"order-does-not-contain-line-with-id": "A encomenda não possui uma linha com o ID {id}",
|
|
37
37
|
"pending-identifier-missing": "Não foi possível encontrar o e-mail pendente para actualizar",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR": "Token de mudança de identificador não reconhecido",
|
|
60
60
|
"INELIGIBLE_SHIPPING_METHOD_ERROR": "A encomenda não é elegível para o método de envio seleccionado",
|
|
61
61
|
"INSUFFICIENT_STOCK_ERROR": "{quantityAvailable, plural, =0 {Nenhum item foi} one {Apenas 1 item foi} other {Apenas # itens foram}} adicionado a encomenda devido ao estoque insuficiente",
|
|
62
|
-
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Não é possível criar o envio porque
|
|
62
|
+
"INSUFFICIENT_STOCK_ON_HAND_ERROR": "Não é possível criar o envio porque \"{productVariantName}\" tem estoque insuficiente ({stockOnHand})",
|
|
63
63
|
"INVALID_CREDENTIALS_ERROR": "As credenciais fornecidas são inválidas",
|
|
64
64
|
"ITEMS_ALREADY_FULFILLED_ERROR": "Um ou mais itens já fazem parte de um envio",
|
|
65
65
|
"LANGUAGE_NOT_AVAILABLE_ERROR": "O idioma \"{ languageCode }\" não está disponível. Primeiro habilite-o nas configurações globais e tente novamente",
|
|
66
66
|
"MANUAL_PAYMENT_STATE_ERROR": "Um pagamento manual só pode ser adicionado quando a encomenda estiver no estado \"A configurar pagamento adicional\"",
|
|
67
|
-
"MIME_TYPE_ERROR": "O tipo MIME
|
|
67
|
+
"MIME_TYPE_ERROR": "O tipo MIME \"{mimeType}\" não é permitido.",
|
|
68
68
|
"MISSING_CONDITIONS_ERROR": "Uma promoção deve ter pelo menos uma condição ou um conjunto de cupoms",
|
|
69
69
|
"MISSING_PASSWORD_ERROR": "A palavra-passe é obrigatória.",
|
|
70
70
|
"NEGATIVE_QUANTITY_ERROR": "A quantidade des um item não pode ser negativa",
|
|
@@ -107,12 +107,12 @@
|
|
|
107
107
|
"cannot-transition-without-modification-payment": "Pode apenas fazer a transição para o estado \"A configurar pagamento adicional\"",
|
|
108
108
|
"cannot-transition-without-settled-payments": "Não é possível fazer a transição da encomenda para o estado \"Pagamento liquidado\" até que todos os itens sejam pagos",
|
|
109
109
|
"country-used-in-addresses": "O país seleccionado não pode ser excluído porque está a ser utilizado em {count, plural, one {1 endereço} other {# endereços}}",
|
|
110
|
-
"facet-force-deleted": "A etiqueta foi eliminada e seus valores foram removidos {products, plural, =0 {} one {de 1 produto} other {de # produtos}}{both, select, both {
|
|
111
|
-
"facet-used": "A etiqueta seleccionada inclui valores que estão atribuídos a {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {
|
|
112
|
-
"facet-value-force-deleted": "A etiqueta seleccionada foi excluída e removida de {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {
|
|
113
|
-
"facet-value-used": "A etiqueta seleccionada está atribuída a {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {
|
|
110
|
+
"facet-force-deleted": "A etiqueta foi eliminada e seus valores foram removidos {products, plural, =0 {} one {de 1 produto} other {de # produtos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 variante} other {# variantes}}",
|
|
111
|
+
"facet-used": "A etiqueta seleccionada inclui valores que estão atribuídos a {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 variante} other {# variantes}}",
|
|
112
|
+
"facet-value-force-deleted": "A etiqueta seleccionada foi excluída e removida de {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 variante} other {# variantes}}",
|
|
113
|
+
"facet-value-used": "A etiqueta seleccionada está atribuída a {products, plural, =0 {} one {1 produto} other {# produtos}}{both, select, both {, } single {} other {}}{variants, plural, =0 {} one {1 variante} other {# variantes}}",
|
|
114
114
|
"payment-method-used-in-channels": "O método de pagamento seleccionado está atribuído aos seguintes canais: { channelCodes }. Defina \"force: true\" para eliminar de todos os canais.",
|
|
115
115
|
"zone-used-in-channels": "A região seleccionada não pode ser eliminada porque é utilizada como padrão nos seguintes canais: {channelCodes}",
|
|
116
116
|
"zone-used-in-tax-rates": "A região seleccionada não pode ser eliminada, porque é utilizada nos seguintes impostos: {taxRateNames}"
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|