@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 it_IT = {
11
+ Filter: {
12
+ title: 'Filtri',
13
+ showTitle: 'Mostra filtri',
14
+ hideTitle: 'Nascondi filtri',
15
+ clearAll: 'Cancella tutto'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Categorie',
19
+ price: 'Prezzo',
20
+ customPrice: 'Prezzo personalizzato',
21
+ priceIncluded: 'sì',
22
+ priceExcluded: 'no',
23
+ priceExcludedMessage: 'Non {title}',
24
+ priceRange: ' e superiore',
25
+ showmore: 'Mostra altro'
26
+ },
27
+ Loading: {
28
+ title: 'Caricamento'
29
+ },
30
+ NoResults: {
31
+ heading: 'Nessun risultato per la ricerca.',
32
+ subheading: 'Riprova...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Ordina per',
36
+ option: 'Ordina per: {selectedOption}',
37
+ relevanceLabel: 'Più rilevante',
38
+ positionLabel: 'Posizione'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'risultati per {phrase}',
42
+ products: '{totalCount} prodotti'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'A partire da {discountPrice}',
46
+ startingAt: 'A partire da {productPrice}',
47
+ bundlePrice: 'Da {fromBundlePrice} a {toBundlePrice}',
48
+ from: 'Da {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Il termine di ricerca {variables.phrase} non ha raggiunto il minimo di {minQueryLength} caratteri.',
53
+ noresults: 'La ricerca non ha prodotto risultati.',
54
+ pagePicker: 'Mostra {pageSize} per pagina',
55
+ showAll: 'tutto'
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 ja_JP = {
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: '1 ページあたり {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 ko_KR = {
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 lt_LT = {
11
+ Filter: {
12
+ title: 'Filtrai',
13
+ showTitle: 'Rodyti filtrus',
14
+ hideTitle: 'Slėpti filtrus',
15
+ clearAll: 'Išvalyti viską'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategorijos',
19
+ price: 'Kaina',
20
+ customPrice: 'Individualizuota kaina',
21
+ priceIncluded: 'taip',
22
+ priceExcluded: 'ne',
23
+ priceExcludedMessage: 'Ne {title}',
24
+ priceRange: ' ir aukščiau',
25
+ showmore: 'Rodyti daugiau'
26
+ },
27
+ Loading: {
28
+ title: 'Įkeliama'
29
+ },
30
+ NoResults: {
31
+ heading: 'Nėra jūsų ieškos rezultatų.',
32
+ subheading: 'Bandykite dar kartą...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Rikiuoti pagal',
36
+ option: 'Rikiuoti pagal: {selectedOption}',
37
+ relevanceLabel: 'Svarbiausias',
38
+ positionLabel: 'Padėtis'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'rezultatai {phrase}',
42
+ products: 'Produktų: {totalCount}'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Žema kaip {discountPrice}',
46
+ startingAt: 'Pradedant nuo {productPrice}',
47
+ bundlePrice: 'Nuo {fromBundlePrice} iki {toBundlePrice}',
48
+ from: 'Nuo {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Jūsų ieškos sąlyga {variables.phrase} nesiekia minimalaus skaičiaus simbolių: {minQueryLength}.',
53
+ noresults: 'Jūsų ieška nedavė jokių rezultatų.',
54
+ pagePicker: 'Rodyti {pageSize} psl.',
55
+ showAll: 'viskas'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Ieška...'
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 lv_LV = {
11
+ Filter: {
12
+ title: 'Filtri',
13
+ showTitle: 'Rādīt filtrus',
14
+ hideTitle: 'Slēpt filtrus',
15
+ clearAll: 'Notīrīt visus'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategorijas',
19
+ price: 'Cena',
20
+ customPrice: 'Pielāgot cenu',
21
+ priceIncluded: 'jā',
22
+ priceExcluded: 'nē',
23
+ priceExcludedMessage: 'Nav {title}',
24
+ priceRange: ' un augstāk',
25
+ showmore: 'Rādīt vairāk'
26
+ },
27
+ Loading: {
28
+ title: 'Notiek ielāde'
29
+ },
30
+ NoResults: {
31
+ heading: 'Jūsu meklēšanai nav rezultātu.',
32
+ subheading: 'Mēģiniet vēlreiz…'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Kārtot pēc',
36
+ option: 'Kārtot pēc: {selectedOption}',
37
+ relevanceLabel: 'Visatbilstošākais',
38
+ positionLabel: 'Pozīcija'
39
+ },
40
+ CategoryFilters: {
41
+ results: '{phrase} rezultāti',
42
+ products: '{totalCount} produkti'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Tik zemu kā {discountPrice}',
46
+ startingAt: 'Sākot no {productPrice}',
47
+ bundlePrice: 'No {fromBundlePrice} uz{toBundlePrice}',
48
+ from: 'No {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Jūsu meklēšanas vienums {variables.phrase} nav sasniedzis minimumu {minQueryLength} rakstzīmes.',
53
+ noresults: 'Jūsu meklēšana nedeva nekādus rezultātus.',
54
+ pagePicker: 'Rādīt {pageSize} vienā lapā',
55
+ showAll: 'viss'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Meklēt…'
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 nb_NO = {
11
+ Filter: {
12
+ title: 'Filtre',
13
+ showTitle: 'Vis filtre',
14
+ hideTitle: 'Skjul filtre',
15
+ clearAll: 'Fjern alle'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Kategorier',
19
+ price: 'Pris',
20
+ customPrice: 'Egendefinert pris',
21
+ priceIncluded: 'ja',
22
+ priceExcluded: 'nei',
23
+ priceExcludedMessage: 'Ikke {title}',
24
+ priceRange: ' og over',
25
+ showmore: 'Vis mer'
26
+ },
27
+ Loading: {
28
+ title: 'Laster inn'
29
+ },
30
+ NoResults: {
31
+ heading: 'Finner ingen resultater for søket.',
32
+ subheading: 'Prøv igjen.'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Sorter etter',
36
+ option: 'Sorter etter: {selectedOption}',
37
+ relevanceLabel: 'Mest aktuelle',
38
+ positionLabel: 'Plassering'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'resultater for {phrase}',
42
+ products: '{totalCount} produkter'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Så lavt som {discountPrice}',
46
+ startingAt: 'Fra {productPrice}',
47
+ bundlePrice: 'Fra {fromBundlePrice} til {toBundlePrice}',
48
+ from: 'Fra {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Søkeordet {variables.phrase} har ikke de påkrevde {minQueryLength} tegnene.',
53
+ noresults: 'Søket ditt ga ingen resultater.',
54
+ pagePicker: 'Vis {pageSize} per side',
55
+ showAll: 'alle'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Søk …'
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 nl_NL = {
11
+ Filter: {
12
+ title: 'Filters',
13
+ showTitle: 'Filters weergeven',
14
+ hideTitle: 'Filters verbergen',
15
+ clearAll: 'Alles wissen'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Categorieën',
19
+ price: 'Prijs',
20
+ customPrice: 'Aangepaste prijs',
21
+ priceIncluded: 'ja',
22
+ priceExcluded: 'nee',
23
+ priceExcludedMessage: 'Niet {title}',
24
+ priceRange: ' en meer',
25
+ showmore: 'Meer tonen'
26
+ },
27
+ Loading: {
28
+ title: 'Laden'
29
+ },
30
+ NoResults: {
31
+ heading: 'Geen resultaten voor je zoekopdracht.',
32
+ subheading: 'Probeer het opnieuw...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Sorteren op',
36
+ option: 'Sorteren op: {selectedOption}',
37
+ relevanceLabel: 'Meest relevant',
38
+ positionLabel: 'Positie'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'resultaten voor {phrase}',
42
+ products: '{totalCount} producten'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Slechts {discountPrice}',
46
+ startingAt: 'Vanaf {productPrice}',
47
+ bundlePrice: 'Van {fromBundlePrice} tot {toBundlePrice}',
48
+ from: 'Vanaf {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Je zoekterm {variables.phrase} bevat niet het minimumaantal van {minQueryLength} tekens.',
53
+ noresults: 'Geen resultaten gevonden voor je zoekopdracht.',
54
+ pagePicker: '{pageSize} weergeven per pagina',
55
+ showAll: 'alles'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Zoeken...'
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 pt_BR = {
11
+ Filter: {
12
+ title: 'Filtros',
13
+ showTitle: 'Mostrar filtros',
14
+ hideTitle: 'Ocultar filtros',
15
+ clearAll: 'Limpar tudo'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Categorias',
19
+ price: 'Preço',
20
+ customPrice: 'Preço personalizado',
21
+ priceIncluded: 'sim',
22
+ priceExcluded: 'não',
23
+ priceExcludedMessage: 'Não {title}',
24
+ priceRange: ' e acima',
25
+ showmore: 'Mostrar mais'
26
+ },
27
+ Loading: {
28
+ title: 'Carregando'
29
+ },
30
+ NoResults: {
31
+ heading: 'Nenhum resultado para sua busca.',
32
+ subheading: 'Tente novamente...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Classificar por',
36
+ option: 'Classificar por: {selectedOption}',
37
+ relevanceLabel: 'Mais relevantes',
38
+ positionLabel: 'Posição'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'resultados para {phrase}',
42
+ products: '{totalCount} produtos'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Por apenas {discountPrice}',
46
+ startingAt: 'A partir de {productPrice}',
47
+ bundlePrice: 'De {fromBundlePrice} por {toBundlePrice}',
48
+ from: 'De {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Seu termo de pesquisa {variables.phrase} não atingiu o mínimo de {minQueryLength} caracteres.',
53
+ noresults: 'Sua busca não retornou resultados.',
54
+ pagePicker: 'Mostrar {pageSize} por página',
55
+ showAll: 'tudo'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Pesquisar...'
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 pt_PT = {
11
+ Filter: {
12
+ title: 'Filtros',
13
+ showTitle: 'Mostrar filtros',
14
+ hideTitle: 'Ocultar filtros',
15
+ clearAll: 'Limpar tudo'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Categorias',
19
+ price: 'Preço',
20
+ customPrice: 'Preço Personalizado',
21
+ priceIncluded: 'sim',
22
+ priceExcluded: 'não',
23
+ priceExcludedMessage: 'Não {title}',
24
+ priceRange: ' e acima',
25
+ showmore: 'Mostrar mais'
26
+ },
27
+ Loading: {
28
+ title: 'A carregar'
29
+ },
30
+ NoResults: {
31
+ heading: 'Não existem resultados para a sua pesquisa.',
32
+ subheading: 'Tente novamente...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Ordenar por',
36
+ option: 'Ordenar por: {selectedOption}',
37
+ relevanceLabel: 'Mais Relevantes',
38
+ positionLabel: 'Posição'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'resultados para {phrase}',
42
+ products: '{totalCount} produtos'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'A partir de {discountPrice}',
46
+ startingAt: 'A partir de {productPrice}',
47
+ bundlePrice: 'De {fromBundlePrice} a {toBundlePrice}',
48
+ from: 'A partir de {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'O seu termo de pesquisa {variables.phrase} não atingiu o mínimo de {minQueryLength} carateres.',
53
+ noresults: 'A sua pesquisa não devolveu resultados.',
54
+ pagePicker: 'Mostrar {pageSize} por página',
55
+ showAll: 'tudo'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Procurar...'
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 ro_RO = {
11
+ Filter: {
12
+ title: 'Filtre',
13
+ showTitle: 'Afișați filtrele',
14
+ hideTitle: 'Ascundeți filtrele',
15
+ clearAll: 'Ștergeți tot'
16
+ },
17
+ InputButtonGroup: {
18
+ title: 'Categorii',
19
+ price: 'Preț',
20
+ customPrice: 'Preț personalizat',
21
+ priceIncluded: 'da',
22
+ priceExcluded: 'nu',
23
+ priceExcludedMessage: 'Fără {title}',
24
+ priceRange: ' și mai mult',
25
+ showmore: 'Afișați mai multe'
26
+ },
27
+ Loading: {
28
+ title: 'Se încarcă'
29
+ },
30
+ NoResults: {
31
+ heading: 'Niciun rezultat pentru căutarea dvs.',
32
+ subheading: 'Încercați din nou...'
33
+ },
34
+ SortDropdown: {
35
+ title: 'Sortați după',
36
+ option: 'Sortați după: {selectedOption}',
37
+ relevanceLabel: 'Cele mai relevante',
38
+ positionLabel: 'Poziție'
39
+ },
40
+ CategoryFilters: {
41
+ results: 'rezultate pentru {phrase}',
42
+ products: '{totalCount} produse'
43
+ },
44
+ ProductCard: {
45
+ asLowAs: 'Preț redus până la {discountPrice}',
46
+ startingAt: 'Începând de la {productPrice}',
47
+ bundlePrice: 'De la {fromBundlePrice} la {toBundlePrice}',
48
+ from: 'De la {productPrice}'
49
+ },
50
+ ProductContainers: {
51
+ minquery:
52
+ 'Termenul căutat {variables.phrase} nu a atins numărul minim de {minQueryLength} caractere.',
53
+ noresults: 'Nu există rezultate pentru căutarea dvs.',
54
+ pagePicker: 'Afișați {pageSize} per pagină',
55
+ showAll: 'toate'
56
+ },
57
+ SearchBar: {
58
+ placeholder: 'Căutare...'
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 ru_RU = {
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
+ };