@vendure/dashboard 3.5.0-minor-202510071456 → 3.5.0-minor-202510201346
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.tsx +2 -0
- 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/_product-variants/product-variants.tsx +2 -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-form-input.stories.tsx +65 -0
- package/src/lib/components/data-input/{password-input.tsx → password-form-input.tsx} +1 -1
- 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 +29 -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 +8 -3
- 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 +14 -1
- 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
|
|