@wilshop/dashboard 3.5.5 → 3.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin/dashboard.plugin.d.ts +1 -1
- package/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/compiler.js +50 -24
- package/dist/vite/utils/path-transformer.d.ts +20 -0
- package/dist/vite/utils/path-transformer.js +116 -0
- package/dist/vite/utils/plugin-discovery.js +3 -2
- package/dist/vite/utils/ui-config.js +15 -1
- package/dist/vite/vite-plugin-lingui-babel.d.ts +15 -2
- package/dist/vite/vite-plugin-lingui-babel.js +92 -17
- package/dist/vite/vite-plugin-translations.js +2 -2
- package/dist/vite/vite-plugin-ui-config.d.ts +31 -0
- package/package.json +10 -6
- package/src/app/common/delete-bulk-action.tsx +1 -1
- package/src/app/common/duplicate-bulk-action.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -3
- package/src/app/routes/_authenticated/_collections/collections.tsx +169 -48
- package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +36 -5
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx +31 -29
- package/src/app/routes/_authenticated/_customers/customers.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_customers/customers.tsx +3 -0
- package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/draft-order-status.tsx +48 -0
- package/src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx +8 -5
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +79 -54
- package/src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx +43 -3
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx +19 -3
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +1 -0
- package/src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx +372 -0
- package/src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts +345 -0
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +41 -0
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +22 -6
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +51 -0
- package/src/app/routes/_authenticated/_orders/utils/refund-utils.ts +100 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +1 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +6 -2
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +9 -3
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +49 -30
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_profile/profile.graphql.ts +7 -0
- package/src/app/routes/_authenticated/_profile/profile.tsx +25 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +14 -2
- package/src/i18n/common-strings.ts +7 -0
- package/src/i18n/locales/ar.po +669 -399
- package/src/i18n/locales/bg.po +1889 -46
- package/src/i18n/locales/cs.po +676 -406
- package/src/i18n/locales/de.po +676 -406
- package/src/i18n/locales/en.po +669 -399
- package/src/i18n/locales/es.po +676 -406
- package/src/i18n/locales/fa.po +676 -406
- package/src/i18n/locales/fr.po +676 -406
- package/src/i18n/locales/he.po +676 -406
- package/src/i18n/locales/hr.po +676 -406
- package/src/i18n/locales/it.po +676 -406
- package/src/i18n/locales/ja.po +676 -406
- package/src/i18n/locales/nb.po +676 -406
- package/src/i18n/locales/ne.po +676 -406
- package/src/i18n/locales/pl.po +676 -406
- package/src/i18n/locales/pt_BR.po +676 -406
- package/src/i18n/locales/pt_PT.po +676 -406
- package/src/i18n/locales/ru.po +676 -406
- package/src/i18n/locales/sv.po +676 -406
- package/src/i18n/locales/tr.po +676 -406
- package/src/i18n/locales/uk.po +676 -406
- package/src/i18n/locales/zh_Hans.po +676 -406
- package/src/i18n/locales/zh_Hant.po +676 -406
- package/src/lib/components/data-input/facet-value-input.tsx +2 -2
- package/src/lib/components/data-input/index.ts +1 -0
- package/src/lib/components/data-input/select-with-options.tsx +23 -7
- package/src/lib/components/data-input/struct-form-input.tsx +53 -21
- package/src/lib/components/data-input/text-input.tsx +1 -1
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +2 -1
- package/src/lib/components/data-table/data-table-context.tsx +2 -10
- package/src/lib/components/data-table/data-table-utils.ts +34 -12
- package/src/lib/components/data-table/data-table.tsx +68 -30
- package/src/lib/components/data-table/global-views-bar.tsx +1 -1
- package/src/lib/components/data-table/my-views-button.tsx +1 -1
- package/src/lib/components/data-table/save-view-button.tsx +1 -1
- package/src/lib/components/data-table/use-generated-columns.tsx +9 -2
- package/src/lib/components/data-table/views-sheet.tsx +1 -1
- package/src/lib/components/layout/channel-switcher.tsx +16 -17
- package/src/lib/components/layout/manage-languages-dialog.tsx +1 -1
- package/src/lib/components/shared/assign-to-channel-bulk-action.tsx +1 -1
- package/src/lib/components/shared/configurable-operation-input.tsx +23 -0
- package/src/lib/components/shared/configurable-operation-multi-selector.tsx +45 -0
- package/src/lib/components/shared/configurable-operation-selector.tsx +5 -0
- package/src/lib/components/shared/paginated-list-context.ts +10 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +6 -32
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +1 -1
- package/src/lib/components/ui/alert.tsx +2 -0
- package/src/lib/constants.ts +7 -319
- package/src/lib/framework/dashboard-widget/base-widget.tsx +3 -12
- package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +2 -20
- package/src/lib/framework/extension-api/input-component-extensions.tsx +4 -0
- package/src/lib/framework/form-engine/custom-form-component.tsx +13 -3
- package/src/lib/framework/form-engine/form-engine-types.ts +3 -5
- package/src/lib/framework/form-engine/form-schema-tools.ts +4 -1
- package/src/lib/framework/form-engine/use-generated-form.tsx +6 -2
- package/src/lib/framework/form-engine/utils.spec.ts +129 -2
- package/src/lib/framework/form-engine/utils.ts +36 -9
- package/src/lib/framework/form-engine/value-transformers.ts +6 -0
- package/src/lib/framework/page/detail-page-route-loader.tsx +6 -4
- package/src/lib/framework/page/detail-page.tsx +22 -37
- package/src/lib/framework/page/list-page.stories.tsx +41 -2
- package/src/lib/framework/page/list-page.tsx +8 -0
- package/src/lib/graphql/graphql-env.d.ts +33 -16
- package/src/lib/graphql/schema-enums.ts +13 -0
- package/src/lib/hooks/use-alerts-context.ts +10 -0
- package/src/lib/hooks/use-alerts.ts +1 -1
- package/src/lib/hooks/use-data-table-context.ts +11 -0
- package/src/lib/hooks/use-dynamic-translations.ts +7 -0
- package/src/lib/hooks/use-job-queue-polling.ts +160 -0
- package/src/lib/hooks/use-paginated-list.ts +28 -0
- package/src/lib/hooks/use-widget-dimensions.ts +12 -0
- package/src/lib/hooks/use-widget-filters.ts +21 -0
- package/src/lib/index.ts +12 -0
- package/src/lib/providers/alerts-provider.tsx +3 -11
- package/src/lib/virtual.d.ts +5 -0
- package/src/lib/utils/global-languages.ts +0 -268
package/src/i18n/locales/pl.po
CHANGED
|
@@ -224,7 +224,7 @@ msgstr "Uruchamianie oczekujących aktualizacji indeksu wyszukiwania"
|
|
|
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 "Wpisz i naciśnij Enter lub przecinek, aby dodać..."
|
|
228
228
|
|
|
229
229
|
#. js-lingui-explicit-id
|
|
230
230
|
#: src/i18n/common-strings.ts:7
|
|
@@ -360,336 +360,361 @@ msgstr "Organizowanie dodatkowej płatności"
|
|
|
360
360
|
|
|
361
361
|
#. js-lingui-explicit-id
|
|
362
362
|
#: src/i18n/common-strings.ts:43
|
|
363
|
+
msgid "refundReason.CustomerRequest"
|
|
364
|
+
msgstr "Prośba klienta"
|
|
365
|
+
|
|
366
|
+
#. js-lingui-explicit-id
|
|
367
|
+
#: src/i18n/common-strings.ts:44
|
|
368
|
+
msgid "refundReason.NotAvailable"
|
|
369
|
+
msgstr "Niedostępny"
|
|
370
|
+
|
|
371
|
+
#. js-lingui-explicit-id
|
|
372
|
+
#: src/i18n/common-strings.ts:45
|
|
373
|
+
msgid "refundReason.DamagedInShipping"
|
|
374
|
+
msgstr "Uszkodzony podczas wysyłki"
|
|
375
|
+
|
|
376
|
+
#. js-lingui-explicit-id
|
|
377
|
+
#: src/i18n/common-strings.ts:46
|
|
378
|
+
msgid "refundReason.WrongItem"
|
|
379
|
+
msgstr "Niewłaściwy przedmiot"
|
|
380
|
+
|
|
381
|
+
#. js-lingui-explicit-id
|
|
382
|
+
#: src/i18n/common-strings.ts:47
|
|
383
|
+
msgid "refundReason.Other"
|
|
384
|
+
msgstr "Inne"
|
|
385
|
+
|
|
386
|
+
#. js-lingui-explicit-id
|
|
387
|
+
#: src/i18n/common-strings.ts:50
|
|
363
388
|
msgid "fieldName.attempts"
|
|
364
389
|
msgstr "Próby"
|
|
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 "Dostępne kody walut"
|
|
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 "Dostępne kody języków"
|
|
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 "Okruszki nawigacyjne"
|
|
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 "Kategoria"
|
|
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 "Kanały"
|
|
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 "Elementy podrzędne"
|
|
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 "Kod"
|
|
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 "Kod kuponu"
|
|
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 "Utworzone"
|
|
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 "Kod waluty"
|
|
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 "Klient"
|
|
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 "Grupa klientów"
|
|
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 "Klienci"
|
|
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 "Pola niestandardowe"
|
|
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 "Dane"
|
|
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 "Domyślny kod waluty"
|
|
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 "Domyślny kod języka"
|
|
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 "Domyślna strefa wysyłki"
|
|
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 "Domyślna strefa podatkowa"
|
|
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 "Opis"
|
|
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 "Czas trwania"
|
|
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 "Adres e-mail"
|
|
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 "Włączone"
|
|
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 "Data zakończenia"
|
|
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 "Błąd"
|
|
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 "Wyróżniony zasób"
|
|
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 "Imię"
|
|
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 "Kod obsługi realizacji"
|
|
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 "Jest domyślny"
|
|
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 "Jest prywatny"
|
|
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 "Jest rozliczony"
|
|
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 "Nazwisko"
|
|
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 "Nazwa"
|
|
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 "Data złożenia zamówienia"
|
|
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 nadrzędny"
|
|
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 "Limit użycia na klienta"
|
|
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 "Uprawnienia"
|
|
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 "Pozycja"
|
|
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 "Cena"
|
|
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 "Cena z podatkiem"
|
|
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 "Ceny zawierają podatek"
|
|
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 "Warianty produktów"
|
|
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 "Postęp"
|
|
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 "Nazwa kolejki"
|
|
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 "Wynik"
|
|
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 "Ponowne próby"
|
|
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 "Sprzedawca"
|
|
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 "Rozliczone"
|
|
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 "Linie wysyłki"
|
|
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 "Rozpoczęte"
|
|
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 "Data rozpoczęcia"
|
|
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 "Stan"
|
|
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 "Poziomy magazynowe"
|
|
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 "Token"
|
|
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 "Suma"
|
|
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 "Suma z podatkiem"
|
|
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 "Typ"
|
|
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 "Zaktualizowane"
|
|
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 "Limit użycia"
|
|
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 "Użytkownik"
|
|
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 "Wartość"
|
|
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 "Lista wartości"
|
|
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 "Strefa"
|
|
695
720
|
|
|
@@ -733,11 +758,20 @@ msgstr "Nie udało się usunąć notatki"
|
|
|
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} do zwrotu)"
|
|
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 "(maks: {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} z {1} dostępnych do realizacji"
|
|
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} wybranych"
|
|
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} wariantów"
|
|
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} płatności zwróconych przed błędem. Sprawdź historię zamówień, aby uzyskać szczegóły."
|
|
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 "Zwrócono {totalQuantity} pozycji"
|
|
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} więcej"
|
|
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} więcej"
|
|
806
848
|
|
|
@@ -812,17 +854,21 @@ msgstr "+ {leftOver} więcej"
|
|
|
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 "Wymagany jest powód zwrotu"
|
|
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 "Wymagany jest zwrot w wysokości {formattedDiff}. Wybierz kwoty płatności i wprowadź notatkę, aby kontynuować."
|
|
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 "Działania"
|
|
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 "Aktywny"
|
|
@@ -852,9 +898,13 @@ msgstr "Dodaj kolejną grupę opcji"
|
|
|
852
898
|
msgid "Add asset"
|
|
853
899
|
msgstr "Dodaj zasób"
|
|
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 "Dodaj co najmniej jeden produkt do zamówienia"
|
|
904
|
+
|
|
905
|
+
#: src/lib/components/layout/channel-switcher.tsx:212
|
|
856
906
|
msgid "Add channel"
|
|
857
|
-
msgstr ""
|
|
907
|
+
msgstr "Dodaj kanał"
|
|
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 "Dodaj poziom zapasów dla innej lokalizacji"
|
|
|
981
1031
|
msgid "Add Stock to Location"
|
|
982
1032
|
msgstr "Dodaj stan magazynowy do lokalizacji"
|
|
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 "Dodaj dopłatę"
|
|
1038
|
+
|
|
984
1039
|
#: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:141
|
|
985
1040
|
msgid "Add tags..."
|
|
986
1041
|
msgstr "Dodaj tagi..."
|
|
@@ -990,7 +1045,11 @@ msgstr "Dodaj tagi..."
|
|
|
990
1045
|
msgid "Add variant"
|
|
991
1046
|
msgstr "Dodaj wariant"
|
|
992
1047
|
|
|
993
|
-
#: src/app/routes/_authenticated/
|
|
1048
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:133
|
|
1049
|
+
msgid "Added"
|
|
1050
|
+
msgstr "Dodano"
|
|
1051
|
+
|
|
1052
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:206
|
|
994
1053
|
msgid "Added coupon codes"
|
|
995
1054
|
msgstr "Dodano kody kuponów"
|
|
996
1055
|
|
|
@@ -999,10 +1058,15 @@ msgid "Added to group"
|
|
|
999
1058
|
msgstr "Dodano do grupy"
|
|
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 "Dodawanie {0} pozycji"
|
|
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 "Dodawanie {0} dopłat(y)"
|
|
1069
|
+
|
|
1006
1070
|
#: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:175
|
|
1007
1071
|
msgid "Adding..."
|
|
1008
1072
|
msgstr "Dodawanie..."
|
|
@@ -1035,12 +1099,12 @@ msgid "Address updated successfully"
|
|
|
1035
1099
|
msgstr "Adres zaktualizowany pomyślnie"
|
|
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 "Adresy"
|
|
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 "Dostosowywanie {0} wierszy"
|
|
1046
1110
|
|
|
@@ -1056,17 +1120,22 @@ msgstr "po"
|
|
|
1056
1120
|
|
|
1057
1121
|
#: src/lib/components/shared/alerts.tsx:33
|
|
1058
1122
|
msgid "Alerts"
|
|
1059
|
-
msgstr ""
|
|
1123
|
+
msgstr "Alerty"
|
|
1060
1124
|
|
|
1061
1125
|
#: src/app/routes/_authenticated/_system/healthchecks.tsx:66
|
|
1062
1126
|
msgid "All resources are up and running"
|
|
1063
1127
|
msgstr "Wszystkie zasoby są aktywne"
|
|
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 "Przydzielono"
|
|
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 "Przydzielona kwota płatności musi być równa sumie zwrotu"
|
|
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 "Kwota"
|
|
1072
1141
|
|
|
@@ -1116,7 +1185,7 @@ msgstr "Czy na pewno chcesz usunąć {selectionLength} zasobów?"
|
|
|
1116
1185
|
msgid "Are you sure you want to delete this address?"
|
|
1117
1186
|
msgstr "Czy na pewno chcesz usunąć ten adres?"
|
|
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 "Czy na pewno chcesz usunąć ten projekt zamówienia?"
|
|
1122
1191
|
|
|
@@ -1124,7 +1193,7 @@ msgstr "Czy na pewno chcesz usunąć ten projekt zamówienia?"
|
|
|
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 "Czy na pewno chcesz usunąć ten widok globalny? Ta akcja nie może być cofnięta i wpłynie na wszystkich użytkowników."
|
|
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 "Czy na pewno chcesz usunąć tę pozycję? Ta akcja nie może być cofnięta."
|
|
1130
1199
|
|
|
@@ -1144,7 +1213,7 @@ msgstr "Czy na pewno chcesz opuścić tę stronę? Wszystkie niezapisane zmiany
|
|
|
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 "Czy na pewno chcesz usunąć {0} {1} z tej strefy?"
|
|
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 "Czy na pewno chcesz usunąć {0} {entityType} z bieżącego kanału?"
|
|
|
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 "Zasoby"
|
|
1162
1231
|
|
|
@@ -1173,14 +1242,23 @@ msgid "Assign options to existing variant"
|
|
|
1173
1242
|
msgstr "Przypisz opcje do istniejącego wariantu"
|
|
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 "Przypisz do kanału"
|
|
1178
1248
|
|
|
1249
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:121
|
|
1250
|
+
msgid "Authentication methods"
|
|
1251
|
+
msgstr "Metody uwierzytelniania"
|
|
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 "Automatyczne odświeżanie: {0}"
|
|
1183
1257
|
|
|
1258
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:301
|
|
1259
|
+
msgid "Available"
|
|
1260
|
+
msgstr "Dostępne"
|
|
1261
|
+
|
|
1184
1262
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:176
|
|
1185
1263
|
msgid "Available currencies"
|
|
1186
1264
|
msgstr "Dostępne waluty"
|
|
@@ -1190,7 +1268,7 @@ msgstr "Dostępne waluty"
|
|
|
1190
1268
|
msgid "Available languages"
|
|
1191
1269
|
msgstr "Dostępne języki"
|
|
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 "Dostępne języki"
|
|
1196
1274
|
|
|
@@ -1214,21 +1292,21 @@ msgstr "przed"
|
|
|
1214
1292
|
msgid "between"
|
|
1215
1293
|
msgstr "pomiędzy"
|
|
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 "Adres rozliczeniowy"
|
|
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 "Zmieniono adres rozliczeniowy"
|
|
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 "Adres rozliczeniowy ustawiony dla zamówienia"
|
|
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 "Adres rozliczeniowy usunięty z zamówienia"
|
|
1234
1312
|
|
|
@@ -1237,26 +1315,27 @@ msgstr "Adres rozliczeniowy usunięty z zamówienia"
|
|
|
1237
1315
|
msgid "Browse facets"
|
|
1238
1316
|
msgstr "Przeglądaj fasety"
|
|
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 "Kalkulator"
|
|
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 "Kalkulator"
|
|
|
1267
1346
|
msgid "Cancel"
|
|
1268
1347
|
msgstr "Anuluj"
|
|
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 "Anuluj zadanie"
|
|
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 "Anuluj modyfikację"
|
|
1277
1356
|
|
|
@@ -1279,6 +1358,14 @@ msgstr "Anuluj modyfikację"
|
|
|
1279
1358
|
msgid "Cancel payment"
|
|
1280
1359
|
msgstr "Anuluj płatność"
|
|
1281
1360
|
|
|
1361
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:213
|
|
1362
|
+
msgid "Cannot move a collection into its own descendant"
|
|
1363
|
+
msgstr "Nie można przenieść kolekcji do jej własnego potomka"
|
|
1364
|
+
|
|
1365
|
+
#: src/lib/components/shared/assigned-channels.tsx:49
|
|
1366
|
+
msgid "Cannot remove from active channel"
|
|
1367
|
+
msgstr "Nie można usunąć z aktywnego kanału"
|
|
1368
|
+
|
|
1282
1369
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:63
|
|
1283
1370
|
msgid "Category"
|
|
1284
1371
|
msgstr "Kategoria"
|
|
@@ -1291,15 +1378,16 @@ msgstr "Kanał"
|
|
|
1291
1378
|
msgid "Channel defaults"
|
|
1292
1379
|
msgstr "Domyślne ustawienia kanału"
|
|
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 "Języki kanału"
|
|
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 "Kanały"
|
|
1305
1393
|
|
|
@@ -1314,7 +1402,7 @@ msgid "Clear"
|
|
|
1314
1402
|
msgstr "Wyczyść"
|
|
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 "Wyczyść wszystko"
|
|
1320
1408
|
|
|
@@ -1332,16 +1420,15 @@ msgstr "Kliknij „Uruchom test\", aby przetestować tę metodę wysyłki."
|
|
|
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 "Kod"
|
|
1347
1434
|
|
|
@@ -1349,13 +1436,21 @@ msgstr "Kod"
|
|
|
1349
1436
|
msgid "Collection contents for {collectionName}"
|
|
1350
1437
|
msgstr "Zawartość kolekcji {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 "Kolekcja przeniesiona do nowego rodzica"
|
|
1442
|
+
|
|
1443
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:245
|
|
1444
|
+
msgid "Collection position updated"
|
|
1445
|
+
msgstr "Pozycja kolekcji zaktualizowana"
|
|
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 "Kolekcje"
|
|
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 "Kolekcje przeniesione pomyślnie"
|
|
1361
1456
|
|
|
@@ -1369,16 +1464,16 @@ msgstr "Ustawienia kolumn"
|
|
|
1369
1464
|
msgid "Company"
|
|
1370
1465
|
msgstr "Firma"
|
|
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 "Ukończ wersję roboczą"
|
|
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 "Warunki"
|
|
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 "Skonfiguruj dostępne języki dla swojego sklepu i kanałów"
|
|
1384
1479
|
|
|
@@ -1391,7 +1486,7 @@ msgstr "Potwierdź"
|
|
|
1391
1486
|
msgid "Confirm Action"
|
|
1392
1487
|
msgstr "Potwierdź akcję"
|
|
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 "Potwierdź usunięcie"
|
|
1397
1492
|
|
|
@@ -1403,8 +1498,12 @@ msgstr "Potwierdź nawigację"
|
|
|
1403
1498
|
msgid "contains"
|
|
1404
1499
|
msgstr "zawiera"
|
|
1405
1500
|
|
|
1406
|
-
#: src/
|
|
1407
|
-
|
|
1501
|
+
#: src/lib/components/layout/channel-switcher.tsx:157
|
|
1502
|
+
msgid "Content:"
|
|
1503
|
+
msgstr "Zawartość:"
|
|
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 "Zawartość"
|
|
1410
1509
|
|
|
@@ -1431,36 +1530,36 @@ msgstr "Kraje"
|
|
|
1431
1530
|
msgid "Country"
|
|
1432
1531
|
msgstr "Kraj"
|
|
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 "Kod kuponu"
|
|
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 "Kod kuponu usunięty z zamówienia"
|
|
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 "Kod kuponu ustawiony dla zamówienia"
|
|
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 "Data utworzenia"
|
|
|
1513
1612
|
msgid "Creating..."
|
|
1514
1613
|
msgstr "Tworzenie..."
|
|
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 "Bieżący"
|
|
@@ -1526,7 +1625,7 @@ msgstr "Bieżące wartości aspektów"
|
|
|
1526
1625
|
msgid "Current status"
|
|
1527
1626
|
msgstr "Bieżący status"
|
|
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 "Pola niestandardowe"
|
|
1532
1631
|
|
|
@@ -1534,13 +1633,13 @@ msgstr "Pola niestandardowe"
|
|
|
1534
1633
|
msgid "Custom Fields"
|
|
1535
1634
|
msgstr "Pola niestandardowe"
|
|
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 "Zmieniono pola niestandardowe"
|
|
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 "Klient"
|
|
@@ -1572,7 +1671,7 @@ msgstr "Grupy klientów"
|
|
|
1572
1671
|
msgid "Customer history"
|
|
1573
1672
|
msgstr "Historia klienta"
|
|
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 "Zaktualizowano informacje o kliencie"
|
|
1578
1677
|
|
|
@@ -1584,11 +1683,11 @@ msgstr "Nie znaleziono klienta"
|
|
|
1584
1683
|
msgid "Customer registered"
|
|
1585
1684
|
msgstr "Zarejestrowano klienta"
|
|
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 "Ustawiono klienta dla zamówienia"
|
|
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 "Zaktualizowano klienta"
|
|
1594
1693
|
|
|
@@ -1625,7 +1724,7 @@ msgstr "Domyślna waluta"
|
|
|
1625
1724
|
msgid "Default language"
|
|
1626
1725
|
msgstr "Domyślny język"
|
|
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 "Domyślny język"
|
|
1631
1730
|
|
|
@@ -1645,8 +1744,8 @@ msgstr "Domyślna strefa podatkowa"
|
|
|
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 "Usuń adres"
|
|
|
1660
1759
|
msgid "Delete column"
|
|
1661
1760
|
msgstr "Usuń kolumnę"
|
|
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 "Usuń wersję roboczą"
|
|
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 "Usuń zamówienie robocze"
|
|
1670
1769
|
|
|
@@ -1688,17 +1787,18 @@ msgstr "Usunięto {deleted} {entityName}"
|
|
|
1688
1787
|
msgid "Deleted {selectionLength} assets"
|
|
1689
1788
|
msgstr "Usunięto {selectionLength} zasobów"
|
|
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 "Pomyślnie usunięto"
|
|
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 "Wyłącz"
|
|
|
1723
1823
|
msgid "Disabled"
|
|
1724
1824
|
msgstr "Wyłączono"
|
|
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 "Rabat"
|
|
1729
1829
|
|
|
@@ -1731,7 +1831,7 @@ msgstr "Rabat"
|
|
|
1731
1831
|
msgid "Display language"
|
|
1732
1832
|
msgstr "Język wyświetlania"
|
|
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 "Nie śledź"
|
|
1737
1837
|
|
|
@@ -1739,19 +1839,23 @@ msgstr "Nie śledź"
|
|
|
1739
1839
|
msgid "does not contain"
|
|
1740
1840
|
msgstr "nie zawiera"
|
|
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 "Zamówienie robocze"
|
|
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 "Ukończono zamówienie robocze"
|
|
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 "Usunięto zamówienie robocze"
|
|
1754
1854
|
|
|
1855
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:336
|
|
1856
|
+
msgid "Draft order status"
|
|
1857
|
+
msgstr "Status wersji roboczej zamówienia"
|
|
1858
|
+
|
|
1755
1859
|
#: src/lib/components/data-input/custom-field-list-input.tsx:72
|
|
1756
1860
|
msgid "Drag to reorder"
|
|
1757
1861
|
msgstr "Przeciągnij, aby zmienić kolejność"
|
|
@@ -1785,8 +1889,8 @@ msgstr "np. Mały"
|
|
|
1785
1889
|
msgid "e.g., Red, Large, Cotton"
|
|
1786
1890
|
msgstr "np. Czerwony, Duży, Bawełna"
|
|
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 "Edytuj układ"
|
|
|
1818
1922
|
msgid "Edit link"
|
|
1819
1923
|
msgstr "Edytuj link"
|
|
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 "Edytuj członków"
|
|
1824
1928
|
|
|
@@ -1848,7 +1952,7 @@ msgid "Email address"
|
|
|
1848
1952
|
msgstr "Adres e-mail"
|
|
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 "Adres e-mail lub identyfikator"
|
|
1854
1958
|
|
|
@@ -1865,11 +1969,11 @@ msgid "Enable"
|
|
|
1865
1969
|
msgstr "Włącz"
|
|
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 "Włącz"
|
|
|
1880
1984
|
msgid "Enabled"
|
|
1881
1985
|
msgstr "Włączono"
|
|
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 "Data zakończenia"
|
|
1886
1990
|
|
|
1991
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:232
|
|
1992
|
+
msgid "Enter custom reason..."
|
|
1993
|
+
msgstr "Wprowadź własny powód..."
|
|
1994
|
+
|
|
1887
1995
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:306
|
|
1888
1996
|
msgid "Enter refund note"
|
|
1889
1997
|
msgstr "Wprowadź notatkę zwrotu"
|
|
@@ -1958,19 +2066,19 @@ msgstr "Aspekt"
|
|
|
1958
2066
|
msgid "Facet values"
|
|
1959
2067
|
msgstr "Wartości aspektów"
|
|
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 "Wartości aspektów"
|
|
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 "Wartości aspektów dla {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 "Aspekty"
|
|
@@ -1990,6 +2098,14 @@ msgstr "Nie udało się dodać wartości opcji"
|
|
|
1990
2098
|
msgid "Failed to add payment"
|
|
1991
2099
|
msgstr "Nie udało się dodać płatności"
|
|
1992
2100
|
|
|
2101
|
+
#: src/lib/components/shared/assign-to-channel-dialog.tsx:73
|
|
2102
|
+
msgid "Failed to assign {entityIdsLength} {entityType} to channel"
|
|
2103
|
+
msgstr "Nie udało się przypisać {entityIdsLength} {entityType} do kanału"
|
|
2104
|
+
|
|
2105
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:259
|
|
2106
|
+
msgid "Failed to cancel order items"
|
|
2107
|
+
msgstr "Nie udało się anulować pozycji zamówienia"
|
|
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 "Nie udało się utworzyć administratora"
|
|
|
2016
2132
|
msgid "Failed to create channel"
|
|
2017
2133
|
msgstr "Nie udało się utworzyć kanału"
|
|
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 "Nie udało się utworzyć kolekcji"
|
|
2022
2138
|
|
|
@@ -2045,11 +2161,11 @@ msgstr "Nie udało się utworzyć wartości aspektu"
|
|
|
2045
2161
|
msgid "Failed to create option group"
|
|
2046
2162
|
msgstr "Nie udało się utworzyć grupy opcji"
|
|
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 "Nie udało się utworzyć metody płatności"
|
|
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 "Nie udało się utworzyć produktu"
|
|
2055
2171
|
|
|
@@ -2066,13 +2182,13 @@ msgstr "Nie udało się utworzyć grupy opcji produktu"
|
|
|
2066
2182
|
msgid "Failed to create product options"
|
|
2067
2183
|
msgstr "Nie udało się utworzyć opcji produktu"
|
|
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 "Nie udało się utworzyć wariantu produktu"
|
|
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 "Nie udało się utworzyć promocji"
|
|
2078
2194
|
|
|
@@ -2084,7 +2200,7 @@ msgstr "Nie udało się utworzyć roli"
|
|
|
2084
2200
|
msgid "Failed to create seller"
|
|
2085
2201
|
msgstr "Nie udało się utworzyć sprzedawcy"
|
|
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 "Nie udało się utworzyć metody wysyłki"
|
|
2090
2206
|
|
|
@@ -2104,8 +2220,8 @@ msgstr "Nie udało się utworzyć stawki podatkowej"
|
|
|
2104
2220
|
msgid "Failed to create zone"
|
|
2105
2221
|
msgstr "Nie udało się utworzyć strefy"
|
|
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 "Nie udało się usunąć"
|
|
2111
2227
|
|
|
@@ -2147,21 +2263,26 @@ msgstr "Nie udało się zduplikować widoku"
|
|
|
2147
2263
|
msgid "Failed to fulfill order"
|
|
2148
2264
|
msgstr "Nie udało się zrealizować zamówienia"
|
|
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 "Nie udało się załadować ustawień globalnych"
|
|
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 "Nie udało się zmodyfikować zamówienia"
|
|
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 "Nie udało się przenieść kolekcji"
|
|
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 "Nie udało się przetworzyć zwrotu"
|
|
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 "Nie udało się usunąć krajów ze strefy"
|
|
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 "Nie udało się usunąć klienta z grupy"
|
|
|
2171
2292
|
msgid "Failed to remove facet from channel: {message}"
|
|
2172
2293
|
msgstr "Nie udało się usunąć aspektu z kanału: {message}"
|
|
2173
2294
|
|
|
2295
|
+
#: src/lib/components/shared/assigned-channels.tsx:43
|
|
2296
|
+
msgid "Failed to remove product from channel"
|
|
2297
|
+
msgstr "Nie udało się usunąć produktu z kanału"
|
|
2298
|
+
|
|
2174
2299
|
#: src/lib/components/data-table/views-sheet.tsx:68
|
|
2175
2300
|
msgid "Failed to rename global view"
|
|
2176
2301
|
msgstr "Nie udało się zmienić nazwy widoku globalnego"
|
|
@@ -2179,6 +2304,10 @@ msgstr "Nie udało się zmienić nazwy widoku globalnego"
|
|
|
2179
2304
|
msgid "Failed to rename view"
|
|
2180
2305
|
msgstr "Nie udało się zmienić nazwy widoku"
|
|
2181
2306
|
|
|
2307
|
+
#: src/lib/components/data-table/data-table.tsx:220
|
|
2308
|
+
msgid "Failed to reorder items"
|
|
2309
|
+
msgstr "Nie udało się zmienić kolejności pozycji"
|
|
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 "Nie udało się rozliczyć płatności"
|
|
|
2189
2318
|
msgid "Failed to settle refund"
|
|
2190
2319
|
msgstr "Nie udało się rozliczyć zwrotu"
|
|
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 "Nie udało się przenieść zamówienia do stanu"
|
|
2195
2324
|
|
|
@@ -2210,10 +2339,14 @@ msgstr "Nie udało się zaktualizować zasobu"
|
|
|
2210
2339
|
msgid "Failed to update channel"
|
|
2211
2340
|
msgstr "Nie udało się zaktualizować kanału"
|
|
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 "Nie udało się zaktualizować kolekcji"
|
|
2216
2345
|
|
|
2346
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:256
|
|
2347
|
+
msgid "Failed to update collection position"
|
|
2348
|
+
msgstr "Nie udało się zaktualizować pozycji kolekcji"
|
|
2349
|
+
|
|
2217
2350
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
|
|
2218
2351
|
msgid "Failed to update country"
|
|
2219
2352
|
msgstr "Nie udało się zaktualizować kraju"
|
|
@@ -2245,12 +2378,12 @@ msgstr "Nie udało się zaktualizować stanu realizacji"
|
|
|
2245
2378
|
msgid "Failed to update global settings"
|
|
2246
2379
|
msgstr "Nie udało się zaktualizować ustawień globalnych"
|
|
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 "Nie udało się zaktualizować zamówienia"
|
|
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 "Nie udało się zaktualizować metody płatności"
|
|
2256
2389
|
|
|
@@ -2259,7 +2392,7 @@ msgstr "Nie udało się zaktualizować metody płatności"
|
|
|
2259
2392
|
msgid "Failed to update payment state"
|
|
2260
2393
|
msgstr "Nie udało się zaktualizować stanu płatności"
|
|
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 "Nie udało się zaktualizować produktu"
|
|
2265
2398
|
|
|
@@ -2271,16 +2404,16 @@ msgstr "Nie udało się zaktualizować opcji produktu"
|
|
|
2271
2404
|
msgid "Failed to update product option group"
|
|
2272
2405
|
msgstr "Nie udało się zaktualizować grupy opcji produktu"
|
|
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 "Nie udało się zaktualizować wariantu produktu"
|
|
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 "Nie udało się zaktualizować profilu"
|
|
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 "Nie udało się zaktualizować promocji"
|
|
2286
2419
|
|
|
@@ -2292,7 +2425,7 @@ msgstr "Nie udało się zaktualizować roli"
|
|
|
2292
2425
|
msgid "Failed to update seller"
|
|
2293
2426
|
msgstr "Nie udało się zaktualizować sprzedawcy"
|
|
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 "Nie udało się zaktualizować metody wysyłki"
|
|
2298
2431
|
|
|
@@ -2320,7 +2453,7 @@ msgstr "Fałsz"
|
|
|
2320
2453
|
msgid "Filter by {columnId}"
|
|
2321
2454
|
msgstr "Filtruj według {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 "Filtruj według nazwy kolekcji"
|
|
2326
2459
|
|
|
@@ -2328,17 +2461,17 @@ msgstr "Filtruj według nazwy kolekcji"
|
|
|
2328
2461
|
msgid "Filter by tags"
|
|
2329
2462
|
msgstr "Filtruj według tagów"
|
|
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 "Filtruj..."
|
|
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 "Filtry"
|
|
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 "Imię"
|
|
2344
2477
|
|
|
@@ -2354,7 +2487,7 @@ msgstr "Znaleziono {0} kwalifikujących się metod wysyłki"
|
|
|
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 "Od {0} do {1}"
|
|
2360
2493
|
|
|
@@ -2374,27 +2507,27 @@ msgid "Fulfilling..."
|
|
|
2374
2507
|
msgstr "Realizowanie..."
|
|
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 "Utworzono realizację #{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 "Realizacja #{0} z {1} do {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 "Utworzono realizację"
|
|
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 "Szczegóły realizacji"
|
|
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 "Obsługa realizacji"
|
|
2400
2533
|
|
|
@@ -2406,7 +2539,7 @@ msgstr "ID realizacji"
|
|
|
2406
2539
|
msgid "Fulfillment state updated successfully"
|
|
2407
2540
|
msgstr "Pomyślnie zaktualizowano stan realizacji"
|
|
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 "Realizację przeniesiono"
|
|
2412
2545
|
|
|
@@ -2416,7 +2549,7 @@ msgstr "Realizację przeniesiono"
|
|
|
2416
2549
|
msgid "Full Name"
|
|
2417
2550
|
msgstr "Pełne imię i nazwisko"
|
|
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 "Ogólne"
|
|
2422
2555
|
|
|
@@ -2425,7 +2558,7 @@ msgstr "Ogólne"
|
|
|
2425
2558
|
msgid "Generate slug automatically"
|
|
2426
2559
|
msgstr "Generuj slug automatycznie"
|
|
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 "Języki globalne"
|
|
2431
2564
|
|
|
@@ -2478,7 +2611,7 @@ msgstr "większe niż"
|
|
|
2478
2611
|
msgid "greater than or equal"
|
|
2479
2612
|
msgstr "większe lub równe"
|
|
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 "Cena brutto: <0/>"
|
|
2484
2617
|
|
|
@@ -2530,11 +2663,12 @@ msgstr "ID"
|
|
|
2530
2663
|
msgid "Identifier"
|
|
2531
2664
|
msgstr "Identyfikator"
|
|
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 "Jeśli włączone, filtry zostaną odziedziczone z kolekcji nadrzędnej i połączone z filtrami ustawionymi w tej kolekcji."
|
|
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 "Obraz"
|
|
2540
2674
|
|
|
@@ -2542,11 +2676,15 @@ msgstr "Obraz"
|
|
|
2542
2676
|
msgid "in"
|
|
2543
2677
|
msgstr "w"
|
|
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 "Zawiera podatek {taxRate}%"
|
|
2682
|
+
|
|
2683
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:195
|
|
2546
2684
|
msgid "Inherit filters"
|
|
2547
2685
|
msgstr "Dziedzicz filtry"
|
|
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 "Dziedzicz z ustawień globalnych"
|
|
2552
2690
|
|
|
@@ -2615,12 +2753,16 @@ msgstr "nie jest w"
|
|
|
2615
2753
|
msgid "is null"
|
|
2616
2754
|
msgstr "jest puste"
|
|
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 "Dodano pozycję do zamówienia"
|
|
2621
2759
|
|
|
2760
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:110
|
|
2761
|
+
msgid "Items refunded"
|
|
2762
|
+
msgstr "Pozycje zwrócone"
|
|
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 "Kolejka zadań"
|
|
2626
2768
|
|
|
@@ -2629,7 +2771,7 @@ msgid "Language"
|
|
|
2629
2771
|
msgstr "Język"
|
|
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 "Język: {0}"
|
|
2635
2777
|
|
|
@@ -2654,7 +2796,7 @@ msgstr "Ostatni miesiąc"
|
|
|
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 "Nazwisko"
|
|
2660
2802
|
|
|
@@ -2667,7 +2809,7 @@ msgstr "Ostatni wynik"
|
|
|
2667
2809
|
msgid "Last updated {0}"
|
|
2668
2810
|
msgstr "Ostatnia aktualizacja {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 "Ostatnie zamówienia"
|
|
2673
2815
|
|
|
@@ -2696,6 +2838,11 @@ msgstr "Cel linku"
|
|
|
2696
2838
|
msgid "Link title"
|
|
2697
2839
|
msgstr "Tytuł linku"
|
|
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 "Załaduj jeszcze {0} (pozostało {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 "Załaduj więcej"
|
|
|
2705
2852
|
msgid "Loading addresses..."
|
|
2706
2853
|
msgstr "Ładowanie adresów..."
|
|
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 "Ładowanie kolekcji..."
|
|
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 "Ładowanie ustawień globalnych..."
|
|
2715
2862
|
|
|
@@ -2756,8 +2903,8 @@ msgstr "Zarządzaj widokami globalnymi"
|
|
|
2756
2903
|
msgid "Manage Global Views"
|
|
2757
2904
|
msgstr "Zarządzaj widokami globalnymi"
|
|
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 "Zarządzaj językami"
|
|
2763
2910
|
|
|
@@ -2770,7 +2917,7 @@ msgid "Manage Tags"
|
|
|
2770
2917
|
msgstr "Zarządzaj tagami"
|
|
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 "Zarządzaj wariantami"
|
|
2776
2923
|
|
|
@@ -2802,12 +2949,12 @@ msgstr "Metoda"
|
|
|
2802
2949
|
msgid "Metrics"
|
|
2803
2950
|
msgstr "Metryki"
|
|
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 "Modyfikuj"
|
|
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 "Modyfikuj zamówienie"
|
|
2813
2960
|
|
|
@@ -2824,27 +2971,27 @@ msgstr "Od początku miesiąca"
|
|
|
2824
2971
|
msgid "More views"
|
|
2825
2972
|
msgstr "Więcej widoków"
|
|
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 "Przenieś"
|
|
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 "Przenieś kolekcje"
|
|
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 "Przenieś na najwyższy poziom"
|
|
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 "Przenoszenie {0} kolekcji do {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 "Przenoszenie..."
|
|
2850
2997
|
|
|
@@ -2857,21 +3004,20 @@ msgid "My Saved Views"
|
|
|
2857
3004
|
msgstr "Moje zapisane widoki"
|
|
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 "Nowy kanał"
|
|
|
2902
3048
|
msgid "New Channel"
|
|
2903
3049
|
msgstr "Nowy kanał"
|
|
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 "Nowa kolekcja"
|
|
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 "Nowa kolekcja"
|
|
2913
3059
|
|
|
@@ -2921,7 +3067,7 @@ msgstr "Nowy kraj"
|
|
|
2921
3067
|
msgid "New customer"
|
|
2922
3068
|
msgstr "Nowy klient"
|
|
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 "Nowy klient"
|
|
2927
3073
|
|
|
@@ -2934,7 +3080,7 @@ msgstr "Nowa grupa klientów"
|
|
|
2934
3080
|
msgid "New Customer Group"
|
|
2935
3081
|
msgstr "Nowa grupa klientów"
|
|
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 "Nowy e-mail:"
|
|
2940
3086
|
|
|
@@ -2943,7 +3089,7 @@ msgstr "Nowy e-mail:"
|
|
|
2943
3089
|
msgid "New facet"
|
|
2944
3090
|
msgstr "Nowy aspekt"
|
|
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 "Nowy aspekt"
|
|
2949
3095
|
|
|
@@ -2961,7 +3107,7 @@ msgid "New option"
|
|
|
2961
3107
|
msgstr "Nowa opcja"
|
|
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 "Nowa metoda płatności"
|
|
2967
3113
|
|
|
@@ -2969,8 +3115,8 @@ msgstr "Nowa metoda płatności"
|
|
|
2969
3115
|
msgid "New Payment Method"
|
|
2970
3116
|
msgstr "Nowa metoda płatności"
|
|
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 "Nowy produkt"
|
|
2976
3122
|
|
|
@@ -2986,12 +3132,12 @@ msgstr "Nowa opcja produktu"
|
|
|
2986
3132
|
msgid "New product option group"
|
|
2987
3133
|
msgstr "Nowa grupa opcji produktu"
|
|
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 "Nowy wariant produktu"
|
|
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 "Nowa promocja"
|
|
2997
3143
|
|
|
@@ -3018,7 +3164,7 @@ msgid "New Seller"
|
|
|
3018
3164
|
msgstr "Nowy sprzedawca"
|
|
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 "Nowa metoda wysyłki"
|
|
3024
3170
|
|
|
@@ -3062,7 +3208,7 @@ msgstr "Nowe okno"
|
|
|
3062
3208
|
msgid "New zone"
|
|
3063
3209
|
msgstr "Nowa strefa"
|
|
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 "Nowa strefa"
|
|
3068
3214
|
|
|
@@ -3070,7 +3216,7 @@ msgstr "Nowa strefa"
|
|
|
3070
3216
|
msgid "Next Execution"
|
|
3071
3217
|
msgstr "Następne wykonanie"
|
|
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 "Brak dostępnych akcji"
|
|
@@ -3087,7 +3233,7 @@ msgstr "Nie znaleziono adresów"
|
|
|
3087
3233
|
msgid "No alerts"
|
|
3088
3234
|
msgstr "Brak alertów"
|
|
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 "Brak adresu rozliczeniowego"
|
|
3093
3239
|
|
|
@@ -3095,8 +3241,8 @@ msgstr "Brak adresu rozliczeniowego"
|
|
|
3095
3241
|
msgid "No countries found"
|
|
3096
3242
|
msgstr "Nie znaleziono krajów"
|
|
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 "Brak klienta"
|
|
3102
3248
|
|
|
@@ -3116,11 +3262,11 @@ msgstr "Nie znaleziono kwalifikujących się metod wysyłki dla tego zamówienia
|
|
|
3116
3262
|
msgid "No facet values"
|
|
3117
3263
|
msgstr "Brak wartości aspektów"
|
|
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 "Brak realizacji"
|
|
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 "Nie skonfigurowano języków globalnych"
|
|
3126
3272
|
|
|
@@ -3136,7 +3282,7 @@ msgstr "Nie znaleziono pozycji"
|
|
|
3136
3282
|
msgid "No items selected"
|
|
3137
3283
|
msgstr "Nie wybrano pozycji"
|
|
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 "Nie wprowadzono modyfikacji"
|
|
3142
3288
|
|
|
@@ -3161,12 +3307,12 @@ msgstr "Te zmiany nie wymagają płatności ani zwrotu."
|
|
|
3161
3307
|
msgid "No payment or refund required"
|
|
3162
3308
|
msgstr "Nie wymagana płatność ani zwrot"
|
|
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 "Brak wyniku"
|
|
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 "Brak wyników"
|
|
@@ -3180,7 +3326,7 @@ msgstr "Nie znaleziono wyników"
|
|
|
3180
3326
|
msgid "No sellers found"
|
|
3181
3327
|
msgstr "Nie znaleziono sprzedawców"
|
|
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 "Brak adresu wysyłki"
|
|
3186
3332
|
|
|
@@ -3223,8 +3369,12 @@ msgstr "Nie uruchomiono"
|
|
|
3223
3369
|
msgid "Not set"
|
|
3224
3370
|
msgstr "Nie ustawiono"
|
|
3225
3371
|
|
|
3372
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:251
|
|
3373
|
+
msgid "Note"
|
|
3374
|
+
msgstr "Notatka"
|
|
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 "Dodano notatkę"
|
|
3230
3380
|
|
|
@@ -3236,10 +3386,14 @@ msgstr "Notatka jest prywatna"
|
|
|
3236
3386
|
msgid "Off"
|
|
3237
3387
|
msgstr "Wyłączone"
|
|
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 "Stary e-mail:"
|
|
3242
3392
|
|
|
3393
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:29
|
|
3394
|
+
msgid "Only draft orders can be completed"
|
|
3395
|
+
msgstr "Tylko wersje robocze zamówień mogą zostać ukończone"
|
|
3396
|
+
|
|
3243
3397
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:269
|
|
3244
3398
|
msgid "Option"
|
|
3245
3399
|
msgstr "Opcja"
|
|
@@ -3287,9 +3441,9 @@ msgstr "Wartości opcji"
|
|
|
3287
3441
|
msgid "OR"
|
|
3288
3442
|
msgstr "LUB"
|
|
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 "Anulowano zamówienie"
|
|
3295
3449
|
|
|
@@ -3297,33 +3451,42 @@ msgstr "Anulowano zamówienie"
|
|
|
3297
3451
|
msgid "Order Count"
|
|
3298
3452
|
msgstr "Liczba zamówień"
|
|
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 "Niestandardowe pola zamówienia zaktualizowane"
|
|
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 "Dostarczono zamówienie"
|
|
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 "Wersja robocza zamówienia jest gotowa do ukończenia"
|
|
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 "Wersja robocza zamówienia nie jest gotowa do ukończenia"
|
|
3469
|
+
|
|
3470
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:82
|
|
3309
3471
|
msgid "Order fulfilled"
|
|
3310
3472
|
msgstr "Zrealizowano zamówienie"
|
|
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 "Historia zamówień"
|
|
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 "Usunięto wiersz zamówienia"
|
|
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 "Zaktualizowano wiersz zamówienia"
|
|
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 "Wiersze zamówienia"
|
|
3329
3492
|
|
|
@@ -3332,11 +3495,11 @@ msgid "Order metrics"
|
|
|
3332
3495
|
msgstr "Metryki zamówień"
|
|
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 "Modyfikacja zamówienia #{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 "Zmodyfikowano zamówienie"
|
|
3342
3505
|
|
|
@@ -3344,12 +3507,12 @@ msgstr "Zmodyfikowano zamówienie"
|
|
|
3344
3507
|
msgid "Order not found"
|
|
3345
3508
|
msgstr "Nie znaleziono zamówienia"
|
|
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 "Złożono zamówienie"
|
|
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 "Wysłano zamówienie"
|
|
3355
3518
|
|
|
@@ -3357,7 +3520,7 @@ msgstr "Wysłano zamówienie"
|
|
|
3357
3520
|
msgid "Order Total"
|
|
3358
3521
|
msgstr "Suma zamówienia"
|
|
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 "Przeniesiono zamówienie"
|
|
3363
3526
|
|
|
@@ -3375,22 +3538,31 @@ msgstr "Zamówienia"
|
|
|
3375
3538
|
msgid "Orders Summary"
|
|
3376
3539
|
msgstr "Podsumowanie zamówień"
|
|
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 "Próg braku w magazynie"
|
|
3381
3544
|
|
|
3545
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:258
|
|
3546
|
+
msgid "Override"
|
|
3547
|
+
msgstr "Nadpisz"
|
|
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 "Strona {0} z {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 "Produkt nadrzędny"
|
|
3391
3558
|
|
|
3559
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:285
|
|
3560
|
+
msgid "Partial refund completed"
|
|
3561
|
+
msgstr "Częściowy zwrot zakończony"
|
|
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 "Hasło"
|
|
@@ -3412,11 +3584,11 @@ msgstr "Zaktualizowano hasło"
|
|
|
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 "Płatność #{0} przeniesiono do {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 "Autoryzowano płatność"
|
|
3422
3594
|
|
|
@@ -3424,15 +3596,15 @@ msgstr "Autoryzowano płatność"
|
|
|
3424
3596
|
msgid "Payment cancelled successfully"
|
|
3425
3597
|
msgstr "Pomyślnie anulowano płatność"
|
|
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 "Szczegóły płatności"
|
|
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 "Sprawdzanie kwalifikowalności płatności"
|
|
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 "Płatność nie powiodła się"
|
|
3438
3610
|
|
|
@@ -3455,7 +3627,7 @@ msgstr "Metoda płatności jest wymagana"
|
|
|
3455
3627
|
msgid "Payment Methods"
|
|
3456
3628
|
msgstr "Metody płatności"
|
|
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 "Rozliczono płatność"
|
|
3461
3633
|
|
|
@@ -3467,11 +3639,11 @@ msgstr "Pomyślnie rozliczono płatność"
|
|
|
3467
3639
|
msgid "Payment state updated successfully"
|
|
3468
3640
|
msgstr "Pomyślnie zaktualizowano stan płatności"
|
|
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 "Przeniesiono płatność"
|
|
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 "Limit użycia na klienta"
|
|
3477
3649
|
|
|
@@ -3489,7 +3661,7 @@ msgstr "Numer telefonu"
|
|
|
3489
3661
|
msgid "Phone Number"
|
|
3490
3662
|
msgstr "Numer telefonu"
|
|
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 "Złożono"
|
|
3495
3667
|
|
|
@@ -3497,7 +3669,7 @@ msgstr "Złożono"
|
|
|
3497
3669
|
msgid "Please add products and complete the shipping address to run the test."
|
|
3498
3670
|
msgstr "Dodaj produkty i uzupełnij adres wysyłki, aby uruchomić test."
|
|
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 "Wybierz kolekcję docelową"
|
|
3503
3675
|
|
|
@@ -3512,7 +3684,7 @@ msgstr "Kod pocztowy"
|
|
|
3512
3684
|
msgid "Preview"
|
|
3513
3685
|
msgstr "Podgląd"
|
|
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 "Podgląd zmian"
|
|
3518
3690
|
|
|
@@ -3520,15 +3692,16 @@ msgstr "Podgląd zmian"
|
|
|
3520
3692
|
msgid "Preview order modifications"
|
|
3521
3693
|
msgstr "Podgląd modyfikacji zamówienia"
|
|
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 "Cena"
|
|
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 "Cena i podatek"
|
|
3534
3707
|
|
|
@@ -3540,16 +3713,16 @@ msgstr "Współczynnik przeliczania cen"
|
|
|
3540
3713
|
msgid "Prices include tax for default tax zone"
|
|
3541
3714
|
msgstr "Ceny zawierają podatek dla domyślnej strefy podatkowej"
|
|
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 "prywatne"
|
|
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 "Prywatne"
|
|
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 "Prywatne kolekcje nie są widoczne w sklepie"
|
|
3555
3728
|
|
|
@@ -3557,12 +3730,17 @@ msgstr "Prywatne kolekcje nie są widoczne w sklepie"
|
|
|
3557
3730
|
msgid "Private facets are not visible in the shop"
|
|
3558
3731
|
msgstr "Prywatne aspekty nie są widoczne w sklepie"
|
|
3559
3732
|
|
|
3733
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:360
|
|
3734
|
+
msgid "Processing..."
|
|
3735
|
+
msgstr "Przetwarzanie..."
|
|
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 "Produkt"
|
|
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 "Nazwa produktu"
|
|
3568
3746
|
|
|
@@ -3574,20 +3752,20 @@ msgstr "Grupa opcji produktu"
|
|
|
3574
3752
|
msgid "Product options"
|
|
3575
3753
|
msgstr "Opcje produktu"
|
|
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 "Opcje produktu"
|
|
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 "Warianty produktów"
|
|
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 "Warianty produktów"
|
|
|
3595
3773
|
msgid "Products"
|
|
3596
3774
|
msgstr "Produkty"
|
|
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 "Profil"
|
|
@@ -3607,17 +3785,21 @@ msgstr "Profil"
|
|
|
3607
3785
|
msgid "Promotions"
|
|
3608
3786
|
msgstr "Promocje"
|
|
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 "publiczne"
|
|
3613
3791
|
|
|
3792
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:99
|
|
3793
|
+
msgid "Qty"
|
|
3794
|
+
msgstr "Ilość"
|
|
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 "Ilość"
|
|
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 "Kolejka"
|
|
3623
3805
|
|
|
@@ -3626,9 +3808,14 @@ msgid "Rate"
|
|
|
3626
3808
|
msgstr "Stawka"
|
|
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 "Przyczyna"
|
|
3631
3814
|
|
|
3815
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:127
|
|
3816
|
+
msgid "Reason:"
|
|
3817
|
+
msgstr "Powód:"
|
|
3818
|
+
|
|
3632
3819
|
#: src/app/routes/_authenticated/_products/products.tsx:107
|
|
3633
3820
|
msgid "Rebuild search index"
|
|
3634
3821
|
msgstr "Przebuduj indeks wyszukiwania"
|
|
@@ -3641,12 +3828,29 @@ msgstr "Odśwież"
|
|
|
3641
3828
|
msgid "Refresh data"
|
|
3642
3829
|
msgstr "Odśwież dane"
|
|
3643
3830
|
|
|
3831
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:102
|
|
3832
|
+
msgid "Refund"
|
|
3833
|
+
msgstr "Zwrot"
|
|
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 "Zwróć {0}"
|
|
3839
|
+
|
|
3840
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:169
|
|
3841
|
+
msgid "Refund & Cancel"
|
|
3842
|
+
msgstr "Zwróć i anuluj"
|
|
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 "Zwrot #{0} przeniesiono do {1}"
|
|
3649
3849
|
|
|
3850
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:72
|
|
3851
|
+
msgid "Refund and cancel order"
|
|
3852
|
+
msgstr "Zwróć i anuluj zamówienie"
|
|
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 "Zwrot z tej metody"
|
|
@@ -3655,11 +3859,15 @@ msgstr "Zwrot z tej metody"
|
|
|
3655
3859
|
msgid "Refund ID"
|
|
3656
3860
|
msgstr "ID zwrotu"
|
|
3657
3861
|
|
|
3862
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:299
|
|
3863
|
+
msgid "Refund processed successfully"
|
|
3864
|
+
msgstr "Zwrot przetworzony pomyślnie"
|
|
3865
|
+
|
|
3658
3866
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:170
|
|
3659
3867
|
msgid "Refund required"
|
|
3660
3868
|
msgstr "Wymagany zwrot"
|
|
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 "Rozliczono zwrot"
|
|
3665
3873
|
|
|
@@ -3667,7 +3875,24 @@ msgstr "Rozliczono zwrot"
|
|
|
3667
3875
|
msgid "Refund settled successfully"
|
|
3668
3876
|
msgstr "Pomyślnie rozliczono zwrot"
|
|
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 "Zwróć koszt wysyłki"
|
|
3881
|
+
|
|
3882
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:244
|
|
3883
|
+
msgid "Refund total"
|
|
3884
|
+
msgstr "Suma zwrotu"
|
|
3885
|
+
|
|
3886
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:200
|
|
3887
|
+
msgid "Refund total cannot be negative"
|
|
3888
|
+
msgstr "Suma zwrotu nie może być ujemna"
|
|
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 "Suma zwrotu przekracza maksymalną kwotę do zwrotu wynoszącą {0}"
|
|
3894
|
+
|
|
3895
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:74
|
|
3671
3896
|
msgid "Refund transitioned"
|
|
3672
3897
|
msgstr "Przeniesiono zwrot"
|
|
3673
3898
|
|
|
@@ -3681,7 +3906,7 @@ msgstr "Zwroty ({0})"
|
|
|
3681
3906
|
msgid "Regenerate slug from source field"
|
|
3682
3907
|
msgstr "Regeneruj slug z pola źródłowego"
|
|
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 "Regiony"
|
|
3687
3912
|
|
|
@@ -3693,7 +3918,7 @@ msgstr "Zarejestrowany"
|
|
|
3693
3918
|
msgid "Remaining:"
|
|
3694
3919
|
msgstr "Pozostało:"
|
|
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 "Usuń"
|
|
3699
3924
|
|
|
@@ -3703,7 +3928,7 @@ msgstr "Usuń z bieżącego kanału"
|
|
|
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 "Usuń ze strefy"
|
|
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 "Usuń link"
|
|
|
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 "Usunięto {0} {1} ze strefy"
|
|
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 "Usunięto kody kuponów"
|
|
3729
3954
|
|
|
@@ -3732,7 +3957,7 @@ msgid "Removed from group"
|
|
|
3732
3957
|
msgstr "Usunięto z grupy"
|
|
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 "Usuwanie {0} pozycji"
|
|
3738
3963
|
|
|
@@ -3744,6 +3969,10 @@ msgstr "Zmień nazwę"
|
|
|
3744
3969
|
msgid "Reset"
|
|
3745
3970
|
msgstr "Resetuj"
|
|
3746
3971
|
|
|
3972
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:105
|
|
3973
|
+
msgid "Return to stock"
|
|
3974
|
+
msgstr "Zwróć na stan"
|
|
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 "Sprawdź zmiany przed zastosowaniem ich do zamówienia."
|
|
@@ -3781,7 +4010,7 @@ msgstr "To samo okno"
|
|
|
3781
4010
|
msgid "Sample Formatting"
|
|
3782
4011
|
msgstr "Przykładowe formatowanie"
|
|
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 "Zapisz adres"
|
|
3798
4027
|
|
|
3799
4028
|
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
|
|
3800
|
-
msgid "Save changes"
|
|
3801
|
-
msgstr "Zapisz zmiany"
|
|
4029
|
+
#~ msgid "Save changes"
|
|
4030
|
+
#~ msgstr "Zapisz zmiany"
|
|
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 "Zapisz zmiany"
|
|
3807
4036
|
|
|
@@ -3818,7 +4047,7 @@ msgid "Save View"
|
|
|
3818
4047
|
msgstr "Zapisz widok"
|
|
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 "Zapisywanie..."
|
|
3824
4053
|
|
|
@@ -3915,7 +4144,11 @@ msgstr "Wybierz kraj"
|
|
|
3915
4144
|
msgid "Select a currency"
|
|
3916
4145
|
msgstr "Wybierz walutę"
|
|
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 "Wybierz klienta, aby kontynuować"
|
|
4150
|
+
|
|
4151
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:83
|
|
3919
4152
|
msgid "Select a destination collection"
|
|
3920
4153
|
msgstr "Wybierz kolekcję docelową"
|
|
3921
4154
|
|
|
@@ -3923,12 +4156,16 @@ msgstr "Wybierz kolekcję docelową"
|
|
|
3923
4156
|
msgid "Select a language"
|
|
3924
4157
|
msgstr "Wybierz język"
|
|
3925
4158
|
|
|
4159
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:220
|
|
4160
|
+
msgid "Select a reason..."
|
|
4161
|
+
msgstr "Wybierz powód..."
|
|
4162
|
+
|
|
3926
4163
|
#: src/lib/components/shared/role-selector.tsx:52
|
|
3927
4164
|
msgid "Select a role"
|
|
3928
4165
|
msgstr "Wybierz rolę"
|
|
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 "Wybierz kolekcję docelową, aby przenieść {0}."
|
|
3934
4171
|
|
|
@@ -3948,11 +4185,11 @@ msgstr "Wybierz adres"
|
|
|
3948
4185
|
msgid "Select an address"
|
|
3949
4186
|
msgstr "Wybierz adres"
|
|
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 "Wybierz opcję"
|
|
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 "Wybierz dostępne języki"
|
|
3958
4195
|
|
|
@@ -3972,7 +4209,7 @@ msgstr "Wybierz zakres dat"
|
|
|
3972
4209
|
msgid "Select display language"
|
|
3973
4210
|
msgstr "Wybierz język wyświetlania"
|
|
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 "Wybierz spośród języków dostępnych globalnie dla tego kanału"
|
|
3978
4215
|
|
|
@@ -3984,10 +4221,18 @@ msgstr "Wybierz pozycję"
|
|
|
3984
4221
|
msgid "Select items"
|
|
3985
4222
|
msgstr "Wybierz pozycje"
|
|
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 "Wybierz pozycje do zwrotu i opcjonalnie zwróć na stan"
|
|
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 "Wybierz następny stan"
|
|
3990
4231
|
|
|
4232
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:285
|
|
4233
|
+
msgid "Select payments to refund"
|
|
4234
|
+
msgstr "Wybierz płatności do zwrotu"
|
|
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 "Wybierz ilości do zrealizowania i skonfiguruj obsługę realizacji"
|
|
@@ -4027,7 +4272,11 @@ msgstr "Zamówienia sprzedawcy"
|
|
|
4027
4272
|
msgid "Sellers"
|
|
4028
4273
|
msgstr "Sprzedawcy"
|
|
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 "Ustaw adres dostawy i wybierz metodę wysyłki"
|
|
4278
|
+
|
|
4279
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:414
|
|
4031
4280
|
msgid "Set custom fields"
|
|
4032
4281
|
msgstr "Ustaw pola niestandardowe"
|
|
4033
4282
|
|
|
@@ -4047,8 +4296,8 @@ msgstr "Ustawia języki dostępne dla wszystkich kanałów. Poszczególne kanał
|
|
|
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 "Ustawia poziom magazynowy, przy którym ten wariant jest uważany za niedostępny. Użycie wartości ujemnej umożliwia obsługę zamówień wstecznych. Może zostać zastąpiony przez warianty produktu."
|
|
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 "Ustawia poziom magazynowy, przy którym ten wariant jest uważany za niedostępny. Użycie wartości ujemnej umożliwia obsługę zamówień wstecznych."
|
|
4054
4303
|
|
|
@@ -4062,14 +4311,15 @@ msgstr "Rozlicz płatność"
|
|
|
4062
4311
|
msgid "Settle refund"
|
|
4063
4312
|
msgstr "Rozlicz zwrot"
|
|
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 "Wysyłka"
|
|
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 "Adres wysyłki"
|
|
4075
4325
|
|
|
@@ -4077,19 +4327,19 @@ msgstr "Adres wysyłki"
|
|
|
4077
4327
|
msgid "Shipping Address"
|
|
4078
4328
|
msgstr "Adres wysyłki"
|
|
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 "Zmieniono adres wysyłki"
|
|
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 "Adres dostawy ustawiony dla zamówienia"
|
|
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 "Adres dostawy usunięty dla zamówienia"
|
|
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 "Zmieniono metodę wysyłki"
|
|
4095
4345
|
|
|
@@ -4101,7 +4351,7 @@ msgstr "Metoda wysyłki kwalifikuje się do tego zamówienia"
|
|
|
4101
4351
|
msgid "Shipping method is not eligible for this order"
|
|
4102
4352
|
msgstr "Metoda wysyłki nie kwalifikuje się do tego zamówienia"
|
|
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 "Metoda dostawy ustawiona dla zamówienia"
|
|
4107
4357
|
|
|
@@ -4111,6 +4361,10 @@ msgstr "Metoda dostawy ustawiona dla zamówienia"
|
|
|
4111
4361
|
msgid "Shipping Methods"
|
|
4112
4362
|
msgstr "Metody wysyłki"
|
|
4113
4363
|
|
|
4364
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:122
|
|
4365
|
+
msgid "Shipping refunded"
|
|
4366
|
+
msgstr "Wysyłka zwrócona"
|
|
4367
|
+
|
|
4114
4368
|
#: src/lib/components/layout/language-dialog.tsx:115
|
|
4115
4369
|
msgid "Short date"
|
|
4116
4370
|
msgstr "Data krótka"
|
|
@@ -4132,8 +4386,9 @@ msgstr "Zaloguj się"
|
|
|
4132
4386
|
msgid "Sign in to access the admin dashboard"
|
|
4133
4387
|
msgstr "Zaloguj się, aby uzyskać dostęp do panelu administracyjnego"
|
|
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 "Zaloguj się, aby uzyskać dostęp do panelu administracyjnego"
|
|
|
4141
4396
|
msgid "SKU"
|
|
4142
4397
|
msgstr "SKU"
|
|
4143
4398
|
|
|
4144
|
-
#: src/app/routes/_authenticated/
|
|
4145
|
-
|
|
4399
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:131
|
|
4400
|
+
msgid "SKU:"
|
|
4401
|
+
msgstr "SKU:"
|
|
4402
|
+
|
|
4403
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:171
|
|
4404
|
+
#: src/app/routes/_authenticated/_products/products_.$id.tsx:150
|
|
4146
4405
|
msgid "Slug"
|
|
4147
4406
|
msgstr "Slug"
|
|
4148
4407
|
|
|
@@ -4162,14 +4421,14 @@ msgstr "Niektóre zasoby są niedostępne"
|
|
|
4162
4421
|
msgid "Source"
|
|
4163
4422
|
msgstr "Źródło"
|
|
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 "Data rozpoczęcia"
|
|
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 "Stan"
|
|
4175
4434
|
|
|
@@ -4183,11 +4442,11 @@ msgid "State/Province"
|
|
|
4183
4442
|
msgstr "Stan/Województwo"
|
|
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 "Status"
|
|
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 "Magazyn"
|
|
4193
4452
|
|
|
@@ -4195,12 +4454,12 @@ msgstr "Magazyn"
|
|
|
4195
4454
|
msgid "Stock allocated"
|
|
4196
4455
|
msgstr "Przydzielono stan magazynowy"
|
|
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 "Poziom magazynowy"
|
|
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 "Poziomy magazynowe"
|
|
4206
4465
|
|
|
@@ -4228,7 +4487,7 @@ msgstr "Ulica"
|
|
|
4228
4487
|
msgid "Street Address 2"
|
|
4229
4488
|
msgstr "Ulica 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 "Suma częściowa"
|
|
4234
4493
|
|
|
@@ -4256,7 +4515,7 @@ msgstr "Pomyślnie utworzono administratora"
|
|
|
4256
4515
|
msgid "Successfully created channel"
|
|
4257
4516
|
msgstr "Pomyślnie utworzono kanał"
|
|
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 "Pomyślnie utworzono kolekcję"
|
|
4262
4521
|
|
|
@@ -4284,11 +4543,11 @@ msgstr "Pomyślnie utworzono wartość aspektu"
|
|
|
4284
4543
|
msgid "Successfully created option group"
|
|
4285
4544
|
msgstr "Pomyślnie utworzono grupę opcji"
|
|
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 "Pomyślnie utworzono metodę płatności"
|
|
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 "Pomyślnie utworzono produkt"
|
|
4294
4553
|
|
|
@@ -4304,12 +4563,12 @@ msgstr "Pomyślnie utworzono grupę opcji produktu"
|
|
|
4304
4563
|
msgid "Successfully created product options"
|
|
4305
4564
|
msgstr "Pomyślnie utworzono opcje produktu"
|
|
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 "Pomyślnie utworzono wariant produktu"
|
|
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 "Pomyślnie utworzono promocję"
|
|
4315
4574
|
|
|
@@ -4321,7 +4580,7 @@ msgstr "Pomyślnie utworzono rolę"
|
|
|
4321
4580
|
msgid "Successfully created seller"
|
|
4322
4581
|
msgstr "Pomyślnie utworzono sprzedawcę"
|
|
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 "Pomyślnie utworzono metodę wysyłki"
|
|
4327
4586
|
|
|
@@ -4357,6 +4616,10 @@ msgstr "Pomyślnie usunięto {selectionLength} {entityType} z kanału"
|
|
|
4357
4616
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4358
4617
|
msgstr "Pomyślnie usunięto {successCount} aspektów z kanału"
|
|
4359
4618
|
|
|
4619
|
+
#: src/lib/components/shared/assigned-channels.tsx:39
|
|
4620
|
+
msgid "Successfully removed product from channel"
|
|
4621
|
+
msgstr "Produkt został pomyślnie usunięty z kanału"
|
|
4622
|
+
|
|
4360
4623
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4361
4624
|
msgid "Successfully updated administrator"
|
|
4362
4625
|
msgstr "Pomyślnie zaktualizowano administratora"
|
|
@@ -4369,7 +4632,7 @@ msgstr "Pomyślnie zaktualizowano zasób"
|
|
|
4369
4632
|
msgid "Successfully updated channel"
|
|
4370
4633
|
msgstr "Pomyślnie zaktualizowano kanał"
|
|
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 "Pomyślnie zaktualizowano kolekcję"
|
|
4375
4638
|
|
|
@@ -4401,16 +4664,16 @@ msgstr "Pomyślnie zaktualizowano wartości aspektów dla {entityIdsLength} {ent
|
|
|
4401
4664
|
msgid "Successfully updated global settings"
|
|
4402
4665
|
msgstr "Pomyślnie zaktualizowano ustawienia globalne"
|
|
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 "Pomyślnie zaktualizowano zamówienie"
|
|
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 "Pomyślnie zaktualizowano metodę płatności"
|
|
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 "Pomyślnie zaktualizowano produkt"
|
|
4416
4679
|
|
|
@@ -4422,15 +4685,15 @@ msgstr "Pomyślnie zaktualizowano opcję produktu"
|
|
|
4422
4685
|
msgid "Successfully updated product option group"
|
|
4423
4686
|
msgstr "Pomyślnie zaktualizowano grupę opcji produktu"
|
|
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 "Pomyślnie zaktualizowano wariant produktu"
|
|
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 "Pomyślnie zaktualizowano profil"
|
|
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 "Pomyślnie zaktualizowano promocję"
|
|
4436
4699
|
|
|
@@ -4442,7 +4705,7 @@ msgstr "Pomyślnie zaktualizowano rolę"
|
|
|
4442
4705
|
msgid "Successfully updated seller"
|
|
4443
4706
|
msgstr "Pomyślnie zaktualizowano sprzedawcę"
|
|
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 "Pomyślnie zaktualizowano metodę wysyłki"
|
|
4448
4711
|
|
|
@@ -4462,7 +4725,7 @@ msgstr "Pomyślnie zaktualizowano stawkę podatkową"
|
|
|
4462
4725
|
msgid "Successfully updated zone"
|
|
4463
4726
|
msgstr "Pomyślnie zaktualizowano strefę"
|
|
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 "Podsumowanie modyfikacji"
|
|
4468
4731
|
|
|
@@ -4470,7 +4733,7 @@ msgstr "Podsumowanie modyfikacji"
|
|
|
4470
4733
|
msgid "Super Admin"
|
|
4471
4734
|
msgstr "Superadministrator"
|
|
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 "Dopłata"
|
|
4476
4739
|
|
|
@@ -4493,16 +4756,21 @@ msgstr "Podstawa opodatkowania"
|
|
|
4493
4756
|
msgid "Tax Categories"
|
|
4494
4757
|
msgstr "Kategorie podatkowe"
|
|
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 "Kategoria podatkowa"
|
|
4500
4763
|
|
|
4764
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:124
|
|
4765
|
+
msgid "Tax description"
|
|
4766
|
+
msgstr "Opis podatku"
|
|
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 "Stawka podatkowa"
|
|
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 "Stawka podatkowa: {taxRate}%"
|
|
4508
4776
|
|
|
@@ -4512,7 +4780,7 @@ msgstr "Stawka podatkowa: {taxRate}%"
|
|
|
4512
4780
|
msgid "Tax Rates"
|
|
4513
4781
|
msgstr "Stawki podatkowe"
|
|
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 "Podsumowanie podatków"
|
|
4518
4786
|
|
|
@@ -4562,11 +4830,11 @@ msgstr "Testowanie metody wysyłki..."
|
|
|
4562
4830
|
msgid "Testing shipping methods..."
|
|
4563
4831
|
msgstr "Testowanie metod wysyłki..."
|
|
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 "Dane, które zostały przekazane do zadania"
|
|
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 "Wynik zadania"
|
|
@@ -4579,7 +4847,7 @@ msgstr "Wybrane uprawnienia zostaną zastosowane do tych kanałów."
|
|
|
4579
4847
|
msgid "The token is used to specify the channel when making API requests."
|
|
4580
4848
|
msgstr "Token służy do określenia kanału podczas wykonywania żądań 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 "Nie można dodać wariantu. Upewnij się, że produkt nadrzędny jest włączony."
|
|
4585
4853
|
|
|
@@ -4591,11 +4859,11 @@ msgstr "Motyw"
|
|
|
4591
4859
|
msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
|
|
4592
4860
|
msgstr "To są klienci w grupie klientów <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 "To są wartości aspektów dla aspektu <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 "Te języki będą dostępne dla wszystkich kanałów"
|
|
4601
4869
|
|
|
@@ -4657,10 +4925,10 @@ msgid "Token"
|
|
|
4657
4925
|
msgstr "Token"
|
|
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 "Suma"
|
|
4666
4934
|
|
|
@@ -4676,7 +4944,7 @@ msgstr "Suma zwrotu:"
|
|
|
4676
4944
|
msgid "Total Revenue"
|
|
4677
4945
|
msgstr "Łączny przychód"
|
|
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 "Śledź"
|
|
4682
4950
|
|
|
@@ -4703,7 +4971,7 @@ msgstr "ID transakcji jest wymagane"
|
|
|
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 "Przejdź do {0}"
|
|
@@ -4726,10 +4994,12 @@ msgstr "Wpisz co najmniej 2 znaki, aby wyszukać..."
|
|
|
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 "Cena jednostkowa"
|
|
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 "Niezweryfikowany"
|
|
|
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 "Niezweryfikowany"
|
|
|
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 "Zaktualizuj"
|
|
4774
5044
|
|
|
@@ -4784,7 +5054,7 @@ msgstr "Zaktualizowano"
|
|
|
4784
5054
|
msgid "Upload"
|
|
4785
5055
|
msgstr "Prześlij"
|
|
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 "Limit użycia"
|
|
4790
5060
|
|
|
@@ -4798,15 +5068,15 @@ msgstr "Użyj jako domyślny adres rozliczeniowy"
|
|
|
4798
5068
|
msgid "Use as the default shipping address"
|
|
4799
5069
|
msgstr "Użyj jako domyślny adres wysyłki"
|
|
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 "Użyj globalnego progu braku w magazynie"
|
|
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 musi być używane wewnątrz 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 musi być używane wewnątrz WidgetFiltersProvider"
|
|
4812
5082
|
|
|
@@ -4818,7 +5088,7 @@ msgstr "Używanie zewnętrznej strategii uwierzytelniania: {strategy}"
|
|
|
4818
5088
|
msgid "Using native authentication strategy"
|
|
4819
5089
|
msgstr "Używanie natywnej strategii uwierzytelniania"
|
|
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 "Wartości"
|
|
4824
5094
|
|
|
@@ -4830,7 +5100,7 @@ msgstr "Wariant"
|
|
|
4830
5100
|
msgid "Variant deleted successfully"
|
|
4831
5101
|
msgstr "Pomyślnie usunięto wariant"
|
|
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 "Nazwa wariantu"
|
|
4836
5106
|
|
|
@@ -4855,7 +5125,7 @@ msgstr "Zobacz zmiany"
|
|
|
4855
5125
|
msgid "View converted to global successfully"
|
|
4856
5126
|
msgstr "Pomyślnie przekonwertowano widok na globalny"
|
|
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 "Zobacz dane"
|
|
4861
5131
|
|
|
@@ -4863,7 +5133,7 @@ msgstr "Zobacz dane"
|
|
|
4863
5133
|
msgid "View deleted successfully"
|
|
4864
5134
|
msgstr "Pomyślnie usunięto widok"
|
|
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 "Zobacz szczegóły"
|
|
4869
5139
|
|
|
@@ -4871,11 +5141,11 @@ msgstr "Zobacz szczegóły"
|
|
|
4871
5141
|
msgid "View duplicated successfully"
|
|
4872
5142
|
msgstr "Pomyślnie zduplikowano widok"
|
|
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 "Zobacz dane zadania"
|
|
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 "Zobacz wynik zadania"
|
|
@@ -4884,16 +5154,16 @@ msgstr "Zobacz wynik zadania"
|
|
|
4884
5154
|
msgid "View renamed successfully"
|
|
4885
5155
|
msgstr "Pomyślnie zmieniono nazwę widoku"
|
|
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 "Zobacz wynik"
|
|
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 "Zobacz wartości"
|
|
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 "Widoczność"
|
|
4899
5169
|
|
|
@@ -4909,12 +5179,12 @@ msgstr "Widoczne dla klienta"
|
|
|
4909
5179
|
msgid "Welcome to Vendure"
|
|
4910
5180
|
msgstr "Witamy w 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 "Po włączeniu produkt jest dostępny w sklepie"
|
|
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 "Po włączeniu promocja jest dostępna w sklepie"
|
|
4920
5190
|
|
|
@@ -4930,7 +5200,7 @@ msgstr "Po włączeniu śledzenia poziomy magazynowe wariantów produktów będ
|
|
|
4930
5200
|
msgid "Width"
|
|
4931
5201
|
msgstr "Szerokość"
|
|
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 "Z wybranymi..."
|
|
@@ -4940,11 +5210,11 @@ msgctxt "date-range"
|
|
|
4940
5210
|
msgid "Yesterday"
|
|
4941
5211
|
msgstr "Wczoraj"
|
|
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 "Nie masz uprawnień do wyświetlania ustawień kanału"
|
|
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 "Nie masz uprawnień do wyświetlania globalnych ustawień języka"
|
|
4950
5220
|
|
|
@@ -4952,7 +5222,7 @@ msgstr "Nie masz uprawnień do wyświetlania globalnych ustawień języka"
|
|
|
4952
5222
|
msgid "You haven't saved any views yet."
|
|
4953
5223
|
msgstr "Nie zapisałeś jeszcze żadnych widoków."
|
|
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 "Twoje ostatnie zamówienia"
|
|
4958
5228
|
|
|
@@ -4960,7 +5230,7 @@ msgstr "Twoje ostatnie zamówienia"
|
|
|
4960
5230
|
msgid "Your orders summary"
|
|
4961
5231
|
msgstr "Podsumowanie Twoich zamówień"
|
|
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 "Strefa"
|