@magento/venia-pwa-live-search 1.0.0-alpha6
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/package.json +31 -0
- package/postcss.config.js +3 -0
- package/src/api/fragments.js +193 -0
- package/src/api/graphql.js +26 -0
- package/src/api/mutations.js +94 -0
- package/src/api/queries.js +225 -0
- package/src/api/search.js +222 -0
- package/src/components/AddToCartButton/AddToCartButton.jsx +32 -0
- package/src/components/AddToCartButton/AddToCartButton.stories.mdx +14 -0
- package/src/components/AddToCartButton/index.js +10 -0
- package/src/components/Alert/Alert.jsx +155 -0
- package/src/components/Alert/index.js +11 -0
- package/src/components/Breadcrumbs/Breadcrumbs.jsx +34 -0
- package/src/components/Breadcrumbs/MockPages.js +14 -0
- package/src/components/Breadcrumbs/index.js +11 -0
- package/src/components/ButtonShimmer/ButtonShimmer.css +32 -0
- package/src/components/ButtonShimmer/ButtonShimmer.jsx +23 -0
- package/src/components/ButtonShimmer/index.js +11 -0
- package/src/components/CategoryFilters/CategoryFilters.jsx +59 -0
- package/src/components/CategoryFilters/index.js +10 -0
- package/src/components/Facets/Facets.jsx +50 -0
- package/src/components/Facets/Range/RangeFacet.js +20 -0
- package/src/components/Facets/Scalar/ScalarFacet.js +29 -0
- package/src/components/Facets/SelectedFilters.js +80 -0
- package/src/components/Facets/format.js +52 -0
- package/src/components/Facets/index.js +14 -0
- package/src/components/Facets/mocks.js +119 -0
- package/src/components/FacetsShimmer/FacetsShimmer.css +49 -0
- package/src/components/FacetsShimmer/FacetsShimmer.jsx +25 -0
- package/src/components/FacetsShimmer/index.js +11 -0
- package/src/components/FilterButton/FilterButton.jsx +40 -0
- package/src/components/FilterButton/index.js +11 -0
- package/src/components/ImageCarousel/Image.jsx +34 -0
- package/src/components/ImageCarousel/ImageCarousel.jsx +103 -0
- package/src/components/ImageCarousel/index.js +11 -0
- package/src/components/InputButtonGroup/InputButtonGroup.jsx +120 -0
- package/src/components/InputButtonGroup/index.js +11 -0
- package/src/components/LabelledInput/LabelledInput.jsx +51 -0
- package/src/components/LabelledInput/index.js +11 -0
- package/src/components/Loading/Loading.jsx +32 -0
- package/src/components/Loading/index.js +11 -0
- package/src/components/NoResults/NoResults.jsx +55 -0
- package/src/components/NoResults/index.js +11 -0
- package/src/components/Pagination/Pagination.jsx +105 -0
- package/src/components/Pagination/index.js +10 -0
- package/src/components/PerPagePicker/PerPagePicker.jsx +114 -0
- package/src/components/PerPagePicker/index.js +11 -0
- package/src/components/Pill/Pill.jsx +34 -0
- package/src/components/Pill/index.js +11 -0
- package/src/components/Pill/mock.js +23 -0
- package/src/components/ProductCardShimmer/ProductCardShimmer.css +72 -0
- package/src/components/ProductCardShimmer/ProductCardShimmer.jsx +28 -0
- package/src/components/ProductCardShimmer/index.js +11 -0
- package/src/components/ProductItem/MockData.js +508 -0
- package/src/components/ProductItem/ProductItem.css +84 -0
- package/src/components/ProductItem/ProductItem.jsx +347 -0
- package/src/components/ProductItem/ProductPrice.jsx +181 -0
- package/src/components/ProductItem/index.js +11 -0
- package/src/components/ProductList/MockData.js +190 -0
- package/src/components/ProductList/ProductList.jsx +127 -0
- package/src/components/ProductList/index.js +11 -0
- package/src/components/ProductList/product-list.css +18 -0
- package/src/components/SearchBar/SearchBar.jsx +33 -0
- package/src/components/SearchBar/index.js +11 -0
- package/src/components/Shimmer/Shimmer.css +82 -0
- package/src/components/Shimmer/Shimmer.jsx +66 -0
- package/src/components/Shimmer/index.js +11 -0
- package/src/components/Slider/Slider.css +61 -0
- package/src/components/Slider/Slider.jsx +103 -0
- package/src/components/Slider/index.jsx +11 -0
- package/src/components/SliderDoubleControl/SliderDoubleControl.css +83 -0
- package/src/components/SliderDoubleControl/SliderDoubleControl.jsx +220 -0
- package/src/components/SliderDoubleControl/index.js +11 -0
- package/src/components/SortDropdown/SortDropdown.jsx +126 -0
- package/src/components/SortDropdown/index.js +11 -0
- package/src/components/SwatchButton/SwatchButton.jsx +72 -0
- package/src/components/SwatchButton/index.js +11 -0
- package/src/components/SwatchButtonGroup/SwatchButtonGroup.jsx +86 -0
- package/src/components/SwatchButtonGroup/index.js +11 -0
- package/src/components/ViewSwitcher/ViewSwitcher.jsx +46 -0
- package/src/components/ViewSwitcher/index.js +11 -0
- package/src/components/WishlistButton/WishlistButton.jsx +67 -0
- package/src/components/WishlistButton/index.js +11 -0
- package/src/containers/App.jsx +145 -0
- package/src/containers/LiveSearchPLPLoader.jsx +24 -0
- package/src/containers/LiveSearchPopoverLoader.jsx +190 -0
- package/src/containers/LiveSearchSRLPLoader.jsx +24 -0
- package/src/containers/ProductListingPage.jsx +66 -0
- package/src/containers/ProductsContainer.jsx +145 -0
- package/src/containers/ProductsHeader.jsx +123 -0
- package/src/context/attributeMetadata.js +63 -0
- package/src/context/cart.js +97 -0
- package/src/context/displayChange.js +90 -0
- package/src/context/events.js +160 -0
- package/src/context/index.js +19 -0
- package/src/context/products.jsx +336 -0
- package/src/context/resultsModifierContext.js +35 -0
- package/src/context/search.jsx +127 -0
- package/src/context/store.jsx +93 -0
- package/src/context/translation.jsx +125 -0
- package/src/context/widgetConfig.jsx +120 -0
- package/src/context/wishlist.jsx +97 -0
- package/src/hooks/eventing/useEventListener.js +13 -0
- package/src/hooks/eventing/useLocation.js +21 -0
- package/src/hooks/eventing/useMagentoExtensionContext.js +28 -0
- package/src/hooks/eventing/usePageView.js +36 -0
- package/src/hooks/eventing/useShopperContext.js +33 -0
- package/src/hooks/eventing/useStorefrontInstanceContext.js +46 -0
- package/src/hooks/eventing/useViewedOffsets.js +74 -0
- package/src/hooks/useAccessibleDropdown.js +148 -0
- package/src/hooks/useLiveSearchPLPConfig.js +112 -0
- package/src/hooks/useLiveSearchPopoverConfig.js +83 -0
- package/src/hooks/useLiveSearchSRLPConfig.js +97 -0
- package/src/hooks/usePagination.js +83 -0
- package/src/hooks/useRangeFacet.js +62 -0
- package/src/hooks/useScalarFacet.js +61 -0
- package/src/hooks/useSliderFacet.js +43 -0
- package/src/i18n/Sorani.js +60 -0
- package/src/i18n/ar_AE.js +60 -0
- package/src/i18n/bg_BG.js +60 -0
- package/src/i18n/bn_IN.js +60 -0
- package/src/i18n/ca_ES.js +60 -0
- package/src/i18n/cs_CZ.js +60 -0
- package/src/i18n/da_DK.js +60 -0
- package/src/i18n/de_DE.js +60 -0
- package/src/i18n/el_GR.js +60 -0
- package/src/i18n/en_GA.js +60 -0
- package/src/i18n/en_GB.js +60 -0
- package/src/i18n/en_US.js +70 -0
- package/src/i18n/es_ES.js +60 -0
- package/src/i18n/et_EE.js +60 -0
- package/src/i18n/eu_ES.js +60 -0
- package/src/i18n/fa_IR.js +60 -0
- package/src/i18n/fi_FI.js +60 -0
- package/src/i18n/fr_FR.js +60 -0
- package/src/i18n/gl_ES.js +60 -0
- package/src/i18n/hi_IN.js +60 -0
- package/src/i18n/hu_HU.js +60 -0
- package/src/i18n/hy_AM.js +60 -0
- package/src/i18n/id_ID.js +60 -0
- package/src/i18n/index.js +89 -0
- package/src/i18n/it_IT.js +60 -0
- package/src/i18n/ja_JP.js +60 -0
- package/src/i18n/ko_KR.js +60 -0
- package/src/i18n/lt_LT.js +60 -0
- package/src/i18n/lv_LV.js +60 -0
- package/src/i18n/nb_NO.js +60 -0
- package/src/i18n/nl_NL.js +60 -0
- package/src/i18n/pt_BR.js +60 -0
- package/src/i18n/pt_PT.js +60 -0
- package/src/i18n/ro_RO.js +60 -0
- package/src/i18n/ru_RU.js +60 -0
- package/src/i18n/sv_SE.js +60 -0
- package/src/i18n/th_TH.js +60 -0
- package/src/i18n/tr_TR.js +60 -0
- package/src/i18n/zh_Hans_CN.js +60 -0
- package/src/i18n/zh_Hant_TW.js +60 -0
- package/src/icons/NoImage.svg +1 -0
- package/src/icons/adjustments.svg +3 -0
- package/src/icons/cart.svg +3 -0
- package/src/icons/checkmark.svg +3 -0
- package/src/icons/chevron.svg +3 -0
- package/src/icons/emptyHeart.svg +3 -0
- package/src/icons/error.svg +3 -0
- package/src/icons/filledHeart.svg +3 -0
- package/src/icons/filter.svg +29 -0
- package/src/icons/gridView.svg +11 -0
- package/src/icons/info.svg +3 -0
- package/src/icons/listView.svg +5 -0
- package/src/icons/loading.svg +6 -0
- package/src/icons/plus.svg +4 -0
- package/src/icons/sort.svg +18 -0
- package/src/icons/warning.svg +3 -0
- package/src/icons/x.svg +3 -0
- package/src/index.jsx +65 -0
- package/src/queries/customerGroupCode.gql.js +10 -0
- package/src/queries/eventing/getMagentoExtensionContext.gql.js +13 -0
- package/src/queries/eventing/getPageType.gql.js +14 -0
- package/src/queries/eventing/getStorefrontContext.gql.js +27 -0
- package/src/queries/index.js +3 -0
- package/src/queries/liveSearchPlpConfigs.gql.js +30 -0
- package/src/queries/liveSearchPopoverConfigs.gql.js +28 -0
- package/src/styles/autocomplete.module.css +56 -0
- package/src/styles/index.css +1638 -0
- package/src/styles/searchBar.module.css +119 -0
- package/src/styles/tokens.css +99 -0
- package/src/targets/intercept.js +21 -0
- package/src/utils/constants.js +26 -0
- package/src/utils/decodeHtmlString.js +13 -0
- package/src/utils/dom.js +14 -0
- package/src/utils/eventing/getCookie.js +9 -0
- package/src/utils/eventing/usePageTypeFromUrl.js +26 -0
- package/src/utils/getProductImage.js +94 -0
- package/src/utils/getProductPrice.js +83 -0
- package/src/utils/getUserViewHistory.js +27 -0
- package/src/utils/handleUrlFilters.js +164 -0
- package/src/utils/htmlStringDecode.js +13 -0
- package/src/utils/modifyResults.js +164 -0
- package/src/utils/sort.js +95 -0
- package/src/utils/useIntersectionObserver.js +27 -0
- package/src/utils/validateStoreDetails.js +39 -0
- package/src/wrappers/wrapUseApp.js +28 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const bg_BG = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Филтри',
|
|
13
|
+
showTitle: 'Показване на филтри',
|
|
14
|
+
hideTitle: 'Скриване на филтри',
|
|
15
|
+
clearAll: 'Изчистване на всичко'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Категории',
|
|
19
|
+
price: 'Цена',
|
|
20
|
+
customPrice: 'Персонализирана цена',
|
|
21
|
+
priceIncluded: 'да',
|
|
22
|
+
priceExcluded: 'не',
|
|
23
|
+
priceExcludedMessage: 'Не {title}',
|
|
24
|
+
priceRange: ' и по-висока',
|
|
25
|
+
showmore: 'Показване на повече'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Зареждане'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Няма резултати за вашето търсене.',
|
|
32
|
+
subheading: 'Моля, опитайте отново...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Сортиране по',
|
|
36
|
+
option: 'Сортиране по: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Най-подходящи',
|
|
38
|
+
positionLabel: 'Позиция'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'резултати за {phrase}',
|
|
42
|
+
products: '{totalCount} продукта'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Само {discountPrice}',
|
|
46
|
+
startingAt: 'От {productPrice}',
|
|
47
|
+
bundlePrice: 'От {fromBundlePrice} до {toBundlePrice}',
|
|
48
|
+
from: 'От {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Вашата дума за търсене {variables.phrase} не достига минимума от {minQueryLength} знака.',
|
|
53
|
+
noresults: 'Вашето търсене не даде резултати.',
|
|
54
|
+
pagePicker: 'Показване на {pageSize} на страница',
|
|
55
|
+
showAll: 'всички'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Търсене...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const bn_IN = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'ফিল্টারগুলি',
|
|
13
|
+
showTitle: 'ফিল্টারগুলি দেখান',
|
|
14
|
+
hideTitle: 'ফিল্টারগুলি লুকান',
|
|
15
|
+
clearAll: 'সব ক্লিয়ার করুন'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'ক্যাটেগরি',
|
|
19
|
+
price: 'মূল্য',
|
|
20
|
+
customPrice: 'কাস্টম প্রাইস',
|
|
21
|
+
priceIncluded: 'হ্যাঁ',
|
|
22
|
+
priceExcluded: 'না',
|
|
23
|
+
priceExcludedMessage: 'না {title}',
|
|
24
|
+
priceRange: ' এবং উর্দ্ধে',
|
|
25
|
+
showmore: 'আরো দেখান'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'লোডিং হচ্ছে'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'আপনার অনুসন্ধানের কোনো ফলাফল নেই।',
|
|
32
|
+
subheading: 'অনুগ্রহ করে পুনরায় চেষ্টা করুন...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'ক্রমানুসারে সাজান',
|
|
36
|
+
option: 'ক্রমানুসারে সাজান: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'সবচেয়ে প্রাসঙ্গিক',
|
|
38
|
+
positionLabel: 'অবস্থান'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: '{phrase} এর জন্য ফলাফল',
|
|
42
|
+
products: '{totalCount} প্রোডাক্টগুলি'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'এত কম যে {discountPrice}',
|
|
46
|
+
startingAt: 'শুরু হচ্ছে {productPrice}',
|
|
47
|
+
bundlePrice: '{fromBundlePrice} থেকে {toBundlePrice} পর্যন্ত',
|
|
48
|
+
from: '{productPrice} থেকে'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'আপনার অনুসন্ধান করা শব্দটি {variables.phrase} ন্যূনতম অক্ষরসীমা {minQueryLength} পর্যন্ত পৌঁছাতে পারেনি।',
|
|
53
|
+
noresults: 'আপনার অনুসন্ধান থেকে কোনো ফলাফল পাওয়া যায়নি।',
|
|
54
|
+
pagePicker: 'পৃষ্ঠা {pageSize} অনুযায়ী দেখান',
|
|
55
|
+
showAll: 'সবগুলি'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'অনুসন্ধান করুন...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const ca_ES = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filtres',
|
|
13
|
+
showTitle: 'Mostra els filtres',
|
|
14
|
+
hideTitle: 'Amaga els filtres',
|
|
15
|
+
clearAll: 'Esborra-ho tot'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Categories',
|
|
19
|
+
price: 'Preu',
|
|
20
|
+
customPrice: 'Preu personalitzat',
|
|
21
|
+
priceIncluded: 'sí',
|
|
22
|
+
priceExcluded: 'no',
|
|
23
|
+
priceExcludedMessage: 'No {title}',
|
|
24
|
+
priceRange: ' i superior',
|
|
25
|
+
showmore: 'Mostra més'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Carregant'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'No hi ha resultats per a la vostra cerca.',
|
|
32
|
+
subheading: 'Siusplau torna-ho a provar...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Ordenar per',
|
|
36
|
+
option: 'Ordena per: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'El més rellevant',
|
|
38
|
+
positionLabel: 'Posició'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'Resultats per a {phrase}',
|
|
42
|
+
products: '{totalCount}productes'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Mínim de {discountPrice}',
|
|
46
|
+
startingAt: 'A partir de {productPrice}',
|
|
47
|
+
bundlePrice: 'Des de {fromBundlePrice} A {toBundlePrice}',
|
|
48
|
+
from: 'Des de {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'El vostre terme de cerca {variables.phrase} no ha arribat al mínim de {minQueryLength} caràcters.',
|
|
53
|
+
noresults: 'La vostra cerca no ha retornat cap resultat.',
|
|
54
|
+
pagePicker: 'Mostra {pageSize} per pàgina',
|
|
55
|
+
showAll: 'tots'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Cerca...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const cs_CZ = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filtry',
|
|
13
|
+
showTitle: 'Zobrazit filtry',
|
|
14
|
+
hideTitle: 'Skrýt filtry',
|
|
15
|
+
clearAll: 'Vymazat vše'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Kategorie',
|
|
19
|
+
price: 'Cena',
|
|
20
|
+
customPrice: 'Vlastní cena',
|
|
21
|
+
priceIncluded: 'ano',
|
|
22
|
+
priceExcluded: 'ne',
|
|
23
|
+
priceExcludedMessage: 'Ne {title}',
|
|
24
|
+
priceRange: ' a výše',
|
|
25
|
+
showmore: 'Zobrazit více'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Načítá se'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Nebyly nalezeny žádné výsledky.',
|
|
32
|
+
subheading: 'Zkuste to znovu...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Seřadit podle',
|
|
36
|
+
option: 'Seřadit podle: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Nejrelevantnější',
|
|
38
|
+
positionLabel: 'Umístění'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'výsledky pro {phrase}',
|
|
42
|
+
products: 'Produkty: {totalCount}'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Pouze za {discountPrice}',
|
|
46
|
+
startingAt: 'Cena od {productPrice}',
|
|
47
|
+
bundlePrice: 'Z {fromBundlePrice} na {toBundlePrice}',
|
|
48
|
+
from: 'Z {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Hledaný výraz {variables.phrase} nedosáhl minima počtu znaků ({minQueryLength}).',
|
|
53
|
+
noresults: 'Při hledání nebyly nalezeny žádné výsledky.',
|
|
54
|
+
pagePicker: 'Zobrazit {pageSize} na stránku',
|
|
55
|
+
showAll: 'vše'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Hledat...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const da_DK = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filtre',
|
|
13
|
+
showTitle: 'Vis filtre',
|
|
14
|
+
hideTitle: 'Skjul filtre',
|
|
15
|
+
clearAll: 'Ryd alt'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Kategorier',
|
|
19
|
+
price: 'Pris',
|
|
20
|
+
customPrice: 'Brugerdefineret pris',
|
|
21
|
+
priceIncluded: 'ja',
|
|
22
|
+
priceExcluded: 'nej',
|
|
23
|
+
priceExcludedMessage: 'Ikke {title}',
|
|
24
|
+
priceRange: ' og over',
|
|
25
|
+
showmore: 'Vis mere'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Indlæser'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Ingen søgeresultater for din søgning',
|
|
32
|
+
subheading: 'Prøv igen...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Sortér efter',
|
|
36
|
+
option: 'Sortér efter: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Mest relevant',
|
|
38
|
+
positionLabel: 'Position'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'resultater for {phrase}',
|
|
42
|
+
products: '{totalCount} produkter'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Så lav som {discountPrice}',
|
|
46
|
+
startingAt: 'Fra {productPrice}',
|
|
47
|
+
bundlePrice: 'Fra {fromBundlePrice} til {toBundlePrice}',
|
|
48
|
+
from: 'Fra {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Dit søgeord {variables.phrase} har ikke minimum på {minQueryLength} tegn.',
|
|
53
|
+
noresults: 'Din søgning gav ingen resultater.',
|
|
54
|
+
pagePicker: 'Vis {pageSize} pr. side',
|
|
55
|
+
showAll: 'alle'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Søg...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const de_DE = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filter',
|
|
13
|
+
showTitle: 'Filter einblenden',
|
|
14
|
+
hideTitle: 'Filter ausblenden',
|
|
15
|
+
clearAll: 'Alle löschen'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Kategorien',
|
|
19
|
+
price: 'Preis',
|
|
20
|
+
customPrice: 'Benutzerdefinierter Preis',
|
|
21
|
+
priceIncluded: 'ja',
|
|
22
|
+
priceExcluded: 'nein',
|
|
23
|
+
priceExcludedMessage: 'Nicht {title}',
|
|
24
|
+
priceRange: ' und höher',
|
|
25
|
+
showmore: 'Mehr anzeigen'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Ladevorgang läuft'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Keine Ergebnisse zu Ihrer Suche.',
|
|
32
|
+
subheading: 'Versuchen Sie es erneut...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Sortieren nach',
|
|
36
|
+
option: 'Sortieren nach: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Höchste Relevanz',
|
|
38
|
+
positionLabel: 'Position'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'Ergebnisse für {phrase}',
|
|
42
|
+
products: '{totalCount} Produkte'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Schon ab {discountPrice}',
|
|
46
|
+
startingAt: 'Ab {productPrice}',
|
|
47
|
+
bundlePrice: 'Aus {fromBundlePrice} zu {toBundlePrice}',
|
|
48
|
+
from: 'Ab {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Ihr Suchbegriff {variables.phrase} ist kürzer als das Minimum von {minQueryLength} Zeichen.',
|
|
53
|
+
noresults: 'Zu Ihrer Suche wurden keine Ergebnisse zurückgegeben.',
|
|
54
|
+
pagePicker: '{pageSize} pro Seite anzeigen',
|
|
55
|
+
showAll: 'alle'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Suchen...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const el_GR = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Φίλτρα',
|
|
13
|
+
showTitle: 'Εμφάνιση φίλτρων',
|
|
14
|
+
hideTitle: 'Απόκρυψη φίλτρων',
|
|
15
|
+
clearAll: 'Απαλοιφή όλων'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Κατηγορίες',
|
|
19
|
+
price: 'Τιμή',
|
|
20
|
+
customPrice: 'Προσαρμοσμένη τιμή',
|
|
21
|
+
priceIncluded: 'ναι',
|
|
22
|
+
priceExcluded: 'όχι',
|
|
23
|
+
priceExcludedMessage: 'Όχι {title}',
|
|
24
|
+
priceRange: ' και παραπάνω',
|
|
25
|
+
showmore: 'Εμφάνιση περισσότερων'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Γίνεται φόρτωση'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Δεν υπάρχουν αποτελέσματα για την αναζήτησή σας.',
|
|
32
|
+
subheading: 'Προσπαθήστε ξανά...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Ταξινόμηση κατά',
|
|
36
|
+
option: 'Ταξινόμηση κατά: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Το πιο σχετικό',
|
|
38
|
+
positionLabel: 'Θέση'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'αποτελέσματα για {phrase}',
|
|
42
|
+
products: '{totalCount} προϊόντα'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Τόσο χαμηλά όσο {discountPrice}',
|
|
46
|
+
startingAt: 'Έναρξη από {productPrice}',
|
|
47
|
+
bundlePrice: 'Από {fromBundlePrice} Προς {toBundlePrice}',
|
|
48
|
+
from: 'Από {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Ο όρος αναζήτησής σας {variables.phrase} δεν έχει φτάσει στο ελάχιστο {minQueryLength} χαρακτήρες.',
|
|
53
|
+
noresults: 'Η αναζήτηση δεν επέστρεψε κανένα αποτέλεσμα.',
|
|
54
|
+
pagePicker: 'Προβολή {pageSize} ανά σελίδα',
|
|
55
|
+
showAll: 'όλα'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Αναζήτηση...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const en_GA = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Scagairí',
|
|
13
|
+
showTitle: 'Taispeáin scagairí',
|
|
14
|
+
hideTitle: 'Folaigh scagairí',
|
|
15
|
+
clearAll: 'Glan gach'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Catagóirí',
|
|
19
|
+
price: 'Praghas',
|
|
20
|
+
customPrice: 'Saincheap Praghas',
|
|
21
|
+
priceIncluded: 'tá',
|
|
22
|
+
priceExcluded: 'níl',
|
|
23
|
+
priceExcludedMessage: 'Ní {title}',
|
|
24
|
+
priceRange: ' agus níos costasaí',
|
|
25
|
+
showmore: 'Taispeáin níos mó'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Lódáil'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'Níl aon torthaí ar do chuardach.',
|
|
32
|
+
subheading: 'Bain triail eile as...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Sórtáil de réir',
|
|
36
|
+
option: 'Sórtáil de réir: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Is Ábhartha',
|
|
38
|
+
positionLabel: 'Post'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'torthaí do {phrase}',
|
|
42
|
+
products: '{totalCount} táirge'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Chomh híseal le {discountPrice}',
|
|
46
|
+
startingAt: 'Ag tosú ag {productPrice}',
|
|
47
|
+
bundlePrice: 'Ó {fromBundlePrice} go {toBundlePrice}',
|
|
48
|
+
from: 'Ó {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Níor shroich do théarma cuardaigh {variables.phrase} íosmhéid {minQueryLength} carachtar.',
|
|
53
|
+
noresults: 'Níl aon torthaí ar do chuardach.',
|
|
54
|
+
pagePicker: 'Taispeáin {pageSize} in aghaidh an leathanaigh',
|
|
55
|
+
showAll: 'gach'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Cuardaigh...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const en_GB = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filters',
|
|
13
|
+
showTitle: 'Show filters',
|
|
14
|
+
hideTitle: 'Hide filters',
|
|
15
|
+
clearAll: 'Clear all'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Categories',
|
|
19
|
+
price: 'Price',
|
|
20
|
+
customPrice: 'Custom Price',
|
|
21
|
+
priceIncluded: 'yes',
|
|
22
|
+
priceExcluded: 'no',
|
|
23
|
+
priceExcludedMessage: 'Not {title}',
|
|
24
|
+
priceRange: ' and above',
|
|
25
|
+
showmore: 'Show more'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Loading'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'No results for your search.',
|
|
32
|
+
subheading: 'Please try again...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Sort by',
|
|
36
|
+
option: 'Sort by: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Most Relevant',
|
|
38
|
+
positionLabel: 'Position'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'results for {phrase}',
|
|
42
|
+
products: '{totalCount} products'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'As low as {discountPrice}',
|
|
46
|
+
startingAt: 'Starting at {productPrice}',
|
|
47
|
+
bundlePrice: 'From {fromBundlePrice} To {toBundlePrice}',
|
|
48
|
+
from: 'From {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'Your search term {variables.phrase} has not reached the minimum of {minQueryLength} characters.',
|
|
53
|
+
noresults: 'Your search returned no results.',
|
|
54
|
+
pagePicker: 'Show {pageSize} per page',
|
|
55
|
+
showAll: 'all'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Search...'
|
|
59
|
+
}
|
|
60
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const en_US = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filters',
|
|
13
|
+
showTitle: 'Show filters',
|
|
14
|
+
hideTitle: 'Hide filters',
|
|
15
|
+
clearAll: 'Clear all'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Categories',
|
|
19
|
+
price: 'Price',
|
|
20
|
+
customPrice: 'Custom Price',
|
|
21
|
+
priceIncluded: 'yes',
|
|
22
|
+
priceExcluded: 'no',
|
|
23
|
+
priceExcludedMessage: 'Not {title}',
|
|
24
|
+
priceRange: ' and above',
|
|
25
|
+
showmore: 'Show more'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Loading'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'No results for your search.',
|
|
32
|
+
subheading: 'Please try again...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Sort by',
|
|
36
|
+
option: 'Sort by: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Most Relevant',
|
|
38
|
+
positionLabel: 'Position',
|
|
39
|
+
sortAttributeASC: '{label}: Low to High',
|
|
40
|
+
sortAttributeDESC: '{label}: High to Low',
|
|
41
|
+
sortASC: 'Price: Low to High',
|
|
42
|
+
sortDESC: 'Price: High to Low',
|
|
43
|
+
productName: 'Product Name',
|
|
44
|
+
productInStock: 'In Stock',
|
|
45
|
+
productLowStock: 'Low Stock'
|
|
46
|
+
},
|
|
47
|
+
CategoryFilters: {
|
|
48
|
+
results: 'results for {phrase}',
|
|
49
|
+
products: '{totalCount} products'
|
|
50
|
+
},
|
|
51
|
+
ProductCard: {
|
|
52
|
+
asLowAs: 'As low as {discountPrice}',
|
|
53
|
+
startingAt: 'Starting at {productPrice}',
|
|
54
|
+
bundlePrice: 'From {fromBundlePrice} To {toBundlePrice}',
|
|
55
|
+
from: 'From {productPrice}'
|
|
56
|
+
},
|
|
57
|
+
ProductContainers: {
|
|
58
|
+
minquery:
|
|
59
|
+
'Your search term {variables.phrase} has not reached the minimum of {minQueryLength} characters.',
|
|
60
|
+
noresults: 'Your search returned no results.',
|
|
61
|
+
pagePicker: 'Show {pageSize} per page',
|
|
62
|
+
showAll: 'all'
|
|
63
|
+
},
|
|
64
|
+
SearchBar: {
|
|
65
|
+
placeholder: 'Search...'
|
|
66
|
+
},
|
|
67
|
+
ListView: {
|
|
68
|
+
viewDetails: 'View details'
|
|
69
|
+
}
|
|
70
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2024 Adobe
|
|
3
|
+
All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
it.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const es_ES = {
|
|
11
|
+
Filter: {
|
|
12
|
+
title: 'Filtros',
|
|
13
|
+
showTitle: 'Mostrar filtros',
|
|
14
|
+
hideTitle: 'Ocultar filtros',
|
|
15
|
+
clearAll: 'Borrar todo'
|
|
16
|
+
},
|
|
17
|
+
InputButtonGroup: {
|
|
18
|
+
title: 'Categorías',
|
|
19
|
+
price: 'Precio',
|
|
20
|
+
customPrice: 'Precio personalizado',
|
|
21
|
+
priceIncluded: 'sí',
|
|
22
|
+
priceExcluded: 'no',
|
|
23
|
+
priceExcludedMessage: 'No es {title}',
|
|
24
|
+
priceRange: ' y más',
|
|
25
|
+
showmore: 'Mostrar más'
|
|
26
|
+
},
|
|
27
|
+
Loading: {
|
|
28
|
+
title: 'Cargando'
|
|
29
|
+
},
|
|
30
|
+
NoResults: {
|
|
31
|
+
heading: 'No hay resultados para tu búsqueda.',
|
|
32
|
+
subheading: 'Inténtalo de nuevo...'
|
|
33
|
+
},
|
|
34
|
+
SortDropdown: {
|
|
35
|
+
title: 'Ordenar por',
|
|
36
|
+
option: 'Ordenar por: {selectedOption}',
|
|
37
|
+
relevanceLabel: 'Más relevantes',
|
|
38
|
+
positionLabel: 'Posición'
|
|
39
|
+
},
|
|
40
|
+
CategoryFilters: {
|
|
41
|
+
results: 'resultados de {phrase}',
|
|
42
|
+
products: '{totalCount} productos'
|
|
43
|
+
},
|
|
44
|
+
ProductCard: {
|
|
45
|
+
asLowAs: 'Por solo {discountPrice}',
|
|
46
|
+
startingAt: 'A partir de {productPrice}',
|
|
47
|
+
bundlePrice: 'Desde {fromBundlePrice} hasta {toBundlePrice}',
|
|
48
|
+
from: 'Desde {productPrice}'
|
|
49
|
+
},
|
|
50
|
+
ProductContainers: {
|
|
51
|
+
minquery:
|
|
52
|
+
'El término de búsqueda {variables.phrase} no llega al mínimo de {minQueryLength} caracteres.',
|
|
53
|
+
noresults: 'Tu búsqueda no ha dado resultados.',
|
|
54
|
+
pagePicker: 'Mostrar {pageSize} por página',
|
|
55
|
+
showAll: 'todo'
|
|
56
|
+
},
|
|
57
|
+
SearchBar: {
|
|
58
|
+
placeholder: 'Buscar...'
|
|
59
|
+
}
|
|
60
|
+
};
|