@wilshop/dashboard 3.5.6 → 3.5.7
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.d.ts +1 -1
- package/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/compiler.js +50 -24
- package/dist/vite/utils/path-transformer.d.ts +20 -0
- package/dist/vite/utils/path-transformer.js +116 -0
- package/dist/vite/utils/plugin-discovery.js +3 -2
- package/dist/vite/utils/ui-config.js +15 -1
- package/dist/vite/vite-plugin-lingui-babel.d.ts +15 -2
- package/dist/vite/vite-plugin-lingui-babel.js +90 -8
- package/dist/vite/vite-plugin-translations.js +2 -2
- package/dist/vite/vite-plugin-ui-config.d.ts +31 -0
- package/package.json +10 -6
- package/src/app/common/delete-bulk-action.tsx +1 -1
- package/src/app/common/duplicate-bulk-action.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -3
- package/src/app/routes/_authenticated/_collections/collections.tsx +169 -48
- package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +36 -5
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx +31 -29
- package/src/app/routes/_authenticated/_customers/customers.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_customers/customers.tsx +3 -0
- package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/draft-order-status.tsx +48 -0
- package/src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx +8 -5
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +79 -54
- package/src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx +43 -3
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx +19 -3
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +1 -0
- package/src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx +372 -0
- package/src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts +345 -0
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +41 -0
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +22 -6
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +51 -0
- package/src/app/routes/_authenticated/_orders/utils/refund-utils.ts +100 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +1 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +6 -2
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +9 -3
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +49 -30
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_profile/profile.graphql.ts +7 -0
- package/src/app/routes/_authenticated/_profile/profile.tsx +25 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +14 -2
- package/src/i18n/common-strings.ts +7 -0
- package/src/i18n/locales/ar.po +669 -399
- package/src/i18n/locales/bg.po +1889 -46
- package/src/i18n/locales/cs.po +676 -406
- package/src/i18n/locales/de.po +676 -406
- package/src/i18n/locales/en.po +669 -399
- package/src/i18n/locales/es.po +676 -406
- package/src/i18n/locales/fa.po +676 -406
- package/src/i18n/locales/fr.po +676 -406
- package/src/i18n/locales/he.po +676 -406
- package/src/i18n/locales/hr.po +676 -406
- package/src/i18n/locales/it.po +676 -406
- package/src/i18n/locales/ja.po +676 -406
- package/src/i18n/locales/nb.po +676 -406
- package/src/i18n/locales/ne.po +676 -406
- package/src/i18n/locales/pl.po +676 -406
- package/src/i18n/locales/pt_BR.po +676 -406
- package/src/i18n/locales/pt_PT.po +676 -406
- package/src/i18n/locales/ru.po +676 -406
- package/src/i18n/locales/sv.po +676 -406
- package/src/i18n/locales/tr.po +676 -406
- package/src/i18n/locales/uk.po +676 -406
- package/src/i18n/locales/zh_Hans.po +676 -406
- package/src/i18n/locales/zh_Hant.po +676 -406
- package/src/lib/components/data-input/facet-value-input.tsx +2 -2
- package/src/lib/components/data-input/index.ts +1 -0
- package/src/lib/components/data-input/select-with-options.tsx +23 -7
- package/src/lib/components/data-input/struct-form-input.tsx +53 -21
- package/src/lib/components/data-input/text-input.tsx +1 -1
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +2 -1
- package/src/lib/components/data-table/data-table-context.tsx +2 -10
- package/src/lib/components/data-table/data-table-utils.ts +34 -12
- package/src/lib/components/data-table/data-table.tsx +68 -30
- package/src/lib/components/data-table/global-views-bar.tsx +1 -1
- package/src/lib/components/data-table/my-views-button.tsx +1 -1
- package/src/lib/components/data-table/save-view-button.tsx +1 -1
- package/src/lib/components/data-table/use-generated-columns.tsx +9 -2
- package/src/lib/components/data-table/views-sheet.tsx +1 -1
- package/src/lib/components/layout/channel-switcher.tsx +16 -17
- package/src/lib/components/layout/manage-languages-dialog.tsx +1 -1
- package/src/lib/components/shared/assign-to-channel-bulk-action.tsx +1 -1
- package/src/lib/components/shared/configurable-operation-input.tsx +23 -0
- package/src/lib/components/shared/configurable-operation-multi-selector.tsx +45 -0
- package/src/lib/components/shared/configurable-operation-selector.tsx +5 -0
- package/src/lib/components/shared/paginated-list-context.ts +10 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +6 -32
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +1 -1
- package/src/lib/components/ui/alert.tsx +2 -0
- package/src/lib/constants.ts +7 -319
- package/src/lib/framework/dashboard-widget/base-widget.tsx +3 -12
- package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +2 -20
- package/src/lib/framework/extension-api/input-component-extensions.tsx +4 -0
- package/src/lib/framework/form-engine/custom-form-component.tsx +13 -3
- package/src/lib/framework/form-engine/form-engine-types.ts +3 -5
- package/src/lib/framework/form-engine/form-schema-tools.ts +4 -1
- package/src/lib/framework/form-engine/use-generated-form.tsx +6 -2
- package/src/lib/framework/form-engine/utils.spec.ts +129 -2
- package/src/lib/framework/form-engine/utils.ts +36 -9
- package/src/lib/framework/form-engine/value-transformers.ts +6 -0
- package/src/lib/framework/page/detail-page-route-loader.tsx +6 -4
- package/src/lib/framework/page/detail-page.tsx +22 -37
- package/src/lib/framework/page/list-page.stories.tsx +41 -2
- package/src/lib/framework/page/list-page.tsx +8 -0
- package/src/lib/graphql/graphql-env.d.ts +33 -16
- package/src/lib/graphql/schema-enums.ts +13 -0
- package/src/lib/hooks/use-alerts-context.ts +10 -0
- package/src/lib/hooks/use-alerts.ts +1 -1
- package/src/lib/hooks/use-data-table-context.ts +11 -0
- package/src/lib/hooks/use-dynamic-translations.ts +7 -0
- package/src/lib/hooks/use-job-queue-polling.ts +160 -0
- package/src/lib/hooks/use-paginated-list.ts +28 -0
- package/src/lib/hooks/use-widget-dimensions.ts +12 -0
- package/src/lib/hooks/use-widget-filters.ts +21 -0
- package/src/lib/index.ts +12 -0
- package/src/lib/providers/alerts-provider.tsx +3 -11
- package/src/lib/virtual.d.ts +5 -0
- package/src/lib/utils/global-languages.ts +0 -268
|
@@ -224,7 +224,7 @@ msgstr "正在執行待處理的搜尋索引更新"
|
|
|
224
224
|
#. js-lingui-explicit-id
|
|
225
225
|
#: src/lib/components/data-input/string-list-input.tsx:237
|
|
226
226
|
msgid "Type and press Enter or comma to add..."
|
|
227
|
-
msgstr ""
|
|
227
|
+
msgstr "輸入後按 Enter 或逗號新增..."
|
|
228
228
|
|
|
229
229
|
#. js-lingui-explicit-id
|
|
230
230
|
#: src/i18n/common-strings.ts:7
|
|
@@ -360,336 +360,361 @@ msgstr "安排額外付款"
|
|
|
360
360
|
|
|
361
361
|
#. js-lingui-explicit-id
|
|
362
362
|
#: src/i18n/common-strings.ts:43
|
|
363
|
+
msgid "refundReason.CustomerRequest"
|
|
364
|
+
msgstr "客戶要求"
|
|
365
|
+
|
|
366
|
+
#. js-lingui-explicit-id
|
|
367
|
+
#: src/i18n/common-strings.ts:44
|
|
368
|
+
msgid "refundReason.NotAvailable"
|
|
369
|
+
msgstr "無庫存"
|
|
370
|
+
|
|
371
|
+
#. js-lingui-explicit-id
|
|
372
|
+
#: src/i18n/common-strings.ts:45
|
|
373
|
+
msgid "refundReason.DamagedInShipping"
|
|
374
|
+
msgstr "運輸中損壞"
|
|
375
|
+
|
|
376
|
+
#. js-lingui-explicit-id
|
|
377
|
+
#: src/i18n/common-strings.ts:46
|
|
378
|
+
msgid "refundReason.WrongItem"
|
|
379
|
+
msgstr "發錯商品"
|
|
380
|
+
|
|
381
|
+
#. js-lingui-explicit-id
|
|
382
|
+
#: src/i18n/common-strings.ts:47
|
|
383
|
+
msgid "refundReason.Other"
|
|
384
|
+
msgstr "其他"
|
|
385
|
+
|
|
386
|
+
#. js-lingui-explicit-id
|
|
387
|
+
#: src/i18n/common-strings.ts:50
|
|
363
388
|
msgid "fieldName.attempts"
|
|
364
389
|
msgstr "嘗試次數"
|
|
365
390
|
|
|
366
391
|
#. js-lingui-explicit-id
|
|
367
|
-
#: src/i18n/common-strings.ts:
|
|
392
|
+
#: src/i18n/common-strings.ts:51
|
|
368
393
|
msgid "fieldName.availableCurrencyCodes"
|
|
369
394
|
msgstr "可用貨幣代碼"
|
|
370
395
|
|
|
371
396
|
#. js-lingui-explicit-id
|
|
372
|
-
#: src/i18n/common-strings.ts:
|
|
397
|
+
#: src/i18n/common-strings.ts:52
|
|
373
398
|
msgid "fieldName.availableLanguageCodes"
|
|
374
399
|
msgstr "可用語言代碼"
|
|
375
400
|
|
|
376
401
|
#. js-lingui-explicit-id
|
|
377
|
-
#: src/i18n/common-strings.ts:
|
|
402
|
+
#: src/i18n/common-strings.ts:53
|
|
378
403
|
msgid "fieldName.breadcrumbs"
|
|
379
404
|
msgstr "麵包屑導覽"
|
|
380
405
|
|
|
381
406
|
#. js-lingui-explicit-id
|
|
382
|
-
#: src/i18n/common-strings.ts:
|
|
407
|
+
#: src/i18n/common-strings.ts:54
|
|
383
408
|
msgid "fieldName.category"
|
|
384
409
|
msgstr "類別"
|
|
385
410
|
|
|
386
411
|
#. js-lingui-explicit-id
|
|
387
|
-
#: src/i18n/common-strings.ts:
|
|
412
|
+
#: src/i18n/common-strings.ts:55
|
|
388
413
|
msgid "fieldName.channels"
|
|
389
414
|
msgstr "通路"
|
|
390
415
|
|
|
391
416
|
#. js-lingui-explicit-id
|
|
392
|
-
#: src/i18n/common-strings.ts:
|
|
417
|
+
#: src/i18n/common-strings.ts:56
|
|
393
418
|
msgid "fieldName.children"
|
|
394
419
|
msgstr "子項目"
|
|
395
420
|
|
|
396
421
|
#. js-lingui-explicit-id
|
|
397
|
-
#: src/i18n/common-strings.ts:
|
|
422
|
+
#: src/i18n/common-strings.ts:57
|
|
398
423
|
msgid "fieldName.code"
|
|
399
424
|
msgstr "代碼"
|
|
400
425
|
|
|
401
426
|
#. js-lingui-explicit-id
|
|
402
|
-
#: src/i18n/common-strings.ts:
|
|
427
|
+
#: src/i18n/common-strings.ts:58
|
|
403
428
|
msgid "fieldName.couponCode"
|
|
404
429
|
msgstr "優惠券代碼"
|
|
405
430
|
|
|
406
431
|
#. js-lingui-explicit-id
|
|
407
|
-
#: src/i18n/common-strings.ts:
|
|
432
|
+
#: src/i18n/common-strings.ts:59
|
|
408
433
|
msgid "fieldName.createdAt"
|
|
409
434
|
msgstr "建立時間"
|
|
410
435
|
|
|
411
436
|
#. js-lingui-explicit-id
|
|
412
|
-
#: src/i18n/common-strings.ts:
|
|
437
|
+
#: src/i18n/common-strings.ts:60
|
|
413
438
|
msgid "fieldName.currencyCode"
|
|
414
439
|
msgstr "貨幣代碼"
|
|
415
440
|
|
|
416
441
|
#. js-lingui-explicit-id
|
|
417
|
-
#: src/i18n/common-strings.ts:
|
|
442
|
+
#: src/i18n/common-strings.ts:61
|
|
418
443
|
msgid "fieldName.customer"
|
|
419
444
|
msgstr "客戶"
|
|
420
445
|
|
|
421
446
|
#. js-lingui-explicit-id
|
|
422
|
-
#: src/i18n/common-strings.ts:
|
|
447
|
+
#: src/i18n/common-strings.ts:62
|
|
423
448
|
msgid "fieldName.customerGroup"
|
|
424
449
|
msgstr "客戶群組"
|
|
425
450
|
|
|
426
451
|
#. js-lingui-explicit-id
|
|
427
|
-
#: src/i18n/common-strings.ts:
|
|
452
|
+
#: src/i18n/common-strings.ts:63
|
|
428
453
|
msgid "fieldName.customers"
|
|
429
454
|
msgstr "客戶"
|
|
430
455
|
|
|
431
456
|
#. js-lingui-explicit-id
|
|
432
|
-
#: src/i18n/common-strings.ts:
|
|
457
|
+
#: src/i18n/common-strings.ts:64
|
|
433
458
|
msgid "fieldName.customFields"
|
|
434
459
|
msgstr "自訂欄位"
|
|
435
460
|
|
|
436
461
|
#. js-lingui-explicit-id
|
|
437
|
-
#: src/i18n/common-strings.ts:
|
|
462
|
+
#: src/i18n/common-strings.ts:65
|
|
438
463
|
msgid "fieldName.data"
|
|
439
464
|
msgstr "資料"
|
|
440
465
|
|
|
441
466
|
#. js-lingui-explicit-id
|
|
442
|
-
#: src/i18n/common-strings.ts:
|
|
467
|
+
#: src/i18n/common-strings.ts:66
|
|
443
468
|
msgid "fieldName.defaultCurrencyCode"
|
|
444
469
|
msgstr "預設貨幣代碼"
|
|
445
470
|
|
|
446
471
|
#. js-lingui-explicit-id
|
|
447
|
-
#: src/i18n/common-strings.ts:
|
|
472
|
+
#: src/i18n/common-strings.ts:67
|
|
448
473
|
msgid "fieldName.defaultLanguageCode"
|
|
449
474
|
msgstr "預設語言代碼"
|
|
450
475
|
|
|
451
476
|
#. js-lingui-explicit-id
|
|
452
|
-
#: src/i18n/common-strings.ts:
|
|
477
|
+
#: src/i18n/common-strings.ts:68
|
|
453
478
|
msgid "fieldName.defaultShippingZone"
|
|
454
479
|
msgstr "預設配送區域"
|
|
455
480
|
|
|
456
481
|
#. js-lingui-explicit-id
|
|
457
|
-
#: src/i18n/common-strings.ts:
|
|
482
|
+
#: src/i18n/common-strings.ts:69
|
|
458
483
|
msgid "fieldName.defaultTaxZone"
|
|
459
484
|
msgstr "預設稅務區域"
|
|
460
485
|
|
|
461
486
|
#. js-lingui-explicit-id
|
|
462
|
-
#: src/i18n/common-strings.ts:
|
|
487
|
+
#: src/i18n/common-strings.ts:70
|
|
463
488
|
msgid "fieldName.description"
|
|
464
489
|
msgstr "描述"
|
|
465
490
|
|
|
466
491
|
#. js-lingui-explicit-id
|
|
467
|
-
#: src/i18n/common-strings.ts:
|
|
492
|
+
#: src/i18n/common-strings.ts:71
|
|
468
493
|
msgid "fieldName.duration"
|
|
469
494
|
msgstr "持續時間"
|
|
470
495
|
|
|
471
496
|
#. js-lingui-explicit-id
|
|
472
|
-
#: src/i18n/common-strings.ts:
|
|
497
|
+
#: src/i18n/common-strings.ts:72
|
|
473
498
|
msgid "fieldName.emailAddress"
|
|
474
499
|
msgstr "電子郵件地址"
|
|
475
500
|
|
|
476
501
|
#. js-lingui-explicit-id
|
|
477
|
-
#: src/i18n/common-strings.ts:
|
|
502
|
+
#: src/i18n/common-strings.ts:73
|
|
478
503
|
msgid "fieldName.enabled"
|
|
479
504
|
msgstr "已啟用"
|
|
480
505
|
|
|
481
506
|
#. js-lingui-explicit-id
|
|
482
|
-
#: src/i18n/common-strings.ts:
|
|
507
|
+
#: src/i18n/common-strings.ts:74
|
|
483
508
|
msgid "fieldName.endsAt"
|
|
484
509
|
msgstr "結束時間"
|
|
485
510
|
|
|
486
511
|
#. js-lingui-explicit-id
|
|
487
|
-
#: src/i18n/common-strings.ts:
|
|
512
|
+
#: src/i18n/common-strings.ts:75
|
|
488
513
|
msgid "fieldName.error"
|
|
489
514
|
msgstr "錯誤"
|
|
490
515
|
|
|
491
516
|
#. js-lingui-explicit-id
|
|
492
|
-
#: src/i18n/common-strings.ts:
|
|
517
|
+
#: src/i18n/common-strings.ts:76
|
|
493
518
|
msgid "fieldName.featuredAsset"
|
|
494
519
|
msgstr "精選資源"
|
|
495
520
|
|
|
496
521
|
#. js-lingui-explicit-id
|
|
497
|
-
#: src/i18n/common-strings.ts:
|
|
522
|
+
#: src/i18n/common-strings.ts:77
|
|
498
523
|
msgid "fieldName.firstName"
|
|
499
524
|
msgstr "名字"
|
|
500
525
|
|
|
501
526
|
#. js-lingui-explicit-id
|
|
502
|
-
#: src/i18n/common-strings.ts:
|
|
527
|
+
#: src/i18n/common-strings.ts:78
|
|
503
528
|
msgid "fieldName.fulfillmentHandlerCode"
|
|
504
529
|
msgstr "履行處理器代碼"
|
|
505
530
|
|
|
506
531
|
#. js-lingui-explicit-id
|
|
507
|
-
#: src/i18n/common-strings.ts:
|
|
532
|
+
#: src/i18n/common-strings.ts:79
|
|
508
533
|
msgid "fieldName.id"
|
|
509
534
|
msgstr "ID"
|
|
510
535
|
|
|
511
536
|
#. js-lingui-explicit-id
|
|
512
|
-
#: src/i18n/common-strings.ts:
|
|
537
|
+
#: src/i18n/common-strings.ts:80
|
|
513
538
|
msgid "fieldName.isDefault"
|
|
514
539
|
msgstr "預設"
|
|
515
540
|
|
|
516
541
|
#. js-lingui-explicit-id
|
|
517
|
-
#: src/i18n/common-strings.ts:
|
|
542
|
+
#: src/i18n/common-strings.ts:81
|
|
518
543
|
msgid "fieldName.isPrivate"
|
|
519
544
|
msgstr "私人"
|
|
520
545
|
|
|
521
546
|
#. js-lingui-explicit-id
|
|
522
|
-
#: src/i18n/common-strings.ts:
|
|
547
|
+
#: src/i18n/common-strings.ts:82
|
|
523
548
|
msgid "fieldName.isSettled"
|
|
524
549
|
msgstr "已完成"
|
|
525
550
|
|
|
526
551
|
#. js-lingui-explicit-id
|
|
527
|
-
#: src/i18n/common-strings.ts:
|
|
552
|
+
#: src/i18n/common-strings.ts:83
|
|
528
553
|
msgid "fieldName.lastName"
|
|
529
554
|
msgstr "姓氏"
|
|
530
555
|
|
|
531
556
|
#. js-lingui-explicit-id
|
|
532
|
-
#: src/i18n/common-strings.ts:
|
|
557
|
+
#: src/i18n/common-strings.ts:84
|
|
533
558
|
msgid "fieldName.name"
|
|
534
559
|
msgstr "名稱"
|
|
535
560
|
|
|
536
561
|
#. js-lingui-explicit-id
|
|
537
|
-
#: src/i18n/common-strings.ts:
|
|
562
|
+
#: src/i18n/common-strings.ts:85
|
|
538
563
|
msgid "fieldName.orderPlacedAt"
|
|
539
564
|
msgstr "訂單下單時間"
|
|
540
565
|
|
|
541
566
|
#. js-lingui-explicit-id
|
|
542
|
-
#: src/i18n/common-strings.ts:
|
|
567
|
+
#: src/i18n/common-strings.ts:86
|
|
543
568
|
msgid "fieldName.parentId"
|
|
544
569
|
msgstr "父項 ID"
|
|
545
570
|
|
|
546
571
|
#. js-lingui-explicit-id
|
|
547
|
-
#: src/i18n/common-strings.ts:
|
|
572
|
+
#: src/i18n/common-strings.ts:87
|
|
548
573
|
msgid "fieldName.perCustomerUsageLimit"
|
|
549
574
|
msgstr "每位客戶使用限制"
|
|
550
575
|
|
|
551
576
|
#. js-lingui-explicit-id
|
|
552
|
-
#: src/i18n/common-strings.ts:
|
|
577
|
+
#: src/i18n/common-strings.ts:88
|
|
553
578
|
msgid "fieldName.permissions"
|
|
554
579
|
msgstr "權限"
|
|
555
580
|
|
|
556
581
|
#. js-lingui-explicit-id
|
|
557
|
-
#: src/i18n/common-strings.ts:
|
|
582
|
+
#: src/i18n/common-strings.ts:89
|
|
558
583
|
msgid "fieldName.position"
|
|
559
584
|
msgstr "位置"
|
|
560
585
|
|
|
561
586
|
#. js-lingui-explicit-id
|
|
562
|
-
#: src/i18n/common-strings.ts:
|
|
587
|
+
#: src/i18n/common-strings.ts:90
|
|
563
588
|
msgid "fieldName.price"
|
|
564
589
|
msgstr "價格"
|
|
565
590
|
|
|
566
591
|
#. js-lingui-explicit-id
|
|
567
|
-
#: src/i18n/common-strings.ts:
|
|
592
|
+
#: src/i18n/common-strings.ts:91
|
|
568
593
|
msgid "fieldName.priceWithTax"
|
|
569
594
|
msgstr "含稅價格"
|
|
570
595
|
|
|
571
596
|
#. js-lingui-explicit-id
|
|
572
|
-
#: src/i18n/common-strings.ts:
|
|
597
|
+
#: src/i18n/common-strings.ts:92
|
|
573
598
|
msgid "fieldName.pricesIncludeTax"
|
|
574
599
|
msgstr "價格含稅"
|
|
575
600
|
|
|
576
601
|
#. js-lingui-explicit-id
|
|
577
|
-
#: src/i18n/common-strings.ts:
|
|
602
|
+
#: src/i18n/common-strings.ts:93
|
|
578
603
|
msgid "fieldName.productVariants"
|
|
579
604
|
msgstr "商品變體"
|
|
580
605
|
|
|
581
606
|
#. js-lingui-explicit-id
|
|
582
|
-
#: src/i18n/common-strings.ts:
|
|
607
|
+
#: src/i18n/common-strings.ts:94
|
|
583
608
|
msgid "fieldName.progress"
|
|
584
609
|
msgstr "進度"
|
|
585
610
|
|
|
586
611
|
#. js-lingui-explicit-id
|
|
587
|
-
#: src/i18n/common-strings.ts:
|
|
612
|
+
#: src/i18n/common-strings.ts:95
|
|
588
613
|
msgid "fieldName.queueName"
|
|
589
614
|
msgstr "佇列名稱"
|
|
590
615
|
|
|
591
616
|
#. js-lingui-explicit-id
|
|
592
|
-
#: src/i18n/common-strings.ts:
|
|
617
|
+
#: src/i18n/common-strings.ts:96
|
|
593
618
|
msgid "fieldName.result"
|
|
594
619
|
msgstr "結果"
|
|
595
620
|
|
|
596
621
|
#. js-lingui-explicit-id
|
|
597
|
-
#: src/i18n/common-strings.ts:
|
|
622
|
+
#: src/i18n/common-strings.ts:97
|
|
598
623
|
msgid "fieldName.retries"
|
|
599
624
|
msgstr "重試次數"
|
|
600
625
|
|
|
601
626
|
#. js-lingui-explicit-id
|
|
602
|
-
#: src/i18n/common-strings.ts:
|
|
627
|
+
#: src/i18n/common-strings.ts:98
|
|
603
628
|
msgid "fieldName.seller"
|
|
604
629
|
msgstr "賣家"
|
|
605
630
|
|
|
606
631
|
#. js-lingui-explicit-id
|
|
607
|
-
#: src/i18n/common-strings.ts:
|
|
632
|
+
#: src/i18n/common-strings.ts:99
|
|
608
633
|
msgid "fieldName.settledAt"
|
|
609
634
|
msgstr "結算時間"
|
|
610
635
|
|
|
611
636
|
#. js-lingui-explicit-id
|
|
612
|
-
#: src/i18n/common-strings.ts:
|
|
637
|
+
#: src/i18n/common-strings.ts:100
|
|
613
638
|
msgid "fieldName.shippingLines"
|
|
614
639
|
msgstr "配送行"
|
|
615
640
|
|
|
616
641
|
#. js-lingui-explicit-id
|
|
617
|
-
#: src/i18n/common-strings.ts:
|
|
642
|
+
#: src/i18n/common-strings.ts:101
|
|
618
643
|
msgid "fieldName.sku"
|
|
619
644
|
msgstr "SKU"
|
|
620
645
|
|
|
621
646
|
#. js-lingui-explicit-id
|
|
622
|
-
#: src/i18n/common-strings.ts:
|
|
647
|
+
#: src/i18n/common-strings.ts:102
|
|
623
648
|
msgid "fieldName.slug"
|
|
624
649
|
msgstr "Slug"
|
|
625
650
|
|
|
626
651
|
#. js-lingui-explicit-id
|
|
627
|
-
#: src/i18n/common-strings.ts:
|
|
652
|
+
#: src/i18n/common-strings.ts:103
|
|
628
653
|
msgid "fieldName.startedAt"
|
|
629
654
|
msgstr "開始時間"
|
|
630
655
|
|
|
631
656
|
#. js-lingui-explicit-id
|
|
632
|
-
#: src/i18n/common-strings.ts:
|
|
657
|
+
#: src/i18n/common-strings.ts:104
|
|
633
658
|
msgid "fieldName.startsAt"
|
|
634
659
|
msgstr "開始時間"
|
|
635
660
|
|
|
636
661
|
#. js-lingui-explicit-id
|
|
637
|
-
#: src/i18n/common-strings.ts:
|
|
662
|
+
#: src/i18n/common-strings.ts:105
|
|
638
663
|
msgid "fieldName.state"
|
|
639
664
|
msgstr "狀態"
|
|
640
665
|
|
|
641
666
|
#. js-lingui-explicit-id
|
|
642
|
-
#: src/i18n/common-strings.ts:
|
|
667
|
+
#: src/i18n/common-strings.ts:106
|
|
643
668
|
msgid "fieldName.stockLevels"
|
|
644
669
|
msgstr "庫存水準"
|
|
645
670
|
|
|
646
671
|
#. js-lingui-explicit-id
|
|
647
|
-
#: src/i18n/common-strings.ts:
|
|
672
|
+
#: src/i18n/common-strings.ts:107
|
|
648
673
|
msgid "fieldName.token"
|
|
649
674
|
msgstr "權杖"
|
|
650
675
|
|
|
651
676
|
#. js-lingui-explicit-id
|
|
652
|
-
#: src/i18n/common-strings.ts:
|
|
677
|
+
#: src/i18n/common-strings.ts:108
|
|
653
678
|
msgid "fieldName.total"
|
|
654
679
|
msgstr "總計"
|
|
655
680
|
|
|
656
681
|
#. js-lingui-explicit-id
|
|
657
|
-
#: src/i18n/common-strings.ts:
|
|
682
|
+
#: src/i18n/common-strings.ts:109
|
|
658
683
|
msgid "fieldName.totalWithTax"
|
|
659
684
|
msgstr "含稅總計"
|
|
660
685
|
|
|
661
686
|
#. js-lingui-explicit-id
|
|
662
|
-
#: src/i18n/common-strings.ts:
|
|
687
|
+
#: src/i18n/common-strings.ts:110
|
|
663
688
|
msgid "fieldName.type"
|
|
664
689
|
msgstr "類型"
|
|
665
690
|
|
|
666
691
|
#. js-lingui-explicit-id
|
|
667
|
-
#: src/i18n/common-strings.ts:
|
|
692
|
+
#: src/i18n/common-strings.ts:111
|
|
668
693
|
msgid "fieldName.updatedAt"
|
|
669
694
|
msgstr "更新時間"
|
|
670
695
|
|
|
671
696
|
#. js-lingui-explicit-id
|
|
672
|
-
#: src/i18n/common-strings.ts:
|
|
697
|
+
#: src/i18n/common-strings.ts:112
|
|
673
698
|
msgid "fieldName.usageLimit"
|
|
674
699
|
msgstr "使用限制"
|
|
675
700
|
|
|
676
701
|
#. js-lingui-explicit-id
|
|
677
|
-
#: src/i18n/common-strings.ts:
|
|
702
|
+
#: src/i18n/common-strings.ts:113
|
|
678
703
|
msgid "fieldName.user"
|
|
679
704
|
msgstr "使用者"
|
|
680
705
|
|
|
681
706
|
#. js-lingui-explicit-id
|
|
682
|
-
#: src/i18n/common-strings.ts:
|
|
707
|
+
#: src/i18n/common-strings.ts:114
|
|
683
708
|
msgid "fieldName.value"
|
|
684
709
|
msgstr "值"
|
|
685
710
|
|
|
686
711
|
#. js-lingui-explicit-id
|
|
687
|
-
#: src/i18n/common-strings.ts:
|
|
712
|
+
#: src/i18n/common-strings.ts:115
|
|
688
713
|
msgid "fieldName.valueList"
|
|
689
714
|
msgstr "值清單"
|
|
690
715
|
|
|
691
716
|
#. js-lingui-explicit-id
|
|
692
|
-
#: src/i18n/common-strings.ts:
|
|
717
|
+
#: src/i18n/common-strings.ts:116
|
|
693
718
|
msgid "fieldName.zone"
|
|
694
719
|
msgstr "區域"
|
|
695
720
|
|
|
@@ -733,11 +758,20 @@ msgstr "刪除備註失敗"
|
|
|
733
758
|
msgid "!="
|
|
734
759
|
msgstr "!="
|
|
735
760
|
|
|
761
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:144
|
|
762
|
+
msgid "({maxRefundable} refundable)"
|
|
763
|
+
msgstr "({maxRefundable} 可退款)"
|
|
764
|
+
|
|
765
|
+
#. placeholder {0}: formatCurrency(refund.totalRefundableAmount, order.currencyCode)
|
|
766
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:277
|
|
767
|
+
msgid "(max: {0})"
|
|
768
|
+
msgstr "(最大: {0})"
|
|
769
|
+
|
|
736
770
|
#. placeholder {0}: action.label
|
|
737
771
|
#. placeholder {0}: entityType === 'products' ? 'Product' : 'Variant'
|
|
738
772
|
#. placeholder {0}: entry.type.replace(/_/g, ' ').toLowerCase()
|
|
739
773
|
#: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:67
|
|
740
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
774
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:115
|
|
741
775
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:37
|
|
742
776
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:44
|
|
743
777
|
#: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:90
|
|
@@ -766,13 +800,13 @@ msgid "{0} of {1} available to fulfill"
|
|
|
766
800
|
msgstr "{1} 個中有 {0} 個可履行"
|
|
767
801
|
|
|
768
802
|
#. placeholder {0}: selection.length
|
|
769
|
-
#: src/lib/components/data-table/data-table-bulk-actions.tsx:
|
|
803
|
+
#: src/lib/components/data-table/data-table-bulk-actions.tsx:73
|
|
770
804
|
#: src/lib/components/shared/asset/asset-bulk-actions.tsx:82
|
|
771
805
|
msgid "{0} selected"
|
|
772
806
|
msgstr "已選取 {0} 個"
|
|
773
807
|
|
|
774
|
-
#. placeholder {0}: row.original.
|
|
775
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
808
|
+
#. placeholder {0}: row.original.productVariantCount
|
|
809
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:332
|
|
776
810
|
msgid "{0} variants"
|
|
777
811
|
msgstr "{0} 個變體"
|
|
778
812
|
|
|
@@ -791,16 +825,24 @@ msgstr "{label}"
|
|
|
791
825
|
msgid "{operator}"
|
|
792
826
|
msgstr "{operator}"
|
|
793
827
|
|
|
794
|
-
#: src/
|
|
828
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:286
|
|
829
|
+
msgid "{successfulRefundCount} payment(s) refunded before failure. Check order history for details."
|
|
830
|
+
msgstr "失敗前已退還 {successfulRefundCount} 筆付款。請查看訂單歷史了解詳情。"
|
|
831
|
+
|
|
832
|
+
#: src/lib/framework/dashboard-widget/base-widget.tsx:80
|
|
795
833
|
msgid "{title}"
|
|
796
834
|
msgstr "{title}"
|
|
797
835
|
|
|
836
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:117
|
|
837
|
+
msgid "{totalQuantity} item(s) refunded"
|
|
838
|
+
msgstr "{totalQuantity}件商品已退款"
|
|
839
|
+
|
|
798
840
|
#. placeholder {0}: list.totalItems - 3
|
|
799
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
841
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:66
|
|
800
842
|
msgid "+ {0} more"
|
|
801
843
|
msgstr "+ {0} 個更多"
|
|
802
844
|
|
|
803
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
845
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:350
|
|
804
846
|
msgid "+ {leftOver} more"
|
|
805
847
|
msgstr "+ {leftOver} 個更多"
|
|
806
848
|
|
|
@@ -812,17 +854,21 @@ msgstr "+ {leftOver} 個更多"
|
|
|
812
854
|
msgid "="
|
|
813
855
|
msgstr "="
|
|
814
856
|
|
|
857
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:214
|
|
858
|
+
msgid "A reason for the refund is required"
|
|
859
|
+
msgstr "需要提供退款原因"
|
|
860
|
+
|
|
815
861
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:173
|
|
816
862
|
msgid "A refund of {formattedDiff} is required. Select payment amounts and enter a note to proceed."
|
|
817
863
|
msgstr "需要退款 {formattedDiff}。選取付款金額並輸入備註以繼續。"
|
|
818
864
|
|
|
819
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
865
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:234
|
|
820
866
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:191
|
|
821
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
867
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:245
|
|
822
868
|
msgid "Actions"
|
|
823
869
|
msgstr "動作"
|
|
824
870
|
|
|
825
|
-
#: src/lib/components/layout/channel-switcher.tsx:
|
|
871
|
+
#: src/lib/components/layout/channel-switcher.tsx:179
|
|
826
872
|
msgctxt "active language"
|
|
827
873
|
msgid "Active"
|
|
828
874
|
msgstr "活躍"
|
|
@@ -852,9 +898,13 @@ msgstr "新增另一個選項群組"
|
|
|
852
898
|
msgid "Add asset"
|
|
853
899
|
msgstr "新增資源"
|
|
854
900
|
|
|
855
|
-
#: src/
|
|
901
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:25
|
|
902
|
+
msgid "Add at least one item to the order"
|
|
903
|
+
msgstr "請至少新增一件商品到訂單"
|
|
904
|
+
|
|
905
|
+
#: src/lib/components/layout/channel-switcher.tsx:212
|
|
856
906
|
msgid "Add channel"
|
|
857
|
-
msgstr ""
|
|
907
|
+
msgstr "新增頻道"
|
|
858
908
|
|
|
859
909
|
#: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:151
|
|
860
910
|
msgid "Add column after"
|
|
@@ -981,6 +1031,11 @@ msgstr "為另一個位置新增庫存水平"
|
|
|
981
1031
|
msgid "Add Stock to Location"
|
|
982
1032
|
msgstr "向位置新增庫存"
|
|
983
1033
|
|
|
1034
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:134
|
|
1035
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:188
|
|
1036
|
+
msgid "Add surcharge"
|
|
1037
|
+
msgstr "新增附加費"
|
|
1038
|
+
|
|
984
1039
|
#: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:141
|
|
985
1040
|
msgid "Add tags..."
|
|
986
1041
|
msgstr "新增標籤..."
|
|
@@ -990,7 +1045,11 @@ msgstr "新增標籤..."
|
|
|
990
1045
|
msgid "Add variant"
|
|
991
1046
|
msgstr "新增變體"
|
|
992
1047
|
|
|
993
|
-
#: src/app/routes/_authenticated/
|
|
1048
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:133
|
|
1049
|
+
msgid "Added"
|
|
1050
|
+
msgstr "已新增"
|
|
1051
|
+
|
|
1052
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:206
|
|
994
1053
|
msgid "Added coupon codes"
|
|
995
1054
|
msgstr "已新增優惠券代碼"
|
|
996
1055
|
|
|
@@ -999,10 +1058,15 @@ msgid "Added to group"
|
|
|
999
1058
|
msgstr "已新增至群組"
|
|
1000
1059
|
|
|
1001
1060
|
#. placeholder {0}: addedLines.length
|
|
1002
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1061
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:180
|
|
1003
1062
|
msgid "Adding {0} item(s)"
|
|
1004
1063
|
msgstr "正在新增 {0} 個項目"
|
|
1005
1064
|
|
|
1065
|
+
#. placeholder {0}: addedSurcharges.length
|
|
1066
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:230
|
|
1067
|
+
msgid "Adding {0} surcharge(s)"
|
|
1068
|
+
msgstr "正在新增 {0} 項附加費"
|
|
1069
|
+
|
|
1006
1070
|
#: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:175
|
|
1007
1071
|
msgid "Adding..."
|
|
1008
1072
|
msgstr "正在新增..."
|
|
@@ -1035,12 +1099,12 @@ msgid "Address updated successfully"
|
|
|
1035
1099
|
msgstr "地址已成功更新"
|
|
1036
1100
|
|
|
1037
1101
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:200
|
|
1038
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1102
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:240
|
|
1039
1103
|
msgid "Addresses"
|
|
1040
1104
|
msgstr "地址"
|
|
1041
1105
|
|
|
1042
1106
|
#. placeholder {0}: adjustedLines.length
|
|
1043
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1107
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:149
|
|
1044
1108
|
msgid "Adjusting {0} lines"
|
|
1045
1109
|
msgstr "正在調整 {0} 行"
|
|
1046
1110
|
|
|
@@ -1056,17 +1120,22 @@ msgstr "之後"
|
|
|
1056
1120
|
|
|
1057
1121
|
#: src/lib/components/shared/alerts.tsx:33
|
|
1058
1122
|
msgid "Alerts"
|
|
1059
|
-
msgstr ""
|
|
1123
|
+
msgstr "警示"
|
|
1060
1124
|
|
|
1061
1125
|
#: src/app/routes/_authenticated/_system/healthchecks.tsx:66
|
|
1062
1126
|
msgid "All resources are up and running"
|
|
1063
1127
|
msgstr "所有資源正在執行"
|
|
1064
1128
|
|
|
1065
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1129
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:431
|
|
1066
1130
|
msgid "Allocated"
|
|
1067
1131
|
msgstr "已配置"
|
|
1068
1132
|
|
|
1133
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:210
|
|
1134
|
+
msgid "Allocated payment amount must equal refund total"
|
|
1135
|
+
msgstr "分配的付款金額必須等於退款總額"
|
|
1136
|
+
|
|
1069
1137
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:170
|
|
1138
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:312
|
|
1070
1139
|
msgid "Amount"
|
|
1071
1140
|
msgstr "金額"
|
|
1072
1141
|
|
|
@@ -1116,7 +1185,7 @@ msgstr "確定要刪除 {selectionLength} 個資源嗎?"
|
|
|
1116
1185
|
msgid "Are you sure you want to delete this address?"
|
|
1117
1186
|
msgstr "確定要刪除此地址嗎?"
|
|
1118
1187
|
|
|
1119
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1188
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:310
|
|
1120
1189
|
msgid "Are you sure you want to delete this draft order?"
|
|
1121
1190
|
msgstr "確定要刪除此草稿訂單嗎?"
|
|
1122
1191
|
|
|
@@ -1124,7 +1193,7 @@ msgstr "確定要刪除此草稿訂單嗎?"
|
|
|
1124
1193
|
msgid "Are you sure you want to delete this global view? This action cannot be undone and will affect all users."
|
|
1125
1194
|
msgstr "確定要刪除此全域檢視嗎?此動作無法復原,將影響所有使用者。"
|
|
1126
1195
|
|
|
1127
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1196
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:391
|
|
1128
1197
|
msgid "Are you sure you want to delete this item? This action cannot be undone."
|
|
1129
1198
|
msgstr "確定要刪除此項目嗎?此動作無法復原。"
|
|
1130
1199
|
|
|
@@ -1144,7 +1213,7 @@ msgstr "確定要離開此頁面嗎?任何未儲存的變更都將遺失。"
|
|
|
1144
1213
|
#. placeholder {1}: selection.length === 1 ? 'country' : 'countries'
|
|
1145
1214
|
#: src/app/routes/_authenticated/_zones/components/zone-bulk-actions.tsx:51
|
|
1146
1215
|
msgid "Are you sure you want to remove {0} {1} from this zone?"
|
|
1147
|
-
msgstr ""
|
|
1216
|
+
msgstr "確定要從此區域移除 {0} {1} 嗎?"
|
|
1148
1217
|
|
|
1149
1218
|
#. placeholder {0}: selection.length
|
|
1150
1219
|
#: src/lib/components/shared/remove-from-channel-bulk-action.tsx:84
|
|
@@ -1154,9 +1223,9 @@ msgstr "確定要從目前通路中移除 {0} {entityType} 嗎?"
|
|
|
1154
1223
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:38
|
|
1155
1224
|
#: src/app/routes/_authenticated/_assets/assets.tsx:9
|
|
1156
1225
|
#: src/app/routes/_authenticated/_assets/assets.tsx:30
|
|
1157
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
1158
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1159
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
1226
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:217
|
|
1227
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:463
|
|
1228
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:231
|
|
1160
1229
|
msgid "Assets"
|
|
1161
1230
|
msgstr "資源"
|
|
1162
1231
|
|
|
@@ -1173,14 +1242,23 @@ msgid "Assign options to existing variant"
|
|
|
1173
1242
|
msgstr "將選項指派給現有變體"
|
|
1174
1243
|
|
|
1175
1244
|
#: src/lib/components/shared/assign-to-channel-bulk-action.tsx:55
|
|
1245
|
+
#: src/lib/components/shared/assigned-channels.tsx:88
|
|
1176
1246
|
msgid "Assign to channel"
|
|
1177
1247
|
msgstr "指派給通路"
|
|
1178
1248
|
|
|
1249
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:121
|
|
1250
|
+
msgid "Authentication methods"
|
|
1251
|
+
msgstr "驗證方式"
|
|
1252
|
+
|
|
1179
1253
|
#. placeholder {0}: currentInterval?.label
|
|
1180
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
1254
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:245
|
|
1181
1255
|
msgid "Auto refresh: {0}"
|
|
1182
1256
|
msgstr "自動重新整理:{0}"
|
|
1183
1257
|
|
|
1258
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:301
|
|
1259
|
+
msgid "Available"
|
|
1260
|
+
msgstr "可用"
|
|
1261
|
+
|
|
1184
1262
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:176
|
|
1185
1263
|
msgid "Available currencies"
|
|
1186
1264
|
msgstr "可用貨幣"
|
|
@@ -1190,7 +1268,7 @@ msgstr "可用貨幣"
|
|
|
1190
1268
|
msgid "Available languages"
|
|
1191
1269
|
msgstr "可用語言"
|
|
1192
1270
|
|
|
1193
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
1271
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:322
|
|
1194
1272
|
msgid "Available Languages"
|
|
1195
1273
|
msgstr "可用語言"
|
|
1196
1274
|
|
|
@@ -1214,21 +1292,21 @@ msgstr "之前"
|
|
|
1214
1292
|
msgid "between"
|
|
1215
1293
|
msgstr "之間"
|
|
1216
1294
|
|
|
1217
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
1218
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1219
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1295
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:297
|
|
1296
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:269
|
|
1297
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:466
|
|
1220
1298
|
msgid "Billing address"
|
|
1221
1299
|
msgstr "帳單地址"
|
|
1222
1300
|
|
|
1223
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1301
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:135
|
|
1224
1302
|
msgid "Billing address changed"
|
|
1225
1303
|
msgstr "帳單地址已變更"
|
|
1226
1304
|
|
|
1227
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1305
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:190
|
|
1228
1306
|
msgid "Billing address set for order"
|
|
1229
1307
|
msgstr "已為訂單設定帳單地址"
|
|
1230
1308
|
|
|
1231
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1309
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:206
|
|
1232
1310
|
msgid "Billing address unset for order"
|
|
1233
1311
|
msgstr "已從訂單移除帳單地址"
|
|
1234
1312
|
|
|
@@ -1237,26 +1315,27 @@ msgstr "已從訂單移除帳單地址"
|
|
|
1237
1315
|
msgid "Browse facets"
|
|
1238
1316
|
msgstr "瀏覽分面"
|
|
1239
1317
|
|
|
1240
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
1241
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1318
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:186
|
|
1319
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:186
|
|
1242
1320
|
msgid "Calculator"
|
|
1243
1321
|
msgstr "計算機"
|
|
1244
1322
|
|
|
1245
1323
|
#: src/app/common/duplicate-entity-dialog.tsx:108
|
|
1246
1324
|
#: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:203
|
|
1247
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
1325
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:417
|
|
1248
1326
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:337
|
|
1249
1327
|
#: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:168
|
|
1250
1328
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:304
|
|
1251
1329
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:350
|
|
1330
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:353
|
|
1252
1331
|
#: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:71
|
|
1253
1332
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:270
|
|
1254
1333
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:364
|
|
1255
1334
|
#: src/lib/components/data-table/data-table-bulk-action-item.tsx:122
|
|
1256
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1335
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:398
|
|
1257
1336
|
#: src/lib/components/data-table/views-sheet.tsx:217
|
|
1258
1337
|
#: src/lib/components/data-table/views-sheet.tsx:295
|
|
1259
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
1338
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:377
|
|
1260
1339
|
#: src/lib/components/shared/asset/asset-focal-point-editor.tsx:88
|
|
1261
1340
|
#: src/lib/components/shared/assign-to-channel-dialog.tsx:122
|
|
1262
1341
|
#: src/lib/components/shared/confirmation-dialog.tsx:43
|
|
@@ -1267,11 +1346,11 @@ msgstr "計算機"
|
|
|
1267
1346
|
msgid "Cancel"
|
|
1268
1347
|
msgstr "取消"
|
|
1269
1348
|
|
|
1270
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
1349
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:193
|
|
1271
1350
|
msgid "Cancel Job"
|
|
1272
1351
|
msgstr "取消工作"
|
|
1273
1352
|
|
|
1274
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1353
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:167
|
|
1275
1354
|
msgid "Cancel modification"
|
|
1276
1355
|
msgstr "取消修改"
|
|
1277
1356
|
|
|
@@ -1279,6 +1358,14 @@ msgstr "取消修改"
|
|
|
1279
1358
|
msgid "Cancel payment"
|
|
1280
1359
|
msgstr "取消付款"
|
|
1281
1360
|
|
|
1361
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:213
|
|
1362
|
+
msgid "Cannot move a collection into its own descendant"
|
|
1363
|
+
msgstr "無法將集合移動到其自身的子集"
|
|
1364
|
+
|
|
1365
|
+
#: src/lib/components/shared/assigned-channels.tsx:49
|
|
1366
|
+
msgid "Cannot remove from active channel"
|
|
1367
|
+
msgstr "無法從活動頻道中移除"
|
|
1368
|
+
|
|
1282
1369
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:63
|
|
1283
1370
|
msgid "Category"
|
|
1284
1371
|
msgstr "類別"
|
|
@@ -1291,15 +1378,16 @@ msgstr "通路"
|
|
|
1291
1378
|
msgid "Channel defaults"
|
|
1292
1379
|
msgstr "通路預設值"
|
|
1293
1380
|
|
|
1294
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
1381
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:305
|
|
1295
1382
|
msgid "Channel Languages"
|
|
1296
1383
|
msgstr "通路語言"
|
|
1297
1384
|
|
|
1298
1385
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:40
|
|
1299
1386
|
#: src/app/routes/_authenticated/_channels/channels.tsx:16
|
|
1300
1387
|
#: src/app/routes/_authenticated/_channels/channels.tsx:24
|
|
1388
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:220
|
|
1301
1389
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:115
|
|
1302
|
-
#: src/lib/components/layout/channel-switcher.tsx:
|
|
1390
|
+
#: src/lib/components/layout/channel-switcher.tsx:146
|
|
1303
1391
|
msgid "Channels"
|
|
1304
1392
|
msgstr "通路"
|
|
1305
1393
|
|
|
@@ -1314,7 +1402,7 @@ msgid "Clear"
|
|
|
1314
1402
|
msgstr "清除"
|
|
1315
1403
|
|
|
1316
1404
|
#: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:180
|
|
1317
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
1405
|
+
#: src/lib/components/data-table/data-table.tsx:413
|
|
1318
1406
|
msgid "Clear all"
|
|
1319
1407
|
msgstr "全部清除"
|
|
1320
1408
|
|
|
@@ -1332,16 +1420,15 @@ msgstr "按一下「執行測試」以測試此配送方式。"
|
|
|
1332
1420
|
|
|
1333
1421
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:136
|
|
1334
1422
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:114
|
|
1335
|
-
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:113
|
|
1336
1423
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:141
|
|
1337
1424
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:130
|
|
1338
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
1425
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:158
|
|
1339
1426
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:155
|
|
1340
1427
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:187
|
|
1341
1428
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:104
|
|
1342
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1429
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:150
|
|
1343
1430
|
#: src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx:61
|
|
1344
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
1431
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:97
|
|
1345
1432
|
msgid "Code"
|
|
1346
1433
|
msgstr "代碼"
|
|
1347
1434
|
|
|
@@ -1349,13 +1436,21 @@ msgstr "代碼"
|
|
|
1349
1436
|
msgid "Collection contents for {collectionName}"
|
|
1350
1437
|
msgstr "{collectionName} 的集合內容"
|
|
1351
1438
|
|
|
1352
|
-
#: src/app/routes/_authenticated/_collections/
|
|
1353
|
-
|
|
1354
|
-
|
|
1439
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:251
|
|
1440
|
+
msgid "Collection moved to new parent"
|
|
1441
|
+
msgstr "集合已移至新的父級"
|
|
1442
|
+
|
|
1443
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:245
|
|
1444
|
+
msgid "Collection position updated"
|
|
1445
|
+
msgstr "集合位置已更新"
|
|
1446
|
+
|
|
1447
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:47
|
|
1448
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:38
|
|
1449
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:265
|
|
1355
1450
|
msgid "Collections"
|
|
1356
1451
|
msgstr "集合"
|
|
1357
1452
|
|
|
1358
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
1453
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:284
|
|
1359
1454
|
msgid "Collections moved successfully"
|
|
1360
1455
|
msgstr "集合移動成功"
|
|
1361
1456
|
|
|
@@ -1369,16 +1464,16 @@ msgstr "欄設定"
|
|
|
1369
1464
|
msgid "Company"
|
|
1370
1465
|
msgstr "公司"
|
|
1371
1466
|
|
|
1372
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1467
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:326
|
|
1373
1468
|
msgid "Complete draft"
|
|
1374
1469
|
msgstr "完成草稿"
|
|
1375
1470
|
|
|
1376
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1377
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1471
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:222
|
|
1472
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:174
|
|
1378
1473
|
msgid "Conditions"
|
|
1379
1474
|
msgstr "條件"
|
|
1380
1475
|
|
|
1381
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
1476
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:243
|
|
1382
1477
|
msgid "Configure available languages for your store and channels"
|
|
1383
1478
|
msgstr "為您的商店和通路設定可用語言"
|
|
1384
1479
|
|
|
@@ -1391,7 +1486,7 @@ msgstr "確認"
|
|
|
1391
1486
|
msgid "Confirm Action"
|
|
1392
1487
|
msgstr "確認動作"
|
|
1393
1488
|
|
|
1394
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1489
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:388
|
|
1395
1490
|
msgid "Confirm deletion"
|
|
1396
1491
|
msgstr "確認刪除"
|
|
1397
1492
|
|
|
@@ -1403,8 +1498,12 @@ msgstr "確認導覽"
|
|
|
1403
1498
|
msgid "contains"
|
|
1404
1499
|
msgstr "包含"
|
|
1405
1500
|
|
|
1406
|
-
#: src/
|
|
1407
|
-
|
|
1501
|
+
#: src/lib/components/layout/channel-switcher.tsx:157
|
|
1502
|
+
msgid "Content:"
|
|
1503
|
+
msgstr "內容:"
|
|
1504
|
+
|
|
1505
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:241
|
|
1506
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:325
|
|
1408
1507
|
msgid "Contents"
|
|
1409
1508
|
msgstr "內容"
|
|
1410
1509
|
|
|
@@ -1431,36 +1530,36 @@ msgstr "國家"
|
|
|
1431
1530
|
msgid "Country"
|
|
1432
1531
|
msgstr "國家"
|
|
1433
1532
|
|
|
1434
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1533
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:200
|
|
1435
1534
|
msgid "Coupon code"
|
|
1436
1535
|
msgstr "優惠券代碼"
|
|
1437
1536
|
|
|
1438
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1537
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:246
|
|
1439
1538
|
msgid "Coupon code removed from order"
|
|
1440
1539
|
msgstr "優惠券代碼已從訂單中移除"
|
|
1441
1540
|
|
|
1442
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1541
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:233
|
|
1443
1542
|
msgid "Coupon code set for order"
|
|
1444
1543
|
msgstr "已為訂單設定優惠券代碼"
|
|
1445
1544
|
|
|
1446
1545
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
1447
1546
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
1448
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
1547
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:143
|
|
1449
1548
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
|
|
1450
1549
|
#: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:96
|
|
1451
1550
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
|
|
1452
1551
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:113
|
|
1453
1552
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
1454
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
1455
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1553
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:131
|
|
1554
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:227
|
|
1456
1555
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:200
|
|
1457
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
1556
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:122
|
|
1458
1557
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
1459
1558
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
1460
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1559
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:137
|
|
1461
1560
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
1462
1561
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
1463
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1562
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:133
|
|
1464
1563
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
1465
1564
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:99
|
|
1466
1565
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
@@ -1513,7 +1612,7 @@ msgstr "建立於"
|
|
|
1513
1612
|
msgid "Creating..."
|
|
1514
1613
|
msgstr "正在建立..."
|
|
1515
1614
|
|
|
1516
|
-
#: src/lib/components/layout/channel-switcher.tsx:
|
|
1615
|
+
#: src/lib/components/layout/channel-switcher.tsx:98
|
|
1517
1616
|
msgctxt "current channel"
|
|
1518
1617
|
msgid "Current"
|
|
1519
1618
|
msgstr "目前"
|
|
@@ -1526,7 +1625,7 @@ msgstr "目前屬性值"
|
|
|
1526
1625
|
msgid "Current status"
|
|
1527
1626
|
msgstr "目前狀態"
|
|
1528
1627
|
|
|
1529
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1628
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:393
|
|
1530
1629
|
msgid "Custom fields"
|
|
1531
1630
|
msgstr "自訂欄位"
|
|
1532
1631
|
|
|
@@ -1534,13 +1633,13 @@ msgstr "自訂欄位"
|
|
|
1534
1633
|
msgid "Custom Fields"
|
|
1535
1634
|
msgstr "自訂欄位"
|
|
1536
1635
|
|
|
1537
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1636
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:169
|
|
1538
1637
|
msgid "Custom fields changed"
|
|
1539
1638
|
msgstr "自訂欄位已變更"
|
|
1540
1639
|
|
|
1541
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
1542
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1543
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1640
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:272
|
|
1641
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:226
|
|
1642
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:419
|
|
1544
1643
|
#: src/lib/components/shared/role-code-label.tsx:8
|
|
1545
1644
|
msgid "Customer"
|
|
1546
1645
|
msgstr "客戶"
|
|
@@ -1572,7 +1671,7 @@ msgstr "客戶群組"
|
|
|
1572
1671
|
msgid "Customer history"
|
|
1573
1672
|
msgstr "客戶歷程"
|
|
1574
1673
|
|
|
1575
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
1674
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:86
|
|
1576
1675
|
msgid "Customer information updated"
|
|
1577
1676
|
msgstr "客戶資訊已更新"
|
|
1578
1677
|
|
|
@@ -1584,11 +1683,11 @@ msgstr "找不到客戶"
|
|
|
1584
1683
|
msgid "Customer registered"
|
|
1585
1684
|
msgstr "客戶已註冊"
|
|
1586
1685
|
|
|
1587
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1686
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:160
|
|
1588
1687
|
msgid "Customer set for order"
|
|
1589
1688
|
msgstr "訂單已設定客戶"
|
|
1590
1689
|
|
|
1591
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
1690
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:105
|
|
1592
1691
|
msgid "Customer updated"
|
|
1593
1692
|
msgstr "客戶已更新"
|
|
1594
1693
|
|
|
@@ -1625,7 +1724,7 @@ msgstr "預設貨幣"
|
|
|
1625
1724
|
msgid "Default language"
|
|
1626
1725
|
msgstr "預設語言"
|
|
1627
1726
|
|
|
1628
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
1727
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:350
|
|
1629
1728
|
msgid "Default Language"
|
|
1630
1729
|
msgstr "預設語言"
|
|
1631
1730
|
|
|
@@ -1645,8 +1744,8 @@ msgstr "預設稅務區域"
|
|
|
1645
1744
|
#: src/app/common/delete-bulk-action.tsx:139
|
|
1646
1745
|
#: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:41
|
|
1647
1746
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:312
|
|
1648
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1649
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1747
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:381
|
|
1748
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:412
|
|
1650
1749
|
#: src/lib/components/data-table/views-sheet.tsx:272
|
|
1651
1750
|
#: src/lib/components/data-table/views-sheet.tsx:298
|
|
1652
1751
|
msgid "Delete"
|
|
@@ -1660,11 +1759,11 @@ msgstr "刪除地址"
|
|
|
1660
1759
|
msgid "Delete column"
|
|
1661
1760
|
msgstr "刪除欄"
|
|
1662
1761
|
|
|
1663
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1762
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:316
|
|
1664
1763
|
msgid "Delete draft"
|
|
1665
1764
|
msgstr "刪除草稿"
|
|
1666
1765
|
|
|
1667
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1766
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:309
|
|
1668
1767
|
msgid "Delete draft order"
|
|
1669
1768
|
msgstr "刪除草稿訂單"
|
|
1670
1769
|
|
|
@@ -1688,17 +1787,18 @@ msgstr "已刪除 {deleted} {entityName}"
|
|
|
1688
1787
|
msgid "Deleted {selectionLength} assets"
|
|
1689
1788
|
msgstr "已刪除 {selectionLength} 個資源"
|
|
1690
1789
|
|
|
1691
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1790
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:362
|
|
1692
1791
|
msgid "Deleted successfully"
|
|
1693
1792
|
msgstr "成功刪除"
|
|
1694
1793
|
|
|
1695
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
1794
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:186
|
|
1795
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:77
|
|
1696
1796
|
#: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
|
|
1697
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
1698
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
1699
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1797
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:165
|
|
1798
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:166
|
|
1799
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:168
|
|
1700
1800
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:98
|
|
1701
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1801
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:158
|
|
1702
1802
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:118
|
|
1703
1803
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:110
|
|
1704
1804
|
msgid "Description"
|
|
@@ -1723,7 +1823,7 @@ msgstr "停用"
|
|
|
1723
1823
|
msgid "Disabled"
|
|
1724
1824
|
msgstr "已停用"
|
|
1725
1825
|
|
|
1726
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
1826
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:38
|
|
1727
1827
|
msgid "Discount"
|
|
1728
1828
|
msgstr "折扣"
|
|
1729
1829
|
|
|
@@ -1731,7 +1831,7 @@ msgstr "折扣"
|
|
|
1731
1831
|
msgid "Display language"
|
|
1732
1832
|
msgstr "顯示語言"
|
|
1733
1833
|
|
|
1734
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1834
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:364
|
|
1735
1835
|
msgid "Do not track"
|
|
1736
1836
|
msgstr "不追蹤"
|
|
1737
1837
|
|
|
@@ -1739,19 +1839,23 @@ msgstr "不追蹤"
|
|
|
1739
1839
|
msgid "does not contain"
|
|
1740
1840
|
msgstr "不包含"
|
|
1741
1841
|
|
|
1742
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1842
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:303
|
|
1743
1843
|
#: src/app/routes/_authenticated/_orders/orders.tsx:115
|
|
1744
1844
|
msgid "Draft order"
|
|
1745
1845
|
msgstr "草稿訂單"
|
|
1746
1846
|
|
|
1747
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1847
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:257
|
|
1748
1848
|
msgid "Draft order completed"
|
|
1749
1849
|
msgstr "草稿訂單已完成"
|
|
1750
1850
|
|
|
1751
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1851
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:274
|
|
1752
1852
|
msgid "Draft order deleted"
|
|
1753
1853
|
msgstr "草稿訂單已刪除"
|
|
1754
1854
|
|
|
1855
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:336
|
|
1856
|
+
msgid "Draft order status"
|
|
1857
|
+
msgstr "草稿訂單狀態"
|
|
1858
|
+
|
|
1755
1859
|
#: src/lib/components/data-input/custom-field-list-input.tsx:72
|
|
1756
1860
|
msgid "Drag to reorder"
|
|
1757
1861
|
msgstr "拖曳以重新排序"
|
|
@@ -1785,8 +1889,8 @@ msgstr "例如:小號"
|
|
|
1785
1889
|
msgid "e.g., Red, Large, Cotton"
|
|
1786
1890
|
msgstr "例如:紅色、大號、棉質"
|
|
1787
1891
|
|
|
1788
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1789
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1892
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:250
|
|
1893
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:276
|
|
1790
1894
|
#: src/lib/components/shared/asset/asset-gallery.tsx:462
|
|
1791
1895
|
#: src/lib/components/shared/history-timeline/history-note-entry.tsx:48
|
|
1792
1896
|
msgid "Edit"
|
|
@@ -1818,7 +1922,7 @@ msgstr "編輯佈局"
|
|
|
1818
1922
|
msgid "Edit link"
|
|
1819
1923
|
msgstr "編輯連結"
|
|
1820
1924
|
|
|
1821
|
-
#: src/app/routes/_authenticated/_zones/zones.tsx:
|
|
1925
|
+
#: src/app/routes/_authenticated/_zones/zones.tsx:40
|
|
1822
1926
|
msgid "Edit members"
|
|
1823
1927
|
msgstr "編輯成員"
|
|
1824
1928
|
|
|
@@ -1848,7 +1952,7 @@ msgid "Email address"
|
|
|
1848
1952
|
msgstr "電子郵件地址"
|
|
1849
1953
|
|
|
1850
1954
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:131
|
|
1851
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
1955
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:107
|
|
1852
1956
|
msgid "Email Address or identifier"
|
|
1853
1957
|
msgstr "電子郵件地址或識別碼"
|
|
1854
1958
|
|
|
@@ -1865,11 +1969,11 @@ msgid "Enable"
|
|
|
1865
1969
|
msgstr "啟用"
|
|
1866
1970
|
|
|
1867
1971
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:96
|
|
1868
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
1972
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:141
|
|
1869
1973
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:43
|
|
1870
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1871
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
1872
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1974
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:237
|
|
1975
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:132
|
|
1976
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:147
|
|
1873
1977
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:113
|
|
1874
1978
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:117
|
|
1875
1979
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:105
|
|
@@ -1880,10 +1984,14 @@ msgstr "啟用"
|
|
|
1880
1984
|
msgid "Enabled"
|
|
1881
1985
|
msgstr "已啟用"
|
|
1882
1986
|
|
|
1883
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1987
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:188
|
|
1884
1988
|
msgid "Ends at"
|
|
1885
1989
|
msgstr "結束於"
|
|
1886
1990
|
|
|
1991
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:232
|
|
1992
|
+
msgid "Enter custom reason..."
|
|
1993
|
+
msgstr "輸入自訂原因..."
|
|
1994
|
+
|
|
1887
1995
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:306
|
|
1888
1996
|
msgid "Enter refund note"
|
|
1889
1997
|
msgstr "輸入退款備註"
|
|
@@ -1958,19 +2066,19 @@ msgstr "屬性"
|
|
|
1958
2066
|
msgid "Facet values"
|
|
1959
2067
|
msgstr "屬性值"
|
|
1960
2068
|
|
|
1961
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1962
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
2069
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:446
|
|
2070
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:210
|
|
1963
2071
|
msgid "Facet Values"
|
|
1964
2072
|
msgstr "屬性值"
|
|
1965
2073
|
|
|
1966
|
-
#: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:
|
|
2074
|
+
#: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:33
|
|
1967
2075
|
msgid "Facet values for {facetName}"
|
|
1968
2076
|
msgstr "{facetName} 的屬性值"
|
|
1969
2077
|
|
|
1970
2078
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:40
|
|
1971
2079
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:37
|
|
1972
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
1973
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
2080
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:22
|
|
2081
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:29
|
|
1974
2082
|
#: src/lib/components/shared/facet-value-selector.tsx:405
|
|
1975
2083
|
msgid "Facets"
|
|
1976
2084
|
msgstr "屬性"
|
|
@@ -1990,6 +2098,14 @@ msgstr "新增選項值失敗"
|
|
|
1990
2098
|
msgid "Failed to add payment"
|
|
1991
2099
|
msgstr "新增付款失敗"
|
|
1992
2100
|
|
|
2101
|
+
#: src/lib/components/shared/assign-to-channel-dialog.tsx:73
|
|
2102
|
+
msgid "Failed to assign {entityIdsLength} {entityType} to channel"
|
|
2103
|
+
msgstr "無法將 {entityIdsLength} 個 {entityType} 分配到頻道"
|
|
2104
|
+
|
|
2105
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:259
|
|
2106
|
+
msgid "Failed to cancel order items"
|
|
2107
|
+
msgstr "取消訂單商品失敗"
|
|
2108
|
+
|
|
1993
2109
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:78
|
|
1994
2110
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:82
|
|
1995
2111
|
msgid "Failed to cancel payment"
|
|
@@ -2016,7 +2132,7 @@ msgstr "建立管理員失敗"
|
|
|
2016
2132
|
msgid "Failed to create channel"
|
|
2017
2133
|
msgstr "建立通路失敗"
|
|
2018
2134
|
|
|
2019
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
2135
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:119
|
|
2020
2136
|
msgid "Failed to create collection"
|
|
2021
2137
|
msgstr "建立集合失敗"
|
|
2022
2138
|
|
|
@@ -2045,11 +2161,11 @@ msgstr "建立屬性值失敗"
|
|
|
2045
2161
|
msgid "Failed to create option group"
|
|
2046
2162
|
msgstr "建立選項群組失敗"
|
|
2047
2163
|
|
|
2048
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
2164
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:111
|
|
2049
2165
|
msgid "Failed to create payment method"
|
|
2050
2166
|
msgstr "建立付款方式失敗"
|
|
2051
2167
|
|
|
2052
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
2168
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:106
|
|
2053
2169
|
msgid "Failed to create product"
|
|
2054
2170
|
msgstr "建立商品失敗"
|
|
2055
2171
|
|
|
@@ -2066,13 +2182,13 @@ msgstr "建立商品選項群組失敗"
|
|
|
2066
2182
|
msgid "Failed to create product options"
|
|
2067
2183
|
msgstr "建立商品選項失敗"
|
|
2068
2184
|
|
|
2069
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2185
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:137
|
|
2070
2186
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:174
|
|
2071
2187
|
msgid "Failed to create product variant"
|
|
2072
2188
|
msgstr "建立商品變體失敗"
|
|
2073
2189
|
|
|
2074
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2075
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2190
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:113
|
|
2191
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:121
|
|
2076
2192
|
msgid "Failed to create promotion"
|
|
2077
2193
|
msgstr "建立促銷失敗"
|
|
2078
2194
|
|
|
@@ -2084,7 +2200,7 @@ msgstr "建立角色失敗"
|
|
|
2084
2200
|
msgid "Failed to create seller"
|
|
2085
2201
|
msgstr "建立賣家失敗"
|
|
2086
2202
|
|
|
2087
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2203
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:101
|
|
2088
2204
|
msgid "Failed to create shipping method"
|
|
2089
2205
|
msgstr "建立配送方式失敗"
|
|
2090
2206
|
|
|
@@ -2104,8 +2220,8 @@ msgstr "建立稅率失敗"
|
|
|
2104
2220
|
msgid "Failed to create zone"
|
|
2105
2221
|
msgstr "建立區域失敗"
|
|
2106
2222
|
|
|
2107
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2108
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2223
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:364
|
|
2224
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:370
|
|
2109
2225
|
msgid "Failed to delete"
|
|
2110
2226
|
msgstr "刪除失敗"
|
|
2111
2227
|
|
|
@@ -2147,21 +2263,26 @@ msgstr "複製檢視失敗"
|
|
|
2147
2263
|
msgid "Failed to fulfill order"
|
|
2148
2264
|
msgstr "履行訂單失敗"
|
|
2149
2265
|
|
|
2150
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
2266
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:272
|
|
2151
2267
|
msgid "Failed to load global settings"
|
|
2152
2268
|
msgstr "載入全域設定失敗"
|
|
2153
2269
|
|
|
2154
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
2270
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:148
|
|
2155
2271
|
msgid "Failed to modify order"
|
|
2156
2272
|
msgstr "修改訂單失敗"
|
|
2157
2273
|
|
|
2158
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2274
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:293
|
|
2159
2275
|
msgid "Failed to move collections"
|
|
2160
2276
|
msgstr "移動集合失敗"
|
|
2161
2277
|
|
|
2278
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:289
|
|
2279
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:302
|
|
2280
|
+
msgid "Failed to process refund"
|
|
2281
|
+
msgstr "處理退款失敗"
|
|
2282
|
+
|
|
2162
2283
|
#: src/app/routes/_authenticated/_zones/components/zone-bulk-actions.tsx:36
|
|
2163
2284
|
msgid "Failed to remove countries from zone"
|
|
2164
|
-
msgstr ""
|
|
2285
|
+
msgstr "從區域移除國家/地區失敗"
|
|
2165
2286
|
|
|
2166
2287
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:139
|
|
2167
2288
|
msgid "Failed to remove customer from group"
|
|
@@ -2171,6 +2292,10 @@ msgstr "從群組中移除客戶失敗"
|
|
|
2171
2292
|
msgid "Failed to remove facet from channel: {message}"
|
|
2172
2293
|
msgstr "從通路中移除屬性失敗:{message}"
|
|
2173
2294
|
|
|
2295
|
+
#: src/lib/components/shared/assigned-channels.tsx:43
|
|
2296
|
+
msgid "Failed to remove product from channel"
|
|
2297
|
+
msgstr "從頻道移除產品失敗"
|
|
2298
|
+
|
|
2174
2299
|
#: src/lib/components/data-table/views-sheet.tsx:68
|
|
2175
2300
|
msgid "Failed to rename global view"
|
|
2176
2301
|
msgstr "重新命名全域檢視失敗"
|
|
@@ -2179,6 +2304,10 @@ msgstr "重新命名全域檢視失敗"
|
|
|
2179
2304
|
msgid "Failed to rename view"
|
|
2180
2305
|
msgstr "重新命名檢視失敗"
|
|
2181
2306
|
|
|
2307
|
+
#: src/lib/components/data-table/data-table.tsx:220
|
|
2308
|
+
msgid "Failed to reorder items"
|
|
2309
|
+
msgstr "重新排序商品失敗"
|
|
2310
|
+
|
|
2182
2311
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:48
|
|
2183
2312
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:52
|
|
2184
2313
|
msgid "Failed to settle payment"
|
|
@@ -2189,7 +2318,7 @@ msgstr "完成付款失敗"
|
|
|
2189
2318
|
msgid "Failed to settle refund"
|
|
2190
2319
|
msgstr "完成退款失敗"
|
|
2191
2320
|
|
|
2192
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
2321
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:127
|
|
2193
2322
|
msgid "Failed to transition order to state"
|
|
2194
2323
|
msgstr "將訂單轉換到狀態失敗"
|
|
2195
2324
|
|
|
@@ -2210,10 +2339,14 @@ msgstr "更新資源失敗"
|
|
|
2210
2339
|
msgid "Failed to update channel"
|
|
2211
2340
|
msgstr "更新通路失敗"
|
|
2212
2341
|
|
|
2213
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
2342
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:119
|
|
2214
2343
|
msgid "Failed to update collection"
|
|
2215
2344
|
msgstr "更新集合失敗"
|
|
2216
2345
|
|
|
2346
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:256
|
|
2347
|
+
msgid "Failed to update collection position"
|
|
2348
|
+
msgstr "更新集合位置失敗"
|
|
2349
|
+
|
|
2217
2350
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
|
|
2218
2351
|
msgid "Failed to update country"
|
|
2219
2352
|
msgstr "更新國家失敗"
|
|
@@ -2245,12 +2378,12 @@ msgstr "更新履行狀態失敗"
|
|
|
2245
2378
|
msgid "Failed to update global settings"
|
|
2246
2379
|
msgstr "更新全域設定失敗"
|
|
2247
2380
|
|
|
2248
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
2249
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2381
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:95
|
|
2382
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:60
|
|
2250
2383
|
msgid "Failed to update order"
|
|
2251
2384
|
msgstr "更新訂單失敗"
|
|
2252
2385
|
|
|
2253
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
2386
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:111
|
|
2254
2387
|
msgid "Failed to update payment method"
|
|
2255
2388
|
msgstr "更新付款方式失敗"
|
|
2256
2389
|
|
|
@@ -2259,7 +2392,7 @@ msgstr "更新付款方式失敗"
|
|
|
2259
2392
|
msgid "Failed to update payment state"
|
|
2260
2393
|
msgstr "更新付款狀態失敗"
|
|
2261
2394
|
|
|
2262
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
2395
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:106
|
|
2263
2396
|
msgid "Failed to update product"
|
|
2264
2397
|
msgstr "更新商品失敗"
|
|
2265
2398
|
|
|
@@ -2271,16 +2404,16 @@ msgstr "更新產品選項失敗"
|
|
|
2271
2404
|
msgid "Failed to update product option group"
|
|
2272
2405
|
msgstr "更新商品選項群組失敗"
|
|
2273
2406
|
|
|
2274
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2407
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:137
|
|
2275
2408
|
msgid "Failed to update product variant"
|
|
2276
2409
|
msgstr "更新商品變體失敗"
|
|
2277
2410
|
|
|
2278
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
2411
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:68
|
|
2279
2412
|
msgid "Failed to update profile"
|
|
2280
2413
|
msgstr "更新個人資料失敗"
|
|
2281
2414
|
|
|
2282
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2283
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2415
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:113
|
|
2416
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:121
|
|
2284
2417
|
msgid "Failed to update promotion"
|
|
2285
2418
|
msgstr "更新促銷失敗"
|
|
2286
2419
|
|
|
@@ -2292,7 +2425,7 @@ msgstr "更新角色失敗"
|
|
|
2292
2425
|
msgid "Failed to update seller"
|
|
2293
2426
|
msgstr "更新賣家失敗"
|
|
2294
2427
|
|
|
2295
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2428
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:101
|
|
2296
2429
|
msgid "Failed to update shipping method"
|
|
2297
2430
|
msgstr "更新配送方式失敗"
|
|
2298
2431
|
|
|
@@ -2320,7 +2453,7 @@ msgstr "否"
|
|
|
2320
2453
|
msgid "Filter by {columnId}"
|
|
2321
2454
|
msgstr "按 {columnId} 篩選"
|
|
2322
2455
|
|
|
2323
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2456
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:369
|
|
2324
2457
|
msgid "Filter by collection name"
|
|
2325
2458
|
msgstr "按集合名稱篩選"
|
|
2326
2459
|
|
|
@@ -2328,17 +2461,17 @@ msgstr "按集合名稱篩選"
|
|
|
2328
2461
|
msgid "Filter by tags"
|
|
2329
2462
|
msgstr "按標籤篩選"
|
|
2330
2463
|
|
|
2331
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
2464
|
+
#: src/lib/components/data-table/data-table.tsx:351
|
|
2332
2465
|
msgid "Filter..."
|
|
2333
2466
|
msgstr "篩選..."
|
|
2334
2467
|
|
|
2335
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
2468
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:191
|
|
2336
2469
|
msgid "Filters"
|
|
2337
2470
|
msgstr "篩選器"
|
|
2338
2471
|
|
|
2339
2472
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:119
|
|
2340
2473
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:173
|
|
2341
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
2474
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:95
|
|
2342
2475
|
msgid "First name"
|
|
2343
2476
|
msgstr "名字"
|
|
2344
2477
|
|
|
@@ -2354,7 +2487,7 @@ msgstr "找到 {0} 個符合條件的配送方式"
|
|
|
2354
2487
|
|
|
2355
2488
|
#. placeholder {0}: entry.data.from
|
|
2356
2489
|
#. placeholder {1}: entry.data.to
|
|
2357
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
2490
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:13
|
|
2358
2491
|
msgid "From {0} to {1}"
|
|
2359
2492
|
msgstr "從 {0} 到 {1}"
|
|
2360
2493
|
|
|
@@ -2374,27 +2507,27 @@ msgid "Fulfilling..."
|
|
|
2374
2507
|
msgstr "正在履行..."
|
|
2375
2508
|
|
|
2376
2509
|
#. placeholder {0}: entry.data.fulfillmentId
|
|
2377
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
2510
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:65
|
|
2378
2511
|
msgid "Fulfillment #{0} created"
|
|
2379
2512
|
msgstr "已建立履行 #{0}"
|
|
2380
2513
|
|
|
2381
2514
|
#. placeholder {0}: entry.data.fulfillmentId
|
|
2382
2515
|
#. placeholder {1}: entry.data.from
|
|
2383
2516
|
#. placeholder {2}: entry.data.to
|
|
2384
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
2517
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:52
|
|
2385
2518
|
msgid "Fulfillment #{0} from {1} to {2}"
|
|
2386
2519
|
msgstr "履行 #{0},從 {1} 到 {2}"
|
|
2387
2520
|
|
|
2388
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
2521
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:101
|
|
2389
2522
|
msgid "Fulfillment created"
|
|
2390
2523
|
msgstr "履行已建立"
|
|
2391
2524
|
|
|
2392
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
2525
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:307
|
|
2393
2526
|
msgid "Fulfillment details"
|
|
2394
2527
|
msgstr "履行詳細資料"
|
|
2395
2528
|
|
|
2396
2529
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:289
|
|
2397
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2530
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:166
|
|
2398
2531
|
msgid "Fulfillment handler"
|
|
2399
2532
|
msgstr "履行處理器"
|
|
2400
2533
|
|
|
@@ -2406,7 +2539,7 @@ msgstr "履行 ID"
|
|
|
2406
2539
|
msgid "Fulfillment state updated successfully"
|
|
2407
2540
|
msgstr "履行狀態已成功更新"
|
|
2408
2541
|
|
|
2409
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
2542
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:99
|
|
2410
2543
|
msgid "Fulfillment transitioned"
|
|
2411
2544
|
msgstr "履行已轉換"
|
|
2412
2545
|
|
|
@@ -2416,7 +2549,7 @@ msgstr "履行已轉換"
|
|
|
2416
2549
|
msgid "Full Name"
|
|
2417
2550
|
msgstr "全名"
|
|
2418
2551
|
|
|
2419
|
-
#: src/lib/components/shared/custom-fields-form.tsx:
|
|
2552
|
+
#: src/lib/components/shared/custom-fields-form.tsx:101
|
|
2420
2553
|
msgid "General"
|
|
2421
2554
|
msgstr "一般"
|
|
2422
2555
|
|
|
@@ -2425,7 +2558,7 @@ msgstr "一般"
|
|
|
2425
2558
|
msgid "Generate slug automatically"
|
|
2426
2559
|
msgstr "自動產生 slug"
|
|
2427
2560
|
|
|
2428
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
2561
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:252
|
|
2429
2562
|
msgid "Global Languages"
|
|
2430
2563
|
msgstr "全域語言"
|
|
2431
2564
|
|
|
@@ -2478,7 +2611,7 @@ msgstr "大於"
|
|
|
2478
2611
|
msgid "greater than or equal"
|
|
2479
2612
|
msgstr "大於或等於"
|
|
2480
2613
|
|
|
2481
|
-
#: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:
|
|
2614
|
+
#: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:86
|
|
2482
2615
|
msgid "Gross price: <0/>"
|
|
2483
2616
|
msgstr "總價:<0/>"
|
|
2484
2617
|
|
|
@@ -2530,11 +2663,12 @@ msgstr "ID"
|
|
|
2530
2663
|
msgid "Identifier"
|
|
2531
2664
|
msgstr "識別碼"
|
|
2532
2665
|
|
|
2533
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
2666
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:197
|
|
2534
2667
|
msgid "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
|
|
2535
2668
|
msgstr "如果啟用,篩選器將從父集合繼承,並與此集合上設定的篩選器組合。"
|
|
2536
2669
|
|
|
2537
2670
|
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:33
|
|
2671
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:90
|
|
2538
2672
|
msgid "Image"
|
|
2539
2673
|
msgstr "圖片"
|
|
2540
2674
|
|
|
@@ -2542,11 +2676,15 @@ msgstr "圖片"
|
|
|
2542
2676
|
msgid "in"
|
|
2543
2677
|
msgstr "在"
|
|
2544
2678
|
|
|
2545
|
-
#: src/app/routes/_authenticated/
|
|
2679
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:102
|
|
2680
|
+
msgid "Includes tax at {taxRate}%"
|
|
2681
|
+
msgstr "含 {taxRate}% 稅"
|
|
2682
|
+
|
|
2683
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:195
|
|
2546
2684
|
msgid "Inherit filters"
|
|
2547
2685
|
msgstr "繼承篩選器"
|
|
2548
2686
|
|
|
2549
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2687
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:358
|
|
2550
2688
|
msgid "Inherit from global settings"
|
|
2551
2689
|
msgstr "從全域設定繼承"
|
|
2552
2690
|
|
|
@@ -2615,12 +2753,16 @@ msgstr "不在"
|
|
|
2615
2753
|
msgid "is null"
|
|
2616
2754
|
msgstr "為空"
|
|
2617
2755
|
|
|
2618
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
2756
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:107
|
|
2619
2757
|
msgid "Item added to order"
|
|
2620
2758
|
msgstr "項目已新增至訂單"
|
|
2621
2759
|
|
|
2760
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:110
|
|
2761
|
+
msgid "Items refunded"
|
|
2762
|
+
msgstr "已退款商品"
|
|
2763
|
+
|
|
2622
2764
|
#: src/app/routes/_authenticated/_system/job-queue.tsx:33
|
|
2623
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
2765
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:102
|
|
2624
2766
|
msgid "Job Queue"
|
|
2625
2767
|
msgstr "工作佇列"
|
|
2626
2768
|
|
|
@@ -2629,7 +2771,7 @@ msgid "Language"
|
|
|
2629
2771
|
msgstr "語言"
|
|
2630
2772
|
|
|
2631
2773
|
#. placeholder {0}: formatLanguageName(contentLanguage)
|
|
2632
|
-
#: src/lib/components/layout/channel-switcher.tsx:
|
|
2774
|
+
#: src/lib/components/layout/channel-switcher.tsx:130
|
|
2633
2775
|
msgid "Language: {0}"
|
|
2634
2776
|
msgstr "語言:{0}"
|
|
2635
2777
|
|
|
@@ -2654,7 +2796,7 @@ msgstr "上個月"
|
|
|
2654
2796
|
|
|
2655
2797
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:125
|
|
2656
2798
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:179
|
|
2657
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
2799
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:101
|
|
2658
2800
|
msgid "Last name"
|
|
2659
2801
|
msgstr "姓氏"
|
|
2660
2802
|
|
|
@@ -2667,7 +2809,7 @@ msgstr "上次結果"
|
|
|
2667
2809
|
msgid "Last updated {0}"
|
|
2668
2810
|
msgstr "上次更新 {0}"
|
|
2669
2811
|
|
|
2670
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
2812
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:77
|
|
2671
2813
|
msgid "Latest Orders"
|
|
2672
2814
|
msgstr "最新訂單"
|
|
2673
2815
|
|
|
@@ -2696,6 +2838,11 @@ msgstr "連結目標"
|
|
|
2696
2838
|
msgid "Link title"
|
|
2697
2839
|
msgstr "連結標題"
|
|
2698
2840
|
|
|
2841
|
+
#. placeholder {0}: Math.min(remaining, CHILDREN_PAGE_SIZE)
|
|
2842
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:395
|
|
2843
|
+
msgid "Load {0} more ({remaining} remaining)"
|
|
2844
|
+
msgstr "載入更多{0}個 (剩餘{remaining}個)"
|
|
2845
|
+
|
|
2699
2846
|
#: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:73
|
|
2700
2847
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:75
|
|
2701
2848
|
msgid "Load more"
|
|
@@ -2705,11 +2852,11 @@ msgstr "載入更多"
|
|
|
2705
2852
|
msgid "Loading addresses..."
|
|
2706
2853
|
msgstr "正在載入地址..."
|
|
2707
2854
|
|
|
2708
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2855
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:378
|
|
2709
2856
|
msgid "Loading collections..."
|
|
2710
2857
|
msgstr "正在載入集合..."
|
|
2711
2858
|
|
|
2712
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
2859
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:266
|
|
2713
2860
|
msgid "Loading global settings..."
|
|
2714
2861
|
msgstr "正在載入全域設定..."
|
|
2715
2862
|
|
|
@@ -2756,8 +2903,8 @@ msgstr "管理全域檢視"
|
|
|
2756
2903
|
msgid "Manage Global Views"
|
|
2757
2904
|
msgstr "管理全域檢視"
|
|
2758
2905
|
|
|
2759
|
-
#: src/lib/components/layout/channel-switcher.tsx:
|
|
2760
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
2906
|
+
#: src/lib/components/layout/channel-switcher.tsx:193
|
|
2907
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:240
|
|
2761
2908
|
msgid "Manage Languages"
|
|
2762
2909
|
msgstr "管理語言"
|
|
2763
2910
|
|
|
@@ -2770,7 +2917,7 @@ msgid "Manage Tags"
|
|
|
2770
2917
|
msgstr "管理標籤"
|
|
2771
2918
|
|
|
2772
2919
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:252
|
|
2773
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
2920
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:184
|
|
2774
2921
|
msgid "Manage variants"
|
|
2775
2922
|
msgstr "管理變體"
|
|
2776
2923
|
|
|
@@ -2802,12 +2949,12 @@ msgstr "方法"
|
|
|
2802
2949
|
msgid "Metrics"
|
|
2803
2950
|
msgstr "指標"
|
|
2804
2951
|
|
|
2805
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
2952
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:158
|
|
2806
2953
|
#: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:75
|
|
2807
2954
|
msgid "Modify"
|
|
2808
2955
|
msgstr "修改"
|
|
2809
2956
|
|
|
2810
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2957
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:162
|
|
2811
2958
|
msgid "Modify order"
|
|
2812
2959
|
msgstr "修改訂單"
|
|
2813
2960
|
|
|
@@ -2824,27 +2971,27 @@ msgstr "本月至今"
|
|
|
2824
2971
|
msgid "More views"
|
|
2825
2972
|
msgstr "更多檢視"
|
|
2826
2973
|
|
|
2827
|
-
#: src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx:
|
|
2974
|
+
#: src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx:118
|
|
2828
2975
|
msgid "Move"
|
|
2829
2976
|
msgstr "移動"
|
|
2830
2977
|
|
|
2831
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2832
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2978
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:339
|
|
2979
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:426
|
|
2833
2980
|
msgid "Move Collections"
|
|
2834
2981
|
msgstr "移動集合"
|
|
2835
2982
|
|
|
2836
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2983
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:107
|
|
2837
2984
|
msgid "Move to the top level"
|
|
2838
2985
|
msgstr "移動到頂層"
|
|
2839
2986
|
|
|
2840
2987
|
#. placeholder {0}: collectionsToMove.length
|
|
2841
2988
|
#. placeholder {1}: collectionsToMove.length === 1 ? '' : 's'
|
|
2842
2989
|
#. placeholder {2}: selectedCollectionId === topLevelCollectionId ? 'top level' : collectionNameCache.current.get(selectedCollectionId) || 'selected collection'
|
|
2843
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2990
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:75
|
|
2844
2991
|
msgid "Moving {0} collection{1} into {2}"
|
|
2845
2992
|
msgstr "正在將 {0} 個集合移動到 {2}"
|
|
2846
2993
|
|
|
2847
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
2994
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:424
|
|
2848
2995
|
msgid "Moving..."
|
|
2849
2996
|
msgstr "正在移動..."
|
|
2850
2997
|
|
|
@@ -2857,21 +3004,20 @@ msgid "My Saved Views"
|
|
|
2857
3004
|
msgstr "我的儲存檢視"
|
|
2858
3005
|
|
|
2859
3006
|
#: src/app/routes/_authenticated/_administrators/administrators.tsx:46
|
|
2860
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
3007
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:165
|
|
2861
3008
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:108
|
|
2862
3009
|
#: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:107
|
|
2863
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
2864
|
-
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
|
|
3010
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:75
|
|
2865
3011
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:135
|
|
2866
3012
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:124
|
|
2867
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
3013
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:152
|
|
2868
3014
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:328
|
|
2869
3015
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:303
|
|
2870
3016
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:149
|
|
2871
3017
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:181
|
|
2872
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3018
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:159
|
|
2873
3019
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:96
|
|
2874
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
3020
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:144
|
|
2875
3021
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
|
|
2876
3022
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:110
|
|
2877
3023
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:116
|
|
@@ -2902,12 +3048,12 @@ msgstr "新增通路"
|
|
|
2902
3048
|
msgid "New Channel"
|
|
2903
3049
|
msgstr "新增通路"
|
|
2904
3050
|
|
|
2905
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
2906
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
3051
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:48
|
|
3052
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:135
|
|
2907
3053
|
msgid "New collection"
|
|
2908
3054
|
msgstr "新增集合"
|
|
2909
3055
|
|
|
2910
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
3056
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:450
|
|
2911
3057
|
msgid "New Collection"
|
|
2912
3058
|
msgstr "新增集合"
|
|
2913
3059
|
|
|
@@ -2921,7 +3067,7 @@ msgstr "新增國家"
|
|
|
2921
3067
|
msgid "New customer"
|
|
2922
3068
|
msgstr "新增客戶"
|
|
2923
3069
|
|
|
2924
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
3070
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:100
|
|
2925
3071
|
msgid "New Customer"
|
|
2926
3072
|
msgstr "新增客戶"
|
|
2927
3073
|
|
|
@@ -2934,7 +3080,7 @@ msgstr "新增客戶群組"
|
|
|
2934
3080
|
msgid "New Customer Group"
|
|
2935
3081
|
msgstr "新增客戶群組"
|
|
2936
3082
|
|
|
2937
|
-
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:
|
|
3083
|
+
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:167
|
|
2938
3084
|
msgid "New email:"
|
|
2939
3085
|
msgstr "新電子郵件:"
|
|
2940
3086
|
|
|
@@ -2943,7 +3089,7 @@ msgstr "新電子郵件:"
|
|
|
2943
3089
|
msgid "New facet"
|
|
2944
3090
|
msgstr "新增屬性"
|
|
2945
3091
|
|
|
2946
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
3092
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:114
|
|
2947
3093
|
msgid "New Facet"
|
|
2948
3094
|
msgstr "新增屬性"
|
|
2949
3095
|
|
|
@@ -2961,7 +3107,7 @@ msgid "New option"
|
|
|
2961
3107
|
msgstr "新增選項"
|
|
2962
3108
|
|
|
2963
3109
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:43
|
|
2964
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
3110
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:122
|
|
2965
3111
|
msgid "New payment method"
|
|
2966
3112
|
msgstr "新增付款方式"
|
|
2967
3113
|
|
|
@@ -2969,8 +3115,8 @@ msgstr "新增付款方式"
|
|
|
2969
3115
|
msgid "New Payment Method"
|
|
2970
3116
|
msgstr "新增付款方式"
|
|
2971
3117
|
|
|
2972
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
2973
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
3118
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:55
|
|
3119
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:114
|
|
2974
3120
|
msgid "New product"
|
|
2975
3121
|
msgstr "新增商品"
|
|
2976
3122
|
|
|
@@ -2986,12 +3132,12 @@ msgstr "新增商品選項"
|
|
|
2986
3132
|
msgid "New product option group"
|
|
2987
3133
|
msgstr "新增商品選項群組"
|
|
2988
3134
|
|
|
2989
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3135
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:218
|
|
2990
3136
|
msgid "New product variant"
|
|
2991
3137
|
msgstr "新增商品變體"
|
|
2992
3138
|
|
|
2993
3139
|
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:45
|
|
2994
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3140
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:129
|
|
2995
3141
|
msgid "New promotion"
|
|
2996
3142
|
msgstr "新增促銷"
|
|
2997
3143
|
|
|
@@ -3018,7 +3164,7 @@ msgid "New Seller"
|
|
|
3018
3164
|
msgstr "新增賣家"
|
|
3019
3165
|
|
|
3020
3166
|
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:44
|
|
3021
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
3167
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:115
|
|
3022
3168
|
msgid "New shipping method"
|
|
3023
3169
|
msgstr "新增配送方式"
|
|
3024
3170
|
|
|
@@ -3062,7 +3208,7 @@ msgstr "新視窗"
|
|
|
3062
3208
|
msgid "New zone"
|
|
3063
3209
|
msgstr "新增區域"
|
|
3064
3210
|
|
|
3065
|
-
#: src/app/routes/_authenticated/_zones/zones.tsx:
|
|
3211
|
+
#: src/app/routes/_authenticated/_zones/zones.tsx:57
|
|
3066
3212
|
msgid "New Zone"
|
|
3067
3213
|
msgstr "新增區域"
|
|
3068
3214
|
|
|
@@ -3070,7 +3216,7 @@ msgstr "新增區域"
|
|
|
3070
3216
|
msgid "Next Execution"
|
|
3071
3217
|
msgstr "下次執行"
|
|
3072
3218
|
|
|
3073
|
-
#: src/lib/components/data-table/data-table-bulk-actions.tsx:
|
|
3219
|
+
#: src/lib/components/data-table/data-table-bulk-actions.tsx:93
|
|
3074
3220
|
#: src/lib/components/shared/asset/asset-bulk-actions.tsx:102
|
|
3075
3221
|
msgid "No actions available"
|
|
3076
3222
|
msgstr "無可用動作"
|
|
@@ -3087,7 +3233,7 @@ msgstr "找不到地址"
|
|
|
3087
3233
|
msgid "No alerts"
|
|
3088
3234
|
msgstr "無提醒"
|
|
3089
3235
|
|
|
3090
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3236
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:289
|
|
3091
3237
|
msgid "No billing address"
|
|
3092
3238
|
msgstr "無帳單地址"
|
|
3093
3239
|
|
|
@@ -3095,8 +3241,8 @@ msgstr "無帳單地址"
|
|
|
3095
3241
|
msgid "No countries found"
|
|
3096
3242
|
msgstr "找不到國家"
|
|
3097
3243
|
|
|
3098
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
3099
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3244
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:282
|
|
3245
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:236
|
|
3100
3246
|
msgid "No customer"
|
|
3101
3247
|
msgstr "無客戶"
|
|
3102
3248
|
|
|
@@ -3116,11 +3262,11 @@ msgstr "找不到此訂單的符合條件的配送方式。"
|
|
|
3116
3262
|
msgid "No facet values"
|
|
3117
3263
|
msgstr "無屬性值"
|
|
3118
3264
|
|
|
3119
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
3265
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:327
|
|
3120
3266
|
msgid "No fulfillments"
|
|
3121
3267
|
msgstr "無履行"
|
|
3122
3268
|
|
|
3123
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
3269
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:336
|
|
3124
3270
|
msgid "No global languages configured"
|
|
3125
3271
|
msgstr "未設定全域語言"
|
|
3126
3272
|
|
|
@@ -3136,7 +3282,7 @@ msgstr "找不到項目"
|
|
|
3136
3282
|
msgid "No items selected"
|
|
3137
3283
|
msgstr "未選取項目"
|
|
3138
3284
|
|
|
3139
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3285
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:246
|
|
3140
3286
|
msgid "No modifications made"
|
|
3141
3287
|
msgstr "未進行修改"
|
|
3142
3288
|
|
|
@@ -3161,12 +3307,12 @@ msgstr "這些變更不需要付款或退款。"
|
|
|
3161
3307
|
msgid "No payment or refund required"
|
|
3162
3308
|
msgstr "不需要付款或退款"
|
|
3163
3309
|
|
|
3164
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
3310
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:148
|
|
3165
3311
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:184
|
|
3166
3312
|
msgid "No result yet"
|
|
3167
3313
|
msgstr "尚無結果"
|
|
3168
3314
|
|
|
3169
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
3315
|
+
#: src/lib/components/data-table/data-table.tsx:531
|
|
3170
3316
|
#: src/lib/components/shared/customer-group-selector.tsx:58
|
|
3171
3317
|
msgid "No results"
|
|
3172
3318
|
msgstr "無結果"
|
|
@@ -3180,7 +3326,7 @@ msgstr "找不到結果"
|
|
|
3180
3326
|
msgid "No sellers found"
|
|
3181
3327
|
msgstr "找不到賣家"
|
|
3182
3328
|
|
|
3183
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3329
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:263
|
|
3184
3330
|
msgid "No shipping address"
|
|
3185
3331
|
msgstr "無配送地址"
|
|
3186
3332
|
|
|
@@ -3223,8 +3369,12 @@ msgstr "未執行"
|
|
|
3223
3369
|
msgid "Not set"
|
|
3224
3370
|
msgstr "未設定"
|
|
3225
3371
|
|
|
3372
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:251
|
|
3373
|
+
msgid "Note"
|
|
3374
|
+
msgstr "備註"
|
|
3375
|
+
|
|
3226
3376
|
#: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:43
|
|
3227
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3377
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:76
|
|
3228
3378
|
msgid "Note added"
|
|
3229
3379
|
msgstr "備註已新增"
|
|
3230
3380
|
|
|
@@ -3236,10 +3386,14 @@ msgstr "備註為私人"
|
|
|
3236
3386
|
msgid "Off"
|
|
3237
3387
|
msgstr "關閉"
|
|
3238
3388
|
|
|
3239
|
-
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:
|
|
3389
|
+
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:159
|
|
3240
3390
|
msgid "Old email:"
|
|
3241
3391
|
msgstr "舊電子郵件:"
|
|
3242
3392
|
|
|
3393
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:29
|
|
3394
|
+
msgid "Only draft orders can be completed"
|
|
3395
|
+
msgstr "只有草稿訂單可以完成"
|
|
3396
|
+
|
|
3243
3397
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:269
|
|
3244
3398
|
msgid "Option"
|
|
3245
3399
|
msgstr "選項"
|
|
@@ -3287,9 +3441,9 @@ msgstr "選項值"
|
|
|
3287
3441
|
msgid "OR"
|
|
3288
3442
|
msgstr "或"
|
|
3289
3443
|
|
|
3290
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
3291
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3292
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3444
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:132
|
|
3445
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:85
|
|
3446
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:112
|
|
3293
3447
|
msgid "Order cancelled"
|
|
3294
3448
|
msgstr "訂單已取消"
|
|
3295
3449
|
|
|
@@ -3297,33 +3451,42 @@ msgstr "訂單已取消"
|
|
|
3297
3451
|
msgid "Order Count"
|
|
3298
3452
|
msgstr "訂單數量"
|
|
3299
3453
|
|
|
3300
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3454
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:90
|
|
3301
3455
|
msgid "Order custom fields updated"
|
|
3302
3456
|
msgstr "訂單自訂欄位已更新"
|
|
3303
3457
|
|
|
3304
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3458
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:97
|
|
3305
3459
|
msgid "Order delivered"
|
|
3306
3460
|
msgstr "訂單已送達"
|
|
3307
3461
|
|
|
3308
|
-
#: src/app/routes/_authenticated/_orders/components/
|
|
3462
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:36
|
|
3463
|
+
msgid "Order draft is ready to be completed"
|
|
3464
|
+
msgstr "訂單草稿已準備就緒可以完成"
|
|
3465
|
+
|
|
3466
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:34
|
|
3467
|
+
msgid "Order draft isn't ready to be completed"
|
|
3468
|
+
msgstr "訂單草稿尚未準備就緒"
|
|
3469
|
+
|
|
3470
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:82
|
|
3309
3471
|
msgid "Order fulfilled"
|
|
3310
3472
|
msgstr "訂單已履行"
|
|
3311
3473
|
|
|
3312
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
3474
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:260
|
|
3313
3475
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:30
|
|
3314
3476
|
msgid "Order history"
|
|
3315
3477
|
msgstr "訂單歷程"
|
|
3316
3478
|
|
|
3317
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3479
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:144
|
|
3318
3480
|
msgid "Order line removed"
|
|
3319
3481
|
msgstr "訂單行已移除"
|
|
3320
3482
|
|
|
3321
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3483
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:128
|
|
3322
3484
|
msgid "Order line updated"
|
|
3323
3485
|
msgstr "訂單行已更新"
|
|
3324
3486
|
|
|
3325
3487
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:241
|
|
3326
|
-
#: src/app/routes/_authenticated/_orders/
|
|
3488
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:83
|
|
3489
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:172
|
|
3327
3490
|
msgid "Order lines"
|
|
3328
3491
|
msgstr "訂單行"
|
|
3329
3492
|
|
|
@@ -3332,11 +3495,11 @@ msgid "Order metrics"
|
|
|
3332
3495
|
msgstr "訂單指標"
|
|
3333
3496
|
|
|
3334
3497
|
#. placeholder {0}: entry.data.modificationId
|
|
3335
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
3498
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:76
|
|
3336
3499
|
msgid "Order modification #{0}"
|
|
3337
3500
|
msgstr "訂單修改 #{0}"
|
|
3338
3501
|
|
|
3339
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3502
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:103
|
|
3340
3503
|
msgid "Order modified"
|
|
3341
3504
|
msgstr "訂單已修改"
|
|
3342
3505
|
|
|
@@ -3344,12 +3507,12 @@ msgstr "訂單已修改"
|
|
|
3344
3507
|
msgid "Order not found"
|
|
3345
3508
|
msgstr "找不到訂單"
|
|
3346
3509
|
|
|
3347
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3510
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:79
|
|
3348
3511
|
msgid "Order placed"
|
|
3349
3512
|
msgstr "訂單已下單"
|
|
3350
3513
|
|
|
3351
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3352
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3514
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:88
|
|
3515
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:94
|
|
3353
3516
|
msgid "Order shipped"
|
|
3354
3517
|
msgstr "訂單已出貨"
|
|
3355
3518
|
|
|
@@ -3357,7 +3520,7 @@ msgstr "訂單已出貨"
|
|
|
3357
3520
|
msgid "Order Total"
|
|
3358
3521
|
msgstr "訂單總額"
|
|
3359
3522
|
|
|
3360
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3523
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:90
|
|
3361
3524
|
msgid "Order transitioned"
|
|
3362
3525
|
msgstr "訂單已轉換"
|
|
3363
3526
|
|
|
@@ -3375,22 +3538,31 @@ msgstr "訂單"
|
|
|
3375
3538
|
msgid "Orders Summary"
|
|
3376
3539
|
msgstr "訂單摘要"
|
|
3377
3540
|
|
|
3378
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3541
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:373
|
|
3379
3542
|
msgid "Out-of-stock threshold"
|
|
3380
3543
|
msgstr "缺貨臨界值"
|
|
3381
3544
|
|
|
3545
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:258
|
|
3546
|
+
msgid "Override"
|
|
3547
|
+
msgstr "覆蓋"
|
|
3548
|
+
|
|
3382
3549
|
#. placeholder {0}: table.getState().pagination.pageIndex + 1
|
|
3383
3550
|
#. placeholder {1}: table.getPageCount() || 1
|
|
3384
3551
|
#: src/lib/components/data-table/data-table-pagination.tsx:44
|
|
3385
3552
|
msgid "Page {0} of {1}"
|
|
3386
3553
|
msgstr "第 {0} 頁,共 {1} 頁"
|
|
3387
3554
|
|
|
3388
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3555
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:456
|
|
3389
3556
|
msgid "Parent product"
|
|
3390
3557
|
msgstr "父級產品"
|
|
3391
3558
|
|
|
3559
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:285
|
|
3560
|
+
msgid "Partial refund completed"
|
|
3561
|
+
msgstr "部分退款已完成"
|
|
3562
|
+
|
|
3392
3563
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:137
|
|
3393
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
3564
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:113
|
|
3565
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:130
|
|
3394
3566
|
#: src/lib/components/login/login-form.tsx:96
|
|
3395
3567
|
msgid "Password"
|
|
3396
3568
|
msgstr "密碼"
|
|
@@ -3412,11 +3584,11 @@ msgstr "密碼已更新"
|
|
|
3412
3584
|
|
|
3413
3585
|
#. placeholder {0}: entry.data.paymentId
|
|
3414
3586
|
#. placeholder {1}: entry.data.to
|
|
3415
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
3587
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:26
|
|
3416
3588
|
msgid "Payment #{0} transitioned to {1}"
|
|
3417
3589
|
msgstr "付款 #{0} 已轉換到 {1}"
|
|
3418
3590
|
|
|
3419
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3591
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:64
|
|
3420
3592
|
msgid "Payment authorized"
|
|
3421
3593
|
msgstr "付款已授權"
|
|
3422
3594
|
|
|
@@ -3424,15 +3596,15 @@ msgstr "付款已授權"
|
|
|
3424
3596
|
msgid "Payment cancelled successfully"
|
|
3425
3597
|
msgstr "付款已成功取消"
|
|
3426
3598
|
|
|
3427
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
3599
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:248
|
|
3428
3600
|
msgid "Payment details"
|
|
3429
3601
|
msgstr "付款詳細資料"
|
|
3430
3602
|
|
|
3431
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
3603
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:173
|
|
3432
3604
|
msgid "Payment eligibility checker"
|
|
3433
3605
|
msgstr "付款資格檢查器"
|
|
3434
3606
|
|
|
3435
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3607
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:67
|
|
3436
3608
|
msgid "Payment failed"
|
|
3437
3609
|
msgstr "付款失敗"
|
|
3438
3610
|
|
|
@@ -3455,7 +3627,7 @@ msgstr "付款方式為必填欄位"
|
|
|
3455
3627
|
msgid "Payment Methods"
|
|
3456
3628
|
msgstr "付款方式"
|
|
3457
3629
|
|
|
3458
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3630
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:61
|
|
3459
3631
|
msgid "Payment settled"
|
|
3460
3632
|
msgstr "付款已完成"
|
|
3461
3633
|
|
|
@@ -3467,11 +3639,11 @@ msgstr "付款已成功完成"
|
|
|
3467
3639
|
msgid "Payment state updated successfully"
|
|
3468
3640
|
msgstr "付款狀態已成功更新"
|
|
3469
3641
|
|
|
3470
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3642
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:69
|
|
3471
3643
|
msgid "Payment transitioned"
|
|
3472
3644
|
msgstr "付款已轉換"
|
|
3473
3645
|
|
|
3474
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3646
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:206
|
|
3475
3647
|
msgid "Per customer usage limit"
|
|
3476
3648
|
msgstr "每位客戶使用限制"
|
|
3477
3649
|
|
|
@@ -3489,7 +3661,7 @@ msgstr "電話號碼"
|
|
|
3489
3661
|
msgid "Phone Number"
|
|
3490
3662
|
msgstr "電話號碼"
|
|
3491
3663
|
|
|
3492
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
3664
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:107
|
|
3493
3665
|
msgid "Placed At"
|
|
3494
3666
|
msgstr "下單時間"
|
|
3495
3667
|
|
|
@@ -3497,7 +3669,7 @@ msgstr "下單時間"
|
|
|
3497
3669
|
msgid "Please add products and complete the shipping address to run the test."
|
|
3498
3670
|
msgstr "請新增商品並填寫配送地址以執行測試。"
|
|
3499
3671
|
|
|
3500
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
3672
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:311
|
|
3501
3673
|
msgid "Please select a target collection"
|
|
3502
3674
|
msgstr "請選取目標集合"
|
|
3503
3675
|
|
|
@@ -3512,7 +3684,7 @@ msgstr "郵遞區號"
|
|
|
3512
3684
|
msgid "Preview"
|
|
3513
3685
|
msgstr "預覽"
|
|
3514
3686
|
|
|
3515
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3687
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:215
|
|
3516
3688
|
msgid "Preview changes"
|
|
3517
3689
|
msgstr "預覽變更"
|
|
3518
3690
|
|
|
@@ -3520,15 +3692,16 @@ msgstr "預覽變更"
|
|
|
3520
3692
|
msgid "Preview order modifications"
|
|
3521
3693
|
msgstr "預覽訂單修改"
|
|
3522
3694
|
|
|
3695
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:89
|
|
3523
3696
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:49
|
|
3524
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3697
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:283
|
|
3525
3698
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:340
|
|
3526
3699
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:212
|
|
3527
3700
|
#: src/lib/components/layout/language-dialog.tsx:121
|
|
3528
3701
|
msgid "Price"
|
|
3529
3702
|
msgstr "價格"
|
|
3530
3703
|
|
|
3531
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3704
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:263
|
|
3532
3705
|
msgid "Price and tax"
|
|
3533
3706
|
msgstr "價格和稅金"
|
|
3534
3707
|
|
|
@@ -3540,16 +3713,16 @@ msgstr "價格轉換係數"
|
|
|
3540
3713
|
msgid "Prices include tax for default tax zone"
|
|
3541
3714
|
msgstr "價格包含預設稅務區域的稅金"
|
|
3542
3715
|
|
|
3543
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
3716
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:45
|
|
3544
3717
|
msgid "private"
|
|
3545
3718
|
msgstr "私人"
|
|
3546
3719
|
|
|
3547
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
3720
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:153
|
|
3548
3721
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:112
|
|
3549
3722
|
msgid "Private"
|
|
3550
3723
|
msgstr "私人"
|
|
3551
3724
|
|
|
3552
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
3725
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:154
|
|
3553
3726
|
msgid "Private collections are not visible in the shop"
|
|
3554
3727
|
msgstr "私人集合在商店中不可見"
|
|
3555
3728
|
|
|
@@ -3557,12 +3730,17 @@ msgstr "私人集合在商店中不可見"
|
|
|
3557
3730
|
msgid "Private facets are not visible in the shop"
|
|
3558
3731
|
msgstr "私人屬性在商店中不可見"
|
|
3559
3732
|
|
|
3733
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:360
|
|
3734
|
+
msgid "Processing..."
|
|
3735
|
+
msgstr "處理中..."
|
|
3736
|
+
|
|
3560
3737
|
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:87
|
|
3561
3738
|
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:44
|
|
3739
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:93
|
|
3562
3740
|
msgid "Product"
|
|
3563
3741
|
msgstr "商品"
|
|
3564
3742
|
|
|
3565
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
3743
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:144
|
|
3566
3744
|
msgid "Product name"
|
|
3567
3745
|
msgstr "商品名稱"
|
|
3568
3746
|
|
|
@@ -3574,20 +3752,20 @@ msgstr "商品選項群組"
|
|
|
3574
3752
|
msgid "Product options"
|
|
3575
3753
|
msgstr "商品選項"
|
|
3576
3754
|
|
|
3577
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
3755
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:202
|
|
3578
3756
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:170
|
|
3579
3757
|
msgid "Product Options"
|
|
3580
3758
|
msgstr "商品選項"
|
|
3581
3759
|
|
|
3582
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3760
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:69
|
|
3583
3761
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:18
|
|
3584
3762
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:26
|
|
3585
3763
|
msgid "Product Variants"
|
|
3586
3764
|
msgstr "商品變體"
|
|
3587
3765
|
|
|
3588
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3766
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:64
|
|
3589
3767
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:54
|
|
3590
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
3768
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:54
|
|
3591
3769
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:61
|
|
3592
3770
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:79
|
|
3593
3771
|
#: src/app/routes/_authenticated/_products/products.tsx:24
|
|
@@ -3595,8 +3773,8 @@ msgstr "商品變體"
|
|
|
3595
3773
|
msgid "Products"
|
|
3596
3774
|
msgstr "商品"
|
|
3597
3775
|
|
|
3598
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
3599
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
3776
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:32
|
|
3777
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:77
|
|
3600
3778
|
#: src/lib/components/layout/nav-user.tsx:108
|
|
3601
3779
|
msgid "Profile"
|
|
3602
3780
|
msgstr "個人資料"
|
|
@@ -3607,17 +3785,21 @@ msgstr "個人資料"
|
|
|
3607
3785
|
msgid "Promotions"
|
|
3608
3786
|
msgstr "促銷"
|
|
3609
3787
|
|
|
3610
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
3788
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:45
|
|
3611
3789
|
msgid "public"
|
|
3612
3790
|
msgstr "公開"
|
|
3613
3791
|
|
|
3792
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:99
|
|
3793
|
+
msgid "Qty"
|
|
3794
|
+
msgstr "數量"
|
|
3795
|
+
|
|
3614
3796
|
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:111
|
|
3615
3797
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:265
|
|
3616
3798
|
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:80
|
|
3617
3799
|
msgid "Quantity"
|
|
3618
3800
|
msgstr "數量"
|
|
3619
3801
|
|
|
3620
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
3802
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:220
|
|
3621
3803
|
msgid "Queue"
|
|
3622
3804
|
msgstr "佇列"
|
|
3623
3805
|
|
|
@@ -3626,9 +3808,14 @@ msgid "Rate"
|
|
|
3626
3808
|
msgstr "費率"
|
|
3627
3809
|
|
|
3628
3810
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:233
|
|
3811
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:216
|
|
3629
3812
|
msgid "Reason"
|
|
3630
3813
|
msgstr "原因"
|
|
3631
3814
|
|
|
3815
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:127
|
|
3816
|
+
msgid "Reason:"
|
|
3817
|
+
msgstr "原因:"
|
|
3818
|
+
|
|
3632
3819
|
#: src/app/routes/_authenticated/_products/products.tsx:107
|
|
3633
3820
|
msgid "Rebuild search index"
|
|
3634
3821
|
msgstr "重建搜尋索引"
|
|
@@ -3641,12 +3828,29 @@ msgstr "重新整理"
|
|
|
3641
3828
|
msgid "Refresh data"
|
|
3642
3829
|
msgstr "重新整理資料"
|
|
3643
3830
|
|
|
3831
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:102
|
|
3832
|
+
msgid "Refund"
|
|
3833
|
+
msgstr "退款"
|
|
3834
|
+
|
|
3835
|
+
#. placeholder {0}: formatCurrency(refund.amountToRefundTotal, order.currencyCode)
|
|
3836
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:362
|
|
3837
|
+
msgid "Refund {0}"
|
|
3838
|
+
msgstr "退款 {0}"
|
|
3839
|
+
|
|
3840
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:169
|
|
3841
|
+
msgid "Refund & Cancel"
|
|
3842
|
+
msgstr "退款並取消"
|
|
3843
|
+
|
|
3644
3844
|
#. placeholder {0}: entry.data.refundId
|
|
3645
3845
|
#. placeholder {1}: entry.data.to
|
|
3646
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:
|
|
3846
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:39
|
|
3647
3847
|
msgid "Refund #{0} transitioned to {1}"
|
|
3648
3848
|
msgstr "退款 #{0} 已轉換到 {1}"
|
|
3649
3849
|
|
|
3850
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:72
|
|
3851
|
+
msgid "Refund and cancel order"
|
|
3852
|
+
msgstr "退款並取消訂單"
|
|
3853
|
+
|
|
3650
3854
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:229
|
|
3651
3855
|
msgid "Refund from this method"
|
|
3652
3856
|
msgstr "從此方式退款"
|
|
@@ -3655,11 +3859,15 @@ msgstr "從此方式退款"
|
|
|
3655
3859
|
msgid "Refund ID"
|
|
3656
3860
|
msgstr "退款 ID"
|
|
3657
3861
|
|
|
3862
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:299
|
|
3863
|
+
msgid "Refund processed successfully"
|
|
3864
|
+
msgstr "退款處理成功"
|
|
3865
|
+
|
|
3658
3866
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:170
|
|
3659
3867
|
msgid "Refund required"
|
|
3660
3868
|
msgstr "需要退款"
|
|
3661
3869
|
|
|
3662
|
-
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:
|
|
3870
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:72
|
|
3663
3871
|
msgid "Refund settled"
|
|
3664
3872
|
msgstr "退款已完成"
|
|
3665
3873
|
|
|
@@ -3667,7 +3875,24 @@ msgstr "退款已完成"
|
|
|
3667
3875
|
msgid "Refund settled successfully"
|
|
3668
3876
|
msgstr "退款已成功完成"
|
|
3669
3877
|
|
|
3670
|
-
#: src/app/routes/_authenticated/_orders/components/
|
|
3878
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:200
|
|
3879
|
+
msgid "Refund shipping"
|
|
3880
|
+
msgstr "退還運費"
|
|
3881
|
+
|
|
3882
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:244
|
|
3883
|
+
msgid "Refund total"
|
|
3884
|
+
msgstr "退款總額"
|
|
3885
|
+
|
|
3886
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:200
|
|
3887
|
+
msgid "Refund total cannot be negative"
|
|
3888
|
+
msgstr "退款總額不能為負數"
|
|
3889
|
+
|
|
3890
|
+
#. placeholder {0}: formatCurrency(totalRefundableAmount, order.currencyCode)
|
|
3891
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:205
|
|
3892
|
+
msgid "Refund total exceeds maximum refundable amount of {0}"
|
|
3893
|
+
msgstr "退款總額超過最大可退款金額 {0}"
|
|
3894
|
+
|
|
3895
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:74
|
|
3671
3896
|
msgid "Refund transitioned"
|
|
3672
3897
|
msgstr "退款已轉換"
|
|
3673
3898
|
|
|
@@ -3681,7 +3906,7 @@ msgstr "退款 ({0})"
|
|
|
3681
3906
|
msgid "Regenerate slug from source field"
|
|
3682
3907
|
msgstr "從來源欄位重新產生 slug"
|
|
3683
3908
|
|
|
3684
|
-
#: src/app/routes/_authenticated/_zones/zones.tsx:
|
|
3909
|
+
#: src/app/routes/_authenticated/_zones/zones.tsx:37
|
|
3685
3910
|
msgid "Regions"
|
|
3686
3911
|
msgstr "地區"
|
|
3687
3912
|
|
|
@@ -3693,7 +3918,7 @@ msgstr "已註冊"
|
|
|
3693
3918
|
msgid "Remaining:"
|
|
3694
3919
|
msgstr "剩餘:"
|
|
3695
3920
|
|
|
3696
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3921
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:507
|
|
3697
3922
|
msgid "Remove"
|
|
3698
3923
|
msgstr "移除"
|
|
3699
3924
|
|
|
@@ -3703,7 +3928,7 @@ msgstr "從目前通路中移除"
|
|
|
3703
3928
|
|
|
3704
3929
|
#: src/app/routes/_authenticated/_zones/components/zone-bulk-actions.tsx:49
|
|
3705
3930
|
msgid "Remove from zone"
|
|
3706
|
-
msgstr ""
|
|
3931
|
+
msgstr "從區域移除"
|
|
3707
3932
|
|
|
3708
3933
|
#: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:278
|
|
3709
3934
|
msgid "Remove group"
|
|
@@ -3721,9 +3946,9 @@ msgstr "移除連結"
|
|
|
3721
3946
|
#. placeholder {1}: selection.length === 1 ? 'country' : 'countries'
|
|
3722
3947
|
#: src/app/routes/_authenticated/_zones/components/zone-bulk-actions.tsx:31
|
|
3723
3948
|
msgid "Removed {0} {1} from zone"
|
|
3724
|
-
msgstr ""
|
|
3949
|
+
msgstr "已從區域移除 {0} {1}"
|
|
3725
3950
|
|
|
3726
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3951
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:218
|
|
3727
3952
|
msgid "Removed coupon codes"
|
|
3728
3953
|
msgstr "已移除優惠券代碼"
|
|
3729
3954
|
|
|
@@ -3732,7 +3957,7 @@ msgid "Removed from group"
|
|
|
3732
3957
|
msgstr "已從群組中移除"
|
|
3733
3958
|
|
|
3734
3959
|
#. placeholder {0}: removedLines.length
|
|
3735
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3960
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:194
|
|
3736
3961
|
msgid "Removing {0} item(s)"
|
|
3737
3962
|
msgstr "正在移除 {0} 個項目"
|
|
3738
3963
|
|
|
@@ -3744,6 +3969,10 @@ msgstr "重新命名"
|
|
|
3744
3969
|
msgid "Reset"
|
|
3745
3970
|
msgstr "重設"
|
|
3746
3971
|
|
|
3972
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:105
|
|
3973
|
+
msgid "Return to stock"
|
|
3974
|
+
msgstr "退回庫存"
|
|
3975
|
+
|
|
3747
3976
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:152
|
|
3748
3977
|
msgid "Review the changes before applying them to the order."
|
|
3749
3978
|
msgstr "在將變更套用到訂單之前,請先檢閱變更。"
|
|
@@ -3781,7 +4010,7 @@ msgstr "相同視窗"
|
|
|
3781
4010
|
msgid "Sample Formatting"
|
|
3782
4011
|
msgstr "範例格式"
|
|
3783
4012
|
|
|
3784
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
4013
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:243
|
|
3785
4014
|
#: src/lib/components/data-table/views-sheet.tsx:210
|
|
3786
4015
|
#: src/lib/components/shared/history-timeline/history-note-editor.tsx:54
|
|
3787
4016
|
msgid "Save"
|
|
@@ -3797,11 +4026,11 @@ msgid "Save Address"
|
|
|
3797
4026
|
msgstr "儲存地址"
|
|
3798
4027
|
|
|
3799
4028
|
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
|
|
3800
|
-
msgid "Save changes"
|
|
3801
|
-
msgstr "儲存變更"
|
|
4029
|
+
#~ msgid "Save changes"
|
|
4030
|
+
#~ msgstr "儲存變更"
|
|
3802
4031
|
|
|
3803
4032
|
#: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:206
|
|
3804
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
4033
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:380
|
|
3805
4034
|
msgid "Save Changes"
|
|
3806
4035
|
msgstr "儲存變更"
|
|
3807
4036
|
|
|
@@ -3818,7 +4047,7 @@ msgid "Save View"
|
|
|
3818
4047
|
msgstr "儲存檢視"
|
|
3819
4048
|
|
|
3820
4049
|
#: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:206
|
|
3821
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
4050
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:380
|
|
3822
4051
|
msgid "Saving..."
|
|
3823
4052
|
msgstr "正在儲存..."
|
|
3824
4053
|
|
|
@@ -3915,7 +4144,11 @@ msgstr "選取一個國家"
|
|
|
3915
4144
|
msgid "Select a currency"
|
|
3916
4145
|
msgstr "選取一種貨幣"
|
|
3917
4146
|
|
|
3918
|
-
#: src/app/routes/_authenticated/
|
|
4147
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:23
|
|
4148
|
+
msgid "Select a customer to continue"
|
|
4149
|
+
msgstr "選擇客戶以繼續"
|
|
4150
|
+
|
|
4151
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:83
|
|
3919
4152
|
msgid "Select a destination collection"
|
|
3920
4153
|
msgstr "選取目標集合"
|
|
3921
4154
|
|
|
@@ -3923,12 +4156,16 @@ msgstr "選取目標集合"
|
|
|
3923
4156
|
msgid "Select a language"
|
|
3924
4157
|
msgstr "選取一種語言"
|
|
3925
4158
|
|
|
4159
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:220
|
|
4160
|
+
msgid "Select a reason..."
|
|
4161
|
+
msgstr "選擇原因..."
|
|
4162
|
+
|
|
3926
4163
|
#: src/lib/components/shared/role-selector.tsx:52
|
|
3927
4164
|
msgid "Select a role"
|
|
3928
4165
|
msgstr "選取一個角色"
|
|
3929
4166
|
|
|
3930
4167
|
#. placeholder {0}: collectionsToMove.length === 1 ? 'this collection' : `${collectionsToMove.length} collections`
|
|
3931
|
-
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:
|
|
4168
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:342
|
|
3932
4169
|
msgid "Select a target collection to move {0} to."
|
|
3933
4170
|
msgstr "選取要將 {0} 移動到的目標集合。"
|
|
3934
4171
|
|
|
@@ -3948,11 +4185,11 @@ msgstr "選取地址"
|
|
|
3948
4185
|
msgid "Select an address"
|
|
3949
4186
|
msgstr "選取一個地址"
|
|
3950
4187
|
|
|
3951
|
-
#: src/lib/components/data-input/select-with-options.tsx:
|
|
4188
|
+
#: src/lib/components/data-input/select-with-options.tsx:97
|
|
3952
4189
|
msgid "Select an option"
|
|
3953
4190
|
msgstr "選取一個選項"
|
|
3954
4191
|
|
|
3955
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
4192
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:278
|
|
3956
4193
|
msgid "Select Available Languages"
|
|
3957
4194
|
msgstr "選取可用語言"
|
|
3958
4195
|
|
|
@@ -3972,7 +4209,7 @@ msgstr "選擇日期範圍"
|
|
|
3972
4209
|
msgid "Select display language"
|
|
3973
4210
|
msgstr "選取顯示語言"
|
|
3974
4211
|
|
|
3975
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
4212
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:340
|
|
3976
4213
|
msgid "Select from globally available languages for this channel"
|
|
3977
4214
|
msgstr "從此通路的全域可用語言中選取"
|
|
3978
4215
|
|
|
@@ -3984,10 +4221,18 @@ msgstr "選取項目"
|
|
|
3984
4221
|
msgid "Select items"
|
|
3985
4222
|
msgstr "選取項目"
|
|
3986
4223
|
|
|
4224
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:75
|
|
4225
|
+
msgid "Select items to refund and optionally return to stock"
|
|
4226
|
+
msgstr "選擇要退款的商品,可選擇退回庫存"
|
|
4227
|
+
|
|
3987
4228
|
#: src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx:103
|
|
3988
4229
|
msgid "Select next state"
|
|
3989
4230
|
msgstr "選取下一個狀態"
|
|
3990
4231
|
|
|
4232
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:285
|
|
4233
|
+
msgid "Select payments to refund"
|
|
4234
|
+
msgstr "選擇要退款的付款"
|
|
4235
|
+
|
|
3991
4236
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:228
|
|
3992
4237
|
msgid "Select quantities to fulfill and configure the fulfillment handler"
|
|
3993
4238
|
msgstr "選取要履行的數量並設定履行處理器"
|
|
@@ -4027,7 +4272,11 @@ msgstr "賣家訂單"
|
|
|
4027
4272
|
msgid "Sellers"
|
|
4028
4273
|
msgstr "賣家"
|
|
4029
4274
|
|
|
4030
|
-
#: src/app/routes/_authenticated/_orders/
|
|
4275
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:27
|
|
4276
|
+
msgid "Set a shipping address and select a shipping method"
|
|
4277
|
+
msgstr "設定收貨地址並選擇配送方式"
|
|
4278
|
+
|
|
4279
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:414
|
|
4031
4280
|
msgid "Set custom fields"
|
|
4032
4281
|
msgstr "設定自訂欄位"
|
|
4033
4282
|
|
|
@@ -4047,8 +4296,8 @@ msgstr "設定所有通路可用的語言。然後,各個通路可以支援這
|
|
|
4047
4296
|
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."
|
|
4048
4297
|
msgstr "設定將此變體視為缺貨的庫存水準。使用負值可啟用延期交貨支援。可由商品變體覆寫。"
|
|
4049
4298
|
|
|
4050
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4051
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4299
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:375
|
|
4300
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:393
|
|
4052
4301
|
msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
|
|
4053
4302
|
msgstr "設定將此變體視為缺貨的庫存水準。使用負值可啟用延期交貨支援。"
|
|
4054
4303
|
|
|
@@ -4062,14 +4311,15 @@ msgstr "完成付款"
|
|
|
4062
4311
|
msgid "Settle refund"
|
|
4063
4312
|
msgstr "完成退款"
|
|
4064
4313
|
|
|
4065
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4314
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:66
|
|
4315
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:188
|
|
4066
4316
|
#: src/app/routes/_authenticated/_orders/orders.tsx:85
|
|
4067
4317
|
msgid "Shipping"
|
|
4068
4318
|
msgstr "配送"
|
|
4069
4319
|
|
|
4070
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
4071
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4072
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4320
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:289
|
|
4321
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:243
|
|
4322
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:434
|
|
4073
4323
|
msgid "Shipping address"
|
|
4074
4324
|
msgstr "配送地址"
|
|
4075
4325
|
|
|
@@ -4077,19 +4327,19 @@ msgstr "配送地址"
|
|
|
4077
4327
|
msgid "Shipping Address"
|
|
4078
4328
|
msgstr "配送地址"
|
|
4079
4329
|
|
|
4080
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4330
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:128
|
|
4081
4331
|
msgid "Shipping address changed"
|
|
4082
4332
|
msgstr "配送地址已變更"
|
|
4083
4333
|
|
|
4084
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4334
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:182
|
|
4085
4335
|
msgid "Shipping address set for order"
|
|
4086
4336
|
msgstr "訂單已設定配送地址"
|
|
4087
4337
|
|
|
4088
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4338
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:198
|
|
4089
4339
|
msgid "Shipping address unset for order"
|
|
4090
4340
|
msgstr "訂單已取消配送地址"
|
|
4091
4341
|
|
|
4092
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4342
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:142
|
|
4093
4343
|
msgid "Shipping method changed"
|
|
4094
4344
|
msgstr "配送方式已變更"
|
|
4095
4345
|
|
|
@@ -4101,7 +4351,7 @@ msgstr "配送方式適用於此訂單"
|
|
|
4101
4351
|
msgid "Shipping method is not eligible for this order"
|
|
4102
4352
|
msgstr "配送方式不適用於此訂單"
|
|
4103
4353
|
|
|
4104
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4354
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:217
|
|
4105
4355
|
msgid "Shipping method set for order"
|
|
4106
4356
|
msgstr "訂單已設定配送方式"
|
|
4107
4357
|
|
|
@@ -4111,6 +4361,10 @@ msgstr "訂單已設定配送方式"
|
|
|
4111
4361
|
msgid "Shipping Methods"
|
|
4112
4362
|
msgstr "配送方式"
|
|
4113
4363
|
|
|
4364
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:122
|
|
4365
|
+
msgid "Shipping refunded"
|
|
4366
|
+
msgstr "運費已退款"
|
|
4367
|
+
|
|
4114
4368
|
#: src/lib/components/layout/language-dialog.tsx:115
|
|
4115
4369
|
msgid "Short date"
|
|
4116
4370
|
msgstr "短日期"
|
|
@@ -4132,8 +4386,9 @@ msgstr "登入"
|
|
|
4132
4386
|
msgid "Sign in to access the admin dashboard"
|
|
4133
4387
|
msgstr "登入以存取管理儀表板"
|
|
4134
4388
|
|
|
4389
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:83
|
|
4135
4390
|
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:96
|
|
4136
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4391
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
|
|
4137
4392
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:334
|
|
4138
4393
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:195
|
|
4139
4394
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:209
|
|
@@ -4141,8 +4396,12 @@ msgstr "登入以存取管理儀表板"
|
|
|
4141
4396
|
msgid "SKU"
|
|
4142
4397
|
msgstr "SKU"
|
|
4143
4398
|
|
|
4144
|
-
#: src/app/routes/_authenticated/
|
|
4145
|
-
|
|
4399
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:131
|
|
4400
|
+
msgid "SKU:"
|
|
4401
|
+
msgstr "SKU:"
|
|
4402
|
+
|
|
4403
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:171
|
|
4404
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:150
|
|
4146
4405
|
msgid "Slug"
|
|
4147
4406
|
msgstr "Slug"
|
|
4148
4407
|
|
|
@@ -4162,14 +4421,14 @@ msgstr "部分資源已關閉"
|
|
|
4162
4421
|
msgid "Source"
|
|
4163
4422
|
msgstr "來源"
|
|
4164
4423
|
|
|
4165
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4424
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:176
|
|
4166
4425
|
msgid "Starts at"
|
|
4167
4426
|
msgstr "開始於"
|
|
4168
4427
|
|
|
4169
4428
|
#: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:108
|
|
4170
4429
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:217
|
|
4171
4430
|
#: src/app/routes/_authenticated/_orders/orders.tsx:101
|
|
4172
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
4431
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:231
|
|
4173
4432
|
msgid "State"
|
|
4174
4433
|
msgstr "州/省"
|
|
4175
4434
|
|
|
@@ -4183,11 +4442,11 @@ msgid "State/Province"
|
|
|
4183
4442
|
msgstr "州/省"
|
|
4184
4443
|
|
|
4185
4444
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:252
|
|
4186
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
4445
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:49
|
|
4187
4446
|
msgid "Status"
|
|
4188
4447
|
msgstr "狀態"
|
|
4189
4448
|
|
|
4190
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4449
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:336
|
|
4191
4450
|
msgid "Stock"
|
|
4192
4451
|
msgstr "庫存"
|
|
4193
4452
|
|
|
@@ -4195,12 +4454,12 @@ msgstr "庫存"
|
|
|
4195
4454
|
msgid "Stock allocated"
|
|
4196
4455
|
msgstr "庫存已配置"
|
|
4197
4456
|
|
|
4198
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4457
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:416
|
|
4199
4458
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:353
|
|
4200
4459
|
msgid "Stock level"
|
|
4201
4460
|
msgstr "庫存水準"
|
|
4202
4461
|
|
|
4203
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4462
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:341
|
|
4204
4463
|
msgid "Stock levels"
|
|
4205
4464
|
msgstr "庫存水準"
|
|
4206
4465
|
|
|
@@ -4228,7 +4487,7 @@ msgstr "街道地址"
|
|
|
4228
4487
|
msgid "Street Address 2"
|
|
4229
4488
|
msgstr "街道地址 2"
|
|
4230
4489
|
|
|
4231
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4490
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:52
|
|
4232
4491
|
msgid "Sub total"
|
|
4233
4492
|
msgstr "小計"
|
|
4234
4493
|
|
|
@@ -4256,7 +4515,7 @@ msgstr "成功建立管理員"
|
|
|
4256
4515
|
msgid "Successfully created channel"
|
|
4257
4516
|
msgstr "已成功建立通路"
|
|
4258
4517
|
|
|
4259
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
4518
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:105
|
|
4260
4519
|
msgid "Successfully created collection"
|
|
4261
4520
|
msgstr "已成功建立集合"
|
|
4262
4521
|
|
|
@@ -4284,11 +4543,11 @@ msgstr "已成功建立屬性值"
|
|
|
4284
4543
|
msgid "Successfully created option group"
|
|
4285
4544
|
msgstr "已成功建立選項群組"
|
|
4286
4545
|
|
|
4287
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
4546
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:101
|
|
4288
4547
|
msgid "Successfully created payment method"
|
|
4289
4548
|
msgstr "已成功建立付款方式"
|
|
4290
4549
|
|
|
4291
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
4550
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:98
|
|
4292
4551
|
msgid "Successfully created product"
|
|
4293
4552
|
msgstr "已成功建立商品"
|
|
4294
4553
|
|
|
@@ -4304,12 +4563,12 @@ msgstr "成功建立商品選項群組"
|
|
|
4304
4563
|
msgid "Successfully created product options"
|
|
4305
4564
|
msgstr "已成功建立商品選項"
|
|
4306
4565
|
|
|
4307
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4566
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:127
|
|
4308
4567
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:169
|
|
4309
4568
|
msgid "Successfully created product variant"
|
|
4310
4569
|
msgstr "已成功建立商品變體"
|
|
4311
4570
|
|
|
4312
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4571
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:105
|
|
4313
4572
|
msgid "Successfully created promotion"
|
|
4314
4573
|
msgstr "已成功建立促銷"
|
|
4315
4574
|
|
|
@@ -4321,7 +4580,7 @@ msgstr "已成功建立角色"
|
|
|
4321
4580
|
msgid "Successfully created seller"
|
|
4322
4581
|
msgstr "已成功建立賣家"
|
|
4323
4582
|
|
|
4324
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
4583
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:91
|
|
4325
4584
|
msgid "Successfully created shipping method"
|
|
4326
4585
|
msgstr "成功建立配送方式"
|
|
4327
4586
|
|
|
@@ -4357,6 +4616,10 @@ msgstr "已成功從通路中移除 {selectionLength} {entityType}"
|
|
|
4357
4616
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4358
4617
|
msgstr "已成功從通路中移除 {successCount} 個屬性"
|
|
4359
4618
|
|
|
4619
|
+
#: src/lib/components/shared/assigned-channels.tsx:39
|
|
4620
|
+
msgid "Successfully removed product from channel"
|
|
4621
|
+
msgstr "已成功從頻道移除產品"
|
|
4622
|
+
|
|
4360
4623
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4361
4624
|
msgid "Successfully updated administrator"
|
|
4362
4625
|
msgstr "成功更新管理員"
|
|
@@ -4369,7 +4632,7 @@ msgstr "已成功更新資源"
|
|
|
4369
4632
|
msgid "Successfully updated channel"
|
|
4370
4633
|
msgstr "已成功更新通路"
|
|
4371
4634
|
|
|
4372
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
4635
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:105
|
|
4373
4636
|
msgid "Successfully updated collection"
|
|
4374
4637
|
msgstr "已成功更新集合"
|
|
4375
4638
|
|
|
@@ -4401,16 +4664,16 @@ msgstr "已成功為 {entityIdsLength} {entityType} 更新屬性值"
|
|
|
4401
4664
|
msgid "Successfully updated global settings"
|
|
4402
4665
|
msgstr "已成功更新全域設定"
|
|
4403
4666
|
|
|
4404
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
4405
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4667
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:91
|
|
4668
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:56
|
|
4406
4669
|
msgid "Successfully updated order"
|
|
4407
4670
|
msgstr "已成功更新訂單"
|
|
4408
4671
|
|
|
4409
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
4672
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:102
|
|
4410
4673
|
msgid "Successfully updated payment method"
|
|
4411
4674
|
msgstr "已成功更新付款方式"
|
|
4412
4675
|
|
|
4413
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
4676
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:98
|
|
4414
4677
|
msgid "Successfully updated product"
|
|
4415
4678
|
msgstr "已成功更新商品"
|
|
4416
4679
|
|
|
@@ -4422,15 +4685,15 @@ msgstr "成功更新產品選項"
|
|
|
4422
4685
|
msgid "Successfully updated product option group"
|
|
4423
4686
|
msgstr "成功更新商品選項群組"
|
|
4424
4687
|
|
|
4425
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4688
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:128
|
|
4426
4689
|
msgid "Successfully updated product variant"
|
|
4427
4690
|
msgstr "已成功更新商品變體"
|
|
4428
4691
|
|
|
4429
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
4692
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:64
|
|
4430
4693
|
msgid "Successfully updated profile"
|
|
4431
4694
|
msgstr "已成功更新個人資料"
|
|
4432
4695
|
|
|
4433
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4696
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:105
|
|
4434
4697
|
msgid "Successfully updated promotion"
|
|
4435
4698
|
msgstr "已成功更新促銷"
|
|
4436
4699
|
|
|
@@ -4442,7 +4705,7 @@ msgstr "已成功更新角色"
|
|
|
4442
4705
|
msgid "Successfully updated seller"
|
|
4443
4706
|
msgstr "已成功更新賣家"
|
|
4444
4707
|
|
|
4445
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
4708
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:92
|
|
4446
4709
|
msgid "Successfully updated shipping method"
|
|
4447
4710
|
msgstr "成功更新配送方式"
|
|
4448
4711
|
|
|
@@ -4462,7 +4725,7 @@ msgstr "已成功更新稅率"
|
|
|
4462
4725
|
msgid "Successfully updated zone"
|
|
4463
4726
|
msgstr "已成功更新區域"
|
|
4464
4727
|
|
|
4465
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4728
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:195
|
|
4466
4729
|
msgid "Summary of modifications"
|
|
4467
4730
|
msgstr "修改摘要"
|
|
4468
4731
|
|
|
@@ -4470,7 +4733,7 @@ msgstr "修改摘要"
|
|
|
4470
4733
|
msgid "Super Admin"
|
|
4471
4734
|
msgstr "超級管理員"
|
|
4472
4735
|
|
|
4473
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4736
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:22
|
|
4474
4737
|
msgid "Surcharge"
|
|
4475
4738
|
msgstr "附加費用"
|
|
4476
4739
|
|
|
@@ -4493,16 +4756,21 @@ msgstr "稅基"
|
|
|
4493
4756
|
msgid "Tax Categories"
|
|
4494
4757
|
msgstr "稅務類別"
|
|
4495
4758
|
|
|
4496
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4497
|
-
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:
|
|
4759
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:268
|
|
4760
|
+
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:130
|
|
4498
4761
|
msgid "Tax category"
|
|
4499
4762
|
msgstr "稅務類別"
|
|
4500
4763
|
|
|
4764
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:124
|
|
4765
|
+
msgid "Tax description"
|
|
4766
|
+
msgstr "稅項描述"
|
|
4767
|
+
|
|
4768
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:110
|
|
4501
4769
|
#: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:17
|
|
4502
4770
|
msgid "Tax rate"
|
|
4503
4771
|
msgstr "稅率"
|
|
4504
4772
|
|
|
4505
|
-
#: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:
|
|
4773
|
+
#: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:83
|
|
4506
4774
|
msgid "Tax rate: {taxRate}%"
|
|
4507
4775
|
msgstr "稅率:{taxRate}%"
|
|
4508
4776
|
|
|
@@ -4512,7 +4780,7 @@ msgstr "稅率:{taxRate}%"
|
|
|
4512
4780
|
msgid "Tax Rates"
|
|
4513
4781
|
msgstr "稅率"
|
|
4514
4782
|
|
|
4515
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
4783
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:232
|
|
4516
4784
|
msgid "Tax summary"
|
|
4517
4785
|
msgstr "稅金摘要"
|
|
4518
4786
|
|
|
@@ -4562,11 +4830,11 @@ msgstr "正在測試配送方式..."
|
|
|
4562
4830
|
msgid "Testing shipping methods..."
|
|
4563
4831
|
msgstr "正在測試配送方式..."
|
|
4564
4832
|
|
|
4565
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
4833
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:120
|
|
4566
4834
|
msgid "The data that has been passed to the job"
|
|
4567
4835
|
msgstr "傳遞給工作的資料"
|
|
4568
4836
|
|
|
4569
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
4837
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:139
|
|
4570
4838
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:175
|
|
4571
4839
|
msgid "The result of the job"
|
|
4572
4840
|
msgstr "工作的結果"
|
|
@@ -4579,7 +4847,7 @@ msgstr "所選權限將套用至這些通路。"
|
|
|
4579
4847
|
msgid "The token is used to specify the channel when making API requests."
|
|
4580
4848
|
msgstr "在進行 API 要求時使用權杖來指定通路。"
|
|
4581
4849
|
|
|
4582
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4850
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:117
|
|
4583
4851
|
msgid "The variant could not be added. Ensure the parent product is enabled."
|
|
4584
4852
|
msgstr "無法新增變體。請確保父產品已啟用。"
|
|
4585
4853
|
|
|
@@ -4591,11 +4859,11 @@ msgstr "佈景主題"
|
|
|
4591
4859
|
msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
|
|
4592
4860
|
msgstr "這些是 <0>{customerGroupName}</0> 客戶群組中的客戶。"
|
|
4593
4861
|
|
|
4594
|
-
#: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:
|
|
4862
|
+
#: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:36
|
|
4595
4863
|
msgid "These are the facet values for the <0>{facetName}</0> facet."
|
|
4596
4864
|
msgstr "這些是 <0>{facetName}</0> 屬性的屬性值。"
|
|
4597
4865
|
|
|
4598
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
4866
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:293
|
|
4599
4867
|
msgid "These languages will be available for all channels to use"
|
|
4600
4868
|
msgstr "這些語言將可供所有通路使用"
|
|
4601
4869
|
|
|
@@ -4657,10 +4925,10 @@ msgid "Token"
|
|
|
4657
4925
|
msgstr "權杖"
|
|
4658
4926
|
|
|
4659
4927
|
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:157
|
|
4660
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4928
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:88
|
|
4661
4929
|
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:114
|
|
4662
4930
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:228
|
|
4663
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
4931
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:120
|
|
4664
4932
|
msgid "Total"
|
|
4665
4933
|
msgstr "總計"
|
|
4666
4934
|
|
|
@@ -4676,7 +4944,7 @@ msgstr "退款總計:"
|
|
|
4676
4944
|
msgid "Total Revenue"
|
|
4677
4945
|
msgstr "總收入"
|
|
4678
4946
|
|
|
4679
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4947
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:361
|
|
4680
4948
|
msgid "Track"
|
|
4681
4949
|
msgstr "追蹤"
|
|
4682
4950
|
|
|
@@ -4703,7 +4971,7 @@ msgstr "交易 ID 為必填欄位"
|
|
|
4703
4971
|
#. placeholder {0}: getTranslatedOrderState(state)
|
|
4704
4972
|
#. placeholder {0}: getTranslatedPaymentState(state)
|
|
4705
4973
|
#: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:92
|
|
4706
|
-
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:
|
|
4974
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:122
|
|
4707
4975
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:154
|
|
4708
4976
|
msgid "Transition to {0}"
|
|
4709
4977
|
msgstr "轉換到 {0}"
|
|
@@ -4726,10 +4994,12 @@ msgstr "至少輸入 2 個字元進行搜尋..."
|
|
|
4726
4994
|
|
|
4727
4995
|
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:100
|
|
4728
4996
|
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:57
|
|
4997
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:96
|
|
4729
4998
|
msgid "Unit price"
|
|
4730
4999
|
msgstr "單價"
|
|
4731
5000
|
|
|
4732
5001
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:102
|
|
5002
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:303
|
|
4733
5003
|
#: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:87
|
|
4734
5004
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:175
|
|
4735
5005
|
#: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:125
|
|
@@ -4745,7 +5015,7 @@ msgstr "未驗證"
|
|
|
4745
5015
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
4746
5016
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:101
|
|
4747
5017
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
4748
|
-
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:
|
|
5018
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:143
|
|
4749
5019
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
|
|
4750
5020
|
#: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:96
|
|
4751
5021
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
|
|
@@ -4753,22 +5023,22 @@ msgstr "未驗證"
|
|
|
4753
5023
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
4754
5024
|
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:101
|
|
4755
5025
|
#: src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx:46
|
|
4756
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:
|
|
4757
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
5026
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:131
|
|
5027
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:227
|
|
4758
5028
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:276
|
|
4759
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
5029
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:122
|
|
4760
5030
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
4761
5031
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
4762
|
-
#: src/app/routes/_authenticated/_profile/profile.tsx:
|
|
4763
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
5032
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:85
|
|
5033
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:137
|
|
4764
5034
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
4765
5035
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
4766
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
5036
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:133
|
|
4767
5037
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
4768
5038
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:99
|
|
4769
5039
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
4770
5040
|
#: src/app/routes/_authenticated/_zones/zones_.$id.tsx:85
|
|
4771
|
-
#: src/lib/framework/page/detail-page.tsx:
|
|
5041
|
+
#: src/lib/framework/page/detail-page.tsx:189
|
|
4772
5042
|
msgid "Update"
|
|
4773
5043
|
msgstr "更新"
|
|
4774
5044
|
|
|
@@ -4784,7 +5054,7 @@ msgstr "已更新"
|
|
|
4784
5054
|
msgid "Upload"
|
|
4785
5055
|
msgstr "上傳"
|
|
4786
5056
|
|
|
4787
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
5057
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:214
|
|
4788
5058
|
msgid "Usage limit"
|
|
4789
5059
|
msgstr "使用限制"
|
|
4790
5060
|
|
|
@@ -4798,15 +5068,15 @@ msgstr "用作預設帳單地址"
|
|
|
4798
5068
|
msgid "Use as the default shipping address"
|
|
4799
5069
|
msgstr "用作預設配送地址"
|
|
4800
5070
|
|
|
4801
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
5071
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:391
|
|
4802
5072
|
msgid "Use global out-of-stock threshold"
|
|
4803
5073
|
msgstr "使用全域缺貨臨界值"
|
|
4804
5074
|
|
|
4805
|
-
#: src/lib/
|
|
5075
|
+
#: src/lib/hooks/use-widget-dimensions.ts:9
|
|
4806
5076
|
msgid "useWidgetDimensions must be used within a DashboardBaseWidget"
|
|
4807
5077
|
msgstr "useWidgetDimensions 必須在 DashboardBaseWidget 中使用"
|
|
4808
5078
|
|
|
4809
|
-
#: src/lib/
|
|
5079
|
+
#: src/lib/hooks/use-widget-filters.ts:18
|
|
4810
5080
|
msgid "useWidgetFilters must be used within a WidgetFiltersProvider"
|
|
4811
5081
|
msgstr "useWidgetFilters 必須在 WidgetFiltersProvider 中使用"
|
|
4812
5082
|
|
|
@@ -4818,7 +5088,7 @@ msgstr "使用外部驗證策略:{strategy}"
|
|
|
4818
5088
|
msgid "Using native authentication strategy"
|
|
4819
5089
|
msgstr "使用原生驗證策略"
|
|
4820
5090
|
|
|
4821
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
5091
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:51
|
|
4822
5092
|
msgid "Values"
|
|
4823
5093
|
msgstr "值"
|
|
4824
5094
|
|
|
@@ -4830,7 +5100,7 @@ msgstr "變體"
|
|
|
4830
5100
|
msgid "Variant deleted successfully"
|
|
4831
5101
|
msgstr "變體已成功刪除"
|
|
4832
5102
|
|
|
4833
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
5103
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:249
|
|
4834
5104
|
msgid "Variant name"
|
|
4835
5105
|
msgstr "變體名稱"
|
|
4836
5106
|
|
|
@@ -4855,7 +5125,7 @@ msgstr "檢視變更"
|
|
|
4855
5125
|
msgid "View converted to global successfully"
|
|
4856
5126
|
msgstr "檢視已成功轉換為全域"
|
|
4857
5127
|
|
|
4858
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
5128
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:123
|
|
4859
5129
|
msgid "View data"
|
|
4860
5130
|
msgstr "檢視資料"
|
|
4861
5131
|
|
|
@@ -4863,7 +5133,7 @@ msgstr "檢視資料"
|
|
|
4863
5133
|
msgid "View deleted successfully"
|
|
4864
5134
|
msgstr "檢視已成功刪除"
|
|
4865
5135
|
|
|
4866
|
-
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:
|
|
5136
|
+
#: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:153
|
|
4867
5137
|
msgid "View details"
|
|
4868
5138
|
msgstr "檢視詳細資料"
|
|
4869
5139
|
|
|
@@ -4871,11 +5141,11 @@ msgstr "檢視詳細資料"
|
|
|
4871
5141
|
msgid "View duplicated successfully"
|
|
4872
5142
|
msgstr "檢視已成功複製"
|
|
4873
5143
|
|
|
4874
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
5144
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:118
|
|
4875
5145
|
msgid "View job data"
|
|
4876
5146
|
msgstr "檢視工作資料"
|
|
4877
5147
|
|
|
4878
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
5148
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:137
|
|
4879
5149
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:174
|
|
4880
5150
|
msgid "View job result"
|
|
4881
5151
|
msgstr "檢視工作結果"
|
|
@@ -4884,16 +5154,16 @@ msgstr "檢視工作結果"
|
|
|
4884
5154
|
msgid "View renamed successfully"
|
|
4885
5155
|
msgstr "檢視已成功重新命名"
|
|
4886
5156
|
|
|
4887
|
-
#: src/app/routes/_authenticated/_system/job-queue.tsx:
|
|
5157
|
+
#: src/app/routes/_authenticated/_system/job-queue.tsx:142
|
|
4888
5158
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:178
|
|
4889
5159
|
msgid "View result"
|
|
4890
5160
|
msgstr "檢視結果"
|
|
4891
5161
|
|
|
4892
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
5162
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:68
|
|
4893
5163
|
msgid "View values"
|
|
4894
5164
|
msgstr "檢視值"
|
|
4895
5165
|
|
|
4896
|
-
#: src/app/routes/_authenticated/_facets/facets.tsx:
|
|
5166
|
+
#: src/app/routes/_authenticated/_facets/facets.tsx:40
|
|
4897
5167
|
msgid "Visibility"
|
|
4898
5168
|
msgstr "可見性"
|
|
4899
5169
|
|
|
@@ -4909,12 +5179,12 @@ msgstr "客戶可見"
|
|
|
4909
5179
|
msgid "Welcome to Vendure"
|
|
4910
5180
|
msgstr "歡迎使用 Vendure"
|
|
4911
5181
|
|
|
4912
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4913
|
-
#: src/app/routes/_authenticated/_products/products_.$id.tsx:
|
|
5182
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:238
|
|
5183
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:133
|
|
4914
5184
|
msgid "When enabled, a product is available in the shop"
|
|
4915
5185
|
msgstr "啟用後,商品在商店中可用"
|
|
4916
5186
|
|
|
4917
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
5187
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:148
|
|
4918
5188
|
msgid "When enabled, a promotion is available in the shop"
|
|
4919
5189
|
msgstr "啟用後,促銷在商店中可用"
|
|
4920
5190
|
|
|
@@ -4930,7 +5200,7 @@ msgstr "追蹤後,商品變體庫存水準將在售出時自動調整。此設
|
|
|
4930
5200
|
msgid "Width"
|
|
4931
5201
|
msgstr "寬度"
|
|
4932
5202
|
|
|
4933
|
-
#: src/lib/components/data-table/data-table-bulk-actions.tsx:
|
|
5203
|
+
#: src/lib/components/data-table/data-table-bulk-actions.tsx:78
|
|
4934
5204
|
#: src/lib/components/shared/asset/asset-bulk-actions.tsx:87
|
|
4935
5205
|
msgid "With selected..."
|
|
4936
5206
|
msgstr "對所選..."
|
|
@@ -4940,11 +5210,11 @@ msgctxt "date-range"
|
|
|
4940
5210
|
msgid "Yesterday"
|
|
4941
5211
|
msgstr "昨天"
|
|
4942
5212
|
|
|
4943
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
5213
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:315
|
|
4944
5214
|
msgid "You don't have permission to view channel settings"
|
|
4945
5215
|
msgstr "您沒有檢視通路設定的權限"
|
|
4946
5216
|
|
|
4947
|
-
#: src/lib/components/layout/manage-languages-dialog.tsx:
|
|
5217
|
+
#: src/lib/components/layout/manage-languages-dialog.tsx:261
|
|
4948
5218
|
msgid "You don't have permission to view global language settings"
|
|
4949
5219
|
msgstr "您沒有檢視全域語言設定的權限"
|
|
4950
5220
|
|
|
@@ -4952,7 +5222,7 @@ msgstr "您沒有檢視全域語言設定的權限"
|
|
|
4952
5222
|
msgid "You haven't saved any views yet."
|
|
4953
5223
|
msgstr "您尚未儲存任何檢視。"
|
|
4954
5224
|
|
|
4955
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
5225
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:77
|
|
4956
5226
|
msgid "Your latest orders"
|
|
4957
5227
|
msgstr "您的最新訂單"
|
|
4958
5228
|
|
|
@@ -4960,7 +5230,7 @@ msgstr "您的最新訂單"
|
|
|
4960
5230
|
msgid "Your orders summary"
|
|
4961
5231
|
msgstr "您的訂單摘要"
|
|
4962
5232
|
|
|
4963
|
-
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:
|
|
5233
|
+
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:138
|
|
4964
5234
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:73
|
|
4965
5235
|
msgid "Zone"
|
|
4966
5236
|
msgstr "區域"
|