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