@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/zh_TW.json
ADDED
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
{
|
|
2
|
+
"%s items found": "%s 項商品已找到",
|
|
3
|
+
"%s reviews": "%s 評論",
|
|
4
|
+
"%s: Ascending": "%s: 上升",
|
|
5
|
+
"%s: Descending": "%s: 降序",
|
|
6
|
+
"%s: High to Low": "%s: 从最贵的",
|
|
7
|
+
"%s: Low to High": "%s: 從最便宜的",
|
|
8
|
+
", then": null,
|
|
9
|
+
", written at %s": ", 寫在 %s",
|
|
10
|
+
"Add All to Cart": "全部新增到購物車",
|
|
11
|
+
"Add new address": "新增地址",
|
|
12
|
+
"Add to Home Screen": "添加到主屏幕",
|
|
13
|
+
"Add to Wishlist": "加入心願單",
|
|
14
|
+
"Add to cart": "新增到購物車",
|
|
15
|
+
"Add to home screen": "添加到主屏幕",
|
|
16
|
+
"Add website to your home screen for the full-screen browsing experience!": "將網站添加到您的主屏幕以獲得全屏瀏覽體驗!",
|
|
17
|
+
"Adding...": "新增...",
|
|
18
|
+
"Address #%s%s": "地址 #%s%s",
|
|
19
|
+
"Address details": "詳細地址",
|
|
20
|
+
"Already have an account?": "如果您有帳戶,請使用您的電子郵件地址登錄。",
|
|
21
|
+
"Applied coupon code: ": "優惠券代碼:",
|
|
22
|
+
"Are you sure you want to delete this address?": "您確定要刪除此地址嗎?",
|
|
23
|
+
"As low as ": "最低",
|
|
24
|
+
"Average": "平均",
|
|
25
|
+
"Awesome": "太棒了",
|
|
26
|
+
"Awful": "可怕",
|
|
27
|
+
"Back to homepage": "返回首頁",
|
|
28
|
+
"Bad": "窳",
|
|
29
|
+
"Best match": "最佳匹配",
|
|
30
|
+
"Breadcrumbs (current location)...": "Breadcrumbs (當前位置)...",
|
|
31
|
+
"Browse website in full-screen:": "全屏瀏覽網站",
|
|
32
|
+
"Can not delete - address is set as default.": "無法刪除-地址設置為默認值。",
|
|
33
|
+
"Cancel": "取消",
|
|
34
|
+
"Carrier method: ": "配送商:",
|
|
35
|
+
"Cart": "購物車",
|
|
36
|
+
"Change My Password": "更改密碼",
|
|
37
|
+
"Change password": "更改密碼",
|
|
38
|
+
"Checkout": "結帳",
|
|
39
|
+
"Checkout page": "訂單摘要頁面",
|
|
40
|
+
"City": "城市",
|
|
41
|
+
"Complete order": "完成訂單",
|
|
42
|
+
"Confirm Account Action": "確認帳戶操作",
|
|
43
|
+
"Confirm Account Page": "確認帳戶頁面",
|
|
44
|
+
"Confirm account": "確認帳號",
|
|
45
|
+
"Confirm delete": "確認刪除",
|
|
46
|
+
"Confirm password": "確認密碼",
|
|
47
|
+
"Confirm the email": "確認email",
|
|
48
|
+
"Confirm your account": "確認您的帳號",
|
|
49
|
+
"Confirmation request has been sent.": "确认请求已发送",
|
|
50
|
+
"Continue shopping": "繼續購物",
|
|
51
|
+
"Country": "國家",
|
|
52
|
+
"Coupon was applied!": "優惠券代碼已被接受",
|
|
53
|
+
"Coupon was removed!": "優惠券代碼無效",
|
|
54
|
+
"Create Password": "創建密碼",
|
|
55
|
+
"Create an account": "創建一個帳戶",
|
|
56
|
+
"Create new account": "建立新帳戶",
|
|
57
|
+
"Current product price": "當前產品價格",
|
|
58
|
+
"Date": "日期",
|
|
59
|
+
"Default %s address": "預設地址",
|
|
60
|
+
"Delete": "刪除",
|
|
61
|
+
"Don't have an account?": "還沒有帳號?",
|
|
62
|
+
"Edit address": "編輯地址",
|
|
63
|
+
"Edit details": "編輯詳細資料",
|
|
64
|
+
"Email": "Email",
|
|
65
|
+
"Enter personal information": "輸入個人信息",
|
|
66
|
+
"Error cleaning wishlist": "清除願望清單時出錯",
|
|
67
|
+
"Error clearing wish list!": "清除願望清單時出錯!",
|
|
68
|
+
"Error updating wish list!": "更新願望清單時出錯!",
|
|
69
|
+
"Filters": "篩選器",
|
|
70
|
+
"First Name": "名字",
|
|
71
|
+
"First name": "名字",
|
|
72
|
+
"Forgot password?": "忘記密碼了嗎?",
|
|
73
|
+
"Free shipping on order 49$ and more.": "訂單滿49 $免運費。",
|
|
74
|
+
"Frequently bought together": "經常一起購買",
|
|
75
|
+
"General subscription": "一般訂閱",
|
|
76
|
+
"Get password link": "獲取密碼鏈接",
|
|
77
|
+
"Go to \"Address Book\", to configure them!": "轉到地址簿進行配置!",
|
|
78
|
+
"Go to Address Book to configure them!": "更改地址",
|
|
79
|
+
"Good": "好",
|
|
80
|
+
"Got it": "好",
|
|
81
|
+
"Guests can not subscribe to the newsletter. You must create an account or login to subscribe.": "来宾不能订阅新闻通讯。您必须创建一个帐户或登录才能订阅。",
|
|
82
|
+
"Have a discount code?": "有優惠碼嗎?",
|
|
83
|
+
"Home": "Home",
|
|
84
|
+
"I agree to terms and conditions": "我同意條款和條件",
|
|
85
|
+
"Image not found": "找不到圖片",
|
|
86
|
+
"Image not specified": "未指定圖片",
|
|
87
|
+
"Incorrect data! Please resolve all field validation errors.": "數據不正確! 請解決所有字段驗證錯誤。",
|
|
88
|
+
"Items Ordered": "訂購商品",
|
|
89
|
+
"Last Name": "姓氏",
|
|
90
|
+
"Last name": "姓氏",
|
|
91
|
+
"Linked products": "關聯產品",
|
|
92
|
+
"Load previous": "加載上一個",
|
|
93
|
+
"Logout": "登出",
|
|
94
|
+
"Main product details": "主要產品細節",
|
|
95
|
+
"Maybe later": "也許以後",
|
|
96
|
+
"Menu": "菜單",
|
|
97
|
+
"My Account": "我的帳戶",
|
|
98
|
+
"My Account page": "我的帳戶頁面",
|
|
99
|
+
"My account": "我的帳戶",
|
|
100
|
+
"My billing and shipping are the same": "我的帳單和配送地址相同",
|
|
101
|
+
"My profile": "我的帳戶",
|
|
102
|
+
"N/A": "不適用",
|
|
103
|
+
"Name": "名稱",
|
|
104
|
+
"Name: A to Z": "名稱:A到Z",
|
|
105
|
+
"Name: Z to A": "名稱:Z到A",
|
|
106
|
+
"New Products": "新商品",
|
|
107
|
+
"New password": "新密碼",
|
|
108
|
+
"New version available!": "新版本可用!",
|
|
109
|
+
"Newsletter Subscription": "電子報訂閱",
|
|
110
|
+
"Next page": "下一頁",
|
|
111
|
+
"Nickname": "暱稱",
|
|
112
|
+
"No": "否",
|
|
113
|
+
"No %s address configured.": "沒有配置%s地址。",
|
|
114
|
+
"No results found!": "未找到結果!",
|
|
115
|
+
"Not Found": "未找到",
|
|
116
|
+
"OK": "確定",
|
|
117
|
+
"Offline mode": "離線模式",
|
|
118
|
+
"Old product price": "舊產品價格",
|
|
119
|
+
"Ooops!": "哎呀!",
|
|
120
|
+
"Order": "訂購",
|
|
121
|
+
"Order details": "訂單詳細信息",
|
|
122
|
+
"Order total": "訂單總計",
|
|
123
|
+
"Order total:": "訂單總計:",
|
|
124
|
+
"Out of stock": "缺貨",
|
|
125
|
+
"Page %s": "第%s頁",
|
|
126
|
+
"Page Not Found Content": "找不到頁面內容.",
|
|
127
|
+
"Page not found": "網頁未找到",
|
|
128
|
+
"Password": "密碼",
|
|
129
|
+
"Password Change Actions": "更改密碼",
|
|
130
|
+
"Password Change Page": "密碼更改頁面",
|
|
131
|
+
"Password has been successfully updated!": "密碼已成功更新!",
|
|
132
|
+
"Personal Information": "個人資訊",
|
|
133
|
+
"Phone number": "電話號碼",
|
|
134
|
+
"Play video": "播放視頻",
|
|
135
|
+
"Play video %s": "播放視頻 %s",
|
|
136
|
+
"Please, select product options!": "請選擇產品選項!",
|
|
137
|
+
"Please sign in first!": "請先登錄!",
|
|
138
|
+
"Please sign-in to complete checkout!": "請登錄以完成結帳!",
|
|
139
|
+
"Please, try removing selected filters and try again!": "請嘗試刪除選定的過濾器,然後重試!",
|
|
140
|
+
"Previous page": "上一頁",
|
|
141
|
+
"Price": "價格",
|
|
142
|
+
"Proceed to billing": "繼續計費",
|
|
143
|
+
"Product %s thumbnail.": "產品 %s 的縮略圖。",
|
|
144
|
+
"Product Price": "商品價格",
|
|
145
|
+
"Product added to wish-list!": "產品已添加到願望清單!",
|
|
146
|
+
"Product has been removed from your Wish List!": "產品已從您的願望清單中刪除!",
|
|
147
|
+
"Products are loading...": "產品正在加載中...",
|
|
148
|
+
"Purchase Order Number": "订购单号码",
|
|
149
|
+
"Rate: ": "比率: ",
|
|
150
|
+
"Recommended for you": "為你推薦",
|
|
151
|
+
"Reload the page": "重新載入頁面",
|
|
152
|
+
"Remove Coupon": "刪除優惠券",
|
|
153
|
+
"Remove from Wishlist": "從心願單中刪除",
|
|
154
|
+
"Reset all": "重置狀態",
|
|
155
|
+
"Review": "評論",
|
|
156
|
+
"SEE RESULTS": "查看結果",
|
|
157
|
+
"Save address": "保存地址",
|
|
158
|
+
"Save changes": "保存更改",
|
|
159
|
+
"Search": "搜索",
|
|
160
|
+
"Search results for: ": "搜索結果:",
|
|
161
|
+
"Secure checkout": "安全結帳",
|
|
162
|
+
"Send reset link": "發送重置鏈接",
|
|
163
|
+
"Shipping": "配送",
|
|
164
|
+
"Shipping address": "配送地址",
|
|
165
|
+
"Shopping Options": "購物選項",
|
|
166
|
+
"Shopping cart": "購物車",
|
|
167
|
+
"Sign in": "登入",
|
|
168
|
+
"Sign in to your account": "登入",
|
|
169
|
+
"Sign up": "註冊",
|
|
170
|
+
"Sign-Up Information": "註冊信息",
|
|
171
|
+
"Something went wrong!": "出了些問題。",
|
|
172
|
+
"Something went wrong! Please, try again!": "抱歉,出了些問題。請稍後再試。",
|
|
173
|
+
"Sorry, we can`t find the page you are looking for! Please press a button below to go back to homepage.": "抱歉,我們找不到您要尋找的頁面! 請按下面的按鈕返回首頁。",
|
|
174
|
+
"Status": "狀態",
|
|
175
|
+
"Street": "街道地址",
|
|
176
|
+
"Street address": "街道地址",
|
|
177
|
+
"Submit": "提交",
|
|
178
|
+
"Submit Review": "提交評論",
|
|
179
|
+
"Summary": "摘要",
|
|
180
|
+
"Tap:": "點按",
|
|
181
|
+
"Tax": "稅",
|
|
182
|
+
"Tax total:": "稅收總額",
|
|
183
|
+
"Terms and Conditions": "條款和條件",
|
|
184
|
+
"Thank you for your purchase!": "感謝您的購買!",
|
|
185
|
+
"The email confirmation link has been sent to your email. Please confirm your account to proceed.": "email確認鏈接已發送到您的電子郵件。 請確認您的帳戶以繼續。",
|
|
186
|
+
"The error occurred during initializing payment methods. Please try again later!": "初始化付款方式時發生錯誤。 請稍後再試!",
|
|
187
|
+
"The selected filter combination returned no results.\n Please try again, using a different set of filters.": "所選的過濾器組合未返回結果。 n請使用另一組過濾器重試。",
|
|
188
|
+
"There are no Terms and Conditions configured.": "沒有配置任何條款。",
|
|
189
|
+
"There are no products in cart.": "購物車中沒有商品",
|
|
190
|
+
"There are no reviews yet! Click button on the right to submit one!": "還沒有評論! 點擊右邊的按鈕提交一個!",
|
|
191
|
+
"There are no shipping methods available, try different address.": "沒有可用的送貨方式,請嘗試其他地址。",
|
|
192
|
+
"There was an error requesting the category": "請求類別時出錯",
|
|
193
|
+
"There were no products found matching your request.": "找不到符合您要求的產品。",
|
|
194
|
+
"This field is required!": "這是必填欄!",
|
|
195
|
+
"This is a demo store": "這是一個演示商店",
|
|
196
|
+
"This is a demo store. No orders will be fulfilled.": "這是一個演示商店。 沒有訂單將被履行。",
|
|
197
|
+
"This is default Billing Address": "這是一個預設帳單地址。",
|
|
198
|
+
"This is default Shipping Address": "這是預設配送地址。",
|
|
199
|
+
"This payment method is not supported yet.": "目前尚不支持此付款方式。",
|
|
200
|
+
"This store can not be opened!": "這家店不能開!",
|
|
201
|
+
"Total": "總計",
|
|
202
|
+
"Update Password": "更新密碼",
|
|
203
|
+
"Use custom address": "新增地址",
|
|
204
|
+
"View cart": "查看購物車",
|
|
205
|
+
"We are experiencing issues, please try again later": "我們遇到問題,請稍後再試",
|
|
206
|
+
"We are sorry!": "很抱歉!",
|
|
207
|
+
"We could not load the content. Check your internet connection and try again.": "我們無法加載內容。 檢查您的互聯網連接,然後重試。",
|
|
208
|
+
"We have updated the website. Reload is required to apply changes.": "我們已經更新了網站。 需要重新加載才能應用更改。",
|
|
209
|
+
"We`ll email you an order confirmation with details and tracking info.": "我們會通過電子郵件向您發送訂單確認,其中包含訂單細節和跟追蹤訊息",
|
|
210
|
+
"Wishlist is empty!": "願望清單是空的!",
|
|
211
|
+
"Written by ": "撰寫者",
|
|
212
|
+
"Yes": "是",
|
|
213
|
+
"Yes, delete address": "是的,刪除地址",
|
|
214
|
+
"You are currently offline.": "您目前離線。",
|
|
215
|
+
"You are successfully logged in!": "您已成功登錄!",
|
|
216
|
+
"You are successfully logged out!": "您已成功註銷!",
|
|
217
|
+
"You have no configured addresses.": "您沒有配置的地址。",
|
|
218
|
+
"You have no orders.": "您沒有下訂單。",
|
|
219
|
+
"You might also like": "您可能還喜歡",
|
|
220
|
+
"You must login or register to add items to your wishlist.": "您必須登錄或註冊才能將商品添加到心願單。",
|
|
221
|
+
"You must login or register to review products.": "您必須登錄或註冊才能查看產品。",
|
|
222
|
+
"Your account is confirmed!": "您的帳戶已確認!",
|
|
223
|
+
"Your order # is: %s": "您的訂單#是: %s",
|
|
224
|
+
"Your password and confirmation password do not match.": "您的密碼和確認密碼不匹配。",
|
|
225
|
+
"billing": "帳單",
|
|
226
|
+
"item": "項目",
|
|
227
|
+
"save %s%": "保存 %s%",
|
|
228
|
+
"shipping": "配送",
|
|
229
|
+
"subtotal": "小計",
|
|
230
|
+
"Create account": "創建帳號",
|
|
231
|
+
"Forgot password": "忘記密碼了嗎",
|
|
232
|
+
"Error fetching Config!": null,
|
|
233
|
+
"Unable to fetch compare list": null,
|
|
234
|
+
"Product is added to the compare list": null,
|
|
235
|
+
"Unable to add product to the compare list": null,
|
|
236
|
+
"Product is removed from the compare list": null,
|
|
237
|
+
"Unable to remove product from the compare list": null,
|
|
238
|
+
"Compare list is cleared": null,
|
|
239
|
+
"Unable to clear product compare list": null,
|
|
240
|
+
"Error updating wishlist!": null,
|
|
241
|
+
"Error fetching LinkedProducts!": null,
|
|
242
|
+
"Your session is over, you are logged out!": null,
|
|
243
|
+
"Share Wishlist": null,
|
|
244
|
+
"Contact Us": null,
|
|
245
|
+
"Shared Wishlist": null,
|
|
246
|
+
"Product Compare": null,
|
|
247
|
+
"Compare": null,
|
|
248
|
+
"items": null,
|
|
249
|
+
"Please add at least one product to cart!": null,
|
|
250
|
+
"Your account has been created successfully!": null,
|
|
251
|
+
"Transactional [default state + hover]": null,
|
|
252
|
+
"Button text": null,
|
|
253
|
+
"Supportive [default state + hover]": null,
|
|
254
|
+
"Secondary button": null,
|
|
255
|
+
"Desktop": null,
|
|
256
|
+
"Heading 1": null,
|
|
257
|
+
"Heading 2": null,
|
|
258
|
+
"Heading 3": null,
|
|
259
|
+
"The ": null,
|
|
260
|
+
"website": null,
|
|
261
|
+
" aims to achieve": null,
|
|
262
|
+
" following ": null,
|
|
263
|
+
"business goals:": null,
|
|
264
|
+
"Mobile": null,
|
|
265
|
+
"Select color": null,
|
|
266
|
+
"Your email address": null,
|
|
267
|
+
"Notification messages": null,
|
|
268
|
+
"Style Guide page": null,
|
|
269
|
+
"Compare Page": null,
|
|
270
|
+
"Check new arrivals": null,
|
|
271
|
+
"here!": null,
|
|
272
|
+
"Dismiss": null,
|
|
273
|
+
"Registered Customers": null,
|
|
274
|
+
"If you have an account, sign in with your email address.": null,
|
|
275
|
+
"Create an Account": null,
|
|
276
|
+
"New Customers": null,
|
|
277
|
+
"Creating an account has many benefits:": null,
|
|
278
|
+
" check out faster, keep more than one address, track orders and more.": null,
|
|
279
|
+
"Forgot Your Password?": null,
|
|
280
|
+
"Please enter your email address below to receive a password reset link.": null,
|
|
281
|
+
"Wishlist shared by ": null,
|
|
282
|
+
"Product Compare Page": null,
|
|
283
|
+
"Error fetching Product List Information!": null,
|
|
284
|
+
"Error fetching Category!": null,
|
|
285
|
+
"This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.": null,
|
|
286
|
+
"Error fetching URL-rewrites!": null,
|
|
287
|
+
"Excl. tax: %s": null,
|
|
288
|
+
"Share": null,
|
|
289
|
+
"Remove item (%s)": null,
|
|
290
|
+
"Remove items (%s)": null,
|
|
291
|
+
"Newsletter": null,
|
|
292
|
+
"Cannot proceed to checkout. Remove out of stock products first.": null,
|
|
293
|
+
"Compare products": null,
|
|
294
|
+
"Up to %s": null,
|
|
295
|
+
"From %s": null,
|
|
296
|
+
"You can track your order status by creating an account.": null,
|
|
297
|
+
"Email address": null,
|
|
298
|
+
"Remove": null,
|
|
299
|
+
"Value": null,
|
|
300
|
+
"Add": null,
|
|
301
|
+
"Subtract": null,
|
|
302
|
+
"Drop files here or": null,
|
|
303
|
+
"Select files": null,
|
|
304
|
+
"As Low as": null,
|
|
305
|
+
"Search products": null,
|
|
306
|
+
"Close": null,
|
|
307
|
+
"You have no items in your shopping cart.": null,
|
|
308
|
+
"What's on your mind?": null,
|
|
309
|
+
"Send Your message": null,
|
|
310
|
+
"Clear Compare": null,
|
|
311
|
+
"You have nothing to compare": null,
|
|
312
|
+
"Wishlist has been shared": null,
|
|
313
|
+
"About": null,
|
|
314
|
+
"Details": null,
|
|
315
|
+
"Reviews": null,
|
|
316
|
+
"Links:": null,
|
|
317
|
+
"Product is out of stock": null,
|
|
318
|
+
"Qty:": null,
|
|
319
|
+
"Add a comment": null,
|
|
320
|
+
"Error fetching Product List!": null,
|
|
321
|
+
"You can create an account after checkout": null,
|
|
322
|
+
"Enter your email address": null,
|
|
323
|
+
"A subscription confirmation email has been sent!": null,
|
|
324
|
+
"Title": null,
|
|
325
|
+
"Remaining Downloads": null,
|
|
326
|
+
"Tax/VAT Number": null,
|
|
327
|
+
"Product tabs": null,
|
|
328
|
+
"Estimated Shipping": null,
|
|
329
|
+
"Current product price excl. tax": null,
|
|
330
|
+
"Email addresses, separated by commas": null,
|
|
331
|
+
"Message": null,
|
|
332
|
+
"Now shopping by:": null,
|
|
333
|
+
" filters selected": null,
|
|
334
|
+
"Error fetching NewProducts!": null,
|
|
335
|
+
"Error fetching Slider!": null,
|
|
336
|
+
"Show less": null,
|
|
337
|
+
"Show more": null,
|
|
338
|
+
"Recently Viewed Products": null,
|
|
339
|
+
"Please provide postcode or city name to find nearest pickup locations.": null,
|
|
340
|
+
"City or Postcode": null,
|
|
341
|
+
"Buy %s for %s each and ": null,
|
|
342
|
+
"Ship here": null,
|
|
343
|
+
"Slide crumb": null,
|
|
344
|
+
"Sample": null,
|
|
345
|
+
"Street address line %s": null,
|
|
346
|
+
"Write a review": null,
|
|
347
|
+
"1 item": null,
|
|
348
|
+
"Welcome, %s!": null,
|
|
349
|
+
"Personal information": null,
|
|
350
|
+
"Payment": null,
|
|
351
|
+
"quantity": null,
|
|
352
|
+
"Please, remove out of stock products from cart": null,
|
|
353
|
+
"Proceed to checkout": null,
|
|
354
|
+
"Clear All": null,
|
|
355
|
+
"Discount": null,
|
|
356
|
+
"Coupon code discount": null,
|
|
357
|
+
"Subtotal": null,
|
|
358
|
+
"From %s to %s": null,
|
|
359
|
+
"Subscribe": null,
|
|
360
|
+
"Quantity: %s": null,
|
|
361
|
+
"Your discount code": null,
|
|
362
|
+
"Billing address": null,
|
|
363
|
+
" (default shipping & billing)": null,
|
|
364
|
+
" (default billing address)": null,
|
|
365
|
+
" (default shipping address)": null,
|
|
366
|
+
"There are no reviews yet! Click button below to submit one!": null,
|
|
367
|
+
"Payment method": null,
|
|
368
|
+
"Shipping method": null,
|
|
369
|
+
"We have removed your newsletter subscription.": null,
|
|
370
|
+
"We have saved your subscription": null,
|
|
371
|
+
"We have updated your subscription.": null,
|
|
372
|
+
"Error fetching Recently Viewed Products Information!": null,
|
|
373
|
+
"Previous": null,
|
|
374
|
+
"Next": null,
|
|
375
|
+
"SKU: %s": null,
|
|
376
|
+
"State / Province": null,
|
|
377
|
+
"Your street address": null,
|
|
378
|
+
"Your street address line %s": null,
|
|
379
|
+
"Your first name": null,
|
|
380
|
+
"Your last name": null,
|
|
381
|
+
"Your city": null,
|
|
382
|
+
"Zip / Postal code": null,
|
|
383
|
+
"Your zip / postal code": null,
|
|
384
|
+
"%s items": null,
|
|
385
|
+
"%s Items": null,
|
|
386
|
+
"Subscribe to newsletter": null,
|
|
387
|
+
"read more": null,
|
|
388
|
+
"In stock": null,
|
|
389
|
+
"VAT Number": null,
|
|
390
|
+
"1 filter selected": null,
|
|
391
|
+
"Thank you for your subscription.": null,
|
|
392
|
+
"Excl. tax:": null,
|
|
393
|
+
"Product compare": null,
|
|
394
|
+
"Enter your password": null,
|
|
395
|
+
"Your Tax/VAT Number": null,
|
|
396
|
+
"Sign In": null,
|
|
397
|
+
"Retype your password": null,
|
|
398
|
+
"Discount: ": null,
|
|
399
|
+
"The minimum amount you can purchase is %s": null,
|
|
400
|
+
"The maximum amount you can purchase is %s": null,
|
|
401
|
+
"You can buy this product only in quantities of %s at a time.": null,
|
|
402
|
+
"None": null,
|
|
403
|
+
"Pick in Store": null,
|
|
404
|
+
"We could not preselect pickup location based on available information, please select it manually.": null,
|
|
405
|
+
"Store": null,
|
|
406
|
+
"Select store": null,
|
|
407
|
+
"Select Store": null,
|
|
408
|
+
"We were unable to find nearby locations for provided search query.": null,
|
|
409
|
+
"About Us": null,
|
|
410
|
+
"Additional info": null,
|
|
411
|
+
"Privacy Policy": null,
|
|
412
|
+
"Terms of use": null,
|
|
413
|
+
"Use of Cookies": null,
|
|
414
|
+
"Popular categories": null,
|
|
415
|
+
"Women": null,
|
|
416
|
+
"Men": null,
|
|
417
|
+
"Accessories": null,
|
|
418
|
+
"Follow": null,
|
|
419
|
+
"LinkedIn": null,
|
|
420
|
+
"Facebook": null,
|
|
421
|
+
"Twitter": 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
|
+
"SKU": null,
|
|
524
|
+
"Qty": null,
|
|
525
|
+
"Reorder": null,
|
|
526
|
+
"Subscribe to Order Status": null,
|
|
527
|
+
"Invoices": null,
|
|
528
|
+
"Order Shipments": null,
|
|
529
|
+
"Refunds": null,
|
|
530
|
+
"Discount Amount": null,
|
|
531
|
+
"Row Total": null,
|
|
532
|
+
"Order Information": null,
|
|
533
|
+
"Shipping Address": null,
|
|
534
|
+
"Billing Address": null,
|
|
535
|
+
"Shipping Method": null,
|
|
536
|
+
"Payment Method": null,
|
|
537
|
+
"Ordered": null,
|
|
538
|
+
"Canceled": null,
|
|
539
|
+
"Invoiced": null,
|
|
540
|
+
"Refunded": null,
|
|
541
|
+
"Returned": null,
|
|
542
|
+
"Shipped": null,
|
|
543
|
+
"Shipping & Handling": null,
|
|
544
|
+
"Grand Total (Excl.Tax)": null,
|
|
545
|
+
"Grand Total (Incl.Tax)": null,
|
|
546
|
+
"Grand Total to be Charged": null,
|
|
547
|
+
"Order # %s": 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
|
+
}
|