@wilshop/dashboard 3.5.6 → 3.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin/dashboard.plugin.d.ts +1 -1
- package/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/compiler.js +50 -24
- package/dist/vite/utils/path-transformer.d.ts +20 -0
- package/dist/vite/utils/path-transformer.js +116 -0
- package/dist/vite/utils/plugin-discovery.js +3 -2
- package/dist/vite/utils/ui-config.js +15 -1
- package/dist/vite/vite-plugin-lingui-babel.d.ts +15 -2
- package/dist/vite/vite-plugin-lingui-babel.js +90 -8
- package/dist/vite/vite-plugin-translations.js +2 -2
- package/dist/vite/vite-plugin-ui-config.d.ts +31 -0
- package/package.json +10 -6
- package/src/app/common/delete-bulk-action.tsx +1 -1
- package/src/app/common/duplicate-bulk-action.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -3
- package/src/app/routes/_authenticated/_collections/collections.tsx +169 -48
- package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +36 -5
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx +31 -29
- package/src/app/routes/_authenticated/_customers/customers.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_customers/customers.tsx +3 -0
- package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/draft-order-status.tsx +48 -0
- package/src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx +8 -5
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +79 -54
- package/src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx +43 -3
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx +19 -3
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +1 -0
- package/src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx +372 -0
- package/src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts +345 -0
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +41 -0
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +22 -6
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +51 -0
- package/src/app/routes/_authenticated/_orders/utils/refund-utils.ts +100 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +1 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +6 -2
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +9 -3
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +49 -30
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_profile/profile.graphql.ts +7 -0
- package/src/app/routes/_authenticated/_profile/profile.tsx +25 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +18 -2
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +7 -1
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +4 -1
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +14 -2
- package/src/i18n/common-strings.ts +7 -0
- package/src/i18n/locales/ar.po +669 -399
- package/src/i18n/locales/bg.po +1889 -46
- package/src/i18n/locales/cs.po +676 -406
- package/src/i18n/locales/de.po +676 -406
- package/src/i18n/locales/en.po +669 -399
- package/src/i18n/locales/es.po +676 -406
- package/src/i18n/locales/fa.po +676 -406
- package/src/i18n/locales/fr.po +676 -406
- package/src/i18n/locales/he.po +676 -406
- package/src/i18n/locales/hr.po +676 -406
- package/src/i18n/locales/it.po +676 -406
- package/src/i18n/locales/ja.po +676 -406
- package/src/i18n/locales/nb.po +676 -406
- package/src/i18n/locales/ne.po +676 -406
- package/src/i18n/locales/pl.po +676 -406
- package/src/i18n/locales/pt_BR.po +676 -406
- package/src/i18n/locales/pt_PT.po +676 -406
- package/src/i18n/locales/ru.po +676 -406
- package/src/i18n/locales/sv.po +676 -406
- package/src/i18n/locales/tr.po +676 -406
- package/src/i18n/locales/uk.po +676 -406
- package/src/i18n/locales/zh_Hans.po +676 -406
- package/src/i18n/locales/zh_Hant.po +676 -406
- package/src/lib/components/data-input/facet-value-input.tsx +2 -2
- package/src/lib/components/data-input/index.ts +1 -0
- package/src/lib/components/data-input/select-with-options.tsx +23 -7
- package/src/lib/components/data-input/struct-form-input.tsx +53 -21
- package/src/lib/components/data-input/text-input.tsx +1 -1
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +2 -1
- package/src/lib/components/data-table/data-table-context.tsx +2 -10
- package/src/lib/components/data-table/data-table-utils.ts +34 -12
- package/src/lib/components/data-table/data-table.tsx +68 -30
- package/src/lib/components/data-table/global-views-bar.tsx +1 -1
- package/src/lib/components/data-table/my-views-button.tsx +1 -1
- package/src/lib/components/data-table/save-view-button.tsx +1 -1
- package/src/lib/components/data-table/use-generated-columns.tsx +9 -2
- package/src/lib/components/data-table/views-sheet.tsx +1 -1
- package/src/lib/components/layout/channel-switcher.tsx +16 -17
- package/src/lib/components/layout/manage-languages-dialog.tsx +1 -1
- package/src/lib/components/shared/assign-to-channel-bulk-action.tsx +1 -1
- package/src/lib/components/shared/configurable-operation-input.tsx +23 -0
- package/src/lib/components/shared/configurable-operation-multi-selector.tsx +45 -0
- package/src/lib/components/shared/configurable-operation-selector.tsx +5 -0
- package/src/lib/components/shared/paginated-list-context.ts +10 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +6 -32
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +1 -1
- package/src/lib/components/ui/alert.tsx +2 -0
- package/src/lib/constants.ts +7 -319
- package/src/lib/framework/dashboard-widget/base-widget.tsx +3 -12
- package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +1 -1
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +2 -20
- package/src/lib/framework/extension-api/input-component-extensions.tsx +4 -0
- package/src/lib/framework/form-engine/custom-form-component.tsx +13 -3
- package/src/lib/framework/form-engine/form-engine-types.ts +3 -5
- package/src/lib/framework/form-engine/form-schema-tools.ts +4 -1
- package/src/lib/framework/form-engine/use-generated-form.tsx +6 -2
- package/src/lib/framework/form-engine/utils.spec.ts +129 -2
- package/src/lib/framework/form-engine/utils.ts +36 -9
- package/src/lib/framework/form-engine/value-transformers.ts +6 -0
- package/src/lib/framework/page/detail-page-route-loader.tsx +6 -4
- package/src/lib/framework/page/detail-page.tsx +22 -37
- package/src/lib/framework/page/list-page.stories.tsx +41 -2
- package/src/lib/framework/page/list-page.tsx +8 -0
- package/src/lib/graphql/graphql-env.d.ts +33 -16
- package/src/lib/graphql/schema-enums.ts +13 -0
- package/src/lib/hooks/use-alerts-context.ts +10 -0
- package/src/lib/hooks/use-alerts.ts +1 -1
- package/src/lib/hooks/use-data-table-context.ts +11 -0
- package/src/lib/hooks/use-dynamic-translations.ts +7 -0
- package/src/lib/hooks/use-job-queue-polling.ts +160 -0
- package/src/lib/hooks/use-paginated-list.ts +28 -0
- package/src/lib/hooks/use-widget-dimensions.ts +12 -0
- package/src/lib/hooks/use-widget-filters.ts +21 -0
- package/src/lib/index.ts +12 -0
- package/src/lib/providers/alerts-provider.tsx +3 -11
- package/src/lib/virtual.d.ts +5 -0
- package/src/lib/utils/global-languages.ts +0 -268
package/src/i18n/locales/hr.po
CHANGED
|
@@ -224,7 +224,7 @@ msgstr "Pokretanje preostalih ažuriranja indeksa pretrage"
|
|
|
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 "Unesite i pritisnite Enter ili zarez za dodavanje..."
|
|
228
228
|
|
|
229
229
|
#. js-lingui-explicit-id
|
|
230
230
|
#: src/i18n/common-strings.ts:7
|
|
@@ -360,336 +360,361 @@ msgstr "Organiziranje dodatne uplate"
|
|
|
360
360
|
|
|
361
361
|
#. js-lingui-explicit-id
|
|
362
362
|
#: src/i18n/common-strings.ts:43
|
|
363
|
+
msgid "refundReason.CustomerRequest"
|
|
364
|
+
msgstr "Zahtjev kupca"
|
|
365
|
+
|
|
366
|
+
#. js-lingui-explicit-id
|
|
367
|
+
#: src/i18n/common-strings.ts:44
|
|
368
|
+
msgid "refundReason.NotAvailable"
|
|
369
|
+
msgstr "Nedostupno"
|
|
370
|
+
|
|
371
|
+
#. js-lingui-explicit-id
|
|
372
|
+
#: src/i18n/common-strings.ts:45
|
|
373
|
+
msgid "refundReason.DamagedInShipping"
|
|
374
|
+
msgstr "Oštećeno pri dostavi"
|
|
375
|
+
|
|
376
|
+
#. js-lingui-explicit-id
|
|
377
|
+
#: src/i18n/common-strings.ts:46
|
|
378
|
+
msgid "refundReason.WrongItem"
|
|
379
|
+
msgstr "Pogrešan artikl"
|
|
380
|
+
|
|
381
|
+
#. js-lingui-explicit-id
|
|
382
|
+
#: src/i18n/common-strings.ts:47
|
|
383
|
+
msgid "refundReason.Other"
|
|
384
|
+
msgstr "Ostalo"
|
|
385
|
+
|
|
386
|
+
#. js-lingui-explicit-id
|
|
387
|
+
#: src/i18n/common-strings.ts:50
|
|
363
388
|
msgid "fieldName.attempts"
|
|
364
389
|
msgstr "Pokušaji"
|
|
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 "Dostupni kodovi valuta"
|
|
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 "Kodovi dostupnih jezika"
|
|
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 "Navigacijske mrvice"
|
|
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 "Kategorija"
|
|
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 "Kanali"
|
|
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 "Potomci"
|
|
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 kupona"
|
|
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 "Stvoreno"
|
|
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 valute"
|
|
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 "Kupac"
|
|
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 kupaca"
|
|
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 "Kupci"
|
|
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 "Prilagođena polja"
|
|
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 "Podaci"
|
|
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 "Zadani kod valute"
|
|
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 "Zadani kod jezika"
|
|
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 "Zadana zona dostave"
|
|
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 "Zadana porezna zona"
|
|
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 "Trajanje"
|
|
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 "Adresa e-pošte"
|
|
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 "Omogućeno"
|
|
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 "Završava"
|
|
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 "Greška"
|
|
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 "Istaknuta datoteka"
|
|
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 "Ime"
|
|
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 rukovatelja izvršenja"
|
|
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 "Zadano"
|
|
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 "Privatno"
|
|
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 "Izvršeno"
|
|
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 "Prezime"
|
|
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 "Ime"
|
|
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 "Narudžba postavljena"
|
|
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 roditelja"
|
|
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 "Ograničenje korištenja po kupcu"
|
|
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 "Dozvole"
|
|
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 "Pozicija"
|
|
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 "Cijena"
|
|
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 "Cijena s porezom"
|
|
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 "Cijene uključuju porez"
|
|
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 "Varijante proizvoda"
|
|
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 "Napredak"
|
|
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 "Ime reda"
|
|
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 "Rezultat"
|
|
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 "Ponavljanja"
|
|
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 "Prodavač"
|
|
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 "Naplaćeno"
|
|
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 "Redci dostave"
|
|
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 "URL naziv"
|
|
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 "Pokrenuto"
|
|
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 "Počinje"
|
|
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 "Stanje"
|
|
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 "Razine zaliha"
|
|
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 "Ukupno"
|
|
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 "Ukupno s porezom"
|
|
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 "Tip"
|
|
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 "Ažurirano"
|
|
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 "Ograničenje korištenja"
|
|
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 "Korisnik"
|
|
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 "Vrijednost"
|
|
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 "Popis vrijednosti"
|
|
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 "Zona"
|
|
695
720
|
|
|
@@ -733,11 +758,20 @@ msgstr "Brisanje bilješke nije uspjelo"
|
|
|
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} povratno)"
|
|
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} od {1} dostupno za ispunjenje"
|
|
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} odabrano"
|
|
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} varijanti"
|
|
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} plaćanje/a vraćeno prije greške. Provjerite povijest narudžbe za detalje."
|
|
831
|
+
|
|
832
|
+
#: src/lib/framework/dashboard-widget/base-widget.tsx:80
|
|
795
833
|
msgid "{title}"
|
|
796
834
|
msgstr "{title}"
|
|
797
835
|
|
|
836
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:117
|
|
837
|
+
msgid "{totalQuantity} item(s) refunded"
|
|
838
|
+
msgstr "{totalQuantity} stavki vraćeno"
|
|
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} više"
|
|
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} više"
|
|
806
848
|
|
|
@@ -812,17 +854,21 @@ msgstr "+ {leftOver} više"
|
|
|
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 "Potreban je razlog povrata"
|
|
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 "Potreban je povrat novca u iznosu {formattedDiff}. Odaberite iznose plaćanja i unesite bilješku za nastavak."
|
|
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 "Radnje"
|
|
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 "Aktivan"
|
|
@@ -852,9 +898,13 @@ msgstr "Dodaj još jednu grupu opcija"
|
|
|
852
898
|
msgid "Add asset"
|
|
853
899
|
msgstr "Dodaj datoteku"
|
|
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 "Dodajte barem jednu stavku u narudžbu"
|
|
904
|
+
|
|
905
|
+
#: src/lib/components/layout/channel-switcher.tsx:212
|
|
856
906
|
msgid "Add channel"
|
|
857
|
-
msgstr ""
|
|
907
|
+
msgstr "Dodaj kanal"
|
|
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 razinu zaliha za drugu lokaciju"
|
|
|
981
1031
|
msgid "Add Stock to Location"
|
|
982
1032
|
msgstr "Dodaj zalihu lokaciji"
|
|
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 doplatu"
|
|
1038
|
+
|
|
984
1039
|
#: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:141
|
|
985
1040
|
msgid "Add tags..."
|
|
986
1041
|
msgstr "Dodaj oznake..."
|
|
@@ -990,7 +1045,11 @@ msgstr "Dodaj oznake..."
|
|
|
990
1045
|
msgid "Add variant"
|
|
991
1046
|
msgstr "Dodaj varijantu"
|
|
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 "Dodani kodovi kupona"
|
|
996
1055
|
|
|
@@ -999,10 +1058,15 @@ msgid "Added to group"
|
|
|
999
1058
|
msgstr "Dodano u grupu"
|
|
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 "Dodavanje {0} stavki"
|
|
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 "Dodavanje {0} doplata(e)"
|
|
1069
|
+
|
|
1006
1070
|
#: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:175
|
|
1007
1071
|
msgid "Adding..."
|
|
1008
1072
|
msgstr "Dodavanje..."
|
|
@@ -1035,12 +1099,12 @@ msgid "Address updated successfully"
|
|
|
1035
1099
|
msgstr "Adresa uspješno ažurirana"
|
|
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 "Adrese"
|
|
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 "Prilagođavanje {0} redaka"
|
|
1046
1110
|
|
|
@@ -1056,17 +1120,22 @@ msgstr "nakon"
|
|
|
1056
1120
|
|
|
1057
1121
|
#: src/lib/components/shared/alerts.tsx:33
|
|
1058
1122
|
msgid "Alerts"
|
|
1059
|
-
msgstr ""
|
|
1123
|
+
msgstr "Upozorenja"
|
|
1060
1124
|
|
|
1061
1125
|
#: src/app/routes/_authenticated/_system/healthchecks.tsx:66
|
|
1062
1126
|
msgid "All resources are up and running"
|
|
1063
1127
|
msgstr "Svi resursi su aktivni"
|
|
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 "Dodijeljeno"
|
|
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 "Dodijeljeni iznos plaćanja mora biti jednak ukupnom povratu"
|
|
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 "Iznos"
|
|
1072
1141
|
|
|
@@ -1116,7 +1185,7 @@ msgstr "Jeste li sigurni da želite obrisati {selectionLength} datoteka?"
|
|
|
1116
1185
|
msgid "Are you sure you want to delete this address?"
|
|
1117
1186
|
msgstr "Jeste li sigurni da želite obrisati ovu adresu?"
|
|
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 "Jeste li sigurni da želite obrisati ovu skicu narudžbe?"
|
|
1122
1191
|
|
|
@@ -1124,7 +1193,7 @@ msgstr "Jeste li sigurni da želite obrisati ovu skicu narudžbe?"
|
|
|
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 "Jeste li sigurni da želite obrisati ovaj globalni prikaz? Ova radnja se ne može poništiti i utjecat će na sve korisnike."
|
|
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 "Jeste li sigurni da želite obrisati ovu stavku? Ova radnja se ne može poništiti."
|
|
1130
1199
|
|
|
@@ -1144,7 +1213,7 @@ msgstr "Jeste li sigurni da želite napustiti ovu stranicu? Sve nespremljene pro
|
|
|
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 "Jeste li sigurni da želite ukloniti {0} {1} iz ove zone?"
|
|
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 "Jeste li sigurni da želite ukloniti {0} {entityType} iz trenutnog kanal
|
|
|
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 "Datoteke"
|
|
1162
1231
|
|
|
@@ -1173,14 +1242,23 @@ msgid "Assign options to existing variant"
|
|
|
1173
1242
|
msgstr "Dodijeli opcije postojećoj varijanti"
|
|
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 "Dodijeli kanalu"
|
|
1178
1248
|
|
|
1249
|
+
#: src/app/routes/_authenticated/_profile/profile.tsx:121
|
|
1250
|
+
msgid "Authentication methods"
|
|
1251
|
+
msgstr "Metode provjere autentičnosti"
|
|
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 "Automatsko osvježavanje: {0}"
|
|
1183
1257
|
|
|
1258
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:301
|
|
1259
|
+
msgid "Available"
|
|
1260
|
+
msgstr "Dostupno"
|
|
1261
|
+
|
|
1184
1262
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:176
|
|
1185
1263
|
msgid "Available currencies"
|
|
1186
1264
|
msgstr "Dostupne valute"
|
|
@@ -1190,7 +1268,7 @@ msgstr "Dostupne valute"
|
|
|
1190
1268
|
msgid "Available languages"
|
|
1191
1269
|
msgstr "Dostupni jezici"
|
|
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 "Dostupni jezici"
|
|
1196
1274
|
|
|
@@ -1214,21 +1292,21 @@ msgstr "prije"
|
|
|
1214
1292
|
msgid "between"
|
|
1215
1293
|
msgstr "između"
|
|
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 "Adresa za naplatu"
|
|
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 "Adresa za naplatu promijenjena"
|
|
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 "Adresa za naplatu postavljena za narudžbu"
|
|
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 "Adresa za naplatu uklonjena s narudžbe"
|
|
1234
1312
|
|
|
@@ -1237,26 +1315,27 @@ msgstr "Adresa za naplatu uklonjena s narudžbe"
|
|
|
1237
1315
|
msgid "Browse facets"
|
|
1238
1316
|
msgstr "Pregledaj facete"
|
|
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 "Otkaži"
|
|
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 "Otkaži zadatak"
|
|
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 "Otkaži izmjenu"
|
|
1277
1356
|
|
|
@@ -1279,6 +1358,14 @@ msgstr "Otkaži izmjenu"
|
|
|
1279
1358
|
msgid "Cancel payment"
|
|
1280
1359
|
msgstr "Otkaži uplatu"
|
|
1281
1360
|
|
|
1361
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:213
|
|
1362
|
+
msgid "Cannot move a collection into its own descendant"
|
|
1363
|
+
msgstr "Nije moguće premjestiti kolekciju u vlastiti podskup"
|
|
1364
|
+
|
|
1365
|
+
#: src/lib/components/shared/assigned-channels.tsx:49
|
|
1366
|
+
msgid "Cannot remove from active channel"
|
|
1367
|
+
msgstr "Nije moguće ukloniti iz aktivnog kanala"
|
|
1368
|
+
|
|
1282
1369
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:63
|
|
1283
1370
|
msgid "Category"
|
|
1284
1371
|
msgstr "Kategorija"
|
|
@@ -1291,15 +1378,16 @@ msgstr "Kanal"
|
|
|
1291
1378
|
msgid "Channel defaults"
|
|
1292
1379
|
msgstr "Zadane postavke kanala"
|
|
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 "Jezici kanala"
|
|
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 "Kanali"
|
|
1305
1393
|
|
|
@@ -1314,7 +1402,7 @@ msgid "Clear"
|
|
|
1314
1402
|
msgstr "Obriši"
|
|
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 "Obriši sve"
|
|
1320
1408
|
|
|
@@ -1332,16 +1420,15 @@ msgstr "Kliknite \"Pokreni test\" za testiranje ovog načina dostave."
|
|
|
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 "Sadržaj kolekcije {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 "Kolekcija premještena u novi nadređeni element"
|
|
1442
|
+
|
|
1443
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:245
|
|
1444
|
+
msgid "Collection position updated"
|
|
1445
|
+
msgstr "Pozicija kolekcije ažurirana"
|
|
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 "Kolekcije"
|
|
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 "Kolekcije uspješno premještene"
|
|
1361
1456
|
|
|
@@ -1369,16 +1464,16 @@ msgstr "Postavke stupaca"
|
|
|
1369
1464
|
msgid "Company"
|
|
1370
1465
|
msgstr "Tvrtka"
|
|
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 "Dovrši skicu"
|
|
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 "Uvjeti"
|
|
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 "Konfigurirajte dostupne jezike za svoju trgovinu i kanale"
|
|
1384
1479
|
|
|
@@ -1391,7 +1486,7 @@ msgstr "Potvrdi"
|
|
|
1391
1486
|
msgid "Confirm Action"
|
|
1392
1487
|
msgstr "Potvrdi radnju"
|
|
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 "Potvrdi brisanje"
|
|
1397
1492
|
|
|
@@ -1403,8 +1498,12 @@ msgstr "Potvrdi navigaciju"
|
|
|
1403
1498
|
msgid "contains"
|
|
1404
1499
|
msgstr "sadrži"
|
|
1405
1500
|
|
|
1406
|
-
#: src/
|
|
1407
|
-
|
|
1501
|
+
#: src/lib/components/layout/channel-switcher.tsx:157
|
|
1502
|
+
msgid "Content:"
|
|
1503
|
+
msgstr "Sadržaj:"
|
|
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 "Sadržaj"
|
|
1410
1509
|
|
|
@@ -1431,36 +1530,36 @@ msgstr "Zemlje"
|
|
|
1431
1530
|
msgid "Country"
|
|
1432
1531
|
msgstr "Država"
|
|
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 kupona"
|
|
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 kupona uklonjen s narudžbe"
|
|
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 kupona postavljen za narudžbu"
|
|
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 "Stvoreno u"
|
|
|
1513
1612
|
msgid "Creating..."
|
|
1514
1613
|
msgstr "Stvaranje..."
|
|
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 "Trenutno"
|
|
@@ -1526,7 +1625,7 @@ msgstr "Trenutne vrijednosti svojstava"
|
|
|
1526
1625
|
msgid "Current status"
|
|
1527
1626
|
msgstr "Trenutno stanje"
|
|
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 "Prilagođena polja"
|
|
1532
1631
|
|
|
@@ -1534,13 +1633,13 @@ msgstr "Prilagođena polja"
|
|
|
1534
1633
|
msgid "Custom Fields"
|
|
1535
1634
|
msgstr "Prilagođena polja"
|
|
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 "Prilagođena polja promijenjena"
|
|
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 "Kupac"
|
|
@@ -1572,7 +1671,7 @@ msgstr "Grupe kupaca"
|
|
|
1572
1671
|
msgid "Customer history"
|
|
1573
1672
|
msgstr "Povijest kupca"
|
|
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 "Informacije o kupcu ažurirane"
|
|
1578
1677
|
|
|
@@ -1584,11 +1683,11 @@ msgstr "Kupac nije pronađen"
|
|
|
1584
1683
|
msgid "Customer registered"
|
|
1585
1684
|
msgstr "Kupac registriran"
|
|
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 "Kupac postavljen za narudžbu"
|
|
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 "Kupac ažuriran"
|
|
1594
1693
|
|
|
@@ -1625,7 +1724,7 @@ msgstr "Zadana valuta"
|
|
|
1625
1724
|
msgid "Default language"
|
|
1626
1725
|
msgstr "Zadani jezik"
|
|
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 "Zadani jezik"
|
|
1631
1730
|
|
|
@@ -1645,8 +1744,8 @@ msgstr "Zadana porezna zona"
|
|
|
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 "Obriši adresu"
|
|
|
1660
1759
|
msgid "Delete column"
|
|
1661
1760
|
msgstr "Obriši stupac"
|
|
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 "Obriši skicu"
|
|
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 "Obriši skicu narudžbe"
|
|
1670
1769
|
|
|
@@ -1688,17 +1787,18 @@ msgstr "Obrisano {deleted} {entityName}"
|
|
|
1688
1787
|
msgid "Deleted {selectionLength} assets"
|
|
1689
1788
|
msgstr "Obrisano {selectionLength} datoteka"
|
|
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 "Uspješno obrisano"
|
|
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 "Onemogući"
|
|
|
1723
1823
|
msgid "Disabled"
|
|
1724
1824
|
msgstr "Onemogućeno"
|
|
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 "Popust"
|
|
1729
1829
|
|
|
@@ -1731,7 +1831,7 @@ msgstr "Popust"
|
|
|
1731
1831
|
msgid "Display language"
|
|
1732
1832
|
msgstr "Jezik prikaza"
|
|
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 "Ne prati"
|
|
1737
1837
|
|
|
@@ -1739,19 +1839,23 @@ msgstr "Ne prati"
|
|
|
1739
1839
|
msgid "does not contain"
|
|
1740
1840
|
msgstr "ne sadrži"
|
|
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 "Skica narudžbe"
|
|
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 "Skica narudžbe dovršena"
|
|
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 "Skica narudžbe obrisana"
|
|
1754
1854
|
|
|
1855
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:336
|
|
1856
|
+
msgid "Draft order status"
|
|
1857
|
+
msgstr "Status nacrta narudžbe"
|
|
1858
|
+
|
|
1755
1859
|
#: src/lib/components/data-input/custom-field-list-input.tsx:72
|
|
1756
1860
|
msgid "Drag to reorder"
|
|
1757
1861
|
msgstr "Povucite za promjenu redoslijeda"
|
|
@@ -1785,8 +1889,8 @@ msgstr "npr. Mala"
|
|
|
1785
1889
|
msgid "e.g., Red, Large, Cotton"
|
|
1786
1890
|
msgstr "npr. Crvena, Velika, Pamuk"
|
|
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 "Uredi raspored"
|
|
|
1818
1922
|
msgid "Edit link"
|
|
1819
1923
|
msgstr "Uredi poveznicu"
|
|
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 "Uredi članove"
|
|
1824
1928
|
|
|
@@ -1848,7 +1952,7 @@ msgid "Email address"
|
|
|
1848
1952
|
msgstr "Adresa e-pošte"
|
|
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 "Adresa e-pošte ili identifikator"
|
|
1854
1958
|
|
|
@@ -1865,11 +1969,11 @@ msgid "Enable"
|
|
|
1865
1969
|
msgstr "Omogući"
|
|
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 "Omogući"
|
|
|
1880
1984
|
msgid "Enabled"
|
|
1881
1985
|
msgstr "Omogućeno"
|
|
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 "Završava u"
|
|
1886
1990
|
|
|
1991
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:232
|
|
1992
|
+
msgid "Enter custom reason..."
|
|
1993
|
+
msgstr "Unesite prilagođeni razlog..."
|
|
1994
|
+
|
|
1887
1995
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:306
|
|
1888
1996
|
msgid "Enter refund note"
|
|
1889
1997
|
msgstr "Unesite napomenu povrata"
|
|
@@ -1958,19 +2066,19 @@ msgstr "Svojstvo"
|
|
|
1958
2066
|
msgid "Facet values"
|
|
1959
2067
|
msgstr "Vrijednosti svojstava"
|
|
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 "Vrijednosti svojstava"
|
|
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 "Vrijednosti svojstava za {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 "Svojstva"
|
|
@@ -1990,6 +2098,14 @@ msgstr "Dodavanje vrijednosti opcije nije uspjelo"
|
|
|
1990
2098
|
msgid "Failed to add payment"
|
|
1991
2099
|
msgstr "Dodavanje plaćanja nije uspjelo"
|
|
1992
2100
|
|
|
2101
|
+
#: src/lib/components/shared/assign-to-channel-dialog.tsx:73
|
|
2102
|
+
msgid "Failed to assign {entityIdsLength} {entityType} to channel"
|
|
2103
|
+
msgstr "Nije uspjelo dodijeliti {entityIdsLength} {entityType} kanalu"
|
|
2104
|
+
|
|
2105
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:259
|
|
2106
|
+
msgid "Failed to cancel order items"
|
|
2107
|
+
msgstr "Nije uspjelo otkazati stavke narudžbe"
|
|
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 "Neuspješno kreiranje administratora"
|
|
|
2016
2132
|
msgid "Failed to create channel"
|
|
2017
2133
|
msgstr "Stvaranje kanala nije uspjelo"
|
|
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 "Stvaranje kolekcije nije uspjelo"
|
|
2022
2138
|
|
|
@@ -2045,11 +2161,11 @@ msgstr "Stvaranje vrijednosti svojstva nije uspjelo"
|
|
|
2045
2161
|
msgid "Failed to create option group"
|
|
2046
2162
|
msgstr "Stvaranje grupe opcija nije uspjelo"
|
|
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 "Stvaranje načina plaćanja nije uspjelo"
|
|
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 "Stvaranje proizvoda nije uspjelo"
|
|
2055
2171
|
|
|
@@ -2066,13 +2182,13 @@ msgstr "Neuspješno stvaranje grupe opcija proizvoda"
|
|
|
2066
2182
|
msgid "Failed to create product options"
|
|
2067
2183
|
msgstr "Stvaranje opcija proizvoda nije uspjelo"
|
|
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 "Stvaranje varijante proizvoda nije uspjelo"
|
|
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 "Stvaranje promocije nije uspjelo"
|
|
2078
2194
|
|
|
@@ -2084,7 +2200,7 @@ msgstr "Stvaranje uloge nije uspjelo"
|
|
|
2084
2200
|
msgid "Failed to create seller"
|
|
2085
2201
|
msgstr "Stvaranje prodavača nije uspjelo"
|
|
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 "Nije uspjelo stvaranje načina dostave"
|
|
2090
2206
|
|
|
@@ -2104,8 +2220,8 @@ msgstr "Stvaranje porezne stope nije uspjelo"
|
|
|
2104
2220
|
msgid "Failed to create zone"
|
|
2105
2221
|
msgstr "Stvaranje zone nije uspjelo"
|
|
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 "Brisanje nije uspjelo"
|
|
2111
2227
|
|
|
@@ -2147,21 +2263,26 @@ msgstr "Dupliciranje prikaza nije uspjelo"
|
|
|
2147
2263
|
msgid "Failed to fulfill order"
|
|
2148
2264
|
msgstr "Izvršenje narudžbe nije uspjelo"
|
|
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 "Učitavanje globalnih postavki nije uspjelo"
|
|
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 "Izmjena narudžbe nije uspjela"
|
|
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 "Premještanje kolekcija nije uspjelo"
|
|
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 "Nije uspjelo obraditi povrat"
|
|
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 "Nije uspjelo ukloniti države iz zone"
|
|
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 "Uklanjanje kupca iz grupe nije uspjelo"
|
|
|
2171
2292
|
msgid "Failed to remove facet from channel: {message}"
|
|
2172
2293
|
msgstr "Uklanjanje svojstva iz kanala nije uspjelo: {message}"
|
|
2173
2294
|
|
|
2295
|
+
#: src/lib/components/shared/assigned-channels.tsx:43
|
|
2296
|
+
msgid "Failed to remove product from channel"
|
|
2297
|
+
msgstr "Nije uspjelo ukloniti proizvod iz kanala"
|
|
2298
|
+
|
|
2174
2299
|
#: src/lib/components/data-table/views-sheet.tsx:68
|
|
2175
2300
|
msgid "Failed to rename global view"
|
|
2176
2301
|
msgstr "Preimenovanje globalnog prikaza nije uspjelo"
|
|
@@ -2179,6 +2304,10 @@ msgstr "Preimenovanje globalnog prikaza nije uspjelo"
|
|
|
2179
2304
|
msgid "Failed to rename view"
|
|
2180
2305
|
msgstr "Preimenovanje prikaza nije uspjelo"
|
|
2181
2306
|
|
|
2307
|
+
#: src/lib/components/data-table/data-table.tsx:220
|
|
2308
|
+
msgid "Failed to reorder items"
|
|
2309
|
+
msgstr "Nije uspjelo preurediti stavke"
|
|
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 "Izvršenje plaćanja nije uspjelo"
|
|
|
2189
2318
|
msgid "Failed to settle refund"
|
|
2190
2319
|
msgstr "Izvršenje povrata nije uspjelo"
|
|
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 "Prijelaz narudžbe u stanje nije uspio"
|
|
2195
2324
|
|
|
@@ -2210,10 +2339,14 @@ msgstr "Ažuriranje datoteke nije uspjelo"
|
|
|
2210
2339
|
msgid "Failed to update channel"
|
|
2211
2340
|
msgstr "Ažuriranje kanala nije uspjelo"
|
|
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 "Ažuriranje kolekcije nije uspjelo"
|
|
2216
2345
|
|
|
2346
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:256
|
|
2347
|
+
msgid "Failed to update collection position"
|
|
2348
|
+
msgstr "Nije uspjelo ažurirati poziciju kolekcije"
|
|
2349
|
+
|
|
2217
2350
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
|
|
2218
2351
|
msgid "Failed to update country"
|
|
2219
2352
|
msgstr "Ažuriranje zemlje nije uspjelo"
|
|
@@ -2245,12 +2378,12 @@ msgstr "Ažuriranje stanja izvršenja nije uspjelo"
|
|
|
2245
2378
|
msgid "Failed to update global settings"
|
|
2246
2379
|
msgstr "Ažuriranje globalnih postavki nije uspjelo"
|
|
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 "Ažuriranje narudžbe nije uspjelo"
|
|
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 "Ažuriranje načina plaćanja nije uspjelo"
|
|
2256
2389
|
|
|
@@ -2259,7 +2392,7 @@ msgstr "Ažuriranje načina plaćanja nije uspjelo"
|
|
|
2259
2392
|
msgid "Failed to update payment state"
|
|
2260
2393
|
msgstr "Ažuriranje stanja plaćanja nije uspjelo"
|
|
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 "Ažuriranje proizvoda nije uspjelo"
|
|
2265
2398
|
|
|
@@ -2271,16 +2404,16 @@ msgstr "Nije uspjelo ažuriranje opcije proizvoda"
|
|
|
2271
2404
|
msgid "Failed to update product option group"
|
|
2272
2405
|
msgstr "Neuspješno ažuriranje grupe opcija proizvoda"
|
|
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 "Ažuriranje varijante proizvoda nije uspjelo"
|
|
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 "Ažuriranje profila nije uspjelo"
|
|
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 "Ažuriranje promocije nije uspjelo"
|
|
2286
2419
|
|
|
@@ -2292,7 +2425,7 @@ msgstr "Ažuriranje uloge nije uspjelo"
|
|
|
2292
2425
|
msgid "Failed to update seller"
|
|
2293
2426
|
msgstr "Ažuriranje prodavača nije uspjelo"
|
|
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 "Nije uspjelo ažuriranje načina dostave"
|
|
2298
2431
|
|
|
@@ -2320,7 +2453,7 @@ msgstr "Netočno"
|
|
|
2320
2453
|
msgid "Filter by {columnId}"
|
|
2321
2454
|
msgstr "Filtriraj po {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 "Filtriraj po nazivu kolekcije"
|
|
2326
2459
|
|
|
@@ -2328,17 +2461,17 @@ msgstr "Filtriraj po nazivu kolekcije"
|
|
|
2328
2461
|
msgid "Filter by tags"
|
|
2329
2462
|
msgstr "Filtriraj po oznakama"
|
|
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 "Filtriraj..."
|
|
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 "Filteri"
|
|
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 "Ime"
|
|
2344
2477
|
|
|
@@ -2354,7 +2487,7 @@ msgstr "Pronađeno {0} prikladnih načina dostave"
|
|
|
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 "Izvršavanje..."
|
|
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 "Izvršenje #{0} stvoreno"
|
|
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 "Izvršenje #{0} od {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 "Izvršenje stvoreno"
|
|
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 "Detalji izvršenja"
|
|
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 "Rukovatelj izvršenja"
|
|
2400
2533
|
|
|
@@ -2406,7 +2539,7 @@ msgstr "ID izvršenja"
|
|
|
2406
2539
|
msgid "Fulfillment state updated successfully"
|
|
2407
2540
|
msgstr "Stanje izvršenja uspješno ažurirano"
|
|
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 "Izvršenje prevedeno"
|
|
2412
2545
|
|
|
@@ -2416,7 +2549,7 @@ msgstr "Izvršenje prevedeno"
|
|
|
2416
2549
|
msgid "Full Name"
|
|
2417
2550
|
msgstr "Puno ime"
|
|
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 "Općenito"
|
|
2422
2555
|
|
|
@@ -2425,7 +2558,7 @@ msgstr "Općenito"
|
|
|
2425
2558
|
msgid "Generate slug automatically"
|
|
2426
2559
|
msgstr "Automatski generiraj URL naziv"
|
|
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 "Globalni jezici"
|
|
2431
2564
|
|
|
@@ -2478,7 +2611,7 @@ msgstr "veće od"
|
|
|
2478
2611
|
msgid "greater than or equal"
|
|
2479
2612
|
msgstr "veće ili jednako"
|
|
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 "Bruto cijena: <0/>"
|
|
2484
2617
|
|
|
@@ -2530,11 +2663,12 @@ msgstr "ID"
|
|
|
2530
2663
|
msgid "Identifier"
|
|
2531
2664
|
msgstr "Identifikator"
|
|
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 "Ako je omogućeno, filteri će se naslijediti iz nadređene kolekcije i kombinirati s filterima postavljenim na ovoj kolekciji."
|
|
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 "Slika"
|
|
2540
2674
|
|
|
@@ -2542,11 +2676,15 @@ msgstr "Slika"
|
|
|
2542
2676
|
msgid "in"
|
|
2543
2677
|
msgstr "u"
|
|
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 "Uključuje porez od {taxRate}%"
|
|
2682
|
+
|
|
2683
|
+
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:195
|
|
2546
2684
|
msgid "Inherit filters"
|
|
2547
2685
|
msgstr "Naslijedi filtere"
|
|
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 "Naslijedi iz globalnih postavki"
|
|
2552
2690
|
|
|
@@ -2615,12 +2753,16 @@ msgstr "nije u"
|
|
|
2615
2753
|
msgid "is null"
|
|
2616
2754
|
msgstr "je prazno"
|
|
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 "Stavka dodana narudžbi"
|
|
2621
2759
|
|
|
2760
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:110
|
|
2761
|
+
msgid "Items refunded"
|
|
2762
|
+
msgstr "Stavke vraćene"
|
|
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 "Red zadataka"
|
|
2626
2768
|
|
|
@@ -2629,7 +2771,7 @@ msgid "Language"
|
|
|
2629
2771
|
msgstr "Jezik"
|
|
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 "Jezik: {0}"
|
|
2635
2777
|
|
|
@@ -2654,7 +2796,7 @@ msgstr "Prošli mjesec"
|
|
|
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 "Prezime"
|
|
2660
2802
|
|
|
@@ -2667,7 +2809,7 @@ msgstr "Posljednji rezultat"
|
|
|
2667
2809
|
msgid "Last updated {0}"
|
|
2668
2810
|
msgstr "Posljednje ažurirano {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 "Najnovije narudžbe"
|
|
2673
2815
|
|
|
@@ -2696,6 +2838,11 @@ msgstr "Cilj poveznice"
|
|
|
2696
2838
|
msgid "Link title"
|
|
2697
2839
|
msgstr "Naslov poveznice"
|
|
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 "Učitaj još {0} ({remaining} preostalo)"
|
|
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 "Učitaj više"
|
|
|
2705
2852
|
msgid "Loading addresses..."
|
|
2706
2853
|
msgstr "Učitavanje adresa..."
|
|
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 "Učitavanje kolekcija..."
|
|
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 "Učitavanje globalnih postavki..."
|
|
2715
2862
|
|
|
@@ -2756,8 +2903,8 @@ msgstr "Upravljaj globalnim prikazima"
|
|
|
2756
2903
|
msgid "Manage Global Views"
|
|
2757
2904
|
msgstr "Upravljaj globalnim prikazima"
|
|
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 "Upravljaj jezicima"
|
|
2763
2910
|
|
|
@@ -2770,7 +2917,7 @@ msgid "Manage Tags"
|
|
|
2770
2917
|
msgstr "Upravljaj oznakama"
|
|
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 "Upravljaj varijantama"
|
|
2776
2923
|
|
|
@@ -2802,12 +2949,12 @@ msgstr "Metoda"
|
|
|
2802
2949
|
msgid "Metrics"
|
|
2803
2950
|
msgstr "Metrike"
|
|
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 "Izmijeni"
|
|
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 "Izmijeni narudžbu"
|
|
2813
2960
|
|
|
@@ -2824,27 +2971,27 @@ msgstr "Od početka mjeseca"
|
|
|
2824
2971
|
msgid "More views"
|
|
2825
2972
|
msgstr "Više prikaza"
|
|
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 "Premjesti"
|
|
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 "Premjesti kolekcije"
|
|
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 "Premjesti na najvišu razinu"
|
|
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 "Premještanje {0} kolekcija u {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 "Premještanje..."
|
|
2850
2997
|
|
|
@@ -2857,21 +3004,20 @@ msgid "My Saved Views"
|
|
|
2857
3004
|
msgstr "Moji spremljeni prikazi"
|
|
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 "Novi kanal"
|
|
|
2902
3048
|
msgid "New Channel"
|
|
2903
3049
|
msgstr "Novi kanal"
|
|
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 "Nova kolekcija"
|
|
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 "Nova kolekcija"
|
|
2913
3059
|
|
|
@@ -2921,7 +3067,7 @@ msgstr "Nova država"
|
|
|
2921
3067
|
msgid "New customer"
|
|
2922
3068
|
msgstr "Novi kupac"
|
|
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 "Novi kupac"
|
|
2927
3073
|
|
|
@@ -2934,7 +3080,7 @@ msgstr "Nova grupa kupaca"
|
|
|
2934
3080
|
msgid "New Customer Group"
|
|
2935
3081
|
msgstr "Nova grupa kupaca"
|
|
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 "Nova e-pošta:"
|
|
2940
3086
|
|
|
@@ -2943,7 +3089,7 @@ msgstr "Nova e-pošta:"
|
|
|
2943
3089
|
msgid "New facet"
|
|
2944
3090
|
msgstr "Novo svojstvo"
|
|
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 "Novo svojstvo"
|
|
2949
3095
|
|
|
@@ -2961,7 +3107,7 @@ msgid "New option"
|
|
|
2961
3107
|
msgstr "Nova opcija"
|
|
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 "Novi način plaćanja"
|
|
2967
3113
|
|
|
@@ -2969,8 +3115,8 @@ msgstr "Novi način plaćanja"
|
|
|
2969
3115
|
msgid "New Payment Method"
|
|
2970
3116
|
msgstr "Novi način plaćanja"
|
|
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 "Novi proizvod"
|
|
2976
3122
|
|
|
@@ -2986,12 +3132,12 @@ msgstr "Nova opcija proizvoda"
|
|
|
2986
3132
|
msgid "New product option group"
|
|
2987
3133
|
msgstr "Nova grupa opcija proizvoda"
|
|
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 "Nova varijanta proizvoda"
|
|
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 "Nova promocija"
|
|
2997
3143
|
|
|
@@ -3018,7 +3164,7 @@ msgid "New Seller"
|
|
|
3018
3164
|
msgstr "Novi prodavač"
|
|
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 "Novi način dostave"
|
|
3024
3170
|
|
|
@@ -3062,7 +3208,7 @@ msgstr "Novi prozor"
|
|
|
3062
3208
|
msgid "New zone"
|
|
3063
3209
|
msgstr "Nova zona"
|
|
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 "Nova zona"
|
|
3068
3214
|
|
|
@@ -3070,7 +3216,7 @@ msgstr "Nova zona"
|
|
|
3070
3216
|
msgid "Next Execution"
|
|
3071
3217
|
msgstr "Sljedeće izvršenje"
|
|
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 "Nema dostupnih radnji"
|
|
@@ -3087,7 +3233,7 @@ msgstr "Nisu pronađene adrese"
|
|
|
3087
3233
|
msgid "No alerts"
|
|
3088
3234
|
msgstr "Nema upozorenja"
|
|
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 "Nema adrese za naplatu"
|
|
3093
3239
|
|
|
@@ -3095,8 +3241,8 @@ msgstr "Nema adrese za naplatu"
|
|
|
3095
3241
|
msgid "No countries found"
|
|
3096
3242
|
msgstr "Nisu pronađene države"
|
|
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 "Nema kupca"
|
|
3102
3248
|
|
|
@@ -3116,11 +3262,11 @@ msgstr "Nisu pronađeni prihvatljivi načini dostave za ovu narudžbu."
|
|
|
3116
3262
|
msgid "No facet values"
|
|
3117
3263
|
msgstr "Nema vrijednosti svojstava"
|
|
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 "Nema izvršenja"
|
|
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 "Nisu konfigurirani globalni jezici"
|
|
3126
3272
|
|
|
@@ -3136,7 +3282,7 @@ msgstr "Nisu pronađene stavke"
|
|
|
3136
3282
|
msgid "No items selected"
|
|
3137
3283
|
msgstr "Nisu odabrane stavke"
|
|
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 "Nisu napravljene izmjene"
|
|
3142
3288
|
|
|
@@ -3161,12 +3307,12 @@ msgstr "Za ove izmjene nije potrebno plaćanje ili povrat."
|
|
|
3161
3307
|
msgid "No payment or refund required"
|
|
3162
3308
|
msgstr "Nije potrebno plaćanje ili povrat"
|
|
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 "Još nema rezultata"
|
|
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 "Nema rezultata"
|
|
@@ -3180,7 +3326,7 @@ msgstr "Nisu pronađeni rezultati"
|
|
|
3180
3326
|
msgid "No sellers found"
|
|
3181
3327
|
msgstr "Nisu pronađeni prodavači"
|
|
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 "Nema adrese za dostavu"
|
|
3186
3332
|
|
|
@@ -3223,8 +3369,12 @@ msgstr "Ne izvršava se"
|
|
|
3223
3369
|
msgid "Not set"
|
|
3224
3370
|
msgstr "Nije postavljeno"
|
|
3225
3371
|
|
|
3372
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:251
|
|
3373
|
+
msgid "Note"
|
|
3374
|
+
msgstr "Napomena"
|
|
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 "Bilješka dodana"
|
|
3230
3380
|
|
|
@@ -3236,10 +3386,14 @@ msgstr "Bilješka je privatna"
|
|
|
3236
3386
|
msgid "Off"
|
|
3237
3387
|
msgstr "Isključeno"
|
|
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 "Stara e-pošta:"
|
|
3242
3392
|
|
|
3393
|
+
#: src/app/routes/_authenticated/_orders/components/draft-order-status.tsx:29
|
|
3394
|
+
msgid "Only draft orders can be completed"
|
|
3395
|
+
msgstr "Samo nacrti narudžbi mogu biti dovršeni"
|
|
3396
|
+
|
|
3243
3397
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:269
|
|
3244
3398
|
msgid "Option"
|
|
3245
3399
|
msgstr "Opcija"
|
|
@@ -3287,9 +3441,9 @@ msgstr "Vrijednosti opcija"
|
|
|
3287
3441
|
msgid "OR"
|
|
3288
3442
|
msgstr "ILI"
|
|
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 "Narudžba otkazana"
|
|
3295
3449
|
|
|
@@ -3297,33 +3451,42 @@ msgstr "Narudžba otkazana"
|
|
|
3297
3451
|
msgid "Order Count"
|
|
3298
3452
|
msgstr "Broj narudžbi"
|
|
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 "Prilagođena polja narudžbe ažurirana"
|
|
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 "Narudžba dostavljena"
|
|
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 "Nacrt narudžbe je spreman za dovršenje"
|
|
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 "Nacrt narudžbe nije spreman za dovršenje"
|
|
3469
|
+
|
|
3470
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:82
|
|
3309
3471
|
msgid "Order fulfilled"
|
|
3310
3472
|
msgstr "Narudžba izvršena"
|
|
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 "Povijest narudžbe"
|
|
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 "Redak narudžbe uklonjen"
|
|
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 "Redak narudžbe ažuriran"
|
|
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 "Redci narudžbe"
|
|
3329
3492
|
|
|
@@ -3332,11 +3495,11 @@ msgid "Order metrics"
|
|
|
3332
3495
|
msgstr "Metrike narudžbi"
|
|
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 "Izmjena narudžbe #{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 "Narudžba izmijenjena"
|
|
3342
3505
|
|
|
@@ -3344,12 +3507,12 @@ msgstr "Narudžba izmijenjena"
|
|
|
3344
3507
|
msgid "Order not found"
|
|
3345
3508
|
msgstr "Narudžba nije pronađena"
|
|
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 "Narudžba postavljena"
|
|
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 "Narudžba poslana"
|
|
3355
3518
|
|
|
@@ -3357,7 +3520,7 @@ msgstr "Narudžba poslana"
|
|
|
3357
3520
|
msgid "Order Total"
|
|
3358
3521
|
msgstr "Ukupno narudžba"
|
|
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 "Narudžba prevedena"
|
|
3363
3526
|
|
|
@@ -3375,22 +3538,31 @@ msgstr "Narudžbe"
|
|
|
3375
3538
|
msgid "Orders Summary"
|
|
3376
3539
|
msgstr "Sažetak narudžbi"
|
|
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 "Prag zaliha"
|
|
3381
3544
|
|
|
3545
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:258
|
|
3546
|
+
msgid "Override"
|
|
3547
|
+
msgstr "Premosti"
|
|
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 "Stranica {0} od {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 "Nadređeni proizvod"
|
|
3391
3558
|
|
|
3559
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:285
|
|
3560
|
+
msgid "Partial refund completed"
|
|
3561
|
+
msgstr "Djelomični povrat završen"
|
|
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 "Lozinka"
|
|
@@ -3412,11 +3584,11 @@ msgstr "Lozinka ažurirana"
|
|
|
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 "Plaćanje #{0} prevedeno u {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 "Plaćanje autorizirano"
|
|
3422
3594
|
|
|
@@ -3424,15 +3596,15 @@ msgstr "Plaćanje autorizirano"
|
|
|
3424
3596
|
msgid "Payment cancelled successfully"
|
|
3425
3597
|
msgstr "Plaćanje uspješno otkazano"
|
|
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 "Detalji plaćanja"
|
|
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 "Provjera prihvatljivosti plaćanja"
|
|
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 "Plaćanje nije uspjelo"
|
|
3438
3610
|
|
|
@@ -3455,7 +3627,7 @@ msgstr "Način plaćanja je obavezan"
|
|
|
3455
3627
|
msgid "Payment Methods"
|
|
3456
3628
|
msgstr "Načini plaćanja"
|
|
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 "Plaćanje izvršeno"
|
|
3461
3633
|
|
|
@@ -3467,11 +3639,11 @@ msgstr "Plaćanje uspješno izvršeno"
|
|
|
3467
3639
|
msgid "Payment state updated successfully"
|
|
3468
3640
|
msgstr "Stanje plaćanja uspješno ažurirano"
|
|
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 "Plaćanje prevedeno"
|
|
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 "Ograničenje korištenja po kupcu"
|
|
3477
3649
|
|
|
@@ -3489,7 +3661,7 @@ msgstr "Telefonski broj"
|
|
|
3489
3661
|
msgid "Phone Number"
|
|
3490
3662
|
msgstr "Telefonski broj"
|
|
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 "Naručeno"
|
|
3495
3667
|
|
|
@@ -3497,7 +3669,7 @@ msgstr "Naručeno"
|
|
|
3497
3669
|
msgid "Please add products and complete the shipping address to run the test."
|
|
3498
3670
|
msgstr "Molimo dodajte proizvode i dovršite adresu za dostavu kako biste pokrenuli 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 "Molimo odaberite ciljnu kolekciju"
|
|
3503
3675
|
|
|
@@ -3512,7 +3684,7 @@ msgstr "Poštanski broj"
|
|
|
3512
3684
|
msgid "Preview"
|
|
3513
3685
|
msgstr "Pregled"
|
|
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 "Pregled izmjena"
|
|
3518
3690
|
|
|
@@ -3520,15 +3692,16 @@ msgstr "Pregled izmjena"
|
|
|
3520
3692
|
msgid "Preview order modifications"
|
|
3521
3693
|
msgstr "Pregled izmjena narudžbe"
|
|
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 "Cijena"
|
|
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 "Cijena i porez"
|
|
3534
3707
|
|
|
@@ -3540,16 +3713,16 @@ msgstr "Faktor pretvorbe cijene"
|
|
|
3540
3713
|
msgid "Prices include tax for default tax zone"
|
|
3541
3714
|
msgstr "Cijene uključuju porez za zadanu poreznu zonu"
|
|
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 "privatno"
|
|
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 "Privatno"
|
|
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 "Privatne kolekcije nisu vidljive u trgovini"
|
|
3555
3728
|
|
|
@@ -3557,12 +3730,17 @@ msgstr "Privatne kolekcije nisu vidljive u trgovini"
|
|
|
3557
3730
|
msgid "Private facets are not visible in the shop"
|
|
3558
3731
|
msgstr "Privatna svojstva nisu vidljiva u trgovini"
|
|
3559
3732
|
|
|
3733
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:360
|
|
3734
|
+
msgid "Processing..."
|
|
3735
|
+
msgstr "Obrada..."
|
|
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 "Proizvod"
|
|
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 "Naziv proizvoda"
|
|
3568
3746
|
|
|
@@ -3574,20 +3752,20 @@ msgstr "Grupa opcija proizvoda"
|
|
|
3574
3752
|
msgid "Product options"
|
|
3575
3753
|
msgstr "Opcije proizvoda"
|
|
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 "Opcije proizvoda"
|
|
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 "Varijante proizvoda"
|
|
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 "Varijante proizvoda"
|
|
|
3595
3773
|
msgid "Products"
|
|
3596
3774
|
msgstr "Proizvodi"
|
|
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 "Promocije"
|
|
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 "javno"
|
|
3613
3791
|
|
|
3792
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:99
|
|
3793
|
+
msgid "Qty"
|
|
3794
|
+
msgstr "Kol."
|
|
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 "Količina"
|
|
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 "Red"
|
|
3623
3805
|
|
|
@@ -3626,9 +3808,14 @@ msgid "Rate"
|
|
|
3626
3808
|
msgstr "Stopa"
|
|
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 "Razlog"
|
|
3631
3814
|
|
|
3815
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:127
|
|
3816
|
+
msgid "Reason:"
|
|
3817
|
+
msgstr "Razlog:"
|
|
3818
|
+
|
|
3632
3819
|
#: src/app/routes/_authenticated/_products/products.tsx:107
|
|
3633
3820
|
msgid "Rebuild search index"
|
|
3634
3821
|
msgstr "Ponovno izgradi indeks pretraživanja"
|
|
@@ -3641,12 +3828,29 @@ msgstr "Osvježi"
|
|
|
3641
3828
|
msgid "Refresh data"
|
|
3642
3829
|
msgstr "Osvježi podatke"
|
|
3643
3830
|
|
|
3831
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:102
|
|
3832
|
+
msgid "Refund"
|
|
3833
|
+
msgstr "Povrat"
|
|
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 "Povrat {0}"
|
|
3839
|
+
|
|
3840
|
+
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:169
|
|
3841
|
+
msgid "Refund & Cancel"
|
|
3842
|
+
msgstr "Povrat i otkazivanje"
|
|
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 "Povrat #{0} preveden u {1}"
|
|
3649
3849
|
|
|
3850
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:72
|
|
3851
|
+
msgid "Refund and cancel order"
|
|
3852
|
+
msgstr "Povrat i otkazivanje narudžbe"
|
|
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 "Povrat iz ove metode"
|
|
@@ -3655,11 +3859,15 @@ msgstr "Povrat iz ove metode"
|
|
|
3655
3859
|
msgid "Refund ID"
|
|
3656
3860
|
msgstr "ID povrata"
|
|
3657
3861
|
|
|
3862
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:299
|
|
3863
|
+
msgid "Refund processed successfully"
|
|
3864
|
+
msgstr "Povrat uspješno obrađen"
|
|
3865
|
+
|
|
3658
3866
|
#: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:170
|
|
3659
3867
|
msgid "Refund required"
|
|
3660
3868
|
msgstr "Potreban povrat"
|
|
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 "Povrat izvršen"
|
|
3665
3873
|
|
|
@@ -3667,7 +3875,24 @@ msgstr "Povrat izvršen"
|
|
|
3667
3875
|
msgid "Refund settled successfully"
|
|
3668
3876
|
msgstr "Povrat uspješno izvršen"
|
|
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 "Povrat dostave"
|
|
3881
|
+
|
|
3882
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:244
|
|
3883
|
+
msgid "Refund total"
|
|
3884
|
+
msgstr "Ukupni povrat"
|
|
3885
|
+
|
|
3886
|
+
#: src/app/routes/_authenticated/_orders/hooks/use-refund-order.ts:200
|
|
3887
|
+
msgid "Refund total cannot be negative"
|
|
3888
|
+
msgstr "Ukupni povrat ne može biti negativan"
|
|
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 "Ukupni povrat premašuje maksimalni iznos za povrat od {0}"
|
|
3894
|
+
|
|
3895
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:74
|
|
3671
3896
|
msgid "Refund transitioned"
|
|
3672
3897
|
msgstr "Povrat preveden"
|
|
3673
3898
|
|
|
@@ -3681,7 +3906,7 @@ msgstr "Povrati ({0})"
|
|
|
3681
3906
|
msgid "Regenerate slug from source field"
|
|
3682
3907
|
msgstr "Ponovno generiraj URL naziv iz izvornog polja"
|
|
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 "Regije"
|
|
3687
3912
|
|
|
@@ -3693,7 +3918,7 @@ msgstr "Registriran"
|
|
|
3693
3918
|
msgid "Remaining:"
|
|
3694
3919
|
msgstr "Preostalo:"
|
|
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 "Ukloni"
|
|
3699
3924
|
|
|
@@ -3703,7 +3928,7 @@ msgstr "Ukloni iz trenutnog kanala"
|
|
|
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 "Ukloni iz zone"
|
|
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 "Ukloni poveznicu"
|
|
|
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 "Uklonjeno {0} {1} iz zone"
|
|
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 "Uklonjeni kodovi kupona"
|
|
3729
3954
|
|
|
@@ -3732,7 +3957,7 @@ msgid "Removed from group"
|
|
|
3732
3957
|
msgstr "Uklonjeno iz grupe"
|
|
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 "Uklanjanje {0} stavki"
|
|
3738
3963
|
|
|
@@ -3744,6 +3969,10 @@ msgstr "Preimenuj"
|
|
|
3744
3969
|
msgid "Reset"
|
|
3745
3970
|
msgstr "Resetiraj"
|
|
3746
3971
|
|
|
3972
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:105
|
|
3973
|
+
msgid "Return to stock"
|
|
3974
|
+
msgstr "Vrati na zalihu"
|
|
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 "Pregledajte izmjene prije njihove primjene na narudžbu."
|
|
@@ -3781,7 +4010,7 @@ msgstr "Isti prozor"
|
|
|
3781
4010
|
msgid "Sample Formatting"
|
|
3782
4011
|
msgstr "Primjer oblikovanja"
|
|
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 "Spremi adresu"
|
|
3798
4027
|
|
|
3799
4028
|
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
|
|
3800
|
-
msgid "Save changes"
|
|
3801
|
-
msgstr "Spremi izmjene"
|
|
4029
|
+
#~ msgid "Save changes"
|
|
4030
|
+
#~ msgstr "Spremi izmjene"
|
|
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 "Spremi izmjene"
|
|
3807
4036
|
|
|
@@ -3818,7 +4047,7 @@ msgid "Save View"
|
|
|
3818
4047
|
msgstr "Spremi prikaz"
|
|
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 "Spremanje..."
|
|
3824
4053
|
|
|
@@ -3915,7 +4144,11 @@ msgstr "Odaberite državu"
|
|
|
3915
4144
|
msgid "Select a currency"
|
|
3916
4145
|
msgstr "Odaberite valute"
|
|
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 "Odaberite kupca za nastavak"
|
|
4150
|
+
|
|
4151
|
+
#: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:83
|
|
3919
4152
|
msgid "Select a destination collection"
|
|
3920
4153
|
msgstr "Odaberite odredišnu kolekciju"
|
|
3921
4154
|
|
|
@@ -3923,12 +4156,16 @@ msgstr "Odaberite odredišnu kolekciju"
|
|
|
3923
4156
|
msgid "Select a language"
|
|
3924
4157
|
msgstr "Odaberite jezik"
|
|
3925
4158
|
|
|
4159
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:220
|
|
4160
|
+
msgid "Select a reason..."
|
|
4161
|
+
msgstr "Odaberite razlog..."
|
|
4162
|
+
|
|
3926
4163
|
#: src/lib/components/shared/role-selector.tsx:52
|
|
3927
4164
|
msgid "Select a role"
|
|
3928
4165
|
msgstr "Odaberite uloga"
|
|
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 "Odaberite ciljnu kolekciju za premještanje {0}."
|
|
3934
4171
|
|
|
@@ -3948,11 +4185,11 @@ msgstr "Odaberi adresu"
|
|
|
3948
4185
|
msgid "Select an address"
|
|
3949
4186
|
msgstr "Odaberite adresu"
|
|
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 "Odaberite opciju"
|
|
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 "Odaberi dostupne jezike"
|
|
3958
4195
|
|
|
@@ -3972,7 +4209,7 @@ msgstr "Odaberite razdoblje"
|
|
|
3972
4209
|
msgid "Select display language"
|
|
3973
4210
|
msgstr "Odaberite jezik prikaza"
|
|
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 "Odaberite iz globalno dostupnih jezika za ovaj kanal"
|
|
3978
4215
|
|
|
@@ -3984,10 +4221,18 @@ msgstr "Odaberi stavku"
|
|
|
3984
4221
|
msgid "Select items"
|
|
3985
4222
|
msgstr "Odaberi stavke"
|
|
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 "Odaberite stavke za povrat i po želji vratite na zalihu"
|
|
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 "Odaberi sljedeće stanje"
|
|
3990
4231
|
|
|
4232
|
+
#: src/app/routes/_authenticated/_orders/components/refund-order-dialog.tsx:285
|
|
4233
|
+
msgid "Select payments to refund"
|
|
4234
|
+
msgstr "Odaberite plaćanja za povrat"
|
|
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 "Odaberite količine za izvršenje i konfigurirajte rukovatelja izvršenja"
|
|
@@ -4027,7 +4272,11 @@ msgstr "Narudžbe prodavača"
|
|
|
4027
4272
|
msgid "Sellers"
|
|
4028
4273
|
msgstr "Prodavači"
|
|
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 "Postavite adresu dostave i odaberite način dostave"
|
|
4278
|
+
|
|
4279
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:414
|
|
4031
4280
|
msgid "Set custom fields"
|
|
4032
4281
|
msgstr "Postavi prilagođena polja"
|
|
4033
4282
|
|
|
@@ -4047,8 +4296,8 @@ msgstr "Postavlja jezike koji su dostupni za sve kanale. Pojedinačni kanali tad
|
|
|
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 "Postavlja razinu zaliha pri kojoj se ova varijanta smatra rasprodanom. Korištenje negativne vrijednosti omogućuje podršku za prednarudžbe. Može se nadjačati varijantama proizvoda."
|
|
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 "Postavlja razinu zaliha pri kojoj se ova varijanta smatra rasprodanom. Korištenje negativne vrijednosti omogućuje podršku za prednarudžbe."
|
|
4054
4303
|
|
|
@@ -4062,14 +4311,15 @@ msgstr "Izvrši plaćanje"
|
|
|
4062
4311
|
msgid "Settle refund"
|
|
4063
4312
|
msgstr "Izvrši povrat"
|
|
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 "Dostava"
|
|
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 "Adresa za dostavu"
|
|
4075
4325
|
|
|
@@ -4077,19 +4327,19 @@ msgstr "Adresa za dostavu"
|
|
|
4077
4327
|
msgid "Shipping Address"
|
|
4078
4328
|
msgstr "Adresa za dostavu"
|
|
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 "Adresa za dostavu promijenjena"
|
|
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 "Adresa dostave postavljena za narudžbu"
|
|
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 "Adresa dostave uklonjena za narudžbu"
|
|
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 "Način dostave promijenjen"
|
|
4095
4345
|
|
|
@@ -4101,7 +4351,7 @@ msgstr "Način dostave je prihvatljiv za ovu narudžbu"
|
|
|
4101
4351
|
msgid "Shipping method is not eligible for this order"
|
|
4102
4352
|
msgstr "Način dostave nije prihvatljiv za ovu narudžbu"
|
|
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 "Način dostave postavljen za narudžbu"
|
|
4107
4357
|
|
|
@@ -4111,6 +4361,10 @@ msgstr "Način dostave postavljen za narudžbu"
|
|
|
4111
4361
|
msgid "Shipping Methods"
|
|
4112
4362
|
msgstr "Načini dostave"
|
|
4113
4363
|
|
|
4364
|
+
#: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:122
|
|
4365
|
+
msgid "Shipping refunded"
|
|
4366
|
+
msgstr "Dostava vraćena"
|
|
4367
|
+
|
|
4114
4368
|
#: src/lib/components/layout/language-dialog.tsx:115
|
|
4115
4369
|
msgid "Short date"
|
|
4116
4370
|
msgstr "Kratki datum"
|
|
@@ -4132,8 +4386,9 @@ msgstr "Prijava"
|
|
|
4132
4386
|
msgid "Sign in to access the admin dashboard"
|
|
4133
4387
|
msgstr "Prijavite se za pristup admin nadzornoj ploči"
|
|
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 "Prijavite se za pristup admin nadzornoj ploči"
|
|
|
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 "Šifra:"
|
|
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 "URL naziv"
|
|
4148
4407
|
|
|
@@ -4162,14 +4421,14 @@ msgstr "Neki resursi nisu dostupni"
|
|
|
4162
4421
|
msgid "Source"
|
|
4163
4422
|
msgstr "Izvor"
|
|
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 "Počinje u"
|
|
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 "Stanje"
|
|
4175
4434
|
|
|
@@ -4183,11 +4442,11 @@ msgid "State/Province"
|
|
|
4183
4442
|
msgstr "Država/Pokrajina"
|
|
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 "Zaliha"
|
|
4193
4452
|
|
|
@@ -4195,12 +4454,12 @@ msgstr "Zaliha"
|
|
|
4195
4454
|
msgid "Stock allocated"
|
|
4196
4455
|
msgstr "Zaliha dodijeljena"
|
|
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 "Razina zaliha"
|
|
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 "Razine zaliha"
|
|
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 "Međuzbroj"
|
|
4234
4493
|
|
|
@@ -4256,7 +4515,7 @@ msgstr "Administrator uspješno kreiran"
|
|
|
4256
4515
|
msgid "Successfully created channel"
|
|
4257
4516
|
msgstr "Kanal uspješno stvoren"
|
|
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 "Kolekcija uspješno stvorena"
|
|
4262
4521
|
|
|
@@ -4284,11 +4543,11 @@ msgstr "Vrijednost svojstva uspješno stvorena"
|
|
|
4284
4543
|
msgid "Successfully created option group"
|
|
4285
4544
|
msgstr "Grupa opcija uspješno stvorena"
|
|
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 "Način plaćanja uspješno stvoren"
|
|
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 "Proizvod uspješno stvoren"
|
|
4294
4553
|
|
|
@@ -4304,12 +4563,12 @@ msgstr "Grupa opcija proizvoda uspješno stvorena"
|
|
|
4304
4563
|
msgid "Successfully created product options"
|
|
4305
4564
|
msgstr "Opcije proizvoda uspješno stvorene"
|
|
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 "Varijanta proizvoda uspješno stvorena"
|
|
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 "Promocija uspješno stvorena"
|
|
4315
4574
|
|
|
@@ -4321,7 +4580,7 @@ msgstr "Uloga uspješno stvorena"
|
|
|
4321
4580
|
msgid "Successfully created seller"
|
|
4322
4581
|
msgstr "Prodavač uspješno stvoren"
|
|
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 "Način dostave uspješno stvoren"
|
|
4327
4586
|
|
|
@@ -4357,6 +4616,10 @@ msgstr "Uspješno uklonjeno {selectionLength} {entityType} iz kanala"
|
|
|
4357
4616
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4358
4617
|
msgstr "Uspješno uklonjeno {successCount} svojstava iz kanala"
|
|
4359
4618
|
|
|
4619
|
+
#: src/lib/components/shared/assigned-channels.tsx:39
|
|
4620
|
+
msgid "Successfully removed product from channel"
|
|
4621
|
+
msgstr "Proizvod uspješno uklonjen iz kanala"
|
|
4622
|
+
|
|
4360
4623
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4361
4624
|
msgid "Successfully updated administrator"
|
|
4362
4625
|
msgstr "Administrator uspješno ažuriran"
|
|
@@ -4369,7 +4632,7 @@ msgstr "Datoteka uspješno ažurirana"
|
|
|
4369
4632
|
msgid "Successfully updated channel"
|
|
4370
4633
|
msgstr "Kanal uspješno ažuriran"
|
|
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 "Kolekcija uspješno ažurirana"
|
|
4375
4638
|
|
|
@@ -4401,16 +4664,16 @@ msgstr "Vrijednosti svojstava uspješno ažurirane za {entityIdsLength} {entityT
|
|
|
4401
4664
|
msgid "Successfully updated global settings"
|
|
4402
4665
|
msgstr "Globalne postavke uspješno ažurirane"
|
|
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 "Narudžba uspješno ažurirana"
|
|
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 "Način plaćanja uspješno ažuriran"
|
|
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 "Proizvod uspješno ažuriran"
|
|
4416
4679
|
|
|
@@ -4422,15 +4685,15 @@ msgstr "Opcija proizvoda uspješno ažurirana"
|
|
|
4422
4685
|
msgid "Successfully updated product option group"
|
|
4423
4686
|
msgstr "Grupa opcija proizvoda uspješno ažurirana"
|
|
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 "Varijanta proizvoda uspješno ažurirana"
|
|
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 "Profil uspješno ažuriran"
|
|
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 "Promocija uspješno ažurirana"
|
|
4436
4699
|
|
|
@@ -4442,7 +4705,7 @@ msgstr "Uloga uspješno ažurirana"
|
|
|
4442
4705
|
msgid "Successfully updated seller"
|
|
4443
4706
|
msgstr "Prodavač uspješno ažuriran"
|
|
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 "Način dostave uspješno ažuriran"
|
|
4448
4711
|
|
|
@@ -4462,7 +4725,7 @@ msgstr "Porezna stopa uspješno ažurirana"
|
|
|
4462
4725
|
msgid "Successfully updated zone"
|
|
4463
4726
|
msgstr "Zona uspješno ažurirana"
|
|
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 "Sažetak izmjena"
|
|
4468
4731
|
|
|
@@ -4470,7 +4733,7 @@ msgstr "Sažetak izmjena"
|
|
|
4470
4733
|
msgid "Super Admin"
|
|
4471
4734
|
msgstr "Super administrator"
|
|
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 "Dodatna naknada"
|
|
4476
4739
|
|
|
@@ -4493,16 +4756,21 @@ msgstr "Porezna osnovica"
|
|
|
4493
4756
|
msgid "Tax Categories"
|
|
4494
4757
|
msgstr "Porezne kategorije"
|
|
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 "Porezna kategorija"
|
|
4500
4763
|
|
|
4764
|
+
#: src/app/routes/_authenticated/_orders/components/add-surcharge-form.tsx:124
|
|
4765
|
+
msgid "Tax description"
|
|
4766
|
+
msgstr "Opis poreza"
|
|
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 "Porezna stopa"
|
|
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 "Porezna stopa: {taxRate}%"
|
|
4508
4776
|
|
|
@@ -4512,7 +4780,7 @@ msgstr "Porezna stopa: {taxRate}%"
|
|
|
4512
4780
|
msgid "Tax Rates"
|
|
4513
4781
|
msgstr "Porezne stope"
|
|
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 "Sažetak poreza"
|
|
4518
4786
|
|
|
@@ -4562,11 +4830,11 @@ msgstr "Testiranje načina dostave..."
|
|
|
4562
4830
|
msgid "Testing shipping methods..."
|
|
4563
4831
|
msgstr "Testiranje načina dostave..."
|
|
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 "Podaci koji su proslijeđeni zadatku"
|
|
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 "Rezultat zadatka"
|
|
@@ -4579,7 +4847,7 @@ msgstr "Odabrane dozvole će se primijeniti na ove kanale."
|
|
|
4579
4847
|
msgid "The token is used to specify the channel when making API requests."
|
|
4580
4848
|
msgstr "Token se koristi za specificiranje kanala pri slanju API zahtjeva."
|
|
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 "Varijanta se ne može dodati. Provjerite je li nadređeni proizvod omogućen."
|
|
4585
4853
|
|
|
@@ -4591,11 +4859,11 @@ msgstr "Tema"
|
|
|
4591
4859
|
msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
|
|
4592
4860
|
msgstr "Ovo su kupci u grupi kupaca <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 "Ovo su vrijednosti svojstava za svojstvo <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 "Ovi jezici će biti dostupni za korištenje svim kanalima"
|
|
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 "Ukupno"
|
|
4666
4934
|
|
|
@@ -4676,7 +4944,7 @@ msgstr "Ukupan povrat:"
|
|
|
4676
4944
|
msgid "Total Revenue"
|
|
4677
4945
|
msgstr "Ukupni prihod"
|
|
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 "Prati"
|
|
4682
4950
|
|
|
@@ -4703,7 +4971,7 @@ msgstr "ID transakcije je obavezan"
|
|
|
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 "Prijelaz u {0}"
|
|
@@ -4726,10 +4994,12 @@ msgstr "Unesite najmanje 2 znaka za pretraživanje..."
|
|
|
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 "Jedinična cijena"
|
|
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 "Neverificiran"
|
|
|
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 "Neverificiran"
|
|
|
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 "Ažuriraj"
|
|
4774
5044
|
|
|
@@ -4784,7 +5054,7 @@ msgstr "Ažurirano"
|
|
|
4784
5054
|
msgid "Upload"
|
|
4785
5055
|
msgstr "Prenesi"
|
|
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 "Ograničenje korištenja"
|
|
4790
5060
|
|
|
@@ -4798,15 +5068,15 @@ msgstr "Koristi kao zadanu adresu za naplatu"
|
|
|
4798
5068
|
msgid "Use as the default shipping address"
|
|
4799
5069
|
msgstr "Koristi kao zadanu adresu za dostavu"
|
|
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 "Koristi globalni prag zaliha"
|
|
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 mora se koristiti unutar 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 mora se koristiti unutar WidgetFiltersProvider"
|
|
4812
5082
|
|
|
@@ -4818,7 +5088,7 @@ msgstr "Korištenje vanjske strategije autentifikacije: {strategy}"
|
|
|
4818
5088
|
msgid "Using native authentication strategy"
|
|
4819
5089
|
msgstr "Korištenje izvorne strategije autentifikacije"
|
|
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 "Vrijednosti"
|
|
4824
5094
|
|
|
@@ -4830,7 +5100,7 @@ msgstr "Varijanta"
|
|
|
4830
5100
|
msgid "Variant deleted successfully"
|
|
4831
5101
|
msgstr "Varijanta uspješno obrisana"
|
|
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 "Naziv varijante"
|
|
4836
5106
|
|
|
@@ -4855,7 +5125,7 @@ msgstr "Pregled izmjena"
|
|
|
4855
5125
|
msgid "View converted to global successfully"
|
|
4856
5126
|
msgstr "Prikaz uspješno pretvoren u globalni"
|
|
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 "Pregled podataka"
|
|
4861
5131
|
|
|
@@ -4863,7 +5133,7 @@ msgstr "Pregled podataka"
|
|
|
4863
5133
|
msgid "View deleted successfully"
|
|
4864
5134
|
msgstr "Prikaz uspješno obrisan"
|
|
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 "Pregled detalja"
|
|
4869
5139
|
|
|
@@ -4871,11 +5141,11 @@ msgstr "Pregled detalja"
|
|
|
4871
5141
|
msgid "View duplicated successfully"
|
|
4872
5142
|
msgstr "Prikaz uspješno dupliciran"
|
|
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 "Pregled podataka zadatka"
|
|
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 "Pregled rezultata zadatka"
|
|
@@ -4884,16 +5154,16 @@ msgstr "Pregled rezultata zadatka"
|
|
|
4884
5154
|
msgid "View renamed successfully"
|
|
4885
5155
|
msgstr "Prikaz uspješno preimenovan"
|
|
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 "Pregled rezultata"
|
|
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 "Pregled vrijednosti"
|
|
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 "Vidljivost"
|
|
4899
5169
|
|
|
@@ -4909,12 +5179,12 @@ msgstr "Vidljivo kupcu"
|
|
|
4909
5179
|
msgid "Welcome to Vendure"
|
|
4910
5180
|
msgstr "Dobrodošli u 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 "Kada je omogućeno, proizvod je dostupan u trgovini"
|
|
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 "Kada je omogućeno, promocija je dostupna u trgovini"
|
|
4920
5190
|
|
|
@@ -4930,7 +5200,7 @@ msgstr "Kada se prati, razine zaliha varijanti proizvoda će se automatski prila
|
|
|
4930
5200
|
msgid "Width"
|
|
4931
5201
|
msgstr "Širina"
|
|
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 "S odabranima..."
|
|
@@ -4940,11 +5210,11 @@ msgctxt "date-range"
|
|
|
4940
5210
|
msgid "Yesterday"
|
|
4941
5211
|
msgstr "Jučer"
|
|
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 "Nemate dozvolu za pregled postavki kanala"
|
|
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 "Nemate dozvolu za pregled globalnih postavki jezika"
|
|
4950
5220
|
|
|
@@ -4952,7 +5222,7 @@ msgstr "Nemate dozvolu za pregled globalnih postavki jezika"
|
|
|
4952
5222
|
msgid "You haven't saved any views yet."
|
|
4953
5223
|
msgstr "Još niste spremili nijedan prikaz."
|
|
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 "Vaše najnovije narudžbe"
|
|
4958
5228
|
|
|
@@ -4960,7 +5230,7 @@ msgstr "Vaše najnovije narudžbe"
|
|
|
4960
5230
|
msgid "Your orders summary"
|
|
4961
5231
|
msgstr "Sažetak vaših narudžbi"
|
|
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 "Zona"
|