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