@jetshop/template-trend 6.1.4 → 6.1.5
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/dist/src/client.js +6 -0
- package/dist/src/client.js.map +1 -0
- package/dist/src/components/Auth/ForgotPassword.js +30 -0
- package/dist/src/components/Auth/ForgotPassword.js.map +1 -0
- package/dist/src/components/Auth/ForgotPassword.loadable.js +7 -0
- package/dist/src/components/Auth/ForgotPassword.loadable.js.map +1 -0
- package/dist/src/components/Auth/LogInPage.js +69 -0
- package/dist/src/components/Auth/LogInPage.js.map +1 -0
- package/dist/src/components/Auth/LogInPage.loadable.js +7 -0
- package/dist/src/components/Auth/LogInPage.loadable.js.map +1 -0
- package/dist/src/components/Auth/ResetPassword.js +30 -0
- package/dist/src/components/Auth/ResetPassword.js.map +1 -0
- package/dist/src/components/Auth/ResetPassword.loadable.js +7 -0
- package/dist/src/components/Auth/ResetPassword.loadable.js.map +1 -0
- package/dist/src/components/Auth/Signup/Address.js +34 -0
- package/dist/src/components/Auth/Signup/Address.js.map +1 -0
- package/dist/src/components/Auth/Signup/CustomerType.js +30 -0
- package/dist/src/components/Auth/Signup/CustomerType.js.map +1 -0
- package/dist/src/components/Auth/Signup/LoginFields.js +31 -0
- package/dist/src/components/Auth/Signup/LoginFields.js.map +1 -0
- package/dist/src/components/Auth/Signup/PID.js +11 -0
- package/dist/src/components/Auth/Signup/PID.js.map +1 -0
- package/dist/src/components/Auth/Signup/SSN.js +29 -0
- package/dist/src/components/Auth/Signup/SSN.js.map +1 -0
- package/dist/src/components/Auth/Signup/SignUpPage.js +78 -0
- package/dist/src/components/Auth/Signup/SignUpPage.js.map +1 -0
- package/dist/src/components/Auth/Signup/SignUpPage.loadable.js +7 -0
- package/dist/src/components/Auth/Signup/SignUpPage.loadable.js.map +1 -0
- package/dist/src/components/Auth/Signup/useSignupValidation.js +29 -0
- package/dist/src/components/Auth/Signup/useSignupValidation.js.map +1 -0
- package/dist/src/components/Auth/UI/Form.js +33 -0
- package/dist/src/components/Auth/UI/Form.js.map +1 -0
- package/dist/src/components/Cart/CartButton.js +46 -0
- package/dist/src/components/Cart/CartButton.js.map +1 -0
- package/dist/src/components/Cart/CartFlyout.js +190 -0
- package/dist/src/components/Cart/CartFlyout.js.map +1 -0
- package/dist/src/components/Cart/CartItem.js +155 -0
- package/dist/src/components/Cart/CartItem.js.map +1 -0
- package/dist/src/components/Cart/FreeShipping.js +51 -0
- package/dist/src/components/Cart/FreeShipping.js.map +1 -0
- package/dist/src/components/CategoryPage/CategoryHeader.js +104 -0
- package/dist/src/components/CategoryPage/CategoryHeader.js.map +1 -0
- package/dist/src/components/CategoryPage/CategoryHeaderLoadingState.js +13 -0
- package/dist/src/components/CategoryPage/CategoryHeaderLoadingState.js.map +1 -0
- package/dist/src/components/CategoryPage/CategoryPage.js +26 -0
- package/dist/src/components/CategoryPage/CategoryPage.js.map +1 -0
- package/dist/src/components/CategoryPage/CategoryPage.loadable.js +7 -0
- package/dist/src/components/CategoryPage/CategoryPage.loadable.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/ActiveFilters.js +79 -0
- package/dist/src/components/CategoryPage/Filters/ActiveFilters.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/BooleanFilters.js +18 -0
- package/dist/src/components/CategoryPage/Filters/BooleanFilters.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Filter.js +97 -0
- package/dist/src/components/CategoryPage/Filters/Filter.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/FilterDrawer.js +91 -0
- package/dist/src/components/CategoryPage/Filters/FilterDrawer.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/FilterDropdownMenu.js +77 -0
- package/dist/src/components/CategoryPage/Filters/FilterDropdownMenu.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/ListFilters.js +38 -0
- package/dist/src/components/CategoryPage/Filters/ListFilters.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/ActiveCarot.js +15 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/ActiveCarot.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/FilterButton.js +107 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/FilterButton.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/ListAccordion.js +44 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/ListAccordion.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/RangeAccordion.js +21 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/RangeAccordion.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/SortOrderAccordion.js +30 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/SortOrderAccordion.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/shared/styles.js +12 -0
- package/dist/src/components/CategoryPage/Filters/Mobile/shared/styles.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/MultiListFilters.js +37 -0
- package/dist/src/components/CategoryPage/Filters/MultiListFilters.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/RangeFilters.js +122 -0
- package/dist/src/components/CategoryPage/Filters/RangeFilters.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/SortOrders.js +29 -0
- package/dist/src/components/CategoryPage/Filters/SortOrders.js.map +1 -0
- package/dist/src/components/CategoryPage/Filters/index.js +2 -0
- package/dist/src/components/CategoryPage/Filters/index.js.map +1 -0
- package/dist/src/components/CategoryPage/ProductCard.js +98 -0
- package/dist/src/components/CategoryPage/ProductCard.js.map +1 -0
- package/dist/src/components/CategoryPage/ProductGrid.js +89 -0
- package/dist/src/components/CategoryPage/ProductGrid.js.map +1 -0
- package/dist/src/components/CategoryPage/ProductGridWindow.js +48 -0
- package/dist/src/components/CategoryPage/ProductGridWindow.js.map +1 -0
- package/dist/src/components/CategoryPage/StandardCategoryPage.js +51 -0
- package/dist/src/components/CategoryPage/StandardCategoryPage.js.map +1 -0
- package/dist/src/components/CategoryPage/WindowedCategoryPage.js +87 -0
- package/dist/src/components/CategoryPage/WindowedCategoryPage.js.map +1 -0
- package/dist/src/components/CategoryPage/index.js +2 -0
- package/dist/src/components/CategoryPage/index.js.map +1 -0
- package/dist/src/components/ContentPage/ContentPage.js +64 -0
- package/dist/src/components/ContentPage/ContentPage.js.map +1 -0
- package/dist/src/components/ContentPage/ContentPage.loadable.js +7 -0
- package/dist/src/components/ContentPage/ContentPage.loadable.js.map +1 -0
- package/dist/src/components/ContentPage/SubPageNavigation.js +164 -0
- package/dist/src/components/ContentPage/SubPageNavigation.js.map +1 -0
- package/dist/src/components/ContentPage/index.js +2 -0
- package/dist/src/components/ContentPage/index.js.map +1 -0
- package/dist/src/components/CookieConsent.js +84 -0
- package/dist/src/components/CookieConsent.js.map +1 -0
- package/dist/src/components/Forms/GlobalError.js +28 -0
- package/dist/src/components/Forms/GlobalError.js.map +1 -0
- package/dist/src/components/Forms/Input.js +79 -0
- package/dist/src/components/Forms/Input.js.map +1 -0
- package/dist/src/components/Forms/InputStatus.js +42 -0
- package/dist/src/components/Forms/InputStatus.js.map +1 -0
- package/dist/src/components/Forms/Success.js +25 -0
- package/dist/src/components/Forms/Success.js.map +1 -0
- package/dist/src/components/Layout/Container.js +19 -0
- package/dist/src/components/Layout/Container.js.map +1 -0
- package/dist/src/components/Layout/Content/index.js +7 -0
- package/dist/src/components/Layout/Content/index.js.map +1 -0
- package/dist/src/components/Layout/Footer/Footer.js +106 -0
- package/dist/src/components/Layout/Footer/Footer.js.map +1 -0
- package/dist/src/components/Layout/Footer/FooterLinks.js +24 -0
- package/dist/src/components/Layout/Footer/FooterLinks.js.map +1 -0
- package/dist/src/components/Layout/Footer/SocialLinks.js +62 -0
- package/dist/src/components/Layout/Footer/SocialLinks.js.map +1 -0
- package/dist/src/components/Layout/Header/Categories/Categories.js +10 -0
- package/dist/src/components/Layout/Header/Categories/Categories.js.map +1 -0
- package/dist/src/components/Layout/Header/Categories/MobileCategories.js +128 -0
- package/dist/src/components/Layout/Header/Categories/MobileCategories.js.map +1 -0
- package/dist/src/components/Layout/Header/Categories/__util__/getCategoriesByLevel.js +4 -0
- package/dist/src/components/Layout/Header/Categories/__util__/getCategoriesByLevel.js.map +1 -0
- package/dist/src/components/Layout/Header/Categories/__util__/getCategoriesUnderParent.js +4 -0
- package/dist/src/components/Layout/Header/Categories/__util__/getCategoriesUnderParent.js.map +1 -0
- package/dist/src/components/Layout/Header/Categories/__util__/hasChildCategories.js +4 -0
- package/dist/src/components/Layout/Header/Categories/__util__/hasChildCategories.js.map +1 -0
- package/dist/src/components/Layout/Header/CategoryMenu/CategoryMenu.js +21 -0
- package/dist/src/components/Layout/Header/CategoryMenu/CategoryMenu.js.map +1 -0
- package/dist/src/components/Layout/Header/CategoryMenu/CategoryMenuContainer.js +55 -0
- package/dist/src/components/Layout/Header/CategoryMenu/CategoryMenuContainer.js.map +1 -0
- package/dist/src/components/Layout/Header/CategoryMenu/SubMenuSection.js +60 -0
- package/dist/src/components/Layout/Header/CategoryMenu/SubMenuSection.js.map +1 -0
- package/dist/src/components/Layout/Header/CategoryMenu/SubMenuWrapper.js +78 -0
- package/dist/src/components/Layout/Header/CategoryMenu/SubMenuWrapper.js.map +1 -0
- package/dist/src/components/Layout/Header/ChannelSelector/ChannelSelector.js +26 -0
- package/dist/src/components/Layout/Header/ChannelSelector/ChannelSelector.js.map +1 -0
- package/dist/src/components/Layout/Header/ChannelSelector/ChannelSelectorModal.js +36 -0
- package/dist/src/components/Layout/Header/ChannelSelector/ChannelSelectorModal.js.map +1 -0
- package/dist/src/components/Layout/Header/ChannelSelector/LanguageSelector.js +12 -0
- package/dist/src/components/Layout/Header/ChannelSelector/LanguageSelector.js.map +1 -0
- package/dist/src/components/Layout/Header/ChannelSelector/Selector.js +120 -0
- package/dist/src/components/Layout/Header/ChannelSelector/Selector.js.map +1 -0
- package/dist/src/components/Layout/Header/ChannelSelector/flattenCountries.js +15 -0
- package/dist/src/components/Layout/Header/ChannelSelector/flattenCountries.js.map +1 -0
- package/dist/src/components/Layout/Header/Header.js +189 -0
- package/dist/src/components/Layout/Header/Header.js.map +1 -0
- package/dist/src/components/Layout/Header/Logo.js +40 -0
- package/dist/src/components/Layout/Header/Logo.js.map +1 -0
- package/dist/src/components/Layout/Header/LogoSearchBar.js +15 -0
- package/dist/src/components/Layout/Header/LogoSearchBar.js.map +1 -0
- package/dist/src/components/Layout/Header/MobileMenu.js +76 -0
- package/dist/src/components/Layout/Header/MobileMenu.js.map +1 -0
- package/dist/src/components/Layout/Header/RecommendedChannel/ChannelBanner.js +218 -0
- package/dist/src/components/Layout/Header/RecommendedChannel/ChannelBanner.js.map +1 -0
- package/dist/src/components/Layout/Header/RecommendedChannel/RecommendedChannelSelector.js +123 -0
- package/dist/src/components/Layout/Header/RecommendedChannel/RecommendedChannelSelector.js.map +1 -0
- package/dist/src/components/Layout/Header/SearchBar.js +79 -0
- package/dist/src/components/Layout/Header/SearchBar.js.map +1 -0
- package/dist/src/components/Layout/Header/SearchButton.js +50 -0
- package/dist/src/components/Layout/Header/SearchButton.js.map +1 -0
- package/dist/src/components/Layout/Header/SubCategoryNav.js +71 -0
- package/dist/src/components/Layout/Header/SubCategoryNav.js.map +1 -0
- package/dist/src/components/Layout/Header/TopNav.js +63 -0
- package/dist/src/components/Layout/Header/TopNav.js.map +1 -0
- package/dist/src/components/Layout/MaxWidth.js +19 -0
- package/dist/src/components/Layout/MaxWidth.js.map +1 -0
- package/dist/src/components/Layout/Notifications.js +70 -0
- package/dist/src/components/Layout/Notifications.js.map +1 -0
- package/dist/src/components/LoadingPage.js +19 -0
- package/dist/src/components/LoadingPage.js.map +1 -0
- package/dist/src/components/LogOut.loadable.js +7 -0
- package/dist/src/components/LogOut.loadable.js.map +1 -0
- package/dist/src/components/MyPages/ChangePasswordPage.js +26 -0
- package/dist/src/components/MyPages/ChangePasswordPage.js.map +1 -0
- package/dist/src/components/MyPages/CustomerNameHeader.js +28 -0
- package/dist/src/components/MyPages/CustomerNameHeader.js.map +1 -0
- package/dist/src/components/MyPages/DeleteAccount.js +47 -0
- package/dist/src/components/MyPages/DeleteAccount.js.map +1 -0
- package/dist/src/components/MyPages/MyPages.js +152 -0
- package/dist/src/components/MyPages/MyPages.js.map +1 -0
- package/dist/src/components/MyPages/MyPages.loadable.js +7 -0
- package/dist/src/components/MyPages/MyPages.loadable.js.map +1 -0
- package/dist/src/components/MyPages/MyPagesBreadcrumbs.js +18 -0
- package/dist/src/components/MyPages/MyPagesBreadcrumbs.js.map +1 -0
- package/dist/src/components/MyPages/MyPagesSidebar.js +81 -0
- package/dist/src/components/MyPages/MyPagesSidebar.js.map +1 -0
- package/dist/src/components/MyPages/MyPagesStartPage.js +99 -0
- package/dist/src/components/MyPages/MyPagesStartPage.js.map +1 -0
- package/dist/src/components/MyPages/Newsletter.js +33 -0
- package/dist/src/components/MyPages/Newsletter.js.map +1 -0
- package/dist/src/components/MyPages/Orders/ListOrder.js +159 -0
- package/dist/src/components/MyPages/Orders/ListOrder.js.map +1 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/Contact.js +38 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/Contact.js.map +1 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/ListDetail.js +196 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/ListDetail.js.map +1 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/OrderTotals.js +81 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/OrderTotals.js.map +1 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/ShippingPayment.js +37 -0
- package/dist/src/components/MyPages/Orders/OrderDetail/ShippingPayment.js.map +1 -0
- package/dist/src/components/MyPages/Orders/OrderListPage.js +56 -0
- package/dist/src/components/MyPages/Orders/OrderListPage.js.map +1 -0
- package/dist/src/components/MyPages/ProfileDeliveryAddresses.js +93 -0
- package/dist/src/components/MyPages/ProfileDeliveryAddresses.js.map +1 -0
- package/dist/src/components/MyPages/ProfilePage.js +109 -0
- package/dist/src/components/MyPages/ProfilePage.js.map +1 -0
- package/dist/src/components/MyPages/ProfileView.js +42 -0
- package/dist/src/components/MyPages/ProfileView.js.map +1 -0
- package/dist/src/components/NavigationTree/NavTree.js +53 -0
- package/dist/src/components/NavigationTree/NavTree.js.map +1 -0
- package/dist/src/components/NavigationTree/NavTreePage.js +7 -0
- package/dist/src/components/NavigationTree/NavTreePage.js.map +1 -0
- package/dist/src/components/NavigationTree/NavTreePage.loadable.js +7 -0
- package/dist/src/components/NavigationTree/NavTreePage.loadable.js.map +1 -0
- package/dist/src/components/Newsletter/NewsletterField.js +93 -0
- package/dist/src/components/Newsletter/NewsletterField.js.map +1 -0
- package/dist/src/components/NotFoundPage.js +59 -0
- package/dist/src/components/NotFoundPage.js.map +1 -0
- package/dist/src/components/NotFoundPage.loadable.js +7 -0
- package/dist/src/components/NotFoundPage.loadable.js.map +1 -0
- package/dist/src/components/Pages/About.js +7 -0
- package/dist/src/components/Pages/About.js.map +1 -0
- package/dist/src/components/Pagination/Pagination.js +29 -0
- package/dist/src/components/Pagination/Pagination.js.map +1 -0
- package/dist/src/components/Pagination/PaginationWrapper.js +16 -0
- package/dist/src/components/Pagination/PaginationWrapper.js.map +1 -0
- package/dist/src/components/PreviewRoute.loadable.js +7 -0
- package/dist/src/components/PreviewRoute.loadable.js.map +1 -0
- package/dist/src/components/ProductList/AddToCart.js +46 -0
- package/dist/src/components/ProductList/AddToCart.js.map +1 -0
- package/dist/src/components/ProductList/Favourite.js +46 -0
- package/dist/src/components/ProductList/Favourite.js.map +1 -0
- package/dist/src/components/ProductList/FavouriteCount.js +15 -0
- package/dist/src/components/ProductList/FavouriteCount.js.map +1 -0
- package/dist/src/components/ProductList/Favourites.js +187 -0
- package/dist/src/components/ProductList/Favourites.js.map +1 -0
- package/dist/src/components/ProductList/Lister.js +22 -0
- package/dist/src/components/ProductList/Lister.js.map +1 -0
- package/dist/src/components/ProductList/Product.js +62 -0
- package/dist/src/components/ProductList/Product.js.map +1 -0
- package/dist/src/components/ProductList/SelectVariant.js +47 -0
- package/dist/src/components/ProductList/SelectVariant.js.map +1 -0
- package/dist/src/components/ProductList/productListQueries.js +15 -0
- package/dist/src/components/ProductList/productListQueries.js.map +1 -0
- package/dist/src/components/ProductPage/AddToCart/AddToCartForm.js +110 -0
- package/dist/src/components/ProductPage/AddToCart/AddToCartForm.js.map +1 -0
- package/dist/src/components/ProductPage/AddToCart/ProductToast.js +118 -0
- package/dist/src/components/ProductPage/AddToCart/ProductToast.js.map +1 -0
- package/dist/src/components/ProductPage/AddToCart/useProductToast.js +21 -0
- package/dist/src/components/ProductPage/AddToCart/useProductToast.js.map +1 -0
- package/dist/src/components/ProductPage/Campaigns.js +43 -0
- package/dist/src/components/ProductPage/Campaigns.js.map +1 -0
- package/dist/src/components/ProductPage/ConfigurationSelector.js +62 -0
- package/dist/src/components/ProductPage/ConfigurationSelector.js.map +1 -0
- package/dist/src/components/ProductPage/Images/ImageContainer.js +45 -0
- package/dist/src/components/ProductPage/Images/ImageContainer.js.map +1 -0
- package/dist/src/components/ProductPage/Images/Thumbnails.js +32 -0
- package/dist/src/components/ProductPage/Images/Thumbnails.js.map +1 -0
- package/dist/src/components/ProductPage/PackageProduct/IncludedInPackages.js +32 -0
- package/dist/src/components/ProductPage/PackageProduct/IncludedInPackages.js.map +1 -0
- package/dist/src/components/ProductPage/PackageProduct/PackageProduct.js +170 -0
- package/dist/src/components/ProductPage/PackageProduct/PackageProduct.js.map +1 -0
- package/dist/src/components/ProductPage/PackageProduct/PackageProductItem.js +92 -0
- package/dist/src/components/ProductPage/PackageProduct/PackageProductItem.js.map +1 -0
- package/dist/src/components/ProductPage/PriceHistory.js +99 -0
- package/dist/src/components/ProductPage/PriceHistory.js.map +1 -0
- package/dist/src/components/ProductPage/ProductInfo.js +55 -0
- package/dist/src/components/ProductPage/ProductInfo.js.map +1 -0
- package/dist/src/components/ProductPage/ProductInfoAccordion.js +46 -0
- package/dist/src/components/ProductPage/ProductInfoAccordion.js.map +1 -0
- package/dist/src/components/ProductPage/ProductPage.js +174 -0
- package/dist/src/components/ProductPage/ProductPage.js.map +1 -0
- package/dist/src/components/ProductPage/ProductPage.loadable.js +7 -0
- package/dist/src/components/ProductPage/ProductPage.loadable.js.map +1 -0
- package/dist/src/components/ProductPage/ProductPageLoadingState.js +55 -0
- package/dist/src/components/ProductPage/ProductPageLoadingState.js.map +1 -0
- package/dist/src/components/ProductPage/QuantityContainer.js +21 -0
- package/dist/src/components/ProductPage/QuantityContainer.js.map +1 -0
- package/dist/src/components/ProductPage/RelatedProducts.js +45 -0
- package/dist/src/components/ProductPage/RelatedProducts.js.map +1 -0
- package/dist/src/components/ProductPage/SizePicker.js +37 -0
- package/dist/src/components/ProductPage/SizePicker.js.map +1 -0
- package/dist/src/components/ProductPage/StockStatus/NotifyWhenBack.js +93 -0
- package/dist/src/components/ProductPage/StockStatus/NotifyWhenBack.js.map +1 -0
- package/dist/src/components/ProductPage/StockStatus/StockOrb.js +31 -0
- package/dist/src/components/ProductPage/StockStatus/StockOrb.js.map +1 -0
- package/dist/src/components/ProductPage/StockStatus/StockStatusIndicator.js +33 -0
- package/dist/src/components/ProductPage/StockStatus/StockStatusIndicator.js.map +1 -0
- package/dist/src/components/ProductPage/StockStatus/WarehouseStock.js +255 -0
- package/dist/src/components/ProductPage/StockStatus/WarehouseStock.js.map +1 -0
- package/dist/src/components/ProductPage/VariantSelector.js +138 -0
- package/dist/src/components/ProductPage/VariantSelector.js.map +1 -0
- package/dist/src/components/ProductPage/styledComponents.js +11 -0
- package/dist/src/components/ProductPage/styledComponents.js.map +1 -0
- package/dist/src/components/ProductPage/useProductValidationMessage.js +24 -0
- package/dist/src/components/ProductPage/useProductValidationMessage.js.map +1 -0
- package/dist/src/components/SearchPage/CategoryList.js +129 -0
- package/dist/src/components/SearchPage/CategoryList.js.map +1 -0
- package/dist/src/components/SearchPage/EmptySearchResults.js +23 -0
- package/dist/src/components/SearchPage/EmptySearchResults.js.map +1 -0
- package/dist/src/components/SearchPage/SearchMeta.js +27 -0
- package/dist/src/components/SearchPage/SearchMeta.js.map +1 -0
- package/dist/src/components/SearchPage/SearchPage.js +52 -0
- package/dist/src/components/SearchPage/SearchPage.js.map +1 -0
- package/dist/src/components/SearchPage/SearchPage.loadable.js +7 -0
- package/dist/src/components/SearchPage/SearchPage.loadable.js.map +1 -0
- package/dist/src/components/SearchPage/SearchResults.js +60 -0
- package/dist/src/components/SearchPage/SearchResults.js.map +1 -0
- package/dist/src/components/SearchPage/SearchTerm.js +11 -0
- package/dist/src/components/SearchPage/SearchTerm.js.map +1 -0
- package/dist/src/components/SearchPage/WindowedSearchResults.js +80 -0
- package/dist/src/components/SearchPage/WindowedSearchResults.js.map +1 -0
- package/dist/src/components/SearchPage/index.js +3 -0
- package/dist/src/components/SearchPage/index.js.map +1 -0
- package/dist/src/components/Shop.js +82 -0
- package/dist/src/components/Shop.js.map +1 -0
- package/dist/src/components/StartPage/Content/Row.js +40 -0
- package/dist/src/components/StartPage/Content/Row.js.map +1 -0
- package/dist/src/components/StartPage/Content/StartPageCampaign.js +112 -0
- package/dist/src/components/StartPage/Content/StartPageCampaign.js.map +1 -0
- package/dist/src/components/StartPage/Content/StartPageCategories.js +80 -0
- package/dist/src/components/StartPage/Content/StartPageCategories.js.map +1 -0
- package/dist/src/components/StartPage/Content/StartPageHTMLContent.js +74 -0
- package/dist/src/components/StartPage/Content/StartPageHTMLContent.js.map +1 -0
- package/dist/src/components/StartPage/Content/StartPageHero.js +73 -0
- package/dist/src/components/StartPage/Content/StartPageHero.js.map +1 -0
- package/dist/src/components/StartPage/Content/StartPageProductGrid.js +69 -0
- package/dist/src/components/StartPage/Content/StartPageProductGrid.js.map +1 -0
- package/dist/src/components/StartPage/StartPage.js +37 -0
- package/dist/src/components/StartPage/StartPage.js.map +1 -0
- package/dist/src/components/StartPage/StartPage.loadable.js +7 -0
- package/dist/src/components/StartPage/StartPage.loadable.js.map +1 -0
- package/dist/src/components/StartPage/index.js +3 -0
- package/dist/src/components/StartPage/index.js.map +1 -0
- package/dist/src/components/Store/Store.js +26 -0
- package/dist/src/components/Store/Store.js.map +1 -0
- package/dist/src/components/Store/Store.loadable.js +7 -0
- package/dist/src/components/Store/Store.loadable.js.map +1 -0
- package/dist/src/components/Store/StoreDetail.js +13 -0
- package/dist/src/components/Store/StoreDetail.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreList.js +160 -0
- package/dist/src/components/StoreLocator/StoreList.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreLocator.js +133 -0
- package/dist/src/components/StoreLocator/StoreLocator.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreLocator.loadable.js +7 -0
- package/dist/src/components/StoreLocator/StoreLocator.loadable.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreMap.js +116 -0
- package/dist/src/components/StoreLocator/StoreMap.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreMarker.js +63 -0
- package/dist/src/components/StoreLocator/StoreMarker.js.map +1 -0
- package/dist/src/components/StoreLocator/StoreSearch.js +47 -0
- package/dist/src/components/StoreLocator/StoreSearch.js.map +1 -0
- package/dist/src/components/StoreLocator/UserLocation.js +76 -0
- package/dist/src/components/StoreLocator/UserLocation.js.map +1 -0
- package/dist/src/components/StoreLocator/useLocationState.js +14 -0
- package/dist/src/components/StoreLocator/useLocationState.js.map +1 -0
- package/dist/src/components/StoreLocator/useMapState.js +16 -0
- package/dist/src/components/StoreLocator/useMapState.js.map +1 -0
- package/dist/src/components/Theme.js +6 -0
- package/dist/src/components/Theme.js.map +1 -0
- package/dist/src/components/ui/Badge.js +33 -0
- package/dist/src/components/ui/Badge.js.map +1 -0
- package/dist/src/components/ui/Button.js +93 -0
- package/dist/src/components/ui/Button.js.map +1 -0
- package/dist/src/components/ui/CloseButton.js +18 -0
- package/dist/src/components/ui/CloseButton.js.map +1 -0
- package/dist/src/components/ui/Divider.js +11 -0
- package/dist/src/components/ui/Divider.js.map +1 -0
- package/dist/src/components/ui/Headings.js +19 -0
- package/dist/src/components/ui/Headings.js.map +1 -0
- package/dist/src/components/ui/RadioGroupWithLabels.js +16 -0
- package/dist/src/components/ui/RadioGroupWithLabels.js.map +1 -0
- package/dist/src/components/ui/Spinner.js +39 -0
- package/dist/src/components/ui/Spinner.js.map +1 -0
- package/dist/src/fonts/loadFontCss.js +51 -0
- package/dist/src/fonts/loadFontCss.js.map +1 -0
- package/dist/src/globalStyles.js +83 -0
- package/dist/src/globalStyles.js.map +1 -0
- package/dist/src/server.js +12 -0
- package/dist/src/server.js.map +1 -0
- package/dist/src/shop.config.js +68 -0
- package/dist/src/shop.config.js.map +1 -0
- package/dist/src/theme-variables.js +65 -0
- package/dist/src/theme-variables.js.map +1 -0
- package/dist/translations/cs.json +788 -0
- package/dist/translations/da.json +791 -0
- package/dist/translations/de.json +788 -0
- package/dist/translations/en.json +794 -0
- package/dist/translations/es.json +788 -0
- package/dist/translations/et.json +788 -0
- package/dist/translations/fi.json +794 -0
- package/dist/translations/fr.json +788 -0
- package/dist/translations/index.js +18 -0
- package/dist/translations/index.js.map +1 -0
- package/dist/translations/it.json +788 -0
- package/dist/translations/lv.json +788 -0
- package/dist/translations/nb.json +791 -0
- package/dist/translations/nl.json +788 -0
- package/dist/translations/pl.json +788 -0
- package/dist/translations/ru.json +788 -0
- package/dist/translations/sk.json +788 -0
- package/dist/translations/sr.json +464 -0
- package/dist/translations/sv.json +794 -0
- package/jsconfig.json +1 -0
- package/package.json +5 -5
|
@@ -0,0 +1,788 @@
|
|
|
1
|
+
{
|
|
2
|
+
"a_to_z_96baaedc": {
|
|
3
|
+
"message": "От А до Я"
|
|
4
|
+
},
|
|
5
|
+
"about_70c18bba": {
|
|
6
|
+
"message": "О нас"
|
|
7
|
+
},
|
|
8
|
+
"add_to_cart_fe03d709": {
|
|
9
|
+
"message": "Добавить в корзину"
|
|
10
|
+
},
|
|
11
|
+
"added_quantity_items_to_bag_96a4a656": {
|
|
12
|
+
"message": "Товаров добавлено: { quantity }"
|
|
13
|
+
},
|
|
14
|
+
"added_to_bag_4be2af1": {
|
|
15
|
+
"message": "Добавлено в корзину"
|
|
16
|
+
},
|
|
17
|
+
"address_e7cb7f63": {
|
|
18
|
+
"message": "Адрес"
|
|
19
|
+
},
|
|
20
|
+
"an_error_occured_please_try_again_9ee6abca": {
|
|
21
|
+
"message": "Ошибка! Пожалуйста, попробуйте еще раз."
|
|
22
|
+
},
|
|
23
|
+
"an_error_occurred_details_e4aea7ad": {
|
|
24
|
+
"message": "Ошибка. Описание:"
|
|
25
|
+
},
|
|
26
|
+
"apply_781a2546": {
|
|
27
|
+
"message": "Применить"
|
|
28
|
+
},
|
|
29
|
+
"apply_filters_26351a5c": {
|
|
30
|
+
"message": "Применить фильтры"
|
|
31
|
+
},
|
|
32
|
+
"are_you_sure_26795d3c": {
|
|
33
|
+
"message": "Вы уверены?"
|
|
34
|
+
},
|
|
35
|
+
"billingaddress_countrycode_97f1bc8e": {
|
|
36
|
+
"message": "billingAddress.countryCode"
|
|
37
|
+
},
|
|
38
|
+
"cancel_caeb1e68": {
|
|
39
|
+
"message": "Отменить"
|
|
40
|
+
},
|
|
41
|
+
"cart_4f6dbcaa": {
|
|
42
|
+
"message": "Корзина"
|
|
43
|
+
},
|
|
44
|
+
"cart_total_c0110f50": {
|
|
45
|
+
"message": "Итого в корзине"
|
|
46
|
+
},
|
|
47
|
+
"categories_9d537a7a": {
|
|
48
|
+
"message": "Категории"
|
|
49
|
+
},
|
|
50
|
+
"change_password_20192c50": {
|
|
51
|
+
"message": "Изменить пароль"
|
|
52
|
+
},
|
|
53
|
+
"change_password_d96f4e06": {
|
|
54
|
+
"message": "Изменить пароль"
|
|
55
|
+
},
|
|
56
|
+
"check_out_fcf51117": {
|
|
57
|
+
"message": "К оплате"
|
|
58
|
+
},
|
|
59
|
+
"choose_country_351b807a": {
|
|
60
|
+
"message": "Выбрать страну"
|
|
61
|
+
},
|
|
62
|
+
"city_69953629": {
|
|
63
|
+
"message": "Город"
|
|
64
|
+
},
|
|
65
|
+
"clear_all_filters_40e65e3b": {
|
|
66
|
+
"message": "Снять все фильтры"
|
|
67
|
+
},
|
|
68
|
+
"clear_filter_5b3a182d": {
|
|
69
|
+
"message": "Снять фильтр"
|
|
70
|
+
},
|
|
71
|
+
"clear_list_93c0d4e3": {
|
|
72
|
+
"message": "Очистить список"
|
|
73
|
+
},
|
|
74
|
+
"close_d634289d": {
|
|
75
|
+
"message": "Закрыть"
|
|
76
|
+
},
|
|
77
|
+
"company_a53a19ad": {
|
|
78
|
+
"message": "Фирма"
|
|
79
|
+
},
|
|
80
|
+
"company_contact_name_dbedb9da": {
|
|
81
|
+
"message": "Контакт фирмы"
|
|
82
|
+
},
|
|
83
|
+
"company_registration_number_4d68074": {
|
|
84
|
+
"message": "Регистрационный номер фирмы"
|
|
85
|
+
},
|
|
86
|
+
"contact_a6e7f6da": {
|
|
87
|
+
"message": "Контакт"
|
|
88
|
+
},
|
|
89
|
+
"contact_details_3e898892": {
|
|
90
|
+
"message": "Контактные данные"
|
|
91
|
+
},
|
|
92
|
+
"count_plural_0_one_1_item_other_count_items_e48de617": {
|
|
93
|
+
"message": "{ count, plural, =0 {} one {1 шт.} other {{ count } 1 шт.} }"
|
|
94
|
+
},
|
|
95
|
+
"country_b9f6d984": {
|
|
96
|
+
"message": "Страна"
|
|
97
|
+
},
|
|
98
|
+
"county_c41f243f": {
|
|
99
|
+
"message": "Уезд"
|
|
100
|
+
},
|
|
101
|
+
"create_profile_33fafbf1": {
|
|
102
|
+
"message": "Создать профиль"
|
|
103
|
+
},
|
|
104
|
+
"create_profile_fc47c26d": {
|
|
105
|
+
"message": "Создать профиль"
|
|
106
|
+
},
|
|
107
|
+
"currency_d6b3d5f6": {
|
|
108
|
+
"message": "Валюта"
|
|
109
|
+
},
|
|
110
|
+
"customercommentname_is_required_f5c2f377": {
|
|
111
|
+
"message": "Требуется { customerCommentName }"
|
|
112
|
+
},
|
|
113
|
+
"delete_account_4e52440b": {
|
|
114
|
+
"message": "Удалить аккаунт"
|
|
115
|
+
},
|
|
116
|
+
"delete_account_81ef7d97": {
|
|
117
|
+
"message": "Удалить аккаунт"
|
|
118
|
+
},
|
|
119
|
+
"delivery_2a07e73e": {
|
|
120
|
+
"message": "Доставка:"
|
|
121
|
+
},
|
|
122
|
+
"delivery_8864b1d9": {
|
|
123
|
+
"message": "Доставка"
|
|
124
|
+
},
|
|
125
|
+
"delivery_address_872728d": {
|
|
126
|
+
"message": "Адрес доставки"
|
|
127
|
+
},
|
|
128
|
+
"department_6abddd98": {
|
|
129
|
+
"message": "Отдел"
|
|
130
|
+
},
|
|
131
|
+
"desired_password_391ab563": {
|
|
132
|
+
"message": "Пароль"
|
|
133
|
+
},
|
|
134
|
+
"directions_eef85bfe": {
|
|
135
|
+
"message": "Направления"
|
|
136
|
+
},
|
|
137
|
+
"discounts_dfde4231": {
|
|
138
|
+
"message": "Скидки"
|
|
139
|
+
},
|
|
140
|
+
"distance_a377c748": {
|
|
141
|
+
"message": "Расстояние"
|
|
142
|
+
},
|
|
143
|
+
"does_not_match_new_password_566ea944": {
|
|
144
|
+
"message": "Новый пароль не совпадает"
|
|
145
|
+
},
|
|
146
|
+
"e_mail_address_11245d70": {
|
|
147
|
+
"message": "Адрес эл. почты"
|
|
148
|
+
},
|
|
149
|
+
"email_address_6e0443a5": {
|
|
150
|
+
"message": "Адрес эл. почты"
|
|
151
|
+
},
|
|
152
|
+
"email_password_fe282e30": {
|
|
153
|
+
"message": "Адрес эл. почты и пароль"
|
|
154
|
+
},
|
|
155
|
+
"enter_email_address_25b6381d": {
|
|
156
|
+
"message": "Введите адрес эл. почты"
|
|
157
|
+
},
|
|
158
|
+
"express_1_2_working_days_5b7007b": {
|
|
159
|
+
"message": "Express – 1–2 рабочих дня"
|
|
160
|
+
},
|
|
161
|
+
"extra_address_b1f2c88": {
|
|
162
|
+
"message": "Дополнительный адрес"
|
|
163
|
+
},
|
|
164
|
+
"failed_adding_to_bag_6911bfca": {
|
|
165
|
+
"message": "Не удалось пополнить заказ"
|
|
166
|
+
},
|
|
167
|
+
"favourites_d8a7f913": {
|
|
168
|
+
"message": "Избранное"
|
|
169
|
+
},
|
|
170
|
+
"field_does_not_match_required_format_1511ccd9": {
|
|
171
|
+
"message": "Неверный формат"
|
|
172
|
+
},
|
|
173
|
+
"filter_e3398407": {
|
|
174
|
+
"message": "Фильтр"
|
|
175
|
+
},
|
|
176
|
+
"find_product_in_store_7a4af069": {
|
|
177
|
+
"message": "Найти товар в магазине"
|
|
178
|
+
},
|
|
179
|
+
"find_store_2d93488b": {
|
|
180
|
+
"message": "Найти магазин"
|
|
181
|
+
},
|
|
182
|
+
"find_store_ec52678f": {
|
|
183
|
+
"message": "Найти магазин"
|
|
184
|
+
},
|
|
185
|
+
"find_the_closest_store_using_your_location_696c8e5a": {
|
|
186
|
+
"message": "Найти ближайший к вам магазин"
|
|
187
|
+
},
|
|
188
|
+
"first_name_75f38a3e": {
|
|
189
|
+
"message": "Имя"
|
|
190
|
+
},
|
|
191
|
+
"forgot_password_69eea15b": {
|
|
192
|
+
"message": "Сбросить пароль"
|
|
193
|
+
},
|
|
194
|
+
"free_for_your_order_34aba239": {
|
|
195
|
+
"message": "Для вашего заказа бесплатно"
|
|
196
|
+
},
|
|
197
|
+
"free_shipping_and_return_355b42d1": {
|
|
198
|
+
"message": "Бесплатная доставка и возврат"
|
|
199
|
+
},
|
|
200
|
+
"go_to_country_517a8515": {
|
|
201
|
+
"message": "Перейти к { country }"
|
|
202
|
+
},
|
|
203
|
+
"got_it_2c06b54a": {
|
|
204
|
+
"message": "Ясно!"
|
|
205
|
+
},
|
|
206
|
+
"hi_firstname_lastname_bc7684c1": {
|
|
207
|
+
"message": "Здравствуйте, { firstName } { lastName }!"
|
|
208
|
+
},
|
|
209
|
+
"high_to_low_b6eda134": {
|
|
210
|
+
"message": "по убыванию"
|
|
211
|
+
},
|
|
212
|
+
"hold_on_a_moment_5a9f3c1d": {
|
|
213
|
+
"message": "Подождите..."
|
|
214
|
+
},
|
|
215
|
+
"hold_on_a_moment_a3f09a64": {
|
|
216
|
+
"message": "Подождите..."
|
|
217
|
+
},
|
|
218
|
+
"home_351838cd": {
|
|
219
|
+
"message": "На главную"
|
|
220
|
+
},
|
|
221
|
+
"homepage_4b84763d": {
|
|
222
|
+
"message": "ГЛАВНАЯ"
|
|
223
|
+
},
|
|
224
|
+
"i_don_t_want_newsletters_a1a3e929": {
|
|
225
|
+
"message": "Не хочу рассылок"
|
|
226
|
+
},
|
|
227
|
+
"i_understand_please_delete_my_account_5f49bf66": {
|
|
228
|
+
"message": "Понятно. Пожалуйста, удалите мой аккаунт"
|
|
229
|
+
},
|
|
230
|
+
"i_want_newsletters_58c52364": {
|
|
231
|
+
"message": "Хочу рассылки"
|
|
232
|
+
},
|
|
233
|
+
"image_not_found_2f99135": {
|
|
234
|
+
"message": "Изображение не найдено"
|
|
235
|
+
},
|
|
236
|
+
"in_stock_859385c7": {
|
|
237
|
+
"message": "На складе"
|
|
238
|
+
},
|
|
239
|
+
"included_in_campaign_46a7230b": {
|
|
240
|
+
"message": "В рамках акции:"
|
|
241
|
+
},
|
|
242
|
+
"included_in_package_5d7f4d3d": {
|
|
243
|
+
"message": "В рамках пакета:"
|
|
244
|
+
},
|
|
245
|
+
"invalid_email_address_8d0d5e33": {
|
|
246
|
+
"message": "Неверный адрес эл. почты"
|
|
247
|
+
},
|
|
248
|
+
"it_looks_like_you_are_visiting_us_from_country_do__832ec546": {
|
|
249
|
+
"message": "Кажется, это { country }, откуда вы к нам пришли. { country } тоже имеет наш сайт. Не желаете ли посетить?"
|
|
250
|
+
},
|
|
251
|
+
"join_the_newsletter_fbefaa77": {
|
|
252
|
+
"message": "Не желаете ли посетить"
|
|
253
|
+
},
|
|
254
|
+
"km_km_24f9536d": {
|
|
255
|
+
"message": "{ km } км"
|
|
256
|
+
},
|
|
257
|
+
"language_6b3e2c7c": {
|
|
258
|
+
"message": "Язык"
|
|
259
|
+
},
|
|
260
|
+
"learn_more_a79a7918": {
|
|
261
|
+
"message": "Подробнее"
|
|
262
|
+
},
|
|
263
|
+
"link_7262adec": {
|
|
264
|
+
"message": "Ссылка"
|
|
265
|
+
},
|
|
266
|
+
"loading_more_data_e8df9877": {
|
|
267
|
+
"message": "Подгружаются данные..."
|
|
268
|
+
},
|
|
269
|
+
"loading_package_details_31166b02": {
|
|
270
|
+
"message": "Загружается описание пакета..."
|
|
271
|
+
},
|
|
272
|
+
"loading_page_currentpage_2c9871c1": {
|
|
273
|
+
"message": "Загружается страница { currentPage }…"
|
|
274
|
+
},
|
|
275
|
+
"loading_search_results_for_term_23278c26": {
|
|
276
|
+
"message": "Загружаются результаты поиска по { term }…"
|
|
277
|
+
},
|
|
278
|
+
"loading_your_saved_items_5293335e": {
|
|
279
|
+
"message": "Загружаются ваши сохраненные данные..."
|
|
280
|
+
},
|
|
281
|
+
"log_in_c9e240ef": {
|
|
282
|
+
"message": "Войти"
|
|
283
|
+
},
|
|
284
|
+
"log_out_379ba28a": {
|
|
285
|
+
"message": "Выйти"
|
|
286
|
+
},
|
|
287
|
+
"login_6f3d6249": {
|
|
288
|
+
"message": "Вход"
|
|
289
|
+
},
|
|
290
|
+
"login_failed_please_try_again_841d7c15": {
|
|
291
|
+
"message": "Ошибка входа. Пожалуйста, попробуйте еще раз"
|
|
292
|
+
},
|
|
293
|
+
"look_up_my_info_6436db80": {
|
|
294
|
+
"message": "Найти мою информацию"
|
|
295
|
+
},
|
|
296
|
+
"low_to_high_2400fc78": {
|
|
297
|
+
"message": "по возрастанию"
|
|
298
|
+
},
|
|
299
|
+
"m_m_6aa9a961": {
|
|
300
|
+
"message": "{ m } м"
|
|
301
|
+
},
|
|
302
|
+
"maxorderquantity_is_the_maximum_order_quantity_96e527df": {
|
|
303
|
+
"message": "Максимальный объем заказа – { maxOrderQuantity }"
|
|
304
|
+
},
|
|
305
|
+
"menu_39cb0e8e": {
|
|
306
|
+
"message": "Меню"
|
|
307
|
+
},
|
|
308
|
+
"mobile_phone_number_cb092391": {
|
|
309
|
+
"message": "Номер телефона"
|
|
310
|
+
},
|
|
311
|
+
"my_orders_40e3ddbe": {
|
|
312
|
+
"message": "Мои заказы"
|
|
313
|
+
},
|
|
314
|
+
"my_orders_474fd888": {
|
|
315
|
+
"message": "Мои заказы"
|
|
316
|
+
},
|
|
317
|
+
"my_pages_c8e29a68": {
|
|
318
|
+
"message": "Мои страницы"
|
|
319
|
+
},
|
|
320
|
+
"my_profile_16c38091": {
|
|
321
|
+
"message": "Мой профиль"
|
|
322
|
+
},
|
|
323
|
+
"my_profile_d97eb90d": {
|
|
324
|
+
"message": "Мой профиль"
|
|
325
|
+
},
|
|
326
|
+
"n_a_d5d5a207": {
|
|
327
|
+
"message": "н/д"
|
|
328
|
+
},
|
|
329
|
+
"name_1aed4a1b": {
|
|
330
|
+
"message": "Имя и фамилия"
|
|
331
|
+
},
|
|
332
|
+
"national_id_social_security_number_ffa20629": {
|
|
333
|
+
"message": "ID-код / номер социального страхования"
|
|
334
|
+
},
|
|
335
|
+
"new_password_again_fa83f67e": {
|
|
336
|
+
"message": "Повторите новый пароль"
|
|
337
|
+
},
|
|
338
|
+
"new_password_eb44a9a4": {
|
|
339
|
+
"message": "Новый пароль"
|
|
340
|
+
},
|
|
341
|
+
"newsletters_a04708fd": {
|
|
342
|
+
"message": "Рассылки"
|
|
343
|
+
},
|
|
344
|
+
"next_40e12421": {
|
|
345
|
+
"message": "Вперед"
|
|
346
|
+
},
|
|
347
|
+
"no_e16d9132": {
|
|
348
|
+
"message": "Нет"
|
|
349
|
+
},
|
|
350
|
+
"no_items_in_cart_cf9df6d4": {
|
|
351
|
+
"message": "Корзина пуста"
|
|
352
|
+
},
|
|
353
|
+
"no_orders_found_ed613bce": {
|
|
354
|
+
"message": "Заказы не найдены"
|
|
355
|
+
},
|
|
356
|
+
"no_results_for_term_7528ef47": {
|
|
357
|
+
"message": "По <Term /> ничего не найдено"
|
|
358
|
+
},
|
|
359
|
+
"no_valid_items_to_add_to_cart_c53b9043": {
|
|
360
|
+
"message": "Нет товаров, чтобы отправить в корзину"
|
|
361
|
+
},
|
|
362
|
+
"not_available_487d3648": {
|
|
363
|
+
"message": "Недоступно"
|
|
364
|
+
},
|
|
365
|
+
"note_if_you_were_directed_here_via_a_link_we_are_g_47b83052": {
|
|
366
|
+
"message": "ПРИМЕЧАНИЕ. Если вы оказались здесь по ссылке, мы будем благодарны, если вы сообщите нам, по какой, чтобы мы смогли решить проблему."
|
|
367
|
+
},
|
|
368
|
+
"notify_me_when_back_in_stock_7f40774": {
|
|
369
|
+
"message": "Сообщить, когда будет на складе"
|
|
370
|
+
},
|
|
371
|
+
"of_which_vat_9b4c95d5": {
|
|
372
|
+
"message": "из которых НСО"
|
|
373
|
+
},
|
|
374
|
+
"ok_c47544a2": {
|
|
375
|
+
"message": "OK"
|
|
376
|
+
},
|
|
377
|
+
"old_password_c735e1a5": {
|
|
378
|
+
"message": "Старый пароль"
|
|
379
|
+
},
|
|
380
|
+
"one_moment_301b2df": {
|
|
381
|
+
"message": "Сейчас..."
|
|
382
|
+
},
|
|
383
|
+
"opening_hours_77ceb9c8": {
|
|
384
|
+
"message": "Время работы"
|
|
385
|
+
},
|
|
386
|
+
"optionname_is_required_4ef88446": {
|
|
387
|
+
"message": "{ optionName } обязательно"
|
|
388
|
+
},
|
|
389
|
+
"or_ef4e808": {
|
|
390
|
+
"message": "или"
|
|
391
|
+
},
|
|
392
|
+
"or_scroll_down_to_fill_in_the_rest_manually_d9502b2f": {
|
|
393
|
+
"message": "Или прокрутите вниз, чтобы заполнить остальное вручную"
|
|
394
|
+
},
|
|
395
|
+
"order_date_9b7fe95f": {
|
|
396
|
+
"message": "Дата заказа"
|
|
397
|
+
},
|
|
398
|
+
"order_number_fe66c52c": {
|
|
399
|
+
"message": "Номер заказа"
|
|
400
|
+
},
|
|
401
|
+
"order_value_4a159b2c": {
|
|
402
|
+
"message": "Цена заказа"
|
|
403
|
+
},
|
|
404
|
+
"out_of_stock_cf144338": {
|
|
405
|
+
"message": "Нет на складе"
|
|
406
|
+
},
|
|
407
|
+
"out_of_stock_ed56c3c": {
|
|
408
|
+
"message": "Нет на складе"
|
|
409
|
+
},
|
|
410
|
+
"package_34ed7777": {
|
|
411
|
+
"message": "Пакет"
|
|
412
|
+
},
|
|
413
|
+
"package_discount_66e25640": {
|
|
414
|
+
"message": "Скидка по пакету"
|
|
415
|
+
},
|
|
416
|
+
"page_currentpage_of_totalpages_a773c744": {
|
|
417
|
+
"message": "Стр. { currentPage } из { totalPages }"
|
|
418
|
+
},
|
|
419
|
+
"payment_method_84a444f1": {
|
|
420
|
+
"message": "Способы оплаты"
|
|
421
|
+
},
|
|
422
|
+
"person_lookup_failed_87cc2ec4": {
|
|
423
|
+
"message": "Не удалось найти лицо."
|
|
424
|
+
},
|
|
425
|
+
"phone_70d50cdb": {
|
|
426
|
+
"message": "Телефон:"
|
|
427
|
+
},
|
|
428
|
+
"please_enter_a_valid_quantity_f9adbf72": {
|
|
429
|
+
"message": "Пожалуйста, введите верное количество"
|
|
430
|
+
},
|
|
431
|
+
"please_enter_your_new_password_f261c25f": {
|
|
432
|
+
"message": "Пожалуйста, введите ваш новый пароль"
|
|
433
|
+
},
|
|
434
|
+
"please_fill_in_your_contact_details_for_shipping_a_285963ce": {
|
|
435
|
+
"message": "Пожалуйста, заполните ваши контактные данные для доставки и связи."
|
|
436
|
+
},
|
|
437
|
+
"post_code_e64b6004": {
|
|
438
|
+
"message": "Почтовый индекс"
|
|
439
|
+
},
|
|
440
|
+
"pre_order_date_required_8c33e235": {
|
|
441
|
+
"message": "Требуется дата предзаказа"
|
|
442
|
+
},
|
|
443
|
+
"prev_f82cbc48": {
|
|
444
|
+
"message": "Назад"
|
|
445
|
+
},
|
|
446
|
+
"price_ffd8b80": {
|
|
447
|
+
"message": "Цена"
|
|
448
|
+
},
|
|
449
|
+
"private_3883d133": {
|
|
450
|
+
"message": "Частное лицо"
|
|
451
|
+
},
|
|
452
|
+
"product_39cf144f": {
|
|
453
|
+
"message": "Товар"
|
|
454
|
+
},
|
|
455
|
+
"product_description_3edb94a9": {
|
|
456
|
+
"message": "Описание товара"
|
|
457
|
+
},
|
|
458
|
+
"product_is_not_in_stock_fc5a972b": {
|
|
459
|
+
"message": "Товар не на складе"
|
|
460
|
+
},
|
|
461
|
+
"product_matches_17fac93": {
|
|
462
|
+
"message": "Подходящие товары"
|
|
463
|
+
},
|
|
464
|
+
"product_no_longer_available_b6ad7087": {
|
|
465
|
+
"message": "Товар более не доступен"
|
|
466
|
+
},
|
|
467
|
+
"productcount_plural_1_add_product_to_cart_other_ad_b37e18fc": {
|
|
468
|
+
"message": "{ productCount, plural, =1 {Add # товар в корзину} other {Add # товара в корзину} }"
|
|
469
|
+
},
|
|
470
|
+
"productcount_plural_1_product_added_to_the_cart_ot_e20e0dc8": {
|
|
471
|
+
"message": "{ productCount, plural, =1 {# товар добавлен в корзину.} other {# товара добавлено в корзину.} }"
|
|
472
|
+
},
|
|
473
|
+
"productname_has_been_added_to_the_cart_fba79585": {
|
|
474
|
+
"message": "В корзину добавлено: { productName }"
|
|
475
|
+
},
|
|
476
|
+
"products_c5f0793": {
|
|
477
|
+
"message": "Товары"
|
|
478
|
+
},
|
|
479
|
+
"quantity_20164bff": {
|
|
480
|
+
"message": "Количество"
|
|
481
|
+
},
|
|
482
|
+
"recent_orders_1068c934": {
|
|
483
|
+
"message": "Последние заказы"
|
|
484
|
+
},
|
|
485
|
+
"region_939f2a6c": {
|
|
486
|
+
"message": "Регион"
|
|
487
|
+
},
|
|
488
|
+
"related_products_8fcc0081": {
|
|
489
|
+
"message": "Связанные товары"
|
|
490
|
+
},
|
|
491
|
+
"repeat_desired_password_34086d81": {
|
|
492
|
+
"message": "Повторите выбранный пароль"
|
|
493
|
+
},
|
|
494
|
+
"required_da89d67d": {
|
|
495
|
+
"message": "(обязательно)"
|
|
496
|
+
},
|
|
497
|
+
"reset_95a81614": {
|
|
498
|
+
"message": "Сбросить"
|
|
499
|
+
},
|
|
500
|
+
"retry_ebd5f8ba": {
|
|
501
|
+
"message": "Повторить"
|
|
502
|
+
},
|
|
503
|
+
"save_11a80ec3": {
|
|
504
|
+
"message": "Сохранить"
|
|
505
|
+
},
|
|
506
|
+
"saved_items_583185b1": {
|
|
507
|
+
"message": "Сохраненные данные"
|
|
508
|
+
},
|
|
509
|
+
"search_280d00bd": {
|
|
510
|
+
"message": "Поиск"
|
|
511
|
+
},
|
|
512
|
+
"select_country_1da181c6": {
|
|
513
|
+
"message": "Выберите страну"
|
|
514
|
+
},
|
|
515
|
+
"select_missingoptions_to_see_store_status_in_store_a7433fed": {
|
|
516
|
+
"message": "Выберите { missingOptions }, чтобы увидеть статус магазина"
|
|
517
|
+
},
|
|
518
|
+
"select_option_3e8f2943": {
|
|
519
|
+
"message": "Выберите { option }"
|
|
520
|
+
},
|
|
521
|
+
"select_optionname_fc590c42": {
|
|
522
|
+
"message": "Выберите { optionName }"
|
|
523
|
+
},
|
|
524
|
+
"select_options_9ee7b227": {
|
|
525
|
+
"message": "Выберите"
|
|
526
|
+
},
|
|
527
|
+
"select_the_variants_b3aa2844": {
|
|
528
|
+
"message": "Выберите вариант"
|
|
529
|
+
},
|
|
530
|
+
"select_your_country_9ee72cf7": {
|
|
531
|
+
"message": "Выберите свою страну"
|
|
532
|
+
},
|
|
533
|
+
"selected_categories_863af37b": {
|
|
534
|
+
"message": "Выберите категории"
|
|
535
|
+
},
|
|
536
|
+
"selected_products_1bd5b165": {
|
|
537
|
+
"message": "Выберите товары"
|
|
538
|
+
},
|
|
539
|
+
"share_location_6d9a73cf": {
|
|
540
|
+
"message": "Поделиться геолокацией"
|
|
541
|
+
},
|
|
542
|
+
"shop_by_category_b9ba84ab": {
|
|
543
|
+
"message": "Делать покупки по категориям"
|
|
544
|
+
},
|
|
545
|
+
"show_all_orders_3c6119ee": {
|
|
546
|
+
"message": "Показать все заказы"
|
|
547
|
+
},
|
|
548
|
+
"show_details_d6f1ca0c": {
|
|
549
|
+
"message": "Показать описание"
|
|
550
|
+
},
|
|
551
|
+
"show_fewer_stores_56b2065a": {
|
|
552
|
+
"message": "Показать меньшее магазинов"
|
|
553
|
+
},
|
|
554
|
+
"show_less_574a758b": {
|
|
555
|
+
"message": "Показать меньшее"
|
|
556
|
+
},
|
|
557
|
+
"show_more_fae1328": {
|
|
558
|
+
"message": "Показать еще"
|
|
559
|
+
},
|
|
560
|
+
"signup_d25ec5f5": {
|
|
561
|
+
"message": "Регистрация"
|
|
562
|
+
},
|
|
563
|
+
"social_security_number_7c8fc49b": {
|
|
564
|
+
"message": "Номер социального страхования"
|
|
565
|
+
},
|
|
566
|
+
"something_went_wrong_d238c551": {
|
|
567
|
+
"message": "Что-то пошло не так"
|
|
568
|
+
},
|
|
569
|
+
"something_went_wrong_please_check_your_email_and_t_9dd179bd": {
|
|
570
|
+
"message": "Что-то пошло не так. Пожалуйста, проверьте свой электронный адрес и попробуйте снова."
|
|
571
|
+
},
|
|
572
|
+
"something_went_wrong_please_check_your_input_or_tr_d8daab95": {
|
|
573
|
+
"message": "Что-то пошло не так. Пожалуйста, проверьте введенные данные или попробуйте позже."
|
|
574
|
+
},
|
|
575
|
+
"something_went_wrong_please_try_again_37244f67": {
|
|
576
|
+
"message": "Что-то пошло не так. Пожалуйста, попробуйте еще раз."
|
|
577
|
+
},
|
|
578
|
+
"something_went_wrong_please_try_again_fd8c66fd": {
|
|
579
|
+
"message": "Что-то пошло не так. Пожалуйста, попробуйте еще раз!"
|
|
580
|
+
},
|
|
581
|
+
"something_went_wrong_saving_information_try_again_87e1303e": {
|
|
582
|
+
"message": "Проблемы при сохранении информации. Повторить попытку?"
|
|
583
|
+
},
|
|
584
|
+
"something_went_wrong_updating_password_is_your_old_c95e5bd1": {
|
|
585
|
+
"message": "Проблемы при обновлении пароля. Вы правильно ввели старый пароль?"
|
|
586
|
+
},
|
|
587
|
+
"something_went_wrong_when_placeholder_e336fd86": {
|
|
588
|
+
"message": "Что-то пошло не так при { placeholder }"
|
|
589
|
+
},
|
|
590
|
+
"something_went_wrong_when_retrieving_order_id_plea_994c3a5": {
|
|
591
|
+
"message": "Что-то пошло не так при обработке заказа { id }. Пожалуйста, попробуйте позже."
|
|
592
|
+
},
|
|
593
|
+
"sort_by_72dbba9c": {
|
|
594
|
+
"message": "Сортировать по"
|
|
595
|
+
},
|
|
596
|
+
"sort_by_e75f9e3e": {
|
|
597
|
+
"message": "Сортировать по"
|
|
598
|
+
},
|
|
599
|
+
"specifications_ee3fcf8e": {
|
|
600
|
+
"message": "Спецификации"
|
|
601
|
+
},
|
|
602
|
+
"spend_price_more_to_qualify_for_free_shipping_76fdedab": {
|
|
603
|
+
"message": "Закажите еще на { price }, чтобы получить бесплатную доставку!"
|
|
604
|
+
},
|
|
605
|
+
"standard_2_5_working_days_d4ac0406": {
|
|
606
|
+
"message": "Standard – 2–5 рабочих дней"
|
|
607
|
+
},
|
|
608
|
+
"submit_a3cc6859": {
|
|
609
|
+
"message": "Отправить"
|
|
610
|
+
},
|
|
611
|
+
"submitting_75cdf9ab": {
|
|
612
|
+
"message": "Идет отправка..."
|
|
613
|
+
},
|
|
614
|
+
"successfully_added_83dcf29": {
|
|
615
|
+
"message": "Добавление прошло успешно!"
|
|
616
|
+
},
|
|
617
|
+
"surname_df38bed": {
|
|
618
|
+
"message": "Фамилия"
|
|
619
|
+
},
|
|
620
|
+
"telephone_number_9cbafa6e": {
|
|
621
|
+
"message": "Номер телефона"
|
|
622
|
+
},
|
|
623
|
+
"the_address_provided_is_incorrect_please_check_the_1b76d82f": {
|
|
624
|
+
"message": "Некорректный адрес. Пожалуйста, проверьте это и попробуйте снова."
|
|
625
|
+
},
|
|
626
|
+
"the_form_could_not_be_submitted_please_try_again_l_9a8b7579": {
|
|
627
|
+
"message": "Не удалось отправить форму. Пожалуйста, попробуйте позже."
|
|
628
|
+
},
|
|
629
|
+
"there_are_no_products_in_your_saved_items_list_2870abb5": {
|
|
630
|
+
"message": "У вас нет сохраненных товаров."
|
|
631
|
+
},
|
|
632
|
+
"this_could_be_due_to_the_following_a40f2a5": {
|
|
633
|
+
"message": "Это может быть вот почему:"
|
|
634
|
+
},
|
|
635
|
+
"this_field_is_required_fa58c4a": {
|
|
636
|
+
"message": "Обязательное поле"
|
|
637
|
+
},
|
|
638
|
+
"this_is_where_you_find_our_stores_get_informed_abo_19de699f": {
|
|
639
|
+
"message": "Здесь можно найти магазины. Получать информацию о состоянии склада вашего местного магазина. Найти и выбрать ближайший магазин."
|
|
640
|
+
},
|
|
641
|
+
"this_product_is_out_of_stock_c6eac862": {
|
|
642
|
+
"message": "Товара на складе нет."
|
|
643
|
+
},
|
|
644
|
+
"this_website_uses_cookies_to_ensure_you_get_the_be_f59eb226": {
|
|
645
|
+
"message": "Сайт использует куки для обеспечения удобства работы."
|
|
646
|
+
},
|
|
647
|
+
"to_checkout_63f3b715": {
|
|
648
|
+
"message": "Оформление заказа"
|
|
649
|
+
},
|
|
650
|
+
"total_71a4807": {
|
|
651
|
+
"message": "Итого"
|
|
652
|
+
},
|
|
653
|
+
"total_excl_vat_ae61fef3": {
|
|
654
|
+
"message": "Итого без НСО"
|
|
655
|
+
},
|
|
656
|
+
"total_incl_vat_f281354b": {
|
|
657
|
+
"message": "Итого с НСО"
|
|
658
|
+
},
|
|
659
|
+
"total_plural_1_item_other_items_1c76aa07": {
|
|
660
|
+
"message": "{ total, plural, =1 {# шт.} other {# шт.} }"
|
|
661
|
+
},
|
|
662
|
+
"total_plural_1_item_other_items_matching_for_term_22b0ede7": {
|
|
663
|
+
"message": "{ total, plural, =1 {# шт.} other {# шт.} } соответствий \"{ term }\""
|
|
664
|
+
},
|
|
665
|
+
"total_price_1c872c0a": {
|
|
666
|
+
"message": "Общая цена"
|
|
667
|
+
},
|
|
668
|
+
"totalproducts_products_b80002da": {
|
|
669
|
+
"message": "Товаров: { totalProducts }"
|
|
670
|
+
},
|
|
671
|
+
"track_delivery_6339cf6f": {
|
|
672
|
+
"message": "Отслеживать доставку:"
|
|
673
|
+
},
|
|
674
|
+
"trend_31ce9aff": {
|
|
675
|
+
"message": "Тренд"
|
|
676
|
+
},
|
|
677
|
+
"type_your_search_here_58fca7de": {
|
|
678
|
+
"message": "Что ищем?"
|
|
679
|
+
},
|
|
680
|
+
"update_4d8ee62": {
|
|
681
|
+
"message": "Обновить"
|
|
682
|
+
},
|
|
683
|
+
"update_information_95c5f1b4": {
|
|
684
|
+
"message": "Обновить информацию"
|
|
685
|
+
},
|
|
686
|
+
"updating_price_3f7c4661": {
|
|
687
|
+
"message": "Идет обновление цены... "
|
|
688
|
+
},
|
|
689
|
+
"vat_39a079c0": {
|
|
690
|
+
"message": "+ НСО"
|
|
691
|
+
},
|
|
692
|
+
"view_all_in_category_531e2499": {
|
|
693
|
+
"message": "Вся категория { category }"
|
|
694
|
+
},
|
|
695
|
+
"view_all_stores_d0f8a7f1": {
|
|
696
|
+
"message": "Все магазины"
|
|
697
|
+
},
|
|
698
|
+
"view_password_ec63cb11": {
|
|
699
|
+
"message": "Посмотреть пароль"
|
|
700
|
+
},
|
|
701
|
+
"visit_product_page_to_add_54331147": {
|
|
702
|
+
"message": "На страницу товара, чтобы добавить"
|
|
703
|
+
},
|
|
704
|
+
"welcome_to_our_online_store_enter_your_social_secu_dbc50460": {
|
|
705
|
+
"message": "Добро пожаловать в наш онлайн-магазин! Введите свой ID-код, и мы попытаемся найти нужную информацию. Вы может ввести ее и сами."
|
|
706
|
+
},
|
|
707
|
+
"welcome_to_our_online_store_we_need_to_create_a_pr_90e8e9ce": {
|
|
708
|
+
"message": "Добро пожаловать в наш онлайн-магазин! Перед тем как продолжить, нужно создать профиль."
|
|
709
|
+
},
|
|
710
|
+
"what_is_your_email_address_631180c6": {
|
|
711
|
+
"message": "Какой у вас адрес электронной почты?"
|
|
712
|
+
},
|
|
713
|
+
"when_your_account_is_deleted_all_order_history_wil_71260053": {
|
|
714
|
+
"message": "Если вы удалите аккаунт, будет удалена и вся история заказов."
|
|
715
|
+
},
|
|
716
|
+
"whoops_54a74974": {
|
|
717
|
+
"message": "Ой..."
|
|
718
|
+
},
|
|
719
|
+
"yes_dde87d5": {
|
|
720
|
+
"message": "Да"
|
|
721
|
+
},
|
|
722
|
+
"you_are_now_subscribed_71495f41": {
|
|
723
|
+
"message": "Подписка прошла успешно."
|
|
724
|
+
},
|
|
725
|
+
"you_are_now_subscribed_7695dd6b": {
|
|
726
|
+
"message": "Подписка прошла успешно"
|
|
727
|
+
},
|
|
728
|
+
"you_are_trying_to_use_an_old_address_that_no_longe_1d4e8dff": {
|
|
729
|
+
"message": "Вы пытаетесь ввести адрес, которого больше нет или который изменился."
|
|
730
|
+
},
|
|
731
|
+
"you_can_now_login_with_your_new_password_99ae2294": {
|
|
732
|
+
"message": "Теперь вы можете войти { login } с новым паролем"
|
|
733
|
+
},
|
|
734
|
+
"you_have_already_signed_up_with_this_email_address_71af5f92": {
|
|
735
|
+
"message": "Этот адрес уже использовался для регистрации"
|
|
736
|
+
},
|
|
737
|
+
"you_have_already_subscribed_to_the_newsletter_8a2c3d54": {
|
|
738
|
+
"message": "Вы уже подписаны на рассылку!"
|
|
739
|
+
},
|
|
740
|
+
"you_have_attempted_to_download_a_page_that_does_no_13db419e": {
|
|
741
|
+
"message": "Вы пытаетесь попасть на страницу, который нет на сервере Jetshop."
|
|
742
|
+
},
|
|
743
|
+
"you_may_have_used_an_old_bookmark_if_you_are_sure__1daf83b8": {
|
|
744
|
+
"message": "Возможно, у вас старая закладка. Если вы уверены, что адрес правильный, возможно сейчас временные проблемы с сервером. Пожалуйста, попробуйте позже."
|
|
745
|
+
},
|
|
746
|
+
"your_password_has_been_reset_53d7f84e": {
|
|
747
|
+
"message": "Ваш пароль сброшен."
|
|
748
|
+
},
|
|
749
|
+
"your_password_has_been_successfully_updated_cacea448": {
|
|
750
|
+
"message": "Ваш пароль успешно обновлен."
|
|
751
|
+
},
|
|
752
|
+
"your_password_reset_request_has_been_submitted_che_104311b6": {
|
|
753
|
+
"message": "Запрос на сброс пароля получен. Мы отправили вам ссылку на сброс пароля."
|
|
754
|
+
},
|
|
755
|
+
"your_password_reset_token_has_expired_or_is_invali_4f6d0945": {
|
|
756
|
+
"message": "Время на сброс пароля истекло, или возникли технические проблемы."
|
|
757
|
+
},
|
|
758
|
+
"your_preferences_have_been_updated_6729d3f8": {
|
|
759
|
+
"message": "Ваши настройки обновлены."
|
|
760
|
+
},
|
|
761
|
+
"z_to_a_75ce9568": {
|
|
762
|
+
"message": "От Я до А"
|
|
763
|
+
},
|
|
764
|
+
"pid_is_invalid_2a8f005e": {
|
|
765
|
+
"message": "Указанный номер социального страхования недействителен"
|
|
766
|
+
},
|
|
767
|
+
"email_address_is_invalid_dd753229": {
|
|
768
|
+
"message": "Указанный адрес электронной почты недействителен"
|
|
769
|
+
},
|
|
770
|
+
"postal_code_is_invalid_438e6940": {
|
|
771
|
+
"message": "Указанный постнет недействителен"
|
|
772
|
+
},
|
|
773
|
+
"postal_code_is_required_ca3b7a32": {
|
|
774
|
+
"message": "Zip-код требуется."
|
|
775
|
+
},
|
|
776
|
+
"this_pid_is_already_registered_83895f84": {
|
|
777
|
+
"message": "Указанный номер социального страхования уже зарегистрирован"
|
|
778
|
+
},
|
|
779
|
+
"your_email_address_is_already_registered_3d806453": {
|
|
780
|
+
"message": "Указанный адрес электронной почты уже зарегистрирован"
|
|
781
|
+
},
|
|
782
|
+
"pid_is_required_68787e3": {
|
|
783
|
+
"message": "Номер социального страхования является обязательным."
|
|
784
|
+
},
|
|
785
|
+
"email_address_is_required_24d62494": {
|
|
786
|
+
"message": "Адрес электронной почты требуется"
|
|
787
|
+
}
|
|
788
|
+
}
|