@vendure/admin-ui 1.5.2 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/vendure-admin-ui-catalog.umd.js +212 -173
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +2337 -1864
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-dashboard.umd.js +3 -3
- package/bundles/vendure-admin-ui-dashboard.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-login.umd.js +2 -2
- package/bundles/vendure-admin-ui-login.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-marketing.umd.js +1 -1
- package/bundles/vendure-admin-ui-marketing.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-order.umd.js +1 -1
- package/bundles/vendure-admin-ui-order.umd.js.map +1 -1
- package/catalog/components/collection-contents/collection-contents.component.d.ts +7 -2
- package/catalog/components/collection-detail/collection-detail.component.d.ts +12 -4
- package/catalog/components/collection-list/collection-list.component.d.ts +2 -0
- package/catalog/components/collection-tree/array-to-tree.d.ts +1 -1
- package/catalog/components/collection-tree/collection-tree-node.component.d.ts +5 -1
- package/catalog/components/collection-tree/collection-tree.component.d.ts +1 -0
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +13 -10
- package/catalog/providers/product-detail/product-detail.service.d.ts +2 -2
- package/catalog/public_api.d.ts +0 -1
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/generated-types.d.ts +32 -3
- package/core/common/utilities/selection-manager.d.ts +23 -0
- package/core/common/version.d.ts +1 -1
- package/core/components/app-shell/app-shell.component.d.ts +1 -0
- package/core/data/definitions/collection-definitions.d.ts +1 -0
- package/core/data/providers/collection-data.service.d.ts +6 -2
- package/core/providers/local-storage/local-storage.service.d.ts +1 -0
- package/core/public_api.d.ts +5 -0
- package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +21 -6
- package/core/shared/components/configurable-input/configurable-input.component.d.ts +7 -2
- package/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.d.ts +35 -0
- package/{catalog → core/shared}/components/product-search-input/product-search-input.component.d.ts +1 -1
- package/core/shared/components/select-toggle/select-toggle.component.d.ts +1 -0
- package/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.d.ts +25 -0
- package/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.d.ts +20 -0
- package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +3 -1
- package/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.d.ts +5 -2
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/dashboard/vendure-admin-ui-dashboard.metadata.json +1 -1
- package/esm2015/catalog/catalog.module.js +1 -3
- package/esm2015/catalog/components/assets/assets.component.js +1 -1
- package/esm2015/catalog/components/collection-contents/collection-contents.component.js +51 -14
- package/esm2015/catalog/components/collection-detail/collection-detail.component.js +67 -29
- package/esm2015/catalog/components/collection-list/collection-list.component.js +30 -4
- package/esm2015/catalog/components/collection-tree/array-to-tree.js +3 -3
- package/esm2015/catalog/components/collection-tree/collection-tree-node.component.js +27 -4
- package/esm2015/catalog/components/collection-tree/collection-tree.component.js +4 -2
- package/esm2015/catalog/components/product-detail/product-detail.component.js +1 -1
- package/esm2015/catalog/components/product-list/product-list.component.js +3 -3
- package/esm2015/catalog/components/product-variants-editor/product-variants-editor.component.js +7 -2
- package/esm2015/catalog/components/product-variants-list/product-variants-list.component.js +1 -1
- package/esm2015/catalog/public_api.js +1 -2
- package/esm2015/core/app.component.module.js +1 -1
- package/esm2015/core/common/base-detail.component.js +1 -1
- package/esm2015/core/common/deactivate-aware.js +1 -1
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/introspection-result.js +255 -189
- package/esm2015/core/common/utilities/configurable-operation-utils.js +2 -2
- package/esm2015/core/common/utilities/selection-manager.js +64 -0
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/app-shell/app-shell.component.js +4 -3
- package/esm2015/core/components/main-nav/main-nav.component.js +2 -2
- package/esm2015/core/core.module.js +1 -1
- package/esm2015/core/data/definitions/collection-definitions.js +18 -1
- package/esm2015/core/data/definitions/order-definitions.js +431 -430
- package/esm2015/core/data/definitions/shared-definitions.js +29 -28
- package/esm2015/core/data/providers/collection-data.service.js +5 -2
- package/esm2015/core/providers/local-storage/local-storage.service.js +1 -1
- package/esm2015/core/public_api.js +6 -1
- package/esm2015/core/shared/components/address-form/address-form.component.js +2 -2
- package/esm2015/core/shared/components/asset-gallery/asset-gallery.component.js +24 -42
- package/esm2015/core/shared/components/configurable-input/configurable-input.component.js +13 -3
- package/esm2015/core/shared/components/formatted-address/formatted-address.component.js +2 -2
- package/esm2015/core/shared/components/help-tooltip/help-tooltip.component.js +1 -1
- package/esm2015/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.js +129 -0
- package/esm2015/core/shared/components/product-search-input/product-search-input.component.js +104 -0
- package/esm2015/core/shared/components/rich-text-editor/rich-text-editor.component.js +1 -1
- package/esm2015/core/shared/components/select-toggle/select-toggle.component.js +5 -3
- package/esm2015/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.js +45 -0
- package/esm2015/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.js +53 -0
- package/esm2015/core/shared/dynamic-form-inputs/register-dynamic-input-components.js +5 -1
- package/esm2015/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.js +8 -7
- package/esm2015/core/shared/shared.module.js +9 -1
- package/esm2015/dashboard/components/dashboard/dashboard.component.js +1 -1
- package/esm2015/dashboard/components/dashboard-widget/dashboard-widget.component.js +2 -2
- package/esm2015/dashboard/widgets/order-summary-widget/order-summary-widget.component.js +1 -1
- package/esm2015/login/components/login/login.component.js +3 -3
- package/esm2015/marketing/components/promotion-detail/promotion-detail.component.js +2 -2
- package/esm2015/order/components/order-list/order-list.component.js +2 -2
- package/fesm2015/vendure-admin-ui-catalog.js +187 -158
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +1824 -1359
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.js +3 -3
- package/fesm2015/vendure-admin-ui-dashboard.js.map +1 -1
- package/fesm2015/vendure-admin-ui-login.js +2 -2
- package/fesm2015/vendure-admin-ui-login.js.map +1 -1
- package/fesm2015/vendure-admin-ui-marketing.js +1 -1
- package/fesm2015/vendure-admin-ui-marketing.js.map +1 -1
- package/fesm2015/vendure-admin-ui-order.js +1 -1
- package/fesm2015/vendure-admin-ui-order.js.map +1 -1
- package/login/vendure-admin-ui-login.metadata.json +1 -1
- package/marketing/vendure-admin-ui-marketing.metadata.json +1 -1
- package/order/vendure-admin-ui-order.metadata.json +1 -1
- package/package.json +2 -2
- package/static/i18n-messages/cs.json +683 -673
- package/static/i18n-messages/de.json +683 -673
- package/static/i18n-messages/en.json +684 -674
- package/static/i18n-messages/es.json +683 -673
- package/static/i18n-messages/fr.json +683 -673
- package/static/i18n-messages/it.json +683 -673
- package/static/i18n-messages/pl.json +683 -673
- package/static/i18n-messages/pt_BR.json +683 -673
- package/static/i18n-messages/pt_PT.json +683 -673
- package/static/i18n-messages/ru.json +683 -673
- package/static/i18n-messages/uk.json +683 -673
- package/static/i18n-messages/zh_Hans.json +683 -673
- package/static/i18n-messages/zh_Hant.json +683 -673
- package/static/styles/global/_forms.scss +4 -5
- package/static/styles/global/_overrides.scss +5 -1
- package/static/styles/global/_utilities.scss +9 -0
- package/static/styles/theme/default.scss +13 -1
- package/static/theme.min.css +1 -1
- package/esm2015/catalog/components/product-search-input/product-search-input.component.js +0 -104
|
@@ -1,674 +1,684 @@
|
|
|
1
|
-
{
|
|
2
|
-
"admin": {
|
|
3
|
-
"create-new-administrator": "Create new administrator"
|
|
4
|
-
},
|
|
5
|
-
"asset": {
|
|
6
|
-
"add-asset": "Add asset",
|
|
7
|
-
"add-asset-with-count": "Add {count, plural, 0 {assets} one {1 asset} other {{count} assets}}",
|
|
8
|
-
"assets-selected-count": "{ count } assets selected",
|
|
9
|
-
"dimensions": "Dimensions",
|
|
10
|
-
"focal-point": "Focal point",
|
|
11
|
-
"notify-create-assets-success": "Created {count, plural, one {new Asset} other {{count} new Assets}}",
|
|
12
|
-
"original-asset-size": "Source size",
|
|
13
|
-
"preview": "Preview",
|
|
14
|
-
"remove-asset": "Remove asset",
|
|
15
|
-
"select-asset": "Select asset",
|
|
16
|
-
"select-assets": "Select assets",
|
|
17
|
-
"set-as-featured-asset": "Set as featured asset",
|
|
18
|
-
"set-focal-point": "Set focal point",
|
|
19
|
-
"source-file": "Source file",
|
|
20
|
-
"unset-focal-point": "Unset",
|
|
21
|
-
"update-focal-point": "Update point",
|
|
22
|
-
"update-focal-point-error": "Could not update focal point",
|
|
23
|
-
"update-focal-point-success": "Updated focal point",
|
|
24
|
-
"upload-assets": "Upload assets",
|
|
25
|
-
"uploading": "Uploading..."
|
|
26
|
-
},
|
|
27
|
-
"breadcrumb": {
|
|
28
|
-
"administrators": "Administrators",
|
|
29
|
-
"assets": "Assets",
|
|
30
|
-
"channels": "Channels",
|
|
31
|
-
"collections": "Collections",
|
|
32
|
-
"countries": "Countries",
|
|
33
|
-
"customer-groups": "Customer groups",
|
|
34
|
-
"customers": "Customers",
|
|
35
|
-
"dashboard": "Dashboard",
|
|
36
|
-
"facets": "Facets",
|
|
37
|
-
"global-settings": "Global settings",
|
|
38
|
-
"job-queue": "Job queue",
|
|
39
|
-
"manage-variants": "Manage variants",
|
|
40
|
-
"modifying": "Modifying",
|
|
41
|
-
"orders": "Orders",
|
|
42
|
-
"payment-methods": "Payment methods",
|
|
43
|
-
"product-options": "Product options",
|
|
44
|
-
"products": "Products",
|
|
45
|
-
"profile": "Profile",
|
|
46
|
-
"promotions": "Promotions",
|
|
47
|
-
"roles": "Roles",
|
|
48
|
-
"shipping-methods": "Shipping methods",
|
|
49
|
-
"system-status": "System status",
|
|
50
|
-
"tax-categories": "Tax categories",
|
|
51
|
-
"tax-rates": "Tax rates",
|
|
52
|
-
"zones": "Zones"
|
|
53
|
-
},
|
|
54
|
-
"catalog": {
|
|
55
|
-
"add-facet-value": "Add facet value",
|
|
56
|
-
"add-facets": "Add facets",
|
|
57
|
-
"add-option": "Add option",
|
|
58
|
-
"asset-preview-links": "Asset preview links",
|
|
59
|
-
"assign-product-to-channel-success": "Successfully assigned product to \"{ channel }\"",
|
|
60
|
-
"assign-products-to-channel": "Assign products to channel",
|
|
61
|
-
"assign-to-channel": "Assign to channel",
|
|
62
|
-
"assign-to-named-channel": "Assign to { channelCode }",
|
|
63
|
-
"assign-variant-to-channel-success": "Successfully assigned product variant to \"{ channel }\"",
|
|
64
|
-
"assign-variants-to-channel": "Assign product variants to channel",
|
|
65
|
-
"auto-update-option-variant-name": "Automatically update the names of ProductVariants using this option",
|
|
66
|
-
"auto-update-product-variant-name": "Automatically update the names of ProductVariants",
|
|
67
|
-
"channel-price-preview": "Channel price preview",
|
|
68
|
-
"collection-contents": "Collection contents",
|
|
69
|
-
"confirm-delete-administrator": "Delete administrator?",
|
|
70
|
-
"confirm-delete-assets": "Delete {count} {count, plural, one {asset} other {assets}}?",
|
|
71
|
-
"confirm-delete-channel": "Delete channel?",
|
|
72
|
-
"confirm-delete-collection": "Delete collection?",
|
|
73
|
-
"confirm-delete-collection-and-children-body": "Deleting this collection will also delete all child collections",
|
|
74
|
-
"confirm-delete-country": "Delete country?",
|
|
75
|
-
"confirm-delete-customer": "Delete customer?",
|
|
76
|
-
"confirm-delete-facet": "Delete facet?",
|
|
77
|
-
"confirm-delete-facet-value": "Delete facet value?",
|
|
78
|
-
"confirm-delete-product": "Delete product?",
|
|
79
|
-
"confirm-delete-product-variant": "Delete product variant?",
|
|
80
|
-
"confirm-delete-promotion": "Delete promotion?",
|
|
81
|
-
"confirm-delete-shipping-method": "Delete shipping method?",
|
|
82
|
-
"confirm-delete-zone": "Delete zone?",
|
|
83
|
-
"confirm-deletion-of-unused-variants-body": "The following product variants have been made obsolete due to the addition of new options. They will be deleted during the creation of the new product variants.",
|
|
84
|
-
"confirm-deletion-of-unused-variants-title": "Delete obsolete product variants?",
|
|
85
|
-
"create-new-collection": "Create new collection",
|
|
86
|
-
"create-new-facet": "Create new facet",
|
|
87
|
-
"create-new-product": "New product",
|
|
88
|
-
"created-new-variants-success": "Successfully created {count} new {count, plural, one {variant} other {variants}}",
|
|
89
|
-
"default-variant": "Default variant",
|
|
90
|
-
"display-variant-cards": "View details",
|
|
91
|
-
"display-variant-table": "View as table",
|
|
92
|
-
"drop-files-to-upload": "Drop files to upload",
|
|
93
|
-
"duplicate-sku-warning": "Please ensure all SKUs are unique",
|
|
94
|
-
"edit-options": "Edit options",
|
|
95
|
-
"expand-all-collections": "Expand all collections",
|
|
96
|
-
"facet-values": "Facet values",
|
|
97
|
-
"filter-by-name": "Filter by name",
|
|
98
|
-
"filter-by-name-or-sku": "Filter by name or SKU",
|
|
99
|
-
"filters": "Filters",
|
|
100
|
-
"group-by-product": "Group by product",
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"move-
|
|
104
|
-
"move-
|
|
105
|
-
"
|
|
106
|
-
"no-
|
|
107
|
-
"no-
|
|
108
|
-
"
|
|
109
|
-
"notify-remove-product-from-channel-
|
|
110
|
-
"notify-remove-
|
|
111
|
-
"notify-remove-variant-from-channel-
|
|
112
|
-
"
|
|
113
|
-
"option
|
|
114
|
-
"option-
|
|
115
|
-
"
|
|
116
|
-
"out-of-stock-threshold
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"price
|
|
120
|
-
"price-
|
|
121
|
-
"price-
|
|
122
|
-
"price-
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"product-
|
|
126
|
-
"product-
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"reindex-
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"remove-
|
|
134
|
-
"remove-
|
|
135
|
-
"remove-product-
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"search-
|
|
139
|
-
"search-
|
|
140
|
-
"search-
|
|
141
|
-
"search-
|
|
142
|
-
"
|
|
143
|
-
"select-product
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"slug
|
|
147
|
-
"
|
|
148
|
-
"stock-allocated
|
|
149
|
-
"stock-
|
|
150
|
-
"stock-on-hand
|
|
151
|
-
"stock-
|
|
152
|
-
"stock-saleable
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"track-inventory
|
|
157
|
-
"track-inventory-
|
|
158
|
-
"track-inventory-
|
|
159
|
-
"track-inventory-
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"add-
|
|
172
|
-
"add-
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"notify-
|
|
227
|
-
"notify-
|
|
228
|
-
"notify-
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"history-customer-
|
|
294
|
-
"history-customer-
|
|
295
|
-
"history-customer-
|
|
296
|
-
"history-
|
|
297
|
-
"history-
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
"
|
|
323
|
-
"
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
"
|
|
329
|
-
"
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
"widget
|
|
337
|
-
"
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
"
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
-
"
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"month-
|
|
359
|
-
"month-
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
"
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
"
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
},
|
|
379
|
-
"
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
"
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
"
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
"
|
|
403
|
-
"
|
|
404
|
-
"
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
"
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"
|
|
436
|
-
"
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"customer": "Customer",
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
"
|
|
476
|
-
"
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
"history-
|
|
480
|
-
"history-
|
|
481
|
-
"history-
|
|
482
|
-
"history-
|
|
483
|
-
"history-
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"
|
|
521
|
-
"
|
|
522
|
-
"
|
|
523
|
-
"
|
|
524
|
-
"refund": "
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
"
|
|
531
|
-
"
|
|
532
|
-
"
|
|
533
|
-
"
|
|
534
|
-
"refund
|
|
535
|
-
"refund-
|
|
536
|
-
"refund-
|
|
537
|
-
"refund-
|
|
538
|
-
"refund-
|
|
539
|
-
"refund-
|
|
540
|
-
"
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
"
|
|
558
|
-
"
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
"
|
|
566
|
-
"
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
"
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
592
|
-
"
|
|
593
|
-
"
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"
|
|
615
|
-
"
|
|
616
|
-
"
|
|
617
|
-
"
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
"
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
"
|
|
637
|
-
"
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
"job-
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
|
|
674
|
-
|
|
1
|
+
{
|
|
2
|
+
"admin": {
|
|
3
|
+
"create-new-administrator": "Create new administrator"
|
|
4
|
+
},
|
|
5
|
+
"asset": {
|
|
6
|
+
"add-asset": "Add asset",
|
|
7
|
+
"add-asset-with-count": "Add {count, plural, 0 {assets} one {1 asset} other {{count} assets}}",
|
|
8
|
+
"assets-selected-count": "{ count } assets selected",
|
|
9
|
+
"dimensions": "Dimensions",
|
|
10
|
+
"focal-point": "Focal point",
|
|
11
|
+
"notify-create-assets-success": "Created {count, plural, one {new Asset} other {{count} new Assets}}",
|
|
12
|
+
"original-asset-size": "Source size",
|
|
13
|
+
"preview": "Preview",
|
|
14
|
+
"remove-asset": "Remove asset",
|
|
15
|
+
"select-asset": "Select asset",
|
|
16
|
+
"select-assets": "Select assets",
|
|
17
|
+
"set-as-featured-asset": "Set as featured asset",
|
|
18
|
+
"set-focal-point": "Set focal point",
|
|
19
|
+
"source-file": "Source file",
|
|
20
|
+
"unset-focal-point": "Unset",
|
|
21
|
+
"update-focal-point": "Update point",
|
|
22
|
+
"update-focal-point-error": "Could not update focal point",
|
|
23
|
+
"update-focal-point-success": "Updated focal point",
|
|
24
|
+
"upload-assets": "Upload assets",
|
|
25
|
+
"uploading": "Uploading..."
|
|
26
|
+
},
|
|
27
|
+
"breadcrumb": {
|
|
28
|
+
"administrators": "Administrators",
|
|
29
|
+
"assets": "Assets",
|
|
30
|
+
"channels": "Channels",
|
|
31
|
+
"collections": "Collections",
|
|
32
|
+
"countries": "Countries",
|
|
33
|
+
"customer-groups": "Customer groups",
|
|
34
|
+
"customers": "Customers",
|
|
35
|
+
"dashboard": "Dashboard",
|
|
36
|
+
"facets": "Facets",
|
|
37
|
+
"global-settings": "Global settings",
|
|
38
|
+
"job-queue": "Job queue",
|
|
39
|
+
"manage-variants": "Manage variants",
|
|
40
|
+
"modifying": "Modifying",
|
|
41
|
+
"orders": "Orders",
|
|
42
|
+
"payment-methods": "Payment methods",
|
|
43
|
+
"product-options": "Product options",
|
|
44
|
+
"products": "Products",
|
|
45
|
+
"profile": "Profile",
|
|
46
|
+
"promotions": "Promotions",
|
|
47
|
+
"roles": "Roles",
|
|
48
|
+
"shipping-methods": "Shipping methods",
|
|
49
|
+
"system-status": "System status",
|
|
50
|
+
"tax-categories": "Tax categories",
|
|
51
|
+
"tax-rates": "Tax rates",
|
|
52
|
+
"zones": "Zones"
|
|
53
|
+
},
|
|
54
|
+
"catalog": {
|
|
55
|
+
"add-facet-value": "Add facet value",
|
|
56
|
+
"add-facets": "Add facets",
|
|
57
|
+
"add-option": "Add option",
|
|
58
|
+
"asset-preview-links": "Asset preview links",
|
|
59
|
+
"assign-product-to-channel-success": "Successfully assigned product to \"{ channel }\"",
|
|
60
|
+
"assign-products-to-channel": "Assign products to channel",
|
|
61
|
+
"assign-to-channel": "Assign to channel",
|
|
62
|
+
"assign-to-named-channel": "Assign to { channelCode }",
|
|
63
|
+
"assign-variant-to-channel-success": "Successfully assigned product variant to \"{ channel }\"",
|
|
64
|
+
"assign-variants-to-channel": "Assign product variants to channel",
|
|
65
|
+
"auto-update-option-variant-name": "Automatically update the names of ProductVariants using this option",
|
|
66
|
+
"auto-update-product-variant-name": "Automatically update the names of ProductVariants",
|
|
67
|
+
"channel-price-preview": "Channel price preview",
|
|
68
|
+
"collection-contents": "Collection contents",
|
|
69
|
+
"confirm-delete-administrator": "Delete administrator?",
|
|
70
|
+
"confirm-delete-assets": "Delete {count} {count, plural, one {asset} other {assets}}?",
|
|
71
|
+
"confirm-delete-channel": "Delete channel?",
|
|
72
|
+
"confirm-delete-collection": "Delete collection?",
|
|
73
|
+
"confirm-delete-collection-and-children-body": "Deleting this collection will also delete all child collections",
|
|
74
|
+
"confirm-delete-country": "Delete country?",
|
|
75
|
+
"confirm-delete-customer": "Delete customer?",
|
|
76
|
+
"confirm-delete-facet": "Delete facet?",
|
|
77
|
+
"confirm-delete-facet-value": "Delete facet value?",
|
|
78
|
+
"confirm-delete-product": "Delete product?",
|
|
79
|
+
"confirm-delete-product-variant": "Delete product variant?",
|
|
80
|
+
"confirm-delete-promotion": "Delete promotion?",
|
|
81
|
+
"confirm-delete-shipping-method": "Delete shipping method?",
|
|
82
|
+
"confirm-delete-zone": "Delete zone?",
|
|
83
|
+
"confirm-deletion-of-unused-variants-body": "The following product variants have been made obsolete due to the addition of new options. They will be deleted during the creation of the new product variants.",
|
|
84
|
+
"confirm-deletion-of-unused-variants-title": "Delete obsolete product variants?",
|
|
85
|
+
"create-new-collection": "Create new collection",
|
|
86
|
+
"create-new-facet": "Create new facet",
|
|
87
|
+
"create-new-product": "New product",
|
|
88
|
+
"created-new-variants-success": "Successfully created {count} new {count, plural, one {variant} other {variants}}",
|
|
89
|
+
"default-variant": "Default variant",
|
|
90
|
+
"display-variant-cards": "View details",
|
|
91
|
+
"display-variant-table": "View as table",
|
|
92
|
+
"drop-files-to-upload": "Drop files to upload",
|
|
93
|
+
"duplicate-sku-warning": "Please ensure all SKUs are unique",
|
|
94
|
+
"edit-options": "Edit options",
|
|
95
|
+
"expand-all-collections": "Expand all collections",
|
|
96
|
+
"facet-values": "Facet values",
|
|
97
|
+
"filter-by-name": "Filter by name",
|
|
98
|
+
"filter-by-name-or-sku": "Filter by name or SKU",
|
|
99
|
+
"filters": "Filters",
|
|
100
|
+
"group-by-product": "Group by product",
|
|
101
|
+
"live-preview-contents": "Live-preview contents",
|
|
102
|
+
"manage-variants": "Manage variants",
|
|
103
|
+
"move-down": "Move down",
|
|
104
|
+
"move-to": "Move to",
|
|
105
|
+
"move-up": "Move up",
|
|
106
|
+
"no-channel-selected": "No channel selected",
|
|
107
|
+
"no-featured-asset": "No featured asset",
|
|
108
|
+
"no-selection": "No selection",
|
|
109
|
+
"notify-remove-product-from-channel-error": "Could not remove product from channel",
|
|
110
|
+
"notify-remove-product-from-channel-success": "Successfully removed product from channel",
|
|
111
|
+
"notify-remove-variant-from-channel-error": "Could not remove product variant from channel",
|
|
112
|
+
"notify-remove-variant-from-channel-success": "Successfully removed product variant from channel",
|
|
113
|
+
"option": "Option",
|
|
114
|
+
"option-name": "Option name",
|
|
115
|
+
"option-values": "Option values",
|
|
116
|
+
"out-of-stock-threshold": "Out-of-stock threshold",
|
|
117
|
+
"out-of-stock-threshold-tooltip": "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support.",
|
|
118
|
+
"pending-search-index-updates": "Search index has pending updates to run",
|
|
119
|
+
"price": "Price",
|
|
120
|
+
"price-conversion-factor": "Price conversion factor",
|
|
121
|
+
"price-in-channel": "Price in { channel }",
|
|
122
|
+
"price-includes-tax-at": "Includes tax at { rate }%",
|
|
123
|
+
"price-with-tax-in-default-zone": "Inc. { rate }% tax: { price }",
|
|
124
|
+
"private": "Private",
|
|
125
|
+
"product-details": "Product details",
|
|
126
|
+
"product-name": "Product name",
|
|
127
|
+
"product-variants": "Product variants",
|
|
128
|
+
"public": "Public",
|
|
129
|
+
"rebuild-search-index": "Rebuild search index",
|
|
130
|
+
"reindex-error": "An error occurred while rebuilding search index",
|
|
131
|
+
"reindex-successful": "Indexed {count, plural, one {product variant} other {{count} product variants}} in {time}ms",
|
|
132
|
+
"reindexing": "Rebuilding search index",
|
|
133
|
+
"remove-from-channel": "Remove from channel",
|
|
134
|
+
"remove-option": "Remove option",
|
|
135
|
+
"remove-product-from-channel": "Remove product from channel",
|
|
136
|
+
"remove-product-variant-from-channel": "Remove product variant from channel",
|
|
137
|
+
"run-pending-search-index-updates": "Run {count, plural, one {1 pending update} other {{count} pending updates}}",
|
|
138
|
+
"running-search-index-updates": "Running {count, plural, one {1 update} other {{count} updates}} to search index",
|
|
139
|
+
"search-asset-name-or-tag": "Search by asset name or tags",
|
|
140
|
+
"search-for-term": "Search for term",
|
|
141
|
+
"search-index-controls": "Search index controls",
|
|
142
|
+
"search-product-name-or-code": "Search by product name or code",
|
|
143
|
+
"select-product": "Select product",
|
|
144
|
+
"select-product-variant": "Select product variant",
|
|
145
|
+
"sku": "SKU",
|
|
146
|
+
"slug": "Slug",
|
|
147
|
+
"slug-pattern-error": "Slug is invalid",
|
|
148
|
+
"stock-allocated": "Allocated",
|
|
149
|
+
"stock-allocated-tooltip": "The number of units allocated to Orders which have checked out but not yet been fulfilled",
|
|
150
|
+
"stock-on-hand": "Stock",
|
|
151
|
+
"stock-on-hand-tooltip": "Stock on hand - the number of physical units available in stock",
|
|
152
|
+
"stock-saleable": "Saleable",
|
|
153
|
+
"stock-saleable-tooltip": "The number of saleable units, comprising the stock on hand - allocated, taking into account the out-of-stock threshold",
|
|
154
|
+
"tax-category": "Tax category",
|
|
155
|
+
"taxes": "Taxes",
|
|
156
|
+
"track-inventory": "Track inventory",
|
|
157
|
+
"track-inventory-false": "Do not track",
|
|
158
|
+
"track-inventory-inherit": "Inherit from global settings",
|
|
159
|
+
"track-inventory-tooltip": "When tracked, product variant stock levels will be automatically adjusted when sold",
|
|
160
|
+
"track-inventory-true": "Track",
|
|
161
|
+
"update-product-option": "Update product option",
|
|
162
|
+
"use-global-value": "Use global value",
|
|
163
|
+
"values": "Values",
|
|
164
|
+
"variant": "Variant",
|
|
165
|
+
"view-contents": "View contents",
|
|
166
|
+
"visibility": "Visibility"
|
|
167
|
+
},
|
|
168
|
+
"common": {
|
|
169
|
+
"ID": "ID",
|
|
170
|
+
"actions": "Actions",
|
|
171
|
+
"add-item-to-list": "Add item to list",
|
|
172
|
+
"add-new-variants": "Add {count, plural, one {1 variant} other {{count} variants}}",
|
|
173
|
+
"add-note": "Add note",
|
|
174
|
+
"available-languages": "Available languages",
|
|
175
|
+
"boolean-and": "and",
|
|
176
|
+
"boolean-or": "or",
|
|
177
|
+
"browser-default": "Browser default",
|
|
178
|
+
"cancel": "Cancel",
|
|
179
|
+
"cancel-navigation": "Cancel navigation",
|
|
180
|
+
"change-selection": "Change selection",
|
|
181
|
+
"channel": "Channel",
|
|
182
|
+
"channels": "Channels",
|
|
183
|
+
"clear-selection": "Clear selection",
|
|
184
|
+
"close": "Close",
|
|
185
|
+
"code": "Code",
|
|
186
|
+
"collapse-entries": "Collapse entries",
|
|
187
|
+
"confirm": "Confirm",
|
|
188
|
+
"confirm-delete-note": "Delete note?",
|
|
189
|
+
"confirm-navigation": "Confirm navigation",
|
|
190
|
+
"create": "Create",
|
|
191
|
+
"created-at": "Created at",
|
|
192
|
+
"custom-fields": "Custom fields",
|
|
193
|
+
"default-channel": "Default channel",
|
|
194
|
+
"default-language": "Default language",
|
|
195
|
+
"default-tax-category": "Default tax category",
|
|
196
|
+
"delete": "Delete",
|
|
197
|
+
"description": "Description",
|
|
198
|
+
"details": "Details",
|
|
199
|
+
"disabled": "Disabled",
|
|
200
|
+
"discard-changes": "Discard changes",
|
|
201
|
+
"edit": "Edit",
|
|
202
|
+
"edit-field": "Edit field",
|
|
203
|
+
"edit-note": "Edit note",
|
|
204
|
+
"enabled": "Enabled",
|
|
205
|
+
"expand-entries": "Expand entries",
|
|
206
|
+
"extension-running-in-separate-window": "Extension is running in a separate window",
|
|
207
|
+
"filter": "Filter",
|
|
208
|
+
"general": "General",
|
|
209
|
+
"guest": "Guest",
|
|
210
|
+
"items-per-page-option": "{ count } per page",
|
|
211
|
+
"items-selected-count": "{ count } {count, plural, one {item} other {items}} selected",
|
|
212
|
+
"language": "Language",
|
|
213
|
+
"launch-extension": "Launch extension",
|
|
214
|
+
"live-update": "Live update",
|
|
215
|
+
"locale": "Locale",
|
|
216
|
+
"log-out": "Log out",
|
|
217
|
+
"login": "Log in",
|
|
218
|
+
"manage-tags": "Manage tags",
|
|
219
|
+
"manage-tags-description": "Update or delete tags globally.",
|
|
220
|
+
"medium-date": "Medium date",
|
|
221
|
+
"more": "More...",
|
|
222
|
+
"name": "Name",
|
|
223
|
+
"no-results": "No results",
|
|
224
|
+
"not-applicable": "Not applicable",
|
|
225
|
+
"not-set": "Not set",
|
|
226
|
+
"notify-create-error": "An error occurred, could not create { entity }",
|
|
227
|
+
"notify-create-success": "Created new { entity }",
|
|
228
|
+
"notify-delete-error": "An error occurred, could not delete { entity }",
|
|
229
|
+
"notify-delete-success": "Deleted { entity }",
|
|
230
|
+
"notify-save-changes-error": "An error occurred, could not save changes",
|
|
231
|
+
"notify-saved-changes": "Saved changes",
|
|
232
|
+
"notify-update-error": "An error occurred, could not update { entity }",
|
|
233
|
+
"notify-update-success": "Updated { entity }",
|
|
234
|
+
"notify-updated-tags-success": "Successfully updated tags",
|
|
235
|
+
"open": "Open",
|
|
236
|
+
"password": "Password",
|
|
237
|
+
"price": "Price",
|
|
238
|
+
"price-with-tax": "Price with tax",
|
|
239
|
+
"private": "Private",
|
|
240
|
+
"public": "Public",
|
|
241
|
+
"remember-me": "Remember me",
|
|
242
|
+
"remove": "Remove",
|
|
243
|
+
"remove-item-from-list": "Remove item from list",
|
|
244
|
+
"results-count": "{ count } {count, plural, one {result} other {results}}",
|
|
245
|
+
"sample-formatting": "Sample formatting",
|
|
246
|
+
"select": "Select...",
|
|
247
|
+
"select-display-language": "Select display language",
|
|
248
|
+
"select-items-with-count": "Select { count } {count, plural, one {item} other {items}}",
|
|
249
|
+
"select-products": "Select products",
|
|
250
|
+
"select-relation-id": "Select relation ID",
|
|
251
|
+
"select-today": "Select today",
|
|
252
|
+
"select-variants": "Select variants",
|
|
253
|
+
"set-language": "Set language",
|
|
254
|
+
"short-date": "Short date",
|
|
255
|
+
"tags": "Tags",
|
|
256
|
+
"theme": "Theme",
|
|
257
|
+
"there-are-unsaved-changes": "There are unsaved changes. Navigating away will cause these changes to be lost.",
|
|
258
|
+
"toggle-all": "Toggle all",
|
|
259
|
+
"update": "Update",
|
|
260
|
+
"updated-at": "Updated at",
|
|
261
|
+
"username": "Username",
|
|
262
|
+
"view-next-month": "View next month",
|
|
263
|
+
"view-previous-month": "View previous month",
|
|
264
|
+
"with-selected": "With selected..."
|
|
265
|
+
},
|
|
266
|
+
"customer": {
|
|
267
|
+
"add-customer-to-group": "Add customer to group",
|
|
268
|
+
"add-customer-to-groups-with-count": "Add customer to {count, plural, one {1 group} other {{count} groups}}",
|
|
269
|
+
"add-customers-to-group": "Add customers to group",
|
|
270
|
+
"add-customers-to-group-success": "Added {customerCount, plural, one {1 customer} other {{customerCount} customers}} to \"{ groupName }\"",
|
|
271
|
+
"add-customers-to-group-with-count": "Add {count, plural, one {1 customer} other {{count} customers}}",
|
|
272
|
+
"add-customers-to-group-with-name": "Add customers to \"{ groupName }\"",
|
|
273
|
+
"addresses": "Addresses",
|
|
274
|
+
"city": "City",
|
|
275
|
+
"company": "Company",
|
|
276
|
+
"confirm-delete-customer-group": "Delete customer group?",
|
|
277
|
+
"confirm-remove-customer-from-group": "Remove customer from group?",
|
|
278
|
+
"country": "Country",
|
|
279
|
+
"create-customer-group": "Create customer group",
|
|
280
|
+
"create-new-address": "Create new address",
|
|
281
|
+
"create-new-customer": "Create new customer",
|
|
282
|
+
"create-new-customer-group": "Create new customer group",
|
|
283
|
+
"customer-groups": "Customer groups",
|
|
284
|
+
"customer-history": "Customer history",
|
|
285
|
+
"customer-type": "Customer type",
|
|
286
|
+
"default-billing-address": "Default billing",
|
|
287
|
+
"default-shipping-address": "Default shipping",
|
|
288
|
+
"email-address": "Email address",
|
|
289
|
+
"email-verification-sent": "A verification email has been sent to { emailAddress }",
|
|
290
|
+
"first-name": "First name",
|
|
291
|
+
"full-name": "Full name",
|
|
292
|
+
"guest": "Guest",
|
|
293
|
+
"history-customer-added-to-group": "Customer added to group \"{ groupName }\"",
|
|
294
|
+
"history-customer-address-created": "Address created",
|
|
295
|
+
"history-customer-address-deleted": "Address deleted",
|
|
296
|
+
"history-customer-address-updated": "Address updated",
|
|
297
|
+
"history-customer-detail-updated": "Customer details updated",
|
|
298
|
+
"history-customer-email-update-requested": "Email address update requested",
|
|
299
|
+
"history-customer-email-update-verified": "Email address update verified",
|
|
300
|
+
"history-customer-password-reset-requested": "Password reset requested",
|
|
301
|
+
"history-customer-password-reset-verified": "Password reset verified",
|
|
302
|
+
"history-customer-password-updated": "Password updated",
|
|
303
|
+
"history-customer-registered": "Customer registered",
|
|
304
|
+
"history-customer-removed-from-group": "Customer removed from group \"{ groupName }\"",
|
|
305
|
+
"history-customer-verified": "Customer verified",
|
|
306
|
+
"history-using-external-auth-strategy": "using { strategy }",
|
|
307
|
+
"history-using-native-auth-strategy": "using email address",
|
|
308
|
+
"last-login": "Last login",
|
|
309
|
+
"last-name": "Last name",
|
|
310
|
+
"name": "Name",
|
|
311
|
+
"new-email-address": "New email address",
|
|
312
|
+
"no-orders-placed": "No orders placed",
|
|
313
|
+
"not-a-member-of-any-groups": "This customer is not a member of any groups",
|
|
314
|
+
"old-email-address": "Old email address",
|
|
315
|
+
"orders": "Orders",
|
|
316
|
+
"password": "Password",
|
|
317
|
+
"phone-number": "Phone number",
|
|
318
|
+
"postal-code": "Postal code",
|
|
319
|
+
"province": "Province",
|
|
320
|
+
"registered": "Registered",
|
|
321
|
+
"remove-customers-from-group-success": "Removed {customerCount, plural, one {1 customer} other {{customerCount} customers}} from \"{ groupName }\"",
|
|
322
|
+
"remove-from-group": "Remove from this group",
|
|
323
|
+
"search-customers-by-email": "Search by email address",
|
|
324
|
+
"search-customers-by-email-last-name-postal-code": "Search by email / last name / postal code",
|
|
325
|
+
"select-customer": "Select customer",
|
|
326
|
+
"set-as-default-billing-address": "Set as default billing",
|
|
327
|
+
"set-as-default-shipping-address": "Set as default shipping",
|
|
328
|
+
"street-line-1": "Street line 1",
|
|
329
|
+
"street-line-2": "Street line 2",
|
|
330
|
+
"title": "Title",
|
|
331
|
+
"update-customer-group": "Update customer group",
|
|
332
|
+
"verified": "Verified",
|
|
333
|
+
"view-group-members": "View group members"
|
|
334
|
+
},
|
|
335
|
+
"dashboard": {
|
|
336
|
+
"add-widget": "Add widget",
|
|
337
|
+
"latest-orders": "Latest orders",
|
|
338
|
+
"orders-summary": "Orders summary",
|
|
339
|
+
"remove-widget": "Remove widget",
|
|
340
|
+
"thisMonth": "This month",
|
|
341
|
+
"thisWeek": "This week",
|
|
342
|
+
"today": "Today",
|
|
343
|
+
"total-order-value": "Total value",
|
|
344
|
+
"total-orders": "Total orders",
|
|
345
|
+
"widget-resize": "Resize",
|
|
346
|
+
"widget-width": "Width: {width}",
|
|
347
|
+
"yesterday": "Yesterday"
|
|
348
|
+
},
|
|
349
|
+
"datetime": {
|
|
350
|
+
"ago-days": "{count, plural, one {1 day} other {{count} days}} ago",
|
|
351
|
+
"ago-hours": "{count, plural, one {1 hr} other {{count} hrs}} ago",
|
|
352
|
+
"ago-minutes": "{count, plural, one {1 min} other {{count} mins}} ago",
|
|
353
|
+
"ago-seconds": "{count, plural, =0 {just now} one {1 sec ago} other {{count} secs ago}}",
|
|
354
|
+
"ago-years": "{count, plural, one {1 year} other {{count} years}} ago",
|
|
355
|
+
"duration-milliseconds": "{ms}ms",
|
|
356
|
+
"duration-minutes:seconds": "{m}:{s}m",
|
|
357
|
+
"duration-seconds": "{s}s",
|
|
358
|
+
"month-apr": "April",
|
|
359
|
+
"month-aug": "August",
|
|
360
|
+
"month-dec": "December",
|
|
361
|
+
"month-feb": "February",
|
|
362
|
+
"month-jan": "January",
|
|
363
|
+
"month-jul": "July",
|
|
364
|
+
"month-jun": "June",
|
|
365
|
+
"month-mar": "March",
|
|
366
|
+
"month-may": "May",
|
|
367
|
+
"month-nov": "November",
|
|
368
|
+
"month-oct": "October",
|
|
369
|
+
"month-sep": "September",
|
|
370
|
+
"time": "Time",
|
|
371
|
+
"weekday-fr": "Fr",
|
|
372
|
+
"weekday-mo": "Mo",
|
|
373
|
+
"weekday-sa": "Sa",
|
|
374
|
+
"weekday-su": "Su",
|
|
375
|
+
"weekday-th": "Th",
|
|
376
|
+
"weekday-tu": "Tu",
|
|
377
|
+
"weekday-we": "We"
|
|
378
|
+
},
|
|
379
|
+
"editor": {
|
|
380
|
+
"image-alt": "Description (alt)",
|
|
381
|
+
"image-src": "Source",
|
|
382
|
+
"image-title": "Title",
|
|
383
|
+
"insert-image": "Insert image",
|
|
384
|
+
"link-href": "Link href",
|
|
385
|
+
"link-title": "Link title",
|
|
386
|
+
"remove-link": "Remove",
|
|
387
|
+
"set-link": "Set link"
|
|
388
|
+
},
|
|
389
|
+
"error": {
|
|
390
|
+
"403-forbidden": "You are not currently authorized to access \"{ path }\". Either you lack permissions, or your session has expired.",
|
|
391
|
+
"could-not-connect-to-server": "Could not connect to the Vendure server at { url }",
|
|
392
|
+
"facet-value-form-values-do-not-match": "The number of values in the facet form does not match the actual number of values",
|
|
393
|
+
"health-check-failed": "System health check failed",
|
|
394
|
+
"no-default-shipping-zone-set": "This channel has no default shipping zone. This may cause errors when calculating order shipping charges.",
|
|
395
|
+
"no-default-tax-zone-set": "This channel has no default tax zone, which will cause errors when calculating prices. Please create or select a zone.",
|
|
396
|
+
"product-variant-form-values-do-not-match": "The number of variants in the product form does not match the actual number of variants"
|
|
397
|
+
},
|
|
398
|
+
"marketing": {
|
|
399
|
+
"actions": "Actions",
|
|
400
|
+
"add-action": "Add action",
|
|
401
|
+
"add-condition": "Add condition",
|
|
402
|
+
"conditions": "Conditions",
|
|
403
|
+
"coupon-code": "Coupon code",
|
|
404
|
+
"create-new-promotion": "Create new promotion",
|
|
405
|
+
"ends-at": "Ends at",
|
|
406
|
+
"per-customer-limit": "Per-customer limit",
|
|
407
|
+
"search-by-coupon-code": "Search by coupon code",
|
|
408
|
+
"search-by-name": "Search by name",
|
|
409
|
+
"starts-at": "Starts at"
|
|
410
|
+
},
|
|
411
|
+
"nav": {
|
|
412
|
+
"administrators": "Administrators",
|
|
413
|
+
"assets": "Assets",
|
|
414
|
+
"catalog": "Catalog",
|
|
415
|
+
"channels": "Channels",
|
|
416
|
+
"collections": "Collections",
|
|
417
|
+
"countries": "Countries",
|
|
418
|
+
"customer-groups": "Customer groups",
|
|
419
|
+
"customers": "Customers",
|
|
420
|
+
"facets": "Facets",
|
|
421
|
+
"global-settings": "Global settings",
|
|
422
|
+
"job-queue": "Job queue",
|
|
423
|
+
"marketing": "Marketing",
|
|
424
|
+
"orders": "Orders",
|
|
425
|
+
"payment-methods": "Payment methods",
|
|
426
|
+
"products": "Products",
|
|
427
|
+
"promotions": "Promotions",
|
|
428
|
+
"roles": "Roles",
|
|
429
|
+
"sales": "Sales",
|
|
430
|
+
"settings": "Settings",
|
|
431
|
+
"shipping-methods": "Shipping methods",
|
|
432
|
+
"system": "System",
|
|
433
|
+
"system-status": "System Status",
|
|
434
|
+
"tax-categories": "Tax categories",
|
|
435
|
+
"tax-rates": "Tax Rates",
|
|
436
|
+
"zones": "Zones"
|
|
437
|
+
},
|
|
438
|
+
"order": {
|
|
439
|
+
"add-item-to-order": "Add item to order",
|
|
440
|
+
"add-note": "Add note",
|
|
441
|
+
"add-payment": "Add payment",
|
|
442
|
+
"add-payment-to-order": "Add payment to order",
|
|
443
|
+
"add-payment-to-order-success": "Successfully added a payment to the order",
|
|
444
|
+
"add-surcharge": "Add surcharge",
|
|
445
|
+
"added-items": "Added items",
|
|
446
|
+
"amount": "Amount",
|
|
447
|
+
"apply-filters": "Apply filters",
|
|
448
|
+
"arrange-additional-payment": "Arrange additional payment",
|
|
449
|
+
"billing-address": "Billing address",
|
|
450
|
+
"cancel": "Cancel",
|
|
451
|
+
"cancel-entire-order": "Cancel entire order",
|
|
452
|
+
"cancel-fulfillment": "Cancel fulfillment",
|
|
453
|
+
"cancel-modification": "Cancel modification",
|
|
454
|
+
"cancel-order": "Cancel order or items",
|
|
455
|
+
"cancel-payment": "Cancel payment",
|
|
456
|
+
"cancel-reason-customer-request": "Customer request",
|
|
457
|
+
"cancel-reason-not-available": "Not available",
|
|
458
|
+
"cancel-selected-items": "Cancel selected items",
|
|
459
|
+
"cancel-specified-items": "Cancel specified items",
|
|
460
|
+
"cancellation-reason": "Cancellation reason",
|
|
461
|
+
"cancelled-order-success": "Successfully cancelled order",
|
|
462
|
+
"confirm-modifications": "Confirm modifications",
|
|
463
|
+
"contents": "Contents",
|
|
464
|
+
"create-fulfillment": "Create fulfillment",
|
|
465
|
+
"create-fulfillment-success": "Created fulfillment",
|
|
466
|
+
"customer": "Customer",
|
|
467
|
+
"edit-billing-address": "Edit billing address",
|
|
468
|
+
"edit-shipping-address": "Edit shipping address",
|
|
469
|
+
"error-message": "Error message",
|
|
470
|
+
"filter-custom": "Custom",
|
|
471
|
+
"filter-preset-active": "Active",
|
|
472
|
+
"filter-preset-completed": "Completed",
|
|
473
|
+
"filter-preset-open": "Open",
|
|
474
|
+
"filter-preset-shipped": "Shipped",
|
|
475
|
+
"fulfill": "Fulfill",
|
|
476
|
+
"fulfill-order": "Fulfill order",
|
|
477
|
+
"fulfillment": "Fulfillment",
|
|
478
|
+
"fulfillment-method": "Fulfillment method",
|
|
479
|
+
"history-coupon-code-applied": "Coupon code applied",
|
|
480
|
+
"history-coupon-code-removed": "Coupon code removed",
|
|
481
|
+
"history-fulfillment-created": "Fulfillment created",
|
|
482
|
+
"history-fulfillment-delivered": "Fulfillment delivered",
|
|
483
|
+
"history-fulfillment-shipped": "Fulfillment shipped",
|
|
484
|
+
"history-fulfillment-transition": "Fulfillment transitioned from {from} to {to}",
|
|
485
|
+
"history-items-cancelled": "{count} {count, plural, one {item} other {items}} cancelled",
|
|
486
|
+
"history-order-cancelled": "Order cancelled",
|
|
487
|
+
"history-order-created": "Order created",
|
|
488
|
+
"history-order-fulfilled": "Order fulfilled",
|
|
489
|
+
"history-order-modified": "Order modified",
|
|
490
|
+
"history-order-transition": "Order transitioned from {from} to {to}",
|
|
491
|
+
"history-payment-settled": "Payment settled",
|
|
492
|
+
"history-payment-transition": "Payment #{id} transitioned from {from} to {to}",
|
|
493
|
+
"history-refund-transition": "Refund #{id} transitioned from {from} to {to}",
|
|
494
|
+
"item-count": "{count} {count, plural, one {item} other {items}}",
|
|
495
|
+
"line-fulfillment-all": "All items fulfilled",
|
|
496
|
+
"line-fulfillment-none": "No items fulfilled",
|
|
497
|
+
"line-fulfillment-partial": "{ count } of { total } items fulfilled",
|
|
498
|
+
"manually-transition-to-state": "Manually transition to state...",
|
|
499
|
+
"manually-transition-to-state-message": "Manually transition the order to another state. Note that order states are governed by rules which may prevent certain transitions.",
|
|
500
|
+
"modification-adding-items": "Adding {count} {count, plural, one {item} other {items}}",
|
|
501
|
+
"modification-adding-surcharges": "Adding {count} {count, plural, one {surcharge} other {surcharges}}",
|
|
502
|
+
"modification-adjusting-lines": "Adjusting {count} {count, plural, one {line} other {lines}}",
|
|
503
|
+
"modification-not-settled": "Not settled",
|
|
504
|
+
"modification-recalculate-shipping": "Recalculate shipping",
|
|
505
|
+
"modification-settled": "Settled",
|
|
506
|
+
"modification-summary": "Summary of modifications",
|
|
507
|
+
"modification-updating-billing-address": "Updating billing address",
|
|
508
|
+
"modification-updating-shipping-address": "Updating shipping address",
|
|
509
|
+
"modifications": "Modifications",
|
|
510
|
+
"modify-order": "Modify order",
|
|
511
|
+
"modify-order-price-difference": "Price difference",
|
|
512
|
+
"net-price": "Net price",
|
|
513
|
+
"note": "Note",
|
|
514
|
+
"note-is-private": "Note is private",
|
|
515
|
+
"note-only-visible-to-administrators": "Visible to admins only",
|
|
516
|
+
"note-visible-to-customer": "Visible to admins and customer",
|
|
517
|
+
"order-history": "Order history",
|
|
518
|
+
"order-state-diagram": "Order state diagram",
|
|
519
|
+
"payment": "Payment",
|
|
520
|
+
"payment-amount": "Payment amount",
|
|
521
|
+
"payment-metadata": "Payment metadata",
|
|
522
|
+
"payment-method": "Payment method",
|
|
523
|
+
"payment-state": "State",
|
|
524
|
+
"payment-to-refund": "Payment to refund",
|
|
525
|
+
"placed-at": "Placed at",
|
|
526
|
+
"placed-at-end": "Placed at - until",
|
|
527
|
+
"placed-at-start": "Placed at - from",
|
|
528
|
+
"preview-changes": "Preview changes",
|
|
529
|
+
"product-name": "Product name",
|
|
530
|
+
"product-sku": "SKU",
|
|
531
|
+
"promotions-applied": "Promotions applied",
|
|
532
|
+
"prorated-unit-price": "Prorated unit price",
|
|
533
|
+
"quantity": "Quantity",
|
|
534
|
+
"refund": "Refund",
|
|
535
|
+
"refund-adjustment": "Adjustment",
|
|
536
|
+
"refund-and-cancel-order": "Refund & cancel order",
|
|
537
|
+
"refund-cancellation-reason": "Refund/cancellation reason",
|
|
538
|
+
"refund-cancellation-reason-required": "Refund/cancellation reason is required",
|
|
539
|
+
"refund-metadata": "Refund metadata",
|
|
540
|
+
"refund-order-failed": "Refund failed",
|
|
541
|
+
"refund-order-success": "Successfully refunded order",
|
|
542
|
+
"refund-reason": "Refund reason",
|
|
543
|
+
"refund-reason-customer-request": "Customer request",
|
|
544
|
+
"refund-reason-not-available": "Not available",
|
|
545
|
+
"refund-shipping": "Refund shipping",
|
|
546
|
+
"refund-total": "Refund total",
|
|
547
|
+
"refund-total-error": "Refund total must be between {min} and {max}",
|
|
548
|
+
"refund-total-warning": "Refund total exceeds selected payment amount. The remaining refund amount will be refunded from the other payments.",
|
|
549
|
+
"refund-with-amount": "Refund {amount}",
|
|
550
|
+
"refunded-count": "{count} {count, plural, one {item} other {items}} refunded",
|
|
551
|
+
"removed-items": "Removed items",
|
|
552
|
+
"search-by-customer-last-name": "Search by customer last name",
|
|
553
|
+
"search-by-order-code": "Search by order code",
|
|
554
|
+
"select-state": "Select state",
|
|
555
|
+
"set-coupon-codes": "Set coupon codes",
|
|
556
|
+
"set-fulfillment-state": "Mark as {state}",
|
|
557
|
+
"settle-payment": "Settle payment",
|
|
558
|
+
"settle-payment-error": "Could not settle payment",
|
|
559
|
+
"settle-payment-success": "Successfully settled payment",
|
|
560
|
+
"settle-refund": "Settle refund",
|
|
561
|
+
"settle-refund-manual-instructions": "After manually refunding via your payment provider ({method}), enter the transaction ID here.",
|
|
562
|
+
"settle-refund-success": "Successfully settled refund",
|
|
563
|
+
"shipping": "Shipping",
|
|
564
|
+
"shipping-address": "Shipping address",
|
|
565
|
+
"shipping-cancelled": "Shipping cancelled",
|
|
566
|
+
"shipping-method": "Shipping method",
|
|
567
|
+
"state": "State",
|
|
568
|
+
"sub-total": "Sub total",
|
|
569
|
+
"successfully-updated-fulfillment": "Successfully updated fulfillment",
|
|
570
|
+
"surcharges": "Surcharges",
|
|
571
|
+
"tax-base": "Tax base",
|
|
572
|
+
"tax-description": "Tax description",
|
|
573
|
+
"tax-rate": "Tax rate",
|
|
574
|
+
"tax-summary": "Tax summary",
|
|
575
|
+
"tax-total": "Tax total",
|
|
576
|
+
"total": "Total",
|
|
577
|
+
"tracking-code": "Tracking code",
|
|
578
|
+
"transaction-id": "Transaction ID",
|
|
579
|
+
"transition-to-state": "Transition to { state } state",
|
|
580
|
+
"transitioned-payment-to-state-success": "Successfully transitioned payment to { state }",
|
|
581
|
+
"transitioned-to-state-success": "Successfully transitioned to { state }",
|
|
582
|
+
"unable-to-transition-to-state-try-another": "The order could not be transitioned back to the \"{state}\" state. Please select an alternative state.",
|
|
583
|
+
"unfulfilled": "Unfulfilled",
|
|
584
|
+
"unit-price": "Unit price"
|
|
585
|
+
},
|
|
586
|
+
"settings": {
|
|
587
|
+
"add-countries-to-zone": "Add countries to { zoneName }",
|
|
588
|
+
"add-countries-to-zone-success": "Added { countryCount } {countryCount, plural, one {country} other {countries}} to zone \"{ zoneName }\"",
|
|
589
|
+
"add-products-to-test-order": "Add products to the test order",
|
|
590
|
+
"channel": "Channel",
|
|
591
|
+
"channel-token": "Channel token",
|
|
592
|
+
"confirm-delete-payment-method": "Delete payment method?",
|
|
593
|
+
"confirm-delete-role": "Delete role?",
|
|
594
|
+
"confirm-delete-tax-category": "Delete tax category?",
|
|
595
|
+
"confirm-delete-tax-rate": "Delete tax rate?",
|
|
596
|
+
"create-new-channel": "Create new channel",
|
|
597
|
+
"create-new-country": "Create new country",
|
|
598
|
+
"create-new-payment-method": "Create new payment method",
|
|
599
|
+
"create-new-role": "Create new role",
|
|
600
|
+
"create-new-shipping-method": "Create new shipping method",
|
|
601
|
+
"create-new-tax-category": "Create tax category",
|
|
602
|
+
"create-new-tax-rate": "Create new tax rate",
|
|
603
|
+
"create-new-zone": "Create new zone",
|
|
604
|
+
"create-zone": "Create zone",
|
|
605
|
+
"currency": "Currency",
|
|
606
|
+
"default-role-label": "This is a default Role and cannot be modified",
|
|
607
|
+
"default-shipping-zone": "Default shipping zone",
|
|
608
|
+
"default-tax-zone": "Default tax zone",
|
|
609
|
+
"eligible": "Eligible",
|
|
610
|
+
"email-address": "Email address",
|
|
611
|
+
"filter-by-member-name": "Filter by country",
|
|
612
|
+
"first-name": "First name",
|
|
613
|
+
"fulfillment-handler": "Fulfillment handler",
|
|
614
|
+
"global-out-of-stock-threshold": "Global out-of-stock threshold",
|
|
615
|
+
"global-out-of-stock-threshold-tooltip": "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants.",
|
|
616
|
+
"last-name": "Last name",
|
|
617
|
+
"no-eligible-shipping-methods": "No eligible shipping methods",
|
|
618
|
+
"password": "Password",
|
|
619
|
+
"payment-eligibility-checker": "Payment eligibility checker",
|
|
620
|
+
"payment-handler": "Payment handler",
|
|
621
|
+
"permissions": "Permissions",
|
|
622
|
+
"prices-include-tax": "Prices include tax for the default Zone",
|
|
623
|
+
"profile": "Profile",
|
|
624
|
+
"rate": "Rate",
|
|
625
|
+
"remove-countries-from-zone-success": "Removed { countryCount } {countryCount, plural, one {country} other {countries}} from zone \"{ zoneName }\"",
|
|
626
|
+
"remove-from-zone": "Remove from zone",
|
|
627
|
+
"roles": "Roles",
|
|
628
|
+
"search-by-product-name-or-sku": "Search by product name or SKU",
|
|
629
|
+
"search-country-by-name": "Search countries by name",
|
|
630
|
+
"shipping-calculator": "Shipping calculator",
|
|
631
|
+
"shipping-eligibility-checker": "Shipping eligibility checker",
|
|
632
|
+
"shipping-method": "Shipping Method",
|
|
633
|
+
"tax-category": "Tax category",
|
|
634
|
+
"tax-rate": "Tax rate",
|
|
635
|
+
"test-address": "Test address",
|
|
636
|
+
"test-order": "Test order",
|
|
637
|
+
"test-result": "Test result",
|
|
638
|
+
"test-shipping-method": "Test shipping method",
|
|
639
|
+
"test-shipping-methods": "Test shipping methods",
|
|
640
|
+
"track-inventory-default": "Track inventory by default",
|
|
641
|
+
"update-zone": "Update zone",
|
|
642
|
+
"view-zone-members": "View members",
|
|
643
|
+
"zone": "Zone"
|
|
644
|
+
},
|
|
645
|
+
"state": {
|
|
646
|
+
"adding-items": "Adding items",
|
|
647
|
+
"all-orders": "All order states",
|
|
648
|
+
"arranging-additional-payment": "Arranging additional payment",
|
|
649
|
+
"arranging-payment": "Arranging payment",
|
|
650
|
+
"authorized": "Authorized",
|
|
651
|
+
"cancelled": "Cancelled",
|
|
652
|
+
"created": "Created",
|
|
653
|
+
"declined": "Declined",
|
|
654
|
+
"delivered": "Delivered",
|
|
655
|
+
"error": "Error",
|
|
656
|
+
"failed": "Failed",
|
|
657
|
+
"modifying": "Modifying",
|
|
658
|
+
"partially-delivered": "Partially delivered",
|
|
659
|
+
"partially-shipped": "Partially shipped",
|
|
660
|
+
"payment-authorized": "Payment authorized",
|
|
661
|
+
"payment-settled": "Payment settled",
|
|
662
|
+
"pending": "Pending",
|
|
663
|
+
"settled": "Settled",
|
|
664
|
+
"shipped": "Shipped"
|
|
665
|
+
},
|
|
666
|
+
"system": {
|
|
667
|
+
"all-job-queues": "All job queues",
|
|
668
|
+
"health-all-systems-up": "All systems up",
|
|
669
|
+
"health-error": "Error: one or more systems are down!",
|
|
670
|
+
"health-last-checked": "Last checked",
|
|
671
|
+
"health-message": "Message",
|
|
672
|
+
"health-refresh": "Refresh",
|
|
673
|
+
"health-status": "Status",
|
|
674
|
+
"health-status-down": "Down",
|
|
675
|
+
"health-status-up": "Up",
|
|
676
|
+
"hide-settled-jobs": "Hide settled jobs",
|
|
677
|
+
"job-data": "Job data",
|
|
678
|
+
"job-duration": "Duration",
|
|
679
|
+
"job-error": "Job error",
|
|
680
|
+
"job-queue-name": "Queue name",
|
|
681
|
+
"job-result": "Job result",
|
|
682
|
+
"job-state": "Job state"
|
|
683
|
+
}
|
|
684
|
+
}
|