ng-easycommerce-v18 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/.editorconfig +16 -0
- package/README.md +27 -0
- package/angular.json +48 -0
- package/package.json +58 -0
- package/projects/ng-easycommerce/README.md +24 -0
- package/projects/ng-easycommerce/ng-package.json +7 -0
- package/projects/ng-easycommerce/package.json +12 -0
- package/projects/ng-easycommerce/src/lib/api/connection.service.ts +79 -0
- package/projects/ng-easycommerce/src/lib/api/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/ct.json +274 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/en.json +380 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/es.json +387 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/fr.json +266 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/gl.json +274 -0
- package/projects/ng-easycommerce/src/lib/assets/ec-i18n/pr.json +274 -0
- package/projects/ng-easycommerce/src/lib/assets/recaptcha/recaptcha-site-keys.json +4 -0
- package/projects/ng-easycommerce/src/lib/assets/recaptcha/recaptcha-sites-prod.json +39 -0
- package/projects/ng-easycommerce/src/lib/assets/recaptcha/recaptcha-sites.json +53 -0
- package/projects/ng-easycommerce/src/lib/classes/checkout/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/classes/checkout/steps.ts +37 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/attributes-filter.ts +74 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/category-filter.ts +57 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/dynamics-filter.ts +57 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/filter-factory.ts +23 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/filter.ts +89 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/index.ts +6 -0
- package/projects/ng-easycommerce/src/lib/classes/filters/sort-filter.ts +93 -0
- package/projects/ng-easycommerce/src/lib/classes/index.ts +3 -0
- package/projects/ng-easycommerce/src/lib/classes/user.ts +68 -0
- package/projects/ng-easycommerce/src/lib/constants/api.constants.service.ts +69 -0
- package/projects/ng-easycommerce/src/lib/constants/core.constants.service.ts +210 -0
- package/projects/ng-easycommerce/src/lib/constants/index.ts +2 -0
- package/projects/ng-easycommerce/src/lib/ec-components/abstractions-components/block-ec.component.ts +107 -0
- package/projects/ng-easycommerce/src/lib/ec-components/abstractions-components/index.ts +2 -0
- package/projects/ng-easycommerce/src/lib/ec-components/abstractions-components/menu-ec.component.ts +102 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/auth-ec.component.html +10 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/auth-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/auth-ec.component.ts +13 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/confirm-account-ec/confirm-account-ec.component.html +19 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/confirm-account-ec/confirm-account-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/confirm-account-ec/confirm-account-ec.component.ts +34 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/forgot-password-ec/forgot-password-ec.component.html +31 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/forgot-password-ec/forgot-password-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/forgot-password-ec/forgot-password-ec.component.ts +55 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/index.ts +6 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/login-form-ec/login-form-ec.component.html +30 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/login-form-ec/login-form-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/login-form-ec/login-form-ec.component.ts +92 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-form-ec/register-form-ec.component.html +55 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-form-ec/register-form-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-form-ec/register-form-ec.component.ts +102 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-wholesaler-form-ec/register-wholesaler-form-ec.component.html +233 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-wholesaler-form-ec/register-wholesaler-form-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/auth-ec/register-wholesaler-form-ec/register-wholesaler-form-ec.component.ts +149 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-box-ec/block-banner-box-ec.component.html +113 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-box-ec/block-banner-box-ec.component.scss +12 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-box-ec/block-banner-box-ec.component.ts +100 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-full-ec/block-banner-full-ec.component.html +111 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-full-ec/block-banner-full-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-banner-full-ec/block-banner-full-ec.component.ts +77 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.html +62 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.ts +89 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-html-ec/block-html-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-html-ec/block-html-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-html-ec/block-html-ec.component.ts +33 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-newsletter-ec/block-newsletter-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-newsletter-ec/block-newsletter-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-newsletter-ec/block-newsletter-ec.component.ts +81 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-products-ec/block-products-ec.component.html +40 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-products-ec/block-products-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/block-products-ec/block-products-ec.component.ts +97 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/blocks-ec.component.html +41 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/blocks-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/blocks-ec.component.ts +86 -0
- package/projects/ng-easycommerce/src/lib/ec-components/blocks-ec/index.ts +4 -0
- package/projects/ng-easycommerce/src/lib/ec-components/breadcrumb-ec/breadcrumb-ec.component.html +20 -0
- package/projects/ng-easycommerce/src/lib/ec-components/breadcrumb-ec/breadcrumb-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/breadcrumb-ec/breadcrumb-ec.component.ts +30 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-ec.component.ts +24 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-item-ec/cart-item-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-item-ec/cart-item-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/cart-item-ec/cart-item-ec.component.ts +51 -0
- package/projects/ng-easycommerce/src/lib/ec-components/cart-ec/index.ts +2 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/checkout-ec.component.html +56 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/checkout-ec.component.scss +38 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/checkout-ec.component.ts +67 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/dataform-ec.component.html +836 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/dataform-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/dataform-ec.component.ts +302 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/input-ec/input-ec.component.html +32 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/input-ec/input-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/dataform-ec/input-ec/input-ec.component.ts +52 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.html +12 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.ts +48 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-ec.component.html +195 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-ec.component.ts +103 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/bank-transfer-ec/bank-transfer-ec.component.html +28 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/bank-transfer-ec/bank-transfer-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/bank-transfer-ec/bank-transfer-ec.component.ts +26 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/index.ts +3 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/mp-redirect-ec/mp-redirect-ec.component.html +33 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/mp-redirect-ec/mp-redirect-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/mp-redirect-ec/mp-redirect-ec.component.ts +116 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/offline-ec/offline-ec.component.html +13 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/offline-ec/offline-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/payment-ec/payment-methods/offline-ec/offline-ec.component.ts +26 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/shipment-ec/shipment-ec.component.html +111 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/shipment-ec/shipment-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/shipment-ec/shipment-ec.component.ts +111 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/step-container-ec/step-container-ec.component.html +33 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/step-container-ec/step-container-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/step-container-ec/step-container-ec.component.ts +39 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/success-ec/success-ec.component.html +59 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/success-ec/success-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/checkout-ec/success-ec/success-ec.component.ts +65 -0
- package/projects/ng-easycommerce/src/lib/ec-components/collection-ec/collection-ec.component.html +16 -0
- package/projects/ng-easycommerce/src/lib/ec-components/collection-ec/collection-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/collection-ec/collection-ec.component.ts +83 -0
- package/projects/ng-easycommerce/src/lib/ec-components/coupon-ec/coupon-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/coupon-ec/coupon-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/coupon-ec/coupon-ec.component.ts +32 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-ec/filters-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-ec/filters-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-ec/filters-ec.component.ts +45 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-sort-ec/filters-sort-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-sort-ec/filters-sort-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/filters-sort-ec/filters-sort-ec.component.ts +49 -0
- package/projects/ng-easycommerce/src/lib/ec-components/footer-ec/footer-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/footer-ec/footer-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/footer-ec/footer-ec.component.spec.ts +23 -0
- package/projects/ng-easycommerce/src/lib/ec-components/footer-ec/footer-ec.component.ts +18 -0
- package/projects/ng-easycommerce/src/lib/ec-components/header-ec/header-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/header-ec/header-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/header-ec/header-ec.component.spec.ts +23 -0
- package/projects/ng-easycommerce/src/lib/ec-components/header-ec/header-ec.component.ts +22 -0
- package/projects/ng-easycommerce/src/lib/ec-components/home-ec/home-ec.component.html +1 -0
- package/projects/ng-easycommerce/src/lib/ec-components/home-ec/home-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/home-ec/home-ec.component.spec.ts +23 -0
- package/projects/ng-easycommerce/src/lib/ec-components/home-ec/home-ec.component.ts +16 -0
- package/projects/ng-easycommerce/src/lib/ec-components/index.ts +17 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-detail-ec/product-detail-ec.component.html +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-detail-ec/product-detail-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-detail-ec/product-detail-ec.component.ts +82 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-ec/product-ec.component.html +31 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-ec/product-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/product-ec/product-ec.component.ts +46 -0
- package/projects/ng-easycommerce/src/lib/ec-components/variants-ec/variants-ec.component.html +65 -0
- package/projects/ng-easycommerce/src/lib/ec-components/variants-ec/variants-ec.component.scss +8 -0
- package/projects/ng-easycommerce/src/lib/ec-components/variants-ec/variants-ec.component.ts +20 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/index.ts +4 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/index.ts +3 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-full-ec/loading-full-ec.component.html +7 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-full-ec/loading-full-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-full-ec/loading-full-ec.component.ts +13 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-inline-ec/loading-inline-ec.component.html +5 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-inline-ec/loading-inline-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-inline-ec/loading-inline-ec.component.ts +13 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-section-ec/loading-section-ec.component.html +3 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-section-ec/loading-section-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/loading/loading-section-ec/loading-section-ec.component.ts +13 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/magnizoom-ec/magnizoom-ec.component.html +11 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/magnizoom-ec/magnizoom-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/magnizoom-ec/magnizoom-ec.component.ts +177 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/price-ec/price-ec.component.html +47 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/price-ec/price-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/price-ec/price-ec.component.ts +22 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/re-captcha-ec/re-captcha-ec.component.html +6 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/re-captcha-ec/re-captcha-ec.component.scss +0 -0
- package/projects/ng-easycommerce/src/lib/ec-components/widgets-ec/re-captcha-ec/re-captcha-ec.component.ts +70 -0
- package/projects/ng-easycommerce/src/lib/ec-guards/auth.guard.ts +19 -0
- package/projects/ng-easycommerce/src/lib/ec-guards/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/ec-pipe/ec-currency-symbol.pipe.ts +99 -0
- package/projects/ng-easycommerce/src/lib/ec-pipe/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/ec-services/addressing.service.ts +199 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/analytics.service.ts +76 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/doppler.service.ts +38 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/facebook-pixel.service.ts +214 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/google-analytics.service.ts +284 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/gtm.service.ts +413 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/index.ts +6 -0
- package/projects/ng-easycommerce/src/lib/ec-services/analytics/metricool-pixel.service.ts +46 -0
- package/projects/ng-easycommerce/src/lib/ec-services/auth.service.ts +438 -0
- package/projects/ng-easycommerce/src/lib/ec-services/auth.storage.service.ts +54 -0
- package/projects/ng-easycommerce/src/lib/ec-services/blocks-repository.service.ts +67 -0
- package/projects/ng-easycommerce/src/lib/ec-services/blocks.service.ts +48 -0
- package/projects/ng-easycommerce/src/lib/ec-services/cart.service.ts +492 -0
- package/projects/ng-easycommerce/src/lib/ec-services/channel.service.ts +81 -0
- package/projects/ng-easycommerce/src/lib/ec-services/checkout.service.ts +196 -0
- package/projects/ng-easycommerce/src/lib/ec-services/currency.service.ts +179 -0
- package/projects/ng-easycommerce/src/lib/ec-services/filters.service.ts +133 -0
- package/projects/ng-easycommerce/src/lib/ec-services/form.service.ts +82 -0
- package/projects/ng-easycommerce/src/lib/ec-services/index.ts +24 -0
- package/projects/ng-easycommerce/src/lib/ec-services/local-storage.service.ts +54 -0
- package/projects/ng-easycommerce/src/lib/ec-services/ngx-local-storage.service.ts +66 -0
- package/projects/ng-easycommerce/src/lib/ec-services/options.service.ts +274 -0
- package/projects/ng-easycommerce/src/lib/ec-services/order-utility.service.ts +52 -0
- package/projects/ng-easycommerce/src/lib/ec-services/pagination.service.ts +172 -0
- package/projects/ng-easycommerce/src/lib/ec-services/parameters.service.ts +67 -0
- package/projects/ng-easycommerce/src/lib/ec-services/payment.service.ts +63 -0
- package/projects/ng-easycommerce/src/lib/ec-services/product-detail.service.ts +288 -0
- package/projects/ng-easycommerce/src/lib/ec-services/products.service.ts +162 -0
- package/projects/ng-easycommerce/src/lib/ec-services/re-captcha.service.ts +126 -0
- package/projects/ng-easycommerce/src/lib/ec-services/shipment.service.ts +174 -0
- package/projects/ng-easycommerce/src/lib/ec-services/stores.service.ts +27 -0
- package/projects/ng-easycommerce/src/lib/ec-services/toast.service.ts +84 -0
- package/projects/ng-easycommerce/src/lib/interceptors/auth.interceptor.ts +43 -0
- package/projects/ng-easycommerce/src/lib/interceptors/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/interfaces/analytics/event-key.ts +14 -0
- package/projects/ng-easycommerce/src/lib/interfaces/analytics/facebook-pixel-data.ts +5 -0
- package/projects/ng-easycommerce/src/lib/interfaces/analytics/gtm-config.ts +6 -0
- package/projects/ng-easycommerce/src/lib/interfaces/analytics/index.ts +3 -0
- package/projects/ng-easycommerce/src/lib/interfaces/blocks.ts +56 -0
- package/projects/ng-easycommerce/src/lib/interfaces/checkout.ts +14 -0
- package/projects/ng-easycommerce/src/lib/interfaces/connection.ts +8 -0
- package/projects/ng-easycommerce/src/lib/interfaces/coupon.ts +5 -0
- package/projects/ng-easycommerce/src/lib/interfaces/currency.ts +10 -0
- package/projects/ng-easycommerce/src/lib/interfaces/deserializable.ts +3 -0
- package/projects/ng-easycommerce/src/lib/interfaces/environment.ts +6 -0
- package/projects/ng-easycommerce/src/lib/interfaces/filter.ts +59 -0
- package/projects/ng-easycommerce/src/lib/interfaces/index.ts +18 -0
- package/projects/ng-easycommerce/src/lib/interfaces/options.ts +28 -0
- package/projects/ng-easycommerce/src/lib/interfaces/pagination.ts +27 -0
- package/projects/ng-easycommerce/src/lib/interfaces/parameter.ts +15 -0
- package/projects/ng-easycommerce/src/lib/interfaces/product.ts +81 -0
- package/projects/ng-easycommerce/src/lib/interfaces/step.ts +19 -0
- package/projects/ng-easycommerce/src/lib/interfaces/storage.ts +7 -0
- package/projects/ng-easycommerce/src/lib/interfaces/store.ts +17 -0
- package/projects/ng-easycommerce/src/lib/interfaces/types/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/interfaces/types/user.type.ts +5 -0
- package/projects/ng-easycommerce/src/lib/providers/index.ts +1 -0
- package/projects/ng-easycommerce/src/lib/providers/provideEnvironment.ts +24 -0
- package/projects/ng-easycommerce/src/lib/stores/currency.store.ts +20 -0
- package/projects/ng-easycommerce/src/lib/stores/index.ts +1 -0
- package/projects/ng-easycommerce/src/public-api.ts +24 -0
- package/projects/ng-easycommerce/tsconfig.lib.json +15 -0
- package/projects/ng-easycommerce/tsconfig.lib.prod.json +11 -0
- package/projects/ng-easycommerce/tsconfig.spec.json +15 -0
- package/tsconfig.doc.json +4 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
{
|
|
2
|
+
"3-col-thumbnail-left": "3 col-thumbnail left",
|
|
3
|
+
"3-col-thumbnail-right": "3 col-thumbnail right",
|
|
4
|
+
"FAQ": "Frequently asked questions",
|
|
5
|
+
"about": "about",
|
|
6
|
+
"about-us": "about us",
|
|
7
|
+
"accessories": "Accessories",
|
|
8
|
+
"accordian-details": "accordian details",
|
|
9
|
+
"account-info": "Account Info",
|
|
10
|
+
"action": "Action",
|
|
11
|
+
"actual-password": "Current password",
|
|
12
|
+
"add-to-cart": "Add to cart",
|
|
13
|
+
"add-to-wishlist": "Add to wishlist",
|
|
14
|
+
"address": "Address",
|
|
15
|
+
"address-book": "Address Book",
|
|
16
|
+
"address-contact": "Contact information",
|
|
17
|
+
"address-help1": "Address is required",
|
|
18
|
+
"address-help12": "Maximum 50 character",
|
|
19
|
+
"address-selection": "Address selection",
|
|
20
|
+
"alphabetical-order": "Alphabetical order",
|
|
21
|
+
"aplied": "aplied",
|
|
22
|
+
"apply-gift-card": "Apply Gift card",
|
|
23
|
+
"approved": "Approved",
|
|
24
|
+
"article": "Article",
|
|
25
|
+
"articles": "Articles",
|
|
26
|
+
"ascendancy": "Ascendancy",
|
|
27
|
+
"attributes": "Attributes",
|
|
28
|
+
"back": "Back",
|
|
29
|
+
"back-to-orders": "Back to orders",
|
|
30
|
+
"bank-transfer": "Bank transfer",
|
|
31
|
+
"beauty": "Beauty",
|
|
32
|
+
"best-sellers": "Best sellers",
|
|
33
|
+
"billing-details": "Billing details",
|
|
34
|
+
"billing-data": "Billing details",
|
|
35
|
+
"birthday": "Birthday",
|
|
36
|
+
"blog-detail": "blog detail",
|
|
37
|
+
"blog-left-sidebar": "blog(left-sidebar)",
|
|
38
|
+
"blog-right-sidebar": "blog(right-sidebar)",
|
|
39
|
+
"branch-delivery": "Branch Withdrawal",
|
|
40
|
+
"buy-now": "Buy now",
|
|
41
|
+
"call-us": "Call Us",
|
|
42
|
+
"cancelled": "Cancelled",
|
|
43
|
+
"cant-buy": "It is not possible to buy this product",
|
|
44
|
+
"caps-and-hats": "caps and hats",
|
|
45
|
+
"card-holder-name": "Card holder name",
|
|
46
|
+
"card-number": "Card number",
|
|
47
|
+
"cart": "Cart",
|
|
48
|
+
"categories": "Categories",
|
|
49
|
+
"category": "Category",
|
|
50
|
+
"category-left-sidebar": "category(left-sidebar)",
|
|
51
|
+
"category-no-sidebar": "category(no-sidebar)",
|
|
52
|
+
"category-right-sidebar": "category(right-sidebar)",
|
|
53
|
+
"change-password": "Change password",
|
|
54
|
+
"change-password-description": "From here you can change your password. You'll receive an email from where you can set a new password. Click next button to proceed",
|
|
55
|
+
"channel": "Channel",
|
|
56
|
+
"cheapest-first": "Cheapest first",
|
|
57
|
+
"check-your-email": "Check your email to finish recovering your password",
|
|
58
|
+
"checkout": "Pay",
|
|
59
|
+
"close-session": "Close session",
|
|
60
|
+
"collection": "collection",
|
|
61
|
+
"collections": "collections",
|
|
62
|
+
"colors": "Colors",
|
|
63
|
+
"coming": "Coming",
|
|
64
|
+
"coming-soon": "Coming soon",
|
|
65
|
+
"coming-soon-description": "This functionality will be available at incomming updates",
|
|
66
|
+
"compare": "compare",
|
|
67
|
+
"complete": "Complete",
|
|
68
|
+
"completed": "Complete",
|
|
69
|
+
"contact": "Contact",
|
|
70
|
+
"contact-info": "Contact information",
|
|
71
|
+
"continue": "Continue",
|
|
72
|
+
"continue-shopping": "Continue shopping",
|
|
73
|
+
"country": "Country",
|
|
74
|
+
"country-help": "Country is required",
|
|
75
|
+
"coupon": "Coupon",
|
|
76
|
+
"create-account": "Create account",
|
|
77
|
+
"create-account-description": "Sign up for a free account at our store. Registration is quick and easy. It allows you to be able to order from our shop. To start shopping click register.",
|
|
78
|
+
"created-date": "Created date",
|
|
79
|
+
"cufflinks": "cufflinks",
|
|
80
|
+
"currency": "Currency",
|
|
81
|
+
"customer-billing-data": "Billing data",
|
|
82
|
+
"customer-data": "Customer data",
|
|
83
|
+
"dashboard": "Dashboard",
|
|
84
|
+
"date": "Date",
|
|
85
|
+
"default-billing-address": "Extra user info",
|
|
86
|
+
"default-billing-address-negative": "You have not set a default billing address.",
|
|
87
|
+
"default-shipping-address-negative": "You have not set a shipping address.",
|
|
88
|
+
"department": "Department",
|
|
89
|
+
"descendant": "Descendant",
|
|
90
|
+
"description": "Description",
|
|
91
|
+
"details": "Details",
|
|
92
|
+
"discount": "Discount",
|
|
93
|
+
"discount_description": "Enter your discount code",
|
|
94
|
+
"document-number": "Document number",
|
|
95
|
+
"document-number-help": "Invalud document number",
|
|
96
|
+
"document-type": "Document type",
|
|
97
|
+
"dresses": "dresses",
|
|
98
|
+
"earrings": "earrings",
|
|
99
|
+
"edit": "Edit",
|
|
100
|
+
"edit-address": "Edit address",
|
|
101
|
+
"email-address": "Email address",
|
|
102
|
+
"email-address-help1": "Email is required",
|
|
103
|
+
"email-address-help2": "Invalid Email",
|
|
104
|
+
"email-already-registered": "The email entered is already registered.",
|
|
105
|
+
"email-register-error": "Registration error. Please try again later.",
|
|
106
|
+
"empty-cart": "Your Cart is Empty",
|
|
107
|
+
"empty-cart-detail": "Add something to make me happy :)",
|
|
108
|
+
"empty_faqs": "No FAQs uploaded yet",
|
|
109
|
+
"enter-actual-password": "Enter current password",
|
|
110
|
+
"enter-new-password": "Enter new password",
|
|
111
|
+
"enter-password": "Enter your password",
|
|
112
|
+
"error-during-checkout": "Error during checkout",
|
|
113
|
+
"ethic-wear": "ethic wear",
|
|
114
|
+
"exclusive-products": "Exclusive products",
|
|
115
|
+
"expiration-month": "Expiration month",
|
|
116
|
+
"expiration-year": "Expiration year",
|
|
117
|
+
"fashion": "Fashion",
|
|
118
|
+
"fashion-jewellery": "Fashion Jewellery",
|
|
119
|
+
"fashion-week": "fashion week",
|
|
120
|
+
"featured": "Featured",
|
|
121
|
+
"features": "Features",
|
|
122
|
+
"finish-checkout": "Finish checkout",
|
|
123
|
+
"first-name": "First name",
|
|
124
|
+
"first-name-help1": "First Name is required.",
|
|
125
|
+
"first-name-help2": "First Name must be an alphabates.",
|
|
126
|
+
"floor": "Floor",
|
|
127
|
+
"flower": "Flower",
|
|
128
|
+
"forget-password": "forget password",
|
|
129
|
+
"forgot-password": "I forgot my password",
|
|
130
|
+
"free": "Free",
|
|
131
|
+
"furniture": "Furniture",
|
|
132
|
+
"gender": "Gender",
|
|
133
|
+
"gift-card-input": "Input gift card number",
|
|
134
|
+
"gift-card-input-help": "Gift card help",
|
|
135
|
+
"gift-card-title": "Gift card",
|
|
136
|
+
"hello": "Hello",
|
|
137
|
+
"helmets": "helmets",
|
|
138
|
+
"home": "home",
|
|
139
|
+
"home-delivery": "Home delivery",
|
|
140
|
+
"hurry": "Hurry! We have only {{stock}} product in stock.",
|
|
141
|
+
"image": "Imagen",
|
|
142
|
+
"information": "Store information",
|
|
143
|
+
"inquiry-error": "There was an error while querying. Try it again later",
|
|
144
|
+
"inquiry-sent": "Your inquiry was sent",
|
|
145
|
+
"invalid-coupon": "Invalid discount code",
|
|
146
|
+
"invalid-credentials": "The username and / or password are incorrect",
|
|
147
|
+
"invalid-email": "The email entered is not valid ",
|
|
148
|
+
"invalid-form": "There are still unfilled fields and / or invalid data",
|
|
149
|
+
"invalid-value": "Invalid value",
|
|
150
|
+
"invited-checkout": "Buy as guest",
|
|
151
|
+
"kids-fashion": "kids's fashion",
|
|
152
|
+
"last-name": "Last Name",
|
|
153
|
+
"last-name-help1": "Last Name is required.",
|
|
154
|
+
"last-name-help2": "Last Name must be an alphabates.",
|
|
155
|
+
"left-sidebar": "left sidebar",
|
|
156
|
+
"lenguage": "Lenguage",
|
|
157
|
+
"login": "login",
|
|
158
|
+
"logout": "Logout",
|
|
159
|
+
"lookbook": "lookbook",
|
|
160
|
+
"lots": "Lots",
|
|
161
|
+
"lot-saved": "Lot saved",
|
|
162
|
+
"lot-saving": "Saving lots...",
|
|
163
|
+
"lot-title": "Manage Lots",
|
|
164
|
+
"lot-subtitle": "Manage shipping dates and locations",
|
|
165
|
+
"lot-new": "+ Add Lot",
|
|
166
|
+
"lot-save": "Save Lots",
|
|
167
|
+
"lot-max-quantity": "You have already reached the maximum amount",
|
|
168
|
+
"mail-sent": "¡Email sent!",
|
|
169
|
+
"manage-addresses": "Manage Addresses",
|
|
170
|
+
"maximum-items-quantity": "The maximum quantity allowed for this product is {{quantity}}",
|
|
171
|
+
"men-accessories": "men's accessories",
|
|
172
|
+
"men-collection": "Men's collection",
|
|
173
|
+
"mens-fashion": "mens's fashion",
|
|
174
|
+
"mercado-pago": "Mercado Pago",
|
|
175
|
+
"minimum-items-quantity": "The minimum quantity allowed for this product is {{quantity}}",
|
|
176
|
+
"mismatched-password": "Password do not match",
|
|
177
|
+
"most-expensive-first": "Most expensive first",
|
|
178
|
+
"my-account": "My Account",
|
|
179
|
+
"my-account-description": "From your My Account Dashboard you have the ability to view a snapshot of your recent account activity and update your account information. Select a link below to view or edit information.",
|
|
180
|
+
"my-orders": "My orders",
|
|
181
|
+
"my-wishlist": "My wishlist",
|
|
182
|
+
"necklaces": "necklaces",
|
|
183
|
+
"need-login": "The user you are trying to purchase from already exists. Please sign in to continue",
|
|
184
|
+
"new": "new",
|
|
185
|
+
"new-customer": "New Account",
|
|
186
|
+
"new-password": "New password",
|
|
187
|
+
"new-products": "New products",
|
|
188
|
+
"newest-first": "Newest first",
|
|
189
|
+
"newsletter": "Newsletter",
|
|
190
|
+
"newsletter-negative": "You are currently not subscribed to any newsletter.",
|
|
191
|
+
"newsletter-positive": "You are currently subscribed to one or more bulletins.",
|
|
192
|
+
"newsletter-thanks": "Thanks for subscribing to the news",
|
|
193
|
+
"no-more-products": "No more products",
|
|
194
|
+
"no-orders": "You have no orders yet",
|
|
195
|
+
"no-shipment-methods": "No shipment methods",
|
|
196
|
+
"no-sidebar": "no sidebar",
|
|
197
|
+
"no-stores": "No outlets loaded yet",
|
|
198
|
+
"no-variants": "You must select the product options",
|
|
199
|
+
"notes": "Additional shipping details",
|
|
200
|
+
"number": "Number",
|
|
201
|
+
"oldest-first": "Oldest first",
|
|
202
|
+
"operation-error": "It was not possible to perform the operation",
|
|
203
|
+
"operation-error-param": "It was not possible to perform the operation: {{ error }}",
|
|
204
|
+
"order": "Order",
|
|
205
|
+
"order-number": "Order number",
|
|
206
|
+
"order-success": "Order success",
|
|
207
|
+
"orders-error": "There was an error getting your orders. Please try again later.",
|
|
208
|
+
"other-data": "More info",
|
|
209
|
+
"out-of-stock": "The selected product or variant does not have stock",
|
|
210
|
+
"out-of-stock-actually": "The selected product currently does not have more stock",
|
|
211
|
+
"pages": "pages",
|
|
212
|
+
"password": "Password",
|
|
213
|
+
"password-doesnt-match": "Passwords do not match",
|
|
214
|
+
"pay": "Pay",
|
|
215
|
+
"pay-with-offline": "Finalize Order",
|
|
216
|
+
"pay-with-transfer": "Pay with wire transfer",
|
|
217
|
+
"payment": "Payment method",
|
|
218
|
+
"payment-error": "There was an error processing your payment. Please try again later.",
|
|
219
|
+
"payment-preferences-error": "There was a problem trying to get payment preferences. Try it again later",
|
|
220
|
+
"payment-state": "Payment state",
|
|
221
|
+
"pending": "Pending of payment",
|
|
222
|
+
"phone": "Phone number",
|
|
223
|
+
"phone-cases": "phone cases",
|
|
224
|
+
"phone-help1": "Phone No is required.",
|
|
225
|
+
"phone-help2": "Phone No is must be number.",
|
|
226
|
+
"phone-number": "Phone number",
|
|
227
|
+
"pickup-store": "Pickup Store",
|
|
228
|
+
"place-order": "Place order",
|
|
229
|
+
"pockets-squares": "pockets squares",
|
|
230
|
+
"postal-code": "Postal Code",
|
|
231
|
+
"postal-code-help": "Postalcode is required",
|
|
232
|
+
"postal-code-pattern-error": "The zip code must be numeric only",
|
|
233
|
+
"precious-jewellery": "precious jewellery",
|
|
234
|
+
"price": "Price",
|
|
235
|
+
"processing-payment": "Processing payment",
|
|
236
|
+
"product": "Product",
|
|
237
|
+
"product-added": "The product was added to the cart",
|
|
238
|
+
"product-details": "Product details",
|
|
239
|
+
"product-name": "Article name",
|
|
240
|
+
"product-removed": "Cart product removed",
|
|
241
|
+
"product-updated": "The product quantity was updated to {{quantity}}",
|
|
242
|
+
"products": "Products",
|
|
243
|
+
"profile": "Profile",
|
|
244
|
+
"purchase-code": "Your purchase code is: ",
|
|
245
|
+
"purchase-successful": "¡Purchase successful!",
|
|
246
|
+
"purchase-summary": "Purchase summary",
|
|
247
|
+
"quantity": "Quantity",
|
|
248
|
+
"ready": "Ready",
|
|
249
|
+
"ready-form": "Next",
|
|
250
|
+
"recover": "Recover",
|
|
251
|
+
"recover-password": "Recover password ",
|
|
252
|
+
"redirect-cart": "Redirecting to cart",
|
|
253
|
+
"register": "Register",
|
|
254
|
+
"register-ok": "An email was sent to your mailbox to verify your new account",
|
|
255
|
+
"related-products": "Related Products",
|
|
256
|
+
"repeat-new-password": "Repeat new password",
|
|
257
|
+
"repeat-password": "Repeat password",
|
|
258
|
+
"repeated-new-password": "Repeated new password",
|
|
259
|
+
"result-for": "Results for",
|
|
260
|
+
"right-sidebar": "right sidebar",
|
|
261
|
+
"rings-wrist-wear": "rings & wrist wear",
|
|
262
|
+
"same-billing-address": "Same billing address",
|
|
263
|
+
"scarves": "scarves",
|
|
264
|
+
"search": "Search",
|
|
265
|
+
"sections": "Sections",
|
|
266
|
+
"security-code": "Security code",
|
|
267
|
+
"see-order": "See order",
|
|
268
|
+
"select-channel": "Select a channel",
|
|
269
|
+
"select-country": "Select country",
|
|
270
|
+
"select-method": "Select one method",
|
|
271
|
+
"set-forgot-email": "Enter your email ",
|
|
272
|
+
"set-new-password": "Set new password",
|
|
273
|
+
"set-password": "New password",
|
|
274
|
+
"set-payment": "Then indicate the payment method",
|
|
275
|
+
"set-shipment": "Then indicate the shipment method",
|
|
276
|
+
"shipment": "Shipment",
|
|
277
|
+
"shipment-error": "There was a problem trying to persist the shipment. Try it again later",
|
|
278
|
+
"shipment-method": "Shipment method",
|
|
279
|
+
"shipment-methods": "Shipment methods",
|
|
280
|
+
"shipment-state": "Shipment state",
|
|
281
|
+
"shipment-tracking": "Shipment tracking",
|
|
282
|
+
"shipped": "Shipped",
|
|
283
|
+
"shipping": "Shipping method",
|
|
284
|
+
"shipping-address": "Default Shipping Address",
|
|
285
|
+
"shirts": "shirts",
|
|
286
|
+
"shop": "Shop",
|
|
287
|
+
"show-product-detail": "Show detail",
|
|
288
|
+
"size": "Size",
|
|
289
|
+
"skirts": "skirts",
|
|
290
|
+
"sorry": "Sorry! Couldn't find the product you were looking For!!!",
|
|
291
|
+
"sorry-details": "Please check if you have misspelt something or try searching with other words.",
|
|
292
|
+
"special-offer": "Special offer",
|
|
293
|
+
"special-products": "Special products",
|
|
294
|
+
"sports-wear": "sports wear",
|
|
295
|
+
"standard": "Standard",
|
|
296
|
+
"start": "Start",
|
|
297
|
+
"state": "State",
|
|
298
|
+
"state-help": "State is required",
|
|
299
|
+
"status": "Status",
|
|
300
|
+
"stores": "Points of sale",
|
|
301
|
+
"street": "Street",
|
|
302
|
+
"subtotal": "Subtotal",
|
|
303
|
+
"taxes": "Taxes",
|
|
304
|
+
"taxon": "Category",
|
|
305
|
+
"thanks-details": "Your purchase has been made successfully. You will then receive an email with the details of your purchase",
|
|
306
|
+
"thanks-for-buying": "Thanks for your purchase",
|
|
307
|
+
"thanks-for-register": "Thanks for register",
|
|
308
|
+
"thanks-for-register-detail": "You can now log in. Then we leave you access to the login",
|
|
309
|
+
"thumbnail-below": "thumbnail below",
|
|
310
|
+
"thumbnail-left": "thumbnail left",
|
|
311
|
+
"thumbnail-right": "thumbnail right",
|
|
312
|
+
"ties": "ties",
|
|
313
|
+
"top": "top",
|
|
314
|
+
"top-collection": "Top collection",
|
|
315
|
+
"topbar-title": "Welcome to Our store easycommercetech®",
|
|
316
|
+
"topic": "Topic",
|
|
317
|
+
"total": "Total",
|
|
318
|
+
"total-price": "Total price",
|
|
319
|
+
"town-city": "Town/City",
|
|
320
|
+
"town-city-help": "City is required",
|
|
321
|
+
"type-document-help": "Invalid document type",
|
|
322
|
+
"unable-get-orders": "Unable to get orders at this time. Please time again later.",
|
|
323
|
+
"update": "Update",
|
|
324
|
+
"updated-password": "Password updated",
|
|
325
|
+
"updated-password-detail": "Your password has been reset. You can now log in",
|
|
326
|
+
"urgent": "Urgent",
|
|
327
|
+
"user-no-data": "Impossible d'obtenir les informations de l'utilisateur",
|
|
328
|
+
"user-no-data-description": "It is possible that your internet connection is not active. Try it again later.",
|
|
329
|
+
"variants-left": "There are still unselected options",
|
|
330
|
+
"vertical-tab": "vertical tab",
|
|
331
|
+
"view-cart": "View cart",
|
|
332
|
+
"watch": "Watches",
|
|
333
|
+
"welcome-to-fashion": "Welcome to fashion",
|
|
334
|
+
"westarn-wear": "westarn wear",
|
|
335
|
+
"will_contact": "Once the transfer is received, we will contact you to inform you of the status of your purchase",
|
|
336
|
+
"wishlist": "wishlist",
|
|
337
|
+
"women-collection": "Women's collection",
|
|
338
|
+
"women-fashion": "women's fashion",
|
|
339
|
+
"address-book-not-result":"The addresses are not available.",
|
|
340
|
+
"select-address": "Select address",
|
|
341
|
+
"load-address": "Load address",
|
|
342
|
+
"channel-permission-denied": "You are not authorized to access this channel",
|
|
343
|
+
"retrieve-cart": "Retrieving Cart",
|
|
344
|
+
"choose-country": "Choose a country",
|
|
345
|
+
"choose-province": "Choose a province/zone",
|
|
346
|
+
"required-fields": "Required fields",
|
|
347
|
+
"fields-incomplete": "There are still unfilled or invalid fields",
|
|
348
|
+
"accept-terms": "Accept terms and conditions",
|
|
349
|
+
"must-accept-terms": "You must accept all terms and conditions in order to continue.",
|
|
350
|
+
"whats-this": "¿What is this?",
|
|
351
|
+
"new-address":"New address",
|
|
352
|
+
"invoices": "Invoices",
|
|
353
|
+
"see": "See",
|
|
354
|
+
"register-error": "An error occurred during registration.",
|
|
355
|
+
"register-error-detail": "Please try the operation later.",
|
|
356
|
+
"total-products": "Product total",
|
|
357
|
+
"payment-method": "Payment method",
|
|
358
|
+
"unit-price": "Unit price",
|
|
359
|
+
"download" : "Download",
|
|
360
|
+
"my-clients": "My clients",
|
|
361
|
+
"generate-budget": "Generate budget",
|
|
362
|
+
"manage-orders": "Manage orders",
|
|
363
|
+
"order-by": "Order by...",
|
|
364
|
+
"order-date": "Order by Date",
|
|
365
|
+
"order-alph": "Order Alphabetically",
|
|
366
|
+
"client": "Client",
|
|
367
|
+
"user": "User",
|
|
368
|
+
"code": "Code",
|
|
369
|
+
"access": "Access",
|
|
370
|
+
"no-customers": "You have no customers assigned to you",
|
|
371
|
+
"exit": "Exit",
|
|
372
|
+
"start-impersonating": "Operating as: {{ customer }}",
|
|
373
|
+
"stop-impersonating": "You are not operating as none of your customers",
|
|
374
|
+
"must-select-customer": "You must select a customer to perform this action.",
|
|
375
|
+
"new-orders": "New orders",
|
|
376
|
+
"operate-as": "Operate as",
|
|
377
|
+
"operating-as": "Operating as",
|
|
378
|
+
"instructions": "Instructions",
|
|
379
|
+
"error-convertibility": "Convertibility error. Try again later."
|
|
380
|
+
}
|