@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/fa_IR.json
ADDED
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Something went wrong!": null,
|
|
3
|
+
"Error fetching Config!": null,
|
|
4
|
+
"Product added to wish-list!": null,
|
|
5
|
+
"Error updating wish list!": null,
|
|
6
|
+
"Error clearing wish list!": null,
|
|
7
|
+
"Available items moved to cart": null,
|
|
8
|
+
"Product has been removed from your Wish List!": null,
|
|
9
|
+
"Error updating wishlist!": null,
|
|
10
|
+
"No product data!": null,
|
|
11
|
+
"Product was added to cart!": null,
|
|
12
|
+
"Coupon was applied!": null,
|
|
13
|
+
"Coupon was removed!": null,
|
|
14
|
+
"Unable to fetch compare list": null,
|
|
15
|
+
"Product is added to the compare list": null,
|
|
16
|
+
"Unable to add product to the compare list": null,
|
|
17
|
+
"Product is removed from the compare list": null,
|
|
18
|
+
"Unable to remove product from the compare list": null,
|
|
19
|
+
"Compare list is cleared": null,
|
|
20
|
+
"Unable to clear product compare list": null,
|
|
21
|
+
"Your session is over, you are logged out!": null,
|
|
22
|
+
"You are successfully logged out!": null,
|
|
23
|
+
"Your account is confirmed!": null,
|
|
24
|
+
"Something went wrong! Please, try again!": null,
|
|
25
|
+
"You are successfully logged in!": null,
|
|
26
|
+
"Ooops!": null,
|
|
27
|
+
"Back to homepage": null,
|
|
28
|
+
"Error fetching LinkedProducts!": null,
|
|
29
|
+
"You must login or register to review products.": null,
|
|
30
|
+
"Write a review": null,
|
|
31
|
+
"Yes": null,
|
|
32
|
+
"No": null,
|
|
33
|
+
"The minimum amount you can purchase is %s": null,
|
|
34
|
+
"The maximum amount you can purchase is %s": null,
|
|
35
|
+
"You can buy this product only in quantities of %s at a time.": null,
|
|
36
|
+
"None": null,
|
|
37
|
+
"Cart": null,
|
|
38
|
+
"Please sign-in to complete checkout!": null,
|
|
39
|
+
"Shopping cart": null,
|
|
40
|
+
"Please add at least one product to cart!": null,
|
|
41
|
+
"Checkout": null,
|
|
42
|
+
"Your account has been created successfully!": null,
|
|
43
|
+
"Confirm account": null,
|
|
44
|
+
"Share Wishlist": null,
|
|
45
|
+
"item": null,
|
|
46
|
+
"items": null,
|
|
47
|
+
"My account": null,
|
|
48
|
+
"My Account": null,
|
|
49
|
+
"Please, sign in to access this page contents!": null,
|
|
50
|
+
"My Orders": null,
|
|
51
|
+
"My Downloadable": null,
|
|
52
|
+
"My Wish List": null,
|
|
53
|
+
"Address Book": null,
|
|
54
|
+
"Account Information": null,
|
|
55
|
+
"Edit Account Information": null,
|
|
56
|
+
"Newsletter Subscription": null,
|
|
57
|
+
"Search": null,
|
|
58
|
+
"Menu": null,
|
|
59
|
+
"Password Change Page": null,
|
|
60
|
+
"Password has been successfully updated!": null,
|
|
61
|
+
"Your password and confirmation password do not match.": null,
|
|
62
|
+
"New version available!": null,
|
|
63
|
+
"Sign in": null,
|
|
64
|
+
"Create account": null,
|
|
65
|
+
"Product Compare": null,
|
|
66
|
+
"Compare": null,
|
|
67
|
+
"Forgot password": null,
|
|
68
|
+
"1 item": null,
|
|
69
|
+
"%s items": null,
|
|
70
|
+
"Contact Us": null,
|
|
71
|
+
"Shared Wishlist": null,
|
|
72
|
+
"Error fetching URL-rewrites!": null,
|
|
73
|
+
"There are no products in cart.": null,
|
|
74
|
+
"quantity": null,
|
|
75
|
+
"subtotal": null,
|
|
76
|
+
"Have a discount code?": null,
|
|
77
|
+
"Please, remove out of stock products from cart": null,
|
|
78
|
+
"Proceed to checkout": null,
|
|
79
|
+
"Frequently bought together": null,
|
|
80
|
+
"Free shipping on order 49$ and more.": null,
|
|
81
|
+
"View cookie policy": null,
|
|
82
|
+
"Got it": null,
|
|
83
|
+
"This is a demo store": null,
|
|
84
|
+
"This is a demo store. No orders will be fulfilled.": null,
|
|
85
|
+
"Personal information": null,
|
|
86
|
+
"Payment": null,
|
|
87
|
+
"Thank you for your purchase!": null,
|
|
88
|
+
"Order details": null,
|
|
89
|
+
"Shipping": null,
|
|
90
|
+
"Pick in Store": null,
|
|
91
|
+
"Checkout page": null,
|
|
92
|
+
"Registered Customers": null,
|
|
93
|
+
"If you have an account, sign in with your email address.": null,
|
|
94
|
+
"Sign In": null,
|
|
95
|
+
"New Customers": null,
|
|
96
|
+
"Creating an account has many benefits:": null,
|
|
97
|
+
" check out faster, keep more than one address, track orders and more.": null,
|
|
98
|
+
"Create an Account": null,
|
|
99
|
+
"Forgot Your Password?": null,
|
|
100
|
+
"Please enter your email address below to receive a password reset link.": null,
|
|
101
|
+
"Product Compare Page": null,
|
|
102
|
+
"Desktop Content Wrapper Max Width: 1400px": null,
|
|
103
|
+
"Padding Right: 32px": null,
|
|
104
|
+
"Padding Left: 32px": null,
|
|
105
|
+
"Mobile Content Wrapper Max Width: 810px": null,
|
|
106
|
+
"Padding Right: 14px": null,
|
|
107
|
+
"Padding Left: 14px": null,
|
|
108
|
+
"Color scheme": null,
|
|
109
|
+
"PRIMARY BASE": null,
|
|
110
|
+
"PRIMARY HOVER": null,
|
|
111
|
+
"PRIMARY HIGHTLIGHT": null,
|
|
112
|
+
"SECONDARY BASE": null,
|
|
113
|
+
"SECONDARY HOVER": null,
|
|
114
|
+
"SECONDARY HIGHLIGHT": null,
|
|
115
|
+
"TEXT": null,
|
|
116
|
+
"ERROR": null,
|
|
117
|
+
"SUCCESS": null,
|
|
118
|
+
"INFO": null,
|
|
119
|
+
"Transactional [default state + hover]": null,
|
|
120
|
+
"Button text": null,
|
|
121
|
+
"Supportive [default state + hover]": null,
|
|
122
|
+
"Secondary button": null,
|
|
123
|
+
"Desktop": null,
|
|
124
|
+
"Heading 1": null,
|
|
125
|
+
"Heading 2": null,
|
|
126
|
+
"Heading 3": null,
|
|
127
|
+
"The ": null,
|
|
128
|
+
"website": null,
|
|
129
|
+
" aims to achieve": null,
|
|
130
|
+
" following ": null,
|
|
131
|
+
"business goals:": null,
|
|
132
|
+
"Mobile": null,
|
|
133
|
+
"Select": null,
|
|
134
|
+
"Select color": null,
|
|
135
|
+
"Text": null,
|
|
136
|
+
"Your email address": null,
|
|
137
|
+
"Checkbox": null,
|
|
138
|
+
"Radio": null,
|
|
139
|
+
"Breadcrumbs": null,
|
|
140
|
+
"Notification messages": null,
|
|
141
|
+
"Style Guide page": null,
|
|
142
|
+
"Don't have an account?": null,
|
|
143
|
+
"Home": null,
|
|
144
|
+
"Breadcrumbs (current location)...": null,
|
|
145
|
+
"We have updated the website. Reload is required to apply changes.": null,
|
|
146
|
+
"Reload the page": null,
|
|
147
|
+
"Dismiss": null,
|
|
148
|
+
"Password Change Actions": null,
|
|
149
|
+
"Change My Password": null,
|
|
150
|
+
"Error fetching Product List Information!": null,
|
|
151
|
+
"Error fetching Category!": null,
|
|
152
|
+
"Search results for: ": null,
|
|
153
|
+
"This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.": null,
|
|
154
|
+
"Unable to confirm account": null,
|
|
155
|
+
"The URL is invalid. Some parameters are missing.": null,
|
|
156
|
+
"Email": null,
|
|
157
|
+
"Password": null,
|
|
158
|
+
"Enter your password": null,
|
|
159
|
+
"Confirm your account": null,
|
|
160
|
+
"Confirm Account Page": null,
|
|
161
|
+
"Confirm Account Action": null,
|
|
162
|
+
"My Account page": null,
|
|
163
|
+
"Compare Page": null,
|
|
164
|
+
"OK": null,
|
|
165
|
+
"Welcome, %s!": null,
|
|
166
|
+
"Cancel": null,
|
|
167
|
+
"Check new arrivals": null,
|
|
168
|
+
"here!": null,
|
|
169
|
+
"You are currently offline.": null,
|
|
170
|
+
"We could not load the content. Check your internet connection and try again.": null,
|
|
171
|
+
"Offline mode": null,
|
|
172
|
+
"Wishlist shared by ": null,
|
|
173
|
+
"Sign in to your account": null,
|
|
174
|
+
"Get password link": null,
|
|
175
|
+
"Create new account": null,
|
|
176
|
+
"Confirm the email": null,
|
|
177
|
+
"Newsletter": null,
|
|
178
|
+
"About": null,
|
|
179
|
+
"About Us": null,
|
|
180
|
+
"Additional info": null,
|
|
181
|
+
"Privacy Policy": null,
|
|
182
|
+
"Terms of use": null,
|
|
183
|
+
"Use of Cookies": null,
|
|
184
|
+
"Popular categories": null,
|
|
185
|
+
"Women": null,
|
|
186
|
+
"Men": null,
|
|
187
|
+
"Accessories": null,
|
|
188
|
+
"Follow": null,
|
|
189
|
+
"LinkedIn": null,
|
|
190
|
+
"Facebook": null,
|
|
191
|
+
"Twitter": null,
|
|
192
|
+
"Filters": null,
|
|
193
|
+
"This field is required!": null,
|
|
194
|
+
"Incorrect input!": null,
|
|
195
|
+
"Value is out of range!": null,
|
|
196
|
+
"Field contains issues!": null,
|
|
197
|
+
"Incorrect File extension upload!": null,
|
|
198
|
+
"Incorrect input! Only letters allowed!": null,
|
|
199
|
+
"Incorrect input! Only words allowed!": null,
|
|
200
|
+
"Incorrect input! Alpha-Numeric value required!": null,
|
|
201
|
+
"Incorrect input! Alpha-Dash value required!": null,
|
|
202
|
+
"Incorrect input! URL required!": null,
|
|
203
|
+
"Incorrect input! Numeric value required!": null,
|
|
204
|
+
"Incorrect input! Numeric-Dash value required!": null,
|
|
205
|
+
"Incorrect input! Integer required!": null,
|
|
206
|
+
"Incorrect input! Natural number required!": null,
|
|
207
|
+
"Incorrect email format!": null,
|
|
208
|
+
"Incorrect list of emails!": null,
|
|
209
|
+
"Incorrect date input!": null,
|
|
210
|
+
"Incorrect password input!": null,
|
|
211
|
+
"Incorrect phone input!": null,
|
|
212
|
+
" (default shipping & billing)": null,
|
|
213
|
+
" (default billing address)": null,
|
|
214
|
+
" (default shipping address)": null,
|
|
215
|
+
"Wishlist is empty!": null,
|
|
216
|
+
"Clear All": null,
|
|
217
|
+
"Add All to Cart": null,
|
|
218
|
+
"Share": null,
|
|
219
|
+
"Remove item (%s)": null,
|
|
220
|
+
"Remove items (%s)": null,
|
|
221
|
+
"Coupon code discount": null,
|
|
222
|
+
"Discount": null,
|
|
223
|
+
"Summary": null,
|
|
224
|
+
"Subtotal": null,
|
|
225
|
+
"Estimated Shipping": null,
|
|
226
|
+
"Order total": null,
|
|
227
|
+
"Tax": null,
|
|
228
|
+
"Page not found": null,
|
|
229
|
+
"Remove": null,
|
|
230
|
+
"Delete": null,
|
|
231
|
+
"Continue shopping": null,
|
|
232
|
+
"You can track your order status by creating an account.": null,
|
|
233
|
+
"Email address": null,
|
|
234
|
+
"Your order # is: %s": null,
|
|
235
|
+
"We`ll email you an order confirmation with details and tracking info.": null,
|
|
236
|
+
"Terms and Conditions": null,
|
|
237
|
+
"There are no Terms and Conditions configured.": null,
|
|
238
|
+
"Guests can not subscribe to the newsletter. You must create an account or login to subscribe.": null,
|
|
239
|
+
"Update Password": null,
|
|
240
|
+
"Compare products": null,
|
|
241
|
+
"We are experiencing issues, please try again later": null,
|
|
242
|
+
"We have removed your newsletter subscription.": null,
|
|
243
|
+
"We have saved your subscription": null,
|
|
244
|
+
"A subscription confirmation email has been sent!": null,
|
|
245
|
+
"We have updated your subscription.": null,
|
|
246
|
+
"Cannot proceed to checkout. Remove out of stock products first.": null,
|
|
247
|
+
"%s Items": null,
|
|
248
|
+
"This store can not be opened!": null,
|
|
249
|
+
"I agree to terms and conditions": null,
|
|
250
|
+
"read more": null,
|
|
251
|
+
"Excl. tax:": null,
|
|
252
|
+
"Order total:": null,
|
|
253
|
+
"Complete order": null,
|
|
254
|
+
"My billing and shipping are the same": null,
|
|
255
|
+
"Billing address": null,
|
|
256
|
+
"Product compare": null,
|
|
257
|
+
"Clear Compare": null,
|
|
258
|
+
"Price": null,
|
|
259
|
+
"You have nothing to compare": null,
|
|
260
|
+
"Excl. tax: %s": null,
|
|
261
|
+
"Proceed to billing": null,
|
|
262
|
+
"Enter personal information": null,
|
|
263
|
+
"You can create an account after checkout": null,
|
|
264
|
+
"New password": null,
|
|
265
|
+
"Confirm password": null,
|
|
266
|
+
"Retype your password": null,
|
|
267
|
+
"Passwords do not match!": null,
|
|
268
|
+
"Confirmation request has been sent.": null,
|
|
269
|
+
"Thank you for your subscription.": null,
|
|
270
|
+
"Close": null,
|
|
271
|
+
"Image not found": null,
|
|
272
|
+
"Image not specified": null,
|
|
273
|
+
"General subscription": null,
|
|
274
|
+
"Submit": null,
|
|
275
|
+
"Save changes": null,
|
|
276
|
+
"Subscribe": null,
|
|
277
|
+
"Linked products": null,
|
|
278
|
+
"You have no items in your shopping cart.": null,
|
|
279
|
+
"Tax total:": null,
|
|
280
|
+
"Coupon code discount ": null,
|
|
281
|
+
"Discount: ": null,
|
|
282
|
+
"Secure checkout": null,
|
|
283
|
+
"View cart": null,
|
|
284
|
+
"Name: A to Z": null,
|
|
285
|
+
"Name: Z to A": null,
|
|
286
|
+
"Best match": null,
|
|
287
|
+
"%s: Low to High": null,
|
|
288
|
+
"%s: High to Low": null,
|
|
289
|
+
"%s: Ascending": null,
|
|
290
|
+
"%s: Descending": null,
|
|
291
|
+
"Wishlist has been shared": null,
|
|
292
|
+
"Please, select product options!": null,
|
|
293
|
+
"Error cleaning wishlist": null,
|
|
294
|
+
"Send Your message": null,
|
|
295
|
+
"Search products": null,
|
|
296
|
+
"Your email": null,
|
|
297
|
+
"Create Password": null,
|
|
298
|
+
"SEE RESULTS": null,
|
|
299
|
+
"Shopping Options": null,
|
|
300
|
+
"The selected filter combination returned no results.\n Please try again, using a different set of filters.": null,
|
|
301
|
+
"Enter your email address": null,
|
|
302
|
+
"Error fetching Product List!": null,
|
|
303
|
+
"Incorrect data! Please resolve all field validation errors.": null,
|
|
304
|
+
"The email confirmation link has been sent to your email. Please confirm your account to proceed.": null,
|
|
305
|
+
"Add a comment": null,
|
|
306
|
+
"Qty:": null,
|
|
307
|
+
"Add to cart": null,
|
|
308
|
+
"Edit wishlist item": null,
|
|
309
|
+
"Name": null,
|
|
310
|
+
"Your name": null,
|
|
311
|
+
"Phone number": null,
|
|
312
|
+
"What's on your mind?": null,
|
|
313
|
+
"Message": null,
|
|
314
|
+
"Products are loading...": null,
|
|
315
|
+
"%s items found": null,
|
|
316
|
+
"Add new address": null,
|
|
317
|
+
"Minimal value is %s!": null,
|
|
318
|
+
"Maximum value is %s!": null,
|
|
319
|
+
"Minimum %s characters!": null,
|
|
320
|
+
"Maximum %s characters!": null,
|
|
321
|
+
"Maybe later": null,
|
|
322
|
+
"Tap:": null,
|
|
323
|
+
", then": null,
|
|
324
|
+
"Add to Home Screen": null,
|
|
325
|
+
"Browse website in full-screen:": null,
|
|
326
|
+
"Add website to your home screen for the full-screen browsing experience!": null,
|
|
327
|
+
"Add to home screen": null,
|
|
328
|
+
"Out of stock": null,
|
|
329
|
+
"Incorrect or missing options!": null,
|
|
330
|
+
"Option": null,
|
|
331
|
+
"Forgot password?": null,
|
|
332
|
+
"Create an account": null,
|
|
333
|
+
"Tax/VAT Number": null,
|
|
334
|
+
"Your Tax/VAT Number": null,
|
|
335
|
+
"Subscribe to newsletter": null,
|
|
336
|
+
"Personal Information": null,
|
|
337
|
+
"First Name": null,
|
|
338
|
+
"Your first name": null,
|
|
339
|
+
"Last Name": null,
|
|
340
|
+
"Your last name": null,
|
|
341
|
+
"Sign-Up Information": null,
|
|
342
|
+
"Your email name": null,
|
|
343
|
+
"Passwords can't be the same as email!": null,
|
|
344
|
+
"Sign up": null,
|
|
345
|
+
"Already have an account?": null,
|
|
346
|
+
"Links:": null,
|
|
347
|
+
"Product is out of stock": null,
|
|
348
|
+
"Quantity: %s": null,
|
|
349
|
+
"Your discount code": null,
|
|
350
|
+
"Applied coupon code: ": null,
|
|
351
|
+
"Remove Coupon": null,
|
|
352
|
+
"Send reset link": null,
|
|
353
|
+
"Not Found": null,
|
|
354
|
+
"Page Not Found Content": null,
|
|
355
|
+
"Sorry, we can`t find the page you are looking for! Please press a button below to go back to homepage.": null,
|
|
356
|
+
"Details": null,
|
|
357
|
+
"Reviews": null,
|
|
358
|
+
"Recommended for you": null,
|
|
359
|
+
"You might also like": null,
|
|
360
|
+
"Main product details": null,
|
|
361
|
+
"You have no orders.": null,
|
|
362
|
+
"Order": null,
|
|
363
|
+
"Date": null,
|
|
364
|
+
"Status": null,
|
|
365
|
+
"Total": null,
|
|
366
|
+
"Title": null,
|
|
367
|
+
"Remaining Downloads": null,
|
|
368
|
+
"Address #%s%s": null,
|
|
369
|
+
"You have no configured addresses.": null,
|
|
370
|
+
"No %s address configured.": null,
|
|
371
|
+
"Go to \"Address Book\", to configure them!": null,
|
|
372
|
+
"billing": null,
|
|
373
|
+
"shipping": null,
|
|
374
|
+
"Default %s address": null,
|
|
375
|
+
"My profile": null,
|
|
376
|
+
"Select Store": null,
|
|
377
|
+
"We could not preselect pickup location based on available information, please select it manually.": null,
|
|
378
|
+
"Store": null,
|
|
379
|
+
"Select store": null,
|
|
380
|
+
"In stock": null,
|
|
381
|
+
"SKU: %s": null,
|
|
382
|
+
"Sorry! The product %s is out of stock!": null,
|
|
383
|
+
"Sorry! Minimum quantity for this product is %s!": null,
|
|
384
|
+
"Sorry! Maximum quantity for this product is %s!": null,
|
|
385
|
+
"Starting at": null,
|
|
386
|
+
"As Low as": null,
|
|
387
|
+
"Current product price excl. tax": null,
|
|
388
|
+
"Old product price": null,
|
|
389
|
+
"from": null,
|
|
390
|
+
"to": null,
|
|
391
|
+
"As low as": null,
|
|
392
|
+
"Go to Address Book to configure them!": null,
|
|
393
|
+
"Shipping address": null,
|
|
394
|
+
"Use custom address": null,
|
|
395
|
+
"Shipping method": null,
|
|
396
|
+
"There are no shipping methods available, try different address.": null,
|
|
397
|
+
"Payment method": null,
|
|
398
|
+
"The error occurred during initializing payment methods. Please try again later!": null,
|
|
399
|
+
"Load previous": null,
|
|
400
|
+
"We are sorry!": null,
|
|
401
|
+
"There were no products found matching your request.": null,
|
|
402
|
+
"Please, try removing selected filters and try again!": null,
|
|
403
|
+
"Adding...": null,
|
|
404
|
+
"No results found!": null,
|
|
405
|
+
"Select item...": null,
|
|
406
|
+
"Error fetching Slider!": null,
|
|
407
|
+
"Purchase Order Number": null,
|
|
408
|
+
"Error fetching NewProducts!": null,
|
|
409
|
+
"You must login or register to add items to your wishlist.": null,
|
|
410
|
+
"Email addresses, separated by commas": null,
|
|
411
|
+
"Logout": null,
|
|
412
|
+
"Value": null,
|
|
413
|
+
"Add": null,
|
|
414
|
+
"Subtract": null,
|
|
415
|
+
"Recently Viewed Products": null,
|
|
416
|
+
"New Products": null,
|
|
417
|
+
"Error fetching Recently Viewed Products Information!": null,
|
|
418
|
+
"N/A": null,
|
|
419
|
+
"We were unable to find nearby locations for provided search query.": null,
|
|
420
|
+
"City or Postcode": null,
|
|
421
|
+
"Please provide postcode or city name to find nearest pickup locations.": null,
|
|
422
|
+
"Please sign in first!": null,
|
|
423
|
+
"Remove from Wishlist": null,
|
|
424
|
+
"Add to Wishlist": null,
|
|
425
|
+
"There are no reviews yet! Click button below to submit one!": null,
|
|
426
|
+
"There are no reviews yet! Click button on the right to submit one!": null,
|
|
427
|
+
"%s reviews": null,
|
|
428
|
+
"Current product price": null,
|
|
429
|
+
"Product Price": null,
|
|
430
|
+
"Edit address": null,
|
|
431
|
+
"Confirm delete": null,
|
|
432
|
+
"Sample": null,
|
|
433
|
+
"This payment method is not supported yet.": null,
|
|
434
|
+
"Now shopping by:": null,
|
|
435
|
+
"1 filter selected": null,
|
|
436
|
+
" filters selected": null,
|
|
437
|
+
"Ship here": null,
|
|
438
|
+
"Reset all": null,
|
|
439
|
+
"First name": null,
|
|
440
|
+
"Last name": null,
|
|
441
|
+
"Edit details": null,
|
|
442
|
+
"Change password": null,
|
|
443
|
+
"Can not delete - address is set as default.": null,
|
|
444
|
+
"Rate: ": null,
|
|
445
|
+
"Carrier method: ": null,
|
|
446
|
+
"Up to %s": null,
|
|
447
|
+
"From %s": null,
|
|
448
|
+
"From %s to %s": null,
|
|
449
|
+
"Product %s thumbnail.": null,
|
|
450
|
+
"City": null,
|
|
451
|
+
"Street": null,
|
|
452
|
+
"Choose %s...": null,
|
|
453
|
+
"Save address": null,
|
|
454
|
+
"There was an error requesting the category": null,
|
|
455
|
+
"Show less": null,
|
|
456
|
+
"Show more": null,
|
|
457
|
+
"Awful": null,
|
|
458
|
+
"Bad": null,
|
|
459
|
+
"Average": null,
|
|
460
|
+
"Good": null,
|
|
461
|
+
"Awesome": null,
|
|
462
|
+
"Submit Review": null,
|
|
463
|
+
"Nickname": null,
|
|
464
|
+
"Your nickname": null,
|
|
465
|
+
"Review": null,
|
|
466
|
+
"Save": null,
|
|
467
|
+
"Street address": null,
|
|
468
|
+
"Your street address": null,
|
|
469
|
+
"Street address line %s": null,
|
|
470
|
+
"Your street address line %s": null,
|
|
471
|
+
"State / Province": null,
|
|
472
|
+
"Your state / province": null,
|
|
473
|
+
"Select region...": null,
|
|
474
|
+
"VAT Number": null,
|
|
475
|
+
"This is default Billing Address": null,
|
|
476
|
+
"This is default Shipping Address": null,
|
|
477
|
+
"Country": null,
|
|
478
|
+
"Select country...": null,
|
|
479
|
+
"Zip / Postal code": null,
|
|
480
|
+
"Your zip / postal code": null,
|
|
481
|
+
"Your city": null,
|
|
482
|
+
"Your phone number": null,
|
|
483
|
+
"Slide crumb": null,
|
|
484
|
+
"Previous": null,
|
|
485
|
+
"Next": null,
|
|
486
|
+
"Previous page": null,
|
|
487
|
+
"Page %s": null,
|
|
488
|
+
"Next page": null,
|
|
489
|
+
"Compatible file extensions to upload:": null,
|
|
490
|
+
"Drop files here or": null,
|
|
491
|
+
"Drop file here or": null,
|
|
492
|
+
"Select files": null,
|
|
493
|
+
"Select file": null,
|
|
494
|
+
"Play video": null,
|
|
495
|
+
"Play video %s": null,
|
|
496
|
+
"Your tax/VAT number": null,
|
|
497
|
+
"Change Email": null,
|
|
498
|
+
"Change Password": null,
|
|
499
|
+
"Your new email": null,
|
|
500
|
+
"Current password": null,
|
|
501
|
+
"Your current password": null,
|
|
502
|
+
"Your new password": null,
|
|
503
|
+
"New passwords can't be the same as old password!": null,
|
|
504
|
+
"Confirm New Password ": null,
|
|
505
|
+
"Product Name": null,
|
|
506
|
+
"Reorder": null,
|
|
507
|
+
"Subscribe to Order Status": null,
|
|
508
|
+
"Invoices": null,
|
|
509
|
+
"Order Shipments": null,
|
|
510
|
+
"Refunds": null,
|
|
511
|
+
"Discount Amount": null,
|
|
512
|
+
"Row Total": null,
|
|
513
|
+
"Order Information": null,
|
|
514
|
+
"Shipping Address": null,
|
|
515
|
+
"Billing Address": null,
|
|
516
|
+
"Shipping Method": null,
|
|
517
|
+
"Payment Method": null,
|
|
518
|
+
"Ordered": null,
|
|
519
|
+
"Canceled": null,
|
|
520
|
+
"Invoiced": null,
|
|
521
|
+
"Refunded": null,
|
|
522
|
+
"Returned": null,
|
|
523
|
+
"Shipped": null,
|
|
524
|
+
"Shipping & Handling": null,
|
|
525
|
+
"Grand Total (Excl.Tax)": null,
|
|
526
|
+
"Grand Total (Incl.Tax)": null,
|
|
527
|
+
"Grand Total to be Charged": null,
|
|
528
|
+
"Order # %s": null,
|
|
529
|
+
"SKU": null,
|
|
530
|
+
"Qty": null,
|
|
531
|
+
"Confirm New password": null,
|
|
532
|
+
"Change %s": null,
|
|
533
|
+
"Manage Addresses": null,
|
|
534
|
+
"Product tabs": null,
|
|
535
|
+
"Select option...": null,
|
|
536
|
+
"Min quantity %s!": null,
|
|
537
|
+
"Max quantity %s!": null,
|
|
538
|
+
"Product is out of stock!": null,
|
|
539
|
+
"Select product...": null,
|
|
540
|
+
"Are you sure you want to delete this address?": null,
|
|
541
|
+
"Address details": null,
|
|
542
|
+
"Yes, delete address": null,
|
|
543
|
+
"Items Ordered": null,
|
|
544
|
+
"Written by ": null,
|
|
545
|
+
", written at %s": null,
|
|
546
|
+
"Buy %s for %s each and ": null,
|
|
547
|
+
"save %s%": null,
|
|
548
|
+
"As low as ": null,
|
|
549
|
+
"Please sign in to subscribe for notification": null,
|
|
550
|
+
"You saved the alert subscription": null,
|
|
551
|
+
"Notify me when the price drops": null,
|
|
552
|
+
"Notify me when this product is in stock": 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
|
+
}
|