@vendure/dashboard 3.5.0-minor-202510071456 → 3.5.0-minor-202510161257
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/ast-utils.spec.js +3 -3
- package/dist/vite/vite-plugin-hmr.d.ts +8 -0
- package/dist/vite/vite-plugin-hmr.js +34 -0
- package/dist/vite/vite-plugin-theme.js +6 -6
- package/dist/vite/vite-plugin-transform-index.js +6 -1
- package/dist/vite/vite-plugin-vendure-dashboard.d.ts +31 -4
- package/dist/vite/vite-plugin-vendure-dashboard.js +89 -34
- package/package.json +17 -5
- package/src/app/app-providers.tsx +4 -1
- package/src/app/common/map-faceted-filter-fields.ts +21 -0
- package/src/app/main.tsx +3 -1
- package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_administrators/administrators.tsx +13 -3
- package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +6 -13
- package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +1 -1
- package/src/app/routes/_authenticated/_assets/assets.tsx +17 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_collections/collections.tsx +5 -0
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +0 -1
- package/src/app/routes/_authenticated/_customers/customers.tsx +9 -5
- package/src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_facets/components/facet-value-bulk-actions.tsx +16 -0
- package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +43 -12
- package/src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx +14 -5
- package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +117 -92
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx +2 -1
- package/src/app/routes/_authenticated/_orders/components/order-table-totals.tsx +26 -27
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +5 -3
- package/src/app/routes/_authenticated/_orders/components/state-transition-control.tsx +6 -9
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +17 -1
- package/src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx +48 -281
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +59 -40
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +73 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +312 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_products/products.tsx +6 -2
- package/src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx +4 -8
- package/src/app/routes/_authenticated/_promotions/components/promotion-bulk-actions.tsx +0 -10
- package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_promotions/promotions.tsx +12 -0
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +6 -2
- package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +4 -10
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +9 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +1 -0
- package/src/app/routes/_authenticated/_zones/zones.graphql.ts +2 -2
- package/src/app/routes/login.tsx +2 -2
- package/src/i18n/locales/ar.po +420 -289
- package/src/i18n/locales/cs.po +420 -289
- package/src/i18n/locales/de.po +420 -289
- package/src/i18n/locales/en.po +420 -289
- package/src/i18n/locales/es.po +420 -289
- package/src/i18n/locales/fa.po +420 -289
- package/src/i18n/locales/fr.po +468 -337
- package/src/i18n/locales/he.po +420 -289
- package/src/i18n/locales/hr.po +420 -289
- package/src/i18n/locales/it.po +420 -289
- package/src/i18n/locales/ja.po +420 -289
- package/src/i18n/locales/nb.po +420 -289
- package/src/i18n/locales/ne.po +420 -289
- package/src/i18n/locales/pl.po +420 -289
- package/src/i18n/locales/pt_BR.po +420 -289
- package/src/i18n/locales/pt_PT.po +420 -289
- package/src/i18n/locales/ru.po +420 -289
- package/src/i18n/locales/sv.po +420 -289
- package/src/i18n/locales/tr.po +420 -289
- package/src/i18n/locales/uk.po +420 -289
- package/src/i18n/locales/zh_Hans.po +420 -289
- package/src/i18n/locales/zh_Hant.po +420 -289
- package/src/lib/components/data-input/affixed-input.stories.tsx +93 -0
- package/src/lib/components/data-input/affixed-input.tsx +5 -2
- package/src/lib/components/data-input/boolean-input.stories.tsx +102 -0
- package/src/lib/components/data-input/checkbox-input.stories.tsx +61 -0
- package/src/lib/components/data-input/datetime-input.stories.tsx +62 -0
- package/src/lib/components/data-input/datetime-input.tsx +27 -13
- package/src/lib/components/data-input/default-relation-input.tsx +18 -12
- package/src/lib/components/data-input/money-input.stories.tsx +88 -0
- package/src/lib/components/data-input/number-input.stories.tsx +103 -0
- package/src/lib/components/data-input/number-input.tsx +10 -4
- package/src/lib/components/data-input/password-input.stories.tsx +65 -0
- package/src/lib/components/data-input/rich-text-input.stories.tsx +92 -0
- package/src/lib/components/data-input/slug-input.stories.tsx +232 -0
- package/src/lib/components/data-input/slug-input.tsx +9 -10
- package/src/lib/components/data-input/text-input.stories.tsx +52 -0
- package/src/lib/components/data-input/textarea-input.stories.tsx +55 -0
- package/src/lib/components/data-table/add-filter-menu.tsx +6 -1
- package/src/lib/components/data-table/column-header-wrapper.tsx +106 -0
- package/src/lib/components/data-table/data-table-bulk-action-item.tsx +11 -9
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +4 -4
- package/src/lib/components/data-table/data-table-column-header.tsx +17 -14
- package/src/lib/components/data-table/data-table-faceted-filter.tsx +33 -11
- package/src/lib/components/data-table/data-table-filter-badge-editable.tsx +35 -0
- package/src/lib/components/data-table/data-table-filter-badge.tsx +23 -16
- package/src/lib/components/data-table/data-table-filter-dialog.tsx +28 -8
- package/src/lib/components/data-table/data-table-pagination.tsx +23 -7
- package/src/lib/components/data-table/data-table.stories.tsx +249 -0
- package/src/lib/components/data-table/data-table.tsx +37 -9
- package/src/lib/components/data-table/filters/data-table-datetime-filter.tsx +79 -34
- package/src/lib/components/data-table/use-generated-columns.tsx +55 -27
- package/src/lib/components/layout/nav-user.tsx +19 -13
- package/src/lib/components/login/login-form.tsx +39 -123
- package/src/lib/components/shared/alerts.tsx +29 -17
- package/src/lib/components/shared/asset/asset-bulk-actions.tsx +3 -3
- package/src/lib/components/shared/asset/asset-gallery.stories.tsx +76 -0
- package/src/lib/components/shared/asset/asset-gallery.tsx +147 -113
- package/src/lib/components/shared/asset/asset-picker-dialog.stories.tsx +58 -0
- package/src/lib/components/shared/customer-group-selector.tsx +5 -2
- package/src/lib/components/shared/detail-page-button.stories.tsx +52 -0
- package/src/lib/components/shared/facet-value-selector.stories.tsx +48 -0
- package/src/lib/components/shared/facet-value-selector.tsx +130 -34
- package/src/lib/components/shared/paginated-list-data-table.stories.tsx +212 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +12 -12
- package/src/lib/components/shared/permission-guard.stories.tsx +46 -0
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +2 -0
- package/src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx +8 -4
- package/src/lib/components/shared/rich-text-editor/rich-text-editor.tsx +1 -0
- package/src/lib/components/shared/table-cell/order-table-cell-components.tsx +40 -0
- package/src/lib/components/shared/vendure-image.stories.tsx +167 -0
- package/src/lib/components/shared/vendure-image.tsx +6 -7
- package/src/lib/components/ui/accordion.stories.tsx +33 -0
- package/src/lib/components/ui/alert-dialog.stories.tsx +48 -0
- package/src/lib/components/ui/alert.stories.tsx +35 -0
- package/src/lib/components/ui/aspect-ratio.stories.tsx +28 -0
- package/src/lib/components/ui/badge.stories.tsx +28 -0
- package/src/lib/components/ui/breadcrumb.stories.tsx +41 -0
- package/src/lib/components/ui/button.stories.tsx +38 -0
- package/src/lib/components/ui/calendar.stories.tsx +22 -0
- package/src/lib/components/ui/card.stories.tsx +28 -0
- package/src/lib/components/ui/carousel.stories.tsx +34 -0
- package/src/lib/components/ui/checkbox.stories.tsx +31 -0
- package/src/lib/components/ui/collapsible.stories.tsx +39 -0
- package/src/lib/components/ui/command.stories.tsx +44 -0
- package/src/lib/components/ui/context-menu.stories.tsx +38 -0
- package/src/lib/components/ui/dialog.stories.tsx +52 -0
- package/src/lib/components/ui/drawer.stories.tsx +50 -0
- package/src/lib/components/ui/dropdown-menu.stories.tsx +41 -0
- package/src/lib/components/ui/hover-card.stories.tsx +38 -0
- package/src/lib/components/ui/input-group.tsx +148 -0
- package/src/lib/components/ui/input-otp.stories.tsx +30 -0
- package/src/lib/components/ui/input.stories.tsx +38 -0
- package/src/lib/components/ui/label.stories.tsx +24 -0
- package/src/lib/components/ui/menubar.stories.tsx +53 -0
- package/src/lib/components/ui/navigation-menu.stories.tsx +54 -0
- package/src/lib/components/ui/pagination.stories.tsx +51 -0
- package/src/lib/components/ui/password-input.stories.tsx +32 -0
- package/src/lib/components/ui/password-input.tsx +33 -0
- package/src/lib/components/ui/popover.stories.tsx +33 -0
- package/src/lib/components/ui/progress.stories.tsx +27 -0
- package/src/lib/components/ui/radio-group.stories.tsx +34 -0
- package/src/lib/components/ui/resizable.stories.tsx +32 -0
- package/src/lib/components/ui/scroll-area.stories.tsx +31 -0
- package/src/lib/components/ui/select.stories.tsx +36 -0
- package/src/lib/components/ui/separator.stories.tsx +35 -0
- package/src/lib/components/ui/sheet.stories.tsx +50 -0
- package/src/lib/components/ui/sidebar-context.ts +16 -0
- package/src/lib/components/ui/sidebar.tsx +2 -13
- package/src/lib/components/ui/skeleton.stories.tsx +26 -0
- package/src/lib/components/ui/slider.stories.tsx +37 -0
- package/src/lib/components/ui/switch.stories.tsx +31 -0
- package/src/lib/components/ui/table.stories.tsx +52 -0
- package/src/lib/components/ui/tabs.stories.tsx +29 -0
- package/src/lib/components/ui/textarea.stories.tsx +32 -0
- package/src/lib/components/ui/toggle-group.stories.tsx +31 -0
- package/src/lib/components/ui/toggle.stories.tsx +39 -0
- package/src/lib/components/ui/tooltip.stories.tsx +30 -0
- package/src/lib/components/ui/tooltip.tsx +2 -2
- package/src/lib/framework/alert/alert-extensions.tsx +0 -11
- package/src/lib/framework/alert/alert-item.tsx +14 -19
- package/src/lib/framework/alert/alerts-indicator.tsx +14 -15
- package/src/lib/framework/alert/search-index-buffer-alert/search-index-buffer-alert.ts +41 -0
- package/src/lib/framework/component-registry/component-registry.tsx +3 -14
- package/src/lib/framework/dashboard-widget/base-widget.tsx +18 -9
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +12 -11
- package/src/lib/framework/defaults.ts +9 -13
- package/src/lib/framework/extension-api/input-component-extensions.tsx +6 -1
- package/src/lib/framework/extension-api/logic/alerts.ts +3 -2
- package/src/lib/framework/extension-api/types/alerts.ts +12 -6
- package/src/lib/framework/extension-api/types/data-table.ts +5 -2
- package/src/lib/framework/extension-api/types/login.ts +0 -21
- package/src/lib/framework/layout-engine/custom-form-page.stories.tsx +344 -0
- package/src/lib/framework/layout-engine/page-layout.tsx +11 -9
- package/src/lib/framework/layout-engine/page.stories.tsx +275 -0
- package/src/lib/framework/nav-menu/nav-menu-extensions.ts +32 -19
- package/src/lib/framework/page/detail-page.stories.tsx +151 -0
- package/src/lib/framework/page/list-page.stories.tsx +217 -0
- package/src/lib/framework/page/list-page.tsx +8 -1
- package/src/lib/graphql/api.ts +18 -1
- package/src/lib/graphql/graphql-env.d.ts +1 -1
- package/src/lib/hooks/use-alerts.ts +84 -0
- package/src/lib/hooks/use-floating-bulk-actions.ts +2 -3
- package/src/lib/index.ts +12 -5
- package/src/lib/providers/alerts-provider.tsx +60 -0
- package/src/lib/providers/theme-provider.tsx +6 -3
|
@@ -13,18 +13,6 @@ msgstr ""
|
|
|
13
13
|
"Language-Team: \n"
|
|
14
14
|
"Plural-Forms: \n"
|
|
15
15
|
|
|
16
|
-
#. js-lingui-explicit-id
|
|
17
|
-
#: src/lib/hooks/use-extended-detail-query.ts:23
|
|
18
|
-
#: src/lib/hooks/use-extended-list-query.ts:64
|
|
19
|
-
msgid "Query extension error"
|
|
20
|
-
msgstr "查詢擴充錯誤"
|
|
21
|
-
|
|
22
|
-
#. js-lingui-explicit-id
|
|
23
|
-
#: src/lib/hooks/use-extended-detail-query.ts:25
|
|
24
|
-
#: src/lib/hooks/use-extended-list-query.ts:66
|
|
25
|
-
msgid "The page will continue with the default query."
|
|
26
|
-
msgstr "頁面將繼續使用預設查詢。"
|
|
27
|
-
|
|
28
16
|
#. js-lingui-explicit-id
|
|
29
17
|
#: src/lib/hooks/use-extended-list-query.ts:41
|
|
30
18
|
msgid "Failed to extend query document"
|
|
@@ -51,171 +39,188 @@ msgid "Query extension error: "
|
|
|
51
39
|
msgstr "查詢擴充錯誤:"
|
|
52
40
|
|
|
53
41
|
#. js-lingui-explicit-id
|
|
54
|
-
#: src/lib/
|
|
42
|
+
#: src/lib/hooks/use-extended-detail-query.ts:23
|
|
43
|
+
#: src/lib/hooks/use-extended-list-query.ts:64
|
|
44
|
+
msgid "Query extension error"
|
|
45
|
+
msgstr "查詢擴充錯誤"
|
|
46
|
+
|
|
47
|
+
#. js-lingui-explicit-id
|
|
48
|
+
#: src/lib/hooks/use-extended-detail-query.ts:25
|
|
49
|
+
#: src/lib/hooks/use-extended-list-query.ts:66
|
|
50
|
+
msgid "The page will continue with the default query."
|
|
51
|
+
msgstr "頁面將繼續使用預設查詢。"
|
|
52
|
+
|
|
53
|
+
#. js-lingui-explicit-id
|
|
54
|
+
#: src/lib/framework/defaults.ts:24
|
|
55
55
|
msgid "Insights"
|
|
56
56
|
msgstr "洞察"
|
|
57
57
|
|
|
58
58
|
#. js-lingui-explicit-id
|
|
59
|
-
#: src/lib/framework/defaults.ts:
|
|
59
|
+
#: src/lib/framework/defaults.ts:32
|
|
60
60
|
msgid "Catalog"
|
|
61
61
|
msgstr "目錄"
|
|
62
62
|
|
|
63
63
|
#. js-lingui-explicit-id
|
|
64
|
-
#: src/lib/framework/defaults.ts:
|
|
64
|
+
#: src/lib/framework/defaults.ts:39
|
|
65
65
|
msgid "Products"
|
|
66
66
|
msgstr "商品"
|
|
67
67
|
|
|
68
68
|
#. js-lingui-explicit-id
|
|
69
|
-
#: src/lib/framework/defaults.ts:
|
|
69
|
+
#: src/lib/framework/defaults.ts:46
|
|
70
70
|
msgid "Product Variants"
|
|
71
71
|
msgstr "商品變體"
|
|
72
72
|
|
|
73
73
|
#. js-lingui-explicit-id
|
|
74
|
-
#: src/lib/framework/defaults.ts:
|
|
74
|
+
#: src/lib/framework/defaults.ts:53
|
|
75
75
|
msgid "Facets"
|
|
76
76
|
msgstr "屬性"
|
|
77
77
|
|
|
78
78
|
#. js-lingui-explicit-id
|
|
79
|
-
#: src/lib/framework/defaults.ts:
|
|
79
|
+
#: src/lib/framework/defaults.ts:60
|
|
80
80
|
msgid "Collections"
|
|
81
81
|
msgstr "集合"
|
|
82
82
|
|
|
83
83
|
#. js-lingui-explicit-id
|
|
84
|
-
#: src/lib/framework/defaults.ts:
|
|
84
|
+
#: src/lib/framework/defaults.ts:67
|
|
85
85
|
msgid "Assets"
|
|
86
86
|
msgstr "資源"
|
|
87
87
|
|
|
88
88
|
#. js-lingui-explicit-id
|
|
89
|
-
#: src/lib/framework/defaults.ts:
|
|
89
|
+
#: src/lib/framework/defaults.ts:76
|
|
90
90
|
msgid "Sales"
|
|
91
91
|
msgstr "銷售"
|
|
92
92
|
|
|
93
93
|
#. js-lingui-explicit-id
|
|
94
|
-
#: src/lib/framework/defaults.ts:
|
|
94
|
+
#: src/lib/framework/defaults.ts:83
|
|
95
95
|
msgid "Orders"
|
|
96
96
|
msgstr "訂單"
|
|
97
97
|
|
|
98
98
|
#. js-lingui-explicit-id
|
|
99
|
-
#: src/lib/framework/defaults.ts:
|
|
100
|
-
#: src/lib/framework/defaults.ts:
|
|
99
|
+
#: src/lib/framework/defaults.ts:92
|
|
100
|
+
#: src/lib/framework/defaults.ts:99
|
|
101
101
|
msgid "Customers"
|
|
102
102
|
msgstr "客戶"
|
|
103
103
|
|
|
104
104
|
#. js-lingui-explicit-id
|
|
105
|
-
#: src/lib/framework/defaults.ts:
|
|
105
|
+
#: src/lib/framework/defaults.ts:106
|
|
106
106
|
msgid "Customer Groups"
|
|
107
107
|
msgstr "客戶群組"
|
|
108
108
|
|
|
109
109
|
#. js-lingui-explicit-id
|
|
110
|
-
#: src/lib/framework/defaults.ts:
|
|
110
|
+
#: src/lib/framework/defaults.ts:115
|
|
111
111
|
msgid "Marketing"
|
|
112
112
|
msgstr "行銷"
|
|
113
113
|
|
|
114
114
|
#. js-lingui-explicit-id
|
|
115
|
-
#: src/lib/framework/defaults.ts:
|
|
115
|
+
#: src/lib/framework/defaults.ts:122
|
|
116
116
|
msgid "Promotions"
|
|
117
117
|
msgstr "促銷"
|
|
118
118
|
|
|
119
119
|
#. js-lingui-explicit-id
|
|
120
|
-
#: src/lib/framework/defaults.ts:
|
|
120
|
+
#: src/lib/framework/defaults.ts:131
|
|
121
121
|
msgid "System"
|
|
122
122
|
msgstr "系統"
|
|
123
123
|
|
|
124
124
|
#. js-lingui-explicit-id
|
|
125
|
-
#: src/lib/framework/defaults.ts:
|
|
125
|
+
#: src/lib/framework/defaults.ts:138
|
|
126
126
|
msgid "Job Queue"
|
|
127
127
|
msgstr "工作佇列"
|
|
128
128
|
|
|
129
129
|
#. js-lingui-explicit-id
|
|
130
|
-
#: src/lib/framework/defaults.ts:
|
|
130
|
+
#: src/lib/framework/defaults.ts:145
|
|
131
131
|
msgid "Healthchecks"
|
|
132
132
|
msgstr "健康檢查"
|
|
133
133
|
|
|
134
134
|
#. js-lingui-explicit-id
|
|
135
|
-
#: src/lib/framework/defaults.ts:
|
|
135
|
+
#: src/lib/framework/defaults.ts:152
|
|
136
136
|
msgid "Scheduled Tasks"
|
|
137
137
|
msgstr "排程任務"
|
|
138
138
|
|
|
139
139
|
#. js-lingui-explicit-id
|
|
140
|
-
#: src/lib/framework/defaults.ts:
|
|
140
|
+
#: src/lib/framework/defaults.ts:161
|
|
141
141
|
msgid "Settings"
|
|
142
142
|
msgstr "設定"
|
|
143
143
|
|
|
144
144
|
#. js-lingui-explicit-id
|
|
145
|
-
#: src/lib/framework/defaults.ts:
|
|
145
|
+
#: src/lib/framework/defaults.ts:168
|
|
146
146
|
msgid "Sellers"
|
|
147
147
|
msgstr "賣家"
|
|
148
148
|
|
|
149
149
|
#. js-lingui-explicit-id
|
|
150
|
-
#: src/lib/framework/defaults.ts:
|
|
150
|
+
#: src/lib/framework/defaults.ts:175
|
|
151
151
|
msgid "Channels"
|
|
152
152
|
msgstr "通路"
|
|
153
153
|
|
|
154
154
|
#. js-lingui-explicit-id
|
|
155
|
-
#: src/lib/framework/defaults.ts:
|
|
155
|
+
#: src/lib/framework/defaults.ts:182
|
|
156
156
|
msgid "Stock Locations"
|
|
157
157
|
msgstr "庫存位置"
|
|
158
158
|
|
|
159
159
|
#. js-lingui-explicit-id
|
|
160
|
-
#: src/lib/framework/defaults.ts:
|
|
160
|
+
#: src/lib/framework/defaults.ts:189
|
|
161
161
|
msgid "Administrators"
|
|
162
162
|
msgstr "管理員"
|
|
163
163
|
|
|
164
164
|
#. js-lingui-explicit-id
|
|
165
|
-
#: src/lib/framework/defaults.ts:
|
|
165
|
+
#: src/lib/framework/defaults.ts:196
|
|
166
166
|
msgid "Roles"
|
|
167
167
|
msgstr "角色"
|
|
168
168
|
|
|
169
169
|
#. js-lingui-explicit-id
|
|
170
|
-
#: src/lib/framework/defaults.ts:
|
|
170
|
+
#: src/lib/framework/defaults.ts:203
|
|
171
171
|
msgid "Shipping Methods"
|
|
172
172
|
msgstr "配送方式"
|
|
173
173
|
|
|
174
174
|
#. js-lingui-explicit-id
|
|
175
|
-
#: src/lib/framework/defaults.ts:
|
|
175
|
+
#: src/lib/framework/defaults.ts:210
|
|
176
176
|
msgid "Payment Methods"
|
|
177
177
|
msgstr "付款方式"
|
|
178
178
|
|
|
179
179
|
#. js-lingui-explicit-id
|
|
180
|
-
#: src/lib/framework/defaults.ts:
|
|
180
|
+
#: src/lib/framework/defaults.ts:217
|
|
181
181
|
msgid "Tax Categories"
|
|
182
182
|
msgstr "稅務類別"
|
|
183
183
|
|
|
184
184
|
#. js-lingui-explicit-id
|
|
185
|
-
#: src/lib/framework/defaults.ts:
|
|
185
|
+
#: src/lib/framework/defaults.ts:224
|
|
186
186
|
msgid "Tax Rates"
|
|
187
187
|
msgstr "稅率"
|
|
188
188
|
|
|
189
189
|
#. js-lingui-explicit-id
|
|
190
|
-
#: src/lib/framework/defaults.ts:
|
|
190
|
+
#: src/lib/framework/defaults.ts:231
|
|
191
191
|
msgid "Countries"
|
|
192
192
|
msgstr "國家"
|
|
193
193
|
|
|
194
194
|
#. js-lingui-explicit-id
|
|
195
|
-
#: src/lib/framework/defaults.ts:
|
|
195
|
+
#: src/lib/framework/defaults.ts:238
|
|
196
196
|
msgid "Zones"
|
|
197
197
|
msgstr "區域"
|
|
198
198
|
|
|
199
199
|
#. js-lingui-explicit-id
|
|
200
|
-
#: src/lib/framework/defaults.ts:
|
|
200
|
+
#: src/lib/framework/defaults.ts:245
|
|
201
201
|
msgid "Global Settings"
|
|
202
202
|
msgstr "全域設定"
|
|
203
203
|
|
|
204
204
|
#. js-lingui-explicit-id
|
|
205
|
-
#: src/lib/framework/defaults.ts:
|
|
205
|
+
#: src/lib/framework/defaults.ts:257
|
|
206
206
|
msgid "Metrics Widget"
|
|
207
207
|
msgstr "指標小工具"
|
|
208
208
|
|
|
209
209
|
#. js-lingui-explicit-id
|
|
210
|
-
#: src/lib/framework/defaults.ts:
|
|
210
|
+
#: src/lib/framework/defaults.ts:265
|
|
211
211
|
msgid "Latest Orders Widget"
|
|
212
212
|
msgstr "最新訂單小工具"
|
|
213
213
|
|
|
214
214
|
#. js-lingui-explicit-id
|
|
215
|
-
#: src/lib/framework/defaults.ts:
|
|
215
|
+
#: src/lib/framework/defaults.ts:272
|
|
216
216
|
msgid "Orders Summary Widget"
|
|
217
217
|
msgstr "訂單摘要小工具"
|
|
218
218
|
|
|
219
|
+
#. js-lingui-explicit-id
|
|
220
|
+
#: src/lib/framework/alert/search-index-buffer-alert/search-index-buffer-alert.tsx:35
|
|
221
|
+
msgid "Running pending search index updates"
|
|
222
|
+
msgstr "正在執行待處理的搜尋索引更新"
|
|
223
|
+
|
|
219
224
|
#. js-lingui-explicit-id
|
|
220
225
|
#: src/i18n/common-strings.ts:7
|
|
221
226
|
msgid "fulfillmentState.Created"
|
|
@@ -730,12 +735,12 @@ msgstr "!="
|
|
|
730
735
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:102
|
|
731
736
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:37
|
|
732
737
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:44
|
|
733
|
-
#: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:
|
|
738
|
+
#: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:90
|
|
734
739
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:189
|
|
735
740
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:45
|
|
736
741
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:278
|
|
737
742
|
#: src/lib/components/data-input/relation-selector.tsx:403
|
|
738
|
-
#: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:
|
|
743
|
+
#: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:425
|
|
739
744
|
msgid "{0}"
|
|
740
745
|
msgstr "{0}"
|
|
741
746
|
|
|
@@ -762,7 +767,7 @@ msgid "{0} selected"
|
|
|
762
767
|
msgstr "已選取 {0} 個"
|
|
763
768
|
|
|
764
769
|
#. placeholder {0}: row.original.productVariants?.totalItems
|
|
765
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
770
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:154
|
|
766
771
|
msgid "{0} variants"
|
|
767
772
|
msgstr "{0} 個變體"
|
|
768
773
|
|
|
@@ -790,10 +795,14 @@ msgstr "{title}"
|
|
|
790
795
|
msgid "+ {0} more"
|
|
791
796
|
msgstr "+ {0} 個更多"
|
|
792
797
|
|
|
793
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
798
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:172
|
|
794
799
|
msgid "+ {leftOver} more"
|
|
795
800
|
msgstr "+ {leftOver} 個更多"
|
|
796
801
|
|
|
802
|
+
#: src/lib/components/login/login-form.tsx:111
|
|
803
|
+
#~ msgid "<0>Forgot password?</0><1>Request reset</1>"
|
|
804
|
+
#~ msgstr "<0>忘記密碼?</0><1>請求重設</1>"
|
|
805
|
+
|
|
797
806
|
#: src/lib/components/data-table/human-readable-operator.tsx:24
|
|
798
807
|
msgid "="
|
|
799
808
|
msgstr "="
|
|
@@ -802,9 +811,9 @@ msgstr "="
|
|
|
802
811
|
msgid "A refund of {formattedDiff} is required. Select payment amounts and enter a note to proceed."
|
|
803
812
|
msgstr "需要退款 {formattedDiff}。選取付款金額並輸入備註以繼續。"
|
|
804
813
|
|
|
805
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
814
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:233
|
|
806
815
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:191
|
|
807
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
816
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:234
|
|
808
817
|
msgid "Actions"
|
|
809
818
|
msgstr "動作"
|
|
810
819
|
|
|
@@ -826,6 +835,10 @@ msgstr "新增 {0} 的手動付款"
|
|
|
826
835
|
msgid "Add a new address to the customer."
|
|
827
836
|
msgstr "為客戶新增地址。"
|
|
828
837
|
|
|
838
|
+
#: src/app/routes/_authenticated/_product-variants/components/add-currency-dropdown.tsx:36
|
|
839
|
+
msgid "Add a price in another currency"
|
|
840
|
+
msgstr "新增另一種貨幣的價格"
|
|
841
|
+
|
|
829
842
|
#: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:318
|
|
830
843
|
msgid "Add another option group"
|
|
831
844
|
msgstr "新增另一個選項群組"
|
|
@@ -846,7 +859,7 @@ msgstr "在前面新增欄"
|
|
|
846
859
|
msgid "Add Country"
|
|
847
860
|
msgstr "新增國家"
|
|
848
861
|
|
|
849
|
-
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:
|
|
862
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:269
|
|
850
863
|
msgid "Add coupon code"
|
|
851
864
|
msgstr "新增優惠券代碼"
|
|
852
865
|
|
|
@@ -863,7 +876,7 @@ msgstr "新增客戶群組"
|
|
|
863
876
|
msgid "Add facet value"
|
|
864
877
|
msgstr "新增屬性值"
|
|
865
878
|
|
|
866
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
879
|
+
#: src/lib/components/shared/facet-value-selector.tsx:298
|
|
867
880
|
msgid "Add facet values"
|
|
868
881
|
msgstr "新增屬性值"
|
|
869
882
|
|
|
@@ -935,7 +948,7 @@ msgstr "請先新增商品選項"
|
|
|
935
948
|
msgid "Add product variant"
|
|
936
949
|
msgstr "新增商品變體"
|
|
937
950
|
|
|
938
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
951
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:232
|
|
939
952
|
msgid "Add products to create a test order"
|
|
940
953
|
msgstr "新增商品以建立測試訂單"
|
|
941
954
|
|
|
@@ -947,6 +960,10 @@ msgstr "在後面新增列"
|
|
|
947
960
|
msgid "Add row before"
|
|
948
961
|
msgstr "在前面新增列"
|
|
949
962
|
|
|
963
|
+
#: src/app/routes/_authenticated/_product-variants/components/add-stock-location-dropdown.tsx:41
|
|
964
|
+
msgid "Add stock level for another location"
|
|
965
|
+
msgstr "為另一個位置新增庫存水平"
|
|
966
|
+
|
|
950
967
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:179
|
|
951
968
|
msgid "Add Stock to Location"
|
|
952
969
|
msgstr "向位置新增庫存"
|
|
@@ -960,7 +977,7 @@ msgstr "新增標籤..."
|
|
|
960
977
|
msgid "Add variant"
|
|
961
978
|
msgstr "新增變體"
|
|
962
979
|
|
|
963
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
980
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:188
|
|
964
981
|
msgid "Added coupon codes"
|
|
965
982
|
msgstr "已新增優惠券代碼"
|
|
966
983
|
|
|
@@ -969,7 +986,7 @@ msgid "Added to group"
|
|
|
969
986
|
msgstr "已新增至群組"
|
|
970
987
|
|
|
971
988
|
#. placeholder {0}: addedLines.length
|
|
972
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
989
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:162
|
|
973
990
|
msgid "Adding {0} item(s)"
|
|
974
991
|
msgstr "正在新增 {0} 個項目"
|
|
975
992
|
|
|
@@ -1005,12 +1022,12 @@ msgid "Address updated successfully"
|
|
|
1005
1022
|
msgstr "地址已成功更新"
|
|
1006
1023
|
|
|
1007
1024
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:200
|
|
1008
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1025
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:231
|
|
1009
1026
|
msgid "Addresses"
|
|
1010
1027
|
msgstr "地址"
|
|
1011
1028
|
|
|
1012
1029
|
#. placeholder {0}: adjustedLines.length
|
|
1013
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1030
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:131
|
|
1014
1031
|
msgid "Adjusting {0} lines"
|
|
1015
1032
|
msgstr "正在調整 {0} 行"
|
|
1016
1033
|
|
|
@@ -1028,7 +1045,7 @@ msgstr "之後"
|
|
|
1028
1045
|
msgid "All resources are up and running"
|
|
1029
1046
|
msgstr "所有資源正在執行"
|
|
1030
1047
|
|
|
1031
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1048
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:410
|
|
1032
1049
|
msgid "Allocated"
|
|
1033
1050
|
msgstr "已配置"
|
|
1034
1051
|
|
|
@@ -1061,7 +1078,7 @@ msgstr "已套用檢視「{viewName}」"
|
|
|
1061
1078
|
msgid "Apply"
|
|
1062
1079
|
msgstr "套用"
|
|
1063
1080
|
|
|
1064
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
1081
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:86
|
|
1065
1082
|
msgid "Apply filter"
|
|
1066
1083
|
msgstr "套用篩選器"
|
|
1067
1084
|
|
|
@@ -1082,7 +1099,7 @@ msgstr "確定要刪除 {selectionLength} 個資源嗎?"
|
|
|
1082
1099
|
msgid "Are you sure you want to delete this address?"
|
|
1083
1100
|
msgstr "確定要刪除此地址嗎?"
|
|
1084
1101
|
|
|
1085
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1102
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:302
|
|
1086
1103
|
msgid "Are you sure you want to delete this draft order?"
|
|
1087
1104
|
msgstr "確定要刪除此草稿訂單嗎?"
|
|
1088
1105
|
|
|
@@ -1090,7 +1107,7 @@ msgstr "確定要刪除此草稿訂單嗎?"
|
|
|
1090
1107
|
msgid "Are you sure you want to delete this global view? This action cannot be undone and will affect all users."
|
|
1091
1108
|
msgstr "確定要刪除此全域檢視嗎?此動作無法復原,將影響所有使用者。"
|
|
1092
1109
|
|
|
1093
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1110
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:325
|
|
1094
1111
|
msgid "Are you sure you want to delete this item? This action cannot be undone."
|
|
1095
1112
|
msgstr "確定要刪除此項目嗎?此動作無法復原。"
|
|
1096
1113
|
|
|
@@ -1115,7 +1132,7 @@ msgstr "確定要從目前通路中移除 {0} {entityType} 嗎?"
|
|
|
1115
1132
|
#: src/app/routes/_authenticated/_assets/assets.tsx:9
|
|
1116
1133
|
#: src/app/routes/_authenticated/_assets/assets.tsx:16
|
|
1117
1134
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:198
|
|
1118
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1135
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:438
|
|
1119
1136
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:208
|
|
1120
1137
|
msgid "Assets"
|
|
1121
1138
|
msgstr "資源"
|
|
@@ -1146,7 +1163,7 @@ msgid "Available currencies"
|
|
|
1146
1163
|
msgstr "可用貨幣"
|
|
1147
1164
|
|
|
1148
1165
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:164
|
|
1149
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
1166
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:112
|
|
1150
1167
|
msgid "Available languages"
|
|
1151
1168
|
msgstr "可用語言"
|
|
1152
1169
|
|
|
@@ -1162,7 +1179,7 @@ msgstr "可用:"
|
|
|
1162
1179
|
msgid "Average Order Value"
|
|
1163
1180
|
msgstr "平均訂單價值"
|
|
1164
1181
|
|
|
1165
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
1182
|
+
#: src/lib/components/shared/facet-value-selector.tsx:370
|
|
1166
1183
|
msgid "Back to search"
|
|
1167
1184
|
msgstr "返回搜尋"
|
|
1168
1185
|
|
|
@@ -1175,25 +1192,30 @@ msgid "between"
|
|
|
1175
1192
|
msgstr "之間"
|
|
1176
1193
|
|
|
1177
1194
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:267
|
|
1178
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1179
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1195
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:260
|
|
1196
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:450
|
|
1180
1197
|
msgid "Billing address"
|
|
1181
1198
|
msgstr "帳單地址"
|
|
1182
1199
|
|
|
1183
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1200
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:117
|
|
1184
1201
|
msgid "Billing address changed"
|
|
1185
1202
|
msgstr "帳單地址已變更"
|
|
1186
1203
|
|
|
1187
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1204
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:189
|
|
1188
1205
|
msgid "Billing address set for order"
|
|
1189
1206
|
msgstr "已為訂單設定帳單地址"
|
|
1190
1207
|
|
|
1191
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1208
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:205
|
|
1192
1209
|
msgid "Billing address unset for order"
|
|
1193
1210
|
msgstr "已從訂單移除帳單地址"
|
|
1194
1211
|
|
|
1212
|
+
#: src/lib/components/shared/facet-value-selector.tsx:336
|
|
1213
|
+
#: src/lib/components/shared/facet-value-selector.tsx:353
|
|
1214
|
+
msgid "Browse facets"
|
|
1215
|
+
msgstr "瀏覽分面"
|
|
1216
|
+
|
|
1195
1217
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:185
|
|
1196
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1218
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:179
|
|
1197
1219
|
msgid "Calculator"
|
|
1198
1220
|
msgstr "計算機"
|
|
1199
1221
|
|
|
@@ -1208,7 +1230,7 @@ msgstr "計算機"
|
|
|
1208
1230
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:270
|
|
1209
1231
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:364
|
|
1210
1232
|
#: src/lib/components/data-table/data-table-bulk-action-item.tsx:119
|
|
1211
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1233
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:332
|
|
1212
1234
|
#: src/lib/components/data-table/views-sheet.tsx:217
|
|
1213
1235
|
#: src/lib/components/data-table/views-sheet.tsx:295
|
|
1214
1236
|
#: src/lib/components/layout/manage-languages-dialog.tsx:396
|
|
@@ -1226,7 +1248,7 @@ msgstr "取消"
|
|
|
1226
1248
|
msgid "Cancel Job"
|
|
1227
1249
|
msgstr "取消工作"
|
|
1228
1250
|
|
|
1229
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1251
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:164
|
|
1230
1252
|
msgid "Cancel modification"
|
|
1231
1253
|
msgstr "取消修改"
|
|
1232
1254
|
|
|
@@ -1259,7 +1281,7 @@ msgid "Channels"
|
|
|
1259
1281
|
msgstr "通路"
|
|
1260
1282
|
|
|
1261
1283
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:184
|
|
1262
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1284
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:196
|
|
1263
1285
|
#: src/lib/components/shared/customer-address-form.tsx:175
|
|
1264
1286
|
msgid "City"
|
|
1265
1287
|
msgstr "城市"
|
|
@@ -1269,11 +1291,11 @@ msgid "Clear"
|
|
|
1269
1291
|
msgstr "清除"
|
|
1270
1292
|
|
|
1271
1293
|
#: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:180
|
|
1272
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
1294
|
+
#: src/lib/components/data-table/data-table.tsx:305
|
|
1273
1295
|
msgid "Clear all"
|
|
1274
1296
|
msgstr "全部清除"
|
|
1275
1297
|
|
|
1276
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
1298
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:74
|
|
1277
1299
|
msgid "Clear filter"
|
|
1278
1300
|
msgstr "清除篩選器"
|
|
1279
1301
|
|
|
@@ -1292,10 +1314,10 @@ msgstr "按一下「執行測試」以測試此配送方式。"
|
|
|
1292
1314
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:130
|
|
1293
1315
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:157
|
|
1294
1316
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:155
|
|
1295
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
1317
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:187
|
|
1296
1318
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:104
|
|
1297
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1298
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
1319
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:143
|
|
1320
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:78
|
|
1299
1321
|
msgid "Code"
|
|
1300
1322
|
msgstr "代碼"
|
|
1301
1323
|
|
|
@@ -1304,8 +1326,8 @@ msgid "Collection contents for {collectionName}"
|
|
|
1304
1326
|
msgstr "{collectionName} 的集合內容"
|
|
1305
1327
|
|
|
1306
1328
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:45
|
|
1307
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1308
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1329
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:30
|
|
1330
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:86
|
|
1309
1331
|
msgid "Collections"
|
|
1310
1332
|
msgstr "集合"
|
|
1311
1333
|
|
|
@@ -1318,17 +1340,17 @@ msgid "Column settings"
|
|
|
1318
1340
|
msgstr "欄設定"
|
|
1319
1341
|
|
|
1320
1342
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:125
|
|
1321
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1343
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:165
|
|
1322
1344
|
#: src/lib/components/shared/customer-address-form.tsx:116
|
|
1323
1345
|
msgid "Company"
|
|
1324
1346
|
msgstr "公司"
|
|
1325
1347
|
|
|
1326
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1348
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:323
|
|
1327
1349
|
msgid "Complete draft"
|
|
1328
1350
|
msgstr "完成草稿"
|
|
1329
1351
|
|
|
1330
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1331
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1352
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:221
|
|
1353
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:167
|
|
1332
1354
|
msgid "Conditions"
|
|
1333
1355
|
msgstr "條件"
|
|
1334
1356
|
|
|
@@ -1345,7 +1367,7 @@ msgstr "確認"
|
|
|
1345
1367
|
msgid "Confirm Action"
|
|
1346
1368
|
msgstr "確認動作"
|
|
1347
1369
|
|
|
1348
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1370
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:322
|
|
1349
1371
|
msgid "Confirm deletion"
|
|
1350
1372
|
msgstr "確認刪除"
|
|
1351
1373
|
|
|
@@ -1358,7 +1380,7 @@ msgid "contains"
|
|
|
1358
1380
|
msgstr "包含"
|
|
1359
1381
|
|
|
1360
1382
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:222
|
|
1361
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1383
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:147
|
|
1362
1384
|
msgid "Contents"
|
|
1363
1385
|
msgstr "內容"
|
|
1364
1386
|
|
|
@@ -1379,24 +1401,24 @@ msgid "Countries"
|
|
|
1379
1401
|
msgstr "國家"
|
|
1380
1402
|
|
|
1381
1403
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:239
|
|
1382
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1404
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:217
|
|
1383
1405
|
#: src/lib/components/shared/customer-address-form.tsx:230
|
|
1384
1406
|
msgid "Country"
|
|
1385
1407
|
msgstr "國家"
|
|
1386
1408
|
|
|
1387
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1409
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:199
|
|
1388
1410
|
msgid "Coupon code"
|
|
1389
1411
|
msgstr "優惠券代碼"
|
|
1390
1412
|
|
|
1391
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1413
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:245
|
|
1392
1414
|
msgid "Coupon code removed from order"
|
|
1393
1415
|
msgstr "優惠券代碼已從訂單中移除"
|
|
1394
1416
|
|
|
1395
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1417
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:232
|
|
1396
1418
|
msgid "Coupon code set for order"
|
|
1397
1419
|
msgstr "已為訂單設定優惠券代碼"
|
|
1398
1420
|
|
|
1399
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
1421
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
1400
1422
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
1401
1423
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
|
|
1402
1424
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
|
|
@@ -1405,15 +1427,15 @@ msgstr "已為訂單設定優惠券代碼"
|
|
|
1405
1427
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
|
|
1406
1428
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
1407
1429
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
|
|
1408
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1430
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:215
|
|
1409
1431
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:197
|
|
1410
1432
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:111
|
|
1411
1433
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
1412
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
1413
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1434
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
1435
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:136
|
|
1414
1436
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
1415
1437
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
1416
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1438
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:126
|
|
1417
1439
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
1418
1440
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
|
|
1419
1441
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
@@ -1453,7 +1475,7 @@ msgid "Create variants for your product"
|
|
|
1453
1475
|
msgstr "為您的商品建立變體"
|
|
1454
1476
|
|
|
1455
1477
|
#: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:114
|
|
1456
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
1478
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:404
|
|
1457
1479
|
msgid "Created"
|
|
1458
1480
|
msgstr "已建立"
|
|
1459
1481
|
|
|
@@ -1479,7 +1501,7 @@ msgstr "目前屬性值"
|
|
|
1479
1501
|
msgid "Current status"
|
|
1480
1502
|
msgstr "目前狀態"
|
|
1481
1503
|
|
|
1482
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1504
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:377
|
|
1483
1505
|
msgid "Custom fields"
|
|
1484
1506
|
msgstr "自訂欄位"
|
|
1485
1507
|
|
|
@@ -1487,13 +1509,13 @@ msgstr "自訂欄位"
|
|
|
1487
1509
|
msgid "Custom Fields"
|
|
1488
1510
|
msgstr "自訂欄位"
|
|
1489
1511
|
|
|
1490
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1512
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:151
|
|
1491
1513
|
msgid "Custom fields changed"
|
|
1492
1514
|
msgstr "自訂欄位已變更"
|
|
1493
1515
|
|
|
1494
1516
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:242
|
|
1495
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1496
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1517
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:217
|
|
1518
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:403
|
|
1497
1519
|
#: src/lib/components/shared/role-code-label.tsx:8
|
|
1498
1520
|
msgid "Customer"
|
|
1499
1521
|
msgstr "客戶"
|
|
@@ -1537,7 +1559,7 @@ msgstr "找不到客戶"
|
|
|
1537
1559
|
msgid "Customer registered"
|
|
1538
1560
|
msgstr "客戶已註冊"
|
|
1539
1561
|
|
|
1540
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1562
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:159
|
|
1541
1563
|
msgid "Customer set for order"
|
|
1542
1564
|
msgstr "訂單已設定客戶"
|
|
1543
1565
|
|
|
@@ -1556,7 +1578,7 @@ msgstr "客戶已驗證"
|
|
|
1556
1578
|
msgid "Customers"
|
|
1557
1579
|
msgstr "客戶"
|
|
1558
1580
|
|
|
1559
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1581
|
+
#: src/lib/components/layout/nav-user.tsx:135
|
|
1560
1582
|
msgctxt "theme"
|
|
1561
1583
|
msgid "Dark"
|
|
1562
1584
|
msgstr "深色"
|
|
@@ -1598,8 +1620,8 @@ msgstr "預設稅務區域"
|
|
|
1598
1620
|
#: src/app/common/delete-bulk-action.tsx:139
|
|
1599
1621
|
#: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:41
|
|
1600
1622
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:312
|
|
1601
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1602
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1623
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:315
|
|
1624
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:346
|
|
1603
1625
|
#: src/lib/components/data-table/views-sheet.tsx:272
|
|
1604
1626
|
#: src/lib/components/data-table/views-sheet.tsx:298
|
|
1605
1627
|
msgid "Delete"
|
|
@@ -1613,11 +1635,11 @@ msgstr "刪除地址"
|
|
|
1613
1635
|
msgid "Delete column"
|
|
1614
1636
|
msgstr "刪除欄"
|
|
1615
1637
|
|
|
1616
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1638
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:308
|
|
1617
1639
|
msgid "Delete draft"
|
|
1618
1640
|
msgstr "刪除草稿"
|
|
1619
1641
|
|
|
1620
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1642
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:301
|
|
1621
1643
|
msgid "Delete draft order"
|
|
1622
1644
|
msgstr "刪除草稿訂單"
|
|
1623
1645
|
|
|
@@ -1641,7 +1663,7 @@ msgstr "已刪除 {deleted} {entityName}"
|
|
|
1641
1663
|
msgid "Deleted {selectionLength} assets"
|
|
1642
1664
|
msgstr "已刪除 {selectionLength} 個資源"
|
|
1643
1665
|
|
|
1644
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1666
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:296
|
|
1645
1667
|
msgid "Deleted successfully"
|
|
1646
1668
|
msgstr "成功刪除"
|
|
1647
1669
|
|
|
@@ -1649,9 +1671,9 @@ msgstr "成功刪除"
|
|
|
1649
1671
|
#: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
|
|
1650
1672
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:164
|
|
1651
1673
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:155
|
|
1652
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1674
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:167
|
|
1653
1675
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:98
|
|
1654
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1676
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:151
|
|
1655
1677
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:118
|
|
1656
1678
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:110
|
|
1657
1679
|
msgid "Description"
|
|
@@ -1662,7 +1684,7 @@ msgid "Description (alt)"
|
|
|
1662
1684
|
msgstr "描述(替代文字)"
|
|
1663
1685
|
|
|
1664
1686
|
#: src/lib/components/layout/dev-mode-indicator.tsx:12
|
|
1665
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1687
|
+
#: src/lib/components/layout/nav-user.tsx:149
|
|
1666
1688
|
msgid "Dev Mode"
|
|
1667
1689
|
msgstr "開發人員模式"
|
|
1668
1690
|
|
|
@@ -1672,11 +1694,11 @@ msgstr "停用"
|
|
|
1672
1694
|
|
|
1673
1695
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:121
|
|
1674
1696
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:50
|
|
1675
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1697
|
+
#: src/lib/components/layout/nav-user.tsx:161
|
|
1676
1698
|
msgid "Disabled"
|
|
1677
1699
|
msgstr "已停用"
|
|
1678
1700
|
|
|
1679
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
1701
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:35
|
|
1680
1702
|
msgid "Discount"
|
|
1681
1703
|
msgstr "折扣"
|
|
1682
1704
|
|
|
@@ -1684,7 +1706,7 @@ msgstr "折扣"
|
|
|
1684
1706
|
msgid "Display language"
|
|
1685
1707
|
msgstr "顯示語言"
|
|
1686
1708
|
|
|
1687
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1709
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:343
|
|
1688
1710
|
msgid "Do not track"
|
|
1689
1711
|
msgstr "不追蹤"
|
|
1690
1712
|
|
|
@@ -1692,16 +1714,16 @@ msgstr "不追蹤"
|
|
|
1692
1714
|
msgid "does not contain"
|
|
1693
1715
|
msgstr "不包含"
|
|
1694
1716
|
|
|
1695
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1717
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:295
|
|
1696
1718
|
#: src/app/routes/_authenticated/_orders/orders.tsx:113
|
|
1697
1719
|
msgid "Draft order"
|
|
1698
1720
|
msgstr "草稿訂單"
|
|
1699
1721
|
|
|
1700
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1722
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:256
|
|
1701
1723
|
msgid "Draft order completed"
|
|
1702
1724
|
msgstr "草稿訂單已完成"
|
|
1703
1725
|
|
|
1704
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1726
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:273
|
|
1705
1727
|
msgid "Draft order deleted"
|
|
1706
1728
|
msgstr "草稿訂單已刪除"
|
|
1707
1729
|
|
|
@@ -1738,9 +1760,9 @@ msgstr "例如:小號"
|
|
|
1738
1760
|
msgid "e.g., Red, Large, Cotton"
|
|
1739
1761
|
msgstr "例如:紅色、大號、棉質"
|
|
1740
1762
|
|
|
1741
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1742
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1743
|
-
#: src/lib/components/shared/asset/asset-gallery.tsx:
|
|
1763
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:241
|
|
1764
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:267
|
|
1765
|
+
#: src/lib/components/shared/asset/asset-gallery.tsx:456
|
|
1744
1766
|
#: src/lib/components/shared/history-timeline/history-note-entry.tsx:48
|
|
1745
1767
|
msgid "Edit"
|
|
1746
1768
|
msgstr "編輯"
|
|
@@ -1792,11 +1814,15 @@ msgstr "手動編輯 slug"
|
|
|
1792
1814
|
msgid "Edit the address details below."
|
|
1793
1815
|
msgstr "編輯下方的地址詳細資料。"
|
|
1794
1816
|
|
|
1817
|
+
#: src/lib/components/login/login-form.tsx:83
|
|
1818
|
+
msgid "Email"
|
|
1819
|
+
msgstr "電子郵件"
|
|
1820
|
+
|
|
1795
1821
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:185
|
|
1796
1822
|
msgid "Email address"
|
|
1797
1823
|
msgstr "電子郵件地址"
|
|
1798
1824
|
|
|
1799
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
1825
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:131
|
|
1800
1826
|
#: src/app/routes/_authenticated/_profile/profile.tsx:104
|
|
1801
1827
|
msgid "Email Address or identifier"
|
|
1802
1828
|
msgstr "電子郵件地址或識別碼"
|
|
@@ -1815,20 +1841,20 @@ msgstr "啟用"
|
|
|
1815
1841
|
|
|
1816
1842
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:96
|
|
1817
1843
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:140
|
|
1818
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
1819
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1844
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:43
|
|
1845
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:225
|
|
1820
1846
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:121
|
|
1821
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1847
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:146
|
|
1822
1848
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:113
|
|
1823
1849
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:117
|
|
1824
1850
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:105
|
|
1825
1851
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:47
|
|
1826
1852
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:49
|
|
1827
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1853
|
+
#: src/lib/components/layout/nav-user.tsx:158
|
|
1828
1854
|
msgid "Enabled"
|
|
1829
1855
|
msgstr "已啟用"
|
|
1830
1856
|
|
|
1831
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1857
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:187
|
|
1832
1858
|
msgid "Ends at"
|
|
1833
1859
|
msgstr "結束於"
|
|
1834
1860
|
|
|
@@ -1848,7 +1874,7 @@ msgstr "輸入此退款結算的交易 ID"
|
|
|
1848
1874
|
msgid "Enter transaction ID"
|
|
1849
1875
|
msgstr "輸入交易 ID"
|
|
1850
1876
|
|
|
1851
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
1877
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:377
|
|
1852
1878
|
msgid "Entity Information"
|
|
1853
1879
|
msgstr "實體資訊"
|
|
1854
1880
|
|
|
@@ -1894,7 +1920,7 @@ msgstr "每 60 秒"
|
|
|
1894
1920
|
msgid "ex. tax:"
|
|
1895
1921
|
msgstr "不含稅:"
|
|
1896
1922
|
|
|
1897
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1923
|
+
#: src/lib/components/layout/nav-user.tsx:100
|
|
1898
1924
|
msgid "Explore Enterprise Edition"
|
|
1899
1925
|
msgstr "探索企業版"
|
|
1900
1926
|
|
|
@@ -1903,7 +1929,7 @@ msgid "Facet"
|
|
|
1903
1929
|
msgstr "屬性"
|
|
1904
1930
|
|
|
1905
1931
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:145
|
|
1906
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1932
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:429
|
|
1907
1933
|
msgid "Facet values"
|
|
1908
1934
|
msgstr "屬性值"
|
|
1909
1935
|
|
|
@@ -1919,7 +1945,7 @@ msgstr "{facetName} 的屬性值"
|
|
|
1919
1945
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:37
|
|
1920
1946
|
#: src/app/routes/_authenticated/_facets/facets.tsx:24
|
|
1921
1947
|
#: src/app/routes/_authenticated/_facets/facets.tsx:64
|
|
1922
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
1948
|
+
#: src/lib/components/shared/facet-value-selector.tsx:405
|
|
1923
1949
|
msgid "Facets"
|
|
1924
1950
|
msgstr "屬性"
|
|
1925
1951
|
|
|
@@ -1955,6 +1981,10 @@ msgstr "將檢視轉換為全域失敗"
|
|
|
1955
1981
|
msgid "Failed to create address"
|
|
1956
1982
|
msgstr "建立地址失敗"
|
|
1957
1983
|
|
|
1984
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
1985
|
+
msgid "Failed to create administrator"
|
|
1986
|
+
msgstr "建立管理員失敗"
|
|
1987
|
+
|
|
1958
1988
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:92
|
|
1959
1989
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:98
|
|
1960
1990
|
msgid "Failed to create channel"
|
|
@@ -1997,6 +2027,10 @@ msgstr "建立付款方式失敗"
|
|
|
1997
2027
|
msgid "Failed to create product"
|
|
1998
2028
|
msgstr "建立商品失敗"
|
|
1999
2029
|
|
|
2030
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:139
|
|
2031
|
+
msgid "Failed to create product option"
|
|
2032
|
+
msgstr "建立產品選項失敗"
|
|
2033
|
+
|
|
2000
2034
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:117
|
|
2001
2035
|
msgid "Failed to create product option group"
|
|
2002
2036
|
msgstr "建立商品選項群組失敗"
|
|
@@ -2006,13 +2040,13 @@ msgstr "建立商品選項群組失敗"
|
|
|
2006
2040
|
msgid "Failed to create product options"
|
|
2007
2041
|
msgstr "建立商品選項失敗"
|
|
2008
2042
|
|
|
2009
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2043
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:126
|
|
2010
2044
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:174
|
|
2011
2045
|
msgid "Failed to create product variant"
|
|
2012
2046
|
msgstr "建立商品變體失敗"
|
|
2013
2047
|
|
|
2014
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2015
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2048
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:112
|
|
2049
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:120
|
|
2016
2050
|
msgid "Failed to create promotion"
|
|
2017
2051
|
msgstr "建立促銷失敗"
|
|
2018
2052
|
|
|
@@ -2024,6 +2058,10 @@ msgstr "建立角色失敗"
|
|
|
2024
2058
|
msgid "Failed to create seller"
|
|
2025
2059
|
msgstr "建立賣家失敗"
|
|
2026
2060
|
|
|
2061
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2062
|
+
msgid "Failed to create shipping method"
|
|
2063
|
+
msgstr "建立配送方式失敗"
|
|
2064
|
+
|
|
2027
2065
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
|
|
2028
2066
|
msgid "Failed to create stock location"
|
|
2029
2067
|
msgstr "建立庫存位置失敗"
|
|
@@ -2040,8 +2078,8 @@ msgstr "建立稅率失敗"
|
|
|
2040
2078
|
msgid "Failed to create zone"
|
|
2041
2079
|
msgstr "建立區域失敗"
|
|
2042
2080
|
|
|
2043
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2044
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2081
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:298
|
|
2082
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:304
|
|
2045
2083
|
msgid "Failed to delete"
|
|
2046
2084
|
msgstr "刪除失敗"
|
|
2047
2085
|
|
|
@@ -2129,6 +2167,10 @@ msgstr "將訂單轉換到狀態失敗"
|
|
|
2129
2167
|
msgid "Failed to update address"
|
|
2130
2168
|
msgstr "更新地址失敗"
|
|
2131
2169
|
|
|
2170
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
2171
|
+
msgid "Failed to update administrator"
|
|
2172
|
+
msgstr "更新管理員失敗"
|
|
2173
|
+
|
|
2132
2174
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:74
|
|
2133
2175
|
msgid "Failed to update asset"
|
|
2134
2176
|
msgstr "更新資源失敗"
|
|
@@ -2168,13 +2210,13 @@ msgstr "更新屬性值失敗"
|
|
|
2168
2210
|
msgid "Failed to update fulfillment state"
|
|
2169
2211
|
msgstr "更新履行狀態失敗"
|
|
2170
2212
|
|
|
2171
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2172
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2213
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:77
|
|
2214
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:83
|
|
2173
2215
|
msgid "Failed to update global settings"
|
|
2174
2216
|
msgstr "更新全域設定失敗"
|
|
2175
2217
|
|
|
2176
2218
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:89
|
|
2177
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2219
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:59
|
|
2178
2220
|
msgid "Failed to update order"
|
|
2179
2221
|
msgstr "更新訂單失敗"
|
|
2180
2222
|
|
|
@@ -2191,11 +2233,15 @@ msgstr "更新付款狀態失敗"
|
|
|
2191
2233
|
msgid "Failed to update product"
|
|
2192
2234
|
msgstr "更新商品失敗"
|
|
2193
2235
|
|
|
2236
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:139
|
|
2237
|
+
msgid "Failed to update product option"
|
|
2238
|
+
msgstr "更新產品選項失敗"
|
|
2239
|
+
|
|
2194
2240
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:118
|
|
2195
2241
|
msgid "Failed to update product option group"
|
|
2196
2242
|
msgstr "更新商品選項群組失敗"
|
|
2197
2243
|
|
|
2198
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2244
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:126
|
|
2199
2245
|
msgid "Failed to update product variant"
|
|
2200
2246
|
msgstr "更新商品變體失敗"
|
|
2201
2247
|
|
|
@@ -2203,8 +2249,8 @@ msgstr "更新商品變體失敗"
|
|
|
2203
2249
|
msgid "Failed to update profile"
|
|
2204
2250
|
msgstr "更新個人資料失敗"
|
|
2205
2251
|
|
|
2206
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2207
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2252
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:112
|
|
2253
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:120
|
|
2208
2254
|
msgid "Failed to update promotion"
|
|
2209
2255
|
msgstr "更新促銷失敗"
|
|
2210
2256
|
|
|
@@ -2216,6 +2262,10 @@ msgstr "更新角色失敗"
|
|
|
2216
2262
|
msgid "Failed to update seller"
|
|
2217
2263
|
msgstr "更新賣家失敗"
|
|
2218
2264
|
|
|
2265
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2266
|
+
msgid "Failed to update shipping method"
|
|
2267
|
+
msgstr "更新配送方式失敗"
|
|
2268
|
+
|
|
2219
2269
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
|
|
2220
2270
|
msgid "Failed to update stock location"
|
|
2221
2271
|
msgstr "更新庫存位置失敗"
|
|
@@ -2236,7 +2286,7 @@ msgstr "更新區域失敗"
|
|
|
2236
2286
|
msgid "False"
|
|
2237
2287
|
msgstr "否"
|
|
2238
2288
|
|
|
2239
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
2289
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:51
|
|
2240
2290
|
msgid "Filter by {columnId}"
|
|
2241
2291
|
msgstr "按 {columnId} 篩選"
|
|
2242
2292
|
|
|
@@ -2248,7 +2298,7 @@ msgstr "按集合名稱篩選"
|
|
|
2248
2298
|
msgid "Filter by tags"
|
|
2249
2299
|
msgstr "按標籤篩選"
|
|
2250
2300
|
|
|
2251
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
2301
|
+
#: src/lib/components/data-table/data-table.tsx:244
|
|
2252
2302
|
msgid "Filter..."
|
|
2253
2303
|
msgstr "篩選..."
|
|
2254
2304
|
|
|
@@ -2256,7 +2306,7 @@ msgstr "篩選..."
|
|
|
2256
2306
|
msgid "Filters"
|
|
2257
2307
|
msgstr "篩選器"
|
|
2258
2308
|
|
|
2259
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2309
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:119
|
|
2260
2310
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:173
|
|
2261
2311
|
#: src/app/routes/_authenticated/_profile/profile.tsx:92
|
|
2262
2312
|
msgid "First name"
|
|
@@ -2314,7 +2364,7 @@ msgid "Fulfillment details"
|
|
|
2314
2364
|
msgstr "履行詳細資料"
|
|
2315
2365
|
|
|
2316
2366
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:289
|
|
2317
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2367
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:159
|
|
2318
2368
|
msgid "Fulfillment handler"
|
|
2319
2369
|
msgstr "履行處理器"
|
|
2320
2370
|
|
|
@@ -2331,7 +2381,7 @@ msgid "Fulfillment transitioned"
|
|
|
2331
2381
|
msgstr "履行已轉換"
|
|
2332
2382
|
|
|
2333
2383
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:108
|
|
2334
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
2384
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:159
|
|
2335
2385
|
#: src/lib/components/shared/customer-address-form.tsx:99
|
|
2336
2386
|
msgid "Full Name"
|
|
2337
2387
|
msgstr "全名"
|
|
@@ -2349,12 +2399,12 @@ msgstr "自動產生 slug"
|
|
|
2349
2399
|
msgid "Global Languages"
|
|
2350
2400
|
msgstr "全域語言"
|
|
2351
2401
|
|
|
2352
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2402
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:131
|
|
2353
2403
|
msgid "Global out of stock threshold"
|
|
2354
2404
|
msgstr "全域缺貨臨界值"
|
|
2355
2405
|
|
|
2356
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2357
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2406
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:42
|
|
2407
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:92
|
|
2358
2408
|
msgid "Global Settings"
|
|
2359
2409
|
msgstr "全域設定"
|
|
2360
2410
|
|
|
@@ -2374,6 +2424,22 @@ msgstr "全域檢視已成功複製"
|
|
|
2374
2424
|
msgid "Global view renamed successfully"
|
|
2375
2425
|
msgstr "全域檢視已成功重新命名"
|
|
2376
2426
|
|
|
2427
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:58
|
|
2428
|
+
msgid "Go to first page"
|
|
2429
|
+
msgstr "前往第一頁"
|
|
2430
|
+
|
|
2431
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:95
|
|
2432
|
+
msgid "Go to last page"
|
|
2433
|
+
msgstr "前往最後一頁"
|
|
2434
|
+
|
|
2435
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:83
|
|
2436
|
+
msgid "Go to next page"
|
|
2437
|
+
msgstr "前往下一頁"
|
|
2438
|
+
|
|
2439
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:70
|
|
2440
|
+
msgid "Go to previous page"
|
|
2441
|
+
msgstr "前往上一頁"
|
|
2442
|
+
|
|
2377
2443
|
#: src/lib/components/data-table/human-readable-operator.tsx:40
|
|
2378
2444
|
msgid "greater than"
|
|
2379
2445
|
msgstr "大於"
|
|
@@ -2426,7 +2492,7 @@ msgstr "高度"
|
|
|
2426
2492
|
msgid "ID"
|
|
2427
2493
|
msgstr "ID"
|
|
2428
2494
|
|
|
2429
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
2495
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:74
|
|
2430
2496
|
msgid "Identifier"
|
|
2431
2497
|
msgstr "識別碼"
|
|
2432
2498
|
|
|
@@ -2446,7 +2512,7 @@ msgstr "在"
|
|
|
2446
2512
|
msgid "Inherit filters"
|
|
2447
2513
|
msgstr "繼承篩選器"
|
|
2448
2514
|
|
|
2449
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2515
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:337
|
|
2450
2516
|
msgid "Inherit from global settings"
|
|
2451
2517
|
msgstr "從全域設定繼承"
|
|
2452
2518
|
|
|
@@ -2515,7 +2581,7 @@ msgstr "不在"
|
|
|
2515
2581
|
msgid "is null"
|
|
2516
2582
|
msgstr "為空"
|
|
2517
2583
|
|
|
2518
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
2584
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:106
|
|
2519
2585
|
msgid "Item added to order"
|
|
2520
2586
|
msgstr "項目已新增至訂單"
|
|
2521
2587
|
|
|
@@ -2524,7 +2590,7 @@ msgstr "項目已新增至訂單"
|
|
|
2524
2590
|
msgid "Job Queue"
|
|
2525
2591
|
msgstr "工作佇列"
|
|
2526
2592
|
|
|
2527
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2593
|
+
#: src/lib/components/layout/nav-user.tsx:114
|
|
2528
2594
|
msgid "Language"
|
|
2529
2595
|
msgstr "語言"
|
|
2530
2596
|
|
|
@@ -2552,7 +2618,7 @@ msgctxt "date-range"
|
|
|
2552
2618
|
msgid "Last month"
|
|
2553
2619
|
msgstr "上個月"
|
|
2554
2620
|
|
|
2555
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2621
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:125
|
|
2556
2622
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:179
|
|
2557
2623
|
#: src/app/routes/_authenticated/_profile/profile.tsx:98
|
|
2558
2624
|
msgid "Last name"
|
|
@@ -2567,7 +2633,7 @@ msgstr "上次結果"
|
|
|
2567
2633
|
msgid "Last updated {0}"
|
|
2568
2634
|
msgstr "上次更新 {0}"
|
|
2569
2635
|
|
|
2570
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
2636
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:58
|
|
2571
2637
|
msgid "Latest Orders"
|
|
2572
2638
|
msgstr "最新訂單"
|
|
2573
2639
|
|
|
@@ -2579,7 +2645,7 @@ msgstr "小於"
|
|
|
2579
2645
|
msgid "less than or equal"
|
|
2580
2646
|
msgstr "小於或等於"
|
|
2581
2647
|
|
|
2582
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2648
|
+
#: src/lib/components/layout/nav-user.tsx:131
|
|
2583
2649
|
msgctxt "theme"
|
|
2584
2650
|
msgid "Light"
|
|
2585
2651
|
msgstr "淺色"
|
|
@@ -2625,8 +2691,9 @@ msgstr "正在載入標籤..."
|
|
|
2625
2691
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:82
|
|
2626
2692
|
#: src/lib/components/data-input/relation-selector.tsx:427
|
|
2627
2693
|
#: src/lib/components/shared/country-selector.tsx:88
|
|
2694
|
+
#: src/lib/components/shared/customer-group-selector.tsx:58
|
|
2628
2695
|
#: src/lib/components/shared/customer-selector.tsx:90
|
|
2629
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
2696
|
+
#: src/lib/components/shared/facet-value-selector.tsx:340
|
|
2630
2697
|
#: src/lib/components/shared/seller-selector.tsx:92
|
|
2631
2698
|
msgid "Loading..."
|
|
2632
2699
|
msgstr "正在載入..."
|
|
@@ -2635,7 +2702,7 @@ msgstr "正在載入..."
|
|
|
2635
2702
|
msgid "Locale"
|
|
2636
2703
|
msgstr "地區設定"
|
|
2637
2704
|
|
|
2638
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2705
|
+
#: src/lib/components/layout/nav-user.tsx:171
|
|
2639
2706
|
msgid "Log out"
|
|
2640
2707
|
msgstr "登出"
|
|
2641
2708
|
|
|
@@ -2706,7 +2773,7 @@ msgstr "指標"
|
|
|
2706
2773
|
msgid "Modify"
|
|
2707
2774
|
msgstr "修改"
|
|
2708
2775
|
|
|
2709
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2776
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:159
|
|
2710
2777
|
msgid "Modify order"
|
|
2711
2778
|
msgstr "修改訂單"
|
|
2712
2779
|
|
|
@@ -2747,7 +2814,7 @@ msgstr "正在將 {0} 個集合移動到 {2}"
|
|
|
2747
2814
|
msgid "Moving..."
|
|
2748
2815
|
msgstr "正在移動..."
|
|
2749
2816
|
|
|
2750
|
-
#: src/lib/components/data-table/my-views-button.tsx:
|
|
2817
|
+
#: src/lib/components/data-table/my-views-button.tsx:39
|
|
2751
2818
|
msgid "My saved views"
|
|
2752
2819
|
msgstr "我的儲存檢視"
|
|
2753
2820
|
|
|
@@ -2755,11 +2822,11 @@ msgstr "我的儲存檢視"
|
|
|
2755
2822
|
msgid "My Saved Views"
|
|
2756
2823
|
msgstr "我的儲存檢視"
|
|
2757
2824
|
|
|
2758
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
2825
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:46
|
|
2759
2826
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:146
|
|
2760
2827
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:108
|
|
2761
2828
|
#: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:107
|
|
2762
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
2829
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:72
|
|
2763
2830
|
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
|
|
2764
2831
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:134
|
|
2765
2832
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:124
|
|
@@ -2767,10 +2834,10 @@ msgstr "我的儲存檢視"
|
|
|
2767
2834
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:328
|
|
2768
2835
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:303
|
|
2769
2836
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:149
|
|
2770
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
2771
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2837
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:181
|
|
2838
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:158
|
|
2772
2839
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:96
|
|
2773
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2840
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:137
|
|
2774
2841
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
|
|
2775
2842
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:109
|
|
2776
2843
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:116
|
|
@@ -2784,7 +2851,7 @@ msgid "Never"
|
|
|
2784
2851
|
msgstr "永不"
|
|
2785
2852
|
|
|
2786
2853
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:40
|
|
2787
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2854
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:99
|
|
2788
2855
|
msgid "New administrator"
|
|
2789
2856
|
msgstr "新增管理員"
|
|
2790
2857
|
|
|
@@ -2806,7 +2873,7 @@ msgstr "新增通路"
|
|
|
2806
2873
|
msgid "New collection"
|
|
2807
2874
|
msgstr "新增集合"
|
|
2808
2875
|
|
|
2809
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
2876
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:247
|
|
2810
2877
|
msgid "New Collection"
|
|
2811
2878
|
msgstr "新增集合"
|
|
2812
2879
|
|
|
@@ -2820,7 +2887,7 @@ msgstr "新增國家"
|
|
|
2820
2887
|
msgid "New customer"
|
|
2821
2888
|
msgstr "新增客戶"
|
|
2822
2889
|
|
|
2823
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
2890
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:97
|
|
2824
2891
|
msgid "New Customer"
|
|
2825
2892
|
msgstr "新增客戶"
|
|
2826
2893
|
|
|
@@ -2864,7 +2931,7 @@ msgstr "新增選項"
|
|
|
2864
2931
|
msgid "New payment method"
|
|
2865
2932
|
msgstr "新增付款方式"
|
|
2866
2933
|
|
|
2867
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
2934
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:81
|
|
2868
2935
|
msgid "New Payment Method"
|
|
2869
2936
|
msgstr "新增付款方式"
|
|
2870
2937
|
|
|
@@ -2873,11 +2940,11 @@ msgstr "新增付款方式"
|
|
|
2873
2940
|
msgid "New product"
|
|
2874
2941
|
msgstr "新增商品"
|
|
2875
2942
|
|
|
2876
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
2943
|
+
#: src/app/routes/_authenticated/_products/products.tsx:102
|
|
2877
2944
|
msgid "New Product"
|
|
2878
2945
|
msgstr "新增商品"
|
|
2879
2946
|
|
|
2880
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
2947
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:150
|
|
2881
2948
|
msgid "New product option"
|
|
2882
2949
|
msgstr "新增商品選項"
|
|
2883
2950
|
|
|
@@ -2885,16 +2952,16 @@ msgstr "新增商品選項"
|
|
|
2885
2952
|
msgid "New product option group"
|
|
2886
2953
|
msgstr "新增商品選項群組"
|
|
2887
2954
|
|
|
2888
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2955
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:206
|
|
2889
2956
|
msgid "New product variant"
|
|
2890
2957
|
msgstr "新增商品變體"
|
|
2891
2958
|
|
|
2892
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2893
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2959
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:45
|
|
2960
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:128
|
|
2894
2961
|
msgid "New promotion"
|
|
2895
2962
|
msgstr "新增促銷"
|
|
2896
2963
|
|
|
2897
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
2964
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:87
|
|
2898
2965
|
msgid "New Promotion"
|
|
2899
2966
|
msgstr "新增促銷"
|
|
2900
2967
|
|
|
@@ -2917,11 +2984,11 @@ msgid "New Seller"
|
|
|
2917
2984
|
msgstr "新增賣家"
|
|
2918
2985
|
|
|
2919
2986
|
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:44
|
|
2920
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2987
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:114
|
|
2921
2988
|
msgid "New shipping method"
|
|
2922
2989
|
msgstr "新增配送方式"
|
|
2923
2990
|
|
|
2924
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
2991
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:69
|
|
2925
2992
|
msgid "New Shipping Method"
|
|
2926
2993
|
msgstr "新增配送方式"
|
|
2927
2994
|
|
|
@@ -2982,7 +3049,11 @@ msgstr "無地址"
|
|
|
2982
3049
|
msgid "No addresses found"
|
|
2983
3050
|
msgstr "找不到地址"
|
|
2984
3051
|
|
|
2985
|
-
#: src/
|
|
3052
|
+
#: src/lib/components/shared/alerts.tsx:43
|
|
3053
|
+
msgid "No alerts"
|
|
3054
|
+
msgstr "無提醒"
|
|
3055
|
+
|
|
3056
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:280
|
|
2986
3057
|
msgid "No billing address"
|
|
2987
3058
|
msgstr "無帳單地址"
|
|
2988
3059
|
|
|
@@ -2991,7 +3062,7 @@ msgid "No countries found"
|
|
|
2991
3062
|
msgstr "找不到國家"
|
|
2992
3063
|
|
|
2993
3064
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:252
|
|
2994
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3065
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:227
|
|
2995
3066
|
msgid "No customer"
|
|
2996
3067
|
msgstr "無客戶"
|
|
2997
3068
|
|
|
@@ -3031,12 +3102,16 @@ msgstr "找不到項目"
|
|
|
3031
3102
|
msgid "No items selected"
|
|
3032
3103
|
msgstr "未選取項目"
|
|
3033
3104
|
|
|
3034
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3105
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:218
|
|
3035
3106
|
msgid "No modifications made"
|
|
3036
3107
|
msgstr "未進行修改"
|
|
3037
3108
|
|
|
3109
|
+
#: src/lib/components/shared/facet-value-selector.tsx:425
|
|
3110
|
+
msgid "No more facets"
|
|
3111
|
+
msgstr "沒有更多分面"
|
|
3112
|
+
|
|
3038
3113
|
#: src/lib/components/data-input/relation-selector.tsx:458
|
|
3039
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
3114
|
+
#: src/lib/components/shared/facet-value-selector.tsx:397
|
|
3040
3115
|
msgid "No more items"
|
|
3041
3116
|
msgstr "沒有更多項目"
|
|
3042
3117
|
|
|
@@ -3057,12 +3132,13 @@ msgstr "不需要付款或退款"
|
|
|
3057
3132
|
msgid "No result yet"
|
|
3058
3133
|
msgstr "尚無結果"
|
|
3059
3134
|
|
|
3060
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
3135
|
+
#: src/lib/components/data-table/data-table.tsx:366
|
|
3136
|
+
#: src/lib/components/shared/customer-group-selector.tsx:58
|
|
3061
3137
|
msgid "No results"
|
|
3062
3138
|
msgstr "無結果"
|
|
3063
3139
|
|
|
3064
3140
|
#: src/lib/components/data-input/relation-selector.tsx:430
|
|
3065
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
3141
|
+
#: src/lib/components/shared/facet-value-selector.tsx:344
|
|
3066
3142
|
msgid "No results found"
|
|
3067
3143
|
msgstr "找不到結果"
|
|
3068
3144
|
|
|
@@ -3070,7 +3146,7 @@ msgstr "找不到結果"
|
|
|
3070
3146
|
msgid "No sellers found"
|
|
3071
3147
|
msgstr "找不到賣家"
|
|
3072
3148
|
|
|
3073
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3149
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:254
|
|
3074
3150
|
msgid "No shipping address"
|
|
3075
3151
|
msgstr "無配送地址"
|
|
3076
3152
|
|
|
@@ -3187,6 +3263,10 @@ msgstr "訂單已取消"
|
|
|
3187
3263
|
msgid "Order Count"
|
|
3188
3264
|
msgstr "訂單數量"
|
|
3189
3265
|
|
|
3266
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:89
|
|
3267
|
+
msgid "Order custom fields updated"
|
|
3268
|
+
msgstr "訂單自訂欄位已更新"
|
|
3269
|
+
|
|
3190
3270
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:90
|
|
3191
3271
|
msgid "Order delivered"
|
|
3192
3272
|
msgstr "訂單已送達"
|
|
@@ -3200,16 +3280,16 @@ msgstr "訂單已履行"
|
|
|
3200
3280
|
msgid "Order history"
|
|
3201
3281
|
msgstr "訂單歷程"
|
|
3202
3282
|
|
|
3203
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3283
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:143
|
|
3204
3284
|
msgid "Order line removed"
|
|
3205
3285
|
msgstr "訂單行已移除"
|
|
3206
3286
|
|
|
3207
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3287
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:127
|
|
3208
3288
|
msgid "Order line updated"
|
|
3209
3289
|
msgstr "訂單行已更新"
|
|
3210
3290
|
|
|
3211
3291
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:241
|
|
3212
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3292
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:169
|
|
3213
3293
|
msgid "Order lines"
|
|
3214
3294
|
msgstr "訂單行"
|
|
3215
3295
|
|
|
@@ -3261,13 +3341,19 @@ msgstr "訂單"
|
|
|
3261
3341
|
msgid "Orders Summary"
|
|
3262
3342
|
msgstr "訂單摘要"
|
|
3263
3343
|
|
|
3264
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3344
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:352
|
|
3265
3345
|
msgid "Out-of-stock threshold"
|
|
3266
3346
|
msgstr "缺貨臨界值"
|
|
3267
3347
|
|
|
3268
|
-
|
|
3348
|
+
#. placeholder {0}: table.getState().pagination.pageIndex + 1
|
|
3349
|
+
#. placeholder {1}: table.getPageCount() || 1
|
|
3350
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:44
|
|
3351
|
+
msgid "Page {0} of {1}"
|
|
3352
|
+
msgstr "第 {0} 頁,共 {1} 頁"
|
|
3353
|
+
|
|
3354
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:137
|
|
3269
3355
|
#: src/app/routes/_authenticated/_profile/profile.tsx:110
|
|
3270
|
-
#: src/lib/components/login/login-form.tsx:
|
|
3356
|
+
#: src/lib/components/login/login-form.tsx:95
|
|
3271
3357
|
msgid "Password"
|
|
3272
3358
|
msgstr "密碼"
|
|
3273
3359
|
|
|
@@ -3326,8 +3412,8 @@ msgid "Payment method is required"
|
|
|
3326
3412
|
msgstr "付款方式為必填欄位"
|
|
3327
3413
|
|
|
3328
3414
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:42
|
|
3329
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
3330
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
3415
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:20
|
|
3416
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:30
|
|
3331
3417
|
msgid "Payment Methods"
|
|
3332
3418
|
msgstr "付款方式"
|
|
3333
3419
|
|
|
@@ -3347,7 +3433,7 @@ msgstr "付款狀態已成功更新"
|
|
|
3347
3433
|
msgid "Payment transitioned"
|
|
3348
3434
|
msgstr "付款已轉換"
|
|
3349
3435
|
|
|
3350
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3436
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:205
|
|
3351
3437
|
msgid "Per customer usage limit"
|
|
3352
3438
|
msgstr "每位客戶使用限制"
|
|
3353
3439
|
|
|
@@ -3360,12 +3446,12 @@ msgid "Phone number"
|
|
|
3360
3446
|
msgstr "電話號碼"
|
|
3361
3447
|
|
|
3362
3448
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:272
|
|
3363
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
3449
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:241
|
|
3364
3450
|
#: src/lib/components/shared/customer-address-form.tsx:263
|
|
3365
3451
|
msgid "Phone Number"
|
|
3366
3452
|
msgstr "電話號碼"
|
|
3367
3453
|
|
|
3368
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
3454
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:88
|
|
3369
3455
|
msgid "Placed At"
|
|
3370
3456
|
msgstr "下單時間"
|
|
3371
3457
|
|
|
@@ -3378,12 +3464,12 @@ msgid "Please select a target collection"
|
|
|
3378
3464
|
msgstr "請選取目標集合"
|
|
3379
3465
|
|
|
3380
3466
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:222
|
|
3381
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
3467
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:208
|
|
3382
3468
|
#: src/lib/components/shared/customer-address-form.tsx:213
|
|
3383
3469
|
msgid "Postal Code"
|
|
3384
3470
|
msgstr "郵遞區號"
|
|
3385
3471
|
|
|
3386
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3472
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:206
|
|
3387
3473
|
msgid "Preview changes"
|
|
3388
3474
|
msgstr "預覽變更"
|
|
3389
3475
|
|
|
@@ -3392,14 +3478,14 @@ msgid "Preview order modifications"
|
|
|
3392
3478
|
msgstr "預覽訂單修改"
|
|
3393
3479
|
|
|
3394
3480
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:49
|
|
3395
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3481
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:271
|
|
3396
3482
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:340
|
|
3397
3483
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:209
|
|
3398
3484
|
#: src/lib/components/layout/language-dialog.tsx:108
|
|
3399
3485
|
msgid "Price"
|
|
3400
3486
|
msgstr "價格"
|
|
3401
3487
|
|
|
3402
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3488
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:251
|
|
3403
3489
|
msgid "Price and tax"
|
|
3404
3490
|
msgstr "價格和稅金"
|
|
3405
3491
|
|
|
@@ -3428,16 +3514,17 @@ msgstr "私人集合在商店中不可見"
|
|
|
3428
3514
|
msgid "Private facets are not visible in the shop"
|
|
3429
3515
|
msgstr "私人屬性在商店中不可見"
|
|
3430
3516
|
|
|
3431
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
3517
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:87
|
|
3518
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:44
|
|
3432
3519
|
msgid "Product"
|
|
3433
3520
|
msgstr "商品"
|
|
3434
3521
|
|
|
3435
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3522
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:237
|
|
3436
3523
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:133
|
|
3437
3524
|
msgid "Product name"
|
|
3438
3525
|
msgstr "商品名稱"
|
|
3439
3526
|
|
|
3440
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
3527
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:169
|
|
3441
3528
|
msgid "Product Option Group"
|
|
3442
3529
|
msgstr "商品選項群組"
|
|
3443
3530
|
|
|
@@ -3450,31 +3537,31 @@ msgstr "商品選項"
|
|
|
3450
3537
|
msgid "Product Options"
|
|
3451
3538
|
msgstr "商品選項"
|
|
3452
3539
|
|
|
3453
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3540
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:61
|
|
3454
3541
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:18
|
|
3455
3542
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:26
|
|
3456
3543
|
msgid "Product Variants"
|
|
3457
3544
|
msgstr "商品變體"
|
|
3458
3545
|
|
|
3459
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3546
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:56
|
|
3460
3547
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:54
|
|
3461
3548
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:45
|
|
3462
3549
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:61
|
|
3463
3550
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:79
|
|
3464
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3465
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3551
|
+
#: src/app/routes/_authenticated/_products/products.tsx:24
|
|
3552
|
+
#: src/app/routes/_authenticated/_products/products.tsx:47
|
|
3466
3553
|
msgid "Products"
|
|
3467
3554
|
msgstr "商品"
|
|
3468
3555
|
|
|
3469
3556
|
#: src/app/routes/_authenticated/_profile/profile.tsx:30
|
|
3470
3557
|
#: src/app/routes/_authenticated/_profile/profile.tsx:74
|
|
3471
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
3558
|
+
#: src/lib/components/layout/nav-user.tsx:108
|
|
3472
3559
|
msgid "Profile"
|
|
3473
3560
|
msgstr "個人資料"
|
|
3474
3561
|
|
|
3475
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3476
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
3477
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
3562
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:44
|
|
3563
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:21
|
|
3564
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:30
|
|
3478
3565
|
msgid "Promotions"
|
|
3479
3566
|
msgstr "促銷"
|
|
3480
3567
|
|
|
@@ -3482,8 +3569,9 @@ msgstr "促銷"
|
|
|
3482
3569
|
msgid "public"
|
|
3483
3570
|
msgstr "公開"
|
|
3484
3571
|
|
|
3572
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:111
|
|
3485
3573
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:265
|
|
3486
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
3574
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:80
|
|
3487
3575
|
msgid "Quantity"
|
|
3488
3576
|
msgstr "數量"
|
|
3489
3577
|
|
|
@@ -3499,7 +3587,7 @@ msgstr "費率"
|
|
|
3499
3587
|
msgid "Reason"
|
|
3500
3588
|
msgstr "原因"
|
|
3501
3589
|
|
|
3502
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3590
|
+
#: src/app/routes/_authenticated/_products/products.tsx:95
|
|
3503
3591
|
msgid "Rebuild search index"
|
|
3504
3592
|
msgstr "重建搜尋索引"
|
|
3505
3593
|
|
|
@@ -3563,7 +3651,7 @@ msgstr "已註冊"
|
|
|
3563
3651
|
msgid "Remaining:"
|
|
3564
3652
|
msgstr "剩餘:"
|
|
3565
3653
|
|
|
3566
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3654
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:491
|
|
3567
3655
|
msgid "Remove"
|
|
3568
3656
|
msgstr "移除"
|
|
3569
3657
|
|
|
@@ -3583,7 +3671,7 @@ msgstr "移除項目"
|
|
|
3583
3671
|
msgid "Remove link"
|
|
3584
3672
|
msgstr "移除連結"
|
|
3585
3673
|
|
|
3586
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3674
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:200
|
|
3587
3675
|
msgid "Removed coupon codes"
|
|
3588
3676
|
msgstr "已移除優惠券代碼"
|
|
3589
3677
|
|
|
@@ -3592,7 +3680,7 @@ msgid "Removed from group"
|
|
|
3592
3680
|
msgstr "已從群組中移除"
|
|
3593
3681
|
|
|
3594
3682
|
#. placeholder {0}: removedLines.length
|
|
3595
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3683
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:176
|
|
3596
3684
|
msgid "Removing {0} item(s)"
|
|
3597
3685
|
msgstr "正在移除 {0} 個項目"
|
|
3598
3686
|
|
|
@@ -3608,14 +3696,18 @@ msgstr "重設"
|
|
|
3608
3696
|
msgid "Review the changes before applying them to the order."
|
|
3609
3697
|
msgstr "在將變更套用到訂單之前,請先檢閱變更。"
|
|
3610
3698
|
|
|
3611
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
3612
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
3699
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:143
|
|
3700
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:56
|
|
3613
3701
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:34
|
|
3614
3702
|
#: src/app/routes/_authenticated/_roles/roles.tsx:19
|
|
3615
3703
|
#: src/app/routes/_authenticated/_roles/roles.tsx:28
|
|
3616
3704
|
msgid "Roles"
|
|
3617
3705
|
msgstr "角色"
|
|
3618
3706
|
|
|
3707
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:22
|
|
3708
|
+
msgid "Rows per page"
|
|
3709
|
+
msgstr "每頁列數"
|
|
3710
|
+
|
|
3619
3711
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:210
|
|
3620
3712
|
msgid "Run"
|
|
3621
3713
|
msgstr "執行"
|
|
@@ -3669,7 +3761,7 @@ msgstr "儲存佈局"
|
|
|
3669
3761
|
msgid "Save option group"
|
|
3670
3762
|
msgstr "儲存選項群組"
|
|
3671
3763
|
|
|
3672
|
-
#: src/lib/components/data-table/save-view-button.tsx:
|
|
3764
|
+
#: src/lib/components/data-table/save-view-button.tsx:35
|
|
3673
3765
|
msgid "Save View"
|
|
3674
3766
|
msgstr "儲存檢視"
|
|
3675
3767
|
|
|
@@ -3711,11 +3803,15 @@ msgstr "搜尋通路..."
|
|
|
3711
3803
|
msgid "Search currencies..."
|
|
3712
3804
|
msgstr "搜尋貨幣..."
|
|
3713
3805
|
|
|
3714
|
-
#: src/
|
|
3806
|
+
#: src/lib/components/shared/facet-value-selector.tsx:304
|
|
3807
|
+
msgid "Search facet values..."
|
|
3808
|
+
msgstr "搜尋分面值..."
|
|
3809
|
+
|
|
3810
|
+
#: src/app/routes/_authenticated/_products/products.tsx:35
|
|
3715
3811
|
msgid "Search index rebuild could not be started"
|
|
3716
3812
|
msgstr "無法開始重建搜尋索引"
|
|
3717
3813
|
|
|
3718
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3814
|
+
#: src/app/routes/_authenticated/_products/products.tsx:32
|
|
3719
3815
|
msgid "Search index rebuild started"
|
|
3720
3816
|
msgstr "已開始重建搜尋索引"
|
|
3721
3817
|
|
|
@@ -3734,7 +3830,7 @@ msgstr "搜尋角色..."
|
|
|
3734
3830
|
#. placeholder {0}: entityName.toLowerCase()
|
|
3735
3831
|
#. placeholder {0}: group.name
|
|
3736
3832
|
#: src/app/routes/_authenticated/_products/components/product-option-select.tsx:58
|
|
3737
|
-
#: src/lib/components/data-input/default-relation-input.tsx:
|
|
3833
|
+
#: src/lib/components/data-input/default-relation-input.tsx:618
|
|
3738
3834
|
msgid "Select {0}"
|
|
3739
3835
|
msgstr "選取 {0}"
|
|
3740
3836
|
|
|
@@ -3744,7 +3840,7 @@ msgid "Select {0} Items"
|
|
|
3744
3840
|
msgstr "選取 {0} 個項目"
|
|
3745
3841
|
|
|
3746
3842
|
#. placeholder {0}: entityName.toLowerCase()
|
|
3747
|
-
#: src/lib/components/data-input/default-relation-input.tsx:
|
|
3843
|
+
#: src/lib/components/data-input/default-relation-input.tsx:605
|
|
3748
3844
|
msgid "Select {0}s"
|
|
3749
3845
|
msgstr "選取 {0}"
|
|
3750
3846
|
|
|
@@ -3879,7 +3975,7 @@ msgstr "賣家訂單"
|
|
|
3879
3975
|
msgid "Sellers"
|
|
3880
3976
|
msgstr "賣家"
|
|
3881
3977
|
|
|
3882
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3978
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:398
|
|
3883
3979
|
msgid "Set custom fields"
|
|
3884
3980
|
msgstr "設定自訂欄位"
|
|
3885
3981
|
|
|
@@ -3891,16 +3987,16 @@ msgstr "設定焦點"
|
|
|
3891
3987
|
msgid "Set link"
|
|
3892
3988
|
msgstr "設定連結"
|
|
3893
3989
|
|
|
3894
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
3990
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:114
|
|
3895
3991
|
msgid "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
|
|
3896
3992
|
msgstr "設定所有通路可用的語言。然後,各個通路可以支援這些語言的子集。"
|
|
3897
3993
|
|
|
3898
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
3994
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:133
|
|
3899
3995
|
msgid "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
|
|
3900
3996
|
msgstr "設定將此變體視為缺貨的庫存水準。使用負值可啟用延期交貨支援。可由商品變體覆寫。"
|
|
3901
3997
|
|
|
3902
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3903
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3998
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:354
|
|
3999
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:372
|
|
3904
4000
|
msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
|
|
3905
4001
|
msgstr "設定將此變體視為缺貨的庫存水準。使用負值可啟用延期交貨支援。"
|
|
3906
4002
|
|
|
@@ -3914,34 +4010,34 @@ msgstr "完成付款"
|
|
|
3914
4010
|
msgid "Settle refund"
|
|
3915
4011
|
msgstr "完成退款"
|
|
3916
4012
|
|
|
3917
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4013
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:61
|
|
3918
4014
|
#: src/app/routes/_authenticated/_orders/orders.tsx:83
|
|
3919
4015
|
msgid "Shipping"
|
|
3920
4016
|
msgstr "配送"
|
|
3921
4017
|
|
|
3922
4018
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:259
|
|
3923
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3924
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4019
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:234
|
|
4020
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:418
|
|
3925
4021
|
msgid "Shipping address"
|
|
3926
4022
|
msgstr "配送地址"
|
|
3927
4023
|
|
|
3928
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4024
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:143
|
|
3929
4025
|
msgid "Shipping Address"
|
|
3930
4026
|
msgstr "配送地址"
|
|
3931
4027
|
|
|
3932
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4028
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:110
|
|
3933
4029
|
msgid "Shipping address changed"
|
|
3934
4030
|
msgstr "配送地址已變更"
|
|
3935
4031
|
|
|
3936
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4032
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:181
|
|
3937
4033
|
msgid "Shipping address set for order"
|
|
3938
4034
|
msgstr "訂單已設定配送地址"
|
|
3939
4035
|
|
|
3940
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4036
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:197
|
|
3941
4037
|
msgid "Shipping address unset for order"
|
|
3942
4038
|
msgstr "訂單已取消配送地址"
|
|
3943
4039
|
|
|
3944
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4040
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:124
|
|
3945
4041
|
msgid "Shipping method changed"
|
|
3946
4042
|
msgstr "配送方式已變更"
|
|
3947
4043
|
|
|
@@ -3953,13 +4049,13 @@ msgstr "配送方式適用於此訂單"
|
|
|
3953
4049
|
msgid "Shipping method is not eligible for this order"
|
|
3954
4050
|
msgstr "配送方式不適用於此訂單"
|
|
3955
4051
|
|
|
3956
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4052
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:216
|
|
3957
4053
|
msgid "Shipping method set for order"
|
|
3958
4054
|
msgstr "訂單已設定配送方式"
|
|
3959
4055
|
|
|
3960
4056
|
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:43
|
|
3961
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
3962
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
4057
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:20
|
|
4058
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:29
|
|
3963
4059
|
msgid "Shipping Methods"
|
|
3964
4060
|
msgstr "配送方式"
|
|
3965
4061
|
|
|
@@ -3972,7 +4068,16 @@ msgstr "短日期"
|
|
|
3972
4068
|
msgid "Showing all {0} results"
|
|
3973
4069
|
msgstr "顯示所有 {0} 個結果"
|
|
3974
4070
|
|
|
3975
|
-
#: src/
|
|
4071
|
+
#: src/lib/components/login/login-form.tsx:108
|
|
4072
|
+
msgid "Sign in"
|
|
4073
|
+
msgstr "登入"
|
|
4074
|
+
|
|
4075
|
+
#: src/lib/components/login/login-form.tsx:68
|
|
4076
|
+
msgid "Sign in to access the admin dashboard"
|
|
4077
|
+
msgstr "登入以存取管理儀表板"
|
|
4078
|
+
|
|
4079
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:96
|
|
4080
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:244
|
|
3976
4081
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:334
|
|
3977
4082
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:195
|
|
3978
4083
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:206
|
|
@@ -4001,7 +4106,7 @@ msgstr "部分資源已關閉"
|
|
|
4001
4106
|
msgid "Source"
|
|
4002
4107
|
msgstr "來源"
|
|
4003
4108
|
|
|
4004
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4109
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:175
|
|
4005
4110
|
msgid "Starts at"
|
|
4006
4111
|
msgstr "開始於"
|
|
4007
4112
|
|
|
@@ -4012,7 +4117,7 @@ msgstr "開始於"
|
|
|
4012
4117
|
msgid "State"
|
|
4013
4118
|
msgstr "州/省"
|
|
4014
4119
|
|
|
4015
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4120
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:202
|
|
4016
4121
|
msgid "State / Province"
|
|
4017
4122
|
msgstr "州/省"
|
|
4018
4123
|
|
|
@@ -4026,7 +4131,7 @@ msgstr "州/省"
|
|
|
4026
4131
|
msgid "Status"
|
|
4027
4132
|
msgstr "狀態"
|
|
4028
4133
|
|
|
4029
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4134
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:315
|
|
4030
4135
|
msgid "Stock"
|
|
4031
4136
|
msgstr "庫存"
|
|
4032
4137
|
|
|
@@ -4034,12 +4139,12 @@ msgstr "庫存"
|
|
|
4034
4139
|
msgid "Stock allocated"
|
|
4035
4140
|
msgstr "庫存已配置"
|
|
4036
4141
|
|
|
4037
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4142
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:395
|
|
4038
4143
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:353
|
|
4039
4144
|
msgid "Stock level"
|
|
4040
4145
|
msgstr "庫存水準"
|
|
4041
4146
|
|
|
4042
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4147
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:320
|
|
4043
4148
|
msgid "Stock levels"
|
|
4044
4149
|
msgstr "庫存水準"
|
|
4045
4150
|
|
|
@@ -4058,20 +4163,20 @@ msgid "Stock on Hand"
|
|
|
4058
4163
|
msgstr "現有庫存"
|
|
4059
4164
|
|
|
4060
4165
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:146
|
|
4061
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4166
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:175
|
|
4062
4167
|
#: src/lib/components/shared/customer-address-form.tsx:137
|
|
4063
4168
|
msgid "Street Address"
|
|
4064
4169
|
msgstr "街道地址"
|
|
4065
4170
|
|
|
4066
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4171
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:182
|
|
4067
4172
|
msgid "Street Address 2"
|
|
4068
4173
|
msgstr "街道地址 2"
|
|
4069
4174
|
|
|
4070
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4175
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:49
|
|
4071
4176
|
msgid "Sub total"
|
|
4072
4177
|
msgstr "小計"
|
|
4073
4178
|
|
|
4074
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
4179
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:220
|
|
4075
4180
|
msgid "Subtotal"
|
|
4076
4181
|
msgstr "小計"
|
|
4077
4182
|
|
|
@@ -4087,6 +4192,10 @@ msgstr "已成功向訂單新增付款"
|
|
|
4087
4192
|
msgid "Successfully assigned {entityIdsLength} {entityType} to channel"
|
|
4088
4193
|
msgstr "已成功將 {entityIdsLength} {entityType} 指派給通路"
|
|
4089
4194
|
|
|
4195
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:79
|
|
4196
|
+
msgid "Successfully created administrator"
|
|
4197
|
+
msgstr "成功建立管理員"
|
|
4198
|
+
|
|
4090
4199
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:85
|
|
4091
4200
|
msgid "Successfully created channel"
|
|
4092
4201
|
msgstr "已成功建立通路"
|
|
@@ -4127,6 +4236,10 @@ msgstr "已成功建立付款方式"
|
|
|
4127
4236
|
msgid "Successfully created product"
|
|
4128
4237
|
msgstr "已成功建立商品"
|
|
4129
4238
|
|
|
4239
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:128
|
|
4240
|
+
msgid "Successfully created product option"
|
|
4241
|
+
msgstr "成功建立產品選項"
|
|
4242
|
+
|
|
4130
4243
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:106
|
|
4131
4244
|
msgid "Successfully created product option group"
|
|
4132
4245
|
msgstr "成功建立商品選項群組"
|
|
@@ -4135,12 +4248,12 @@ msgstr "成功建立商品選項群組"
|
|
|
4135
4248
|
msgid "Successfully created product options"
|
|
4136
4249
|
msgstr "已成功建立商品選項"
|
|
4137
4250
|
|
|
4138
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4251
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:116
|
|
4139
4252
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:169
|
|
4140
4253
|
msgid "Successfully created product variant"
|
|
4141
4254
|
msgstr "已成功建立商品變體"
|
|
4142
4255
|
|
|
4143
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4256
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:104
|
|
4144
4257
|
msgid "Successfully created promotion"
|
|
4145
4258
|
msgstr "已成功建立促銷"
|
|
4146
4259
|
|
|
@@ -4152,6 +4265,10 @@ msgstr "已成功建立角色"
|
|
|
4152
4265
|
msgid "Successfully created seller"
|
|
4153
4266
|
msgstr "已成功建立賣家"
|
|
4154
4267
|
|
|
4268
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:90
|
|
4269
|
+
msgid "Successfully created shipping method"
|
|
4270
|
+
msgstr "成功建立配送方式"
|
|
4271
|
+
|
|
4155
4272
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:69
|
|
4156
4273
|
msgid "Successfully created stock location"
|
|
4157
4274
|
msgstr "已成功建立庫存位置"
|
|
@@ -4184,6 +4301,10 @@ msgstr "已成功從通路中移除 {selectionLength} {entityType}"
|
|
|
4184
4301
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4185
4302
|
msgstr "已成功從通路中移除 {successCount} 個屬性"
|
|
4186
4303
|
|
|
4304
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4305
|
+
msgid "Successfully updated administrator"
|
|
4306
|
+
msgstr "成功更新管理員"
|
|
4307
|
+
|
|
4187
4308
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:70
|
|
4188
4309
|
msgid "Successfully updated asset"
|
|
4189
4310
|
msgstr "已成功更新資源"
|
|
@@ -4220,12 +4341,12 @@ msgstr "已成功更新屬性值"
|
|
|
4220
4341
|
msgid "Successfully updated facet values for {entityIdsLength} {entityType}"
|
|
4221
4342
|
msgstr "已成功為 {entityIdsLength} {entityType} 更新屬性值"
|
|
4222
4343
|
|
|
4223
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4344
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:71
|
|
4224
4345
|
msgid "Successfully updated global settings"
|
|
4225
4346
|
msgstr "已成功更新全域設定"
|
|
4226
4347
|
|
|
4227
4348
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:85
|
|
4228
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4349
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:55
|
|
4229
4350
|
msgid "Successfully updated order"
|
|
4230
4351
|
msgstr "已成功更新訂單"
|
|
4231
4352
|
|
|
@@ -4237,11 +4358,15 @@ msgstr "已成功更新付款方式"
|
|
|
4237
4358
|
msgid "Successfully updated product"
|
|
4238
4359
|
msgstr "已成功更新商品"
|
|
4239
4360
|
|
|
4361
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:129
|
|
4362
|
+
msgid "Successfully updated product option"
|
|
4363
|
+
msgstr "成功更新產品選項"
|
|
4364
|
+
|
|
4240
4365
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:107
|
|
4241
4366
|
msgid "Successfully updated product option group"
|
|
4242
4367
|
msgstr "成功更新商品選項群組"
|
|
4243
4368
|
|
|
4244
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4369
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:117
|
|
4245
4370
|
msgid "Successfully updated product variant"
|
|
4246
4371
|
msgstr "已成功更新商品變體"
|
|
4247
4372
|
|
|
@@ -4249,7 +4374,7 @@ msgstr "已成功更新商品變體"
|
|
|
4249
4374
|
msgid "Successfully updated profile"
|
|
4250
4375
|
msgstr "已成功更新個人資料"
|
|
4251
4376
|
|
|
4252
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4377
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:104
|
|
4253
4378
|
msgid "Successfully updated promotion"
|
|
4254
4379
|
msgstr "已成功更新促銷"
|
|
4255
4380
|
|
|
@@ -4261,6 +4386,10 @@ msgstr "已成功更新角色"
|
|
|
4261
4386
|
msgid "Successfully updated seller"
|
|
4262
4387
|
msgstr "已成功更新賣家"
|
|
4263
4388
|
|
|
4389
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:91
|
|
4390
|
+
msgid "Successfully updated shipping method"
|
|
4391
|
+
msgstr "成功更新配送方式"
|
|
4392
|
+
|
|
4264
4393
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:70
|
|
4265
4394
|
msgid "Successfully updated stock location"
|
|
4266
4395
|
msgstr "已成功更新庫存位置"
|
|
@@ -4277,7 +4406,7 @@ msgstr "已成功更新稅率"
|
|
|
4277
4406
|
msgid "Successfully updated zone"
|
|
4278
4407
|
msgstr "已成功更新區域"
|
|
4279
4408
|
|
|
4280
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4409
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:187
|
|
4281
4410
|
msgid "Summary of modifications"
|
|
4282
4411
|
msgstr "修改摘要"
|
|
4283
4412
|
|
|
@@ -4285,11 +4414,11 @@ msgstr "修改摘要"
|
|
|
4285
4414
|
msgid "Super Admin"
|
|
4286
4415
|
msgstr "超級管理員"
|
|
4287
4416
|
|
|
4288
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4417
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:19
|
|
4289
4418
|
msgid "Surcharge"
|
|
4290
4419
|
msgstr "附加費用"
|
|
4291
4420
|
|
|
4292
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
4421
|
+
#: src/lib/components/layout/nav-user.tsx:139
|
|
4293
4422
|
msgctxt "theme"
|
|
4294
4423
|
msgid "System"
|
|
4295
4424
|
msgstr "系統"
|
|
@@ -4308,7 +4437,7 @@ msgstr "稅基"
|
|
|
4308
4437
|
msgid "Tax Categories"
|
|
4309
4438
|
msgstr "稅務類別"
|
|
4310
4439
|
|
|
4311
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4440
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
|
|
4312
4441
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:136
|
|
4313
4442
|
msgid "Tax category"
|
|
4314
4443
|
msgstr "稅務類別"
|
|
@@ -4344,7 +4473,7 @@ msgstr "測試"
|
|
|
4344
4473
|
msgid "Test data has been updated. Click \"Run Test\" to see updated results."
|
|
4345
4474
|
msgstr "測試資料已更新。按一下「執行測試」以查看更新的結果。"
|
|
4346
4475
|
|
|
4347
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
4476
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:164
|
|
4348
4477
|
msgid "Test Order"
|
|
4349
4478
|
msgstr "測試訂單"
|
|
4350
4479
|
|
|
@@ -4394,7 +4523,11 @@ msgstr "所選權限將套用至這些通路。"
|
|
|
4394
4523
|
msgid "The token is used to specify the channel when making API requests."
|
|
4395
4524
|
msgstr "在進行 API 要求時使用權杖來指定通路。"
|
|
4396
4525
|
|
|
4397
|
-
#: src/
|
|
4526
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:116
|
|
4527
|
+
msgid "The variant could not be added. Ensure the parent product is enabled."
|
|
4528
|
+
msgstr "無法新增變體。請確保父產品已啟用。"
|
|
4529
|
+
|
|
4530
|
+
#: src/lib/components/layout/nav-user.tsx:121
|
|
4398
4531
|
msgid "Theme"
|
|
4399
4532
|
msgstr "佈景主題"
|
|
4400
4533
|
|
|
@@ -4463,10 +4596,11 @@ msgstr "切換標題列"
|
|
|
4463
4596
|
msgid "Token"
|
|
4464
4597
|
msgstr "權杖"
|
|
4465
4598
|
|
|
4466
|
-
#: src/app/routes/_authenticated/_orders/components/order-table
|
|
4467
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
4599
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:154
|
|
4600
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:73
|
|
4601
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:114
|
|
4468
4602
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:228
|
|
4469
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
4603
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:98
|
|
4470
4604
|
msgid "Total"
|
|
4471
4605
|
msgstr "總計"
|
|
4472
4606
|
|
|
@@ -4482,11 +4616,11 @@ msgstr "退款總計:"
|
|
|
4482
4616
|
msgid "Total Revenue"
|
|
4483
4617
|
msgstr "總收入"
|
|
4484
4618
|
|
|
4485
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4619
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:340
|
|
4486
4620
|
msgid "Track"
|
|
4487
4621
|
msgstr "追蹤"
|
|
4488
4622
|
|
|
4489
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4623
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:144
|
|
4490
4624
|
msgid "Track inventory by default"
|
|
4491
4625
|
msgstr "預設追蹤庫存"
|
|
4492
4626
|
|
|
@@ -4526,11 +4660,12 @@ msgstr "轉換到選定狀態"
|
|
|
4526
4660
|
msgid "True"
|
|
4527
4661
|
msgstr "是"
|
|
4528
4662
|
|
|
4529
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
4663
|
+
#: src/lib/components/shared/facet-value-selector.tsx:328
|
|
4530
4664
|
msgid "Type at least 2 characters to search..."
|
|
4531
4665
|
msgstr "至少輸入 2 個字元進行搜尋..."
|
|
4532
4666
|
|
|
4533
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
4667
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:100
|
|
4668
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:57
|
|
4534
4669
|
msgid "Unit price"
|
|
4535
4670
|
msgstr "單價"
|
|
4536
4671
|
|
|
@@ -4547,7 +4682,7 @@ msgstr "未知錯誤"
|
|
|
4547
4682
|
msgid "Unverified"
|
|
4548
4683
|
msgstr "未驗證"
|
|
4549
4684
|
|
|
4550
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
4685
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
4551
4686
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:101
|
|
4552
4687
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
4553
4688
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
|
|
@@ -4556,24 +4691,24 @@ msgstr "未驗證"
|
|
|
4556
4691
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
|
|
4557
4692
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
|
|
4558
4693
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
4559
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4694
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:101
|
|
4560
4695
|
#: src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx:46
|
|
4561
4696
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
|
|
4562
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4697
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:215
|
|
4563
4698
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:276
|
|
4564
4699
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:111
|
|
4565
4700
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
4566
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
4701
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
4567
4702
|
#: src/app/routes/_authenticated/_profile/profile.tsx:82
|
|
4568
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4703
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:136
|
|
4569
4704
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
4570
4705
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
4571
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
4706
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:126
|
|
4572
4707
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
4573
4708
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
|
|
4574
4709
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
4575
4710
|
#: src/app/routes/_authenticated/_zones/zones_.$id.tsx:85
|
|
4576
|
-
#: src/lib/framework/page/detail-page.tsx:
|
|
4711
|
+
#: src/lib/framework/page/detail-page.tsx:202
|
|
4577
4712
|
msgid "Update"
|
|
4578
4713
|
msgstr "更新"
|
|
4579
4714
|
|
|
@@ -4581,7 +4716,7 @@ msgstr "更新"
|
|
|
4581
4716
|
msgid "Update the note content or visibility"
|
|
4582
4717
|
msgstr "更新備註內容或可見性"
|
|
4583
4718
|
|
|
4584
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
4719
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:417
|
|
4585
4720
|
msgid "Updated"
|
|
4586
4721
|
msgstr "已更新"
|
|
4587
4722
|
|
|
@@ -4589,7 +4724,7 @@ msgstr "已更新"
|
|
|
4589
4724
|
msgid "Upload"
|
|
4590
4725
|
msgstr "上傳"
|
|
4591
4726
|
|
|
4592
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4727
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:213
|
|
4593
4728
|
msgid "Usage limit"
|
|
4594
4729
|
msgstr "使用限制"
|
|
4595
4730
|
|
|
@@ -4603,14 +4738,10 @@ msgstr "用作預設帳單地址"
|
|
|
4603
4738
|
msgid "Use as the default shipping address"
|
|
4604
4739
|
msgstr "用作預設配送地址"
|
|
4605
4740
|
|
|
4606
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4741
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:370
|
|
4607
4742
|
msgid "Use global out-of-stock threshold"
|
|
4608
4743
|
msgstr "使用全域缺貨臨界值"
|
|
4609
4744
|
|
|
4610
|
-
#: src/lib/components/login/login-form.tsx:112
|
|
4611
|
-
msgid "Username"
|
|
4612
|
-
msgstr "使用者名稱"
|
|
4613
|
-
|
|
4614
4745
|
#: src/lib/framework/dashboard-widget/base-widget.tsx:19
|
|
4615
4746
|
msgid "useWidgetDimensions must be used within a DashboardBaseWidget"
|
|
4616
4747
|
msgstr "useWidgetDimensions 必須在 DashboardBaseWidget 中使用"
|
|
@@ -4710,16 +4841,16 @@ msgstr "僅管理員可見"
|
|
|
4710
4841
|
msgid "Visible to customer"
|
|
4711
4842
|
msgstr "客戶可見"
|
|
4712
4843
|
|
|
4713
|
-
#: src/lib/components/login/login-form.tsx:
|
|
4714
|
-
msgid "Welcome
|
|
4715
|
-
msgstr "
|
|
4844
|
+
#: src/lib/components/login/login-form.tsx:65
|
|
4845
|
+
msgid "Welcome to Vendure"
|
|
4846
|
+
msgstr "歡迎使用 Vendure"
|
|
4716
4847
|
|
|
4717
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4848
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:226
|
|
4718
4849
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:122
|
|
4719
4850
|
msgid "When enabled, a product is available in the shop"
|
|
4720
4851
|
msgstr "啟用後,商品在商店中可用"
|
|
4721
4852
|
|
|
4722
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4853
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:147
|
|
4723
4854
|
msgid "When enabled, a promotion is available in the shop"
|
|
4724
4855
|
msgstr "啟用後,促銷在商店中可用"
|
|
4725
4856
|
|
|
@@ -4727,7 +4858,7 @@ msgstr "啟用後,促銷在商店中可用"
|
|
|
4727
4858
|
msgid "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
|
|
4728
4859
|
msgstr "啟用後,商品目錄中輸入的價格將包含預設稅務區域的稅金。"
|
|
4729
4860
|
|
|
4730
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4861
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:146
|
|
4731
4862
|
msgid "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
|
|
4732
4863
|
msgstr "追蹤後,商品變體庫存水準將在售出時自動調整。此設定可由各個商品變體覆寫。"
|
|
4733
4864
|
|
|
@@ -4757,7 +4888,7 @@ msgstr "您沒有檢視全域語言設定的權限"
|
|
|
4757
4888
|
msgid "You haven't saved any views yet."
|
|
4758
4889
|
msgstr "您尚未儲存任何檢視。"
|
|
4759
4890
|
|
|
4760
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
4891
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:58
|
|
4761
4892
|
msgid "Your latest orders"
|
|
4762
4893
|
msgstr "您的最新訂單"
|
|
4763
4894
|
|