@doswiftly/cli 0.1.18 → 0.1.20
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/README.md +23 -323
- package/dist/commands/check.js +1 -1
- package/dist/commands/check.js.map +1 -1
- package/dist/commands/deploy.d.ts +20 -0
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +249 -17
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/doctor.js +3 -3
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/init.js +4 -4
- package/dist/commands/sdk.js +5 -5
- package/dist/commands/sdk.js.map +1 -1
- package/dist/commands/template.js +4 -4
- package/dist/commands/template.js.map +1 -1
- package/dist/commands/types.js +5 -5
- package/dist/commands/types.js.map +1 -1
- package/dist/commands/verify.js +2 -2
- package/dist/commands/verify.js.map +1 -1
- package/dist/lib/package-manager.d.ts +1 -1
- package/dist/lib/package-manager.js +1 -1
- package/package.json +4 -4
- package/templates/storefront-minimal/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-minimal/wrangler.toml +11 -0
- package/templates/storefront-nextjs/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-nextjs/README.md +16 -12
- package/templates/storefront-nextjs/app/account/orders/page.tsx +2 -2
- package/templates/storefront-nextjs/app/account/page.tsx +2 -2
- package/templates/storefront-nextjs/app/auth/login/page.tsx +1 -1
- package/templates/storefront-nextjs/app/auth/register/page.tsx +1 -1
- package/templates/storefront-nextjs/app/cart/page.tsx +1 -1
- package/templates/storefront-nextjs/app/categories/[slug]/page.tsx +2 -2
- package/templates/storefront-nextjs/app/categories/page.tsx +1 -1
- package/templates/storefront-nextjs/app/collections/[slug]/page.tsx +1 -1
- package/templates/storefront-nextjs/app/collections/page.tsx +1 -1
- package/templates/storefront-nextjs/app/page.tsx +1 -1
- package/templates/storefront-nextjs/app/products/[slug]/page.tsx +1 -1
- package/templates/storefront-nextjs/app/products/page.tsx +2 -2
- package/templates/storefront-nextjs/app/search/page.tsx +1 -1
- package/templates/storefront-nextjs/components/auth/auth-guard.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/add-to-cart-button.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/cart-icon.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/currency-selector.tsx +2 -2
- package/templates/storefront-nextjs/components/commerce/product-filters.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/product-price.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/search-input.tsx +1 -1
- package/templates/storefront-nextjs/components/commerce/sort-select.tsx +1 -1
- package/templates/storefront-nextjs/components/providers.tsx +1 -1
- package/templates/storefront-nextjs/lib/currency.tsx +3 -3
- package/templates/storefront-nextjs/lib/format.ts +1 -1
- package/templates/storefront-nextjs/lib/graphql-queries.ts +3 -3
- package/templates/storefront-nextjs/package.dev.json +1 -1
- package/templates/storefront-nextjs/package.json +1 -1
- package/templates/storefront-nextjs/package.json.template +1 -1
- package/templates/storefront-nextjs/wrangler.toml +11 -0
- package/templates/storefront-nextjs-shadcn/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-nextjs-shadcn/.github/workflows/deploy.yml +47 -0
- package/templates/storefront-nextjs-shadcn/.github/workflows/preview.yml +47 -0
- package/templates/storefront-nextjs-shadcn/CLAUDE.md +172 -35
- package/templates/storefront-nextjs-shadcn/README.md +29 -162
- package/templates/storefront-nextjs-shadcn/app/{about → [locale]/about}/page.tsx +17 -14
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/addresses/page.tsx +226 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/error.tsx +46 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/loading.tsx +19 -0
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/loyalty/page.tsx +89 -193
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/orders/[id]/loading.tsx +60 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/orders/[id]/page.tsx +119 -0
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/orders/[id]/tracking/page.tsx +27 -25
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/orders/page.tsx +101 -0
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/page.tsx +9 -7
- package/templates/storefront-nextjs-shadcn/app/[locale]/account/settings/page.tsx +208 -0
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/forgot-password/page.tsx +24 -17
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/login/page.tsx +5 -2
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/register/page.tsx +5 -2
- package/templates/storefront-nextjs-shadcn/app/[locale]/blog/[slug]/loading.tsx +17 -0
- package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/[slug]/page.tsx +44 -3
- package/templates/storefront-nextjs-shadcn/app/[locale]/blog/loading.tsx +19 -0
- package/templates/storefront-nextjs-shadcn/app/{brands → [locale]/brands}/page.tsx +2 -1
- package/templates/storefront-nextjs-shadcn/app/[locale]/cart/loading.tsx +26 -0
- package/templates/storefront-nextjs-shadcn/app/{cart → [locale]/cart}/page.tsx +20 -13
- package/templates/storefront-nextjs-shadcn/app/[locale]/categories/[slug]/category-products-client.tsx +58 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/categories/[slug]/loading.tsx +32 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/categories/[slug]/page.tsx +95 -0
- package/templates/storefront-nextjs-shadcn/app/{categories → [locale]/categories}/page.tsx +21 -12
- package/templates/storefront-nextjs-shadcn/app/[locale]/checkout/error.tsx +43 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/checkout/loading.tsx +31 -0
- package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/page.tsx +334 -253
- package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/success/[orderId]/page.tsx +36 -34
- package/templates/storefront-nextjs-shadcn/app/[locale]/collections/[handle]/loading.tsx +19 -0
- package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/[handle]/page.tsx +6 -4
- package/templates/storefront-nextjs-shadcn/app/[locale]/collections/loading.tsx +18 -0
- package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/page.tsx +20 -12
- package/templates/storefront-nextjs-shadcn/app/{contact → [locale]/contact}/page.tsx +24 -21
- package/templates/storefront-nextjs-shadcn/app/{error.tsx → [locale]/error.tsx} +13 -8
- package/templates/storefront-nextjs-shadcn/app/[locale]/layout.tsx +92 -0
- package/templates/storefront-nextjs-shadcn/app/{not-found.tsx → [locale]/not-found.tsx} +13 -18
- package/templates/storefront-nextjs-shadcn/app/{page.tsx → [locale]/page.tsx} +8 -4
- package/templates/storefront-nextjs-shadcn/app/[locale]/products/[slug]/error.tsx +43 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/products/[slug]/loading.tsx +29 -0
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/page.tsx +17 -14
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/product-client.tsx +18 -62
- package/templates/storefront-nextjs-shadcn/app/[locale]/products/loading.tsx +32 -0
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/page.tsx +6 -3
- package/templates/storefront-nextjs-shadcn/app/[locale]/products/products-client.tsx +450 -0
- package/templates/storefront-nextjs-shadcn/app/[locale]/search/loading.tsx +18 -0
- package/templates/storefront-nextjs-shadcn/app/{wishlist → [locale]/wishlist}/page.tsx +27 -28
- package/templates/storefront-nextjs-shadcn/app/api/auth/clear-token/route.ts +2 -86
- package/templates/storefront-nextjs-shadcn/app/api/auth/set-token/route.ts +2 -124
- package/templates/storefront-nextjs-shadcn/app/global-error.tsx +117 -0
- package/templates/storefront-nextjs-shadcn/app/globals.css +8 -0
- package/templates/storefront-nextjs-shadcn/app/layout.tsx +8 -35
- package/templates/storefront-nextjs-shadcn/codegen.ts +48 -31
- package/templates/storefront-nextjs-shadcn/components/account/address-form.tsx +25 -20
- package/templates/storefront-nextjs-shadcn/components/account/address-list.tsx +11 -10
- package/templates/storefront-nextjs-shadcn/components/account/customer-info.fragment.graphql +36 -0
- package/templates/storefront-nextjs-shadcn/components/account/order-details.tsx +17 -13
- package/templates/storefront-nextjs-shadcn/components/account/order-history.tsx +42 -30
- package/templates/storefront-nextjs-shadcn/components/account/order-summary.fragment.graphql +36 -0
- package/templates/storefront-nextjs-shadcn/components/auth/account-menu.tsx +18 -16
- package/templates/storefront-nextjs-shadcn/components/auth/login-form.tsx +37 -58
- package/templates/storefront-nextjs-shadcn/components/auth/register-form.tsx +85 -66
- package/templates/storefront-nextjs-shadcn/components/blog/blog-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/blog/blog-sidebar.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/brand/brand-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/cart/cart-drawer.tsx +10 -6
- package/templates/storefront-nextjs-shadcn/components/cart/cart-icon.tsx +9 -6
- package/templates/storefront-nextjs-shadcn/components/cart/cart-item.tsx +8 -6
- package/templates/storefront-nextjs-shadcn/components/cart/cart-line.fragment.graphql +53 -0
- package/templates/storefront-nextjs-shadcn/components/cart/cart-summary.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/cart/promo-code-input.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/components/cart/shipping-estimator.tsx +38 -20
- package/templates/storefront-nextjs-shadcn/components/checkout/payment-method-card.tsx +15 -25
- package/templates/storefront-nextjs-shadcn/components/checkout/payment-step.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/checkout/tax-breakdown.tsx +9 -6
- package/templates/storefront-nextjs-shadcn/components/commerce/currency-selector.tsx +7 -5
- package/templates/storefront-nextjs-shadcn/components/commerce/pagination.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/components/commerce/product-actions.tsx +6 -4
- package/templates/storefront-nextjs-shadcn/components/commerce/search-input.tsx +10 -9
- package/templates/storefront-nextjs-shadcn/components/common/category-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/common/collection-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/common/price-display.tsx +35 -11
- package/templates/storefront-nextjs-shadcn/components/common/social-share.tsx +9 -6
- package/templates/storefront-nextjs-shadcn/components/discount/discount-breakdown.tsx +22 -12
- package/templates/storefront-nextjs-shadcn/components/discount/discount-code-input.tsx +18 -15
- package/templates/storefront-nextjs-shadcn/components/error/error-boundary.tsx +53 -28
- package/templates/storefront-nextjs-shadcn/components/filters/dynamic-attribute-filters.tsx +7 -5
- package/templates/storefront-nextjs-shadcn/components/filters/range-slider-filter.tsx +5 -5
- package/templates/storefront-nextjs-shadcn/components/gift-card/gift-card-balance.tsx +19 -15
- package/templates/storefront-nextjs-shadcn/components/gift-card/gift-card-input.tsx +13 -10
- package/templates/storefront-nextjs-shadcn/components/home/category-grid.tsx +10 -6
- package/templates/storefront-nextjs-shadcn/components/home/collection-card.fragment.graphql +21 -0
- package/templates/storefront-nextjs-shadcn/components/home/featured-collections.tsx +3 -13
- package/templates/storefront-nextjs-shadcn/components/home/featured-products.tsx +12 -8
- package/templates/storefront-nextjs-shadcn/components/home/hero-section.tsx +13 -8
- package/templates/storefront-nextjs-shadcn/components/home/index.ts +0 -1
- package/templates/storefront-nextjs-shadcn/components/home/newsletter-signup.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/hydrated.tsx +24 -0
- package/templates/storefront-nextjs-shadcn/components/layout/breadcrumbs.tsx +41 -16
- package/templates/storefront-nextjs-shadcn/components/layout/category-node.fragment.graphql +22 -0
- package/templates/storefront-nextjs-shadcn/components/layout/currency-selector.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/layout/footer.tsx +24 -23
- package/templates/storefront-nextjs-shadcn/components/layout/header.tsx +52 -34
- package/templates/storefront-nextjs-shadcn/components/layout/language-switcher.tsx +54 -0
- package/templates/storefront-nextjs-shadcn/components/layout/mobile-menu.tsx +33 -30
- package/templates/storefront-nextjs-shadcn/components/layout/navigation.tsx +27 -24
- package/templates/storefront-nextjs-shadcn/components/loyalty/points-balance.tsx +2 -11
- package/templates/storefront-nextjs-shadcn/components/loyalty/points-history.tsx +8 -25
- package/templates/storefront-nextjs-shadcn/components/loyalty/referral-section.tsx +32 -42
- package/templates/storefront-nextjs-shadcn/components/loyalty/rewards-catalog.tsx +17 -41
- package/templates/storefront-nextjs-shadcn/components/loyalty/tier-progress.tsx +2 -29
- package/templates/storefront-nextjs-shadcn/components/order/index.ts +6 -1
- package/templates/storefront-nextjs-shadcn/components/product/add-to-cart-button.tsx +6 -14
- package/templates/storefront-nextjs-shadcn/components/product/b2b-price-display.tsx +4 -2
- package/templates/storefront-nextjs-shadcn/components/product/filter-active-pills.tsx +72 -0
- package/templates/storefront-nextjs-shadcn/components/product/filter-mobile-sheet.tsx +87 -0
- package/templates/storefront-nextjs-shadcn/components/product/filter-price-range.tsx +140 -0
- package/templates/storefront-nextjs-shadcn/components/product/index.ts +9 -2
- package/templates/storefront-nextjs-shadcn/components/product/product-card.fragment.graphql +49 -0
- package/templates/storefront-nextjs-shadcn/components/product/product-card.tsx +11 -37
- package/templates/storefront-nextjs-shadcn/components/product/product-detail.fragment.graphql +52 -0
- package/templates/storefront-nextjs-shadcn/components/product/product-filters.tsx +179 -124
- package/templates/storefront-nextjs-shadcn/components/product/product-grid.tsx +3 -5
- package/templates/storefront-nextjs-shadcn/components/product/product-image.tsx +3 -7
- package/templates/storefront-nextjs-shadcn/components/product/product-price.tsx +2 -2
- package/templates/storefront-nextjs-shadcn/components/product/product-reviews.tsx +5 -4
- package/templates/storefront-nextjs-shadcn/components/product/product-sort.tsx +44 -19
- package/templates/storefront-nextjs-shadcn/components/product/product-variant-selector.tsx +8 -23
- package/templates/storefront-nextjs-shadcn/components/product/product-variant.fragment.graphql +51 -0
- package/templates/storefront-nextjs-shadcn/components/product/review-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/product/review-form.tsx +26 -34
- package/templates/storefront-nextjs-shadcn/components/product/savings-display.tsx +17 -2
- package/templates/storefront-nextjs-shadcn/components/product/similar-products.tsx +3 -2
- package/templates/storefront-nextjs-shadcn/components/providers/index.ts +1 -1
- package/templates/storefront-nextjs-shadcn/components/providers/language-sync-provider.tsx +27 -0
- package/templates/storefront-nextjs-shadcn/components/providers/stores-provider.tsx +63 -0
- package/templates/storefront-nextjs-shadcn/components/providers/theme-provider.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/returns/index.ts +2 -2
- package/templates/storefront-nextjs-shadcn/components/returns/return-request-form.tsx +59 -72
- package/templates/storefront-nextjs-shadcn/components/search/search-bar.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/search/search-results.tsx +3 -2
- package/templates/storefront-nextjs-shadcn/components/shipping/shipping-method-selector.tsx +12 -9
- package/templates/storefront-nextjs-shadcn/components/ui/empty-state.tsx +23 -12
- package/templates/storefront-nextjs-shadcn/components/ui/form.tsx +174 -0
- package/templates/storefront-nextjs-shadcn/components/ui/index.ts +30 -2
- package/templates/storefront-nextjs-shadcn/components/ui/progress.tsx +40 -0
- package/templates/storefront-nextjs-shadcn/components/ui/sheet.tsx +107 -0
- package/templates/storefront-nextjs-shadcn/components/ui/slider.tsx +33 -0
- package/templates/storefront-nextjs-shadcn/components/ui/textarea.tsx +24 -0
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-button.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-icon.tsx +4 -2
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-item.tsx +2 -10
- package/templates/storefront-nextjs-shadcn/generated/graphql.ts +13387 -0
- package/templates/storefront-nextjs-shadcn/graphql/custom.example.graphql +159 -0
- package/templates/storefront-nextjs-shadcn/hooks/index.ts +3 -0
- package/templates/storefront-nextjs-shadcn/hooks/use-auth-sync.ts +42 -0
- package/templates/storefront-nextjs-shadcn/hooks/use-auth.ts +17 -295
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-actions.ts +34 -229
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-di.ts +67 -0
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-sync.ts +16 -12
- package/templates/storefront-nextjs-shadcn/i18n/navigation.ts +12 -0
- package/templates/storefront-nextjs-shadcn/i18n/request.ts +17 -0
- package/templates/storefront-nextjs-shadcn/i18n/routing.ts +17 -0
- package/templates/storefront-nextjs-shadcn/lib/auth/routes.ts +4 -17
- package/templates/storefront-nextjs-shadcn/lib/graphql/client.ts +22 -99
- package/templates/storefront-nextjs-shadcn/lib/graphql/config.ts +33 -0
- package/templates/storefront-nextjs-shadcn/lib/graphql/fragments.ts +34 -0
- package/templates/storefront-nextjs-shadcn/lib/graphql/hooks.ts +720 -632
- package/templates/storefront-nextjs-shadcn/lib/graphql/query-keys.ts +88 -0
- package/templates/storefront-nextjs-shadcn/lib/graphql/server.ts +132 -182
- package/templates/storefront-nextjs-shadcn/lib/graphql/types.ts +62 -0
- package/templates/storefront-nextjs-shadcn/lib/theme/theme-config.ts +0 -17
- package/templates/storefront-nextjs-shadcn/messages/en.json +869 -0
- package/templates/storefront-nextjs-shadcn/messages/pl.json +869 -0
- package/templates/storefront-nextjs-shadcn/next-env.d.ts +6 -0
- package/templates/storefront-nextjs-shadcn/next.config.ts +6 -5
- package/templates/storefront-nextjs-shadcn/package.dev.json +1 -3
- package/templates/storefront-nextjs-shadcn/package.json +14 -14
- package/templates/storefront-nextjs-shadcn/package.json.template +6 -7
- package/templates/storefront-nextjs-shadcn/proxy.ts +115 -47
- package/templates/storefront-nextjs-shadcn/stores/cart-store.ts +24 -56
- package/templates/storefront-nextjs-shadcn/stores/checkout-store.ts +64 -75
- package/templates/storefront-nextjs-shadcn/stores/wishlist-store.ts +178 -177
- package/templates/storefront-nextjs-shadcn/tsconfig.json +23 -5
- package/templates/storefront-nextjs-shadcn/wrangler.toml +11 -0
- package/templates/storefront-nextjs-shadcn/CART_INTEGRATION.md +0 -282
- package/templates/storefront-nextjs-shadcn/GRAPHQL_DOCUMENT_NAMES.md +0 -190
- package/templates/storefront-nextjs-shadcn/GRAPHQL_ERROR_HANDLING.md +0 -263
- package/templates/storefront-nextjs-shadcn/GRAPHQL_FIXES_SUMMARY.md +0 -135
- package/templates/storefront-nextjs-shadcn/GRAPHQL_INTEGRATION_COMPLETE.md +0 -142
- package/templates/storefront-nextjs-shadcn/INTEGRATION_CHECKLIST.md +0 -448
- package/templates/storefront-nextjs-shadcn/PRODUCT_DETAIL_PAGE_IMPLEMENTATION.md +0 -307
- package/templates/storefront-nextjs-shadcn/THEME_CUSTOMIZATION.md +0 -245
- package/templates/storefront-nextjs-shadcn/app/account/addresses/page.tsx +0 -215
- package/templates/storefront-nextjs-shadcn/app/account/orders/[id]/page.tsx +0 -128
- package/templates/storefront-nextjs-shadcn/app/account/orders/page.tsx +0 -80
- package/templates/storefront-nextjs-shadcn/app/account/settings/page.tsx +0 -171
- package/templates/storefront-nextjs-shadcn/app/categories/[slug]/page.tsx +0 -78
- package/templates/storefront-nextjs-shadcn/app/products/products-client.tsx +0 -192
- package/templates/storefront-nextjs-shadcn/components/providers/currency-provider.tsx +0 -103
- package/templates/storefront-nextjs-shadcn/graphql/collections.example.ts +0 -168
- package/templates/storefront-nextjs-shadcn/graphql/products.example.ts +0 -160
- package/templates/storefront-nextjs-shadcn/lib/auth/cookies.ts +0 -220
- package/templates/storefront-nextjs-shadcn/lib/config.ts +0 -46
- package/templates/storefront-nextjs-shadcn/lib/currency/IMPLEMENTATION_SUMMARY.md +0 -254
- package/templates/storefront-nextjs-shadcn/lib/currency/README.md +0 -464
- package/templates/storefront-nextjs-shadcn/lib/currency/cookie-manager.test.ts +0 -328
- package/templates/storefront-nextjs-shadcn/lib/currency/cookie-manager.ts +0 -295
- package/templates/storefront-nextjs-shadcn/lib/currency/index.ts +0 -27
- package/templates/storefront-nextjs-shadcn/lib/format.ts +0 -226
- package/templates/storefront-nextjs-shadcn/lib/hooks.ts +0 -30
- package/templates/storefront-nextjs-shadcn/stores/auth-store.ts +0 -66
- package/templates/storefront-nextjs-shadcn/stores/currency-store.ts +0 -103
- /package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{brands → [locale]/brands}/[slug]/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{returns → [locale]/returns}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{search → [locale]/search}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{search → [locale]/search}/search-client.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{shipping → [locale]/shipping}/page.tsx +0 -0
|
@@ -0,0 +1,869 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"loading": "Ładowanie...",
|
|
4
|
+
"error": "Wystąpił błąd",
|
|
5
|
+
"back": "Wstecz",
|
|
6
|
+
"next": "Dalej",
|
|
7
|
+
"save": "Zapisz",
|
|
8
|
+
"cancel": "Anuluj",
|
|
9
|
+
"close": "Zamknij",
|
|
10
|
+
"delete": "Usuń",
|
|
11
|
+
"edit": "Edytuj",
|
|
12
|
+
"apply": "Zastosuj",
|
|
13
|
+
"remove": "Usuń",
|
|
14
|
+
"search": "Szukaj",
|
|
15
|
+
"noResults": "Brak wyników",
|
|
16
|
+
"backToHome": "Strona główna",
|
|
17
|
+
"viewAll": "Zobacz wszystkie",
|
|
18
|
+
"showMore": "Pokaż więcej",
|
|
19
|
+
"showLess": "Pokaż mniej",
|
|
20
|
+
"optional": "opcjonalnie",
|
|
21
|
+
"required": "wymagane",
|
|
22
|
+
"yes": "Tak",
|
|
23
|
+
"no": "Nie",
|
|
24
|
+
"or": "lub",
|
|
25
|
+
"saving": "Zapisywanie...",
|
|
26
|
+
"securePayment": "Bezpieczna płatność",
|
|
27
|
+
"encryptedData": "Szyfrowane dane"
|
|
28
|
+
},
|
|
29
|
+
"nav": {
|
|
30
|
+
"home": "Strona główna",
|
|
31
|
+
"products": "Produkty",
|
|
32
|
+
"allProducts": "Wszystkie produkty",
|
|
33
|
+
"collections": "Kolekcje",
|
|
34
|
+
"categories": "Kategorie",
|
|
35
|
+
"brands": "Marki",
|
|
36
|
+
"blog": "Blog",
|
|
37
|
+
"cart": "Koszyk",
|
|
38
|
+
"viewCart": "Zobacz koszyk",
|
|
39
|
+
"account": "Moje konto",
|
|
40
|
+
"signIn": "Zaloguj się",
|
|
41
|
+
"signOut": "Wyloguj się",
|
|
42
|
+
"createAccount": "Utwórz konto",
|
|
43
|
+
"orderHistory": "Historia zamówień",
|
|
44
|
+
"wishlist": "Lista życzeń",
|
|
45
|
+
"search": "Szukaj produktów...",
|
|
46
|
+
"menu": "Menu",
|
|
47
|
+
"about": "O nas",
|
|
48
|
+
"contact": "Kontakt",
|
|
49
|
+
"shipping": "Dostawa",
|
|
50
|
+
"returns": "Zwroty",
|
|
51
|
+
"mainNavigation": "Nawigacja główna",
|
|
52
|
+
"mobileNavigation": "Nawigacja mobilna",
|
|
53
|
+
"toggleMobileMenu": "Przełącz menu mobilne",
|
|
54
|
+
"closeMobileMenu": "Zamknij menu mobilne",
|
|
55
|
+
"toggleSubmenu": "Przełącz podmenu {label}",
|
|
56
|
+
"searchBreadcrumb": "Szukaj",
|
|
57
|
+
"breadcrumb": "Okruszki nawigacji"
|
|
58
|
+
},
|
|
59
|
+
"cart": {
|
|
60
|
+
"title": "Koszyk",
|
|
61
|
+
"empty": "Twój koszyk jest pusty",
|
|
62
|
+
"emptyDescription": "Dodaj produkty do koszyka, aby kontynuować zakupy.",
|
|
63
|
+
"browseProducts": "Przeglądaj produkty",
|
|
64
|
+
"checkout": "Przejdź do kasy",
|
|
65
|
+
"continueShopping": "Kontynuuj zakupy",
|
|
66
|
+
"subtotal": "Suma częściowa",
|
|
67
|
+
"total": "Razem",
|
|
68
|
+
"quantity": "Ilość",
|
|
69
|
+
"remove": "Usuń z koszyka",
|
|
70
|
+
"update": "Aktualizuj koszyk",
|
|
71
|
+
"itemAdded": "Dodano do koszyka",
|
|
72
|
+
"itemRemoved": "Usunięto z koszyka",
|
|
73
|
+
"itemUpdated": "Koszyk zaktualizowany",
|
|
74
|
+
"promoCode": "Kod rabatowy",
|
|
75
|
+
"promoCodePlaceholder": "Wpisz kod",
|
|
76
|
+
"applyPromo": "Zastosuj",
|
|
77
|
+
"promoApplied": "Kod rabatowy zastosowany",
|
|
78
|
+
"promoRemoved": "Kod rabatowy usunięty",
|
|
79
|
+
"promoError": "Nieprawidłowy kod rabatowy",
|
|
80
|
+
"freeShipping": "Darmowa dostawa",
|
|
81
|
+
"shippingCalculated": "Dostawa obliczona przy kasie",
|
|
82
|
+
"shippingTaxNote": "Dostawa i podatki obliczone przy kasie",
|
|
83
|
+
"proceedToCheckout": "Przejdź do kasy",
|
|
84
|
+
"inCart": "w koszyku",
|
|
85
|
+
"discount": "Rabat",
|
|
86
|
+
"tax": "Podatek VAT",
|
|
87
|
+
"outOfStock": "Brak w magazynie",
|
|
88
|
+
"limitedStock": "Ograniczona ilość",
|
|
89
|
+
"outOfStockWarning": "Ten produkt jest aktualnie niedostępny",
|
|
90
|
+
"giftCardLabel": "Karta podarunkowa",
|
|
91
|
+
"each": "za szt.",
|
|
92
|
+
"itemCount": "{count, plural, one {# produkt} few {# produkty} other {# produktów}}",
|
|
93
|
+
"yourOrder": "Twoje zamówienie",
|
|
94
|
+
"products": "Produkty",
|
|
95
|
+
"shipping": "Dostawa",
|
|
96
|
+
"calculatedNextStep": "Obliczona w następnym kroku",
|
|
97
|
+
"paymentDue": "Do zapłaty",
|
|
98
|
+
"giftCard": "Karta podarunkowa",
|
|
99
|
+
"giftCardPlaceholder": "Kod karty podarunkowej",
|
|
100
|
+
"giftCardApplied": "Karta podarunkowa została zastosowana",
|
|
101
|
+
"giftCardRemoved": "Karta podarunkowa została usunięta",
|
|
102
|
+
"giftCardCodePlaceholder": "Kod karty (np. ABCD-EFGH-IJKL-MNOP)",
|
|
103
|
+
"giftCardCheck": "Sprawdź",
|
|
104
|
+
"giftCardValid": "Karta podarunkowa jest prawidłowa!",
|
|
105
|
+
"giftCardInvalid": "Nieprawidłowa karta podarunkowa",
|
|
106
|
+
"giftCardAlreadyApplied": "Ta karta jest już zastosowana",
|
|
107
|
+
"giftCardValidationFailed": "Nie udało się zweryfikować karty",
|
|
108
|
+
"giftCardInvalidCode": "Podaj prawidłowy kod karty podarunkowej",
|
|
109
|
+
"appliedGiftCards": "Zastosowane karty podarunkowe:",
|
|
110
|
+
"applying": "Stosowanie...",
|
|
111
|
+
"enterPromoCode": "Wpisz kod rabatowy",
|
|
112
|
+
"estimateShipping": "Szacuj dostawę",
|
|
113
|
+
"postalCode": "Kod pocztowy",
|
|
114
|
+
"calculating": "Obliczanie...",
|
|
115
|
+
"calculate": "Oblicz",
|
|
116
|
+
"availableOptions": "Dostępne opcje dostawy:",
|
|
117
|
+
"estimatedDelivery": "Szacowana dostawa:",
|
|
118
|
+
"noShippingOptions": "Brak opcji dostawy dla tej lokalizacji",
|
|
119
|
+
"failedCalculate": "Nie udało się obliczyć dostawy",
|
|
120
|
+
"enterPostalCode": "Podaj kod pocztowy",
|
|
121
|
+
"selectCountry": "Wybierz kraj",
|
|
122
|
+
"country": "Kraj"
|
|
123
|
+
},
|
|
124
|
+
"checkout": {
|
|
125
|
+
"title": "Checkout",
|
|
126
|
+
"haveAccount": "Masz konto? Zaloguj się",
|
|
127
|
+
"contact": {
|
|
128
|
+
"title": "Dane kontaktowe",
|
|
129
|
+
"description": "Podaj swój email i telefon - wyślemy na nie potwierdzenie zamówienia",
|
|
130
|
+
"email": "Email",
|
|
131
|
+
"emailPlaceholder": "twoj@email.pl",
|
|
132
|
+
"phone": "Telefon",
|
|
133
|
+
"phonePlaceholder": "+48 123 456 789",
|
|
134
|
+
"phoneHint": "Kurier może potrzebować kontaktu w sprawie dostawy",
|
|
135
|
+
"marketing": "Chcę otrzymywać informacje o promocjach i nowościach",
|
|
136
|
+
"nextShipping": "Dalej: Adres dostawy",
|
|
137
|
+
"nextPayment": "Dalej: Płatność"
|
|
138
|
+
},
|
|
139
|
+
"giftCard": {
|
|
140
|
+
"recipientTitle": "Dane odbiorcy karty podarunkowej",
|
|
141
|
+
"recipientDescription": "Opcjonalnie: podaj dane osoby, która otrzyma kartę podarunkową",
|
|
142
|
+
"recipientEmail": "E-mail odbiorcy",
|
|
143
|
+
"recipientEmailPlaceholder": "odbiorca@email.pl",
|
|
144
|
+
"recipientName": "Imię odbiorcy",
|
|
145
|
+
"recipientNamePlaceholder": "Jan",
|
|
146
|
+
"message": "Wiadomość",
|
|
147
|
+
"messagePlaceholder": "Wszystkiego najlepszego!",
|
|
148
|
+
"recipientSaveError": "Nie udało się zapisać danych odbiorcy dla {count} kart podarunkowych. Możesz uzupełnić je później."
|
|
149
|
+
},
|
|
150
|
+
"shipping": {
|
|
151
|
+
"title": "Adres dostawy",
|
|
152
|
+
"description": "Podaj adres, na który mamy wysłać zamówienie",
|
|
153
|
+
"billingTitle": "Adres rozliczeniowy",
|
|
154
|
+
"sameAsShipping": "Taki sam jak adres dostawy",
|
|
155
|
+
"nextDelivery": "Dalej: Metoda dostawy"
|
|
156
|
+
},
|
|
157
|
+
"delivery": {
|
|
158
|
+
"title": "Metoda dostawy",
|
|
159
|
+
"description": "Wybierz sposób dostarczenia zamówienia",
|
|
160
|
+
"loading": "Ładowanie metod dostawy...",
|
|
161
|
+
"noMethods": "Brak dostępnych metod dostawy dla podanego adresu.",
|
|
162
|
+
"changeAddress": "Zmień adres dostawy",
|
|
163
|
+
"selectMethod": "Wybierz metodę dostawy",
|
|
164
|
+
"nextPayment": "Dalej: Płatność",
|
|
165
|
+
"freeShippingQualified": "Kwalifikujesz się na darmową dostawę!",
|
|
166
|
+
"free": "GRATIS",
|
|
167
|
+
"noMethodsAvailable": "Brak dostępnych metod dostawy dla tego adresu"
|
|
168
|
+
},
|
|
169
|
+
"payment": {
|
|
170
|
+
"title": "Metoda płatności",
|
|
171
|
+
"description": "Wybierz sposób zapłaty za zamówienie",
|
|
172
|
+
"selectMethod": "Wybierz metodę płatności",
|
|
173
|
+
"unsupportedCurrency": "Ta metoda płatności nie obsługuje waluty {currency}. Wybierz inną metodę.",
|
|
174
|
+
"unavailable": "Wybrana metoda płatności jest niedostępna. Wybierz inną metodę.",
|
|
175
|
+
"nextReview": "Dalej: Podsumowanie",
|
|
176
|
+
"noMethods": "Brak dostępnych metod płatności. Skontaktuj się z obsługą.",
|
|
177
|
+
"chooseMethod": "Wybierz sposób zapłaty za zamówienie.",
|
|
178
|
+
"updating": "Aktualizowanie metody płatności...",
|
|
179
|
+
"processing": "Przetwarzanie...",
|
|
180
|
+
"continueToReview": "Przejdź do podsumowania",
|
|
181
|
+
"selected": "Wybrano:"
|
|
182
|
+
},
|
|
183
|
+
"review": {
|
|
184
|
+
"title": "Podsumowanie zamówienia",
|
|
185
|
+
"description": "Sprawdź wszystkie dane przed finalizacją",
|
|
186
|
+
"contact": "Kontakt",
|
|
187
|
+
"shippingAddress": "Adres dostawy",
|
|
188
|
+
"shippingMethod": "Metoda dostawy",
|
|
189
|
+
"paymentMethod": "Metoda płatności",
|
|
190
|
+
"change": "Zmień",
|
|
191
|
+
"acceptTerms": "Akceptuję",
|
|
192
|
+
"termsLink": "regulamin sklepu",
|
|
193
|
+
"and": "oraz",
|
|
194
|
+
"privacyLink": "politykę prywatności",
|
|
195
|
+
"mustAcceptTerms": "Musisz zaakceptować regulamin",
|
|
196
|
+
"placeOrder": "Zapłać i zamów"
|
|
197
|
+
},
|
|
198
|
+
"steps": {
|
|
199
|
+
"contact": "Kontakt",
|
|
200
|
+
"shipping": "Adres",
|
|
201
|
+
"delivery": "Dostawa",
|
|
202
|
+
"payment": "Płatność",
|
|
203
|
+
"review": "Podsumowanie"
|
|
204
|
+
},
|
|
205
|
+
"discount": {
|
|
206
|
+
"codePlaceholder": "Kod rabatowy",
|
|
207
|
+
"applied": "Kod rabatowy został zastosowany",
|
|
208
|
+
"removed": "Kod rabatowy został usunięty",
|
|
209
|
+
"error": "Nie udało się zastosować kodu rabatowego",
|
|
210
|
+
"enterCode": "Wpisz kod rabatowy",
|
|
211
|
+
"alreadyApplied": "Ten kod jest już zastosowany",
|
|
212
|
+
"invalidCode": "Kod jest nieprawidłowy",
|
|
213
|
+
"validationFailed": "Nie udało się zweryfikować kodu",
|
|
214
|
+
"savings": "Oszczędzisz {savings}",
|
|
215
|
+
"percentOff": "{value}% zniżki",
|
|
216
|
+
"freeShippingDiscount": "Darmowa dostawa",
|
|
217
|
+
"codeValid": "Kod jest prawidłowy",
|
|
218
|
+
"minOrderAmount": "Minimalna kwota zamówienia:"
|
|
219
|
+
},
|
|
220
|
+
"errors": {
|
|
221
|
+
"contactProcessing": "Nie udało się przetworzyć danych kontaktowych",
|
|
222
|
+
"addressUpdate": "Nie udało się zaktualizować adresu",
|
|
223
|
+
"deliverySelect": "Nie udało się wybrać metody dostawy",
|
|
224
|
+
"checkoutNotFound": "Checkout nie znaleziony. Wróć i spróbuj ponownie.",
|
|
225
|
+
"checkoutComplete": "Nie udało się sfinalizować zamówienia",
|
|
226
|
+
"paymentUnavailable": "Metoda płatności jest niedostępna",
|
|
227
|
+
"sessionExpired": "Sesja checkout wygasła. Proszę odświeżyć stronę i spróbować ponownie.",
|
|
228
|
+
"outOfStock": "Niektóre produkty są niedostępne. Sprawdź swój koszyk.",
|
|
229
|
+
"unexpected": "Wystąpił nieoczekiwany błąd. Skontaktuj się z obsługą.",
|
|
230
|
+
"discountApply": "Nie udało się zastosować kodu rabatowego",
|
|
231
|
+
"discountRemove": "Nie udało się usunąć kodu rabatowego",
|
|
232
|
+
"giftCardApply": "Nie udało się zastosować karty podarunkowej",
|
|
233
|
+
"giftCardRemove": "Nie udało się usunąć karty podarunkowej",
|
|
234
|
+
"giftCardNotFound": "Nie znaleziono karty podarunkowej o podanym kodzie",
|
|
235
|
+
"giftCardExpired": "Ta karta podarunkowa wygasła",
|
|
236
|
+
"giftCardDisabled": "Ta karta podarunkowa jest wyłączona",
|
|
237
|
+
"giftCardDepleted": "Ta karta podarunkowa nie ma dostępnego salda",
|
|
238
|
+
"giftCardUnusable": "Ta karta jest już zastosowana"
|
|
239
|
+
},
|
|
240
|
+
"address": {
|
|
241
|
+
"firstName": "Imię",
|
|
242
|
+
"lastName": "Nazwisko",
|
|
243
|
+
"company": "Firma",
|
|
244
|
+
"address1": "Adres",
|
|
245
|
+
"address1Placeholder": "Ulica i numer",
|
|
246
|
+
"address2": "Mieszkanie, piętro",
|
|
247
|
+
"zip": "Kod pocztowy",
|
|
248
|
+
"zipPlaceholder": "00-000",
|
|
249
|
+
"city": "Miasto",
|
|
250
|
+
"country": "Kraj",
|
|
251
|
+
"countryPlaceholder": "Wybierz kraj",
|
|
252
|
+
"province": "Województwo",
|
|
253
|
+
"phone": "Telefon"
|
|
254
|
+
},
|
|
255
|
+
"validation": {
|
|
256
|
+
"emailRequired": "Podaj prawidłowy adres email",
|
|
257
|
+
"phoneRequired": "Numer telefonu jest wymagany",
|
|
258
|
+
"phoneInvalid": "Nieprawidłowy format numeru telefonu",
|
|
259
|
+
"firstNameRequired": "Imię jest wymagane",
|
|
260
|
+
"lastNameRequired": "Nazwisko jest wymagane",
|
|
261
|
+
"addressRequired": "Adres jest wymagany",
|
|
262
|
+
"cityRequired": "Miasto jest wymagane",
|
|
263
|
+
"zipRequired": "Kod pocztowy jest wymagany",
|
|
264
|
+
"provinceRequired": "Województwo jest wymagane",
|
|
265
|
+
"countryRequired": "Kraj jest wymagany"
|
|
266
|
+
},
|
|
267
|
+
"tax": {
|
|
268
|
+
"title": "Podatek",
|
|
269
|
+
"breakdown": "Rozkład podatku",
|
|
270
|
+
"total": "Łączny podatek",
|
|
271
|
+
"exempt": "Zamówienie zwolnione z podatku"
|
|
272
|
+
},
|
|
273
|
+
"success": {
|
|
274
|
+
"thankYou": "Dziękujemy za zamówienie!",
|
|
275
|
+
"pendingPayment": "Zamówienie oczekuje na płatność",
|
|
276
|
+
"pendingDescription": "Po otrzymaniu płatności rozpoczniemy realizację zamówienia.",
|
|
277
|
+
"confirmedDescription": "Twoje zamówienie zostało potwierdzone i wkrótce zostanie wysłane.",
|
|
278
|
+
"orderConfirmation": "Potwierdzenie zamówienia",
|
|
279
|
+
"orderNumber": "Numer zamówienia",
|
|
280
|
+
"confirmationEmail": "Email potwierdzający",
|
|
281
|
+
"emailSent": "Wysłaliśmy potwierdzenie ze szczegółami zamówienia.",
|
|
282
|
+
"tracking": "Śledzenie przesyłki",
|
|
283
|
+
"trackingInfo": "Otrzymasz numer śledzenia, gdy paczka zostanie wysłana.",
|
|
284
|
+
"bankTransfer": {
|
|
285
|
+
"title": "Dane do przelewu bankowego",
|
|
286
|
+
"bankName": "Bank",
|
|
287
|
+
"accountNumber": "Numer konta",
|
|
288
|
+
"recipient": "Odbiorca",
|
|
289
|
+
"transferTitle": "Tytuł przelewu",
|
|
290
|
+
"orderTitle": "Zamówienie {orderId}",
|
|
291
|
+
"processingNote": "Realizacja zamówienia rozpocznie się po zaksięgowaniu wpłaty (zazwyczaj 1-2 dni robocze)."
|
|
292
|
+
},
|
|
293
|
+
"copied": "Skopiowano do schowka",
|
|
294
|
+
"copyFailed": "Nie udało się skopiować",
|
|
295
|
+
"whatsNext": "Co dalej?",
|
|
296
|
+
"stepMakeTransfer": "Wykonaj przelew",
|
|
297
|
+
"stepMakeTransferDesc": "Prześlij płatność na podane powyżej konto bankowe.",
|
|
298
|
+
"stepPaymentConfirmation": "Potwierdzenie płatności",
|
|
299
|
+
"stepPaymentConfirmationDesc": "Po zaksięgowaniu wpłaty otrzymasz email z potwierdzeniem.",
|
|
300
|
+
"stepProcessing": "Przetwarzanie zamówienia",
|
|
301
|
+
"stepProcessingDesc": "Przygotowujemy Twoje zamówienie do wysyłki.",
|
|
302
|
+
"stepShipping": "Wysyłka",
|
|
303
|
+
"stepShippingDesc": "Po wysłaniu otrzymasz email z numerem śledzenia przesyłki.",
|
|
304
|
+
"stepDelivery": "Dostawa",
|
|
305
|
+
"stepDeliveryDesc": "Paczka zostanie dostarczona pod wskazany adres.",
|
|
306
|
+
"continueShopping": "Kontynuuj zakupy",
|
|
307
|
+
"myOrders": "Moje zamówienia",
|
|
308
|
+
"needHelp": "Potrzebujesz pomocy?",
|
|
309
|
+
"contactUs": "Skontaktuj się z nami"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"errors": {
|
|
313
|
+
"somethingWentWrong": "Coś poszło nie tak",
|
|
314
|
+
"serverUnavailable": "Serwer tymczasowo niedostępny",
|
|
315
|
+
"serverUnavailableDesc": "Nie udało się załadować strony. Serwer może być tymczasowo niedostępny. Spróbuj odświeżyć stronę za chwilę.",
|
|
316
|
+
"tryAgain": "Spróbuj ponownie",
|
|
317
|
+
"goHome": "Strona główna",
|
|
318
|
+
"couldNotLoadAccount": "Nie udało się załadować danych konta. To może być tymczasowy problem.",
|
|
319
|
+
"unexpectedError": "Wystąpił nieoczekiwany błąd. Spróbuj odświeżyć stronę."
|
|
320
|
+
},
|
|
321
|
+
"about": {
|
|
322
|
+
"title": "O nas",
|
|
323
|
+
"welcome": "Witamy w naszym sklepie! Dbamy o to, aby dostarczać najlepsze produkty i wyjątkową obsługę klienta.",
|
|
324
|
+
"ourStory": "Nasza historia",
|
|
325
|
+
"ourStoryText": "Założeni z pasją do jakości i zadowolenia klientów, obsługujemy klientów na całym świecie starannie wyselekcjonowanymi produktami.",
|
|
326
|
+
"ourMission": "Nasza misja",
|
|
327
|
+
"ourMissionText": "Dostarczanie produktów najwyższej jakości w konkurencyjnych cenach, zapewniając wyjątkowe doświadczenia zakupowe.",
|
|
328
|
+
"contactTitle": "Skontaktuj się z nami",
|
|
329
|
+
"contactText": "Masz pytania? Skontaktuj się z naszym zespołem obsługi klienta."
|
|
330
|
+
},
|
|
331
|
+
"search": {
|
|
332
|
+
"placeholder": "Szukaj produktów...",
|
|
333
|
+
"searching": "Szukam...",
|
|
334
|
+
"viewAllResults": "Zobacz wszystkie wyniki dla \"{query}\"",
|
|
335
|
+
"noProductsFound": "Nie znaleziono produktów dla \"{query}\"",
|
|
336
|
+
"clearSearch": "Wyczyść wyszukiwanie"
|
|
337
|
+
},
|
|
338
|
+
"filters": {
|
|
339
|
+
"title": "Filtry",
|
|
340
|
+
"loading": "Ładowanie filtrów...",
|
|
341
|
+
"clearAll": "Wyczyść wszystkie",
|
|
342
|
+
"price": "Cena",
|
|
343
|
+
"productCount": "{count, plural, one {# produkt} few {# produkty} other {# produktów}}"
|
|
344
|
+
},
|
|
345
|
+
"product": {
|
|
346
|
+
"addToCart": "Dodaj do koszyka",
|
|
347
|
+
"adding": "Dodawanie...",
|
|
348
|
+
"addedToCart": "Dodano do koszyka",
|
|
349
|
+
"outOfStock": "Brak w magazynie",
|
|
350
|
+
"inStock": "Dostępny",
|
|
351
|
+
"limitedStock": "Pozostało {count}",
|
|
352
|
+
"price": "Cena",
|
|
353
|
+
"originalPrice": "Cena regularna",
|
|
354
|
+
"salePrice": "Cena promocyjna",
|
|
355
|
+
"description": "Opis",
|
|
356
|
+
"details": "Szczegóły",
|
|
357
|
+
"reviews": "Opinie",
|
|
358
|
+
"relatedProducts": "Podobne produkty",
|
|
359
|
+
"quantity": "Ilość",
|
|
360
|
+
"selectVariant": "Wybierz wariant",
|
|
361
|
+
"sku": "SKU",
|
|
362
|
+
"vendor": "Producent",
|
|
363
|
+
"tags": "Tagi",
|
|
364
|
+
"share": "Udostępnij",
|
|
365
|
+
"addToWishlist": "Dodaj do listy życzeń",
|
|
366
|
+
"removeFromWishlist": "Usuń z listy życzeń",
|
|
367
|
+
"filters": "Filtry",
|
|
368
|
+
"sort": "Sortuj",
|
|
369
|
+
"sortOptions": {
|
|
370
|
+
"relevance": "Trafność",
|
|
371
|
+
"bestSelling": "Bestsellery",
|
|
372
|
+
"priceLowToHigh": "Cena: od najniższej",
|
|
373
|
+
"priceHighToLow": "Cena: od najwyższej",
|
|
374
|
+
"titleAsc": "Nazwa: A-Z",
|
|
375
|
+
"titleDesc": "Nazwa: Z-A",
|
|
376
|
+
"newestFirst": "Najnowsze",
|
|
377
|
+
"oldestFirst": "Najstarsze"
|
|
378
|
+
},
|
|
379
|
+
"noProducts": "Nie znaleziono produktów",
|
|
380
|
+
"loadMore": "Załaduj więcej",
|
|
381
|
+
"showingCount": "Pokazano {count} z {total} produktów",
|
|
382
|
+
"allProducts": "Wszystkie produkty",
|
|
383
|
+
"browseCollection": "Przeglądaj naszą pełną kolekcję produktów",
|
|
384
|
+
"clearAllFilters": "Wyczyść wszystkie filtry",
|
|
385
|
+
"sortBy": "Sortuj według",
|
|
386
|
+
"firstPage": "Pierwsza strona",
|
|
387
|
+
"showingProducts": "Pokazano {count} produktów",
|
|
388
|
+
"noProductsMatch": "Brak produktów pasujących do filtrów",
|
|
389
|
+
"failedLoadProducts": "Nie udało się załadować produktów. Spróbuj ponownie.",
|
|
390
|
+
"noProductsInCategory": "Brak produktów w tej kategorii",
|
|
391
|
+
"category": "Kategoria",
|
|
392
|
+
"priceRange": "Zakres ceny",
|
|
393
|
+
"minPrice": "Cena minimalna",
|
|
394
|
+
"maxPrice": "Cena maksymalna",
|
|
395
|
+
"giftCardLabel": "Karta podarunkowa",
|
|
396
|
+
"badgeNew": "NOWE",
|
|
397
|
+
"badgeSale": "PROMOCJA",
|
|
398
|
+
"currentlyUnavailable": "Aktualnie niedostępny",
|
|
399
|
+
"removedFromWishlist": "Usunięto z listy życzeń",
|
|
400
|
+
"addedToWishlist": "Dodano do listy życzeń",
|
|
401
|
+
"inWishlist": "W liście życzeń",
|
|
402
|
+
"review": {
|
|
403
|
+
"addReview": "Dodaj opinię",
|
|
404
|
+
"shareOpinion": "Podziel się swoją opinią o produkcie: {productTitle}",
|
|
405
|
+
"rating": "Ocena",
|
|
406
|
+
"selectRating": "Wybierz ocenę",
|
|
407
|
+
"writeReview": "Napisz treść opinii",
|
|
408
|
+
"enterName": "Podaj swoje imię",
|
|
409
|
+
"thankYou": "Dziękujemy za opinię!",
|
|
410
|
+
"failed": "Nie udało się dodać opinii. Spróbuj ponownie.",
|
|
411
|
+
"ratingLabels": {
|
|
412
|
+
"1": "Bardzo słabo",
|
|
413
|
+
"2": "Słabo",
|
|
414
|
+
"3": "Średnio",
|
|
415
|
+
"4": "Dobrze",
|
|
416
|
+
"5": "Doskonale"
|
|
417
|
+
},
|
|
418
|
+
"title": "Tytuł opinii",
|
|
419
|
+
"titlePlaceholder": "Krótkie podsumowanie...",
|
|
420
|
+
"content": "Treść opinii",
|
|
421
|
+
"contentPlaceholder": "Opisz swoje doświadczenia z produktem...",
|
|
422
|
+
"pros": "Zalety",
|
|
423
|
+
"addPro": "Dodaj zaletę...",
|
|
424
|
+
"cons": "Wady",
|
|
425
|
+
"addCon": "Dodaj wadę...",
|
|
426
|
+
"yourName": "Twoje imię",
|
|
427
|
+
"emailOptional": "Email (opcjonalnie)",
|
|
428
|
+
"emailPlaceholder": "jan@email.com",
|
|
429
|
+
"emailNotPublic": "Nie będzie widoczny publicznie",
|
|
430
|
+
"submitting": "Wysyłanie..."
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"auth": {
|
|
434
|
+
"signIn": "Zaloguj się",
|
|
435
|
+
"signUp": "Zarejestruj się",
|
|
436
|
+
"signOut": "Wyloguj się",
|
|
437
|
+
"signingIn": "Logowanie...",
|
|
438
|
+
"creatingAccount": "Tworzenie konta...",
|
|
439
|
+
"signingOut": "Wylogowywanie...",
|
|
440
|
+
"email": "Email",
|
|
441
|
+
"password": "Hasło",
|
|
442
|
+
"confirmPassword": "Potwierdź hasło",
|
|
443
|
+
"firstName": "Imię",
|
|
444
|
+
"lastName": "Nazwisko",
|
|
445
|
+
"forgotPassword": "Zapomniałeś hasła?",
|
|
446
|
+
"resetPassword": "Zresetuj hasło",
|
|
447
|
+
"noAccount": "Nie masz konta?",
|
|
448
|
+
"hasAccount": "Masz już konto?",
|
|
449
|
+
"createAccount": "Utwórz konto",
|
|
450
|
+
"loginSuccess": "Zalogowano pomyślnie",
|
|
451
|
+
"loginError": "Nieprawidłowy email lub hasło",
|
|
452
|
+
"loginFailed": "Logowanie nie powiodło się",
|
|
453
|
+
"registerSuccess": "Konto zostało utworzone. Zaloguj się używając swoich danych.",
|
|
454
|
+
"registerError": "Nie udało się utworzyć konta",
|
|
455
|
+
"registerFailed": "Rejestracja nie powiodła się. Spróbuj ponownie.",
|
|
456
|
+
"logoutSuccess": "Wylogowano pomyślnie",
|
|
457
|
+
"unexpectedError": "Wystąpił nieoczekiwany błąd. Spróbuj ponownie.",
|
|
458
|
+
"passwordRequirements": "Min. 8 znaków, wielka litera, mała litera i cyfra",
|
|
459
|
+
"signInTitle": "Zaloguj się",
|
|
460
|
+
"signInDescription": "Zaloguj się na swoje konto, aby kontynuować",
|
|
461
|
+
"signUpTitle": "Zarejestruj się",
|
|
462
|
+
"signUpDescription": "Utwórz konto, aby rozpocząć zakupy",
|
|
463
|
+
"forgotPasswordTitle": "Zapomniałeś hasła?",
|
|
464
|
+
"forgotPasswordDescription": "Podaj swój email, a wyślemy link do resetowania hasła",
|
|
465
|
+
"sendResetLink": "Wyślij link",
|
|
466
|
+
"sending": "Wysyłanie...",
|
|
467
|
+
"sendResetInstructions": "Wyślij instrukcje resetowania",
|
|
468
|
+
"resetLinkSent": "Link do resetowania hasła został wysłany",
|
|
469
|
+
"checkYourEmail": "Sprawdź swoją skrzynkę",
|
|
470
|
+
"resetEmailSent": "Wysłaliśmy instrukcje resetowania hasła na adres {email}",
|
|
471
|
+
"didntReceiveEmail": "Nie otrzymałeś emaila? Sprawdź folder spam lub spróbuj ponownie.",
|
|
472
|
+
"tryAnotherEmail": "Spróbuj inny email",
|
|
473
|
+
"resetPasswordTitle": "Resetuj hasło",
|
|
474
|
+
"resetPasswordDescription": "Podaj swój adres email, a wyślemy Ci instrukcje resetowania hasła.",
|
|
475
|
+
"backToSignIn": "Powrót do logowania",
|
|
476
|
+
"validation": {
|
|
477
|
+
"emailInvalid": "Podaj prawidłowy adres email",
|
|
478
|
+
"passwordMinLength": "Hasło musi mieć co najmniej 8 znaków",
|
|
479
|
+
"passwordRequirements": "Hasło musi zawierać wielką literę, małą literę i cyfrę",
|
|
480
|
+
"firstNameMinLength": "Imię musi mieć co najmniej 2 znaki",
|
|
481
|
+
"firstNameMaxLength": "Imię nie może przekraczać 50 znaków",
|
|
482
|
+
"lastNameMinLength": "Nazwisko musi mieć co najmniej 2 znaki",
|
|
483
|
+
"lastNameMaxLength": "Nazwisko nie może przekraczać 50 znaków"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"account": {
|
|
487
|
+
"title": "Moje konto",
|
|
488
|
+
"orders": "Zamówienia",
|
|
489
|
+
"addresses": "Adresy",
|
|
490
|
+
"settings": "Ustawienia",
|
|
491
|
+
"loyalty": "Program lojalnościowy",
|
|
492
|
+
"noOrders": "Nie masz jeszcze żadnych zamówień",
|
|
493
|
+
"startShoppingDescription": "Zacznij zakupy, aby zobaczyć swoje zamówienia",
|
|
494
|
+
"browseProducts": "Przeglądaj produkty",
|
|
495
|
+
"orderNumber": "Zamówienie #{number}",
|
|
496
|
+
"orderDate": "Data zamówienia",
|
|
497
|
+
"orderStatus": "Status",
|
|
498
|
+
"orderTotal": "Łącznie",
|
|
499
|
+
"viewOrder": "Zobacz szczegóły",
|
|
500
|
+
"trackShipment": "Śledź przesyłkę",
|
|
501
|
+
"placedOn": "Zamówienie z dnia",
|
|
502
|
+
"itemCount": "{count, plural, one {# pozycja} few {# pozycje} other {# pozycji}}",
|
|
503
|
+
"addAddress": "Dodaj adres",
|
|
504
|
+
"editAddress": "Edytuj adres",
|
|
505
|
+
"deleteAddress": "Usuń adres",
|
|
506
|
+
"defaultAddress": "Adres domyślny",
|
|
507
|
+
"setAsDefault": "Ustaw jako domyślny",
|
|
508
|
+
"noAddresses": "Nie masz jeszcze żadnych adresów",
|
|
509
|
+
"personalInfo": "Dane osobowe",
|
|
510
|
+
"changePassword": "Zmień hasło",
|
|
511
|
+
"preferences": "Preferencje",
|
|
512
|
+
"savedSuccessfully": "Zapisano pomyślnie",
|
|
513
|
+
"manageAddresses": "Zarządzaj swoimi adresami dostawy i rozliczeniowymi",
|
|
514
|
+
"deleteConfirm": "Czy na pewno chcesz usunąć ten adres?",
|
|
515
|
+
"signInToManage": "<link>Zaloguj się</link>, aby zarządzać swoimi adresami.",
|
|
516
|
+
"signInToView": "<link>Zaloguj się</link>, aby zobaczyć swoje zamówienia.",
|
|
517
|
+
"addNewAddress": "Dodaj nowy adres",
|
|
518
|
+
"failedDelete": "Nie udało się usunąć adresu",
|
|
519
|
+
"failedSetDefault": "Nie udało się ustawić adresu domyślnego",
|
|
520
|
+
"failedCreate": "Nie udało się utworzyć adresu",
|
|
521
|
+
"failedUpdate": "Nie udało się zaktualizować adresu",
|
|
522
|
+
"backToAccount": "Powrót do konta",
|
|
523
|
+
"viewTrackOrders": "Przeglądaj i śledź swoje zamówienia",
|
|
524
|
+
"failedLoadOrders": "Nie udało się załadować zamówień",
|
|
525
|
+
"failedLoadOrder": "Nie udało się załadować zamówienia",
|
|
526
|
+
"tryAgainLater": "Coś poszło nie tak. Spróbuj ponownie później.",
|
|
527
|
+
"backToOrders": "Powrót do zamówień",
|
|
528
|
+
"orderNotFound": "Nie znaleziono zamówienia",
|
|
529
|
+
"trackingNumber": "Numer śledzenia",
|
|
530
|
+
"estimatedDelivery": "Szacowana dostawa",
|
|
531
|
+
"orderItems": "Pozycje zamówienia",
|
|
532
|
+
"subtotal": "Suma częściowa",
|
|
533
|
+
"shippingLabel": "Dostawa",
|
|
534
|
+
"taxLabel": "Podatek",
|
|
535
|
+
"shippingAddress": "Adres dostawy",
|
|
536
|
+
"billingAddress": "Adres rozliczeniowy",
|
|
537
|
+
"taxExempt": "Zamówienie zwolnione z podatku",
|
|
538
|
+
"noAddressesSaved": "Brak zapisanych adresów",
|
|
539
|
+
"addAddressDescription": "Dodaj adres, aby przyspieszyć składanie zamówień",
|
|
540
|
+
"addFirstAddress": "Dodaj swój pierwszy adres",
|
|
541
|
+
"defaultBadge": "Domyślny",
|
|
542
|
+
"deleteAddressConfirm": "Czy na pewno chcesz usunąć adres {address}?",
|
|
543
|
+
"orderStatuses": {
|
|
544
|
+
"delivered": "Dostarczono",
|
|
545
|
+
"fulfilled": "Zrealizowano",
|
|
546
|
+
"shipped": "Wysłano",
|
|
547
|
+
"partiallyFulfilled": "Częściowo zrealizowano",
|
|
548
|
+
"processing": "W realizacji",
|
|
549
|
+
"returned": "Zwrócono",
|
|
550
|
+
"pending": "Oczekuje",
|
|
551
|
+
"cancelled": "Anulowano"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"footer": {
|
|
555
|
+
"description": "Produkty najwyższej jakości w przystępnych cenach.",
|
|
556
|
+
"shop": "Sklep",
|
|
557
|
+
"allProducts": "Wszystkie produkty",
|
|
558
|
+
"collections": "Kolekcje",
|
|
559
|
+
"categories": "Kategorie",
|
|
560
|
+
"customerService": "Obsługa klienta",
|
|
561
|
+
"company": "Firma",
|
|
562
|
+
"followUs": "Obserwuj nas",
|
|
563
|
+
"newsletter": "Newsletter",
|
|
564
|
+
"newsletterDescription": "Zapisz się, aby otrzymywać informacje o nowościach i promocjach.",
|
|
565
|
+
"emailPlaceholder": "Twój email",
|
|
566
|
+
"subscribe": "Zapisz się",
|
|
567
|
+
"subscribeSuccess": "Dziękujemy za zapisanie się!",
|
|
568
|
+
"allRightsReserved": "Wszelkie prawa zastrzeżone",
|
|
569
|
+
"privacyPolicy": "Polityka prywatności",
|
|
570
|
+
"termsOfService": "Regulamin",
|
|
571
|
+
"cookiePolicy": "Polityka cookies",
|
|
572
|
+
"aboutUs": "O nas",
|
|
573
|
+
"careers": "Kariera",
|
|
574
|
+
"faq": "FAQ",
|
|
575
|
+
"helpCenter": "Centrum pomocy",
|
|
576
|
+
"contactUs": "Kontakt",
|
|
577
|
+
"support": "Wsparcie",
|
|
578
|
+
"signIn": "Zaloguj się",
|
|
579
|
+
"createAccount": "Utwórz konto",
|
|
580
|
+
"myAccount": "Moje konto",
|
|
581
|
+
"orderHistory": "Historia zamówień",
|
|
582
|
+
"shoppingCart": "Koszyk",
|
|
583
|
+
"shippingInfo": "Informacje o dostawie",
|
|
584
|
+
"returnsRefunds": "Zwroty i reklamacje",
|
|
585
|
+
"poweredBy": "Powered by DoSwiftly Commerce",
|
|
586
|
+
"stayInLoop": "Bądź na bieżąco",
|
|
587
|
+
"newsletterLongDescription": "Zapisz się do naszego newslettera, aby otrzymywać ekskluzywne oferty, nowości i informacje.",
|
|
588
|
+
"thanksForSubscribing": "Dziękujemy za subskrypcję! Sprawdź swój email, aby potwierdzić.",
|
|
589
|
+
"subscribing": "Zapisywanie...",
|
|
590
|
+
"failedSubscribe": "Nie udało się zapisać. Spróbuj ponownie.",
|
|
591
|
+
"privacyConsent": "Zapisując się, zgadzasz się na naszą Politykę prywatności i wyrażasz zgodę na otrzymywanie aktualizacji.",
|
|
592
|
+
"invalidEmail": "Podaj prawidłowy adres email"
|
|
593
|
+
},
|
|
594
|
+
"returns": {
|
|
595
|
+
"title": "Zwrot dla zamówienia #{orderNumber}",
|
|
596
|
+
"selectItems": "1. Wybierz produkty do zwrotu",
|
|
597
|
+
"noReturnableItems": "Brak produktów do zwrotu",
|
|
598
|
+
"noReturnableItemsDesc": "W tym zamóweniu nie ma produktów kwalifikujących się do zwrotu.",
|
|
599
|
+
"ordered": "Zamówiono:",
|
|
600
|
+
"returnable": "Do zwrotu:",
|
|
601
|
+
"quantityToReturn": "Ilość do zwrotu",
|
|
602
|
+
"itemCondition": "Stan produktu",
|
|
603
|
+
"selectCondition": "Wybierz stan",
|
|
604
|
+
"conditionNew": "Nowy (nieużywany, w oryginalnym opakowaniu)",
|
|
605
|
+
"conditionOpened": "Otwarty (opakowanie otwarte, ale nieużywany)",
|
|
606
|
+
"conditionUsed": "Używany",
|
|
607
|
+
"conditionDamaged": "Uszkodzony",
|
|
608
|
+
"itemsSelected": "wybranych pozycji",
|
|
609
|
+
"returnReason": "2. Powód zwrotu",
|
|
610
|
+
"primaryReason": "Główny powód",
|
|
611
|
+
"selectReason": "Wybierz powód",
|
|
612
|
+
"reasonDefective": "Wadliwy produkt",
|
|
613
|
+
"reasonDefectiveDesc": "Produkt ma wadę lub uszkodzenie fabryczne",
|
|
614
|
+
"reasonNotAsDescribed": "Niezgodny z opisem",
|
|
615
|
+
"reasonNotAsDescribedDesc": "Produkt wygląda lub działa inaczej niż opisano",
|
|
616
|
+
"reasonWrongItem": "Otrzymano inny produkt",
|
|
617
|
+
"reasonWrongItemDesc": "Otrzymano produkt inny niż zamówiony",
|
|
618
|
+
"reasonChangedMind": "Zmiana decyzji",
|
|
619
|
+
"reasonChangedMindDesc": "Nie potrzebuję już tego produktu",
|
|
620
|
+
"reasonBetterPrice": "Lepsza cena",
|
|
621
|
+
"reasonBetterPriceDesc": "Znalazłem ten produkt taniej w innym miejscu",
|
|
622
|
+
"reasonDamagedShipping": "Uszkodzony podczas dostawy",
|
|
623
|
+
"reasonDamagedShippingDesc": "Produkt został uszkodzony podczas transportu",
|
|
624
|
+
"reasonOther": "Inny powód",
|
|
625
|
+
"reasonOtherDesc": "Powód nie wymieniony powyżej",
|
|
626
|
+
"additionalDetails": "Dodatkowe informacje (opcjonalnie)",
|
|
627
|
+
"additionalDetailsPlaceholder": "Opisz szczegóły dotyczące zwrotu...",
|
|
628
|
+
"additionalDetailsHint": "Pomóż nam szybciej przetworzyć zwrot, podając szczegóły.",
|
|
629
|
+
"compensationPreference": "3. Preferencja rekompensaty",
|
|
630
|
+
"refundOriginal": "Zwrot na oryginalną metodę płatności",
|
|
631
|
+
"refundOriginalDesc": "Zwrot zostanie przetworzony na Twoją oryginalną metodę płatności",
|
|
632
|
+
"storeCredit": "Kredyt sklepowy",
|
|
633
|
+
"storeCreditDesc": "Otrzymaj kredyt sklepowy na przyszłe zakupy",
|
|
634
|
+
"submitReturn": "Złóż wniosek o zwrot",
|
|
635
|
+
"submitted": "Wniosek o zwrot złożony",
|
|
636
|
+
"submittedDesc": "Twój wniosek o zwrot został złożony pomyślnie. Otrzymasz email z dalszymi instrukcjami.",
|
|
637
|
+
"backToOrder": "Powrót do zamówienia",
|
|
638
|
+
"selectAtLeastOne": "Wybierz co najmniej jeden produkt do zwrotu",
|
|
639
|
+
"error": "Błąd"
|
|
640
|
+
},
|
|
641
|
+
"loyalty": {
|
|
642
|
+
"page": {
|
|
643
|
+
"signInToView": "Zaloguj się, aby zobaczyć swoje punkty i nagrody.",
|
|
644
|
+
"loadFailed": "Nie udało się załadować danych programu lojalnościowego. Spróbuj ponownie później.",
|
|
645
|
+
"unavailable": "Program lojalnościowy jest obecnie niedostępny. Sprawdź ponownie później.",
|
|
646
|
+
"joinTitle": "Dołącz do programu lojalnościowego",
|
|
647
|
+
"joinDescription": "Zbieraj punkty za zakupy i wymieniaj je na nagrody! Zapisywanie jest automatyczne przy pierwszym zakupie.",
|
|
648
|
+
"collectAndRedeem": "Zbieraj {pointsName} i wymieniaj je na nagrody",
|
|
649
|
+
"tabOverview": "Przegląd",
|
|
650
|
+
"tabRewards": "Nagrody",
|
|
651
|
+
"tabHistory": "Historia",
|
|
652
|
+
"tabReferrals": "Polecenia",
|
|
653
|
+
"tierBenefits": "Twoje korzyści na poziomie {tierName}",
|
|
654
|
+
"pointsMultiplier": "Mnożnik punktów",
|
|
655
|
+
"browseRewards": "Przeglądaj nagrody",
|
|
656
|
+
"viewHistory": "Zobacz historię",
|
|
657
|
+
"referFriend": "Poleć znajomego",
|
|
658
|
+
"referFriendDescription": "Zaproś znajomych i otrzymaj {points} {pointsName} za każde polecenie",
|
|
659
|
+
"availableRewards": "Dostępne nagrody",
|
|
660
|
+
"redeemDescription": "Wymień swoje {pointsName} na atrakcyjne nagrody",
|
|
661
|
+
"pointsHistory": "Historia punktów",
|
|
662
|
+
"historyDescription": "Przegląd wszystkich transakcji punktowych",
|
|
663
|
+
"redeemFailed": "Nie udało się wymienić nagrody"
|
|
664
|
+
},
|
|
665
|
+
"referral": {
|
|
666
|
+
"yourCode": "Twój kod polecający",
|
|
667
|
+
"shareDescription": "Podziel się tym kodem ze znajomymi. Za każde polecenie oboje zyskujecie punkty!",
|
|
668
|
+
"copied": "Skopiowano!",
|
|
669
|
+
"codeCopied": "Kod skopiowany!",
|
|
670
|
+
"linkCopied": "Link skopiowany!",
|
|
671
|
+
"copyFailed": "Nie udało się skopiować",
|
|
672
|
+
"shareFriends": "Udostępnij znajomym",
|
|
673
|
+
"shareText": "Dołącz do programu lojalnościowego! Zarejestruj się używając mojego kodu {code} i otrzymaj bonus powitalny.",
|
|
674
|
+
"shareFailed": "Nie udało się udostępnić",
|
|
675
|
+
"howItWorks": "Jak to działa?",
|
|
676
|
+
"step1Title": "1. Udostępnij kod",
|
|
677
|
+
"step1Desc": "Podziel się swoim kodem lub linkiem ze znajomymi.",
|
|
678
|
+
"step2Title": "2. Znajomy się rejestruje",
|
|
679
|
+
"step2Desc": "Znajomy używa Twojego kodu przy rejestracji.",
|
|
680
|
+
"step3Title": "3. Oboje zyskujecie",
|
|
681
|
+
"step3Desc": "Ty otrzymujesz {points} {name}, a Twój znajomy bonus powitalny.",
|
|
682
|
+
"yourStats": "Twoje statystyki poleceń",
|
|
683
|
+
"invited": "Zaproszonych",
|
|
684
|
+
"completed": "Zrealizowanych",
|
|
685
|
+
"pending": "Oczekujących",
|
|
686
|
+
"earned": "Zdobytych {name}",
|
|
687
|
+
"pendingReferrals": "Masz {count} oczekujących poleceń. Punkty zostaną przyznane po pierwszym zakupie poleconych osób."
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"home": {
|
|
691
|
+
"metaDescription": "Odkryj naszą wyselekcjonowaną kolekcję produktów wysokiej jakości w przystępnych cenach.",
|
|
692
|
+
"welcomeTo": "Witaj w <highlight>{storeName}</highlight>",
|
|
693
|
+
"heroDescription": "Odkryj naszą wyselekcjonowaną kolekcję produktów najwyższej jakości. Kupuj z pewnością i ciesz się wyjątkową obsługą.",
|
|
694
|
+
"shopNow": "Kup teraz",
|
|
695
|
+
"browseProducts": "Przeglądaj produkty",
|
|
696
|
+
"featuredProducts": "Wyróżnione produkty",
|
|
697
|
+
"featuredDescription": "Starannie wybrane produkty specjalnie dla Ciebie",
|
|
698
|
+
"noFeaturedProducts": "Brak wyróżnionych produktów w tym momencie.",
|
|
699
|
+
"browseAllProducts": "Przeglądaj wszystkie produkty",
|
|
700
|
+
"shopByCategory": "Kupuj według kategorii",
|
|
701
|
+
"shopByCategoryDescription": "Znajdź dokładnie to, czego szukasz"
|
|
702
|
+
},
|
|
703
|
+
"emptyState": {
|
|
704
|
+
"cartEmpty": "Twój koszyk jest pusty",
|
|
705
|
+
"cartEmptyDescription": "Dodaj produkty do koszyka, aby rozpocząć.",
|
|
706
|
+
"continueShopping": "Kontynuuj zakupy",
|
|
707
|
+
"noProducts": "Nie znaleziono produktów",
|
|
708
|
+
"noProductsDescription": "Spróbuj zmienić kryteria wyszukiwania lub filtry.",
|
|
709
|
+
"clearFilters": "Wyczyść filtry",
|
|
710
|
+
"noOrders": "Brak zamówień",
|
|
711
|
+
"noOrdersDescription": "Nie masz jeszcze żadnych zamówień. Zacznij zakupy, aby zobaczyć historię zamówień.",
|
|
712
|
+
"startShopping": "Zacznij zakupy",
|
|
713
|
+
"wishlistEmpty": "Twoja lista życzeń jest pusta",
|
|
714
|
+
"wishlistEmptyDescription": "Zapisz ulubione produkty na liście życzeń, aby mieć do nich łatwy dostęp.",
|
|
715
|
+
"browseProducts": "Przeglądaj produkty"
|
|
716
|
+
},
|
|
717
|
+
"paymentMethods": {
|
|
718
|
+
"creditCard": "Karta płatnicza",
|
|
719
|
+
"blik": "BLIK",
|
|
720
|
+
"bankTransfer": "Przelew bankowy",
|
|
721
|
+
"cashOnDelivery": "Płatność przy odbiorze",
|
|
722
|
+
"applePay": "Apple Pay",
|
|
723
|
+
"googlePay": "Google Pay",
|
|
724
|
+
"paypal": "PayPal",
|
|
725
|
+
"other": "Inna metoda płatności",
|
|
726
|
+
"default": "Domyślna"
|
|
727
|
+
},
|
|
728
|
+
"discountBreakdown": {
|
|
729
|
+
"percentage": "{value}% zniżki",
|
|
730
|
+
"percentageDefault": "Rabat procentowy",
|
|
731
|
+
"fixedAmount": "Rabat kwotowy",
|
|
732
|
+
"freeShipping": "Darmowa dostawa",
|
|
733
|
+
"buyXGetY": "Kup X, dostań Y",
|
|
734
|
+
"default": "Rabat",
|
|
735
|
+
"totalSavings": "Łączne oszczędności"
|
|
736
|
+
},
|
|
737
|
+
"giftCardStatus": {
|
|
738
|
+
"active": "Aktywna",
|
|
739
|
+
"used": "Całkowicie wykorzystana",
|
|
740
|
+
"expired": "Wygasła",
|
|
741
|
+
"disabled": "Wyłączona",
|
|
742
|
+
"unknown": "Nieznany",
|
|
743
|
+
"title": "Karta podarunkowa",
|
|
744
|
+
"availableBalance": "Dostępne saldo",
|
|
745
|
+
"usedAmount": "Wykorzystano:",
|
|
746
|
+
"initialAmount": "Początkowe:",
|
|
747
|
+
"expiresSoon": "Wkrótce wygasa: {date}",
|
|
748
|
+
"expiresOn": "Wygasa: {date}",
|
|
749
|
+
"noExpiration": "Bez daty wygaśnięcia",
|
|
750
|
+
"recipientLabel": "Do:"
|
|
751
|
+
},
|
|
752
|
+
"currency": {
|
|
753
|
+
"selectCurrency": "Wybierz walutę",
|
|
754
|
+
"currencyOptions": "Opcje walut",
|
|
755
|
+
"selectTitle": "Wybierz walutę",
|
|
756
|
+
"selectDescription": "Ceny będą wyświetlane w wybranej walucie"
|
|
757
|
+
},
|
|
758
|
+
"tracking": {
|
|
759
|
+
"processing": "Przetwarzanie",
|
|
760
|
+
"shipped": "Wysłano",
|
|
761
|
+
"delivered": "Dostarczono",
|
|
762
|
+
"orderPlaced": "Zamówienie złożone",
|
|
763
|
+
"inTransit": "W drodze",
|
|
764
|
+
"orderConfirmed": "Zamówienie zostało potwierdzone",
|
|
765
|
+
"preparingShipment": "Przygotowywanie paczki do wysyłki",
|
|
766
|
+
"pickedUpByCarrier": "Paczka odebrana przez kuriera",
|
|
767
|
+
"arrivedAtFacility": "Paczka dotarła do sortowni",
|
|
768
|
+
"onTheWay": "Paczka jest w drodze",
|
|
769
|
+
"warehouse": "Magazyn",
|
|
770
|
+
"backToOrderDetails": "Powrót do szczegółów zamówienia",
|
|
771
|
+
"trackOrder": "Śledzenie zamówienia {orderNumber}",
|
|
772
|
+
"followJourney": "Śledź podróż swojej paczki",
|
|
773
|
+
"trackingHistory": "Historia śledzenia",
|
|
774
|
+
"carrierInfo": "Informacje o przewoźniku",
|
|
775
|
+
"carrier": "Przewoźnik:",
|
|
776
|
+
"trackingNumberLabel": "Numer śledzenia:",
|
|
777
|
+
"trackOnCarrierWebsite": "Śledź na stronie przewoźnika"
|
|
778
|
+
},
|
|
779
|
+
"wishlist": {
|
|
780
|
+
"title": "Lista życzeń",
|
|
781
|
+
"home": "Strona główna",
|
|
782
|
+
"empty": "Lista życzeń jest pusta",
|
|
783
|
+
"emptyDescription": "Dodaj produkty do listy życzeń, aby śledzić ich ceny i szybko dodawać do koszyka.",
|
|
784
|
+
"browseProducts": "Przeglądaj produkty",
|
|
785
|
+
"cleared": "Lista życzeń została wyczyszczona",
|
|
786
|
+
"clearList": "Wyczyść",
|
|
787
|
+
"addAllToCart": "Dodaj wszystko do koszyka",
|
|
788
|
+
"addedToCart": "Dodano {count} produktów do koszyka",
|
|
789
|
+
"goodNews": "Dobre wieści!",
|
|
790
|
+
"priceDropped": "{count, plural, one {# produkt obniżył} few {# produkty obniżyły} other {# produktów obniżyło}} cenę!",
|
|
791
|
+
"totalSavings": "Możesz zaoszczędzić łącznie",
|
|
792
|
+
"itemCount": "{count, plural, one {# produkt} few {# produkty} other {# produktów}}"
|
|
793
|
+
},
|
|
794
|
+
"contact": {
|
|
795
|
+
"title": "Kontakt",
|
|
796
|
+
"description": "Masz pytanie? Chętnie Ci pomożemy. Wyślij nam wiadomość, a odpowiemy jak najszybciej.",
|
|
797
|
+
"emailLabel": "Email",
|
|
798
|
+
"phoneLabel": "Telefon",
|
|
799
|
+
"addressLabel": "Adres",
|
|
800
|
+
"formTitle": "Wyślij nam wiadomość",
|
|
801
|
+
"name": "Imię i nazwisko",
|
|
802
|
+
"namePlaceholder": "Twoje imię",
|
|
803
|
+
"email": "Email",
|
|
804
|
+
"emailPlaceholder": "twoj@email.pl",
|
|
805
|
+
"subject": "Temat",
|
|
806
|
+
"subjectPlaceholder": "W czym możemy pomóc?",
|
|
807
|
+
"message": "Wiadomość",
|
|
808
|
+
"messagePlaceholder": "Twoja wiadomość...",
|
|
809
|
+
"send": "Wyślij wiadomość",
|
|
810
|
+
"successMessage": "Dziękujemy! Twoja wiadomość została wysłana."
|
|
811
|
+
},
|
|
812
|
+
"collections": {
|
|
813
|
+
"title": "Kolekcje",
|
|
814
|
+
"description": "Przeglądaj nasze kolekcje produktów",
|
|
815
|
+
"noCollections": "Brak dostępnych kolekcji",
|
|
816
|
+
"notFound": "Nie znaleziono kolekcji",
|
|
817
|
+
"notFoundDescription": "Kolekcja, której szukasz, nie istnieje.",
|
|
818
|
+
"noProducts": "Brak produktów w tej kolekcji"
|
|
819
|
+
},
|
|
820
|
+
"categories": {
|
|
821
|
+
"title": "Kategorie",
|
|
822
|
+
"description": "Przeglądaj produkty według kategorii",
|
|
823
|
+
"noCategories": "Brak dostępnych kategorii"
|
|
824
|
+
},
|
|
825
|
+
"productPage": {
|
|
826
|
+
"title": "Produkt",
|
|
827
|
+
"viewDetails": "Zobacz szczegóły produktu",
|
|
828
|
+
"notFound": "Nie znaleziono produktu",
|
|
829
|
+
"notFoundDescription": "Produkt, którego szukasz, nie istnieje.",
|
|
830
|
+
"youMightAlsoLike": "Może Ci się spodobać"
|
|
831
|
+
},
|
|
832
|
+
"notFound": {
|
|
833
|
+
"title": "404",
|
|
834
|
+
"description": "Strona nie została znaleziona",
|
|
835
|
+
"message": "Przepraszamy, nie mogliśmy znaleźć strony, której szukasz. Mogła zostać przeniesiona lub usunięta.",
|
|
836
|
+
"home": "Strona główna",
|
|
837
|
+
"products": "Produkty",
|
|
838
|
+
"collections": "Kolekcje",
|
|
839
|
+
"needHelp": "Potrzebujesz pomocy?",
|
|
840
|
+
"contactUs": "Skontaktuj się z nami"
|
|
841
|
+
},
|
|
842
|
+
"countries": {
|
|
843
|
+
"PL": "Polska",
|
|
844
|
+
"DE": "Niemcy",
|
|
845
|
+
"CZ": "Czechy",
|
|
846
|
+
"SK": "Słowacja",
|
|
847
|
+
"AT": "Austria",
|
|
848
|
+
"FR": "Francja",
|
|
849
|
+
"NL": "Holandia",
|
|
850
|
+
"BE": "Belgia",
|
|
851
|
+
"IT": "Włochy",
|
|
852
|
+
"ES": "Hiszpania",
|
|
853
|
+
"GB": "Wielka Brytania",
|
|
854
|
+
"US": "Stany Zjednoczone"
|
|
855
|
+
},
|
|
856
|
+
"socialShare": {
|
|
857
|
+
"share": "Udostępnij:",
|
|
858
|
+
"shareOnFacebook": "Udostępnij na Facebooku",
|
|
859
|
+
"shareOnTwitter": "Udostępnij na Twitterze",
|
|
860
|
+
"shareOnLinkedIn": "Udostępnij na LinkedInie",
|
|
861
|
+
"copyLink": "Kopiuj link",
|
|
862
|
+
"shareButton": "Udostępnij"
|
|
863
|
+
},
|
|
864
|
+
"language": {
|
|
865
|
+
"switchLanguage": "Zmień język",
|
|
866
|
+
"pl": "Polski",
|
|
867
|
+
"en": "English"
|
|
868
|
+
}
|
|
869
|
+
}
|