@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": "Loading...",
|
|
4
|
+
"error": "An error occurred",
|
|
5
|
+
"back": "Back",
|
|
6
|
+
"next": "Next",
|
|
7
|
+
"save": "Save",
|
|
8
|
+
"cancel": "Cancel",
|
|
9
|
+
"close": "Close",
|
|
10
|
+
"delete": "Delete",
|
|
11
|
+
"edit": "Edit",
|
|
12
|
+
"apply": "Apply",
|
|
13
|
+
"remove": "Remove",
|
|
14
|
+
"search": "Search",
|
|
15
|
+
"noResults": "No results",
|
|
16
|
+
"backToHome": "Home",
|
|
17
|
+
"viewAll": "View all",
|
|
18
|
+
"showMore": "Show more",
|
|
19
|
+
"showLess": "Show less",
|
|
20
|
+
"optional": "optional",
|
|
21
|
+
"required": "required",
|
|
22
|
+
"yes": "Yes",
|
|
23
|
+
"no": "No",
|
|
24
|
+
"or": "or",
|
|
25
|
+
"saving": "Saving...",
|
|
26
|
+
"securePayment": "Secure payment",
|
|
27
|
+
"encryptedData": "Encrypted data"
|
|
28
|
+
},
|
|
29
|
+
"nav": {
|
|
30
|
+
"home": "Home",
|
|
31
|
+
"products": "Products",
|
|
32
|
+
"allProducts": "All Products",
|
|
33
|
+
"collections": "Collections",
|
|
34
|
+
"categories": "Categories",
|
|
35
|
+
"brands": "Brands",
|
|
36
|
+
"blog": "Blog",
|
|
37
|
+
"cart": "Cart",
|
|
38
|
+
"viewCart": "View Cart",
|
|
39
|
+
"account": "My Account",
|
|
40
|
+
"signIn": "Sign In",
|
|
41
|
+
"signOut": "Sign Out",
|
|
42
|
+
"createAccount": "Create Account",
|
|
43
|
+
"orderHistory": "Order History",
|
|
44
|
+
"wishlist": "Wishlist",
|
|
45
|
+
"search": "Search products...",
|
|
46
|
+
"menu": "Menu",
|
|
47
|
+
"about": "About",
|
|
48
|
+
"contact": "Contact",
|
|
49
|
+
"shipping": "Shipping",
|
|
50
|
+
"returns": "Returns",
|
|
51
|
+
"mainNavigation": "Main navigation",
|
|
52
|
+
"mobileNavigation": "Mobile navigation",
|
|
53
|
+
"toggleMobileMenu": "Toggle mobile menu",
|
|
54
|
+
"closeMobileMenu": "Close mobile menu",
|
|
55
|
+
"toggleSubmenu": "Toggle {label} submenu",
|
|
56
|
+
"searchBreadcrumb": "Search",
|
|
57
|
+
"breadcrumb": "Breadcrumb"
|
|
58
|
+
},
|
|
59
|
+
"cart": {
|
|
60
|
+
"title": "Shopping Cart",
|
|
61
|
+
"empty": "Your cart is empty",
|
|
62
|
+
"emptyDescription": "Add products to your cart to continue shopping.",
|
|
63
|
+
"browseProducts": "Browse products",
|
|
64
|
+
"checkout": "Proceed to checkout",
|
|
65
|
+
"continueShopping": "Continue shopping",
|
|
66
|
+
"subtotal": "Subtotal",
|
|
67
|
+
"total": "Total",
|
|
68
|
+
"quantity": "Quantity",
|
|
69
|
+
"remove": "Remove from cart",
|
|
70
|
+
"update": "Update cart",
|
|
71
|
+
"itemAdded": "Added to cart",
|
|
72
|
+
"itemRemoved": "Removed from cart",
|
|
73
|
+
"itemUpdated": "Cart updated",
|
|
74
|
+
"promoCode": "Promo code",
|
|
75
|
+
"promoCodePlaceholder": "Enter code",
|
|
76
|
+
"applyPromo": "Apply",
|
|
77
|
+
"promoApplied": "Promo code applied",
|
|
78
|
+
"promoRemoved": "Promo code removed",
|
|
79
|
+
"promoError": "Invalid promo code",
|
|
80
|
+
"freeShipping": "Free shipping",
|
|
81
|
+
"shippingCalculated": "Shipping calculated at checkout",
|
|
82
|
+
"shippingTaxNote": "Shipping and taxes calculated at checkout",
|
|
83
|
+
"proceedToCheckout": "Proceed to Checkout",
|
|
84
|
+
"inCart": "in cart",
|
|
85
|
+
"discount": "Discount",
|
|
86
|
+
"tax": "Tax",
|
|
87
|
+
"outOfStock": "Out of stock",
|
|
88
|
+
"limitedStock": "Limited stock",
|
|
89
|
+
"outOfStockWarning": "This item is currently out of stock",
|
|
90
|
+
"giftCardLabel": "Gift Card",
|
|
91
|
+
"each": "each",
|
|
92
|
+
"itemCount": "{count, plural, one {# item} other {# items}}",
|
|
93
|
+
"yourOrder": "Your order",
|
|
94
|
+
"products": "Products",
|
|
95
|
+
"shipping": "Shipping",
|
|
96
|
+
"calculatedNextStep": "Calculated in next step",
|
|
97
|
+
"paymentDue": "Payment due",
|
|
98
|
+
"giftCard": "Gift card",
|
|
99
|
+
"giftCardPlaceholder": "Gift card code",
|
|
100
|
+
"giftCardApplied": "Gift card applied",
|
|
101
|
+
"giftCardRemoved": "Gift card removed",
|
|
102
|
+
"giftCardCodePlaceholder": "Gift card code (e.g., ABCD-EFGH-IJKL-MNOP)",
|
|
103
|
+
"giftCardCheck": "Check",
|
|
104
|
+
"giftCardValid": "Gift card is valid!",
|
|
105
|
+
"giftCardInvalid": "Invalid gift card",
|
|
106
|
+
"giftCardAlreadyApplied": "This gift card is already applied",
|
|
107
|
+
"giftCardValidationFailed": "Failed to validate gift card",
|
|
108
|
+
"giftCardInvalidCode": "Please enter a valid gift card code",
|
|
109
|
+
"appliedGiftCards": "Applied gift cards:",
|
|
110
|
+
"applying": "Applying...",
|
|
111
|
+
"enterPromoCode": "Enter promo code",
|
|
112
|
+
"estimateShipping": "Estimate Shipping",
|
|
113
|
+
"postalCode": "Postal code",
|
|
114
|
+
"calculating": "Calculating...",
|
|
115
|
+
"calculate": "Calculate",
|
|
116
|
+
"availableOptions": "Available shipping options:",
|
|
117
|
+
"estimatedDelivery": "Estimated delivery:",
|
|
118
|
+
"noShippingOptions": "No shipping options available for this location",
|
|
119
|
+
"failedCalculate": "Failed to calculate shipping",
|
|
120
|
+
"enterPostalCode": "Please enter a postal code",
|
|
121
|
+
"selectCountry": "Select country",
|
|
122
|
+
"country": "Country"
|
|
123
|
+
},
|
|
124
|
+
"checkout": {
|
|
125
|
+
"title": "Checkout",
|
|
126
|
+
"haveAccount": "Have an account? Sign in",
|
|
127
|
+
"contact": {
|
|
128
|
+
"title": "Contact Information",
|
|
129
|
+
"description": "We'll send your order confirmation to this email and phone number",
|
|
130
|
+
"email": "Email",
|
|
131
|
+
"emailPlaceholder": "your@email.com",
|
|
132
|
+
"phone": "Phone",
|
|
133
|
+
"phonePlaceholder": "+1 234 567 890",
|
|
134
|
+
"phoneHint": "The courier may need to contact you about delivery",
|
|
135
|
+
"marketing": "I want to receive news about promotions and new products",
|
|
136
|
+
"nextShipping": "Next: Shipping Address",
|
|
137
|
+
"nextPayment": "Next: Payment"
|
|
138
|
+
},
|
|
139
|
+
"giftCard": {
|
|
140
|
+
"recipientTitle": "Gift Card Recipient",
|
|
141
|
+
"recipientDescription": "Optional: enter the details of the gift card recipient",
|
|
142
|
+
"recipientEmail": "Recipient email",
|
|
143
|
+
"recipientEmailPlaceholder": "recipient@email.com",
|
|
144
|
+
"recipientName": "Recipient name",
|
|
145
|
+
"recipientNamePlaceholder": "John",
|
|
146
|
+
"message": "Message",
|
|
147
|
+
"messagePlaceholder": "Happy birthday!",
|
|
148
|
+
"recipientSaveError": "Could not save recipient data for {count} gift cards. You can update it later."
|
|
149
|
+
},
|
|
150
|
+
"shipping": {
|
|
151
|
+
"title": "Shipping Address",
|
|
152
|
+
"description": "Enter the address where you want your order delivered",
|
|
153
|
+
"billingTitle": "Billing Address",
|
|
154
|
+
"sameAsShipping": "Same as shipping address",
|
|
155
|
+
"nextDelivery": "Next: Delivery Method"
|
|
156
|
+
},
|
|
157
|
+
"delivery": {
|
|
158
|
+
"title": "Delivery Method",
|
|
159
|
+
"description": "Choose how you want your order delivered",
|
|
160
|
+
"loading": "Loading delivery methods...",
|
|
161
|
+
"noMethods": "No delivery methods available for this address.",
|
|
162
|
+
"changeAddress": "Change shipping address",
|
|
163
|
+
"selectMethod": "Select delivery method",
|
|
164
|
+
"nextPayment": "Next: Payment",
|
|
165
|
+
"freeShippingQualified": "You qualify for free shipping!",
|
|
166
|
+
"free": "FREE",
|
|
167
|
+
"noMethodsAvailable": "No shipping methods available for this address"
|
|
168
|
+
},
|
|
169
|
+
"payment": {
|
|
170
|
+
"title": "Payment Method",
|
|
171
|
+
"description": "Choose how you want to pay for your order",
|
|
172
|
+
"selectMethod": "Select payment method",
|
|
173
|
+
"unsupportedCurrency": "This payment method does not support {currency}. Please choose another method.",
|
|
174
|
+
"unavailable": "Selected payment method is unavailable. Please choose another method.",
|
|
175
|
+
"nextReview": "Next: Review",
|
|
176
|
+
"noMethods": "No payment methods available. Please contact support.",
|
|
177
|
+
"chooseMethod": "Choose how you'd like to pay for your order.",
|
|
178
|
+
"updating": "Updating payment method...",
|
|
179
|
+
"processing": "Processing...",
|
|
180
|
+
"continueToReview": "Continue to Review",
|
|
181
|
+
"selected": "Selected:"
|
|
182
|
+
},
|
|
183
|
+
"review": {
|
|
184
|
+
"title": "Order Review",
|
|
185
|
+
"description": "Review all details before placing your order",
|
|
186
|
+
"contact": "Contact",
|
|
187
|
+
"shippingAddress": "Shipping Address",
|
|
188
|
+
"shippingMethod": "Shipping Method",
|
|
189
|
+
"paymentMethod": "Payment Method",
|
|
190
|
+
"change": "Change",
|
|
191
|
+
"acceptTerms": "I accept the",
|
|
192
|
+
"termsLink": "terms of service",
|
|
193
|
+
"and": "and",
|
|
194
|
+
"privacyLink": "privacy policy",
|
|
195
|
+
"mustAcceptTerms": "You must accept the terms",
|
|
196
|
+
"placeOrder": "Place Order"
|
|
197
|
+
},
|
|
198
|
+
"steps": {
|
|
199
|
+
"contact": "Contact",
|
|
200
|
+
"shipping": "Address",
|
|
201
|
+
"delivery": "Delivery",
|
|
202
|
+
"payment": "Payment",
|
|
203
|
+
"review": "Review"
|
|
204
|
+
},
|
|
205
|
+
"discount": {
|
|
206
|
+
"codePlaceholder": "Discount code",
|
|
207
|
+
"applied": "Discount code applied",
|
|
208
|
+
"removed": "Discount code removed",
|
|
209
|
+
"error": "Could not apply discount code",
|
|
210
|
+
"enterCode": "Enter discount code",
|
|
211
|
+
"alreadyApplied": "This code is already applied",
|
|
212
|
+
"invalidCode": "Invalid code",
|
|
213
|
+
"validationFailed": "Failed to validate code",
|
|
214
|
+
"savings": "You'll save {savings}",
|
|
215
|
+
"percentOff": "{value}% off",
|
|
216
|
+
"freeShippingDiscount": "Free shipping",
|
|
217
|
+
"codeValid": "Code is valid",
|
|
218
|
+
"minOrderAmount": "Minimum order amount:"
|
|
219
|
+
},
|
|
220
|
+
"errors": {
|
|
221
|
+
"contactProcessing": "Could not process contact information",
|
|
222
|
+
"addressUpdate": "Could not update address",
|
|
223
|
+
"deliverySelect": "Could not select delivery method",
|
|
224
|
+
"checkoutNotFound": "Checkout not found. Please go back and try again.",
|
|
225
|
+
"checkoutComplete": "Could not complete order",
|
|
226
|
+
"paymentUnavailable": "Payment method is unavailable",
|
|
227
|
+
"sessionExpired": "Checkout session expired. Please refresh the page and try again.",
|
|
228
|
+
"outOfStock": "Some products are out of stock. Please check your cart.",
|
|
229
|
+
"unexpected": "An unexpected error occurred. Please contact support.",
|
|
230
|
+
"discountApply": "Could not apply discount code",
|
|
231
|
+
"discountRemove": "Could not remove discount code",
|
|
232
|
+
"giftCardApply": "Could not apply gift card",
|
|
233
|
+
"giftCardRemove": "Could not remove gift card",
|
|
234
|
+
"giftCardNotFound": "Gift card not found with the given code",
|
|
235
|
+
"giftCardExpired": "This gift card has expired",
|
|
236
|
+
"giftCardDisabled": "This gift card is disabled",
|
|
237
|
+
"giftCardDepleted": "This gift card has no remaining balance",
|
|
238
|
+
"giftCardUnusable": "This gift card is already applied"
|
|
239
|
+
},
|
|
240
|
+
"address": {
|
|
241
|
+
"firstName": "First Name",
|
|
242
|
+
"lastName": "Last Name",
|
|
243
|
+
"company": "Company",
|
|
244
|
+
"address1": "Address",
|
|
245
|
+
"address1Placeholder": "Street and number",
|
|
246
|
+
"address2": "Apartment, floor",
|
|
247
|
+
"zip": "Postal Code",
|
|
248
|
+
"zipPlaceholder": "00000",
|
|
249
|
+
"city": "City",
|
|
250
|
+
"country": "Country",
|
|
251
|
+
"countryPlaceholder": "Select country",
|
|
252
|
+
"province": "State/Province",
|
|
253
|
+
"phone": "Phone"
|
|
254
|
+
},
|
|
255
|
+
"validation": {
|
|
256
|
+
"emailRequired": "Please enter a valid email address",
|
|
257
|
+
"phoneRequired": "Phone number is required",
|
|
258
|
+
"phoneInvalid": "Invalid phone number format",
|
|
259
|
+
"firstNameRequired": "First name is required",
|
|
260
|
+
"lastNameRequired": "Last name is required",
|
|
261
|
+
"addressRequired": "Address is required",
|
|
262
|
+
"cityRequired": "City is required",
|
|
263
|
+
"zipRequired": "Postal code is required",
|
|
264
|
+
"provinceRequired": "Province/State is required",
|
|
265
|
+
"countryRequired": "Country is required"
|
|
266
|
+
},
|
|
267
|
+
"tax": {
|
|
268
|
+
"title": "Tax",
|
|
269
|
+
"breakdown": "Tax Breakdown",
|
|
270
|
+
"total": "Total Tax",
|
|
271
|
+
"exempt": "Tax exempt order"
|
|
272
|
+
},
|
|
273
|
+
"success": {
|
|
274
|
+
"thankYou": "Thank you for your order!",
|
|
275
|
+
"pendingPayment": "Order awaiting payment",
|
|
276
|
+
"pendingDescription": "We will start processing your order once payment is received.",
|
|
277
|
+
"confirmedDescription": "Your order has been confirmed and will be shipped soon.",
|
|
278
|
+
"orderConfirmation": "Order Confirmation",
|
|
279
|
+
"orderNumber": "Order number",
|
|
280
|
+
"confirmationEmail": "Confirmation email",
|
|
281
|
+
"emailSent": "We've sent a confirmation with your order details.",
|
|
282
|
+
"tracking": "Shipment tracking",
|
|
283
|
+
"trackingInfo": "You'll receive a tracking number once your package is shipped.",
|
|
284
|
+
"bankTransfer": {
|
|
285
|
+
"title": "Bank transfer details",
|
|
286
|
+
"bankName": "Bank",
|
|
287
|
+
"accountNumber": "Account number",
|
|
288
|
+
"recipient": "Recipient",
|
|
289
|
+
"transferTitle": "Transfer title",
|
|
290
|
+
"orderTitle": "Order {orderId}",
|
|
291
|
+
"processingNote": "Order processing will begin once payment is received (usually 1-2 business days)."
|
|
292
|
+
},
|
|
293
|
+
"copied": "Copied to clipboard",
|
|
294
|
+
"copyFailed": "Failed to copy",
|
|
295
|
+
"whatsNext": "What's next?",
|
|
296
|
+
"stepMakeTransfer": "Make the transfer",
|
|
297
|
+
"stepMakeTransferDesc": "Send your payment to the bank account listed above.",
|
|
298
|
+
"stepPaymentConfirmation": "Payment confirmation",
|
|
299
|
+
"stepPaymentConfirmationDesc": "You'll receive an email confirmation once payment is processed.",
|
|
300
|
+
"stepProcessing": "Order processing",
|
|
301
|
+
"stepProcessingDesc": "We're preparing your order for shipment.",
|
|
302
|
+
"stepShipping": "Shipping",
|
|
303
|
+
"stepShippingDesc": "Once shipped, you'll receive an email with a tracking number.",
|
|
304
|
+
"stepDelivery": "Delivery",
|
|
305
|
+
"stepDeliveryDesc": "Your package will be delivered to the specified address.",
|
|
306
|
+
"continueShopping": "Continue shopping",
|
|
307
|
+
"myOrders": "My orders",
|
|
308
|
+
"needHelp": "Need help?",
|
|
309
|
+
"contactUs": "Contact us"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"errors": {
|
|
313
|
+
"somethingWentWrong": "Something went wrong",
|
|
314
|
+
"serverUnavailable": "Server temporarily unavailable",
|
|
315
|
+
"serverUnavailableDesc": "Could not load the page. The server may be temporarily unavailable. Try refreshing in a moment.",
|
|
316
|
+
"tryAgain": "Try again",
|
|
317
|
+
"goHome": "Go to homepage",
|
|
318
|
+
"couldNotLoadAccount": "We couldn't load your account data. This might be a temporary issue.",
|
|
319
|
+
"unexpectedError": "An unexpected error occurred. Please try refreshing the page."
|
|
320
|
+
},
|
|
321
|
+
"about": {
|
|
322
|
+
"title": "About Us",
|
|
323
|
+
"welcome": "Welcome to our store! We are dedicated to providing you with the best products and exceptional customer service.",
|
|
324
|
+
"ourStory": "Our Story",
|
|
325
|
+
"ourStoryText": "Founded with a passion for quality and customer satisfaction, we've been serving customers worldwide with carefully curated products.",
|
|
326
|
+
"ourMission": "Our Mission",
|
|
327
|
+
"ourMissionText": "To provide high-quality products at competitive prices while delivering an exceptional shopping experience.",
|
|
328
|
+
"contactTitle": "Contact Us",
|
|
329
|
+
"contactText": "Have questions? Feel free to reach out to our customer support team."
|
|
330
|
+
},
|
|
331
|
+
"search": {
|
|
332
|
+
"placeholder": "Search products...",
|
|
333
|
+
"searching": "Searching...",
|
|
334
|
+
"viewAllResults": "View all results for \"{query}\"",
|
|
335
|
+
"noProductsFound": "No products found for \"{query}\"",
|
|
336
|
+
"clearSearch": "Clear search"
|
|
337
|
+
},
|
|
338
|
+
"filters": {
|
|
339
|
+
"title": "Filters",
|
|
340
|
+
"loading": "Loading filters...",
|
|
341
|
+
"clearAll": "Clear all",
|
|
342
|
+
"price": "Price",
|
|
343
|
+
"productCount": "{count, plural, one {# product} other {# products}}"
|
|
344
|
+
},
|
|
345
|
+
"product": {
|
|
346
|
+
"addToCart": "Add to Cart",
|
|
347
|
+
"adding": "Adding...",
|
|
348
|
+
"addedToCart": "Added to Cart",
|
|
349
|
+
"outOfStock": "Out of Stock",
|
|
350
|
+
"inStock": "In Stock",
|
|
351
|
+
"limitedStock": "{count} left",
|
|
352
|
+
"price": "Price",
|
|
353
|
+
"originalPrice": "Regular price",
|
|
354
|
+
"salePrice": "Sale price",
|
|
355
|
+
"description": "Description",
|
|
356
|
+
"details": "Details",
|
|
357
|
+
"reviews": "Reviews",
|
|
358
|
+
"relatedProducts": "Related Products",
|
|
359
|
+
"quantity": "Quantity",
|
|
360
|
+
"selectVariant": "Select variant",
|
|
361
|
+
"sku": "SKU",
|
|
362
|
+
"vendor": "Vendor",
|
|
363
|
+
"tags": "Tags",
|
|
364
|
+
"share": "Share",
|
|
365
|
+
"addToWishlist": "Add to wishlist",
|
|
366
|
+
"removeFromWishlist": "Remove from wishlist",
|
|
367
|
+
"filters": "Filters",
|
|
368
|
+
"sort": "Sort",
|
|
369
|
+
"sortOptions": {
|
|
370
|
+
"relevance": "Relevance",
|
|
371
|
+
"bestSelling": "Best Selling",
|
|
372
|
+
"priceLowToHigh": "Price: Low to High",
|
|
373
|
+
"priceHighToLow": "Price: High to Low",
|
|
374
|
+
"titleAsc": "Name: A-Z",
|
|
375
|
+
"titleDesc": "Name: Z-A",
|
|
376
|
+
"newestFirst": "Newest First",
|
|
377
|
+
"oldestFirst": "Oldest First"
|
|
378
|
+
},
|
|
379
|
+
"noProducts": "No products found",
|
|
380
|
+
"loadMore": "Load more",
|
|
381
|
+
"showingCount": "Showing {count} of {total} products",
|
|
382
|
+
"allProducts": "All Products",
|
|
383
|
+
"browseCollection": "Browse our complete collection of products",
|
|
384
|
+
"clearAllFilters": "Clear all filters",
|
|
385
|
+
"sortBy": "Sort by",
|
|
386
|
+
"firstPage": "First Page",
|
|
387
|
+
"showingProducts": "Showing {count} products",
|
|
388
|
+
"noProductsMatch": "No products match your filters",
|
|
389
|
+
"failedLoadProducts": "Failed to load products. Please try again.",
|
|
390
|
+
"noProductsInCategory": "No products in this category",
|
|
391
|
+
"category": "Category",
|
|
392
|
+
"priceRange": "Price range",
|
|
393
|
+
"minPrice": "Minimum price",
|
|
394
|
+
"maxPrice": "Maximum price",
|
|
395
|
+
"giftCardLabel": "Gift Card",
|
|
396
|
+
"badgeNew": "NEW",
|
|
397
|
+
"badgeSale": "SALE",
|
|
398
|
+
"currentlyUnavailable": "Currently unavailable",
|
|
399
|
+
"removedFromWishlist": "Removed from wishlist",
|
|
400
|
+
"addedToWishlist": "Added to wishlist",
|
|
401
|
+
"inWishlist": "In wishlist",
|
|
402
|
+
"review": {
|
|
403
|
+
"addReview": "Add Review",
|
|
404
|
+
"shareOpinion": "Share your opinion about: {productTitle}",
|
|
405
|
+
"rating": "Rating",
|
|
406
|
+
"selectRating": "Select rating",
|
|
407
|
+
"writeReview": "Write your review",
|
|
408
|
+
"enterName": "Enter your name",
|
|
409
|
+
"thankYou": "Thank you for your review!",
|
|
410
|
+
"failed": "Failed to submit review. Please try again.",
|
|
411
|
+
"ratingLabels": {
|
|
412
|
+
"1": "Very Poor",
|
|
413
|
+
"2": "Poor",
|
|
414
|
+
"3": "Average",
|
|
415
|
+
"4": "Good",
|
|
416
|
+
"5": "Excellent"
|
|
417
|
+
},
|
|
418
|
+
"title": "Review Title",
|
|
419
|
+
"titlePlaceholder": "Brief summary...",
|
|
420
|
+
"content": "Review Content",
|
|
421
|
+
"contentPlaceholder": "Describe your experience with the product...",
|
|
422
|
+
"pros": "Pros",
|
|
423
|
+
"addPro": "Add a pro...",
|
|
424
|
+
"cons": "Cons",
|
|
425
|
+
"addCon": "Add a con...",
|
|
426
|
+
"yourName": "Your Name",
|
|
427
|
+
"emailOptional": "Email (optional)",
|
|
428
|
+
"emailPlaceholder": "john@email.com",
|
|
429
|
+
"emailNotPublic": "Will not be shown publicly",
|
|
430
|
+
"submitting": "Submitting..."
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"auth": {
|
|
434
|
+
"signIn": "Sign In",
|
|
435
|
+
"signUp": "Sign Up",
|
|
436
|
+
"signOut": "Sign Out",
|
|
437
|
+
"signingIn": "Signing in...",
|
|
438
|
+
"creatingAccount": "Creating account...",
|
|
439
|
+
"signingOut": "Signing out...",
|
|
440
|
+
"email": "Email",
|
|
441
|
+
"password": "Password",
|
|
442
|
+
"confirmPassword": "Confirm Password",
|
|
443
|
+
"firstName": "First Name",
|
|
444
|
+
"lastName": "Last Name",
|
|
445
|
+
"forgotPassword": "Forgot password?",
|
|
446
|
+
"resetPassword": "Reset Password",
|
|
447
|
+
"noAccount": "Don't have an account?",
|
|
448
|
+
"hasAccount": "Already have an account?",
|
|
449
|
+
"createAccount": "Create Account",
|
|
450
|
+
"loginSuccess": "Signed in successfully",
|
|
451
|
+
"loginError": "Invalid email or password",
|
|
452
|
+
"loginFailed": "Login failed",
|
|
453
|
+
"registerSuccess": "Account created successfully. Please sign in with your credentials.",
|
|
454
|
+
"registerError": "Could not create account",
|
|
455
|
+
"registerFailed": "Registration failed. Please try again.",
|
|
456
|
+
"logoutSuccess": "Signed out successfully",
|
|
457
|
+
"unexpectedError": "An unexpected error occurred. Please try again.",
|
|
458
|
+
"passwordRequirements": "Min. 8 characters, uppercase, lowercase, and number",
|
|
459
|
+
"signInTitle": "Sign In",
|
|
460
|
+
"signInDescription": "Sign in to your account to continue",
|
|
461
|
+
"signUpTitle": "Sign Up",
|
|
462
|
+
"signUpDescription": "Create an account to start shopping",
|
|
463
|
+
"forgotPasswordTitle": "Forgot Password?",
|
|
464
|
+
"forgotPasswordDescription": "Enter your email and we'll send you a reset link",
|
|
465
|
+
"sendResetLink": "Send reset link",
|
|
466
|
+
"sending": "Sending...",
|
|
467
|
+
"sendResetInstructions": "Send Reset Instructions",
|
|
468
|
+
"resetLinkSent": "Password reset link has been sent",
|
|
469
|
+
"checkYourEmail": "Check Your Email",
|
|
470
|
+
"resetEmailSent": "We've sent password reset instructions to {email}",
|
|
471
|
+
"didntReceiveEmail": "Didn't receive the email? Check your spam folder or try again.",
|
|
472
|
+
"tryAnotherEmail": "Try Another Email",
|
|
473
|
+
"resetPasswordTitle": "Reset Password",
|
|
474
|
+
"resetPasswordDescription": "Enter your email address and we'll send you instructions to reset your password.",
|
|
475
|
+
"backToSignIn": "Back to sign in",
|
|
476
|
+
"validation": {
|
|
477
|
+
"emailInvalid": "Please enter a valid email address",
|
|
478
|
+
"passwordMinLength": "Password must be at least 8 characters",
|
|
479
|
+
"passwordRequirements": "Password must contain uppercase, lowercase, and a number",
|
|
480
|
+
"firstNameMinLength": "First name must be at least 2 characters",
|
|
481
|
+
"firstNameMaxLength": "First name must be less than 50 characters",
|
|
482
|
+
"lastNameMinLength": "Last name must be at least 2 characters",
|
|
483
|
+
"lastNameMaxLength": "Last name must be less than 50 characters"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"account": {
|
|
487
|
+
"title": "My Account",
|
|
488
|
+
"orders": "Orders",
|
|
489
|
+
"addresses": "Addresses",
|
|
490
|
+
"settings": "Settings",
|
|
491
|
+
"loyalty": "Loyalty Program",
|
|
492
|
+
"noOrders": "You don't have any orders yet",
|
|
493
|
+
"startShoppingDescription": "Start shopping to see your orders here",
|
|
494
|
+
"browseProducts": "Browse Products",
|
|
495
|
+
"orderNumber": "Order #{number}",
|
|
496
|
+
"orderDate": "Order date",
|
|
497
|
+
"orderStatus": "Status",
|
|
498
|
+
"orderTotal": "Total",
|
|
499
|
+
"viewOrder": "View details",
|
|
500
|
+
"trackShipment": "Track shipment",
|
|
501
|
+
"placedOn": "Placed on",
|
|
502
|
+
"itemCount": "{count, plural, one {# item} other {# items}}",
|
|
503
|
+
"addAddress": "Add address",
|
|
504
|
+
"editAddress": "Edit address",
|
|
505
|
+
"deleteAddress": "Delete address",
|
|
506
|
+
"defaultAddress": "Default address",
|
|
507
|
+
"setAsDefault": "Set as default",
|
|
508
|
+
"noAddresses": "You don't have any addresses yet",
|
|
509
|
+
"personalInfo": "Personal Information",
|
|
510
|
+
"changePassword": "Change Password",
|
|
511
|
+
"preferences": "Preferences",
|
|
512
|
+
"savedSuccessfully": "Saved successfully",
|
|
513
|
+
"manageAddresses": "Manage your shipping and billing addresses",
|
|
514
|
+
"deleteConfirm": "Are you sure you want to delete this address?",
|
|
515
|
+
"signInToManage": "<link>Sign in</link> to manage your addresses.",
|
|
516
|
+
"signInToView": "<link>Sign in</link> to view your orders.",
|
|
517
|
+
"addNewAddress": "Add New Address",
|
|
518
|
+
"failedDelete": "Failed to delete address",
|
|
519
|
+
"failedSetDefault": "Failed to set default address",
|
|
520
|
+
"failedCreate": "Failed to create address",
|
|
521
|
+
"failedUpdate": "Failed to update address",
|
|
522
|
+
"backToAccount": "Back to account",
|
|
523
|
+
"viewTrackOrders": "View and track your orders",
|
|
524
|
+
"failedLoadOrders": "Failed to load orders",
|
|
525
|
+
"failedLoadOrder": "Failed to load order",
|
|
526
|
+
"tryAgainLater": "Something went wrong. Please try again later.",
|
|
527
|
+
"backToOrders": "Back to Orders",
|
|
528
|
+
"orderNotFound": "Order not found",
|
|
529
|
+
"trackingNumber": "Tracking Number",
|
|
530
|
+
"estimatedDelivery": "Estimated Delivery",
|
|
531
|
+
"orderItems": "Order Items",
|
|
532
|
+
"subtotal": "Subtotal",
|
|
533
|
+
"shippingLabel": "Shipping",
|
|
534
|
+
"taxLabel": "Tax",
|
|
535
|
+
"shippingAddress": "Shipping Address",
|
|
536
|
+
"billingAddress": "Billing Address",
|
|
537
|
+
"taxExempt": "Tax exempt order",
|
|
538
|
+
"noAddressesSaved": "No addresses saved",
|
|
539
|
+
"addAddressDescription": "Add an address to make checkout faster",
|
|
540
|
+
"addFirstAddress": "Add Your First Address",
|
|
541
|
+
"defaultBadge": "Default",
|
|
542
|
+
"deleteAddressConfirm": "Are you sure you want to delete the address at {address}?",
|
|
543
|
+
"orderStatuses": {
|
|
544
|
+
"delivered": "Delivered",
|
|
545
|
+
"fulfilled": "Fulfilled",
|
|
546
|
+
"shipped": "Shipped",
|
|
547
|
+
"partiallyFulfilled": "Partially Fulfilled",
|
|
548
|
+
"processing": "Processing",
|
|
549
|
+
"returned": "Returned",
|
|
550
|
+
"pending": "Pending",
|
|
551
|
+
"cancelled": "Cancelled"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"footer": {
|
|
555
|
+
"description": "Quality products at affordable prices.",
|
|
556
|
+
"shop": "Shop",
|
|
557
|
+
"allProducts": "All Products",
|
|
558
|
+
"collections": "Collections",
|
|
559
|
+
"categories": "Categories",
|
|
560
|
+
"customerService": "Customer Service",
|
|
561
|
+
"company": "Company",
|
|
562
|
+
"followUs": "Follow Us",
|
|
563
|
+
"newsletter": "Newsletter",
|
|
564
|
+
"newsletterDescription": "Subscribe to receive news about promotions and new products.",
|
|
565
|
+
"emailPlaceholder": "Your email",
|
|
566
|
+
"subscribe": "Subscribe",
|
|
567
|
+
"subscribeSuccess": "Thank you for subscribing!",
|
|
568
|
+
"allRightsReserved": "All rights reserved",
|
|
569
|
+
"privacyPolicy": "Privacy Policy",
|
|
570
|
+
"termsOfService": "Terms of Service",
|
|
571
|
+
"cookiePolicy": "Cookie Policy",
|
|
572
|
+
"aboutUs": "About Us",
|
|
573
|
+
"careers": "Careers",
|
|
574
|
+
"faq": "FAQ",
|
|
575
|
+
"helpCenter": "Help Center",
|
|
576
|
+
"contactUs": "Contact Us",
|
|
577
|
+
"support": "Support",
|
|
578
|
+
"signIn": "Sign In",
|
|
579
|
+
"createAccount": "Create Account",
|
|
580
|
+
"myAccount": "My Account",
|
|
581
|
+
"orderHistory": "Order History",
|
|
582
|
+
"shoppingCart": "Shopping Cart",
|
|
583
|
+
"shippingInfo": "Shipping Info",
|
|
584
|
+
"returnsRefunds": "Returns & Refunds",
|
|
585
|
+
"poweredBy": "Powered by DoSwiftly Commerce",
|
|
586
|
+
"stayInLoop": "Stay in the Loop",
|
|
587
|
+
"newsletterLongDescription": "Subscribe to our newsletter for exclusive offers, new arrivals, and insider news.",
|
|
588
|
+
"thanksForSubscribing": "Thanks for subscribing! Check your email for confirmation.",
|
|
589
|
+
"subscribing": "Subscribing...",
|
|
590
|
+
"failedSubscribe": "Failed to subscribe. Please try again.",
|
|
591
|
+
"privacyConsent": "By subscribing, you agree to our Privacy Policy and consent to receive updates.",
|
|
592
|
+
"invalidEmail": "Please enter a valid email address"
|
|
593
|
+
},
|
|
594
|
+
"returns": {
|
|
595
|
+
"title": "Return Request for Order #{orderNumber}",
|
|
596
|
+
"selectItems": "1. Select Items to Return",
|
|
597
|
+
"noReturnableItems": "No Returnable Items",
|
|
598
|
+
"noReturnableItemsDesc": "There are no items eligible for return in this order.",
|
|
599
|
+
"ordered": "Ordered:",
|
|
600
|
+
"returnable": "Returnable:",
|
|
601
|
+
"quantityToReturn": "Quantity to Return",
|
|
602
|
+
"itemCondition": "Item Condition",
|
|
603
|
+
"selectCondition": "Select condition",
|
|
604
|
+
"conditionNew": "New (unused, in original packaging)",
|
|
605
|
+
"conditionOpened": "Opened (packaging opened but unused)",
|
|
606
|
+
"conditionUsed": "Used",
|
|
607
|
+
"conditionDamaged": "Damaged",
|
|
608
|
+
"itemsSelected": "item(s) selected",
|
|
609
|
+
"returnReason": "2. Reason for Return",
|
|
610
|
+
"primaryReason": "Primary Reason",
|
|
611
|
+
"selectReason": "Select a reason",
|
|
612
|
+
"reasonDefective": "Defective Product",
|
|
613
|
+
"reasonDefectiveDesc": "The product has a defect or manufacturing flaw",
|
|
614
|
+
"reasonNotAsDescribed": "Not as Described",
|
|
615
|
+
"reasonNotAsDescribedDesc": "The product looks or works differently than described",
|
|
616
|
+
"reasonWrongItem": "Wrong Item Received",
|
|
617
|
+
"reasonWrongItemDesc": "Received a different item than ordered",
|
|
618
|
+
"reasonChangedMind": "Changed My Mind",
|
|
619
|
+
"reasonChangedMindDesc": "I no longer need this product",
|
|
620
|
+
"reasonBetterPrice": "Found Better Price",
|
|
621
|
+
"reasonBetterPriceDesc": "Found the product cheaper elsewhere",
|
|
622
|
+
"reasonDamagedShipping": "Damaged in Shipping",
|
|
623
|
+
"reasonDamagedShippingDesc": "The product was damaged during shipping",
|
|
624
|
+
"reasonOther": "Other",
|
|
625
|
+
"reasonOtherDesc": "Reason not listed above",
|
|
626
|
+
"additionalDetails": "Additional Details (Optional)",
|
|
627
|
+
"additionalDetailsPlaceholder": "Please provide any additional details about your return...",
|
|
628
|
+
"additionalDetailsHint": "Help us process your return faster by providing details.",
|
|
629
|
+
"compensationPreference": "3. Compensation Preference",
|
|
630
|
+
"refundOriginal": "Refund to Original Payment",
|
|
631
|
+
"refundOriginalDesc": "Refund will be processed to your original payment method",
|
|
632
|
+
"storeCredit": "Store Credit",
|
|
633
|
+
"storeCreditDesc": "Receive store credit for future purchases",
|
|
634
|
+
"submitReturn": "Submit Return Request",
|
|
635
|
+
"submitted": "Return Request Submitted",
|
|
636
|
+
"submittedDesc": "Your return request has been submitted successfully. You will receive an email with further instructions.",
|
|
637
|
+
"backToOrder": "Back to Order",
|
|
638
|
+
"selectAtLeastOne": "Please select at least one item to return",
|
|
639
|
+
"error": "Error"
|
|
640
|
+
},
|
|
641
|
+
"loyalty": {
|
|
642
|
+
"page": {
|
|
643
|
+
"signInToView": "Sign in to see your points and rewards.",
|
|
644
|
+
"loadFailed": "Failed to load loyalty program data. Please try again later.",
|
|
645
|
+
"unavailable": "The loyalty program is currently unavailable. Please check back later.",
|
|
646
|
+
"joinTitle": "Join the Loyalty Program",
|
|
647
|
+
"joinDescription": "Earn points for purchases and redeem them for rewards! Enrollment is automatic with your first purchase.",
|
|
648
|
+
"collectAndRedeem": "Collect {pointsName} and redeem them for rewards",
|
|
649
|
+
"tabOverview": "Overview",
|
|
650
|
+
"tabRewards": "Rewards",
|
|
651
|
+
"tabHistory": "History",
|
|
652
|
+
"tabReferrals": "Referrals",
|
|
653
|
+
"tierBenefits": "Your benefits at {tierName} tier",
|
|
654
|
+
"pointsMultiplier": "Points multiplier",
|
|
655
|
+
"browseRewards": "Browse rewards",
|
|
656
|
+
"viewHistory": "View history",
|
|
657
|
+
"referFriend": "Refer a friend",
|
|
658
|
+
"referFriendDescription": "Invite friends and earn {points} {pointsName} for each referral",
|
|
659
|
+
"availableRewards": "Available Rewards",
|
|
660
|
+
"redeemDescription": "Redeem your {pointsName} for exciting rewards",
|
|
661
|
+
"pointsHistory": "Points History",
|
|
662
|
+
"historyDescription": "Overview of all points transactions",
|
|
663
|
+
"redeemFailed": "Failed to redeem reward"
|
|
664
|
+
},
|
|
665
|
+
"referral": {
|
|
666
|
+
"yourCode": "Your Referral Code",
|
|
667
|
+
"shareDescription": "Share this code with friends. You both earn points for each referral!",
|
|
668
|
+
"copied": "Copied!",
|
|
669
|
+
"codeCopied": "Code copied!",
|
|
670
|
+
"linkCopied": "Link copied!",
|
|
671
|
+
"copyFailed": "Failed to copy",
|
|
672
|
+
"shareFriends": "Share with friends",
|
|
673
|
+
"shareText": "Join the loyalty program! Sign up using my code {code} and get a welcome bonus.",
|
|
674
|
+
"shareFailed": "Failed to share",
|
|
675
|
+
"howItWorks": "How it works?",
|
|
676
|
+
"step1Title": "1. Share your code",
|
|
677
|
+
"step1Desc": "Share your code or link with friends.",
|
|
678
|
+
"step2Title": "2. Friend signs up",
|
|
679
|
+
"step2Desc": "Your friend uses your code during registration.",
|
|
680
|
+
"step3Title": "3. You both earn",
|
|
681
|
+
"step3Desc": "You receive {points} {name}, and your friend gets a welcome bonus.",
|
|
682
|
+
"yourStats": "Your Referral Stats",
|
|
683
|
+
"invited": "Invited",
|
|
684
|
+
"completed": "Completed",
|
|
685
|
+
"pending": "Pending",
|
|
686
|
+
"earned": "Earned {name}",
|
|
687
|
+
"pendingReferrals": "You have {count} pending referrals. Points will be awarded after the referred person's first purchase."
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"home": {
|
|
691
|
+
"metaDescription": "Discover our curated collection of quality products at affordable prices.",
|
|
692
|
+
"welcomeTo": "Welcome to <highlight>{storeName}</highlight>",
|
|
693
|
+
"heroDescription": "Discover our curated collection of quality products. Shop with confidence and enjoy exceptional service.",
|
|
694
|
+
"shopNow": "Shop Now",
|
|
695
|
+
"browseProducts": "Browse Products",
|
|
696
|
+
"featuredProducts": "Featured Products",
|
|
697
|
+
"featuredDescription": "Handpicked favorites just for you",
|
|
698
|
+
"noFeaturedProducts": "No featured products available at the moment.",
|
|
699
|
+
"browseAllProducts": "Browse All Products",
|
|
700
|
+
"shopByCategory": "Shop by Category",
|
|
701
|
+
"shopByCategoryDescription": "Find exactly what you're looking for"
|
|
702
|
+
},
|
|
703
|
+
"emptyState": {
|
|
704
|
+
"cartEmpty": "Your cart is empty",
|
|
705
|
+
"cartEmptyDescription": "Add some products to your cart to get started.",
|
|
706
|
+
"continueShopping": "Continue Shopping",
|
|
707
|
+
"noProducts": "No products found",
|
|
708
|
+
"noProductsDescription": "Try adjusting your search or filter criteria to find what you're looking for.",
|
|
709
|
+
"clearFilters": "Clear Filters",
|
|
710
|
+
"noOrders": "No orders yet",
|
|
711
|
+
"noOrdersDescription": "You haven't placed any orders yet. Start shopping to see your order history here.",
|
|
712
|
+
"startShopping": "Start Shopping",
|
|
713
|
+
"wishlistEmpty": "Your wishlist is empty",
|
|
714
|
+
"wishlistEmptyDescription": "Save your favorite products to your wishlist for easy access later.",
|
|
715
|
+
"browseProducts": "Browse Products"
|
|
716
|
+
},
|
|
717
|
+
"paymentMethods": {
|
|
718
|
+
"creditCard": "Credit Card",
|
|
719
|
+
"blik": "BLIK",
|
|
720
|
+
"bankTransfer": "Bank Transfer",
|
|
721
|
+
"cashOnDelivery": "Cash on Delivery",
|
|
722
|
+
"applePay": "Apple Pay",
|
|
723
|
+
"googlePay": "Google Pay",
|
|
724
|
+
"paypal": "PayPal",
|
|
725
|
+
"other": "Other Payment Method",
|
|
726
|
+
"default": "Default"
|
|
727
|
+
},
|
|
728
|
+
"discountBreakdown": {
|
|
729
|
+
"percentage": "{value}% off",
|
|
730
|
+
"percentageDefault": "Percentage discount",
|
|
731
|
+
"fixedAmount": "Fixed amount discount",
|
|
732
|
+
"freeShipping": "Free shipping",
|
|
733
|
+
"buyXGetY": "Buy X, Get Y",
|
|
734
|
+
"default": "Discount",
|
|
735
|
+
"totalSavings": "Total savings"
|
|
736
|
+
},
|
|
737
|
+
"giftCardStatus": {
|
|
738
|
+
"active": "Active",
|
|
739
|
+
"used": "Fully Redeemed",
|
|
740
|
+
"expired": "Expired",
|
|
741
|
+
"disabled": "Disabled",
|
|
742
|
+
"unknown": "Unknown",
|
|
743
|
+
"title": "Gift Card",
|
|
744
|
+
"availableBalance": "Available Balance",
|
|
745
|
+
"usedAmount": "Used:",
|
|
746
|
+
"initialAmount": "Initial:",
|
|
747
|
+
"expiresSoon": "Expires soon: {date}",
|
|
748
|
+
"expiresOn": "Expires: {date}",
|
|
749
|
+
"noExpiration": "No expiration date",
|
|
750
|
+
"recipientLabel": "To:"
|
|
751
|
+
},
|
|
752
|
+
"currency": {
|
|
753
|
+
"selectCurrency": "Select currency",
|
|
754
|
+
"currencyOptions": "Currency options",
|
|
755
|
+
"selectTitle": "Select Currency",
|
|
756
|
+
"selectDescription": "Prices will be displayed in your selected currency"
|
|
757
|
+
},
|
|
758
|
+
"tracking": {
|
|
759
|
+
"processing": "Processing",
|
|
760
|
+
"shipped": "Shipped",
|
|
761
|
+
"delivered": "Delivered",
|
|
762
|
+
"orderPlaced": "Order Placed",
|
|
763
|
+
"inTransit": "In Transit",
|
|
764
|
+
"orderConfirmed": "Order has been confirmed",
|
|
765
|
+
"preparingShipment": "Package is being prepared for shipment",
|
|
766
|
+
"pickedUpByCarrier": "Package has been picked up by carrier",
|
|
767
|
+
"arrivedAtFacility": "Package arrived at sorting facility",
|
|
768
|
+
"onTheWay": "Package is on the way to the destination",
|
|
769
|
+
"warehouse": "Warehouse",
|
|
770
|
+
"backToOrderDetails": "Back to Order Details",
|
|
771
|
+
"trackOrder": "Track Order {orderNumber}",
|
|
772
|
+
"followJourney": "Follow your package's journey",
|
|
773
|
+
"trackingHistory": "Tracking History",
|
|
774
|
+
"carrierInfo": "Carrier Information",
|
|
775
|
+
"carrier": "Carrier:",
|
|
776
|
+
"trackingNumberLabel": "Tracking Number:",
|
|
777
|
+
"trackOnCarrierWebsite": "Track on Carrier Website"
|
|
778
|
+
},
|
|
779
|
+
"wishlist": {
|
|
780
|
+
"title": "Wishlist",
|
|
781
|
+
"home": "Home",
|
|
782
|
+
"empty": "Your wishlist is empty",
|
|
783
|
+
"emptyDescription": "Add products to your wishlist to track prices and quickly add to cart.",
|
|
784
|
+
"browseProducts": "Browse products",
|
|
785
|
+
"cleared": "Wishlist has been cleared",
|
|
786
|
+
"clearList": "Clear",
|
|
787
|
+
"addAllToCart": "Add all to cart",
|
|
788
|
+
"addedToCart": "Added {count} products to cart",
|
|
789
|
+
"goodNews": "Good news!",
|
|
790
|
+
"priceDropped": "{count, plural, one {# product has dropped} other {# products have dropped}} in price!",
|
|
791
|
+
"totalSavings": "You can save a total of",
|
|
792
|
+
"itemCount": "{count, plural, one {# product} other {# products}}"
|
|
793
|
+
},
|
|
794
|
+
"contact": {
|
|
795
|
+
"title": "Contact Us",
|
|
796
|
+
"description": "Have a question? We'd love to hear from you. Send us a message and we'll respond as soon as possible.",
|
|
797
|
+
"emailLabel": "Email",
|
|
798
|
+
"phoneLabel": "Phone",
|
|
799
|
+
"addressLabel": "Address",
|
|
800
|
+
"formTitle": "Send us a message",
|
|
801
|
+
"name": "Name",
|
|
802
|
+
"namePlaceholder": "Your name",
|
|
803
|
+
"email": "Email",
|
|
804
|
+
"emailPlaceholder": "your@email.com",
|
|
805
|
+
"subject": "Subject",
|
|
806
|
+
"subjectPlaceholder": "How can we help?",
|
|
807
|
+
"message": "Message",
|
|
808
|
+
"messagePlaceholder": "Your message...",
|
|
809
|
+
"send": "Send Message",
|
|
810
|
+
"successMessage": "Thank you! Your message has been sent."
|
|
811
|
+
},
|
|
812
|
+
"collections": {
|
|
813
|
+
"title": "Collections",
|
|
814
|
+
"description": "Browse our curated collections of products",
|
|
815
|
+
"noCollections": "No collections available yet",
|
|
816
|
+
"notFound": "Collection Not Found",
|
|
817
|
+
"notFoundDescription": "The collection you're looking for doesn't exist.",
|
|
818
|
+
"noProducts": "No products in this collection"
|
|
819
|
+
},
|
|
820
|
+
"categories": {
|
|
821
|
+
"title": "Categories",
|
|
822
|
+
"description": "Browse products by category",
|
|
823
|
+
"noCategories": "No categories available yet"
|
|
824
|
+
},
|
|
825
|
+
"productPage": {
|
|
826
|
+
"title": "Product",
|
|
827
|
+
"viewDetails": "View product details",
|
|
828
|
+
"notFound": "Product Not Found",
|
|
829
|
+
"notFoundDescription": "The product you're looking for doesn't exist.",
|
|
830
|
+
"youMightAlsoLike": "You might also like"
|
|
831
|
+
},
|
|
832
|
+
"notFound": {
|
|
833
|
+
"title": "404",
|
|
834
|
+
"description": "Page Not Found",
|
|
835
|
+
"message": "Sorry, we couldn't find the page you're looking for. It may have been moved or deleted.",
|
|
836
|
+
"home": "Home",
|
|
837
|
+
"products": "Products",
|
|
838
|
+
"collections": "Collections",
|
|
839
|
+
"needHelp": "Need help?",
|
|
840
|
+
"contactUs": "Contact us"
|
|
841
|
+
},
|
|
842
|
+
"countries": {
|
|
843
|
+
"PL": "Poland",
|
|
844
|
+
"DE": "Germany",
|
|
845
|
+
"CZ": "Czech Republic",
|
|
846
|
+
"SK": "Slovakia",
|
|
847
|
+
"AT": "Austria",
|
|
848
|
+
"FR": "France",
|
|
849
|
+
"NL": "Netherlands",
|
|
850
|
+
"BE": "Belgium",
|
|
851
|
+
"IT": "Italy",
|
|
852
|
+
"ES": "Spain",
|
|
853
|
+
"GB": "United Kingdom",
|
|
854
|
+
"US": "United States"
|
|
855
|
+
},
|
|
856
|
+
"socialShare": {
|
|
857
|
+
"share": "Share:",
|
|
858
|
+
"shareOnFacebook": "Share on Facebook",
|
|
859
|
+
"shareOnTwitter": "Share on Twitter",
|
|
860
|
+
"shareOnLinkedIn": "Share on LinkedIn",
|
|
861
|
+
"copyLink": "Copy link",
|
|
862
|
+
"shareButton": "Share"
|
|
863
|
+
},
|
|
864
|
+
"language": {
|
|
865
|
+
"switchLanguage": "Change language",
|
|
866
|
+
"pl": "Polski",
|
|
867
|
+
"en": "English"
|
|
868
|
+
}
|
|
869
|
+
}
|