@vendure/admin-ui 2.0.4 → 2.0.6

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.
Files changed (83) hide show
  1. package/core/common/component-registry-types.d.ts +1 -1
  2. package/core/common/version.d.ts +1 -1
  3. package/core/components/app-shell/app-shell.component.d.ts +1 -0
  4. package/core/providers/dashboard-widget/dashboard-widget.service.d.ts +4 -1
  5. package/core/providers/i18n/i18n.service.d.ts +4 -0
  6. package/dashboard/components/dashboard/dashboard.component.d.ts +4 -1
  7. package/esm2022/catalog/components/collection-data-table/collection-data-table.component.mjs +3 -3
  8. package/esm2022/catalog/components/collection-detail/collection-detail.component.mjs +2 -2
  9. package/esm2022/catalog/components/product-detail/product-detail.component.mjs +4 -4
  10. package/esm2022/catalog/components/product-variant-detail/product-variant-detail.component.mjs +2 -2
  11. package/esm2022/catalog/components/product-variant-list/product-variant-list.component.mjs +7 -1
  12. package/esm2022/catalog/components/product-variants-editor/product-variants-editor.component.mjs +7 -5
  13. package/esm2022/catalog/components/stock-location-detail/stock-location-detail.component.mjs +30 -30
  14. package/esm2022/core/app.config.mjs +3 -7
  15. package/esm2022/core/common/base-list.component.mjs +1 -1
  16. package/esm2022/core/common/component-registry-types.mjs +1 -1
  17. package/esm2022/core/common/generated-types.mjs +1 -1
  18. package/esm2022/core/common/version.mjs +2 -2
  19. package/esm2022/core/components/app-shell/app-shell.component.mjs +11 -9
  20. package/esm2022/core/components/theme-switcher/theme-switcher.component.mjs +1 -1
  21. package/esm2022/core/components/user-menu/user-menu.component.mjs +3 -3
  22. package/esm2022/core/data/data.module.mjs +3 -3
  23. package/esm2022/core/data/utils/transform-relation-custom-field-inputs.mjs +1 -1
  24. package/esm2022/core/providers/bulk-action-registry/bulk-action-types.mjs +1 -1
  25. package/esm2022/core/providers/dashboard-widget/dashboard-widget-types.mjs +1 -1
  26. package/esm2022/core/providers/dashboard-widget/dashboard-widget.service.mjs +5 -5
  27. package/esm2022/core/providers/data-table/data-table-filter-collection.mjs +1 -1
  28. package/esm2022/core/providers/i18n/i18n.service.mjs +15 -1
  29. package/esm2022/core/providers/page/page.service.mjs +1 -1
  30. package/esm2022/core/shared/components/affixed-input/affixed-input.component.mjs +2 -2
  31. package/esm2022/core/shared/components/data-table-2/data-table2.component.mjs +3 -3
  32. package/esm2022/core/shared/components/data-table-filters/data-table-filters.component.mjs +1 -1
  33. package/esm2022/core/shared/components/dropdown/dropdown-menu.component.mjs +29 -29
  34. package/esm2022/core/shared/components/dropdown/dropdown.component.mjs +1 -1
  35. package/esm2022/core/shared/components/rich-text-editor/link-dialog/link-dialog.component.mjs +1 -1
  36. package/esm2022/core/shared/components/rich-text-editor/prosemirror/custom-nodes.mjs +1 -1
  37. package/esm2022/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.mjs +1 -1
  38. package/esm2022/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.mjs +1 -1
  39. package/esm2022/core/shared/dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component.mjs +1 -1
  40. package/esm2022/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.mjs +3 -3
  41. package/esm2022/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.mjs +1 -1
  42. package/esm2022/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.mjs +1 -1
  43. package/esm2022/core/shared/dynamic-form-inputs/register-dynamic-input-components.mjs +1 -1
  44. package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.mjs +14 -14
  45. package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/customer/relation-customer-input.component.mjs +1 -1
  46. package/esm2022/core/shared/dynamic-form-inputs/relation-form-input/product-variant/relation-product-variant-input.component.mjs +3 -3
  47. package/esm2022/core/shared/shared.module.mjs +1 -1
  48. package/esm2022/customer/components/customer-detail/customer-detail.component.mjs +27 -27
  49. package/esm2022/dashboard/components/dashboard/dashboard.component.mjs +4 -4
  50. package/esm2022/order/components/draft-order-detail/draft-order-detail.component.mjs +3 -3
  51. package/esm2022/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +5 -3
  52. package/esm2022/order/components/order-data-table/order-data-table.component.mjs +3 -3
  53. package/esm2022/order/components/order-detail/order-detail.component.mjs +13 -11
  54. package/esm2022/settings/components/tax-rate-detail/tax-rate-detail.component.mjs +9 -9
  55. package/fesm2022/vendure-admin-ui-catalog.mjs +48 -41
  56. package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
  57. package/fesm2022/vendure-admin-ui-core.mjs +79 -69
  58. package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
  59. package/fesm2022/vendure-admin-ui-customer.mjs +26 -26
  60. package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
  61. package/fesm2022/vendure-admin-ui-dashboard.mjs +3 -3
  62. package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
  63. package/fesm2022/vendure-admin-ui-order.mjs +20 -16
  64. package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
  65. package/fesm2022/vendure-admin-ui-settings.mjs +8 -8
  66. package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
  67. package/package.json +14 -14
  68. package/static/i18n-messages/ar.json +774 -0
  69. package/static/i18n-messages/cs.json +773 -773
  70. package/static/i18n-messages/de.json +773 -773
  71. package/static/i18n-messages/en.json +774 -774
  72. package/static/i18n-messages/es.json +773 -773
  73. package/static/i18n-messages/fr.json +773 -773
  74. package/static/i18n-messages/he.json +774 -0
  75. package/static/i18n-messages/it.json +773 -773
  76. package/static/i18n-messages/pl.json +773 -773
  77. package/static/i18n-messages/pt_BR.json +773 -773
  78. package/static/i18n-messages/pt_PT.json +773 -773
  79. package/static/i18n-messages/ru.json +773 -773
  80. package/static/i18n-messages/uk.json +773 -773
  81. package/static/i18n-messages/zh_Hans.json +773 -773
  82. package/static/i18n-messages/zh_Hant.json +773 -773
  83. package/static/vendure-ui-config.json +3 -0
