@wilshop/dashboard 3.5.5 → 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 +92 -17
- 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
package/src/i18n/locales/ne.po
CHANGED
|
@@ -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 "स्लग"
|
|
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 "के तपाईं निश्चित हुनुहुन्छ
|
|
|
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 "के तपाईं निश्चित हुनुहुन्छ
|
|
|
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 "{1} बाट {2} सम्म पूर्ति #{0}"
|
|
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 "स्लग स्वचालित रूपमा उत्पन्न गर्नुहोस्"
|
|
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 "स्रोत फिल्डबाट स्लग पुन: उत्पन्न गर्नुहोस्"
|
|
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 "स्लग"
|
|
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 "सडक ठेगाना २"
|
|
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 "खोज्न कम्तिमा २ वर्णहरू टा
|
|
|
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 "बाह्य प्रमाणीकरण रणनीति प्
|
|
|
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 "क्षेत्र"
|