@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.
Files changed (202) hide show
  1. package/package.json +31 -0
  2. package/postcss.config.js +3 -0
  3. package/src/api/fragments.js +193 -0
  4. package/src/api/graphql.js +26 -0
  5. package/src/api/mutations.js +94 -0
  6. package/src/api/queries.js +225 -0
  7. package/src/api/search.js +222 -0
  8. package/src/components/AddToCartButton/AddToCartButton.jsx +32 -0
  9. package/src/components/AddToCartButton/AddToCartButton.stories.mdx +14 -0
  10. package/src/components/AddToCartButton/index.js +10 -0
  11. package/src/components/Alert/Alert.jsx +155 -0
  12. package/src/components/Alert/index.js +11 -0
  13. package/src/components/Breadcrumbs/Breadcrumbs.jsx +34 -0
  14. package/src/components/Breadcrumbs/MockPages.js +14 -0
  15. package/src/components/Breadcrumbs/index.js +11 -0
  16. package/src/components/ButtonShimmer/ButtonShimmer.css +32 -0
  17. package/src/components/ButtonShimmer/ButtonShimmer.jsx +23 -0
  18. package/src/components/ButtonShimmer/index.js +11 -0
  19. package/src/components/CategoryFilters/CategoryFilters.jsx +59 -0
  20. package/src/components/CategoryFilters/index.js +10 -0
  21. package/src/components/Facets/Facets.jsx +50 -0
  22. package/src/components/Facets/Range/RangeFacet.js +20 -0
  23. package/src/components/Facets/Scalar/ScalarFacet.js +29 -0
  24. package/src/components/Facets/SelectedFilters.js +80 -0
  25. package/src/components/Facets/format.js +52 -0
  26. package/src/components/Facets/index.js +14 -0
  27. package/src/components/Facets/mocks.js +119 -0
  28. package/src/components/FacetsShimmer/FacetsShimmer.css +49 -0
  29. package/src/components/FacetsShimmer/FacetsShimmer.jsx +25 -0
  30. package/src/components/FacetsShimmer/index.js +11 -0
  31. package/src/components/FilterButton/FilterButton.jsx +40 -0
  32. package/src/components/FilterButton/index.js +11 -0
  33. package/src/components/ImageCarousel/Image.jsx +34 -0
  34. package/src/components/ImageCarousel/ImageCarousel.jsx +103 -0
  35. package/src/components/ImageCarousel/index.js +11 -0
  36. package/src/components/InputButtonGroup/InputButtonGroup.jsx +120 -0
  37. package/src/components/InputButtonGroup/index.js +11 -0
  38. package/src/components/LabelledInput/LabelledInput.jsx +51 -0
  39. package/src/components/LabelledInput/index.js +11 -0
  40. package/src/components/Loading/Loading.jsx +32 -0
  41. package/src/components/Loading/index.js +11 -0
  42. package/src/components/NoResults/NoResults.jsx +55 -0
  43. package/src/components/NoResults/index.js +11 -0
  44. package/src/components/Pagination/Pagination.jsx +105 -0
  45. package/src/components/Pagination/index.js +10 -0
  46. package/src/components/PerPagePicker/PerPagePicker.jsx +114 -0
  47. package/src/components/PerPagePicker/index.js +11 -0
  48. package/src/components/Pill/Pill.jsx +34 -0
  49. package/src/components/Pill/index.js +11 -0
  50. package/src/components/Pill/mock.js +23 -0
  51. package/src/components/ProductCardShimmer/ProductCardShimmer.css +72 -0
  52. package/src/components/ProductCardShimmer/ProductCardShimmer.jsx +28 -0
  53. package/src/components/ProductCardShimmer/index.js +11 -0
  54. package/src/components/ProductItem/MockData.js +508 -0
  55. package/src/components/ProductItem/ProductItem.css +84 -0
  56. package/src/components/ProductItem/ProductItem.jsx +347 -0
  57. package/src/components/ProductItem/ProductPrice.jsx +181 -0
  58. package/src/components/ProductItem/index.js +11 -0
  59. package/src/components/ProductList/MockData.js +190 -0
  60. package/src/components/ProductList/ProductList.jsx +127 -0
  61. package/src/components/ProductList/index.js +11 -0
  62. package/src/components/ProductList/product-list.css +18 -0
  63. package/src/components/SearchBar/SearchBar.jsx +33 -0
  64. package/src/components/SearchBar/index.js +11 -0
  65. package/src/components/Shimmer/Shimmer.css +82 -0
  66. package/src/components/Shimmer/Shimmer.jsx +66 -0
  67. package/src/components/Shimmer/index.js +11 -0
  68. package/src/components/Slider/Slider.css +61 -0
  69. package/src/components/Slider/Slider.jsx +103 -0
  70. package/src/components/Slider/index.jsx +11 -0
  71. package/src/components/SliderDoubleControl/SliderDoubleControl.css +83 -0
  72. package/src/components/SliderDoubleControl/SliderDoubleControl.jsx +220 -0
  73. package/src/components/SliderDoubleControl/index.js +11 -0
  74. package/src/components/SortDropdown/SortDropdown.jsx +126 -0
  75. package/src/components/SortDropdown/index.js +11 -0
  76. package/src/components/SwatchButton/SwatchButton.jsx +72 -0
  77. package/src/components/SwatchButton/index.js +11 -0
  78. package/src/components/SwatchButtonGroup/SwatchButtonGroup.jsx +86 -0
  79. package/src/components/SwatchButtonGroup/index.js +11 -0
  80. package/src/components/ViewSwitcher/ViewSwitcher.jsx +46 -0
  81. package/src/components/ViewSwitcher/index.js +11 -0
  82. package/src/components/WishlistButton/WishlistButton.jsx +67 -0
  83. package/src/components/WishlistButton/index.js +11 -0
  84. package/src/containers/App.jsx +145 -0
  85. package/src/containers/LiveSearchPLPLoader.jsx +24 -0
  86. package/src/containers/LiveSearchPopoverLoader.jsx +190 -0
  87. package/src/containers/LiveSearchSRLPLoader.jsx +24 -0
  88. package/src/containers/ProductListingPage.jsx +66 -0
  89. package/src/containers/ProductsContainer.jsx +145 -0
  90. package/src/containers/ProductsHeader.jsx +123 -0
  91. package/src/context/attributeMetadata.js +63 -0
  92. package/src/context/cart.js +97 -0
  93. package/src/context/displayChange.js +90 -0
  94. package/src/context/events.js +160 -0
  95. package/src/context/index.js +19 -0
  96. package/src/context/products.jsx +336 -0
  97. package/src/context/resultsModifierContext.js +35 -0
  98. package/src/context/search.jsx +127 -0
  99. package/src/context/store.jsx +93 -0
  100. package/src/context/translation.jsx +125 -0
  101. package/src/context/widgetConfig.jsx +120 -0
  102. package/src/context/wishlist.jsx +97 -0
  103. package/src/hooks/eventing/useEventListener.js +13 -0
  104. package/src/hooks/eventing/useLocation.js +21 -0
  105. package/src/hooks/eventing/useMagentoExtensionContext.js +28 -0
  106. package/src/hooks/eventing/usePageView.js +36 -0
  107. package/src/hooks/eventing/useShopperContext.js +33 -0
  108. package/src/hooks/eventing/useStorefrontInstanceContext.js +46 -0
  109. package/src/hooks/eventing/useViewedOffsets.js +74 -0
  110. package/src/hooks/useAccessibleDropdown.js +148 -0
  111. package/src/hooks/useLiveSearchPLPConfig.js +112 -0
  112. package/src/hooks/useLiveSearchPopoverConfig.js +83 -0
  113. package/src/hooks/useLiveSearchSRLPConfig.js +97 -0
  114. package/src/hooks/usePagination.js +83 -0
  115. package/src/hooks/useRangeFacet.js +62 -0
  116. package/src/hooks/useScalarFacet.js +61 -0
  117. package/src/hooks/useSliderFacet.js +43 -0
  118. package/src/i18n/Sorani.js +60 -0
  119. package/src/i18n/ar_AE.js +60 -0
  120. package/src/i18n/bg_BG.js +60 -0
  121. package/src/i18n/bn_IN.js +60 -0
  122. package/src/i18n/ca_ES.js +60 -0
  123. package/src/i18n/cs_CZ.js +60 -0
  124. package/src/i18n/da_DK.js +60 -0
  125. package/src/i18n/de_DE.js +60 -0
  126. package/src/i18n/el_GR.js +60 -0
  127. package/src/i18n/en_GA.js +60 -0
  128. package/src/i18n/en_GB.js +60 -0
  129. package/src/i18n/en_US.js +70 -0
  130. package/src/i18n/es_ES.js +60 -0
  131. package/src/i18n/et_EE.js +60 -0
  132. package/src/i18n/eu_ES.js +60 -0
  133. package/src/i18n/fa_IR.js +60 -0
  134. package/src/i18n/fi_FI.js +60 -0
  135. package/src/i18n/fr_FR.js +60 -0
  136. package/src/i18n/gl_ES.js +60 -0
  137. package/src/i18n/hi_IN.js +60 -0
  138. package/src/i18n/hu_HU.js +60 -0
  139. package/src/i18n/hy_AM.js +60 -0
  140. package/src/i18n/id_ID.js +60 -0
  141. package/src/i18n/index.js +89 -0
  142. package/src/i18n/it_IT.js +60 -0
  143. package/src/i18n/ja_JP.js +60 -0
  144. package/src/i18n/ko_KR.js +60 -0
  145. package/src/i18n/lt_LT.js +60 -0
  146. package/src/i18n/lv_LV.js +60 -0
  147. package/src/i18n/nb_NO.js +60 -0
  148. package/src/i18n/nl_NL.js +60 -0
  149. package/src/i18n/pt_BR.js +60 -0
  150. package/src/i18n/pt_PT.js +60 -0
  151. package/src/i18n/ro_RO.js +60 -0
  152. package/src/i18n/ru_RU.js +60 -0
  153. package/src/i18n/sv_SE.js +60 -0
  154. package/src/i18n/th_TH.js +60 -0
  155. package/src/i18n/tr_TR.js +60 -0
  156. package/src/i18n/zh_Hans_CN.js +60 -0
  157. package/src/i18n/zh_Hant_TW.js +60 -0
  158. package/src/icons/NoImage.svg +1 -0
  159. package/src/icons/adjustments.svg +3 -0
  160. package/src/icons/cart.svg +3 -0
  161. package/src/icons/checkmark.svg +3 -0
  162. package/src/icons/chevron.svg +3 -0
  163. package/src/icons/emptyHeart.svg +3 -0
  164. package/src/icons/error.svg +3 -0
  165. package/src/icons/filledHeart.svg +3 -0
  166. package/src/icons/filter.svg +29 -0
  167. package/src/icons/gridView.svg +11 -0
  168. package/src/icons/info.svg +3 -0
  169. package/src/icons/listView.svg +5 -0
  170. package/src/icons/loading.svg +6 -0
  171. package/src/icons/plus.svg +4 -0
  172. package/src/icons/sort.svg +18 -0
  173. package/src/icons/warning.svg +3 -0
  174. package/src/icons/x.svg +3 -0
  175. package/src/index.jsx +65 -0
  176. package/src/queries/customerGroupCode.gql.js +10 -0
  177. package/src/queries/eventing/getMagentoExtensionContext.gql.js +13 -0
  178. package/src/queries/eventing/getPageType.gql.js +14 -0
  179. package/src/queries/eventing/getStorefrontContext.gql.js +27 -0
  180. package/src/queries/index.js +3 -0
  181. package/src/queries/liveSearchPlpConfigs.gql.js +30 -0
  182. package/src/queries/liveSearchPopoverConfigs.gql.js +28 -0
  183. package/src/styles/autocomplete.module.css +56 -0
  184. package/src/styles/index.css +1638 -0
  185. package/src/styles/searchBar.module.css +119 -0
  186. package/src/styles/tokens.css +99 -0
  187. package/src/targets/intercept.js +21 -0
  188. package/src/utils/constants.js +26 -0
  189. package/src/utils/decodeHtmlString.js +13 -0
  190. package/src/utils/dom.js +14 -0
  191. package/src/utils/eventing/getCookie.js +9 -0
  192. package/src/utils/eventing/usePageTypeFromUrl.js +26 -0
  193. package/src/utils/getProductImage.js +94 -0
  194. package/src/utils/getProductPrice.js +83 -0
  195. package/src/utils/getUserViewHistory.js +27 -0
  196. package/src/utils/handleUrlFilters.js +164 -0
  197. package/src/utils/htmlStringDecode.js +13 -0
  198. package/src/utils/modifyResults.js +164 -0
  199. package/src/utils/sort.js +95 -0
  200. package/src/utils/useIntersectionObserver.js +27 -0
  201. package/src/utils/validateStoreDetails.js +39 -0
  202. 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 et_EE = {
11
+ Filter: {
12
+ title: 'Filtrid',
13
+ showTitle: 'Kuva filtrid',
14
+ hideTitle: 'Peida filtrid',
15
+ clearAll: 'Tühjenda kõik'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategooriad',
19
+ price: 'Hind',
20
+ customPrice: 'Kohandatud hind',
21
+ priceIncluded: 'jah',
22
+ priceExcluded: 'ei',
23
+ priceExcludedMessage: 'Mitte {title}',
24
+ priceRange: ' ja üleval',
25
+ showmore: 'Kuva rohkem'
26
+ },
27
+ Loading: {
28
+ title: 'Laadimine'
29
+ },
30
+ NoResults: {
31
+ heading: 'Teie otsingule pole tulemusi.',
32
+ subheading: 'Proovige uuesti…'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Sortimisjärjekord',
36
+ option: 'Sortimisjärjekord: {selectedOption}',
37
+ relevanceLabel: 'Kõige asjakohasem',
38
+ positionLabel: 'Asukoht'
39
+ },
40
+ CategoryFilters: {
41
+ results: '{phrase} tulemused',
42
+ products: '{totalCount} toodet'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Ainult {discountPrice}',
46
+ startingAt: 'Alates {productPrice}',
47
+ bundlePrice: 'Alates {fromBundlePrice} kuni {toBundlePrice}',
48
+ from: 'Alates {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Teie otsingutermin {variables.phrase} ei sisalda vähemalt {minQueryLength} tähemärki.',
53
+ noresults: 'Teie otsing ei andnud tulemusi.',
54
+ pagePicker: 'Näita {pageSize} lehekülje kohta',
55
+ showAll: 'kõik'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Otsi…'
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 eu_ES = {
11
+ Filter: {
12
+ title: 'Iragazkiak',
13
+ showTitle: 'Erakutsi iragazkiak',
14
+ hideTitle: 'Ezkutatu iragazkiak',
15
+ clearAll: 'Garbitu dena'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategoriak',
19
+ price: 'Prezioa',
20
+ customPrice: 'Prezio pertsonalizatua',
21
+ priceIncluded: 'bai',
22
+ priceExcluded: 'ez',
23
+ priceExcludedMessage: 'Ez da {title}',
24
+ priceRange: ' eta gorago',
25
+ showmore: 'Erakutsi gehiago'
26
+ },
27
+ Loading: {
28
+ title: 'Kargatzen'
29
+ },
30
+ NoResults: {
31
+ heading: 'Ez dago emaitzarik zure bilaketarako.',
32
+ subheading: 'Saiatu berriro mesedez...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Ordenatu',
36
+ option: 'Ordenatu honen arabera: {selectedOption}',
37
+ relevanceLabel: 'Garrantzitsuena',
38
+ positionLabel: 'Posizioa'
39
+ },
40
+ CategoryFilters: {
41
+ results: '{phrase} bilaketaren emaitzak',
42
+ products: '{totalCount} produktu'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: '{discountPrice} bezain baxua',
46
+ startingAt: '{productPrice}-tatik hasita',
47
+ bundlePrice: '{fromBundlePrice} eta {toBundlePrice} artean',
48
+ from: '{productPrice}-tatik hasita'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Zure bilaketa-terminoa ({variables.phrase}) ez da iritsi gutxieneko {minQueryLength} karakteretara.',
53
+ noresults: 'Zure bilaketak ez du emaitzarik eman.',
54
+ pagePicker: 'Erakutsi {pageSize} orriko',
55
+ showAll: 'guztiak'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Bilatu...'
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 fa_IR = {
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 fi_FI = {
11
+ Filter: {
12
+ title: 'Suodattimet',
13
+ showTitle: 'Näytä suodattimet',
14
+ hideTitle: 'Piilota suodattimet',
15
+ clearAll: 'Poista kaikki'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Luokat',
19
+ price: 'Hinta',
20
+ customPrice: 'Mukautettu hinta',
21
+ priceIncluded: 'kyllä',
22
+ priceExcluded: 'ei',
23
+ priceExcludedMessage: 'Ei {title}',
24
+ priceRange: ' ja enemmän',
25
+ showmore: 'Näytä enemmän'
26
+ },
27
+ Loading: {
28
+ title: 'Ladataan'
29
+ },
30
+ NoResults: {
31
+ heading: 'Haullasi ei löytynyt tuloksia.',
32
+ subheading: 'Yritä uudelleen...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Lajitteluperuste',
36
+ option: 'Lajitteluperuste: {selectedOption}',
37
+ relevanceLabel: 'Olennaisimmat',
38
+ positionLabel: 'Sijainti'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'tulosta ilmaukselle {phrase}',
42
+ products: '{totalCount} tuotetta'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Parhaimmillaan {discountPrice}',
46
+ startingAt: 'Alkaen {productPrice}',
47
+ bundlePrice: '{fromBundlePrice} alkaen {toBundlePrice} asti',
48
+ from: '{productPrice} alkaen'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Hakusanasi {variables.phrase} ei ole saavuttanut {minQueryLength} merkin vähimmäismäärää.',
53
+ noresults: 'Hakusi ei palauttanut tuloksia.',
54
+ pagePicker: 'Näytä {pageSize} sivua kohti',
55
+ showAll: 'kaikki'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Hae...'
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 fr_FR = {
11
+ Filter: {
12
+ title: 'Filtres',
13
+ showTitle: 'Afficher les filtres',
14
+ hideTitle: 'Masquer les filtres',
15
+ clearAll: 'Tout effacer'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Catégories',
19
+ price: 'Prix',
20
+ customPrice: 'Prix personnalisé',
21
+ priceIncluded: 'oui',
22
+ priceExcluded: 'non',
23
+ priceExcludedMessage: 'Exclure {title}',
24
+ priceRange: ' et plus',
25
+ showmore: 'Plus'
26
+ },
27
+ Loading: {
28
+ title: 'Chargement'
29
+ },
30
+ NoResults: {
31
+ heading: 'Votre recherche n’a renvoyé aucun résultat',
32
+ subheading: 'Veuillez réessayer…'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Trier par',
36
+ option: 'Trier par : {selectedOption}',
37
+ relevanceLabel: 'Pertinence',
38
+ positionLabel: 'Position'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'résultats trouvés pour {phrase}',
42
+ products: '{totalCount} produits'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Prix descendant jusqu’à {discountPrice}',
46
+ startingAt: 'À partir de {productPrice}',
47
+ bundlePrice: 'De {fromBundlePrice} à {toBundlePrice}',
48
+ from: 'De {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Votre terme de recherche « {variables.phrase} » est en dessous de la limite minimale de {minQueryLength} caractères.',
53
+ noresults: 'Votre recherche n’a renvoyé aucun résultat.',
54
+ pagePicker: 'Affichage : {pageSize} par page',
55
+ showAll: 'tout'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Rechercher…'
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 gl_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: 'Prezo',
20
+ customPrice: 'Prezo personalizado',
21
+ priceIncluded: 'si',
22
+ priceExcluded: 'non',
23
+ priceExcludedMessage: 'Non {title}',
24
+ priceRange: ' e superior',
25
+ showmore: 'Mostrar máis'
26
+ },
27
+ Loading: {
28
+ title: 'Cargando'
29
+ },
30
+ NoResults: {
31
+ heading: 'Non hai resultados para a súa busca.',
32
+ subheading: 'Ténteo de novo...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Ordenar por',
36
+ option: 'Ordenar por: {selectedOption}',
37
+ relevanceLabel: 'Máis relevante',
38
+ positionLabel: 'Posición'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'resultados para {phrase}',
42
+ products: '{totalCount} produtos'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'A partir de só {discountPrice}',
46
+ startingAt: 'A partir de {productPrice}',
47
+ bundlePrice: 'Desde {fromBundlePrice} ata {toBundlePrice}',
48
+ from: 'Desde {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'O seu termo de busca {variables.phrase} non alcanzou o mínimo de {minQueryLength} caracteres.',
53
+ noresults: 'A súa busca non obtivo resultados.',
54
+ pagePicker: 'Mostrar {pageSize} por páxina',
55
+ showAll: 'todos'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Buscar...'
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 hi_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 hu_HU = {
11
+ Filter: {
12
+ title: 'Szűrők',
13
+ showTitle: 'Szűrők megjelenítése',
14
+ hideTitle: 'Szűrők elrejtése',
15
+ clearAll: 'Összes törlése'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategóriák',
19
+ price: 'Ár',
20
+ customPrice: 'Egyedi ár',
21
+ priceIncluded: 'igen',
22
+ priceExcluded: 'nem',
23
+ priceExcludedMessage: 'Nem {title}',
24
+ priceRange: ' és fölötte',
25
+ showmore: 'További információk megjelenítése'
26
+ },
27
+ Loading: {
28
+ title: 'Betöltés'
29
+ },
30
+ NoResults: {
31
+ heading: 'Nincs találat a keresésre.',
32
+ subheading: 'Kérjük, próbálja meg újra...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Rendezési szempont',
36
+ option: 'Rendezési szempont: {selectedOption}',
37
+ relevanceLabel: 'Legrelevánsabb',
38
+ positionLabel: 'Pozíció'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'eredmények a következőre: {phrase}',
42
+ products: '{totalCount} termék'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Ennyire alacsony: {discountPrice}',
46
+ startingAt: 'Kezdő ár: {productPrice}',
47
+ bundlePrice: 'Ettől: {fromBundlePrice} Eddig: {toBundlePrice}',
48
+ from: 'Ettől: {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'A keresett kifejezés: {variables.phrase} nem érte el a minimum {minQueryLength} karaktert.',
53
+ noresults: 'A keresés nem hozott eredményt.',
54
+ pagePicker: '{pageSize} megjelenítése oldalanként',
55
+ showAll: 'összes'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Keresés...'
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 hy_AM = {
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 id_ID = {
11
+ Filter: {
12
+ title: 'Filter',
13
+ showTitle: 'Tampilkan filter',
14
+ hideTitle: 'Sembunyikan filter',
15
+ clearAll: 'Bersihkan semua'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategori',
19
+ price: 'Harga',
20
+ customPrice: 'Harga Kustom',
21
+ priceIncluded: 'ya',
22
+ priceExcluded: 'tidak',
23
+ priceExcludedMessage: 'Bukan {title}',
24
+ priceRange: ' ke atas',
25
+ showmore: 'Tampilkan lainnya'
26
+ },
27
+ Loading: {
28
+ title: 'Memuat'
29
+ },
30
+ NoResults: {
31
+ heading: 'Tidak ada hasil untuk pencarian Anda.',
32
+ subheading: 'Coba lagi...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Urut berdasarkan',
36
+ option: 'Urut berdasarkan: {selectedOption}',
37
+ relevanceLabel: 'Paling Relevan',
38
+ positionLabel: 'Posisi'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'hasil untuk {phrase}',
42
+ products: '{totalCount} produk'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Paling rendah {discountPrice}',
46
+ startingAt: 'Mulai dari {productPrice}',
47
+ bundlePrice: 'Mulai {fromBundlePrice} hingga {toBundlePrice}',
48
+ from: 'Mulai {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Istilah pencarian {variables.phrase} belum mencapai batas minimum {minQueryLength} karakter.',
53
+ noresults: 'Pencarian Anda tidak memberikan hasil.',
54
+ pagePicker: 'Menampilkan {pageSize} per halaman',
55
+ showAll: 'semua'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Cari...'
59
+ }
60
+ };
@@ -0,0 +1,89 @@
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
+ import { ar_AE } from './ar_AE';
11
+ import { bg_BG } from './bg_BG';
12
+ import { bn_IN } from './bn_IN';
13
+ import { ca_ES } from './ca_ES';
14
+ import { cs_CZ } from './cs_CZ';
15
+ import { da_DK } from './da_DK';
16
+ import { de_DE } from './de_DE';
17
+ import { el_GR } from './el_GR';
18
+ import { en_GA } from './en_GA';
19
+ import { en_GB } from './en_GB';
20
+ import { en_US } from './en_US';
21
+ import { es_ES } from './es_ES';
22
+ import { et_EE } from './et_EE';
23
+ import { eu_ES } from './eu_ES';
24
+ import { fa_IR } from './fa_IR';
25
+ import { fi_FI } from './fi_FI';
26
+ import { fr_FR } from './fr_FR';
27
+ import { gl_ES } from './gl_ES';
28
+ import { hi_IN } from './hi_IN';
29
+ import { hu_HU } from './hu_HU';
30
+ import { hy_AM } from './hy_AM';
31
+ import { id_ID } from './id_ID';
32
+ import { it_IT } from './it_IT';
33
+ import { ja_JP } from './ja_JP';
34
+ import { ko_KR } from './ko_KR';
35
+ import { lt_LT } from './lt_LT';
36
+ import { lv_LV } from './lv_LV';
37
+ import { nb_NO } from './nb_NO';
38
+ import { nl_NL } from './nl_NL';
39
+ import { pt_BR } from './pt_BR';
40
+ import { pt_PT } from './pt_PT';
41
+ import { ro_RO } from './ro_RO';
42
+ import { ru_RU } from './ru_RU';
43
+ import { Sorani } from './Sorani';
44
+ import { sv_SE } from './sv_SE';
45
+ import { th_TH } from './th_TH';
46
+ import { tr_TR } from './tr_TR';
47
+ import { zh_Hans_CN } from './zh_Hans_CN';
48
+ import { zh_Hant_TW } from './zh_Hant_TW';
49
+ export {
50
+ ar_AE,
51
+ bg_BG,
52
+ bn_IN,
53
+ ca_ES,
54
+ cs_CZ,
55
+ da_DK,
56
+ de_DE,
57
+ el_GR,
58
+ en_GA,
59
+ en_GB,
60
+ en_US,
61
+ es_ES,
62
+ et_EE,
63
+ eu_ES,
64
+ fa_IR,
65
+ fi_FI,
66
+ fr_FR,
67
+ gl_ES,
68
+ hi_IN,
69
+ hu_HU,
70
+ hy_AM,
71
+ id_ID,
72
+ it_IT,
73
+ ja_JP,
74
+ ko_KR,
75
+ lt_LT,
76
+ lv_LV,
77
+ nb_NO,
78
+ nl_NL,
79
+ pt_BR,
80
+ pt_PT,
81
+ ro_RO,
82
+ ru_RU,
83
+ Sorani,
84
+ sv_SE,
85
+ th_TH,
86
+ tr_TR,
87
+ zh_Hans_CN,
88
+ zh_Hant_TW
89
+ };