@@ -1,774 +1,774 @@
1
- {
2
- "admin": {
3
- "create-new-administrator": "新增管理員"
4
- },
5
- "asset": {
6
- "add-asset": "新增檔案",
7
- "add-asset-with-count": "新增{count}個檔案",
8
- "assets-selected-count": "已選擇{ count }個檔案",
9
- "dimensions": "尺寸",
10
- "focal-point": "圖片焦點",
11
- "notify-create-assets-success": "已成功新增{count}個檔案",
12
- "original-asset-size": "檔案大小",
13
- "preview": "預覽",
14
- "remove-asset": "移除檔案",
15
- "select-asset": "",
16
- "select-assets": "選擇檔案",
17
- "set-as-featured-asset": "設置為精選圖片",
18
- "set-focal-point": "設置圖片焦點",
19
- "source-file": "源文件",
20
- "unset-focal-point": "移除焦點",
21
- "update-focal-point": "更新焦点",
22
- "update-focal-point-error": "更新焦點失敗",
23
- "update-focal-point-success": "更新焦點成功",
24
- "upload-assets": "上傳檔案",
25
- "uploading": ""
26
- },
27
- "breadcrumb": {
28
- "administrators": "用户管理",
29
- "assets": "檔案列表",
30
- "channels": "鎖售渠道",
31
- "collections": "商品系列",
32
- "countries": "國家",
33
- "customer-groups": "",
34
- "customers": "客户管理",
35
- "dashboard": "總覽",
36
- "facets": "商品特徵",
37
- "global-settings": "語言",
38
- "inventory": "",
39
- "job-queue": "",
40
- "manage-variants": "商品規格管理",
41
- "modifying": "",
42
- "orders": "訂單管理",
43
- "payment-methods": "支付方式",
44
- "product-options": "",
45
- "profile": "",
46
- "promotions": "優惠",
47
- "roles": "角色管理",
48
- "seller-orders": "",
49
- "sellers": "",
50
- "shipping-methods": "配送方式管理",
51
- "stock-locations": "",
52
- "system-status": "",
53
- "tax-categories": "稅項類別",
54
- "tax-rates": "税率",
55
- "zones": ""
56
- },
57
- "catalog": {
58
- "add-facet-value": "新增特徵值",
59
- "add-facets": "新增特徵",
60
- "add-option": "新增規格選項",
61
- "add-price-in-another-currency": "",
62
- "add-stock-location": "",
63
- "add-stock-to-location": "",
64
- "asset": "",
65
- "asset-preview-links": "",
66
- "assets": "",
67
- "assign-product-to-channel-success": "成功將產品新增至渠道\"{ channel }\"",
68
- "assign-products-to-channel": "分配產品到渠道",
69
- "assign-to-channel": "分配至渠道",
70
- "assign-to-named-channel": "分配到{ channelCode }",
71
- "assign-variant-to-channel-success": "",
72
- "assign-variants-to-channel": "",
73
- "auto-update-option-variant-name": "",
74
- "auto-update-product-variant-name": "",
75
- "cannot-create-variants-without-options": "",
76
- "channel-price-preview": "渠道價格覽",
77
- "collection": "",
78
- "collection-contents": "系列產品",
79
- "collections": "",
80
- "confirm-bulk-delete-products": "",
81
- "confirm-cancel": "",
82
- "confirm-delete-assets": "",
83
- "confirm-delete-facet-value": "確認移除特徵值?",
84
- "confirm-delete-product": "確認移除商品?",
85
- "confirm-delete-product-option": "",
86
- "confirm-delete-product-option-group": "",
87
- "confirm-delete-product-option-group-body": "",
88
- "confirm-delete-product-variant": "確認移除商品規格?",
89
- "confirm-deletion-of-unused-variants-body": "",
90
- "confirm-deletion-of-unused-variants-title": "",
91
- "create-draft-order": "",
92
- "create-new-collection": "新增系列",
93
- "create-new-facet": "新增特徵",
94
- "create-new-product": "新增商品",
95
- "create-new-stock-location": "",
96
- "create-product-option-group": "",
97
- "create-product-variant": "",
98
- "default-currency": "",
99
- "do-not-inherit-filters": "",
100
- "drop-files-to-upload": "拖拽文件上傳",
101
- "edit-facet-values": "",
102
- "edit-options": "",
103
- "facet": "",
104
- "facet-value-not-available": "",
105
- "facet-values": "特徵值列表",
106
- "facets": "",
107
- "filter-by-name": "按名字篩選",
108
- "filter-by-sku": "依照SKU篩選",
109
- "filter-inheritance": "",
110
- "filters": "篩選條件",
111
- "inherit-filters-from-parent": "",
112
- "live-preview-contents": "",
113
- "manage-variants": "商品規格管理",
114
- "move-collection-to": "",
115
- "move-collections": "",
116
- "move-collections-success": "",
117
- "move-down": "下移",
118
- "move-to": "移至",
119
- "move-up": "上移",
120
- "name": "",
121
- "no-channel-selected": "並未選擇渠道",
122
- "no-featured-asset": "並無特徵圖片",
123
- "no-selection": "尚未選擇",
124
- "no-stock-locations-available-on-current-channel": "",
125
- "notify-bulk-delete-products-success": "",
126
- "notify-remove-facets-from-channel-success": "",
127
- "notify-remove-product-from-channel-error": "從渠道中移除商品失敗",
128
- "notify-remove-product-from-channel-success": "成功從渠道中移除商品",
129
- "notify-remove-variant-from-channel-error": "",
130
- "notify-remove-variant-from-channel-success": "",
131
- "number-of-variants": "",
132
- "option": "規格",
133
- "option-name": "規格名稱",
134
- "option-values": "規格列表(按輸入鍵新增)",
135
- "out-of-stock-threshold": "",
136
- "out-of-stock-threshold-tooltip": "",
137
- "page-description-options-editor": "",
138
- "price": "價格",
139
- "price-and-tax": "",
140
- "price-conversion-factor": "價格轉換係數",
141
- "price-in-channel": "渠道{ channel }價格",
142
- "price-includes-tax-at": "連税{ rate }%",
143
- "price-with-tax-in-default-zone": "連税{ rate }% 價格{ price }",
144
- "private": "隱藏",
145
- "product": "",
146
- "product-name": "商品名稱",
147
- "product-options": "",
148
- "product-variant-exists": "",
149
- "product-variants": "商品規格",
150
- "products": "",
151
- "public": "公開",
152
- "quick-jump-placeholder": "",
153
- "rebuild-search-index": "重建搜尋索引",
154
- "reindex-error": "重建索引失敗",
155
- "reindex-successful": "已成功重建{count}個產品索引,耗时{time}毫秒",
156
- "reindexing": "正在重建搜索索引",
157
- "remove-from-channel": "從渠道移除",
158
- "remove-option": "移除選項",
159
- "remove-product-from-channel": "從渠道移除商品",
160
- "remove-product-variant-from-channel": "",
161
- "reorder-collection": "",
162
- "root-collection": "",
163
- "run-pending-search-index-updates": "",
164
- "running-search-index-updates": "",
165
- "search-asset-name-or-tag": "",
166
- "search-for-term": "輸入搜索條目",
167
- "search-product-name-or-code": "輸入要搜索的商品名稱或商品編碼",
168
- "select-product": "",
169
- "select-product-variant": "",
170
- "sku": "商品庫存編碼",
171
- "slug": "名稱缩写",
172
- "slug-pattern-error": "",
173
- "stock-allocated": "",
174
- "stock-levels": "",
175
- "stock-location": "",
176
- "stock-locations": "",
177
- "stock-on-hand": "庫存",
178
- "tax-category": "税表分類",
179
- "taxes": "價格(連税)",
180
- "track-inventory": "跟踪庫存",
181
- "track-inventory-false": "",
182
- "track-inventory-inherit": "",
183
- "track-inventory-tooltip": "",
184
- "track-inventory-true": "",
185
- "update-product-option": "更新產品規格",
186
- "use-global-value": "",
187
- "values": "值",
188
- "variant": "商品規格",
189
- "variant-count": "",
190
- "view-contents": "查看詳情",
191
- "visibility": "訪問控制"
192
- },
193
- "common": {
194
- "ID": "ID",
195
- "actions": "操作",
196
- "add-filter": "",
197
- "add-item-to-list": "",
198
- "add-note": "",
199
- "apply": "",
200
- "assign-to-channel": "",
201
- "available-currencies": "",
202
- "available-languages": "可用語言",
203
- "boolean-and": "",
204
- "boolean-false": "",
205
- "boolean-or": "",
206
- "boolean-true": "",
207
- "breadcrumb": "",
208
- "browser-default": "",
209
- "cancel": "取消",
210
- "cancel-navigation": "取消",
211
- "change-selection": "",
212
- "channel": "渠道",
213
- "channels": "渠道",
214
- "clear-selection": "",
215
- "code": "編碼",
216
- "collapse-entries": "",
217
- "confirm": "",
218
- "confirm-bulk-assign-to-channel": "",
219
- "confirm-bulk-delete": "",
220
- "confirm-bulk-remove-from-channel": "",
221
- "confirm-delete-note": "",
222
- "confirm-navigation": "導航確認",
223
- "contents": "",
224
- "create": "新增",
225
- "created-at": "建立時間",
226
- "custom-fields": "客戶自訂欄位",
227
- "default-channel": "默認渠道",
228
- "default-language": "",
229
- "default-tax-category": "",
230
- "delete": "移除",
231
- "description": "描述",
232
- "details": "",
233
- "disabled": "禁用",
234
- "discard-changes": "放弃修改",
235
- "edit": "編辑",
236
- "edit-field": "編辑域",
237
- "edit-note": "",
238
- "enabled": "启用",
239
- "end-date": "",
240
- "expand-entries": "",
241
- "extension-running-in-separate-window": "扩展已在另一個窗口启動",
242
- "filter": "",
243
- "force-delete": "",
244
- "force-remove": "",
245
- "general": "",
246
- "guest": "游客",
247
- "id": "",
248
- "image": "",
249
- "items-per-page-option": "每页顯示 { count } 條",
250
- "items-selected-count": "",
251
- "keep-editing": "",
252
- "language": "語言",
253
- "launch-extension": "启動扩展插件",
254
- "list-items-and-n-more": "",
255
- "live-update": "",
256
- "locale": "",
257
- "log-out": "退出",
258
- "login": "登陆",
259
- "login-image-title": "",
260
- "login-title": "",
261
- "manage-tags": "",
262
- "manage-tags-description": "",
263
- "medium-date": "",
264
- "more": "更多...",
265
- "name": "名稱",
266
- "no-alerts": "",
267
- "no-bulk-actions-available": "",
268
- "no-results": "没找到任何結果",
269
- "not-applicable": "",
270
- "not-set": "未設定",
271
- "notify-assign-to-channel-success-with-count": "",
272
- "notify-bulk-update-success": "",
273
- "notify-create-error": "新增{ entity }失敗",
274
- "notify-create-success": "{ entity }已新增",
275
- "notify-delete-error": "移除{ entity }失敗",
276
- "notify-delete-error-with-count": "",
277
- "notify-delete-success": "{ entity }已移除",
278
- "notify-delete-success-with-count": "",
279
- "notify-remove-from-channel-success-with-count": "",
280
- "notify-save-changes-error": "保存失敗",
281
- "notify-saved-changes": "修改已保存",
282
- "notify-update-error": "更新{ entity }失敗",
283
- "notify-update-success": "{ entity }已更新",
284
- "notify-updated-tags-success": "",
285
- "okay": "",
286
- "operator-contains": "",
287
- "operator-eq": "",
288
- "operator-gt": "",
289
- "operator-lt": "",
290
- "operator-not-contains": "",
291
- "operator-not-eq": "",
292
- "operator-notContains": "",
293
- "operator-regex": "",
294
- "password": "密碼",
295
- "position": "",
296
- "price": "價格",
297
- "price-with-tax": "價格(連税)",
298
- "private": "隱藏",
299
- "public": "公開",
300
- "remember-me": "記住登入帳號",
301
- "remove": "移除",
302
- "remove-from-channel": "",
303
- "remove-item-from-list": "",
304
- "reset-columns": "",
305
- "results-count": "{count, plural, =0{無} other {{count}個篩選結果}}",
306
- "sample-formatting": "",
307
- "search-and-filter-list": "",
308
- "search-by-name": "",
309
- "select": "選擇...",
310
- "select-display-language": "選擇顯示語言",
311
- "select-items-with-count": "",
312
- "select-products": "",
313
- "select-relation-id": "",
314
- "select-table-columns": "",
315
- "select-today": "選擇今天",
316
- "select-variants": "",
317
- "seller": "",
318
- "set-language": "",
319
- "short-date": "",
320
- "slug": "",
321
- "start-date": "",
322
- "status": "",
323
- "tags": "",
324
- "theme": "",
325
- "there-are-unsaved-changes": "變更尚未被儲存,離開會失去所有變更",
326
- "toggle-all": "",
327
- "total-items": "{currentStart} - {currentEnd} 的 {totalItems}",
328
- "update": "確認修改",
329
- "updated-at": "修改時間",
330
- "username": "用户名",
331
- "value": "",
332
- "view-contents": "",
333
- "view-next-month": "查看下個月",
334
- "view-previous-month": "查看上個月",
335
- "visibility": "",
336
- "with-selected": ""
337
- },
338
- "customer": {
339
- "add-customer-to-group": "",
340
- "add-customer-to-groups-with-count": "",
341
- "add-customers-to-group": "",
342
- "add-customers-to-group-success": "",
343
- "add-customers-to-group-with-count": "",
344
- "add-customers-to-group-with-name": "",
345
- "addresses": "地址",
346
- "city": "市",
347
- "company": "",
348
- "confirm-remove-customer-from-group": "",
349
- "country": "國家",
350
- "create-customer-group": "",
351
- "create-new-address": "新增地址",
352
- "create-new-customer": "新增客户",
353
- "create-new-customer-group": "",
354
- "customer": "",
355
- "customer-group": "",
356
- "customer-groups": "",
357
- "customer-history": "",
358
- "customers": "",
359
- "default-billing-address": "默認賬單地址",
360
- "default-shipping-address": "默認郵寄地址",
361
- "email-address": "電子郵件地址",
362
- "email-verification-sent": "驗證郵件已寄到電郵地址{ emailAddress }",
363
- "first-name": "名",
364
- "full-name": "名字",
365
- "guest": "訪客",
366
- "history-customer-added-to-group": "",
367
- "history-customer-address-created": "",
368
- "history-customer-address-deleted": "",
369
- "history-customer-address-updated": "",
370
- "history-customer-detail-updated": "",
371
- "history-customer-email-update-requested": "",
372
- "history-customer-email-update-verified": "",
373
- "history-customer-password-reset-requested": "",
374
- "history-customer-password-reset-verified": "",
375
- "history-customer-password-updated": "",
376
- "history-customer-registered": "",
377
- "history-customer-removed-from-group": "",
378
- "history-customer-verified": "",
379
- "history-using-external-auth-strategy": "",
380
- "history-using-native-auth-strategy": "",
381
- "last-login": "",
382
- "last-name": "姓",
383
- "name": "姓名",
384
- "new-email-address": "",
385
- "no-orders-placed": "無訂單記錄",
386
- "not-a-member-of-any-groups": "",
387
- "old-email-address": "",
388
- "orders": "訂單列表",
389
- "password": "密碼",
390
- "phone-number": "電话號碼",
391
- "postal-code": "郵政編碼",
392
- "province": "省(直轄市)",
393
- "registered": "已注册",
394
- "remove-customers-from-group-success": "",
395
- "remove-from-group": "",
396
- "search-customers-by-email": "輸入要搜索的客户電郵地址",
397
- "search-customers-by-email-last-name-postal-code": "",
398
- "select-customer": "",
399
- "set-as-default-billing-address": "設定為默認賬單地址",
400
- "set-as-default-shipping-address": "設定為默認郵寄地址",
401
- "street-line-1": "街道",
402
- "street-line-2": "詳细地址(小區,公司門牌號等)",
403
- "title": "客户稱謂",
404
- "update-customer-group": "",
405
- "verified": "已驗證",
406
- "view-group-members": ""
407
- },
408
- "dashboard": {
409
- "add-widget": "",
410
- "latest-orders": "",
411
- "metric-average-order-value": "",
412
- "metric-number-of-orders": "",
413
- "metric-order-total-value": "",
414
- "metrics": "",
415
- "orders-summary": "",
416
- "remove-widget": "",
417
- "thisMonth": "",
418
- "thisWeek": "",
419
- "today": "",
420
- "total-order-value": "",
421
- "total-orders": "",
422
- "widget-resize": "",
423
- "widget-width": "",
424
- "yesterday": ""
425
- },
426
- "datetime": {
427
- "ago-days": "",
428
- "ago-hours": "",
429
- "ago-minutes": "",
430
- "ago-seconds": "",
431
- "ago-years": "",
432
- "duration-milliseconds": "",
433
- "duration-minutes:seconds": "",
434
- "duration-seconds": "",
435
- "month-apr": "4月",
436
- "month-aug": "8月",
437
- "month-dec": "12月",
438
- "month-feb": "2月",
439
- "month-jan": "1月",
440
- "month-jul": "7月",
441
- "month-jun": "6月",
442
- "month-mar": "3月",
443
- "month-may": "5月",
444
- "month-nov": "11月",
445
- "month-oct": "10月",
446
- "month-sep": "9月",
447
- "time": "時間",
448
- "weekday-fr": "星期五",
449
- "weekday-mo": "星期一",
450
- "weekday-sa": "星期六",
451
- "weekday-su": "星期日",
452
- "weekday-th": "星期四",
453
- "weekday-tu": "星期二",
454
- "weekday-we": "星期三"
455
- },
456
- "editor": {
457
- "image-alt": "圖片備注",
458
- "image-src": "圖片來源",
459
- "image-title": "圖片標題",
460
- "insert-image": "插入圖片",
461
- "link-href": "連結",
462
- "link-target": "",
463
- "link-title": "連結標題",
464
- "remove-link": "移除連結",
465
- "set-link": "設定連結"
466
- },
467
- "error": {
468
- "403-forbidden": "無權限存取路徑 \"{ path }\"。無權限或會話已經逾期,請重新登入",
469
- "could-not-connect-to-server": "無法連接伺服器 { url }",
470
- "facet-value-form-values-do-not-match": "表單中商品特徵值數量與實際不符",
471
- "health-check-failed": "",
472
- "no-default-shipping-zone-set": "",
473
- "no-default-tax-zone-set": ""
474
- },
475
- "marketing": {
476
- "actions": "優惠操作",
477
- "add-action": "新增優惠",
478
- "add-condition": "新增限制條件",
479
- "conditions": "使用限制",
480
- "coupon-code": "優惠碼",
481
- "create-new-promotion": "新增促销產品",
482
- "ends-at": "結束時間",
483
- "per-customer-limit": "領取上限",
484
- "promotion": "",
485
- "search-by-name-or-coupon-code": "",
486
- "starts-at": "開始時間"
487
- },
488
- "nav": {
489
- "administrators": "管理員",
490
- "assets": "檔案",
491
- "catalog": "商品目錄",
492
- "channels": "渠道",
493
- "collections": "商品列表",
494
- "countries": "國家",
495
- "customer-groups": "",
496
- "customers": "客户",
497
- "facets": "特徵",
498
- "global-settings": "語言設定",
499
- "inventory": "",
500
- "job-queue": "",
501
- "marketing": "推銷",
502
- "orders": "訂單管理",
503
- "payment-methods": "付款方法",
504
- "promotions": "優惠券管理",
505
- "roles": "角色管理",
506
- "sales": "銷售管理",
507
- "sellers": "",
508
- "settings": "系统設定",
509
- "shipping-methods": "配送方式",
510
- "system": "",
511
- "system-status": "",
512
- "tax-categories": "税表分類",
513
- "tax-rates": "税率管理",
514
- "zones": ""
515
- },
516
- "order": {
517
- "add-item-to-order": "",
518
- "add-note": "新增備注",
519
- "add-payment": "",
520
- "add-payment-to-order": "",
521
- "add-payment-to-order-success": "",
522
- "add-surcharge": "",
523
- "added-items": "",
524
- "amount": "金額",
525
- "arrange-additional-payment": "",
526
- "billing-address": "",
527
- "cancel": "取消",
528
- "cancel-entire-order": "",
529
- "cancel-fulfillment": "",
530
- "cancel-modification": "",
531
- "cancel-order": "取消訂單",
532
- "cancel-payment": "",
533
- "cancel-reason-customer-request": "客户要求",
534
- "cancel-reason-not-available": "產品無庫存",
535
- "cancel-selected-items": "取消已選",
536
- "cancel-specified-items": "",
537
- "cancellation-reason": "取消原因",
538
- "cancelled-order-success": "訂單取消成功",
539
- "complete-draft-order": "",
540
- "confirm-modifications": "",
541
- "contents": "内容",
542
- "create-fulfillment": "確認配貨",
543
- "create-fulfillment-success": "確認配貨成功",
544
- "customer": "客户",
545
- "delete-draft-order": "",
546
- "draft-order": "",
547
- "edit-billing-address": "",
548
- "edit-shipping-address": "",
549
- "error-message": "",
550
- "existing-address": "",
551
- "existing-customer": "",
552
- "filter-is-active": "",
553
- "fulfill": "已配貨",
554
- "fulfill-order": "接受訂單",
555
- "fulfillment": "配貨記錄",
556
- "fulfillment-method": "配貨方式",
557
- "history-coupon-code-applied": "優惠卷已使用",
558
- "history-coupon-code-removed": "優惠卷已移除",
559
- "history-fulfillment-created": "",
560
- "history-fulfillment-delivered": "",
561
- "history-fulfillment-shipped": "",
562
- "history-fulfillment-transition": "",
563
- "history-items-cancelled": "{count}個已取消",
564
- "history-order-cancelled": "訂單已取消",
565
- "history-order-created": "",
566
- "history-order-fulfilled": "訂單已配貨",
567
- "history-order-modified": "",
568
- "history-order-transition": "訂單狀態從{from}更新至{to}",
569
- "history-payment-settled": "已結算付款",
570
- "history-payment-transition": "付款交易 #{id} 狀態從{from}更新至{to}",
571
- "history-refund-transition": "退款交易 #{id} 狀態從 {from}更新至{to}",
572
- "item-count": "{count}張訂單",
573
- "line-fulfillment-all": "訂單已全部配貨完成",
574
- "line-fulfillment-none": "無訂單配貨記錄",
575
- "line-fulfillment-partial": "總共{ total }個訂單項,{ count }個已配貨",
576
- "manually-transition-to-state": "",
577
- "manually-transition-to-state-message": "",
578
- "modification-adding-items": "",
579
- "modification-adding-surcharges": "",
580
- "modification-adjusting-lines": "",
581
- "modification-not-settled": "",
582
- "modification-recalculate-shipping": "",
583
- "modification-settled": "",
584
- "modification-summary": "",
585
- "modification-updating-billing-address": "",
586
- "modification-updating-shipping-address": "",
587
- "modifications": "",
588
- "modify-order": "",
589
- "modify-order-price-difference": "",
590
- "net-price": "淨價",
591
- "note": "",
592
- "note-is-private": "隱藏備注",
593
- "note-only-visible-to-administrators": "僅管理員可瀏覽",
594
- "note-visible-to-customer": "管理員及客户可瀏覽",
595
- "order": "",
596
- "order-history": "訂單",
597
- "order-is-empty": "",
598
- "order-state-diagram": "",
599
- "order-type": "",
600
- "order-type-aggregate": "",
601
- "order-type-regular": "",
602
- "order-type-seller": "",
603
- "orders": "",
604
- "payment": "付款信息",
605
- "payment-amount": "付款金額",
606
- "payment-metadata": "付款元數據",
607
- "payment-method": "付款方式",
608
- "payment-state": "付款狀態",
609
- "payment-to-refund": "退款訂單付款信息",
610
- "payments": "",
611
- "placed-at": "",
612
- "preview-changes": "",
613
- "product-name": "產品名稱",
614
- "product-sku": "庫存編碼",
615
- "promotions-applied": "已使用優惠券",
616
- "prorated-unit-price": "",
617
- "quantity": "數量",
618
- "refund": "退款",
619
- "refund-adjustment": "退款調整",
620
- "refund-and-cancel-order": "退款|取消訂單",
621
- "refund-cancellation-reason": "",
622
- "refund-cancellation-reason-required": "",
623
- "refund-metadata": "退款元數據",
624
- "refund-order-failed": "",
625
- "refund-order-success": "退款訂單處理成功",
626
- "refund-reason": "退款原因",
627
- "refund-reason-customer-request": "客户要求",
628
- "refund-reason-not-available": "無庫存",
629
- "refund-shipping": "退運費",
630
- "refund-total": "退款總計",
631
- "refund-total-error": "退款總計必須大於{min}並少遊{max}之間",
632
- "refund-total-warning": "",
633
- "refund-with-amount": "退款金額{amount}",
634
- "refunded-count": "{count}個商品已退款",
635
- "removed-items": "",
636
- "search-by-order-filters": "輸入要搜索的訂單編號 / 姓 / 交易編號 ",
637
- "select-address": "",
638
- "select-shipping-method": "",
639
- "select-state": "",
640
- "seller-orders": "",
641
- "set-billing-address": "",
642
- "set-coupon-codes": "",
643
- "set-customer-for-order": "",
644
- "set-fulfillment-state": "",
645
- "set-shipping-address": "",
646
- "set-shipping-method": "",
647
- "settle-payment": "結算付款",
648
- "settle-payment-error": "結算付款失敗",
649
- "settle-payment-success": "結算付款成功",
650
- "settle-refund": "結算退款",
651
- "settle-refund-manual-instructions": "在您手動退款後,請新增交易編號",
652
- "settle-refund-success": "結算退款成功",
653
- "shipping": "運費",
654
- "shipping-address": "配送地址",
655
- "shipping-cancelled": "",
656
- "shipping-method": "配送方式",
657
- "state": "狀態",
658
- "sub-total": "小計金額",
659
- "successfully-updated-fulfillment": "",
660
- "surcharges": "",
661
- "tax-base": "",
662
- "tax-description": "",
663
- "tax-rate": "",
664
- "tax-summary": "",
665
- "tax-total": "",
666
- "total": "總計金額",
667
- "tracking-code": "物流碼",
668
- "transaction-id": "交易編號",
669
- "transition-to-state": "",
670
- "transitioned-payment-to-state-success": "",
671
- "transitioned-to-state-success": "",
672
- "unable-to-transition-to-state-try-another": "",
673
- "unfulfilled": "未配貨",
674
- "unit-price": "單價"
675
- },
676
- "settings": {
677
- "add-countries-to-zone": "新增國家到銷售區域...",
678
- "add-countries-to-zone-success": "{ countryCount }個國家已到銷售區域 \"{ zoneName }\"",
679
- "add-products-to-test-order": "新增產品到測試訂單",
680
- "administrator": "",
681
- "channel": "渠道",
682
- "channel-token": "渠道唯一碼",
683
- "country": "",
684
- "create-new-channel": "新增渠道",
685
- "create-new-country": "新增國家",
686
- "create-new-payment-method": "",
687
- "create-new-role": "新增角色",
688
- "create-new-seller": "",
689
- "create-new-shipping-method": "新增配送方式",
690
- "create-new-tax-category": "建立税表分類",
691
- "create-new-tax-rate": "新增税率",
692
- "create-new-zone": "",
693
- "default-currency": "",
694
- "default-role-label": "默認角色不可修改",
695
- "default-shipping-zone": "默認配送區域",
696
- "default-tax-zone": "默認銷售區域",
697
- "defaults": "",
698
- "eligible": "符合條件",
699
- "email-address": "電子郵件",
700
- "email-address-or-identifier": "",
701
- "first-name": "名",
702
- "fulfillment-handler": "",
703
- "global-available-languages-tooltip": "",
704
- "global-out-of-stock-threshold": "",
705
- "global-out-of-stock-threshold-tooltip": "",
706
- "last-name": "姓",
707
- "no-eligible-shipping-methods": "没有符合條件的配送方式",
708
- "password": "密碼",
709
- "payment-eligibility-checker": "",
710
- "payment-handler": "",
711
- "payment-method": "",
712
- "permissions": "權限",
713
- "prices-include-tax": "設定默認銷售區域價格連税",
714
- "profile": "",
715
- "rate": "税率",
716
- "remove-countries-from-zone-success": "{ countryCount }個國際已從\"{ zoneName }\"中移除",
717
- "remove-from-zone": "",
718
- "role": "",
719
- "roles": "角色列表",
720
- "search-by-product-name-or-sku": "輸入要搜索的產品名稱或庫存編碼",
721
- "seller": "",
722
- "shipping-calculator": "配送費計算",
723
- "shipping-eligibility-checker": "使用此配送方式的合格條件",
724
- "shipping-method": "配送方式",
725
- "tax-category": "税表分類",
726
- "tax-rate": "税率",
727
- "test-address": "模擬測試地址",
728
- "test-result": "模擬測試結果",
729
- "test-shipping-method": "模擬測試配送方式",
730
- "test-shipping-methods": "模擬測試配送方式",
731
- "track-inventory-default": "默認跟踪庫存",
732
- "view-zone-members": "",
733
- "zone": "銷售區域"
734
- },
735
- "state": {
736
- "adding-items": "正在選擇商品",
737
- "arranging-additional-payment": "",
738
- "arranging-payment": "正在付款",
739
- "authorized": "",
740
- "cancelled": "已取消",
741
- "created": "",
742
- "declined": "",
743
- "delivered": "已完成",
744
- "draft": "",
745
- "error": "",
746
- "failed": "",
747
- "modifying": "",
748
- "partially-delivered": "部分配貨",
749
- "partially-shipped": "",
750
- "payment-authorized": "已授權支付",
751
- "payment-settled": "已結算",
752
- "pending": "",
753
- "settled": "",
754
- "shipped": ""
755
- },
756
- "system": {
757
- "all-job-queues": "",
758
- "health-all-systems-up": "",
759
- "health-error": "",
760
- "health-last-checked": "",
761
- "health-message": "",
762
- "health-refresh": "",
763
- "health-status": "",
764
- "health-status-down": "",
765
- "health-status-up": "",
766
- "hide-settled-jobs": "",
767
- "job-data": "",
768
- "job-duration": "",
769
- "job-error": "",
770
- "job-queue-name": "",
771
- "job-result": "",
772
- "job-state": ""
773
- }
1
+ {
2
+ "admin": {
3
+ "create-new-administrator": "新增管理員"
4
+ },
5
+ "asset": {
6
+ "add-asset": "新增檔案",
7
+ "add-asset-with-count": "新增{count}個檔案",
8
+ "assets-selected-count": "已選擇{ count }個檔案",
9
+ "dimensions": "尺寸",
10
+ "focal-point": "圖片焦點",
11
+ "notify-create-assets-success": "已成功新增{count}個檔案",
12
+ "original-asset-size": "檔案大小",
13
+ "preview": "預覽",
14
+ "remove-asset": "移除檔案",
15
+ "select-asset": "",
16
+ "select-assets": "選擇檔案",
17
+ "set-as-featured-asset": "設置為精選圖片",
18
+ "set-focal-point": "設置圖片焦點",
19
+ "source-file": "源文件",
20
+ "unset-focal-point": "移除焦點",
21
+ "update-focal-point": "更新焦点",
22
+ "update-focal-point-error": "更新焦點失敗",
23
+ "update-focal-point-success": "更新焦點成功",
24
+ "upload-assets": "上傳檔案",
25
+ "uploading": ""
26
+ },
27
+ "breadcrumb": {
28
+ "administrators": "用户管理",
29
+ "assets": "檔案列表",
30
+ "channels": "鎖售渠道",
31
+ "collections": "商品系列",
32
+ "countries": "國家",
33
+ "customer-groups": "",
34
+ "customers": "客户管理",
35
+ "dashboard": "總覽",
36
+ "facets": "商品特徵",
37
+ "global-settings": "語言",
38
+ "inventory": "",
39
+ "job-queue": "",
40
+ "manage-variants": "商品規格管理",
41
+ "modifying": "",
42
+ "orders": "訂單管理",
43
+ "payment-methods": "支付方式",
44
+ "product-options": "",
45
+ "profile": "",
46
+ "promotions": "優惠",
47
+ "roles": "角色管理",
48
+ "seller-orders": "",
49
+ "sellers": "",
50
+ "shipping-methods": "配送方式管理",
51
+ "stock-locations": "",
52
+ "system-status": "",
53
+ "tax-categories": "稅項類別",
54
+ "tax-rates": "税率",
55
+ "zones": ""
56
+ },
57
+ "catalog": {
58
+ "add-facet-value": "新增特徵值",
59
+ "add-facets": "新增特徵",
60
+ "add-option": "新增規格選項",
61
+ "add-price-in-another-currency": "",
62
+ "add-stock-location": "",
63
+ "add-stock-to-location": "",
64
+ "asset": "",
65
+ "asset-preview-links": "",
66
+ "assets": "",
67
+ "assign-product-to-channel-success": "成功將產品新增至渠道\"{ channel }\"",
68
+ "assign-products-to-channel": "分配產品到渠道",
69
+ "assign-to-channel": "分配至渠道",
70
+ "assign-to-named-channel": "分配到{ channelCode }",
71
+ "assign-variant-to-channel-success": "",
72
+ "assign-variants-to-channel": "",
73
+ "auto-update-option-variant-name": "",
74
+ "auto-update-product-variant-name": "",
75
+ "cannot-create-variants-without-options": "",
76
+ "channel-price-preview": "渠道價格覽",
77
+ "collection": "",
78
+ "collection-contents": "系列產品",
79
+ "collections": "",
80
+ "confirm-bulk-delete-products": "",
81
+ "confirm-cancel": "",
82
+ "confirm-delete-assets": "",
83
+ "confirm-delete-facet-value": "確認移除特徵值?",
84
+ "confirm-delete-product": "確認移除商品?",
85
+ "confirm-delete-product-option": "",
86
+ "confirm-delete-product-option-group": "",
87
+ "confirm-delete-product-option-group-body": "",
88
+ "confirm-delete-product-variant": "確認移除商品規格?",
89
+ "confirm-deletion-of-unused-variants-body": "",
90
+ "confirm-deletion-of-unused-variants-title": "",
91
+ "create-draft-order": "",
92
+ "create-new-collection": "新增系列",
93
+ "create-new-facet": "新增特徵",
94
+ "create-new-product": "新增商品",
95
+ "create-new-stock-location": "",
96
+ "create-product-option-group": "",
97
+ "create-product-variant": "",
98
+ "default-currency": "",
99
+ "do-not-inherit-filters": "",
100
+ "drop-files-to-upload": "拖拽文件上傳",
101
+ "edit-facet-values": "",
102
+ "edit-options": "",
103
+ "facet": "",
104
+ "facet-value-not-available": "",
105
+ "facet-values": "特徵值列表",
106
+ "facets": "",
107
+ "filter-by-name": "按名字篩選",
108
+ "filter-by-sku": "依照SKU篩選",
109
+ "filter-inheritance": "",
110
+ "filters": "篩選條件",
111
+ "inherit-filters-from-parent": "",
112
+ "live-preview-contents": "",
113
+ "manage-variants": "商品規格管理",
114
+ "move-collection-to": "",
115
+ "move-collections": "",
116
+ "move-collections-success": "",
117
+ "move-down": "下移",
118
+ "move-to": "移至",
119
+ "move-up": "上移",
120
+ "name": "",
121
+ "no-channel-selected": "並未選擇渠道",
122
+ "no-featured-asset": "並無特徵圖片",
123
+ "no-selection": "尚未選擇",
124
+ "no-stock-locations-available-on-current-channel": "",
125
+ "notify-bulk-delete-products-success": "",
126
+ "notify-remove-facets-from-channel-success": "",
127
+ "notify-remove-product-from-channel-error": "從渠道中移除商品失敗",
128
+ "notify-remove-product-from-channel-success": "成功從渠道中移除商品",
129
+ "notify-remove-variant-from-channel-error": "",
130
+ "notify-remove-variant-from-channel-success": "",
131
+ "number-of-variants": "",
132
+ "option": "規格",
133
+ "option-name": "規格名稱",
134
+ "option-values": "規格列表(按輸入鍵新增)",
135
+ "out-of-stock-threshold": "",
136
+ "out-of-stock-threshold-tooltip": "",
137
+ "page-description-options-editor": "",
138
+ "price": "價格",
139
+ "price-and-tax": "",
140
+ "price-conversion-factor": "價格轉換係數",
141
+ "price-in-channel": "渠道{ channel }價格",
142
+ "price-includes-tax-at": "連税{ rate }%",
143
+ "price-with-tax-in-default-zone": "連税{ rate }% 價格{ price }",
144
+ "private": "隱藏",
145
+ "product": "",
146
+ "product-name": "商品名稱",
147
+ "product-options": "",
148
+ "product-variant-exists": "",
149
+ "product-variants": "商品規格",
150
+ "products": "",
151
+ "public": "公開",
152
+ "quick-jump-placeholder": "",
153
+ "rebuild-search-index": "重建搜尋索引",
154
+ "reindex-error": "重建索引失敗",
155
+ "reindex-successful": "已成功重建{count}個產品索引,耗时{time}毫秒",
156
+ "reindexing": "正在重建搜索索引",
157
+ "remove-from-channel": "從渠道移除",
158
+ "remove-option": "移除選項",
159
+ "remove-product-from-channel": "從渠道移除商品",
160
+ "remove-product-variant-from-channel": "",
161
+ "reorder-collection": "",
162
+ "root-collection": "",
163
+ "run-pending-search-index-updates": "",
164
+ "running-search-index-updates": "",
165
+ "search-asset-name-or-tag": "",
166
+ "search-for-term": "輸入搜索條目",
167
+ "search-product-name-or-code": "輸入要搜索的商品名稱或商品編碼",
168
+ "select-product": "",
169
+ "select-product-variant": "",
170
+ "sku": "商品庫存編碼",
171
+ "slug": "名稱缩写",
172
+ "slug-pattern-error": "",
173
+ "stock-allocated": "",
174
+ "stock-levels": "",
175
+ "stock-location": "",
176
+ "stock-locations": "",
177
+ "stock-on-hand": "庫存",
178
+ "tax-category": "税表分類",
179
+ "taxes": "價格(連税)",
180
+ "track-inventory": "跟踪庫存",
181
+ "track-inventory-false": "",
182
+ "track-inventory-inherit": "",
183
+ "track-inventory-tooltip": "",
184
+ "track-inventory-true": "",
185
+ "update-product-option": "更新產品規格",
186
+ "use-global-value": "",
187
+ "values": "值",
188
+ "variant": "商品規格",
189
+ "variant-count": "",
190
+ "view-contents": "查看詳情",
191
+ "visibility": "訪問控制"
192
+ },
193
+ "common": {
194
+ "ID": "ID",
195
+ "actions": "操作",
196
+ "add-filter": "",
197
+ "add-item-to-list": "",
198
+ "add-note": "",
199
+ "apply": "",
200
+ "assign-to-channel": "",
201
+ "available-currencies": "",
202
+ "available-languages": "可用語言",
203
+ "boolean-and": "",
204
+ "boolean-false": "",
205
+ "boolean-or": "",
206
+ "boolean-true": "",
207
+ "breadcrumb": "",
208
+ "browser-default": "",
209
+ "cancel": "取消",
210
+ "cancel-navigation": "取消",
211
+ "change-selection": "",
212
+ "channel": "渠道",
213
+ "channels": "渠道",
214
+ "clear-selection": "",
215
+ "code": "編碼",
216
+ "collapse-entries": "",
217
+ "confirm": "",
218
+ "confirm-bulk-assign-to-channel": "",
219
+ "confirm-bulk-delete": "",
220
+ "confirm-bulk-remove-from-channel": "",
221
+ "confirm-delete-note": "",
222
+ "confirm-navigation": "導航確認",
223
+ "contents": "",
224
+ "create": "新增",
225
+ "created-at": "建立時間",
226
+ "custom-fields": "客戶自訂欄位",
227
+ "default-channel": "默認渠道",
228
+ "default-language": "",
229
+ "default-tax-category": "",
230
+ "delete": "移除",
231
+ "description": "描述",
232
+ "details": "",
233
+ "disabled": "禁用",
234
+ "discard-changes": "放弃修改",
235
+ "edit": "編辑",
236
+ "edit-field": "編辑域",
237
+ "edit-note": "",
238
+ "enabled": "启用",
239
+ "end-date": "",
240
+ "expand-entries": "",
241
+ "extension-running-in-separate-window": "扩展已在另一個窗口启動",
242
+ "filter": "",
243
+ "force-delete": "",
244
+ "force-remove": "",
245
+ "general": "",
246
+ "guest": "游客",
247
+ "id": "",
248
+ "image": "",
249
+ "items-per-page-option": "每页顯示 { count } 條",
250
+ "items-selected-count": "",
251
+ "keep-editing": "",
252
+ "language": "語言",
253
+ "launch-extension": "启動扩展插件",
254
+ "list-items-and-n-more": "",
255
+ "live-update": "",
256
+ "locale": "",
257
+ "log-out": "退出",
258
+ "login": "登陆",
259
+ "login-image-title": "",
260
+ "login-title": "",
261
+ "manage-tags": "",
262
+ "manage-tags-description": "",
263
+ "medium-date": "",
264
+ "more": "更多...",
265
+ "name": "名稱",
266
+ "no-alerts": "",
267
+ "no-bulk-actions-available": "",
268
+ "no-results": "没找到任何結果",
269
+ "not-applicable": "",
270
+ "not-set": "未設定",
271
+ "notify-assign-to-channel-success-with-count": "",
272
+ "notify-bulk-update-success": "",
273
+ "notify-create-error": "新增{ entity }失敗",
274
+ "notify-create-success": "{ entity }已新增",
275
+ "notify-delete-error": "移除{ entity }失敗",
276
+ "notify-delete-error-with-count": "",
277
+ "notify-delete-success": "{ entity }已移除",
278
+ "notify-delete-success-with-count": "",
279
+ "notify-remove-from-channel-success-with-count": "",
280
+ "notify-save-changes-error": "保存失敗",
281
+ "notify-saved-changes": "修改已保存",
282
+ "notify-update-error": "更新{ entity }失敗",
283
+ "notify-update-success": "{ entity }已更新",
284
+ "notify-updated-tags-success": "",
285
+ "okay": "",
286
+ "operator-contains": "",
287
+ "operator-eq": "",
288
+ "operator-gt": "",
289
+ "operator-lt": "",
290
+ "operator-not-contains": "",
291
+ "operator-not-eq": "",
292
+ "operator-notContains": "",
293
+ "operator-regex": "",
294
+ "password": "密碼",
295
+ "position": "",
296
+ "price": "價格",
297
+ "price-with-tax": "價格(連税)",
298
+ "private": "隱藏",
299
+ "public": "公開",
300
+ "remember-me": "記住登入帳號",
301
+ "remove": "移除",
302
+ "remove-from-channel": "",
303
+ "remove-item-from-list": "",
304
+ "reset-columns": "",
305
+ "results-count": "{count, plural, =0{無} other {{count}個篩選結果}}",
306
+ "sample-formatting": "",
307
+ "search-and-filter-list": "",
308
+ "search-by-name": "",
309
+ "select": "選擇...",
310
+ "select-display-language": "選擇顯示語言",
311
+ "select-items-with-count": "",
312
+ "select-products": "",
313
+ "select-relation-id": "",
314
+ "select-table-columns": "",
315
+ "select-today": "選擇今天",
316
+ "select-variants": "",
317
+ "seller": "",
318
+ "set-language": "",
319
+ "short-date": "",
320
+ "slug": "",
321
+ "start-date": "",
322
+ "status": "",
323
+ "tags": "",
324
+ "theme": "",
325
+ "there-are-unsaved-changes": "變更尚未被儲存,離開會失去所有變更",
326
+ "toggle-all": "",
327
+ "total-items": "{currentStart} - {currentEnd} 的 {totalItems}",
328
+ "update": "確認修改",
329
+ "updated-at": "修改時間",
330
+ "username": "用户名",
331
+ "value": "",
332
+ "view-contents": "",
333
+ "view-next-month": "查看下個月",
334
+ "view-previous-month": "查看上個月",
335
+ "visibility": "",
336
+ "with-selected": ""
337
+ },
338
+ "customer": {
339
+ "add-customer-to-group": "",
340
+ "add-customer-to-groups-with-count": "",
341
+ "add-customers-to-group": "",
342
+ "add-customers-to-group-success": "",
343
+ "add-customers-to-group-with-count": "",
344
+ "add-customers-to-group-with-name": "",
345
+ "addresses": "地址",
346
+ "city": "市",
347
+ "company": "",
348
+ "confirm-remove-customer-from-group": "",
349
+ "country": "國家",
350
+ "create-customer-group": "",
351
+ "create-new-address": "新增地址",
352
+ "create-new-customer": "新增客户",
353
+ "create-new-customer-group": "",
354
+ "customer": "",
355
+ "customer-group": "",
356
+ "customer-groups": "",
357
+ "customer-history": "",
358
+ "customers": "",
359
+ "default-billing-address": "默認賬單地址",
360
+ "default-shipping-address": "默認郵寄地址",
361
+ "email-address": "電子郵件地址",
362
+ "email-verification-sent": "驗證郵件已寄到電郵地址{ emailAddress }",
363
+ "first-name": "名",
364
+ "full-name": "名字",
365
+ "guest": "訪客",
366
+ "history-customer-added-to-group": "",
367
+ "history-customer-address-created": "",
368
+ "history-customer-address-deleted": "",
369
+ "history-customer-address-updated": "",
370
+ "history-customer-detail-updated": "",
371
+ "history-customer-email-update-requested": "",
372
+ "history-customer-email-update-verified": "",
373
+ "history-customer-password-reset-requested": "",
374
+ "history-customer-password-reset-verified": "",
375
+ "history-customer-password-updated": "",
376
+ "history-customer-registered": "",
377
+ "history-customer-removed-from-group": "",
378
+ "history-customer-verified": "",
379
+ "history-using-external-auth-strategy": "",
380
+ "history-using-native-auth-strategy": "",
381
+ "last-login": "",
382
+ "last-name": "姓",
383
+ "name": "姓名",
384
+ "new-email-address": "",
385
+ "no-orders-placed": "無訂單記錄",
386
+ "not-a-member-of-any-groups": "",
387
+ "old-email-address": "",
388
+ "orders": "訂單列表",
389
+ "password": "密碼",
390
+ "phone-number": "電话號碼",
391
+ "postal-code": "郵政編碼",
392
+ "province": "省(直轄市)",
393
+ "registered": "已注册",
394
+ "remove-customers-from-group-success": "",
395
+ "remove-from-group": "",
396
+ "search-customers-by-email": "輸入要搜索的客户電郵地址",
397
+ "search-customers-by-email-last-name-postal-code": "",
398
+ "select-customer": "",
399
+ "set-as-default-billing-address": "設定為默認賬單地址",
400
+ "set-as-default-shipping-address": "設定為默認郵寄地址",
401
+ "street-line-1": "街道",
402
+ "street-line-2": "詳细地址(小區,公司門牌號等)",
403
+ "title": "客户稱謂",
404
+ "update-customer-group": "",
405
+ "verified": "已驗證",
406
+ "view-group-members": ""
407
+ },
408
+ "dashboard": {
409
+ "add-widget": "",
410
+ "latest-orders": "",
411
+ "metric-average-order-value": "",
412
+ "metric-number-of-orders": "",
413
+ "metric-order-total-value": "",
414
+ "metrics": "",
415
+ "orders-summary": "",
416
+ "remove-widget": "",
417
+ "thisMonth": "",
418
+ "thisWeek": "",
419
+ "today": "",
420
+ "total-order-value": "",
421
+ "total-orders": "",
422
+ "widget-resize": "",
423
+ "widget-width": "",
424
+ "yesterday": ""
425
+ },
426
+ "datetime": {
427
+ "ago-days": "",
428
+ "ago-hours": "",
429
+ "ago-minutes": "",
430
+ "ago-seconds": "",
431
+ "ago-years": "",
432
+ "duration-milliseconds": "",
433
+ "duration-minutes:seconds": "",
434
+ "duration-seconds": "",
435
+ "month-apr": "4月",
436
+ "month-aug": "8月",
437
+ "month-dec": "12月",
438
+ "month-feb": "2月",
439
+ "month-jan": "1月",
440
+ "month-jul": "7月",
441
+ "month-jun": "6月",
442
+ "month-mar": "3月",
443
+ "month-may": "5月",
444
+ "month-nov": "11月",
445
+ "month-oct": "10月",
446
+ "month-sep": "9月",
447
+ "time": "時間",
448
+ "weekday-fr": "星期五",
449
+ "weekday-mo": "星期一",
450
+ "weekday-sa": "星期六",
451
+ "weekday-su": "星期日",
452
+ "weekday-th": "星期四",
453
+ "weekday-tu": "星期二",
454
+ "weekday-we": "星期三"
455
+ },
456
+ "editor": {
457
+ "image-alt": "圖片備注",
458
+ "image-src": "圖片來源",
459
+ "image-title": "圖片標題",
460
+ "insert-image": "插入圖片",
461
+ "link-href": "連結",
462
+ "link-target": "",
463
+ "link-title": "連結標題",
464
+ "remove-link": "移除連結",
465
+ "set-link": "設定連結"
466
+ },
467
+ "error": {
468
+ "403-forbidden": "無權限存取路徑 \"{ path }\"。無權限或會話已經逾期,請重新登入",
469
+ "could-not-connect-to-server": "無法連接伺服器 { url }",
470
+ "facet-value-form-values-do-not-match": "表單中商品特徵值數量與實際不符",
471
+ "health-check-failed": "",
472
+ "no-default-shipping-zone-set": "",
473
+ "no-default-tax-zone-set": ""
474
+ },
475
+ "marketing": {
476
+ "actions": "優惠操作",
477
+ "add-action": "新增優惠",
478
+ "add-condition": "新增限制條件",
479
+ "conditions": "使用限制",
480
+ "coupon-code": "優惠碼",
481
+ "create-new-promotion": "新增促销產品",
482
+ "ends-at": "結束時間",
483
+ "per-customer-limit": "領取上限",
484
+ "promotion": "",
485
+ "search-by-name-or-coupon-code": "",
486
+ "starts-at": "開始時間"
487
+ },
488
+ "nav": {
489
+ "administrators": "管理員",
490
+ "assets": "檔案",
491
+ "catalog": "商品目錄",
492
+ "channels": "渠道",
493
+ "collections": "商品列表",
494
+ "countries": "國家",
495
+ "customer-groups": "",
496
+ "customers": "客户",
497
+ "facets": "特徵",
498
+ "global-settings": "語言設定",
499
+ "inventory": "",
500
+ "job-queue": "",
501
+ "marketing": "推銷",
502
+ "orders": "訂單管理",
503
+ "payment-methods": "付款方法",
504
+ "promotions": "優惠券管理",
505
+ "roles": "角色管理",
506
+ "sales": "銷售管理",
507
+ "sellers": "",
508
+ "settings": "系统設定",
509
+ "shipping-methods": "配送方式",
510
+ "system": "",
511
+ "system-status": "",
512
+ "tax-categories": "税表分類",
513
+ "tax-rates": "税率管理",
514
+ "zones": ""
515
+ },
516
+ "order": {
517
+ "add-item-to-order": "",
518
+ "add-note": "新增備注",
519
+ "add-payment": "",
520
+ "add-payment-to-order": "",
521
+ "add-payment-to-order-success": "",
522
+ "add-surcharge": "",
523
+ "added-items": "",
524
+ "amount": "金額",
525
+ "arrange-additional-payment": "",
526
+ "billing-address": "",
527
+ "cancel": "取消",
528
+ "cancel-entire-order": "",
529
+ "cancel-fulfillment": "",
530
+ "cancel-modification": "",
531
+ "cancel-order": "取消訂單",
532
+ "cancel-payment": "",
533
+ "cancel-reason-customer-request": "客户要求",
534
+ "cancel-reason-not-available": "產品無庫存",
535
+ "cancel-selected-items": "取消已選",
536
+ "cancel-specified-items": "",
537
+ "cancellation-reason": "取消原因",
538
+ "cancelled-order-success": "訂單取消成功",
539
+ "complete-draft-order": "",
540
+ "confirm-modifications": "",
541
+ "contents": "内容",
542
+ "create-fulfillment": "確認配貨",
543
+ "create-fulfillment-success": "確認配貨成功",
544
+ "customer": "客户",
545
+ "delete-draft-order": "",
546
+ "draft-order": "",
547
+ "edit-billing-address": "",
548
+ "edit-shipping-address": "",
549
+ "error-message": "",
550
+ "existing-address": "",
551
+ "existing-customer": "",
552
+ "filter-is-active": "",
553
+ "fulfill": "已配貨",
554
+ "fulfill-order": "接受訂單",
555
+ "fulfillment": "配貨記錄",
556
+ "fulfillment-method": "配貨方式",
557
+ "history-coupon-code-applied": "優惠卷已使用",
558
+ "history-coupon-code-removed": "優惠卷已移除",
559
+ "history-fulfillment-created": "",
560
+ "history-fulfillment-delivered": "",
561
+ "history-fulfillment-shipped": "",
562
+ "history-fulfillment-transition": "",
563
+ "history-items-cancelled": "{count}個已取消",
564
+ "history-order-cancelled": "訂單已取消",
565
+ "history-order-created": "",
566
+ "history-order-fulfilled": "訂單已配貨",
567
+ "history-order-modified": "",
568
+ "history-order-transition": "訂單狀態從{from}更新至{to}",
569
+ "history-payment-settled": "已結算付款",
570
+ "history-payment-transition": "付款交易 #{id} 狀態從{from}更新至{to}",
571
+ "history-refund-transition": "退款交易 #{id} 狀態從 {from}更新至{to}",
572
+ "item-count": "{count}張訂單",
573
+ "line-fulfillment-all": "訂單已全部配貨完成",
574
+ "line-fulfillment-none": "無訂單配貨記錄",
575
+ "line-fulfillment-partial": "總共{ total }個訂單項,{ count }個已配貨",
576
+ "manually-transition-to-state": "",
577
+ "manually-transition-to-state-message": "",
578
+ "modification-adding-items": "",
579
+ "modification-adding-surcharges": "",
580
+ "modification-adjusting-lines": "",
581
+ "modification-not-settled": "",
582
+ "modification-recalculate-shipping": "",
583
+ "modification-settled": "",
584
+ "modification-summary": "",
585
+ "modification-updating-billing-address": "",
586
+ "modification-updating-shipping-address": "",
587
+ "modifications": "",
588
+ "modify-order": "",
589
+ "modify-order-price-difference": "",
590
+ "net-price": "淨價",
591
+ "note": "",
592
+ "note-is-private": "隱藏備注",
593
+ "note-only-visible-to-administrators": "僅管理員可瀏覽",
594
+ "note-visible-to-customer": "管理員及客户可瀏覽",
595
+ "order": "",
596
+ "order-history": "訂單",
597
+ "order-is-empty": "",
598
+ "order-state-diagram": "",
599
+ "order-type": "",
600
+ "order-type-aggregate": "",
601
+ "order-type-regular": "",
602
+ "order-type-seller": "",
603
+ "orders": "",
604
+ "payment": "付款信息",
605
+ "payment-amount": "付款金額",
606
+ "payment-metadata": "付款元數據",
607
+ "payment-method": "付款方式",
608
+ "payment-state": "付款狀態",
609
+ "payment-to-refund": "退款訂單付款信息",
610
+ "payments": "",
611
+ "placed-at": "",
612
+ "preview-changes": "",
613
+ "product-name": "產品名稱",
614
+ "product-sku": "庫存編碼",
615
+ "promotions-applied": "已使用優惠券",
616
+ "prorated-unit-price": "",
617
+ "quantity": "數量",
618
+ "refund": "退款",
619
+ "refund-adjustment": "退款調整",
620
+ "refund-and-cancel-order": "退款|取消訂單",
621
+ "refund-cancellation-reason": "",
622
+ "refund-cancellation-reason-required": "",
623
+ "refund-metadata": "退款元數據",
624
+ "refund-order-failed": "",
625
+ "refund-order-success": "退款訂單處理成功",
626
+ "refund-reason": "退款原因",
627
+ "refund-reason-customer-request": "客户要求",
628
+ "refund-reason-not-available": "無庫存",
629
+ "refund-shipping": "退運費",
630
+ "refund-total": "退款總計",
631
+ "refund-total-error": "退款總計必須大於{min}並少遊{max}之間",
632
+ "refund-total-warning": "",
633
+ "refund-with-amount": "退款金額{amount}",
634
+ "refunded-count": "{count}個商品已退款",
635
+ "removed-items": "",
636
+ "search-by-order-filters": "輸入要搜索的訂單編號 / 姓 / 交易編號 ",
637
+ "select-address": "",
638
+ "select-shipping-method": "",
639
+ "select-state": "",
640
+ "seller-orders": "",
641
+ "set-billing-address": "",
642
+ "set-coupon-codes": "",
643
+ "set-customer-for-order": "",
644
+ "set-fulfillment-state": "",
645
+ "set-shipping-address": "",
646
+ "set-shipping-method": "",
647
+ "settle-payment": "結算付款",
648
+ "settle-payment-error": "結算付款失敗",
649
+ "settle-payment-success": "結算付款成功",
650
+ "settle-refund": "結算退款",
651
+ "settle-refund-manual-instructions": "在您手動退款後,請新增交易編號",
652
+ "settle-refund-success": "結算退款成功",
653
+ "shipping": "運費",
654
+ "shipping-address": "配送地址",
655
+ "shipping-cancelled": "",
656
+ "shipping-method": "配送方式",
657
+ "state": "狀態",
658
+ "sub-total": "小計金額",
659
+ "successfully-updated-fulfillment": "",
660
+ "surcharges": "",
661
+ "tax-base": "",
662
+ "tax-description": "",
663
+ "tax-rate": "",
664
+ "tax-summary": "",
665
+ "tax-total": "",
666
+ "total": "總計金額",
667
+ "tracking-code": "物流碼",
668
+ "transaction-id": "交易編號",
669
+ "transition-to-state": "",
670
+ "transitioned-payment-to-state-success": "",
671
+ "transitioned-to-state-success": "",
672
+ "unable-to-transition-to-state-try-another": "",
673
+ "unfulfilled": "未配貨",
674
+ "unit-price": "單價"
675
+ },
676
+ "settings": {
677
+ "add-countries-to-zone": "新增國家到銷售區域...",
678
+ "add-countries-to-zone-success": "{ countryCount }個國家已到銷售區域 \"{ zoneName }\"",
679
+ "add-products-to-test-order": "新增產品到測試訂單",
680
+ "administrator": "",
681
+ "channel": "渠道",
682
+ "channel-token": "渠道唯一碼",
683
+ "country": "",
684
+ "create-new-channel": "新增渠道",
685
+ "create-new-country": "新增國家",
686
+ "create-new-payment-method": "",
687
+ "create-new-role": "新增角色",
688
+ "create-new-seller": "",
689
+ "create-new-shipping-method": "新增配送方式",
690
+ "create-new-tax-category": "建立税表分類",
691
+ "create-new-tax-rate": "新增税率",
692
+ "create-new-zone": "",
693
+ "default-currency": "",
694
+ "default-role-label": "默認角色不可修改",
695
+ "default-shipping-zone": "默認配送區域",
696
+ "default-tax-zone": "默認銷售區域",
697
+ "defaults": "",
698
+ "eligible": "符合條件",
699
+ "email-address": "電子郵件",
700
+ "email-address-or-identifier": "",
701
+ "first-name": "名",
702
+ "fulfillment-handler": "",
703
+ "global-available-languages-tooltip": "",
704
+ "global-out-of-stock-threshold": "",
705
+ "global-out-of-stock-threshold-tooltip": "",
706
+ "last-name": "姓",
707
+ "no-eligible-shipping-methods": "没有符合條件的配送方式",
708
+ "password": "密碼",
709
+ "payment-eligibility-checker": "",
710
+ "payment-handler": "",
711
+ "payment-method": "",
712
+ "permissions": "權限",
713
+ "prices-include-tax": "設定默認銷售區域價格連税",
714
+ "profile": "",
715
+ "rate": "税率",
716
+ "remove-countries-from-zone-success": "{ countryCount }個國際已從\"{ zoneName }\"中移除",
717
+ "remove-from-zone": "",
718
+ "role": "",
719
+ "roles": "角色列表",
720
+ "search-by-product-name-or-sku": "輸入要搜索的產品名稱或庫存編碼",
721
+ "seller": "",
722
+ "shipping-calculator": "配送費計算",
723
+ "shipping-eligibility-checker": "使用此配送方式的合格條件",
724
+ "shipping-method": "配送方式",
725
+ "tax-category": "税表分類",
726
+ "tax-rate": "税率",
727
+ "test-address": "模擬測試地址",
728
+ "test-result": "模擬測試結果",
729
+ "test-shipping-method": "模擬測試配送方式",
730
+ "test-shipping-methods": "模擬測試配送方式",
731
+ "track-inventory-default": "默認跟踪庫存",
732
+ "view-zone-members": "",
733
+ "zone": "銷售區域"
734
+ },
735
+ "state": {
736
+ "adding-items": "正在選擇商品",
737
+ "arranging-additional-payment": "",
738
+ "arranging-payment": "正在付款",
739
+ "authorized": "",
740
+ "cancelled": "已取消",
741
+ "created": "",
742
+ "declined": "",
743
+ "delivered": "已完成",
744
+ "draft": "",
745
+ "error": "",
746
+ "failed": "",
747
+ "modifying": "",
748
+ "partially-delivered": "部分配貨",
749
+ "partially-shipped": "",
750
+ "payment-authorized": "已授權支付",
751
+ "payment-settled": "已結算",
752
+ "pending": "",
753
+ "settled": "",
754
+ "shipped": ""
755
+ },
756
+ "system": {
757
+ "all-job-queues": "",
758
+ "health-all-systems-up": "",
759
+ "health-error": "",
760
+ "health-last-checked": "",
761
+ "health-message": "",
762
+ "health-refresh": "",
763
+ "health-status": "",
764
+ "health-status-down": "",
765
+ "health-status-up": "",
766
+ "hide-settled-jobs": "",
767
+ "job-data": "",
768
+ "job-duration": "",
769
+ "job-error": "",
770
+ "job-queue-name": "",
771
+ "job-result": "",
772
+ "job-state": ""
773
+ }
774
774
  }