@mframework/layer-shared 0.0.1
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 +2 -0
- package/dist/api/global-search.d.ts +8 -0
- package/dist/api/global-search.js +1 -0
- package/dist/app/components/Gallery/__tests__/Gallery.spec.d.ts +1 -0
- package/dist/app/components/Gallery/__tests__/Gallery.spec.js +12 -0
- package/dist/app/components/Heading/__tests__/Heading.spec.d.ts +1 -0
- package/dist/app/components/Heading/__tests__/Heading.spec.js +12 -0
- package/dist/app/components/Heading/types.d.ts +5 -0
- package/dist/app/components/Heading/types.js +1 -0
- package/dist/app/components/ui/AccordionItem/__tests__/AccordionItem.spec.d.ts +1 -0
- package/dist/app/components/ui/AccordionItem/__tests__/AccordionItem.spec.js +12 -0
- package/dist/app/components/ui/AccordionItem/types.d.ts +5 -0
- package/dist/app/components/ui/AccordionItem/types.js +1 -0
- package/dist/app/components/ui/Alert/types.d.ts +5 -0
- package/dist/app/components/ui/Alert/types.js +1 -0
- package/dist/app/components/ui/Breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +1 -0
- package/dist/app/components/ui/Breadcrumbs/__tests__/Breadcrumbs.spec.js +12 -0
- package/dist/app/components/ui/Breadcrumbs/types.d.ts +7 -0
- package/dist/app/components/ui/Breadcrumbs/types.js +1 -0
- package/dist/app/components/ui/CartProductCard/types.d.ts +17 -0
- package/dist/app/components/ui/CartProductCard/types.js +1 -0
- package/dist/app/components/ui/CategoryCard/types.d.ts +8 -0
- package/dist/app/components/ui/CategoryCard/types.js +1 -0
- package/dist/app/components/ui/Display/types.d.ts +12 -0
- package/dist/app/components/ui/Display/types.js +1 -0
- package/dist/app/components/ui/Divider/__tests__/Divider.spec.d.ts +1 -0
- package/dist/app/components/ui/Divider/__tests__/Divider.spec.js +8 -0
- package/dist/app/components/ui/Form/__tests__/FormHelperText.spec.d.ts +1 -0
- package/dist/app/components/ui/Form/__tests__/FormHelperText.spec.js +8 -0
- package/dist/app/components/ui/Form/__tests__/FormLabel.spec.d.ts +1 -0
- package/dist/app/components/ui/Form/__tests__/FormLabel.spec.js +8 -0
- package/dist/app/components/ui/Hero/types.d.ts +10 -0
- package/dist/app/components/ui/Hero/types.js +1 -0
- package/dist/app/components/ui/Modal/types.d.ts +7 -0
- package/dist/app/components/ui/Modal/types.js +1 -0
- package/dist/app/components/ui/Overlay/__tests__/Overlay.spec.d.ts +1 -0
- package/dist/app/components/ui/Overlay/__tests__/Overlay.spec.js +12 -0
- package/dist/app/components/ui/Overlay/types.d.ts +3 -0
- package/dist/app/components/ui/Overlay/types.js +1 -0
- package/dist/app/components/ui/Pagination/__tests__/Pagination.spec.d.ts +1 -0
- package/dist/app/components/ui/Pagination/__tests__/Pagination.spec.js +15 -0
- package/dist/app/components/ui/Pagination/types.d.ts +6 -0
- package/dist/app/components/ui/Pagination/types.js +1 -0
- package/dist/app/components/ui/ProductCard/__tests__/ProductCard.spec.d.ts +1 -0
- package/dist/app/components/ui/ProductCard/__tests__/ProductCard.spec.js +14 -0
- package/dist/app/components/ui/ProductCard/types.d.ts +12 -0
- package/dist/app/components/ui/ProductCard/types.js +1 -0
- package/dist/app/components/ui/ProductCardHorizontal/__tests__/ProductCardHorizontal.spec.d.ts +1 -0
- package/dist/app/components/ui/ProductCardHorizontal/__tests__/ProductCardHorizontal.spec.js +34 -0
- package/dist/app/components/ui/ProductCardHorizontal/types.d.ts +4 -0
- package/dist/app/components/ui/ProductCardHorizontal/types.js +1 -0
- package/dist/app/components/ui/PurchaseCard/__tests__/PurchaseCard.spec.d.ts +1 -0
- package/dist/app/components/ui/PurchaseCard/__tests__/PurchaseCard.spec.js +12 -0
- package/dist/app/components/ui/PurchaseCard/types.d.ts +4 -0
- package/dist/app/components/ui/PurchaseCard/types.js +1 -0
- package/dist/app/components/ui/QuantitySelector/__tests__/QuantitySelector.spec.d.ts +1 -0
- package/dist/app/components/ui/QuantitySelector/__tests__/QuantitySelector.spec.js +13 -0
- package/dist/app/components/ui/QuantitySelector/types.d.ts +5 -0
- package/dist/app/components/ui/QuantitySelector/types.js +1 -0
- package/dist/app/components/ui/Review/__tests__/Review.spec.d.ts +1 -0
- package/dist/app/components/ui/Review/__tests__/Review.spec.js +13 -0
- package/dist/app/components/ui/Review/types.d.ts +4 -0
- package/dist/app/components/ui/Review/types.js +1 -0
- package/dist/app/components/ui/Tag/__tests__/Tag.spec.d.ts +1 -0
- package/dist/app/components/ui/Tag/__tests__/Tag.spec.js +8 -0
- package/dist/app/components/ui/Tag/types.d.ts +14 -0
- package/dist/app/components/ui/Tag/types.js +11 -0
- package/dist/app/composables/globals/useAdminTable.d.ts +3 -0
- package/dist/app/composables/globals/useAdminTable.js +9 -0
- package/dist/app/composables/globals/useCustomFetch.d.ts +2 -0
- package/dist/app/composables/globals/useCustomFetch.js +8 -0
- package/dist/app/composables/globals/useDirectusField.d.ts +10 -0
- package/dist/app/composables/globals/useDirectusField.js +119 -0
- package/dist/app/composables/globals/useDirectusForm.d.ts +10 -0
- package/dist/app/composables/globals/useDirectusForm.js +66 -0
- package/dist/app/composables/globals/useFileManager.d.ts +14 -0
- package/dist/app/composables/globals/useFileManager.js +62 -0
- package/dist/app/composables/globals/useLivePreview.d.ts +1 -0
- package/dist/app/composables/globals/useLivePreview.js +16 -0
- package/dist/app/composables/globals/useLoading.d.ts +6 -0
- package/dist/app/composables/globals/useLoading.js +19 -0
- package/dist/app/composables/globals/useNotifications.d.ts +35 -0
- package/dist/app/composables/globals/useNotifications.js +133 -0
- package/dist/app/composables/globals/useRichText.d.ts +1 -0
- package/dist/app/composables/globals/useRichText.js +32 -0
- package/dist/app/composables/globals/useServerRootMixin.d.ts +3 -0
- package/dist/app/composables/globals/useServerRootMixin.js +15 -0
- package/dist/app/composables/globals/useVisualEditing.d.ts +17 -0
- package/dist/app/composables/globals/useVisualEditing.js +27 -0
- package/dist/app/composables/mappers/createMapper.d.ts +2 -0
- package/dist/app/composables/mappers/createMapper.js +6 -0
- package/dist/app/composables/mappers/errors.d.ts +6 -0
- package/dist/app/composables/mappers/errors.js +12 -0
- package/dist/app/composables/mappers/index.d.ts +6 -0
- package/dist/app/composables/mappers/index.js +7 -0
- package/dist/app/composables/mappers/registry.d.ts +5 -0
- package/dist/app/composables/mappers/registry.js +18 -0
- package/dist/app/composables/mappers/testHarness.d.ts +13 -0
- package/dist/app/composables/mappers/testHarness.js +98 -0
- package/dist/app/composables/mappers/types.d.ts +5 -0
- package/dist/app/composables/mappers/types.js +1 -0
- package/dist/app/composables/mappers/zodMapper.d.ts +9 -0
- package/dist/app/composables/mappers/zodMapper.js +17 -0
- package/dist/app/composables/media/useFile.d.ts +2 -0
- package/dist/app/composables/media/useFile.js +4 -0
- package/dist/app/composables/media/useMediaCenter.d.ts +29 -0
- package/dist/app/composables/media/useMediaCenter.js +321 -0
- package/dist/app/composables/media/useVideojs.d.ts +11 -0
- package/dist/app/composables/media/useVideojs.js +42 -0
- package/dist/app/composables/registry.d.ts +3 -0
- package/dist/app/composables/registry.js +10 -0
- package/dist/app/composables/schema/commerce/attributes.d.ts +7 -0
- package/dist/app/composables/schema/commerce/attributes.js +1 -0
- package/dist/app/composables/schema/commerce/blocks.d.ts +6 -0
- package/dist/app/composables/schema/commerce/blocks.js +1 -0
- package/dist/app/composables/schema/commerce/bundleProduts.d.ts +10 -0
- package/dist/app/composables/schema/commerce/bundleProduts.js +1 -0
- package/dist/app/composables/schema/commerce/cart.d.ts +29 -0
- package/dist/app/composables/schema/commerce/cart.js +1 -0
- package/dist/app/composables/schema/commerce/category.d.ts +12 -0
- package/dist/app/composables/schema/commerce/category.js +1 -0
- package/dist/app/composables/schema/commerce/checkout.d.ts +9 -0
- package/dist/app/composables/schema/commerce/checkout.js +1 -0
- package/dist/app/composables/schema/commerce/company.d.ts +7 -0
- package/dist/app/composables/schema/commerce/company.js +1 -0
- package/dist/app/composables/schema/commerce/configurableProducts.d.ts +12 -0
- package/dist/app/composables/schema/commerce/configurableProducts.js +1 -0
- package/dist/app/composables/schema/commerce/coupons.d.ts +9 -0
- package/dist/app/composables/schema/commerce/coupons.js +1 -0
- package/dist/app/composables/schema/commerce/credit-memos.d.ts +48 -0
- package/dist/app/composables/schema/commerce/credit-memos.js +1 -0
- package/dist/app/composables/schema/commerce/digitalProducts.d.ts +11 -0
- package/dist/app/composables/schema/commerce/digitalProducts.js +1 -0
- package/dist/app/composables/schema/commerce/directory.d.ts +7 -0
- package/dist/app/composables/schema/commerce/directory.js +1 -0
- package/dist/app/composables/schema/commerce/events.d.ts +27 -0
- package/dist/app/composables/schema/commerce/events.js +1 -0
- package/dist/app/composables/schema/commerce/gift-registry.d.ts +7 -0
- package/dist/app/composables/schema/commerce/gift-registry.js +1 -0
- package/dist/app/composables/schema/commerce/guest-cart.d.ts +4 -0
- package/dist/app/composables/schema/commerce/guest-cart.js +1 -0
- package/dist/app/composables/schema/commerce/inventory.d.ts +8 -0
- package/dist/app/composables/schema/commerce/inventory.js +1 -0
- package/dist/app/composables/schema/commerce/invoices.d.ts +47 -0
- package/dist/app/composables/schema/commerce/invoices.js +1 -0
- package/dist/app/composables/schema/commerce/orders.d.ts +32 -0
- package/dist/app/composables/schema/commerce/orders.js +1 -0
- package/dist/app/composables/schema/commerce/payments.d.ts +8 -0
- package/dist/app/composables/schema/commerce/payments.js +1 -0
- package/dist/app/composables/schema/commerce/price.d.ts +9 -0
- package/dist/app/composables/schema/commerce/price.js +1 -0
- package/dist/app/composables/schema/commerce/product-types.d.ts +6 -0
- package/dist/app/composables/schema/commerce/product-types.js +1 -0
- package/dist/app/composables/schema/commerce/product.d.ts +20 -0
- package/dist/app/composables/schema/commerce/product.js +1 -0
- package/dist/app/composables/schema/commerce/quotes.d.ts +13 -0
- package/dist/app/composables/schema/commerce/quotes.js +1 -0
- package/dist/app/composables/schema/commerce/requisition-lists.d.ts +9 -0
- package/dist/app/composables/schema/commerce/requisition-lists.js +1 -0
- package/dist/app/composables/schema/commerce/returns.d.ts +8 -0
- package/dist/app/composables/schema/commerce/returns.js +1 -0
- package/dist/app/composables/schema/commerce/reward.d.ts +7 -0
- package/dist/app/composables/schema/commerce/reward.js +1 -0
- package/dist/app/composables/schema/commerce/rules.d.ts +7 -0
- package/dist/app/composables/schema/commerce/rules.js +1 -0
- package/dist/app/composables/schema/commerce/shipment.d.ts +18 -0
- package/dist/app/composables/schema/commerce/shipment.js +1 -0
- package/dist/app/composables/schema/commerce/shops.d.ts +8 -0
- package/dist/app/composables/schema/commerce/shops.js +1 -0
- package/dist/app/composables/schema/commerce/stockItems.d.ts +7 -0
- package/dist/app/composables/schema/commerce/stockItems.js +1 -0
- package/dist/app/composables/schema/commerce/store.d.ts +7 -0
- package/dist/app/composables/schema/commerce/store.js +1 -0
- package/dist/app/composables/schema/commerce/subscriptons.d.ts +9 -0
- package/dist/app/composables/schema/commerce/subscriptons.js +1 -0
- package/dist/app/composables/schema/commerce/taxRates.d.ts +7 -0
- package/dist/app/composables/schema/commerce/taxRates.js +1 -0
- package/dist/app/composables/schema/commerce/taxRules.d.ts +7 -0
- package/dist/app/composables/schema/commerce/taxRules.js +1 -0
- package/dist/app/composables/schema/commerce/teams.d.ts +6 -0
- package/dist/app/composables/schema/commerce/teams.js +1 -0
- package/dist/app/composables/schema/commerce/transactions.d.ts +11 -0
- package/dist/app/composables/schema/commerce/transactions.js +1 -0
- package/dist/app/composables/schema/identity/customerGroup.d.ts +7 -0
- package/dist/app/composables/schema/identity/customerGroup.js +1 -0
- package/dist/app/composables/schema/identity/user.d.ts +45 -0
- package/dist/app/composables/schema/identity/user.js +1 -0
- package/dist/app/composables/schema/media/asset.d.ts +28 -0
- package/dist/app/composables/schema/media/asset.js +1 -0
- package/dist/app/composables/schema/social/post.d.ts +25 -0
- package/dist/app/composables/schema/social/post.js +1 -0
- package/dist/app/composables/schema/social/profile.d.ts +22 -0
- package/dist/app/composables/schema/social/profile.js +1 -0
- package/dist/app/composables/schema/social/space.d.ts +17 -0
- package/dist/app/composables/schema/social/space.js +1 -0
- package/dist/app/composables/types.d.ts +11 -0
- package/dist/app/composables/types.js +1 -0
- package/dist/app/composables/useContent.d.ts +4 -0
- package/dist/app/composables/useContent.js +10 -0
- package/dist/app/composables/useDirectusRequest.d.ts +12 -0
- package/dist/app/composables/useDirectusRequest.js +83 -0
- package/dist/app/composables/utils/assert.d.ts +1 -0
- package/dist/app/composables/utils/assert.js +5 -0
- package/dist/app/composables/utils/deepMerge.d.ts +1 -0
- package/dist/app/composables/utils/deepMerge.js +15 -0
- package/dist/app/composables/utils/index.d.ts +4 -0
- package/dist/app/composables/utils/index.js +4 -0
- package/dist/app/composables/utils/isObject.d.ts +1 -0
- package/dist/app/composables/utils/isObject.js +5 -0
- package/dist/app/composables/utils/module.d.ts +4 -0
- package/dist/app/composables/utils/module.js +14 -0
- package/dist/app/composables/utils/safeGet.d.ts +1 -0
- package/dist/app/composables/utils/safeGet.js +5 -0
- package/dist/app/stores/index.d.ts +0 -0
- package/dist/app/stores/index.js +1 -0
- package/dist/app/utils/billing-address.d.ts +2 -0
- package/dist/app/utils/billing-address.js +18 -0
- package/dist/app/utils/color.d.ts +2 -0
- package/dist/app/utils/color.js +11 -0
- package/dist/app/utils/currency.d.ts +6 -0
- package/dist/app/utils/currency.js +20 -0
- package/dist/app/utils/embed.d.ts +2 -0
- package/dist/app/utils/embed.js +52 -0
- package/dist/app/utils/errors.d.ts +5 -0
- package/dist/app/utils/errors.js +6 -0
- package/dist/app/utils/fonts.d.ts +5 -0
- package/dist/app/utils/fonts.js +18 -0
- package/dist/app/utils/formkit.d.ts +12 -0
- package/dist/app/utils/formkit.js +59 -0
- package/dist/app/utils/icons.d.ts +4 -0
- package/dist/app/utils/icons.js +36 -0
- package/dist/app/utils/links.d.ts +7 -0
- package/dist/app/utils/links.js +21 -0
- package/dist/app/utils/lodash.d.ts +2 -0
- package/dist/app/utils/lodash.js +23 -0
- package/dist/app/utils/markdown.d.ts +1 -0
- package/dist/app/utils/markdown.js +8 -0
- package/dist/app/utils/math.d.ts +6 -0
- package/dist/app/utils/math.js +21 -0
- package/dist/app/utils/navigation.d.ts +2 -0
- package/dist/app/utils/navigation.js +9 -0
- package/dist/app/utils/objects.d.ts +3 -0
- package/dist/app/utils/objects.js +11 -0
- package/dist/app/utils/paths.d.ts +21 -0
- package/dist/app/utils/paths.js +21 -0
- package/dist/app/utils/relations.d.ts +9 -0
- package/dist/app/utils/relations.js +24 -0
- package/dist/app/utils/strings.d.ts +14 -0
- package/dist/app/utils/strings.js +92 -0
- package/dist/app/utils/time.d.ts +13 -0
- package/dist/app/utils/time.js +124 -0
- package/dist/app/utils/url.d.ts +12 -0
- package/dist/app/utils/url.js +20 -0
- package/dist/app/utils/user-name.d.ts +2 -0
- package/dist/app/utils/user-name.js +15 -0
- package/dist/blocks/block-button-group.d.ts +6 -0
- package/dist/blocks/block-button-group.js +1 -0
- package/dist/blocks/block-button.d.ts +13 -0
- package/dist/blocks/block-button.js +1 -0
- package/dist/blocks/block-column.d.ts +18 -0
- package/dist/blocks/block-column.js +1 -0
- package/dist/blocks/block-cta.d.ts +11 -0
- package/dist/blocks/block-cta.js +1 -0
- package/dist/blocks/block-divider.d.ts +4 -0
- package/dist/blocks/block-divider.js +1 -0
- package/dist/blocks/block-faq.d.ts +11 -0
- package/dist/blocks/block-faq.js +1 -0
- package/dist/blocks/block-form.d.ts +7 -0
- package/dist/blocks/block-form.js +1 -0
- package/dist/blocks/block-gallery.d.ts +13 -0
- package/dist/blocks/block-gallery.js +1 -0
- package/dist/blocks/block-hero.d.ts +11 -0
- package/dist/blocks/block-hero.js +1 -0
- package/dist/blocks/block-html.d.ts +4 -0
- package/dist/blocks/block-html.js +1 -0
- package/dist/blocks/block-logocloud.d.ts +13 -0
- package/dist/blocks/block-logocloud.js +1 -0
- package/dist/blocks/block-quote.d.ts +10 -0
- package/dist/blocks/block-quote.js +1 -0
- package/dist/blocks/block-richtext.d.ts +7 -0
- package/dist/blocks/block-richtext.js +1 -0
- package/dist/blocks/block-steps.d.ts +21 -0
- package/dist/blocks/block-steps.js +1 -0
- package/dist/blocks/block-team.d.ts +6 -0
- package/dist/blocks/block-team.js +1 -0
- package/dist/blocks/block-testimonial.d.ts +13 -0
- package/dist/blocks/block-testimonial.js +1 -0
- package/dist/blocks/block-video.d.ts +9 -0
- package/dist/blocks/block-video.js +1 -0
- package/dist/blocks/block.d.ts +17 -0
- package/dist/blocks/block.js +1 -0
- package/dist/blocks/index.d.ts +18 -0
- package/dist/blocks/index.js +1 -0
- package/dist/componentMap.d.ts +6 -0
- package/dist/componentMap.js +8 -0
- package/dist/content/category.d.ts +10 -0
- package/dist/content/category.js +1 -0
- package/dist/content/form.d.ts +21 -0
- package/dist/content/form.js +1 -0
- package/dist/content/index.d.ts +6 -0
- package/dist/content/index.js +1 -0
- package/dist/content/page.d.ts +38 -0
- package/dist/content/page.js +1 -0
- package/dist/content/post.d.ts +38 -0
- package/dist/content/post.js +1 -0
- package/dist/content/team.d.ts +17 -0
- package/dist/content/team.js +1 -0
- package/dist/content/testimonial.d.ts +18 -0
- package/dist/content/testimonial.js +1 -0
- package/dist/help/index.d.ts +51 -0
- package/dist/help/index.js +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -0
- package/dist/meta/analytics.d.ts +21 -0
- package/dist/meta/analytics.js +1 -0
- package/dist/meta/config.d.ts +22 -0
- package/dist/meta/config.js +1 -0
- package/dist/meta/globals.d.ts +33 -0
- package/dist/meta/globals.js +1 -0
- package/dist/meta/index.d.ts +6 -0
- package/dist/meta/index.js +1 -0
- package/dist/meta/navigation.d.ts +31 -0
- package/dist/meta/navigation.js +1 -0
- package/dist/meta/redirect.d.ts +12 -0
- package/dist/meta/redirect.js +1 -0
- package/dist/meta/seo.d.ts +19 -0
- package/dist/meta/seo.js +1 -0
- package/dist/os/contact.d.ts +22 -0
- package/dist/os/contact.js +1 -0
- package/dist/os/conversation.d.ts +23 -0
- package/dist/os/conversation.js +1 -0
- package/dist/os/index.d.ts +16 -0
- package/dist/os/index.js +1 -0
- package/dist/os/organization.d.ts +51 -0
- package/dist/os/organization.js +1 -0
- package/dist/os/os-activity.d.ts +26 -0
- package/dist/os/os-activity.js +1 -0
- package/dist/os/os-deal.d.ts +42 -0
- package/dist/os/os-deal.js +1 -0
- package/dist/os/os-expense.d.ts +21 -0
- package/dist/os/os-expense.js +1 -0
- package/dist/os/os-invoice.d.ts +46 -0
- package/dist/os/os-invoice.js +1 -0
- package/dist/os/os-item.d.ts +17 -0
- package/dist/os/os-item.js +1 -0
- package/dist/os/os-payment.d.ts +27 -0
- package/dist/os/os-payment.js +1 -0
- package/dist/os/os-project.d.ts +45 -0
- package/dist/os/os-project.js +1 -0
- package/dist/os/os-proposal.d.ts +61 -0
- package/dist/os/os-proposal.js +1 -0
- package/dist/os/os-settings.d.ts +17 -0
- package/dist/os/os-settings.js +1 -0
- package/dist/os/os-subscription.d.ts +12 -0
- package/dist/os/os-subscription.js +1 -0
- package/dist/os/os-task.d.ts +32 -0
- package/dist/os/os-task.js +1 -0
- package/dist/os/os-tax-rate.d.ts +12 -0
- package/dist/os/os-tax-rate.js +1 -0
- package/dist/package.json +72 -0
- package/dist/pageComponentMap.d.ts +2 -0
- package/dist/pageComponentMap.js +7 -0
- package/dist/schema.d.ts +78 -0
- package/dist/schema.js +1 -0
- package/dist/system/file.d.ts +47 -0
- package/dist/system/file.js +1 -0
- package/dist/system/folder.d.ts +8 -0
- package/dist/system/folder.js +1 -0
- package/dist/system/index.d.ts +4 -0
- package/dist/system/index.js +1 -0
- package/dist/system/role.d.ts +20 -0
- package/dist/system/role.js +1 -0
- package/dist/system/user.d.ts +57 -0
- package/dist/system/user.js +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/i18n/.gitkeep +0 -0
- package/i18n/config.ts +9 -0
- package/i18n/da_DK.json +613 -0
- package/i18n/de-DE/account.json +100 -0
- package/i18n/de-DE/cart.json +19 -0
- package/i18n/de-DE/changePassword.json +15 -0
- package/i18n/de-DE/checkout.json +68 -0
- package/i18n/de-DE/de-DE.ts +27 -0
- package/i18n/de-DE/errors.json +46 -0
- package/i18n/de-DE/form.json +42 -0
- package/i18n/de-DE/general.json +62 -0
- package/i18n/de-DE/listing.json +15 -0
- package/i18n/de-DE/newsletter.json +11 -0
- package/i18n/de-DE/product.json +48 -0
- package/i18n/de-DE/recoveryPassword.json +21 -0
- package/i18n/de-DE/validations.json +24 -0
- package/i18n/de_DE.json +613 -0
- package/i18n/en-GB/account.json +102 -0
- package/i18n/en-GB/cart.json +19 -0
- package/i18n/en-GB/changePassword.json +15 -0
- package/i18n/en-GB/checkout.json +68 -0
- package/i18n/en-GB/en-GB.ts +27 -0
- package/i18n/en-GB/errors.json +47 -0
- package/i18n/en-GB/form.json +42 -0
- package/i18n/en-GB/general.json +64 -0
- package/i18n/en-GB/listing.json +15 -0
- package/i18n/en-GB/newsletter.json +11 -0
- package/i18n/en-GB/product.json +48 -0
- package/i18n/en-GB/recoveryPassword.json +21 -0
- package/i18n/en-GB/validations.json +24 -0
- package/i18n/en_US.json +264 -0
- package/i18n/es_ES.json +613 -0
- package/i18n/fa_IR.json +613 -0
- package/i18n/fi_FI.json +613 -0
- package/i18n/fr_FR.json +613 -0
- package/i18n/it_IT.json +613 -0
- package/i18n/lv_LV.json +613 -0
- package/i18n/nb_NO.json +613 -0
- package/i18n/nl_NL.json +613 -0
- package/i18n/pl-PL/account.json +100 -0
- package/i18n/pl-PL/cart.json +19 -0
- package/i18n/pl-PL/changePassword.json +15 -0
- package/i18n/pl-PL/checkout.json +69 -0
- package/i18n/pl-PL/errors.json +46 -0
- package/i18n/pl-PL/form.json +42 -0
- package/i18n/pl-PL/general.json +64 -0
- package/i18n/pl-PL/listing.json +15 -0
- package/i18n/pl-PL/newsletter.json +11 -0
- package/i18n/pl-PL/pl-PL.ts +25 -0
- package/i18n/pl-PL/product.json +48 -0
- package/i18n/pl-PL/recoveryPassword.json +21 -0
- package/i18n/pl-PL/validations.json +24 -0
- package/i18n/pl_PL.json +613 -0
- package/i18n/pt_BR.json +613 -0
- package/i18n/ru_RU.json +613 -0
- package/i18n/sl_SI.json +613 -0
- package/i18n/src/helpers/prefix.ts +17 -0
- package/i18n/src/langs/de-DE.ts +2 -0
- package/i18n/src/langs/en-GB.ts +2 -0
- package/i18n/src/langs/pl-PL.ts +2 -0
- package/i18n/sv_SE.json +613 -0
- package/i18n/tr_TR.json +613 -0
- package/i18n/utils/i18n-validators.ts +31 -0
- package/i18n/zh_TW.json +613 -0
- package/nuxt.config.ts +91 -0
- package/package.json +72 -0
- package/prisma/generated/browser.ts +44 -0
- package/prisma/generated/client.ts +66 -0
- package/prisma/generated/commonInputTypes.ts +432 -0
- package/prisma/generated/enums.ts +15 -0
- package/prisma/generated/internal/class.ts +232 -0
- package/prisma/generated/internal/prismaNamespace.ts +1154 -0
- package/prisma/generated/internal/prismaNamespaceBrowser.ts +179 -0
- package/prisma/generated/models/Account.ts +1620 -0
- package/prisma/generated/models/Session.ts +1484 -0
- package/prisma/generated/models/Upload.ts +1291 -0
- package/prisma/generated/models/User.ts +1780 -0
- package/prisma/generated/models/Verification.ts +1172 -0
- package/prisma/generated/models.ts +16 -0
- package/prisma/schema.prisma +102 -0
- package/runtime/plugins/vuetify.ts +12 -0
package/i18n/fi_FI.json
ADDED
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Something went wrong!": "Jotain meni pieleen!",
|
|
3
|
+
"Coupon was applied!": "Kuponki on sovellettu!",
|
|
4
|
+
"Coupon was removed!": "Kuponki poistettiin!",
|
|
5
|
+
"Product added to wish-list!": "Tuote lisätty toivelistalle!",
|
|
6
|
+
"Error updating wish list!": "Virhe päivitettäessä toivelistaa!",
|
|
7
|
+
"Error clearing wish list!": "Virhe tyhjennettäessä toivelistaa!",
|
|
8
|
+
"Product has been removed from your Wish List!": "Tuote on poistettu toivelistalta!",
|
|
9
|
+
"Error updating wishlist!": "Virhe päivitettäessä toivelistaa!",
|
|
10
|
+
"Ooops!": "Hups!",
|
|
11
|
+
"Back to homepage": "Takaisin kotisivulle",
|
|
12
|
+
"Your account is confirmed!": "Tilisi on vahvistettu!",
|
|
13
|
+
"Something went wrong! Please, try again!": "Jotain meni pieleen! Yritä uudelleen!",
|
|
14
|
+
"Confirm account": "Vahvista tili",
|
|
15
|
+
"Share Wishlist": "Jaa Toivelist",
|
|
16
|
+
"New version available!": "Uusi versio saatavilla!",
|
|
17
|
+
"Cart": "Ostoskärry",
|
|
18
|
+
"Please sign-in to complete checkout!": "Kirjaudu sisään suorittaaksesi kassalle!",
|
|
19
|
+
"Shopping cart": "Ostoskärry",
|
|
20
|
+
"Home": "Kotisivu",
|
|
21
|
+
"Please add at least one product to cart!": "Lisää vähintään yksi tuote kärryihin!",
|
|
22
|
+
"Checkout": "Tarkista",
|
|
23
|
+
"Your account has been created successfully!": "Tilisi on luotu onnistuneesti!",
|
|
24
|
+
"Password has been successfully updated!": "Salasana on päivitetty!",
|
|
25
|
+
"Your password and confirmation password do not match.": "Salasanasi ja vahvistus salasanasi eivät täsmää.",
|
|
26
|
+
"Password Change Page": "Salasanan vaihtosivu",
|
|
27
|
+
"Change password": "Salasanan vaihtaminen",
|
|
28
|
+
"Newsletter Subscription": "Uutiskirjeen Tilaus",
|
|
29
|
+
"item": "kohde",
|
|
30
|
+
"items": "kohdetta",
|
|
31
|
+
"My account": "Tilini",
|
|
32
|
+
"My Account": "Tilini",
|
|
33
|
+
"Search": "Etsi",
|
|
34
|
+
"Menu": "Valikko",
|
|
35
|
+
"Contact Us": "Ota meihin yhteyttä",
|
|
36
|
+
"Shared Wishlist": "Jaettu toivelista",
|
|
37
|
+
"Breadcrumbs (current location)...": "Korppujauhoja (nykyinen sijainti)...",
|
|
38
|
+
"This is a demo store": "Tämä on demokauppa",
|
|
39
|
+
"This is a demo store. No orders will be fulfilled.": "Tämä on demokauppa. Tilauksia ei käsitellä.",
|
|
40
|
+
"OK": "OK",
|
|
41
|
+
"Cancel": "Peruuta",
|
|
42
|
+
"We have updated the website. Reload is required to apply changes.": "Olemme päivittäneet verkkosivustoa. Lataa muutokset vaaditaan muutosten tekemiseen.",
|
|
43
|
+
"Reload the page": "Lataa sivu uudelleen",
|
|
44
|
+
"Dismiss": "Hylkää",
|
|
45
|
+
"You are currently offline.": "Olet tällä hetkellä offline-tilassa.",
|
|
46
|
+
"We could not load the content. Check your internet connection and try again.": "Sisältöä ei voitu ladata. Tarkista internet yhteytesi ja yritä uudelleen.",
|
|
47
|
+
"Offline mode": "Offline-tila",
|
|
48
|
+
"There are no products in cart.": "Tuotteita ei ole ostoskorissa.",
|
|
49
|
+
"subtotal": "välisumma",
|
|
50
|
+
"Have a discount code?": "Onko sinulla alennuskoodia?",
|
|
51
|
+
"Order total:": "Tilaus yhteensä:",
|
|
52
|
+
"Secure checkout": "Turvallinen uloskirjautuminen",
|
|
53
|
+
"Continue shopping": "Jatka ostoksia",
|
|
54
|
+
"Summary": "Yhteenveto",
|
|
55
|
+
"Frequently bought together": "Usein ostettu yhdessä",
|
|
56
|
+
"Free shipping on order 49$ and more.": "Ilmainen toimitus tilauksille, jotka ovat vähintään 49 dollaria.",
|
|
57
|
+
"Wishlist shared by ": "Toivelista jakanut ",
|
|
58
|
+
"Email": "Sähköposti",
|
|
59
|
+
"Password": "Salasana",
|
|
60
|
+
"Confirm your account": "Vahvista tilisi",
|
|
61
|
+
"Confirm Account Page": "Vahvista tili -sivu",
|
|
62
|
+
"Confirm Account Action": "Vahvista Tili Toiminto",
|
|
63
|
+
"Search results for: ": "Hakutulokset: ",
|
|
64
|
+
"My Account page": "Oma tili -sivu",
|
|
65
|
+
"New password": "Uusi salasana",
|
|
66
|
+
"Confirm password": "Vahvista salasana",
|
|
67
|
+
"Update Password": "Päivitä Palasana",
|
|
68
|
+
"Password Change Actions": "Salasanan vaihto toiminnot",
|
|
69
|
+
"Change My Password": "Vaihda salasanani",
|
|
70
|
+
"Thank you for your purchase!": "Kiitos ostoksestasi!",
|
|
71
|
+
"Checkout page": "Kassasivu",
|
|
72
|
+
"Newsletter": "Uutiskirje",
|
|
73
|
+
"Wishlist is empty!": "Toivelista on tyhjä!",
|
|
74
|
+
"Add All to Cart": "Lisää kaikki ostoskoriin",
|
|
75
|
+
"Remove item (%s)": "Kohteen poistaminen (%s)",
|
|
76
|
+
"Remove items (%s)": "Kohteiden poistaminen (%s)",
|
|
77
|
+
"There was an error requesting the category": "Virhe pyydettäessä luokkaa",
|
|
78
|
+
"Your session is over, you are logged out!": "Istuntosi on ohi, olet kirjautunut ulos!",
|
|
79
|
+
"You are successfully logged in!": "Olet kirjautunut sisään!",
|
|
80
|
+
"You are successfully logged out!": "Olet kirjautunut ulos!",
|
|
81
|
+
"Sign in": "Kirjaudu sisään",
|
|
82
|
+
"Forgot password": "Unohtunut salasana",
|
|
83
|
+
"Create account": "Luo tili",
|
|
84
|
+
"This store can not be opened!": "Tätä kauppaa ei voi avata!",
|
|
85
|
+
"Page not found": "Sivua ei löytynyt",
|
|
86
|
+
"Add new address": "Lisää uusi osoite",
|
|
87
|
+
"We are experiencing issues, please try again later": "Meillä on ongelmia. Yritä myöhemmin uudelleen",
|
|
88
|
+
"Your order # is: %s": "Tilauksesi # on: %s",
|
|
89
|
+
"We`ll email you an order confirmation with details and tracking info.": "Lähetämme sinulle tilausvahvistuksen, joka sisältää yksityiskohdat ja seurantatiedot.",
|
|
90
|
+
"Shipping": "Toimitus",
|
|
91
|
+
"Order total": "Tilauksen kokonaissumma",
|
|
92
|
+
"Tax": "Vero",
|
|
93
|
+
"Terms and Conditions": "Käyttöehdot",
|
|
94
|
+
"There are no Terms and Conditions configured.": "Ei ole määritetty käyttöehtoja.",
|
|
95
|
+
"Sign in to your account": "Kirjaudu tilillesi",
|
|
96
|
+
"Get password link": "Hanki salasana linkki",
|
|
97
|
+
"Create new account": "Luo uusi tili",
|
|
98
|
+
"Confirm the email": "Vahvista sähköpostiosoite",
|
|
99
|
+
"Close": "Sulkea",
|
|
100
|
+
"You have no items in your shopping cart.": "Ostoskorissasi ei ole tuotteita.",
|
|
101
|
+
"Tax total:": "Verot yhteensä:",
|
|
102
|
+
"View cart": "Katso ostoskoria",
|
|
103
|
+
"Image not found": "Kuvaa ei löydy",
|
|
104
|
+
"Image not specified": "Kuvaa ei ole määritetty",
|
|
105
|
+
"Enter your email address": "Syötä sähköpostiosoitteesi",
|
|
106
|
+
"Submit": "Lähetä",
|
|
107
|
+
"Filters": "Suodattimet",
|
|
108
|
+
"Remove": "Poistaa",
|
|
109
|
+
"Delete": "Poistaa",
|
|
110
|
+
"Error cleaning wishlist": "Virhe toivelistan puhdistamisessa",
|
|
111
|
+
"Linked products": "Linkitetyt tuotteet",
|
|
112
|
+
"Name": "Nimi",
|
|
113
|
+
"Phone number": "Puhelinnumero",
|
|
114
|
+
"What's on your mind?": "Mitä sinulla on mielessäsi?",
|
|
115
|
+
"Send Your message": "Viestin lähettäminen",
|
|
116
|
+
"Product is out of stock": "Tuotetta ei ole varastossa",
|
|
117
|
+
"Applied coupon code: ": "Käytetty kuponkikoodi: ",
|
|
118
|
+
"Remove Coupon": "Poista Kuponki",
|
|
119
|
+
"Recommended for you": "Suositellaan sinulle",
|
|
120
|
+
"You might also like": "Saatat myös pitää",
|
|
121
|
+
"Main product details": "Tärkeimmät tuotetiedot",
|
|
122
|
+
"This field is required!": "Tämä kenttä pitää täyttää!",
|
|
123
|
+
"Name: A to Z": "Nimi: A – Z",
|
|
124
|
+
"Name: Z to A": "Nimi: Z – A",
|
|
125
|
+
"Best match": "Paras ottelu",
|
|
126
|
+
"%s: Low to High": "%s: Alhaisesta Korkeaan",
|
|
127
|
+
"%s: High to Low": "%s: Korkeasta Matalaan",
|
|
128
|
+
"%s: Ascending": "%s: Nouseva",
|
|
129
|
+
"%s: Descending": "%s: Laskeva",
|
|
130
|
+
"Not Found": "Ei löytynyt",
|
|
131
|
+
"Page Not Found Content": "Sivua ei Löydy",
|
|
132
|
+
"Sorry, we can`t find the page you are looking for! Please press a button below to go back to homepage.": "Sorry, we can't find the page you are looking for! Please press the button below to go back to the homepage.",
|
|
133
|
+
"Address #%s%s": "Osoite #%s%s",
|
|
134
|
+
"You have no configured addresses.": "Sinulla ei ole määritettyjä osoitteita.",
|
|
135
|
+
"No %s address configured.": "Osoitetta %s ei ole määritetty.",
|
|
136
|
+
"Go to \"Address Book\", to configure them!": "Määritä ne osoitteessa \"Osoitekirja\"!",
|
|
137
|
+
"billing": "laskutus",
|
|
138
|
+
"shipping": "toimitus",
|
|
139
|
+
"Default %s address": "Oletusosoite: %s",
|
|
140
|
+
"My profile": "Profiilini",
|
|
141
|
+
"You have no orders.": "Sinulla ei ole tilauksia.",
|
|
142
|
+
"Order": "Tilaus",
|
|
143
|
+
"Date": "Päivämäärä",
|
|
144
|
+
"Status": "Tila",
|
|
145
|
+
"Total": "Yhteensä",
|
|
146
|
+
"Proceed to billing": "Jatka kohtaan Laskutus",
|
|
147
|
+
"Logout": "Uloskirjautuminen",
|
|
148
|
+
"General subscription": "Yleinen tilaus",
|
|
149
|
+
"Save changes": "Tallenna muutokset",
|
|
150
|
+
"Enter personal information": "Anna henkilökohtaiset tiedot",
|
|
151
|
+
"Create Password": "Luo salasana",
|
|
152
|
+
"I agree to terms and conditions": "Hyväksyn ehdot",
|
|
153
|
+
"Complete order": "Täydellinen tilaus",
|
|
154
|
+
"My billing and shipping are the same": "Laskutus ja lähetys ovat samat",
|
|
155
|
+
"SEE RESULTS": "KATSO TULOKSET",
|
|
156
|
+
"Shopping Options": "Ostosvaihtoehdot",
|
|
157
|
+
"The selected filter combination returned no results.\n Please try again, using a different set of filters.": "Valittu suodatinyhdistelmä ei palauttanut tuloksia. \n Yritä uudelleen käyttämällä toista suodatinjoukkoa.",
|
|
158
|
+
"As Low as": "Yhtä matala kuin",
|
|
159
|
+
"Products are loading...": "Tuotteet latautuu...",
|
|
160
|
+
"%s items found": "Löytyi %s tuotetta",
|
|
161
|
+
"Add a comment": "Lisää kommentti",
|
|
162
|
+
"Qty:": "Määrä",
|
|
163
|
+
"Add to cart": "Lisää ostoskoriin",
|
|
164
|
+
"Add website to your home screen for the full-screen browsing experience!": "Lisää aloitusnäytölle koko näytön selauskokemukseen!",
|
|
165
|
+
"Add to home screen": "Lisää aloitusnäytölle",
|
|
166
|
+
"Maybe later": "Ehkä myöhemmin",
|
|
167
|
+
"Tap:": "Napauta:",
|
|
168
|
+
", then": ", sitten",
|
|
169
|
+
"Add to Home Screen": "Lisää aloitusnäytölle",
|
|
170
|
+
"Browse website in full-screen:": "Selaa verkkosivustoa koko näytössä:",
|
|
171
|
+
"The email confirmation link has been sent to your email. Please confirm your account to proceed.": "Vahvistussähköposti Linkki on lähetetty sähköpostiisi. Vahvista tilisi jatkaaksesi.",
|
|
172
|
+
"Got it": "Selkis",
|
|
173
|
+
"Incorrect data! Please resolve all field validation errors.": "Väärät tiedot! Korjaa kaikki kentän vahvistus virheet.",
|
|
174
|
+
"Please, select product options!": "Valitse tuotevaihtoehdot!",
|
|
175
|
+
"You must login or register to review products.": "Sinun on kirjauduttava sisään tai rekisteröidyttävä tarkistamaan tuotteita.",
|
|
176
|
+
"Edit address": "Muokkaa osoitetta",
|
|
177
|
+
"Confirm delete": "Vahvista poistaminen",
|
|
178
|
+
"Personal Information": "Henkilökohtaisia Tietoja",
|
|
179
|
+
"First Name": "Etunimi",
|
|
180
|
+
"Last Name": "Sukunimi",
|
|
181
|
+
"Sign-Up Information": "Rekisteröintitiedot",
|
|
182
|
+
"Sign up": "Ilmoittautua",
|
|
183
|
+
"Already have an account?": "Onko sinulla jo tili?",
|
|
184
|
+
"Send reset link": "Palautuslinkin lähettäminen",
|
|
185
|
+
"Create an account": "Tilin luominen",
|
|
186
|
+
"Forgot password?": "Unohditko salasanan?",
|
|
187
|
+
"Email addresses, separated by commas": "Sähköpostiosoitteet, pilkuilla erotettuna",
|
|
188
|
+
"Message": "Viesti",
|
|
189
|
+
"Are you sure you want to delete this address?": "Haluatko varmasti poistaa tämän osoitteen?",
|
|
190
|
+
"Address details": "Osoitteen tiedot",
|
|
191
|
+
"Yes, delete address": "Kyllä, poista osoite",
|
|
192
|
+
"No results found!": "Tuloksia ei löytynyt!",
|
|
193
|
+
"Adding...": "Lisääminen...",
|
|
194
|
+
"Current product price": "Tuotteen nykyinen hinta",
|
|
195
|
+
"Current product price excl. tax": "Tuotteen nykyinen hinta ilman veroja",
|
|
196
|
+
"Product Price": "Tuotteen hinta",
|
|
197
|
+
"There are no reviews yet! Click button on the right to submit one!": "Ei arvosteluja vielä ole! Lähetä oikea napsauttamalla oikeassa olevaa painiketta!",
|
|
198
|
+
"%s reviews": "%s prvion perusteella",
|
|
199
|
+
"First name": "Etunimi",
|
|
200
|
+
"Last name": "Sukunimi",
|
|
201
|
+
"Edit details": "Muokkaa tietoja",
|
|
202
|
+
"City": "Kaupunki",
|
|
203
|
+
"Street": "Katu",
|
|
204
|
+
"Can not delete - address is set as default.": "Ei voi poistaa - osoite on asetettu oletukseksi.",
|
|
205
|
+
"There are no shipping methods available, try different address.": "Toimitustapoja ei ole käytettävissä. Kokeile toista osoitetta.",
|
|
206
|
+
"Buy %s for %s each and ": "Osta %s %s kappaleelta ja ",
|
|
207
|
+
"save %s%": "tallenna %s",
|
|
208
|
+
"As low as ": "Niinkin alhainen kuin ",
|
|
209
|
+
"Go to Address Book to configure them!": "Määritä ne siirtymällä Osoitekirjaan!",
|
|
210
|
+
"Use custom address": "Käytä mukautettua osoitetta",
|
|
211
|
+
"Order details": "Tilauksen tiedot",
|
|
212
|
+
"Shipping address": "Toimitusosoite",
|
|
213
|
+
"Items Ordered": "Tilatut nimikkeet",
|
|
214
|
+
"Load previous": "Lataa edellinen",
|
|
215
|
+
"We are sorry!": "Olemme pahoillamme!",
|
|
216
|
+
"There were no products found matching your request.": "Ei löytynyt tuotteita, jotka vastaavat pyyntöäsi.",
|
|
217
|
+
"Please, try removing selected filters and try again!": "Yritä poistaa valitut suodattimet ja yritä uudelleen!",
|
|
218
|
+
"Yes": "Joo",
|
|
219
|
+
"No": "Ei",
|
|
220
|
+
"N/A": "N/A",
|
|
221
|
+
"The error occurred during initializing payment methods. Please try again later!": "Virhe tapahtui maksutapoja alustettaessa. Yritä uudelleen myöhemmin!",
|
|
222
|
+
"Out of stock": "Varasto loppu",
|
|
223
|
+
"Up to %s": "Jopa %s",
|
|
224
|
+
"From %s": "Alkaen %s",
|
|
225
|
+
"Old product price": "Vanhan tuotteen hinta",
|
|
226
|
+
"Recently Viewed Products": "Äskettäin katsotut tuotteet",
|
|
227
|
+
"New Products": "Uudet Tuotteet",
|
|
228
|
+
"This payment method is not supported yet.": "Tätä maksutapaa ei vielä tueta.",
|
|
229
|
+
"You must login or register to add items to your wishlist.": "Sinun on kirjauduttava sisään tai rekisteröidyttävä, jotta voit lisätä kohteita toivelistallesi.",
|
|
230
|
+
"Street address": "Katuosoite",
|
|
231
|
+
"Street address line %s": "Katuosoite linja %s",
|
|
232
|
+
"This is default Billing Address": "Tämä on oletusarvoinen laskutusosoite",
|
|
233
|
+
"This is default Shipping Address": "Tämä on oletusarvoinen toimitusosoite",
|
|
234
|
+
"Country": "Maa",
|
|
235
|
+
"Save address": "Tallenna osoite",
|
|
236
|
+
"Product %s thumbnail.": "Tuotteen %s pikkukuva.",
|
|
237
|
+
"Awful": "Kauheaa",
|
|
238
|
+
"Bad": "Huono",
|
|
239
|
+
"Average": "Keskimääräinen",
|
|
240
|
+
"Good": "Hyvä",
|
|
241
|
+
"Awesome": "Mahtavaa",
|
|
242
|
+
"Submit Review": "Lähetä Arvostelu",
|
|
243
|
+
"Nickname": "Nimimerkki",
|
|
244
|
+
"Review": "Arvostelu",
|
|
245
|
+
"Carrier method: ": "Rahdinkuljettajan menetelmä:",
|
|
246
|
+
"Rate: ": "Luokitus: ",
|
|
247
|
+
"Previous page": "Edellinen sivu",
|
|
248
|
+
"Page %s": "Sivu %s",
|
|
249
|
+
"Next page": "Seuraava sivu",
|
|
250
|
+
"Play video": "Toista video",
|
|
251
|
+
"Play video %s": "Toista video %s",
|
|
252
|
+
"Please sign in first!": "Kirjaudu sisään ensin!",
|
|
253
|
+
"Remove from Wishlist": "Poista toivelistalta",
|
|
254
|
+
"Add to Wishlist": "Lisää toivelistaan",
|
|
255
|
+
"Show less": "Näytä vähemmän",
|
|
256
|
+
"Show more": "Näytä lisää",
|
|
257
|
+
"Written by ": "Kirjoittanut ",
|
|
258
|
+
", written at %s": ", kirjoitettu osoitteessa %s",
|
|
259
|
+
"Purchase Order Number": "Ostotilauksen numero",
|
|
260
|
+
"Error fetching Config!": null,
|
|
261
|
+
"Unable to fetch compare list": null,
|
|
262
|
+
"Product is added to the compare list": null,
|
|
263
|
+
"Unable to add product to the compare list": null,
|
|
264
|
+
"Product is removed from the compare list": null,
|
|
265
|
+
"Unable to remove product from the compare list": null,
|
|
266
|
+
"Compare list is cleared": null,
|
|
267
|
+
"Unable to clear product compare list": null,
|
|
268
|
+
"Error fetching LinkedProducts!": null,
|
|
269
|
+
"Write a review": null,
|
|
270
|
+
"The minimum amount you can purchase is %s": null,
|
|
271
|
+
"The maximum amount you can purchase is %s": null,
|
|
272
|
+
"You can buy this product only in quantities of %s at a time.": null,
|
|
273
|
+
"None": null,
|
|
274
|
+
"1 item": null,
|
|
275
|
+
"%s items": null,
|
|
276
|
+
"Product Compare": null,
|
|
277
|
+
"Compare": null,
|
|
278
|
+
"Compare Page": null,
|
|
279
|
+
"Welcome, %s!": null,
|
|
280
|
+
"Check new arrivals": null,
|
|
281
|
+
"here!": null,
|
|
282
|
+
"Error fetching URL-rewrites!": null,
|
|
283
|
+
"Personal information": null,
|
|
284
|
+
"Payment": null,
|
|
285
|
+
"Pick in Store": null,
|
|
286
|
+
"Transactional [default state + hover]": null,
|
|
287
|
+
"Button text": null,
|
|
288
|
+
"Supportive [default state + hover]": null,
|
|
289
|
+
"Secondary button": null,
|
|
290
|
+
"Desktop": null,
|
|
291
|
+
"Heading 1": null,
|
|
292
|
+
"Heading 2": null,
|
|
293
|
+
"Heading 3": null,
|
|
294
|
+
"The ": null,
|
|
295
|
+
"website": null,
|
|
296
|
+
" aims to achieve": null,
|
|
297
|
+
" following ": null,
|
|
298
|
+
"business goals:": null,
|
|
299
|
+
"Mobile": null,
|
|
300
|
+
"Select color": null,
|
|
301
|
+
"Your email address": null,
|
|
302
|
+
"Notification messages": null,
|
|
303
|
+
"Style Guide page": null,
|
|
304
|
+
"Registered Customers": null,
|
|
305
|
+
"If you have an account, sign in with your email address.": null,
|
|
306
|
+
"Sign In": null,
|
|
307
|
+
"New Customers": null,
|
|
308
|
+
"Creating an account has many benefits:": null,
|
|
309
|
+
" check out faster, keep more than one address, track orders and more.": null,
|
|
310
|
+
"Create an Account": null,
|
|
311
|
+
"Forgot Your Password?": null,
|
|
312
|
+
"Please enter your email address below to receive a password reset link.": null,
|
|
313
|
+
"Don't have an account?": null,
|
|
314
|
+
"Product Compare Page": null,
|
|
315
|
+
"Enter your password": null,
|
|
316
|
+
"This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.": null,
|
|
317
|
+
"Error fetching Product List Information!": null,
|
|
318
|
+
"Error fetching Category!": null,
|
|
319
|
+
"quantity": null,
|
|
320
|
+
"Please, remove out of stock products from cart": null,
|
|
321
|
+
"Proceed to checkout": null,
|
|
322
|
+
"About": null,
|
|
323
|
+
"About Us": null,
|
|
324
|
+
"Additional info": null,
|
|
325
|
+
"Privacy Policy": null,
|
|
326
|
+
"Terms of use": null,
|
|
327
|
+
"Use of Cookies": null,
|
|
328
|
+
"Popular categories": null,
|
|
329
|
+
"Women": null,
|
|
330
|
+
"Men": null,
|
|
331
|
+
"Accessories": null,
|
|
332
|
+
"Follow": null,
|
|
333
|
+
"LinkedIn": null,
|
|
334
|
+
"Facebook": null,
|
|
335
|
+
"Twitter": null,
|
|
336
|
+
"Clear All": null,
|
|
337
|
+
"Share": null,
|
|
338
|
+
"Coupon code discount": null,
|
|
339
|
+
"Discount": null,
|
|
340
|
+
"Subtotal": null,
|
|
341
|
+
"Estimated Shipping": null,
|
|
342
|
+
"Cannot proceed to checkout. Remove out of stock products first.": null,
|
|
343
|
+
"%s Items": null,
|
|
344
|
+
"You can track your order status by creating an account.": null,
|
|
345
|
+
"Email address": null,
|
|
346
|
+
"Guests can not subscribe to the newsletter. You must create an account or login to subscribe.": null,
|
|
347
|
+
"Compare products": null,
|
|
348
|
+
"We have removed your newsletter subscription.": null,
|
|
349
|
+
"We have saved your subscription": null,
|
|
350
|
+
"A subscription confirmation email has been sent!": null,
|
|
351
|
+
"We have updated your subscription.": null,
|
|
352
|
+
"From %s to %s": null,
|
|
353
|
+
"Search products": null,
|
|
354
|
+
"Subscribe": null,
|
|
355
|
+
"read more": null,
|
|
356
|
+
"Excl. tax:": null,
|
|
357
|
+
"Billing address": null,
|
|
358
|
+
"Your discount code": null,
|
|
359
|
+
"Product compare": null,
|
|
360
|
+
"Clear Compare": null,
|
|
361
|
+
"Price": null,
|
|
362
|
+
"You have nothing to compare": null,
|
|
363
|
+
"You can create an account after checkout": null,
|
|
364
|
+
"Excl. tax: %s": null,
|
|
365
|
+
"Value": null,
|
|
366
|
+
"Add": null,
|
|
367
|
+
"Subtract": null,
|
|
368
|
+
"Drop files here or": null,
|
|
369
|
+
"Select files": null,
|
|
370
|
+
"Confirmation request has been sent.": null,
|
|
371
|
+
"Thank you for your subscription.": null,
|
|
372
|
+
"Details": null,
|
|
373
|
+
"Reviews": null,
|
|
374
|
+
"Title": null,
|
|
375
|
+
"Remaining Downloads": null,
|
|
376
|
+
"Discount: ": null,
|
|
377
|
+
"Wishlist has been shared": null,
|
|
378
|
+
"Links:": null,
|
|
379
|
+
"Quantity: %s": null,
|
|
380
|
+
" (default shipping & billing)": null,
|
|
381
|
+
" (default billing address)": null,
|
|
382
|
+
" (default shipping address)": null,
|
|
383
|
+
"Error fetching Product List!": null,
|
|
384
|
+
"Tax/VAT Number": null,
|
|
385
|
+
"Your Tax/VAT Number": null,
|
|
386
|
+
"Subscribe to newsletter": null,
|
|
387
|
+
"Your first name": null,
|
|
388
|
+
"Your last name": null,
|
|
389
|
+
"Retype your password": null,
|
|
390
|
+
"Payment method": null,
|
|
391
|
+
"There are no reviews yet! Click button below to submit one!": null,
|
|
392
|
+
"Product tabs": null,
|
|
393
|
+
"We could not preselect pickup location based on available information, please select it manually.": null,
|
|
394
|
+
"Store": null,
|
|
395
|
+
"Select store": null,
|
|
396
|
+
"In stock": null,
|
|
397
|
+
"SKU: %s": null,
|
|
398
|
+
"Shipping method": null,
|
|
399
|
+
"Now shopping by:": null,
|
|
400
|
+
"1 filter selected": null,
|
|
401
|
+
" filters selected": null,
|
|
402
|
+
"Error fetching Slider!": null,
|
|
403
|
+
"Reset all": null,
|
|
404
|
+
"Error fetching NewProducts!": null,
|
|
405
|
+
"Error fetching Recently Viewed Products Information!": null,
|
|
406
|
+
"Select Store": null,
|
|
407
|
+
"We were unable to find nearby locations for provided search query.": null,
|
|
408
|
+
"City or Postcode": null,
|
|
409
|
+
"Please provide postcode or city name to find nearest pickup locations.": null,
|
|
410
|
+
"Ship here": null,
|
|
411
|
+
"Slide crumb": null,
|
|
412
|
+
"Previous": null,
|
|
413
|
+
"Next": null,
|
|
414
|
+
"State / Province": null,
|
|
415
|
+
"Your street address": null,
|
|
416
|
+
"Your street address line %s": null,
|
|
417
|
+
"VAT Number": null,
|
|
418
|
+
"Your city": null,
|
|
419
|
+
"Zip / Postal code": null,
|
|
420
|
+
"Your zip / postal code": null,
|
|
421
|
+
"Sample": null,
|
|
422
|
+
"Edit wishlist item": null,
|
|
423
|
+
"Please sign in to subscribe for notification": null,
|
|
424
|
+
"You saved the alert subscription": null,
|
|
425
|
+
"Notify me when the price drops": null,
|
|
426
|
+
"Notify me when this product is in stock": null,
|
|
427
|
+
"Unable to confirm account": null,
|
|
428
|
+
"The URL is invalid. Some parameters are missing.": null,
|
|
429
|
+
"View cookie policy": null,
|
|
430
|
+
"Please, sign in to access this page contents!": null,
|
|
431
|
+
"No product data!": null,
|
|
432
|
+
"Product was added to cart!": null,
|
|
433
|
+
"Passwords do not match!": null,
|
|
434
|
+
"Incorrect input!": null,
|
|
435
|
+
"Value is out of range!": null,
|
|
436
|
+
"Field contains issues!": null,
|
|
437
|
+
"Incorrect input! Only letters allowed!": null,
|
|
438
|
+
"Incorrect input! Only words allowed!": null,
|
|
439
|
+
"Incorrect input! Alpha-Numeric value required!": null,
|
|
440
|
+
"Incorrect input! Alpha-Dash value required!": null,
|
|
441
|
+
"Incorrect input! URL required!": null,
|
|
442
|
+
"Incorrect input! Numeric value required!": null,
|
|
443
|
+
"Incorrect input! Numeric-Dash value required!": null,
|
|
444
|
+
"Incorrect input! Integer required!": null,
|
|
445
|
+
"Incorrect input! Natural number required!": null,
|
|
446
|
+
"Incorrect date input!": null,
|
|
447
|
+
"Incorrect password input!": null,
|
|
448
|
+
"Incorrect phone input!": null,
|
|
449
|
+
"Your name": null,
|
|
450
|
+
"Your email": null,
|
|
451
|
+
"Select item...": null,
|
|
452
|
+
"Your email name": null,
|
|
453
|
+
"Passwords can't be the same as email!": null,
|
|
454
|
+
"Minimal value is %s!": null,
|
|
455
|
+
"Maximum value is %s!": null,
|
|
456
|
+
"Minimum %s characters!": null,
|
|
457
|
+
"Maximum %s characters!": null,
|
|
458
|
+
"Incorrect or missing options!": null,
|
|
459
|
+
"Starting at": null,
|
|
460
|
+
"from": null,
|
|
461
|
+
"to": null,
|
|
462
|
+
"As low as": null,
|
|
463
|
+
"Compatible file extensions to upload:": null,
|
|
464
|
+
"Drop file here or": null,
|
|
465
|
+
"Select file": null,
|
|
466
|
+
"Sorry! The product %s is out of stock!": null,
|
|
467
|
+
"Sorry! Minimum quantity for this product is %s!": null,
|
|
468
|
+
"Sorry! Maximum quantity for this product is %s!": null,
|
|
469
|
+
"Choose %s...": null,
|
|
470
|
+
"Current password": null,
|
|
471
|
+
"Your current password": null,
|
|
472
|
+
"Your new password": null,
|
|
473
|
+
"New passwords can't be the same as old password!": null,
|
|
474
|
+
"Your nickname": null,
|
|
475
|
+
"Your state / province": null,
|
|
476
|
+
"Select region...": null,
|
|
477
|
+
"Select country...": null,
|
|
478
|
+
"Your phone number": null,
|
|
479
|
+
"Your tax/VAT number": null,
|
|
480
|
+
"Select option...": null,
|
|
481
|
+
"Min quantity %s!": null,
|
|
482
|
+
"Max quantity %s!": null,
|
|
483
|
+
"Product is out of stock!": null,
|
|
484
|
+
"Select product...": null,
|
|
485
|
+
"Option": null,
|
|
486
|
+
"Available items moved to cart": null,
|
|
487
|
+
"Incorrect email format!": null,
|
|
488
|
+
"Incorrect list of emails!": null,
|
|
489
|
+
"Desktop Content Wrapper Max Width: 1400px": null,
|
|
490
|
+
"Padding Right: 32px": null,
|
|
491
|
+
"Padding Left: 32px": null,
|
|
492
|
+
"Mobile Content Wrapper Max Width: 810px": null,
|
|
493
|
+
"Padding Right: 14px": null,
|
|
494
|
+
"Padding Left: 14px": null,
|
|
495
|
+
"Color scheme": null,
|
|
496
|
+
"PRIMARY BASE": null,
|
|
497
|
+
"PRIMARY HOVER": null,
|
|
498
|
+
"PRIMARY HIGHTLIGHT": null,
|
|
499
|
+
"SECONDARY BASE": null,
|
|
500
|
+
"SECONDARY HOVER": null,
|
|
501
|
+
"SECONDARY HIGHLIGHT": null,
|
|
502
|
+
"TEXT": null,
|
|
503
|
+
"ERROR": null,
|
|
504
|
+
"SUCCESS": null,
|
|
505
|
+
"INFO": null,
|
|
506
|
+
"Select": null,
|
|
507
|
+
"Text": null,
|
|
508
|
+
"Checkbox": null,
|
|
509
|
+
"Radio": null,
|
|
510
|
+
"Breadcrumbs": null,
|
|
511
|
+
"My Orders": null,
|
|
512
|
+
"My Downloadable": null,
|
|
513
|
+
"My Wish List": null,
|
|
514
|
+
"Address Book": null,
|
|
515
|
+
"Account Information": null,
|
|
516
|
+
"Edit Account Information": null,
|
|
517
|
+
"Save": null,
|
|
518
|
+
"Change Email": null,
|
|
519
|
+
"Change Password": null,
|
|
520
|
+
"Your new email": null,
|
|
521
|
+
"Confirm New Password ": null,
|
|
522
|
+
"Product Name": null,
|
|
523
|
+
"Qty": null,
|
|
524
|
+
"Reorder": null,
|
|
525
|
+
"Subscribe to Order Status": null,
|
|
526
|
+
"Invoices": null,
|
|
527
|
+
"Order Shipments": null,
|
|
528
|
+
"Refunds": null,
|
|
529
|
+
"Discount Amount": null,
|
|
530
|
+
"Row Total": null,
|
|
531
|
+
"Order Information": null,
|
|
532
|
+
"Shipping Address": null,
|
|
533
|
+
"Billing Address": null,
|
|
534
|
+
"Shipping Method": null,
|
|
535
|
+
"Payment Method": null,
|
|
536
|
+
"Ordered": null,
|
|
537
|
+
"Canceled": null,
|
|
538
|
+
"Invoiced": null,
|
|
539
|
+
"Refunded": null,
|
|
540
|
+
"Returned": null,
|
|
541
|
+
"Shipped": null,
|
|
542
|
+
"Shipping & Handling": null,
|
|
543
|
+
"Grand Total (Excl.Tax)": null,
|
|
544
|
+
"Grand Total (Incl.Tax)": null,
|
|
545
|
+
"Grand Total to be Charged": null,
|
|
546
|
+
"Order # %s": null,
|
|
547
|
+
"SKU": null,
|
|
548
|
+
"Confirm New password": null,
|
|
549
|
+
"Change %s": null,
|
|
550
|
+
"Manage Addresses": null,
|
|
551
|
+
"Incorrect File extension upload!": null,
|
|
552
|
+
"Coupon code discount ": null,
|
|
553
|
+
"Please sign in or remove downloadable products from cart!": null,
|
|
554
|
+
"AM": null,
|
|
555
|
+
"PM": null,
|
|
556
|
+
"Your VAT number": null,
|
|
557
|
+
"Year": null,
|
|
558
|
+
"Month": null,
|
|
559
|
+
"Day": null,
|
|
560
|
+
"Hours": null,
|
|
561
|
+
"Minutes": null,
|
|
562
|
+
"AM / PM": null,
|
|
563
|
+
"Select date": null,
|
|
564
|
+
"Select date & time": null,
|
|
565
|
+
"Select time": null,
|
|
566
|
+
"Discount (%s)": null,
|
|
567
|
+
"Purchase Order Number: %s": null,
|
|
568
|
+
"You have not purchased any downloadable products yet.": null,
|
|
569
|
+
"All %s": null,
|
|
570
|
+
"Print Invoice": null,
|
|
571
|
+
"Print All Invoices": null,
|
|
572
|
+
"Print Shipment": null,
|
|
573
|
+
"Print All Shipments": null,
|
|
574
|
+
"Print Refund": null,
|
|
575
|
+
"Print All Refunds": null,
|
|
576
|
+
"About Your Order": null,
|
|
577
|
+
"About Your %s": null,
|
|
578
|
+
"List navigation": null,
|
|
579
|
+
"Not possible to fetch while offline": null,
|
|
580
|
+
"Buy %s with ": null,
|
|
581
|
+
"Maximum %s characters (%s remaining)": null,
|
|
582
|
+
"Maximum %s characters": null,
|
|
583
|
+
"Maximum %s characters (%s too many)": null,
|
|
584
|
+
"If there is an account associated with %s you will receive an email with a link to reset your password": null,
|
|
585
|
+
" discount each": null,
|
|
586
|
+
"Sort by": null,
|
|
587
|
+
"The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later.": null,
|
|
588
|
+
"Unable to reset password": null,
|
|
589
|
+
"Please enter no more than %s characters.": null,
|
|
590
|
+
"You saved the account information.": null,
|
|
591
|
+
"Minimum of different classes of characters in password is %s. ": null,
|
|
592
|
+
"Classes of characters: Lower Case, Upper Case, Digits, Special Characters.": null,
|
|
593
|
+
"We can`t add the item to Wishlist right now: %s": null,
|
|
594
|
+
"This email does not require confirmation.": null,
|
|
595
|
+
"Please check your email for confirmation key.": null,
|
|
596
|
+
"Wrong email! Please, try again!": null,
|
|
597
|
+
"Send confirmation link": null,
|
|
598
|
+
"Please add a shipping address and a shipping method!": null,
|
|
599
|
+
"Unable to re-request confirmation email": null,
|
|
600
|
+
"Please enter your email below and we will send you the confirmation link.": null,
|
|
601
|
+
"Send Confirmation Page": null,
|
|
602
|
+
"Send Confirmation Action": null,
|
|
603
|
+
"Number": null,
|
|
604
|
+
"Telephone": null,
|
|
605
|
+
"Print Order": null,
|
|
606
|
+
"Remove file": null,
|
|
607
|
+
"The requested qty is not available!": null,
|
|
608
|
+
"County": null,
|
|
609
|
+
"State/Province": null,
|
|
610
|
+
"Region": null,
|
|
611
|
+
"You %s the address": null,
|
|
612
|
+
"You need to choose options for your item.": null
|
|
613
|
+
}
|