@salesforce/retail-react-app 1.0.0-preview.0

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 (425) hide show
  1. package/.eslintignore +7 -0
  2. package/.eslintrc.js +25 -0
  3. package/.prettierignore +4 -0
  4. package/.prettierrc.yaml +7 -0
  5. package/CHANGELOG.md +173 -0
  6. package/LICENSE +14 -0
  7. package/README.md +48 -0
  8. package/app/assets/svg/account.svg +3 -0
  9. package/app/assets/svg/alert.svg +3 -0
  10. package/app/assets/svg/basket.svg +3 -0
  11. package/app/assets/svg/brand-logo.svg +10 -0
  12. package/app/assets/svg/cc-amex.svg +7 -0
  13. package/app/assets/svg/cc-cvv.svg +8 -0
  14. package/app/assets/svg/cc-discover.svg +14 -0
  15. package/app/assets/svg/cc-mastercard.svg +8 -0
  16. package/app/assets/svg/cc-visa.svg +11 -0
  17. package/app/assets/svg/check-circle.svg +3 -0
  18. package/app/assets/svg/check.svg +3 -0
  19. package/app/assets/svg/chevron-down.svg +3 -0
  20. package/app/assets/svg/chevron-left.svg +3 -0
  21. package/app/assets/svg/chevron-right.svg +3 -0
  22. package/app/assets/svg/chevron-up.svg +3 -0
  23. package/app/assets/svg/close.svg +3 -0
  24. package/app/assets/svg/dashboard.svg +4 -0
  25. package/app/assets/svg/figma-logo.svg +14 -0
  26. package/app/assets/svg/file.svg +3 -0
  27. package/app/assets/svg/filter.svg +3 -0
  28. package/app/assets/svg/flag-ca.svg +5 -0
  29. package/app/assets/svg/flag-cn.svg +19 -0
  30. package/app/assets/svg/flag-fr.svg +19 -0
  31. package/app/assets/svg/flag-gb.svg +16 -0
  32. package/app/assets/svg/flag-it.svg +29 -0
  33. package/app/assets/svg/flag-jp.svg +10 -0
  34. package/app/assets/svg/flag-us.svg +7 -0
  35. package/app/assets/svg/github-logo.svg +40 -0
  36. package/app/assets/svg/hamburger.svg +8 -0
  37. package/app/assets/svg/heart-solid.svg +7 -0
  38. package/app/assets/svg/heart.svg +3 -0
  39. package/app/assets/svg/info.svg +3 -0
  40. package/app/assets/svg/like.svg +4 -0
  41. package/app/assets/svg/location.svg +3 -0
  42. package/app/assets/svg/lock.svg +3 -0
  43. package/app/assets/svg/paypal.svg +19 -0
  44. package/app/assets/svg/plug.svg +3 -0
  45. package/app/assets/svg/plus.svg +3 -0
  46. package/app/assets/svg/receipt.svg +3 -0
  47. package/app/assets/svg/search.svg +8 -0
  48. package/app/assets/svg/signout.svg +3 -0
  49. package/app/assets/svg/social-facebook.svg +3 -0
  50. package/app/assets/svg/social-instagram.svg +3 -0
  51. package/app/assets/svg/social-pinterest.svg +4 -0
  52. package/app/assets/svg/social-twitter.svg +3 -0
  53. package/app/assets/svg/social-youtube.svg +3 -0
  54. package/app/assets/svg/user.svg +3 -0
  55. package/app/assets/svg/visibility-off.svg +5 -0
  56. package/app/assets/svg/visibility.svg +3 -0
  57. package/app/components/_app/index.jsx +401 -0
  58. package/app/components/_app/index.test.js +85 -0
  59. package/app/components/_app/partials/above-header.jsx +10 -0
  60. package/app/components/_app-config/index.jsx +125 -0
  61. package/app/components/_app-config/index.test.js +77 -0
  62. package/app/components/_error/index.jsx +142 -0
  63. package/app/components/_error/index.test.js +25 -0
  64. package/app/components/action-card/index.jsx +75 -0
  65. package/app/components/address-display/index.jsx +30 -0
  66. package/app/components/basic-tile/index.jsx +65 -0
  67. package/app/components/basic-tile/index.test.js +23 -0
  68. package/app/components/breadcrumb/index.jsx +67 -0
  69. package/app/components/breadcrumb/index.test.js +30 -0
  70. package/app/components/confirmation-modal/index.jsx +111 -0
  71. package/app/components/confirmation-modal/index.test.js +98 -0
  72. package/app/components/drawer-menu/index.jsx +405 -0
  73. package/app/components/drawer-menu/index.test.js +33 -0
  74. package/app/components/dynamic-image/index.jsx +56 -0
  75. package/app/components/field/index.jsx +161 -0
  76. package/app/components/footer/index.jsx +269 -0
  77. package/app/components/footer/index.test.js +22 -0
  78. package/app/components/forms/address-fields.jsx +49 -0
  79. package/app/components/forms/credit-card-fields.jsx +149 -0
  80. package/app/components/forms/form-action-buttons.jsx +55 -0
  81. package/app/components/forms/login-fields.jsx +31 -0
  82. package/app/components/forms/password-requirements.jsx +99 -0
  83. package/app/components/forms/post-checkout-registration-fields.jsx +43 -0
  84. package/app/components/forms/profile-fields.jsx +36 -0
  85. package/app/components/forms/promo-code-fields.jsx +43 -0
  86. package/app/components/forms/registration-fields.jsx +42 -0
  87. package/app/components/forms/reset-password-fields.jsx +31 -0
  88. package/app/components/forms/state-province-options.jsx +75 -0
  89. package/app/components/forms/update-password-fields.jsx +49 -0
  90. package/app/components/forms/useAddressFields.jsx +196 -0
  91. package/app/components/forms/useCreditCardFields.jsx +146 -0
  92. package/app/components/forms/useLoginFields.jsx +52 -0
  93. package/app/components/forms/useProfileFields.jsx +95 -0
  94. package/app/components/forms/usePromoCodeFields.jsx +39 -0
  95. package/app/components/forms/useRegistrationFields.jsx +136 -0
  96. package/app/components/forms/useResetPasswordFields.jsx +40 -0
  97. package/app/components/forms/useUpdatePasswordFields.jsx +89 -0
  98. package/app/components/header/index.jsx +290 -0
  99. package/app/components/header/index.test.js +217 -0
  100. package/app/components/hero/index.jsx +84 -0
  101. package/app/components/hero/index.test.js +40 -0
  102. package/app/components/icons/index.jsx +158 -0
  103. package/app/components/icons/index.test.js +20 -0
  104. package/app/components/image-gallery/index.jsx +176 -0
  105. package/app/components/image-gallery/index.test.js +485 -0
  106. package/app/components/item-variant/index.jsx +33 -0
  107. package/app/components/item-variant/item-attributes.jsx +107 -0
  108. package/app/components/item-variant/item-image.jsx +73 -0
  109. package/app/components/item-variant/item-name.jsx +28 -0
  110. package/app/components/item-variant/item-price.jsx +117 -0
  111. package/app/components/link/index.jsx +32 -0
  112. package/app/components/link/index.test.js +72 -0
  113. package/app/components/links-list/index.jsx +89 -0
  114. package/app/components/links-list/index.test.js +62 -0
  115. package/app/components/list-menu/index.jsx +280 -0
  116. package/app/components/list-menu/index.test.js +44 -0
  117. package/app/components/loading-spinner/index.jsx +46 -0
  118. package/app/components/locale-selector/index.jsx +124 -0
  119. package/app/components/locale-selector/index.test.js +37 -0
  120. package/app/components/locale-text/index.jsx +97 -0
  121. package/app/components/locale-text/index.test.js +36 -0
  122. package/app/components/login/index.jsx +96 -0
  123. package/app/components/nested-accordion/index.jsx +185 -0
  124. package/app/components/nested-accordion/index.test.js +98 -0
  125. package/app/components/offline-banner/index.jsx +40 -0
  126. package/app/components/offline-banner/index.test.js +15 -0
  127. package/app/components/offline-boundary/index.jsx +104 -0
  128. package/app/components/offline-boundary/index.test.js +123 -0
  129. package/app/components/order-summary/index.jsx +331 -0
  130. package/app/components/page-action-placeholder/index.jsx +50 -0
  131. package/app/components/pagination/index.jsx +134 -0
  132. package/app/components/pagination/index.test.js +25 -0
  133. package/app/components/product-item/index.jsx +146 -0
  134. package/app/components/product-item/index.test.js +38 -0
  135. package/app/components/product-scroller/index.jsx +172 -0
  136. package/app/components/product-scroller/index.test.js +98 -0
  137. package/app/components/product-tile/index.jsx +195 -0
  138. package/app/components/product-tile/index.test.js +96 -0
  139. package/app/components/product-view/index.jsx +538 -0
  140. package/app/components/product-view/index.test.js +224 -0
  141. package/app/components/product-view-modal/index.jsx +48 -0
  142. package/app/components/product-view-modal/index.test.js +72 -0
  143. package/app/components/promo-code/index.jsx +162 -0
  144. package/app/components/promo-popover/index.jsx +83 -0
  145. package/app/components/quantity-picker/index.jsx +58 -0
  146. package/app/components/radio-card/index.jsx +75 -0
  147. package/app/components/recommended-products/index.jsx +227 -0
  148. package/app/components/register/index.jsx +114 -0
  149. package/app/components/reset-password/index.jsx +87 -0
  150. package/app/components/responsive/index.jsx +29 -0
  151. package/app/components/scroll-to-top/index.jsx +24 -0
  152. package/app/components/scroll-to-top/index.test.js +46 -0
  153. package/app/components/search/index.jsx +279 -0
  154. package/app/components/search/index.test.js +127 -0
  155. package/app/components/search/partials/recent-searches.jsx +76 -0
  156. package/app/components/search/partials/search-suggestions.jsx +45 -0
  157. package/app/components/search/partials/suggestions.jsx +43 -0
  158. package/app/components/section/index.jsx +68 -0
  159. package/app/components/seo/index.jsx +33 -0
  160. package/app/components/social-icons/index.jsx +101 -0
  161. package/app/components/social-icons/index.test.js +30 -0
  162. package/app/components/swatch-group/index.jsx +77 -0
  163. package/app/components/swatch-group/index.test.js +136 -0
  164. package/app/components/swatch-group/swatch.jsx +94 -0
  165. package/app/components/toggle-card/index.jsx +97 -0
  166. package/app/components/with-registration/index.jsx +58 -0
  167. package/app/components/with-registration/index.test.js +85 -0
  168. package/app/constants.js +109 -0
  169. package/app/contexts/index.js +92 -0
  170. package/app/hooks/einstein-mock-data.js +916 -0
  171. package/app/hooks/index.js +17 -0
  172. package/app/hooks/use-add-to-cart-modal.js +344 -0
  173. package/app/hooks/use-add-to-cart-modal.test.js +625 -0
  174. package/app/hooks/use-auth-modal.js +337 -0
  175. package/app/hooks/use-auth-modal.test.js +365 -0
  176. package/app/hooks/use-currency.js +20 -0
  177. package/app/hooks/use-currency.test.js +41 -0
  178. package/app/hooks/use-current-basket.js +39 -0
  179. package/app/hooks/use-current-customer.js +29 -0
  180. package/app/hooks/use-derived-product.js +77 -0
  181. package/app/hooks/use-derived-product.test.js +69 -0
  182. package/app/hooks/use-einstein.js +512 -0
  183. package/app/hooks/use-einstein.test.js +224 -0
  184. package/app/hooks/use-intersection-observer.js +64 -0
  185. package/app/hooks/use-limit-urls.js +31 -0
  186. package/app/hooks/use-limit-urls.test.js +40 -0
  187. package/app/hooks/use-multi-site.js +36 -0
  188. package/app/hooks/use-multi-site.test.js +53 -0
  189. package/app/hooks/use-navigation.js +37 -0
  190. package/app/hooks/use-navigation.test.js +109 -0
  191. package/app/hooks/use-page-urls.js +35 -0
  192. package/app/hooks/use-page-urls.test.js +39 -0
  193. package/app/hooks/use-pdp-search-params.js +16 -0
  194. package/app/hooks/use-pdp-search-params.test.js +52 -0
  195. package/app/hooks/use-previous.js +17 -0
  196. package/app/hooks/use-product-view-modal.js +93 -0
  197. package/app/hooks/use-product-view-modal.test.js +172 -0
  198. package/app/hooks/use-search-params.js +96 -0
  199. package/app/hooks/use-search-params.test.js +91 -0
  200. package/app/hooks/use-sort-urls.js +33 -0
  201. package/app/hooks/use-sort-urls.test.js +42 -0
  202. package/app/hooks/use-toast.js +68 -0
  203. package/app/hooks/use-toast.test.js +58 -0
  204. package/app/hooks/use-variant.js +32 -0
  205. package/app/hooks/use-variant.test.js +81 -0
  206. package/app/hooks/use-variation-attributes.js +138 -0
  207. package/app/hooks/use-variation-attributes.test.js +119 -0
  208. package/app/hooks/use-variation-params.js +31 -0
  209. package/app/hooks/use-variation-params.test.js +73 -0
  210. package/app/hooks/use-wish-list.js +42 -0
  211. package/app/main.jsx +14 -0
  212. package/app/mocks/basket-with-suit.js +146 -0
  213. package/app/mocks/empty-basket.js +39 -0
  214. package/app/mocks/mock-data.js +5632 -0
  215. package/app/mocks/product-set-winter-lookM.js +1224 -0
  216. package/app/mocks/searchResults.js +144 -0
  217. package/app/mocks/variant-750518699578M.js +434 -0
  218. package/app/page-designer/README.md +102 -0
  219. package/app/page-designer/assets/image-tile/index.jsx +51 -0
  220. package/app/page-designer/assets/image-tile/index.test.js +30 -0
  221. package/app/page-designer/assets/image-with-text/index.jsx +140 -0
  222. package/app/page-designer/assets/image-with-text/index.test.js +38 -0
  223. package/app/page-designer/assets/index.js +9 -0
  224. package/app/page-designer/index.js +10 -0
  225. package/app/page-designer/layouts/carousel/index.jsx +222 -0
  226. package/app/page-designer/layouts/carousel/index.test.js +43 -0
  227. package/app/page-designer/layouts/index.js +14 -0
  228. package/app/page-designer/layouts/mobileGrid1r1c/index.jsx +36 -0
  229. package/app/page-designer/layouts/mobileGrid1r1c/index.test.js +35 -0
  230. package/app/page-designer/layouts/mobileGrid2r1c/index.jsx +37 -0
  231. package/app/page-designer/layouts/mobileGrid2r1c/index.test.js +47 -0
  232. package/app/page-designer/layouts/mobileGrid2r2c/index.jsx +37 -0
  233. package/app/page-designer/layouts/mobileGrid2r2c/index.test.js +71 -0
  234. package/app/page-designer/layouts/mobileGrid2r3c/index.jsx +37 -0
  235. package/app/page-designer/layouts/mobileGrid2r3c/index.test.js +95 -0
  236. package/app/page-designer/layouts/mobileGrid3r1c/index.jsx +37 -0
  237. package/app/page-designer/layouts/mobileGrid3r1c/index.test.js +59 -0
  238. package/app/page-designer/layouts/mobileGrid3r2c/index.jsx +37 -0
  239. package/app/page-designer/layouts/mobileGrid3r2c/index.test.js +95 -0
  240. package/app/page-designer/utils.js +14 -0
  241. package/app/pages/account/addresses.jsx +382 -0
  242. package/app/pages/account/addresses.test.js +120 -0
  243. package/app/pages/account/constant.js +57 -0
  244. package/app/pages/account/index.jsx +237 -0
  245. package/app/pages/account/index.test.js +188 -0
  246. package/app/pages/account/order-detail.jsx +397 -0
  247. package/app/pages/account/order-history.jsx +264 -0
  248. package/app/pages/account/orders.jsx +30 -0
  249. package/app/pages/account/orders.test.js +95 -0
  250. package/app/pages/account/profile.jsx +357 -0
  251. package/app/pages/account/wishlist/index.jsx +195 -0
  252. package/app/pages/account/wishlist/index.mock.js +1481 -0
  253. package/app/pages/account/wishlist/index.test.js +56 -0
  254. package/app/pages/account/wishlist/partials/wishlist-primary-action.jsx +170 -0
  255. package/app/pages/account/wishlist/partials/wishlist-primary-action.mock.js +1623 -0
  256. package/app/pages/account/wishlist/partials/wishlist-primary-action.test.js +99 -0
  257. package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.jsx +120 -0
  258. package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.test.js +391 -0
  259. package/app/pages/cart/index.jsx +476 -0
  260. package/app/pages/cart/index.test.js +481 -0
  261. package/app/pages/cart/partials/cart-cta.jsx +46 -0
  262. package/app/pages/cart/partials/cart-secondary-button-group.jsx +135 -0
  263. package/app/pages/cart/partials/cart-secondary-button-group.test.js +103 -0
  264. package/app/pages/cart/partials/cart-skeleton.jsx +93 -0
  265. package/app/pages/cart/partials/cart-title.jsx +27 -0
  266. package/app/pages/cart/partials/empty-cart.jsx +86 -0
  267. package/app/pages/checkout/confirmation.jsx +541 -0
  268. package/app/pages/checkout/confirmation.mock.js +450 -0
  269. package/app/pages/checkout/confirmation.test.js +114 -0
  270. package/app/pages/checkout/index.jsx +169 -0
  271. package/app/pages/checkout/index.test.js +582 -0
  272. package/app/pages/checkout/partials/cc-radio-group.jsx +122 -0
  273. package/app/pages/checkout/partials/checkout-footer.jsx +140 -0
  274. package/app/pages/checkout/partials/checkout-footer.test.js +16 -0
  275. package/app/pages/checkout/partials/checkout-header.jsx +54 -0
  276. package/app/pages/checkout/partials/checkout-header.test.js +16 -0
  277. package/app/pages/checkout/partials/checkout-skeleton.jsx +52 -0
  278. package/app/pages/checkout/partials/contact-info.jsx +251 -0
  279. package/app/pages/checkout/partials/contact-info.test.js +43 -0
  280. package/app/pages/checkout/partials/payment-form.jsx +97 -0
  281. package/app/pages/checkout/partials/payment.jsx +276 -0
  282. package/app/pages/checkout/partials/shipping-address-selection.jsx +377 -0
  283. package/app/pages/checkout/partials/shipping-address.jsx +132 -0
  284. package/app/pages/checkout/partials/shipping-options.jsx +232 -0
  285. package/app/pages/checkout/util/checkout-context.js +94 -0
  286. package/app/pages/home/data.js +134 -0
  287. package/app/pages/home/index.jsx +301 -0
  288. package/app/pages/home/index.test.js +23 -0
  289. package/app/pages/login/index.jsx +123 -0
  290. package/app/pages/login/index.test.js +229 -0
  291. package/app/pages/login-redirect/index.jsx +23 -0
  292. package/app/pages/login-redirect/index.test.js +16 -0
  293. package/app/pages/page-not-found/index.jsx +90 -0
  294. package/app/pages/page-not-found/index.test.js +31 -0
  295. package/app/pages/product-detail/index.jsx +394 -0
  296. package/app/pages/product-detail/index.mock.js +197 -0
  297. package/app/pages/product-detail/index.test.js +162 -0
  298. package/app/pages/product-detail/partials/information-accordion.jsx +121 -0
  299. package/app/pages/product-list/index.jsx +735 -0
  300. package/app/pages/product-list/index.test.js +180 -0
  301. package/app/pages/product-list/partials/above-page-header.jsx +10 -0
  302. package/app/pages/product-list/partials/checkbox-refinements.jsx +41 -0
  303. package/app/pages/product-list/partials/checkbox-refinements.test.js +53 -0
  304. package/app/pages/product-list/partials/color-refinements.jsx +88 -0
  305. package/app/pages/product-list/partials/empty-results.jsx +118 -0
  306. package/app/pages/product-list/partials/link-refinements.jsx +38 -0
  307. package/app/pages/product-list/partials/page-header.jsx +42 -0
  308. package/app/pages/product-list/partials/radio-refinements.jsx +60 -0
  309. package/app/pages/product-list/partials/refinements.jsx +144 -0
  310. package/app/pages/product-list/partials/selected-refinements.jsx +100 -0
  311. package/app/pages/product-list/partials/size-refinements.jsx +55 -0
  312. package/app/pages/registration/index.jsx +87 -0
  313. package/app/pages/registration/index.test.jsx +132 -0
  314. package/app/pages/reset-password/index.jsx +112 -0
  315. package/app/pages/reset-password/index.test.jsx +141 -0
  316. package/app/request-processor.js +118 -0
  317. package/app/request-processor.test.js +23 -0
  318. package/app/routes.jsx +111 -0
  319. package/app/routes.test.js +13 -0
  320. package/app/ssr.js +70 -0
  321. package/app/static/ico/favicon.ico +0 -0
  322. package/app/static/img/global/app-icon-192.png +0 -0
  323. package/app/static/img/global/app-icon-512.png +0 -0
  324. package/app/static/img/global/apple-touch-icon.png +0 -0
  325. package/app/static/img/hero.png +0 -0
  326. package/app/static/manifest.json +19 -0
  327. package/app/static/robots.txt +2 -0
  328. package/app/theme/components/base/accordion.js +21 -0
  329. package/app/theme/components/base/alert.js +17 -0
  330. package/app/theme/components/base/badge.js +25 -0
  331. package/app/theme/components/base/button.js +77 -0
  332. package/app/theme/components/base/checkbox.js +30 -0
  333. package/app/theme/components/base/container.js +17 -0
  334. package/app/theme/components/base/drawer.js +26 -0
  335. package/app/theme/components/base/formLabel.js +13 -0
  336. package/app/theme/components/base/icon.js +13 -0
  337. package/app/theme/components/base/input.js +44 -0
  338. package/app/theme/components/base/modal.js +11 -0
  339. package/app/theme/components/base/popover.js +61 -0
  340. package/app/theme/components/base/radio.js +33 -0
  341. package/app/theme/components/base/select.js +15 -0
  342. package/app/theme/components/base/skeleton.js +12 -0
  343. package/app/theme/components/base/tooltip.js +19 -0
  344. package/app/theme/components/project/_app.js +25 -0
  345. package/app/theme/components/project/breadcrumb.js +25 -0
  346. package/app/theme/components/project/checkout-footer.js +35 -0
  347. package/app/theme/components/project/drawer-menu.js +66 -0
  348. package/app/theme/components/project/footer.js +84 -0
  349. package/app/theme/components/project/header.js +84 -0
  350. package/app/theme/components/project/image-gallery.js +59 -0
  351. package/app/theme/components/project/links-list.js +43 -0
  352. package/app/theme/components/project/list-menu.js +91 -0
  353. package/app/theme/components/project/locale-selector.js +42 -0
  354. package/app/theme/components/project/nested-accordion.js +26 -0
  355. package/app/theme/components/project/offline-banner.js +25 -0
  356. package/app/theme/components/project/pagination.js +22 -0
  357. package/app/theme/components/project/product-tile.js +32 -0
  358. package/app/theme/components/project/social-icons.js +52 -0
  359. package/app/theme/components/project/swatch-group.js +115 -0
  360. package/app/theme/foundations/colors.js +170 -0
  361. package/app/theme/foundations/gradients.js +9 -0
  362. package/app/theme/foundations/layerStyles.js +41 -0
  363. package/app/theme/foundations/shadows.js +9 -0
  364. package/app/theme/foundations/sizes.js +18 -0
  365. package/app/theme/foundations/space.js +9 -0
  366. package/app/theme/foundations/styles.js +21 -0
  367. package/app/theme/index.js +104 -0
  368. package/app/utils/cc-utils.js +112 -0
  369. package/app/utils/cc-utils.test.js +41 -0
  370. package/app/utils/image-groups-utils.js +62 -0
  371. package/app/utils/image-groups-utils.test.js +65 -0
  372. package/app/utils/locale.js +78 -0
  373. package/app/utils/locale.test.js +112 -0
  374. package/app/utils/password-utils.js +21 -0
  375. package/app/utils/phone-utils.js +22 -0
  376. package/app/utils/phone-utils.test.js +15 -0
  377. package/app/utils/product-utils.js +35 -0
  378. package/app/utils/product-utils.test.js +51 -0
  379. package/app/utils/responsive-image.js +198 -0
  380. package/app/utils/responsive-image.test.js +170 -0
  381. package/app/utils/routes-utils.js +111 -0
  382. package/app/utils/routes-utils.test.js +291 -0
  383. package/app/utils/site-utils.js +222 -0
  384. package/app/utils/site-utils.test.js +376 -0
  385. package/app/utils/test-utils.js +257 -0
  386. package/app/utils/url.js +291 -0
  387. package/app/utils/url.test.js +421 -0
  388. package/app/utils/utils.js +201 -0
  389. package/app/utils/utils.test.js +182 -0
  390. package/babel.config.js +7 -0
  391. package/cache-hash-config.json +8 -0
  392. package/config/default.js +64 -0
  393. package/config/mocks/default.js +131 -0
  394. package/config/sites.js +78 -0
  395. package/jest-setup.js +191 -0
  396. package/jest.config.js +50 -0
  397. package/jsconfig.json +13 -0
  398. package/package.json +105 -0
  399. package/scripts/extract-default-messages.js +92 -0
  400. package/tests/lighthouserc.js +37 -0
  401. package/translations/README.md +127 -0
  402. package/translations/compiled/de-DE.json +3212 -0
  403. package/translations/compiled/en-GB.json +3212 -0
  404. package/translations/compiled/en-US.json +3212 -0
  405. package/translations/compiled/en-XA.json +6948 -0
  406. package/translations/compiled/es-MX.json +3216 -0
  407. package/translations/compiled/fr-FR.json +3216 -0
  408. package/translations/compiled/it-IT.json +3188 -0
  409. package/translations/compiled/ja-JP.json +3200 -0
  410. package/translations/compiled/ko-KR.json +3180 -0
  411. package/translations/compiled/pt-BR.json +3220 -0
  412. package/translations/compiled/zh-CN.json +3212 -0
  413. package/translations/compiled/zh-TW.json +3208 -0
  414. package/translations/de-DE.json +1417 -0
  415. package/translations/en-GB.json +1417 -0
  416. package/translations/en-US.json +1417 -0
  417. package/translations/es-MX.json +1417 -0
  418. package/translations/fr-FR.json +1417 -0
  419. package/translations/it-IT.json +1417 -0
  420. package/translations/ja-JP.json +1417 -0
  421. package/translations/ko-KR.json +1417 -0
  422. package/translations/pt-BR.json +1417 -0
  423. package/translations/zh-CN.json +1417 -0
  424. package/translations/zh-TW.json +1417 -0
  425. package/worker/main.js +36 -0
@@ -0,0 +1,3220 @@
1
+ {
2
+ "account.accordion.button.my_account": [
3
+ {
4
+ "type": 0,
5
+ "value": "Minha conta"
6
+ }
7
+ ],
8
+ "account.heading.my_account": [
9
+ {
10
+ "type": 0,
11
+ "value": "Minha conta"
12
+ }
13
+ ],
14
+ "account.logout_button.button.log_out": [
15
+ {
16
+ "type": 0,
17
+ "value": "Sair"
18
+ }
19
+ ],
20
+ "account_addresses.badge.default": [
21
+ {
22
+ "type": 0,
23
+ "value": "Padrão"
24
+ }
25
+ ],
26
+ "account_addresses.button.add_address": [
27
+ {
28
+ "type": 0,
29
+ "value": "Adicionar endereço"
30
+ }
31
+ ],
32
+ "account_addresses.info.address_updated": [
33
+ {
34
+ "type": 0,
35
+ "value": "Endereço atualizado"
36
+ }
37
+ ],
38
+ "account_addresses.info.new_address_saved": [
39
+ {
40
+ "type": 0,
41
+ "value": "Novo endereço salvo"
42
+ }
43
+ ],
44
+ "account_addresses.page_action_placeholder.button.add_address": [
45
+ {
46
+ "type": 0,
47
+ "value": "Adicionar endereço"
48
+ }
49
+ ],
50
+ "account_addresses.page_action_placeholder.heading.no_saved_addresses": [
51
+ {
52
+ "type": 0,
53
+ "value": "Não há endereços salvos"
54
+ }
55
+ ],
56
+ "account_addresses.page_action_placeholder.message.add_new_address": [
57
+ {
58
+ "type": 0,
59
+ "value": "Adicione um novo método de endereço para agilizar o checkout."
60
+ }
61
+ ],
62
+ "account_addresses.title.addresses": [
63
+ {
64
+ "type": 0,
65
+ "value": "Endereços"
66
+ }
67
+ ],
68
+ "account_detail.title.account_details": [
69
+ {
70
+ "type": 0,
71
+ "value": "Detalhes da conta"
72
+ }
73
+ ],
74
+ "account_order_detail.heading.billing_address": [
75
+ {
76
+ "type": 0,
77
+ "value": "Endereço de cobrança"
78
+ }
79
+ ],
80
+ "account_order_detail.heading.num_of_items": [
81
+ {
82
+ "type": 1,
83
+ "value": "count"
84
+ },
85
+ {
86
+ "type": 0,
87
+ "value": " itens"
88
+ }
89
+ ],
90
+ "account_order_detail.heading.payment_method": [
91
+ {
92
+ "type": 0,
93
+ "value": "Método de pagamento"
94
+ }
95
+ ],
96
+ "account_order_detail.heading.shipping_address": [
97
+ {
98
+ "type": 0,
99
+ "value": "Endereço de entrega"
100
+ }
101
+ ],
102
+ "account_order_detail.heading.shipping_method": [
103
+ {
104
+ "type": 0,
105
+ "value": "Método de entrega"
106
+ }
107
+ ],
108
+ "account_order_detail.label.order_number": [
109
+ {
110
+ "type": 0,
111
+ "value": "Número do pedido: "
112
+ },
113
+ {
114
+ "type": 1,
115
+ "value": "orderNumber"
116
+ }
117
+ ],
118
+ "account_order_detail.label.ordered_date": [
119
+ {
120
+ "type": 0,
121
+ "value": "Pedido: "
122
+ },
123
+ {
124
+ "type": 1,
125
+ "value": "date"
126
+ }
127
+ ],
128
+ "account_order_detail.label.pending_tracking_number": [
129
+ {
130
+ "type": 0,
131
+ "value": "Pendente"
132
+ }
133
+ ],
134
+ "account_order_detail.label.tracking_number": [
135
+ {
136
+ "type": 0,
137
+ "value": "Número de controle"
138
+ }
139
+ ],
140
+ "account_order_detail.link.back_to_history": [
141
+ {
142
+ "type": 0,
143
+ "value": "Voltar a Histórico de pedidos"
144
+ }
145
+ ],
146
+ "account_order_detail.title.order_details": [
147
+ {
148
+ "type": 0,
149
+ "value": "Detalhes do pedido"
150
+ }
151
+ ],
152
+ "account_order_history.button.continue_shopping": [
153
+ {
154
+ "type": 0,
155
+ "value": "Continuar comprando"
156
+ }
157
+ ],
158
+ "account_order_history.description.once_you_place_order": [
159
+ {
160
+ "type": 0,
161
+ "value": "Quando você faz um pedido, os detalhes aparecem aqui."
162
+ }
163
+ ],
164
+ "account_order_history.heading.no_order_yet": [
165
+ {
166
+ "type": 0,
167
+ "value": "Você ainda não fez um pedido."
168
+ }
169
+ ],
170
+ "account_order_history.label.num_of_items": [
171
+ {
172
+ "type": 1,
173
+ "value": "count"
174
+ },
175
+ {
176
+ "type": 0,
177
+ "value": " itens"
178
+ }
179
+ ],
180
+ "account_order_history.label.order_number": [
181
+ {
182
+ "type": 0,
183
+ "value": "Número do pedido: "
184
+ },
185
+ {
186
+ "type": 1,
187
+ "value": "orderNumber"
188
+ }
189
+ ],
190
+ "account_order_history.label.ordered_date": [
191
+ {
192
+ "type": 0,
193
+ "value": "Pedido: "
194
+ },
195
+ {
196
+ "type": 1,
197
+ "value": "date"
198
+ }
199
+ ],
200
+ "account_order_history.label.shipped_to": [
201
+ {
202
+ "type": 0,
203
+ "value": "Enviado para: "
204
+ },
205
+ {
206
+ "type": 1,
207
+ "value": "name"
208
+ }
209
+ ],
210
+ "account_order_history.link.view_details": [
211
+ {
212
+ "type": 0,
213
+ "value": "Ver detalhes"
214
+ }
215
+ ],
216
+ "account_order_history.title.order_history": [
217
+ {
218
+ "type": 0,
219
+ "value": "Histórico de pedidos"
220
+ }
221
+ ],
222
+ "account_payment_methods.button.add_method": [
223
+ {
224
+ "type": 0,
225
+ "value": "Adicionar método de pagamento"
226
+ }
227
+ ],
228
+ "account_payment_methods.description.add_method_for_faster_checkout": [
229
+ {
230
+ "type": 0,
231
+ "value": "Adicione um novo método de pagamento para agilizar o checkout."
232
+ }
233
+ ],
234
+ "account_payment_methods.heading.no_saved_methods": [
235
+ {
236
+ "type": 0,
237
+ "value": "Não há métodos de pagamento salvos"
238
+ }
239
+ ],
240
+ "account_payment_methods.info.new_method_saved": [
241
+ {
242
+ "type": 0,
243
+ "value": "Novo método de pagamento salvo"
244
+ }
245
+ ],
246
+ "account_payment_methods.title.payment_methods": [
247
+ {
248
+ "type": 0,
249
+ "value": "Métodos de pagamento"
250
+ }
251
+ ],
252
+ "account_wishlist.button.continue_shopping": [
253
+ {
254
+ "type": 0,
255
+ "value": "Continuar comprando"
256
+ }
257
+ ],
258
+ "account_wishlist.description.continue_shopping": [
259
+ {
260
+ "type": 0,
261
+ "value": "Continue comprando e adicionando itens na sua lista de desejos."
262
+ }
263
+ ],
264
+ "account_wishlist.heading.no_wishlist": [
265
+ {
266
+ "type": 0,
267
+ "value": "Não há itens na lista de desejos"
268
+ }
269
+ ],
270
+ "account_wishlist.title.wishlist": [
271
+ {
272
+ "type": 0,
273
+ "value": "Lista de desejos"
274
+ }
275
+ ],
276
+ "action_card.action.edit": [
277
+ {
278
+ "type": 0,
279
+ "value": "Editar"
280
+ }
281
+ ],
282
+ "action_card.action.remove": [
283
+ {
284
+ "type": 0,
285
+ "value": "Remover"
286
+ }
287
+ ],
288
+ "add_to_cart_modal.info.added_to_cart": [
289
+ {
290
+ "type": 1,
291
+ "value": "quantity"
292
+ },
293
+ {
294
+ "type": 0,
295
+ "value": " "
296
+ },
297
+ {
298
+ "offset": 0,
299
+ "options": {
300
+ "one": {
301
+ "value": [
302
+ {
303
+ "type": 0,
304
+ "value": "item"
305
+ }
306
+ ]
307
+ },
308
+ "other": {
309
+ "value": [
310
+ {
311
+ "type": 0,
312
+ "value": "itens"
313
+ }
314
+ ]
315
+ }
316
+ },
317
+ "pluralType": "cardinal",
318
+ "type": 6,
319
+ "value": "quantity"
320
+ },
321
+ {
322
+ "type": 0,
323
+ "value": " adicionado(s) ao carrinho"
324
+ }
325
+ ],
326
+ "add_to_cart_modal.label.cart_subtotal": [
327
+ {
328
+ "type": 0,
329
+ "value": "Subtotal do carrinho ("
330
+ },
331
+ {
332
+ "type": 1,
333
+ "value": "itemAccumulatedCount"
334
+ },
335
+ {
336
+ "type": 0,
337
+ "value": " item/itens)"
338
+ }
339
+ ],
340
+ "add_to_cart_modal.label.quantity": [
341
+ {
342
+ "type": 0,
343
+ "value": "Qtd."
344
+ }
345
+ ],
346
+ "add_to_cart_modal.link.checkout": [
347
+ {
348
+ "type": 0,
349
+ "value": "Pagar"
350
+ }
351
+ ],
352
+ "add_to_cart_modal.link.view_cart": [
353
+ {
354
+ "type": 0,
355
+ "value": "Ver carrinho"
356
+ }
357
+ ],
358
+ "add_to_cart_modal.recommended_products.title.might_also_like": [
359
+ {
360
+ "type": 0,
361
+ "value": "Talvez você também queira"
362
+ }
363
+ ],
364
+ "auth_modal.description.now_signed_in": [
365
+ {
366
+ "type": 0,
367
+ "value": "Agora você fez login na sua conta."
368
+ }
369
+ ],
370
+ "auth_modal.error.incorrect_email_or_password": [
371
+ {
372
+ "type": 0,
373
+ "value": "Há algo errado com seu e-mail ou senha. Tente novamente."
374
+ }
375
+ ],
376
+ "auth_modal.info.welcome_user": [
377
+ {
378
+ "type": 0,
379
+ "value": "Olá "
380
+ },
381
+ {
382
+ "type": 1,
383
+ "value": "name"
384
+ },
385
+ {
386
+ "type": 0,
387
+ "value": ","
388
+ }
389
+ ],
390
+ "auth_modal.password_reset_success.button.back_to_sign_in": [
391
+ {
392
+ "type": 0,
393
+ "value": "Fazer login novamente"
394
+ }
395
+ ],
396
+ "auth_modal.password_reset_success.info.will_email_shortly": [
397
+ {
398
+ "type": 0,
399
+ "value": "Em breve, você receberá um e-mail em "
400
+ },
401
+ {
402
+ "children": [
403
+ {
404
+ "type": 1,
405
+ "value": "email"
406
+ }
407
+ ],
408
+ "type": 8,
409
+ "value": "b"
410
+ },
411
+ {
412
+ "type": 0,
413
+ "value": " com um link para redefinir a senha."
414
+ }
415
+ ],
416
+ "auth_modal.password_reset_success.title.password_reset": [
417
+ {
418
+ "type": 0,
419
+ "value": "Redefinição de senha"
420
+ }
421
+ ],
422
+ "card_payment_form.heading.new_payment_method": [
423
+ {
424
+ "type": 0,
425
+ "value": "Adicionar novo método de pagamento"
426
+ }
427
+ ],
428
+ "cart.info.removed_from_cart": [
429
+ {
430
+ "type": 0,
431
+ "value": "Item removido do carrinho"
432
+ }
433
+ ],
434
+ "cart.recommended_products.title.may_also_like": [
435
+ {
436
+ "type": 0,
437
+ "value": "Talvez você também queira"
438
+ }
439
+ ],
440
+ "cart.recommended_products.title.recently_viewed": [
441
+ {
442
+ "type": 0,
443
+ "value": "Recentemente visualizados"
444
+ }
445
+ ],
446
+ "cart_cta.link.checkout": [
447
+ {
448
+ "type": 0,
449
+ "value": "Pagar"
450
+ }
451
+ ],
452
+ "cart_secondary_button_group.action.added_to_wishlist": [
453
+ {
454
+ "type": 0,
455
+ "value": "Adicionar à lista de desejos"
456
+ }
457
+ ],
458
+ "cart_secondary_button_group.action.edit": [
459
+ {
460
+ "type": 0,
461
+ "value": "Editar"
462
+ }
463
+ ],
464
+ "cart_secondary_button_group.action.remove": [
465
+ {
466
+ "type": 0,
467
+ "value": "Remover"
468
+ }
469
+ ],
470
+ "cart_secondary_button_group.label.this_is_gift": [
471
+ {
472
+ "type": 0,
473
+ "value": "É um presente."
474
+ }
475
+ ],
476
+ "cart_secondary_button_group.link_learn_more": [
477
+ {
478
+ "type": 0,
479
+ "value": "Saiba mais"
480
+ }
481
+ ],
482
+ "cart_skeleton.heading.order_summary": [
483
+ {
484
+ "type": 0,
485
+ "value": "Resumo do pedido"
486
+ }
487
+ ],
488
+ "cart_skeleton.title.cart": [
489
+ {
490
+ "type": 0,
491
+ "value": "Carrinho"
492
+ }
493
+ ],
494
+ "cart_title.title.cart_num_of_items": [
495
+ {
496
+ "type": 0,
497
+ "value": "Carrinho ("
498
+ },
499
+ {
500
+ "offset": 0,
501
+ "options": {
502
+ "=0": {
503
+ "value": [
504
+ {
505
+ "type": 0,
506
+ "value": "0 itens"
507
+ }
508
+ ]
509
+ },
510
+ "one": {
511
+ "value": [
512
+ {
513
+ "type": 7
514
+ },
515
+ {
516
+ "type": 0,
517
+ "value": " item"
518
+ }
519
+ ]
520
+ },
521
+ "other": {
522
+ "value": [
523
+ {
524
+ "type": 7
525
+ },
526
+ {
527
+ "type": 0,
528
+ "value": " itens"
529
+ }
530
+ ]
531
+ }
532
+ },
533
+ "pluralType": "cardinal",
534
+ "type": 6,
535
+ "value": "itemCount"
536
+ },
537
+ {
538
+ "type": 0,
539
+ "value": ")"
540
+ }
541
+ ],
542
+ "cc_radio_group.action.remove": [
543
+ {
544
+ "type": 0,
545
+ "value": "Remover"
546
+ }
547
+ ],
548
+ "cc_radio_group.button.add_new_card": [
549
+ {
550
+ "type": 0,
551
+ "value": "Adicionar novo cartão"
552
+ }
553
+ ],
554
+ "checkout.button.place_order": [
555
+ {
556
+ "type": 0,
557
+ "value": "Fazer pedido"
558
+ }
559
+ ],
560
+ "checkout.message.generic_error": [
561
+ {
562
+ "type": 0,
563
+ "value": "Ocorreu um erro inesperado durante o checkout."
564
+ }
565
+ ],
566
+ "checkout_confirmation.button.create_account": [
567
+ {
568
+ "type": 0,
569
+ "value": "Criar conta"
570
+ }
571
+ ],
572
+ "checkout_confirmation.heading.billing_address": [
573
+ {
574
+ "type": 0,
575
+ "value": "Endereço de cobrança"
576
+ }
577
+ ],
578
+ "checkout_confirmation.heading.create_account": [
579
+ {
580
+ "type": 0,
581
+ "value": "Criar uma conta para agilizar o checkout"
582
+ }
583
+ ],
584
+ "checkout_confirmation.heading.credit_card": [
585
+ {
586
+ "type": 0,
587
+ "value": "Cartão de crédito"
588
+ }
589
+ ],
590
+ "checkout_confirmation.heading.delivery_details": [
591
+ {
592
+ "type": 0,
593
+ "value": "Detalhes da entrega"
594
+ }
595
+ ],
596
+ "checkout_confirmation.heading.order_summary": [
597
+ {
598
+ "type": 0,
599
+ "value": "Resumo do pedido"
600
+ }
601
+ ],
602
+ "checkout_confirmation.heading.payment_details": [
603
+ {
604
+ "type": 0,
605
+ "value": "Detalhes do pagamento"
606
+ }
607
+ ],
608
+ "checkout_confirmation.heading.shipping_address": [
609
+ {
610
+ "type": 0,
611
+ "value": "Endereço de entrega"
612
+ }
613
+ ],
614
+ "checkout_confirmation.heading.shipping_method": [
615
+ {
616
+ "type": 0,
617
+ "value": "Método de entrega"
618
+ }
619
+ ],
620
+ "checkout_confirmation.heading.thank_you_for_order": [
621
+ {
622
+ "type": 0,
623
+ "value": "Agradecemos o seu pedido!"
624
+ }
625
+ ],
626
+ "checkout_confirmation.label.free": [
627
+ {
628
+ "type": 0,
629
+ "value": "Gratuito"
630
+ }
631
+ ],
632
+ "checkout_confirmation.label.order_number": [
633
+ {
634
+ "type": 0,
635
+ "value": "Número do pedido"
636
+ }
637
+ ],
638
+ "checkout_confirmation.label.order_total": [
639
+ {
640
+ "type": 0,
641
+ "value": "Total do pedido"
642
+ }
643
+ ],
644
+ "checkout_confirmation.label.promo_applied": [
645
+ {
646
+ "type": 0,
647
+ "value": "Promoção aplicada"
648
+ }
649
+ ],
650
+ "checkout_confirmation.label.shipping": [
651
+ {
652
+ "type": 0,
653
+ "value": "Frete"
654
+ }
655
+ ],
656
+ "checkout_confirmation.label.subtotal": [
657
+ {
658
+ "type": 0,
659
+ "value": "Subtotal"
660
+ }
661
+ ],
662
+ "checkout_confirmation.label.tax": [
663
+ {
664
+ "type": 0,
665
+ "value": "Imposto"
666
+ }
667
+ ],
668
+ "checkout_confirmation.link.continue_shopping": [
669
+ {
670
+ "type": 0,
671
+ "value": "Continuar comprando"
672
+ }
673
+ ],
674
+ "checkout_confirmation.link.login": [
675
+ {
676
+ "type": 0,
677
+ "value": "Fazer logon aqui"
678
+ }
679
+ ],
680
+ "checkout_confirmation.message.already_has_account": [
681
+ {
682
+ "type": 0,
683
+ "value": "Já há uma conta com este mesmo endereço de e-mail."
684
+ }
685
+ ],
686
+ "checkout_confirmation.message.num_of_items_in_order": [
687
+ {
688
+ "offset": 0,
689
+ "options": {
690
+ "=0": {
691
+ "value": [
692
+ {
693
+ "type": 0,
694
+ "value": "0 itens"
695
+ }
696
+ ]
697
+ },
698
+ "one": {
699
+ "value": [
700
+ {
701
+ "type": 7
702
+ },
703
+ {
704
+ "type": 0,
705
+ "value": " item"
706
+ }
707
+ ]
708
+ },
709
+ "other": {
710
+ "value": [
711
+ {
712
+ "type": 7
713
+ },
714
+ {
715
+ "type": 0,
716
+ "value": " itens"
717
+ }
718
+ ]
719
+ }
720
+ },
721
+ "pluralType": "cardinal",
722
+ "type": 6,
723
+ "value": "itemCount"
724
+ },
725
+ {
726
+ "type": 0,
727
+ "value": ")"
728
+ }
729
+ ],
730
+ "checkout_confirmation.message.will_email_shortly": [
731
+ {
732
+ "type": 0,
733
+ "value": "Em breve, enviaremos um e-mail para "
734
+ },
735
+ {
736
+ "children": [
737
+ {
738
+ "type": 1,
739
+ "value": "email"
740
+ }
741
+ ],
742
+ "type": 8,
743
+ "value": "b"
744
+ },
745
+ {
746
+ "type": 0,
747
+ "value": " com seu número de confirmação e recibo."
748
+ }
749
+ ],
750
+ "checkout_footer.link.privacy_policy": [
751
+ {
752
+ "type": 0,
753
+ "value": "Política de privacidade"
754
+ }
755
+ ],
756
+ "checkout_footer.link.returns_exchanges": [
757
+ {
758
+ "type": 0,
759
+ "value": "Devoluções e trocas"
760
+ }
761
+ ],
762
+ "checkout_footer.link.shipping": [
763
+ {
764
+ "type": 0,
765
+ "value": "Frete"
766
+ }
767
+ ],
768
+ "checkout_footer.link.site_map": [
769
+ {
770
+ "type": 0,
771
+ "value": "Mapa do site"
772
+ }
773
+ ],
774
+ "checkout_footer.link.terms_conditions": [
775
+ {
776
+ "type": 0,
777
+ "value": "Termos e condições"
778
+ }
779
+ ],
780
+ "checkout_footer.message.copyright": [
781
+ {
782
+ "type": 0,
783
+ "value": "Salesforce ou suas afiliadas. Todos os direitos reservados. Esta é apenas uma loja de demonstração. Os pedidos feitos NÃO SERÃO processados."
784
+ }
785
+ ],
786
+ "checkout_header.link.cart": [
787
+ {
788
+ "type": 0,
789
+ "value": "Voltar ao carrinho"
790
+ }
791
+ ],
792
+ "checkout_payment.action.remove": [
793
+ {
794
+ "type": 0,
795
+ "value": "Remover"
796
+ }
797
+ ],
798
+ "checkout_payment.button.review_order": [
799
+ {
800
+ "type": 0,
801
+ "value": "Rever pedido"
802
+ }
803
+ ],
804
+ "checkout_payment.heading.billing_address": [
805
+ {
806
+ "type": 0,
807
+ "value": "Endereço de cobrança"
808
+ }
809
+ ],
810
+ "checkout_payment.heading.credit_card": [
811
+ {
812
+ "type": 0,
813
+ "value": "Cartão de crédito"
814
+ }
815
+ ],
816
+ "checkout_payment.label.same_as_shipping": [
817
+ {
818
+ "type": 0,
819
+ "value": "Igual ao endereço de entrega"
820
+ }
821
+ ],
822
+ "checkout_payment.title.payment": [
823
+ {
824
+ "type": 0,
825
+ "value": "Pagamento"
826
+ }
827
+ ],
828
+ "confirmation_modal.default.action.no": [
829
+ {
830
+ "type": 0,
831
+ "value": "Não"
832
+ }
833
+ ],
834
+ "confirmation_modal.default.action.yes": [
835
+ {
836
+ "type": 0,
837
+ "value": "Sim"
838
+ }
839
+ ],
840
+ "confirmation_modal.default.message.you_want_to_continue": [
841
+ {
842
+ "type": 0,
843
+ "value": "Tem certeza de que deseja continuar?"
844
+ }
845
+ ],
846
+ "confirmation_modal.default.title.confirm_action": [
847
+ {
848
+ "type": 0,
849
+ "value": "Confirmar ação"
850
+ }
851
+ ],
852
+ "confirmation_modal.remove_cart_item.action.no": [
853
+ {
854
+ "type": 0,
855
+ "value": "Não, manter item"
856
+ }
857
+ ],
858
+ "confirmation_modal.remove_cart_item.action.yes": [
859
+ {
860
+ "type": 0,
861
+ "value": "Sim, remover item"
862
+ }
863
+ ],
864
+ "confirmation_modal.remove_cart_item.message.sure_to_remove": [
865
+ {
866
+ "type": 0,
867
+ "value": "Tem certeza de que deseja remover este item do carrinho?"
868
+ }
869
+ ],
870
+ "confirmation_modal.remove_cart_item.title.confirm_remove": [
871
+ {
872
+ "type": 0,
873
+ "value": "Confirmar remoção do item"
874
+ }
875
+ ],
876
+ "confirmation_modal.remove_wishlist_item.action.no": [
877
+ {
878
+ "type": 0,
879
+ "value": "Não, manter item"
880
+ }
881
+ ],
882
+ "confirmation_modal.remove_wishlist_item.action.yes": [
883
+ {
884
+ "type": 0,
885
+ "value": "Sim, remover item"
886
+ }
887
+ ],
888
+ "confirmation_modal.remove_wishlist_item.message.sure_to_remove": [
889
+ {
890
+ "type": 0,
891
+ "value": "Tem certeza de que deseja remover este item da lista de desejos?"
892
+ }
893
+ ],
894
+ "confirmation_modal.remove_wishlist_item.title.confirm_remove": [
895
+ {
896
+ "type": 0,
897
+ "value": "Confirmar remoção do item"
898
+ }
899
+ ],
900
+ "contact_info.action.sign_out": [
901
+ {
902
+ "type": 0,
903
+ "value": "Fazer logoff"
904
+ }
905
+ ],
906
+ "contact_info.button.already_have_account": [
907
+ {
908
+ "type": 0,
909
+ "value": "Já tem uma conta? Fazer logon"
910
+ }
911
+ ],
912
+ "contact_info.button.checkout_as_guest": [
913
+ {
914
+ "type": 0,
915
+ "value": "Pagar como convidado"
916
+ }
917
+ ],
918
+ "contact_info.button.login": [
919
+ {
920
+ "type": 0,
921
+ "value": "Fazer logon"
922
+ }
923
+ ],
924
+ "contact_info.error.incorrect_username_or_password": [
925
+ {
926
+ "type": 0,
927
+ "value": "Nome de usuário ou senha incorreta. Tente novamente."
928
+ }
929
+ ],
930
+ "contact_info.link.forgot_password": [
931
+ {
932
+ "type": 0,
933
+ "value": "Esqueceu a senha?"
934
+ }
935
+ ],
936
+ "contact_info.title.contact_info": [
937
+ {
938
+ "type": 0,
939
+ "value": "Informações de contato"
940
+ }
941
+ ],
942
+ "credit_card_fields.tool_tip.security_code": [
943
+ {
944
+ "type": 0,
945
+ "value": "Este código de 3 dígitos pode ser encontrado no verso do seu cartão."
946
+ }
947
+ ],
948
+ "credit_card_fields.tool_tip.security_code.american_express": [
949
+ {
950
+ "type": 0,
951
+ "value": "Este código de 4 dígitos pode ser encontrado na frente do seu cartão."
952
+ }
953
+ ],
954
+ "drawer_menu.button.account_details": [
955
+ {
956
+ "type": 0,
957
+ "value": "Detalhes da conta"
958
+ }
959
+ ],
960
+ "drawer_menu.button.addresses": [
961
+ {
962
+ "type": 0,
963
+ "value": "Endereços"
964
+ }
965
+ ],
966
+ "drawer_menu.button.log_out": [
967
+ {
968
+ "type": 0,
969
+ "value": "Sair"
970
+ }
971
+ ],
972
+ "drawer_menu.button.my_account": [
973
+ {
974
+ "type": 0,
975
+ "value": "Minha conta"
976
+ }
977
+ ],
978
+ "drawer_menu.button.order_history": [
979
+ {
980
+ "type": 0,
981
+ "value": "Histórico de pedidos"
982
+ }
983
+ ],
984
+ "drawer_menu.button.payment_methods": [
985
+ {
986
+ "type": 0,
987
+ "value": "Métodos de pagamento"
988
+ }
989
+ ],
990
+ "drawer_menu.link.about_us": [
991
+ {
992
+ "type": 0,
993
+ "value": "Sobre nós"
994
+ }
995
+ ],
996
+ "drawer_menu.link.customer_support": [
997
+ {
998
+ "type": 0,
999
+ "value": "Suporte ao cliente"
1000
+ }
1001
+ ],
1002
+ "drawer_menu.link.customer_support.contact_us": [
1003
+ {
1004
+ "type": 0,
1005
+ "value": "Entrar em contato"
1006
+ }
1007
+ ],
1008
+ "drawer_menu.link.customer_support.shipping_and_returns": [
1009
+ {
1010
+ "type": 0,
1011
+ "value": "Frete e devoluções"
1012
+ }
1013
+ ],
1014
+ "drawer_menu.link.our_company": [
1015
+ {
1016
+ "type": 0,
1017
+ "value": "Nossa empresa"
1018
+ }
1019
+ ],
1020
+ "drawer_menu.link.privacy_and_security": [
1021
+ {
1022
+ "type": 0,
1023
+ "value": "Privacidade e segurança"
1024
+ }
1025
+ ],
1026
+ "drawer_menu.link.privacy_policy": [
1027
+ {
1028
+ "type": 0,
1029
+ "value": "Política de privacidade"
1030
+ }
1031
+ ],
1032
+ "drawer_menu.link.shop_all": [
1033
+ {
1034
+ "type": 0,
1035
+ "value": "Ver tudo"
1036
+ }
1037
+ ],
1038
+ "drawer_menu.link.sign_in": [
1039
+ {
1040
+ "type": 0,
1041
+ "value": "Fazer logon"
1042
+ }
1043
+ ],
1044
+ "drawer_menu.link.site_map": [
1045
+ {
1046
+ "type": 0,
1047
+ "value": "Mapa do site"
1048
+ }
1049
+ ],
1050
+ "drawer_menu.link.store_locator": [
1051
+ {
1052
+ "type": 0,
1053
+ "value": "Localizador de lojas"
1054
+ }
1055
+ ],
1056
+ "drawer_menu.link.terms_and_conditions": [
1057
+ {
1058
+ "type": 0,
1059
+ "value": "Termos e condições"
1060
+ }
1061
+ ],
1062
+ "empty_cart.description.empty_cart": [
1063
+ {
1064
+ "type": 0,
1065
+ "value": "Seu carrinho está vazio."
1066
+ }
1067
+ ],
1068
+ "empty_cart.link.continue_shopping": [
1069
+ {
1070
+ "type": 0,
1071
+ "value": "Continuar comprando"
1072
+ }
1073
+ ],
1074
+ "empty_cart.link.sign_in": [
1075
+ {
1076
+ "type": 0,
1077
+ "value": "Fazer logon"
1078
+ }
1079
+ ],
1080
+ "empty_cart.message.continue_shopping": [
1081
+ {
1082
+ "type": 0,
1083
+ "value": "Continue comprando e adicione itens ao seu carrinho."
1084
+ }
1085
+ ],
1086
+ "empty_cart.message.sign_in_or_continue_shopping": [
1087
+ {
1088
+ "type": 0,
1089
+ "value": "Faça logon para recuperar seus itens salvos ou continuar a compra."
1090
+ }
1091
+ ],
1092
+ "empty_search_results.info.cant_find_anything_for_category": [
1093
+ {
1094
+ "type": 0,
1095
+ "value": "Não encontramos resultados para "
1096
+ },
1097
+ {
1098
+ "type": 1,
1099
+ "value": "category"
1100
+ },
1101
+ {
1102
+ "type": 0,
1103
+ "value": ". Tente pesquisar um produto ou "
1104
+ },
1105
+ {
1106
+ "type": 1,
1107
+ "value": "link"
1108
+ },
1109
+ {
1110
+ "type": 0,
1111
+ "value": "."
1112
+ }
1113
+ ],
1114
+ "empty_search_results.info.cant_find_anything_for_query": [
1115
+ {
1116
+ "type": 0,
1117
+ "value": "Não encontramos resultados para \""
1118
+ },
1119
+ {
1120
+ "type": 1,
1121
+ "value": "searchQuery"
1122
+ },
1123
+ {
1124
+ "type": 0,
1125
+ "value": "\"."
1126
+ }
1127
+ ],
1128
+ "empty_search_results.info.double_check_spelling": [
1129
+ {
1130
+ "type": 0,
1131
+ "value": "Confira a ortografia e tente novamente ou "
1132
+ },
1133
+ {
1134
+ "type": 1,
1135
+ "value": "link"
1136
+ },
1137
+ {
1138
+ "type": 0,
1139
+ "value": "."
1140
+ }
1141
+ ],
1142
+ "empty_search_results.link.contact_us": [
1143
+ {
1144
+ "type": 0,
1145
+ "value": "Entrar em contato"
1146
+ }
1147
+ ],
1148
+ "empty_search_results.recommended_products.title.most_viewed": [
1149
+ {
1150
+ "type": 0,
1151
+ "value": "Mais visto"
1152
+ }
1153
+ ],
1154
+ "empty_search_results.recommended_products.title.top_sellers": [
1155
+ {
1156
+ "type": 0,
1157
+ "value": "Mais vendidos"
1158
+ }
1159
+ ],
1160
+ "footer.column.account": [
1161
+ {
1162
+ "type": 0,
1163
+ "value": "Conta"
1164
+ }
1165
+ ],
1166
+ "footer.column.customer_support": [
1167
+ {
1168
+ "type": 0,
1169
+ "value": "Suporte ao cliente"
1170
+ }
1171
+ ],
1172
+ "footer.column.our_company": [
1173
+ {
1174
+ "type": 0,
1175
+ "value": "Nossa empresa"
1176
+ }
1177
+ ],
1178
+ "footer.link.about_us": [
1179
+ {
1180
+ "type": 0,
1181
+ "value": "Sobre nós"
1182
+ }
1183
+ ],
1184
+ "footer.link.contact_us": [
1185
+ {
1186
+ "type": 0,
1187
+ "value": "Entrar em contato"
1188
+ }
1189
+ ],
1190
+ "footer.link.order_status": [
1191
+ {
1192
+ "type": 0,
1193
+ "value": "Estado do pedido"
1194
+ }
1195
+ ],
1196
+ "footer.link.privacy_policy": [
1197
+ {
1198
+ "type": 0,
1199
+ "value": "Política de privacidade"
1200
+ }
1201
+ ],
1202
+ "footer.link.shipping": [
1203
+ {
1204
+ "type": 0,
1205
+ "value": "Frete"
1206
+ }
1207
+ ],
1208
+ "footer.link.signin_create_account": [
1209
+ {
1210
+ "type": 0,
1211
+ "value": "Fazer logon ou criar conta"
1212
+ }
1213
+ ],
1214
+ "footer.link.site_map": [
1215
+ {
1216
+ "type": 0,
1217
+ "value": "Mapa do site"
1218
+ }
1219
+ ],
1220
+ "footer.link.store_locator": [
1221
+ {
1222
+ "type": 0,
1223
+ "value": "Localizador de lojas"
1224
+ }
1225
+ ],
1226
+ "footer.link.terms_conditions": [
1227
+ {
1228
+ "type": 0,
1229
+ "value": "Termos e condições"
1230
+ }
1231
+ ],
1232
+ "footer.message.copyright": [
1233
+ {
1234
+ "type": 0,
1235
+ "value": "Salesforce ou suas afiliadas. Todos os direitos reservados. Esta é apenas uma loja de demonstração. Os pedidos feitos NÃO SERÃO processados."
1236
+ }
1237
+ ],
1238
+ "footer.subscribe.button.sign_up": [
1239
+ {
1240
+ "type": 0,
1241
+ "value": "Cadastro"
1242
+ }
1243
+ ],
1244
+ "footer.subscribe.description.sign_up": [
1245
+ {
1246
+ "type": 0,
1247
+ "value": "Registre-se para ficar por dentro de todas as ofertas"
1248
+ }
1249
+ ],
1250
+ "footer.subscribe.heading.first_to_know": [
1251
+ {
1252
+ "type": 0,
1253
+ "value": "Seja o primeiro a saber"
1254
+ }
1255
+ ],
1256
+ "form_action_buttons.button.cancel": [
1257
+ {
1258
+ "type": 0,
1259
+ "value": "Cancelar"
1260
+ }
1261
+ ],
1262
+ "form_action_buttons.button.save": [
1263
+ {
1264
+ "type": 0,
1265
+ "value": "Salvar"
1266
+ }
1267
+ ],
1268
+ "global.account.link.account_details": [
1269
+ {
1270
+ "type": 0,
1271
+ "value": "Detalhes da conta"
1272
+ }
1273
+ ],
1274
+ "global.account.link.addresses": [
1275
+ {
1276
+ "type": 0,
1277
+ "value": "Endereços"
1278
+ }
1279
+ ],
1280
+ "global.account.link.order_history": [
1281
+ {
1282
+ "type": 0,
1283
+ "value": "Histórico de pedidos"
1284
+ }
1285
+ ],
1286
+ "global.account.link.payment_methods": [
1287
+ {
1288
+ "type": 0,
1289
+ "value": "Métodos de pagamento"
1290
+ }
1291
+ ],
1292
+ "global.account.link.wishlist": [
1293
+ {
1294
+ "type": 0,
1295
+ "value": "Lista de desejos"
1296
+ }
1297
+ ],
1298
+ "global.error.something_went_wrong": [
1299
+ {
1300
+ "type": 0,
1301
+ "value": "Ocorreu um erro. Tente novamente."
1302
+ }
1303
+ ],
1304
+ "global.info.added_to_wishlist": [
1305
+ {
1306
+ "type": 1,
1307
+ "value": "quantity"
1308
+ },
1309
+ {
1310
+ "type": 0,
1311
+ "value": " "
1312
+ },
1313
+ {
1314
+ "offset": 0,
1315
+ "options": {
1316
+ "one": {
1317
+ "value": [
1318
+ {
1319
+ "type": 0,
1320
+ "value": "item"
1321
+ }
1322
+ ]
1323
+ },
1324
+ "other": {
1325
+ "value": [
1326
+ {
1327
+ "type": 0,
1328
+ "value": "itens"
1329
+ }
1330
+ ]
1331
+ }
1332
+ },
1333
+ "pluralType": "cardinal",
1334
+ "type": 6,
1335
+ "value": "quantity"
1336
+ },
1337
+ {
1338
+ "type": 0,
1339
+ "value": " adicionado(s) à lista de desejos"
1340
+ }
1341
+ ],
1342
+ "global.info.removed_from_wishlist": [
1343
+ {
1344
+ "type": 0,
1345
+ "value": "Item removido da lista de desejos"
1346
+ }
1347
+ ],
1348
+ "global.link.added_to_wishlist.view_wishlist": [
1349
+ {
1350
+ "type": 0,
1351
+ "value": "Ver"
1352
+ }
1353
+ ],
1354
+ "header.button.assistive_msg.logo": [
1355
+ {
1356
+ "type": 0,
1357
+ "value": "Logotipo"
1358
+ }
1359
+ ],
1360
+ "header.button.assistive_msg.menu": [
1361
+ {
1362
+ "type": 0,
1363
+ "value": "Menu"
1364
+ }
1365
+ ],
1366
+ "header.button.assistive_msg.my_account": [
1367
+ {
1368
+ "type": 0,
1369
+ "value": "Minha conta"
1370
+ }
1371
+ ],
1372
+ "header.button.assistive_msg.my_cart": [
1373
+ {
1374
+ "type": 0,
1375
+ "value": "Meu carrinho"
1376
+ }
1377
+ ],
1378
+ "header.button.assistive_msg.wishlist": [
1379
+ {
1380
+ "type": 0,
1381
+ "value": "Lista de desejos"
1382
+ }
1383
+ ],
1384
+ "header.field.placeholder.search_for_products": [
1385
+ {
1386
+ "type": 0,
1387
+ "value": "Pesquisar produtos..."
1388
+ }
1389
+ ],
1390
+ "header.popover.action.log_out": [
1391
+ {
1392
+ "type": 0,
1393
+ "value": "Sair"
1394
+ }
1395
+ ],
1396
+ "header.popover.title.my_account": [
1397
+ {
1398
+ "type": 0,
1399
+ "value": "Minha conta"
1400
+ }
1401
+ ],
1402
+ "home.description.features": [
1403
+ {
1404
+ "type": 0,
1405
+ "value": "Recursos prontos para uso, para que você só precise adicionar melhorias."
1406
+ }
1407
+ ],
1408
+ "home.description.here_to_help": [
1409
+ {
1410
+ "type": 0,
1411
+ "value": "Entre em contato com nossa equipe de suporte."
1412
+ }
1413
+ ],
1414
+ "home.description.here_to_help_line_2": [
1415
+ {
1416
+ "type": 0,
1417
+ "value": "Eles vão levá-lo ao lugar certo."
1418
+ }
1419
+ ],
1420
+ "home.description.shop_products": [
1421
+ {
1422
+ "type": 0,
1423
+ "value": "Esta seção tem conteúdo do catálogo. "
1424
+ },
1425
+ {
1426
+ "type": 1,
1427
+ "value": "docLink"
1428
+ },
1429
+ {
1430
+ "type": 0,
1431
+ "value": " sobre como substitui-lo."
1432
+ }
1433
+ ],
1434
+ "home.features.description.cart_checkout": [
1435
+ {
1436
+ "type": 0,
1437
+ "value": "Práticas recomendadas de comércio eletrônico para a experiência de carrinho e checkout do comprador."
1438
+ }
1439
+ ],
1440
+ "home.features.description.components": [
1441
+ {
1442
+ "type": 0,
1443
+ "value": "Criado com Chakra UI, uma biblioteca de componentes de React simples, modulares e acessíveis."
1444
+ }
1445
+ ],
1446
+ "home.features.description.einstein_recommendations": [
1447
+ {
1448
+ "type": 0,
1449
+ "value": "Entregue o próximo melhor produto ou oferta a cada comprador por meio de recomendações de produto."
1450
+ }
1451
+ ],
1452
+ "home.features.description.my_account": [
1453
+ {
1454
+ "type": 0,
1455
+ "value": "Os compradores podem gerenciar as informações da conta, como perfil, endereços, pagamentos e pedidos."
1456
+ }
1457
+ ],
1458
+ "home.features.description.shopper_login": [
1459
+ {
1460
+ "type": 0,
1461
+ "value": "Permite que os compradores façam logon com uma experiência de compra mais personalizada."
1462
+ }
1463
+ ],
1464
+ "home.features.description.wishlist": [
1465
+ {
1466
+ "type": 0,
1467
+ "value": "Os compradores registrados podem adicionar itens de produtos à lista de desejos para comprá-los mais tarde."
1468
+ }
1469
+ ],
1470
+ "home.features.heading.cart_checkout": [
1471
+ {
1472
+ "type": 0,
1473
+ "value": "Carrinho e Checkout"
1474
+ }
1475
+ ],
1476
+ "home.features.heading.components": [
1477
+ {
1478
+ "type": 0,
1479
+ "value": "Componentes e Kit de design"
1480
+ }
1481
+ ],
1482
+ "home.features.heading.einstein_recommendations": [
1483
+ {
1484
+ "type": 0,
1485
+ "value": "Recomendações do Einstein"
1486
+ }
1487
+ ],
1488
+ "home.features.heading.my_account": [
1489
+ {
1490
+ "type": 0,
1491
+ "value": "Minha conta"
1492
+ }
1493
+ ],
1494
+ "home.features.heading.shopper_login": [
1495
+ {
1496
+ "type": 0,
1497
+ "value": "Shopper Login and API Access Service (SLAS)"
1498
+ }
1499
+ ],
1500
+ "home.features.heading.wishlist": [
1501
+ {
1502
+ "type": 0,
1503
+ "value": "Lista de desejos"
1504
+ }
1505
+ ],
1506
+ "home.heading.features": [
1507
+ {
1508
+ "type": 0,
1509
+ "value": "Recursos"
1510
+ }
1511
+ ],
1512
+ "home.heading.here_to_help": [
1513
+ {
1514
+ "type": 0,
1515
+ "value": "Estamos aqui para ajudar"
1516
+ }
1517
+ ],
1518
+ "home.heading.shop_products": [
1519
+ {
1520
+ "type": 0,
1521
+ "value": "Comprar produtos"
1522
+ }
1523
+ ],
1524
+ "home.hero_features.link.design_kit": [
1525
+ {
1526
+ "type": 0,
1527
+ "value": "Criar com o Figma PWA Design Kit"
1528
+ }
1529
+ ],
1530
+ "home.hero_features.link.on_github": [
1531
+ {
1532
+ "type": 0,
1533
+ "value": "Baixar no Github"
1534
+ }
1535
+ ],
1536
+ "home.hero_features.link.on_managed_runtime": [
1537
+ {
1538
+ "type": 0,
1539
+ "value": "Implantar no Managed Runtime"
1540
+ }
1541
+ ],
1542
+ "home.link.contact_us": [
1543
+ {
1544
+ "type": 0,
1545
+ "value": "Entrar em contato"
1546
+ }
1547
+ ],
1548
+ "home.link.get_started": [
1549
+ {
1550
+ "type": 0,
1551
+ "value": "Começar"
1552
+ }
1553
+ ],
1554
+ "home.link.read_docs": [
1555
+ {
1556
+ "type": 0,
1557
+ "value": "Ler documentos"
1558
+ }
1559
+ ],
1560
+ "home.title.react_starter_store": [
1561
+ {
1562
+ "type": 0,
1563
+ "value": "React PWA Starter Store para varejo"
1564
+ }
1565
+ ],
1566
+ "item_attributes.label.promotions": [
1567
+ {
1568
+ "type": 0,
1569
+ "value": "Promoções"
1570
+ }
1571
+ ],
1572
+ "item_attributes.label.quantity": [
1573
+ {
1574
+ "type": 0,
1575
+ "value": "Quantidade: "
1576
+ },
1577
+ {
1578
+ "type": 1,
1579
+ "value": "quantity"
1580
+ }
1581
+ ],
1582
+ "item_image.label.sale": [
1583
+ {
1584
+ "type": 0,
1585
+ "value": "Promoção"
1586
+ }
1587
+ ],
1588
+ "lCPCxk": [
1589
+ {
1590
+ "type": 0,
1591
+ "value": "Selecione todas as opções acima"
1592
+ }
1593
+ ],
1594
+ "locale_text.message.ar-SA": [
1595
+ {
1596
+ "type": 0,
1597
+ "value": "Árabe (Arábia Saudita)"
1598
+ }
1599
+ ],
1600
+ "locale_text.message.bn-BD": [
1601
+ {
1602
+ "type": 0,
1603
+ "value": "Bengali (Bangladesh)"
1604
+ }
1605
+ ],
1606
+ "locale_text.message.bn-IN": [
1607
+ {
1608
+ "type": 0,
1609
+ "value": "Bengali (Índia)"
1610
+ }
1611
+ ],
1612
+ "locale_text.message.cs-CZ": [
1613
+ {
1614
+ "type": 0,
1615
+ "value": "Tcheco (República Tcheca)"
1616
+ }
1617
+ ],
1618
+ "locale_text.message.da-DK": [
1619
+ {
1620
+ "type": 0,
1621
+ "value": "Dinamarquês (Dinamarca)"
1622
+ }
1623
+ ],
1624
+ "locale_text.message.de-AT": [
1625
+ {
1626
+ "type": 0,
1627
+ "value": "Alemão (Áustria)"
1628
+ }
1629
+ ],
1630
+ "locale_text.message.de-CH": [
1631
+ {
1632
+ "type": 0,
1633
+ "value": "Alemão (Suíça)"
1634
+ }
1635
+ ],
1636
+ "locale_text.message.de-DE": [
1637
+ {
1638
+ "type": 0,
1639
+ "value": "Alemão (Alemanha)"
1640
+ }
1641
+ ],
1642
+ "locale_text.message.el-GR": [
1643
+ {
1644
+ "type": 0,
1645
+ "value": "Grego (Grécia)"
1646
+ }
1647
+ ],
1648
+ "locale_text.message.en-AU": [
1649
+ {
1650
+ "type": 0,
1651
+ "value": "Inglês (Austrália)"
1652
+ }
1653
+ ],
1654
+ "locale_text.message.en-CA": [
1655
+ {
1656
+ "type": 0,
1657
+ "value": "Inglês (Canadá)"
1658
+ }
1659
+ ],
1660
+ "locale_text.message.en-GB": [
1661
+ {
1662
+ "type": 0,
1663
+ "value": "Inglês (Reino Unido)"
1664
+ }
1665
+ ],
1666
+ "locale_text.message.en-IE": [
1667
+ {
1668
+ "type": 0,
1669
+ "value": "Inglês (Irlanda)"
1670
+ }
1671
+ ],
1672
+ "locale_text.message.en-IN": [
1673
+ {
1674
+ "type": 0,
1675
+ "value": "Inglês (Índia)"
1676
+ }
1677
+ ],
1678
+ "locale_text.message.en-NZ": [
1679
+ {
1680
+ "type": 0,
1681
+ "value": "Inglês (Nova Zelândia)"
1682
+ }
1683
+ ],
1684
+ "locale_text.message.en-US": [
1685
+ {
1686
+ "type": 0,
1687
+ "value": "Inglês (Estados Unidos)"
1688
+ }
1689
+ ],
1690
+ "locale_text.message.en-ZA": [
1691
+ {
1692
+ "type": 0,
1693
+ "value": "Inglês (África do Sul)"
1694
+ }
1695
+ ],
1696
+ "locale_text.message.es-AR": [
1697
+ {
1698
+ "type": 0,
1699
+ "value": "Espanhol (Argentina)"
1700
+ }
1701
+ ],
1702
+ "locale_text.message.es-CL": [
1703
+ {
1704
+ "type": 0,
1705
+ "value": "Espanhol (Chile)"
1706
+ }
1707
+ ],
1708
+ "locale_text.message.es-CO": [
1709
+ {
1710
+ "type": 0,
1711
+ "value": "Espanhol (Colômbia)"
1712
+ }
1713
+ ],
1714
+ "locale_text.message.es-ES": [
1715
+ {
1716
+ "type": 0,
1717
+ "value": "Espanhol (Espanha)"
1718
+ }
1719
+ ],
1720
+ "locale_text.message.es-MX": [
1721
+ {
1722
+ "type": 0,
1723
+ "value": "Espanhol (México)"
1724
+ }
1725
+ ],
1726
+ "locale_text.message.es-US": [
1727
+ {
1728
+ "type": 0,
1729
+ "value": "Espanhol (Estados Unidos)"
1730
+ }
1731
+ ],
1732
+ "locale_text.message.fi-FI": [
1733
+ {
1734
+ "type": 0,
1735
+ "value": "Finlandês (Finlândia)"
1736
+ }
1737
+ ],
1738
+ "locale_text.message.fr-BE": [
1739
+ {
1740
+ "type": 0,
1741
+ "value": "Francês (Bélgica)"
1742
+ }
1743
+ ],
1744
+ "locale_text.message.fr-CA": [
1745
+ {
1746
+ "type": 0,
1747
+ "value": "Francês (Canadá)"
1748
+ }
1749
+ ],
1750
+ "locale_text.message.fr-CH": [
1751
+ {
1752
+ "type": 0,
1753
+ "value": "Francês (Suíça)"
1754
+ }
1755
+ ],
1756
+ "locale_text.message.fr-FR": [
1757
+ {
1758
+ "type": 0,
1759
+ "value": "Francês (França)"
1760
+ }
1761
+ ],
1762
+ "locale_text.message.he-IL": [
1763
+ {
1764
+ "type": 0,
1765
+ "value": "Hebreu (Israel)"
1766
+ }
1767
+ ],
1768
+ "locale_text.message.hi-IN": [
1769
+ {
1770
+ "type": 0,
1771
+ "value": "Hindi (Índia)"
1772
+ }
1773
+ ],
1774
+ "locale_text.message.hu-HU": [
1775
+ {
1776
+ "type": 0,
1777
+ "value": "Húngaro (Hungria)"
1778
+ }
1779
+ ],
1780
+ "locale_text.message.id-ID": [
1781
+ {
1782
+ "type": 0,
1783
+ "value": "Indonésio (Indonésia)"
1784
+ }
1785
+ ],
1786
+ "locale_text.message.it-CH": [
1787
+ {
1788
+ "type": 0,
1789
+ "value": "Italiano (Suíça)"
1790
+ }
1791
+ ],
1792
+ "locale_text.message.it-IT": [
1793
+ {
1794
+ "type": 0,
1795
+ "value": "Italiano (Itália)"
1796
+ }
1797
+ ],
1798
+ "locale_text.message.ja-JP": [
1799
+ {
1800
+ "type": 0,
1801
+ "value": "Japonês (Japão)"
1802
+ }
1803
+ ],
1804
+ "locale_text.message.ko-KR": [
1805
+ {
1806
+ "type": 0,
1807
+ "value": "Coreano (Coreia do Sul)"
1808
+ }
1809
+ ],
1810
+ "locale_text.message.nl-BE": [
1811
+ {
1812
+ "type": 0,
1813
+ "value": "Holandês (Bélgica)"
1814
+ }
1815
+ ],
1816
+ "locale_text.message.nl-NL": [
1817
+ {
1818
+ "type": 0,
1819
+ "value": "Holandês (Países Baixos)"
1820
+ }
1821
+ ],
1822
+ "locale_text.message.no-NO": [
1823
+ {
1824
+ "type": 0,
1825
+ "value": "Norueguês (Noruega)"
1826
+ }
1827
+ ],
1828
+ "locale_text.message.pl-PL": [
1829
+ {
1830
+ "type": 0,
1831
+ "value": "Polonês (Polônia)"
1832
+ }
1833
+ ],
1834
+ "locale_text.message.pt-BR": [
1835
+ {
1836
+ "type": 0,
1837
+ "value": "Português (Brasil)"
1838
+ }
1839
+ ],
1840
+ "locale_text.message.pt-PT": [
1841
+ {
1842
+ "type": 0,
1843
+ "value": "Português (Portugal)"
1844
+ }
1845
+ ],
1846
+ "locale_text.message.ro-RO": [
1847
+ {
1848
+ "type": 0,
1849
+ "value": "Romeno (Romênia)"
1850
+ }
1851
+ ],
1852
+ "locale_text.message.ru-RU": [
1853
+ {
1854
+ "type": 0,
1855
+ "value": "Russo (Rússia)"
1856
+ }
1857
+ ],
1858
+ "locale_text.message.sk-SK": [
1859
+ {
1860
+ "type": 0,
1861
+ "value": "Eslovaco (Eslováquia)"
1862
+ }
1863
+ ],
1864
+ "locale_text.message.sv-SE": [
1865
+ {
1866
+ "type": 0,
1867
+ "value": "Sueco (Suécia)"
1868
+ }
1869
+ ],
1870
+ "locale_text.message.ta-IN": [
1871
+ {
1872
+ "type": 0,
1873
+ "value": "Tâmil (Índia)"
1874
+ }
1875
+ ],
1876
+ "locale_text.message.ta-LK": [
1877
+ {
1878
+ "type": 0,
1879
+ "value": "Tâmil (Sri Lanka)"
1880
+ }
1881
+ ],
1882
+ "locale_text.message.th-TH": [
1883
+ {
1884
+ "type": 0,
1885
+ "value": "Tailandês (Tailândia)"
1886
+ }
1887
+ ],
1888
+ "locale_text.message.tr-TR": [
1889
+ {
1890
+ "type": 0,
1891
+ "value": "Turco (Turquia)"
1892
+ }
1893
+ ],
1894
+ "locale_text.message.zh-CN": [
1895
+ {
1896
+ "type": 0,
1897
+ "value": "Chinês (China)"
1898
+ }
1899
+ ],
1900
+ "locale_text.message.zh-HK": [
1901
+ {
1902
+ "type": 0,
1903
+ "value": "Chinês (Hong Kong)"
1904
+ }
1905
+ ],
1906
+ "locale_text.message.zh-TW": [
1907
+ {
1908
+ "type": 0,
1909
+ "value": "Chinês (Taiwan)"
1910
+ }
1911
+ ],
1912
+ "login_form.action.create_account": [
1913
+ {
1914
+ "type": 0,
1915
+ "value": "Criar conta"
1916
+ }
1917
+ ],
1918
+ "login_form.button.sign_in": [
1919
+ {
1920
+ "type": 0,
1921
+ "value": "Fazer logon"
1922
+ }
1923
+ ],
1924
+ "login_form.link.forgot_password": [
1925
+ {
1926
+ "type": 0,
1927
+ "value": "Esqueceu a senha?"
1928
+ }
1929
+ ],
1930
+ "login_form.message.dont_have_account": [
1931
+ {
1932
+ "type": 0,
1933
+ "value": "Não tem uma conta?"
1934
+ }
1935
+ ],
1936
+ "login_form.message.welcome_back": [
1937
+ {
1938
+ "type": 0,
1939
+ "value": "Olá novamente"
1940
+ }
1941
+ ],
1942
+ "login_page.error.incorrect_username_or_password": [
1943
+ {
1944
+ "type": 0,
1945
+ "value": "Nome de usuário ou senha incorreta. Tente novamente."
1946
+ }
1947
+ ],
1948
+ "offline_banner.description.browsing_offline_mode": [
1949
+ {
1950
+ "type": 0,
1951
+ "value": "Você está navegando no modo offline"
1952
+ }
1953
+ ],
1954
+ "order_summary.action.remove_promo": [
1955
+ {
1956
+ "type": 0,
1957
+ "value": "Remover"
1958
+ }
1959
+ ],
1960
+ "order_summary.cart_items.action.num_of_items_in_cart": [
1961
+ {
1962
+ "offset": 0,
1963
+ "options": {
1964
+ "=0": {
1965
+ "value": [
1966
+ {
1967
+ "type": 0,
1968
+ "value": "0 itens"
1969
+ }
1970
+ ]
1971
+ },
1972
+ "one": {
1973
+ "value": [
1974
+ {
1975
+ "type": 7
1976
+ },
1977
+ {
1978
+ "type": 0,
1979
+ "value": " item"
1980
+ }
1981
+ ]
1982
+ },
1983
+ "other": {
1984
+ "value": [
1985
+ {
1986
+ "type": 7
1987
+ },
1988
+ {
1989
+ "type": 0,
1990
+ "value": " itens"
1991
+ }
1992
+ ]
1993
+ }
1994
+ },
1995
+ "pluralType": "cardinal",
1996
+ "type": 6,
1997
+ "value": "itemCount"
1998
+ },
1999
+ {
2000
+ "type": 0,
2001
+ "value": ") no carrinho"
2002
+ }
2003
+ ],
2004
+ "order_summary.cart_items.link.edit_cart": [
2005
+ {
2006
+ "type": 0,
2007
+ "value": "Editar carrinho"
2008
+ }
2009
+ ],
2010
+ "order_summary.heading.order_summary": [
2011
+ {
2012
+ "type": 0,
2013
+ "value": "Resumo do pedido"
2014
+ }
2015
+ ],
2016
+ "order_summary.label.estimated_total": [
2017
+ {
2018
+ "type": 0,
2019
+ "value": "Total estimado"
2020
+ }
2021
+ ],
2022
+ "order_summary.label.free": [
2023
+ {
2024
+ "type": 0,
2025
+ "value": "Gratuito"
2026
+ }
2027
+ ],
2028
+ "order_summary.label.order_total": [
2029
+ {
2030
+ "type": 0,
2031
+ "value": "Total do pedido"
2032
+ }
2033
+ ],
2034
+ "order_summary.label.promo_applied": [
2035
+ {
2036
+ "type": 0,
2037
+ "value": "Promoção aplicada"
2038
+ }
2039
+ ],
2040
+ "order_summary.label.promotions_applied": [
2041
+ {
2042
+ "type": 0,
2043
+ "value": "Promoções aplicadas"
2044
+ }
2045
+ ],
2046
+ "order_summary.label.shipping": [
2047
+ {
2048
+ "type": 0,
2049
+ "value": "Frete"
2050
+ }
2051
+ ],
2052
+ "order_summary.label.subtotal": [
2053
+ {
2054
+ "type": 0,
2055
+ "value": "Subtotal"
2056
+ }
2057
+ ],
2058
+ "order_summary.label.tax": [
2059
+ {
2060
+ "type": 0,
2061
+ "value": "Imposto"
2062
+ }
2063
+ ],
2064
+ "page_not_found.action.go_back": [
2065
+ {
2066
+ "type": 0,
2067
+ "value": "Voltar à página anterior"
2068
+ }
2069
+ ],
2070
+ "page_not_found.link.homepage": [
2071
+ {
2072
+ "type": 0,
2073
+ "value": "Ir à página inicial"
2074
+ }
2075
+ ],
2076
+ "page_not_found.message.suggestion_to_try": [
2077
+ {
2078
+ "type": 0,
2079
+ "value": "Tente digitar o endereço novamente, voltar à página anterior ou à página inicial."
2080
+ }
2081
+ ],
2082
+ "page_not_found.title.page_cant_be_found": [
2083
+ {
2084
+ "type": 0,
2085
+ "value": "A página buscada não pôde ser encontrada."
2086
+ }
2087
+ ],
2088
+ "pagination.field.num_of_pages": [
2089
+ {
2090
+ "type": 0,
2091
+ "value": "de "
2092
+ },
2093
+ {
2094
+ "type": 1,
2095
+ "value": "numOfPages"
2096
+ }
2097
+ ],
2098
+ "pagination.link.next": [
2099
+ {
2100
+ "type": 0,
2101
+ "value": "Próximo"
2102
+ }
2103
+ ],
2104
+ "pagination.link.prev": [
2105
+ {
2106
+ "type": 0,
2107
+ "value": "Ant"
2108
+ }
2109
+ ],
2110
+ "password_card.info.password_updated": [
2111
+ {
2112
+ "type": 0,
2113
+ "value": "Senha atualizada"
2114
+ }
2115
+ ],
2116
+ "password_card.label.password": [
2117
+ {
2118
+ "type": 0,
2119
+ "value": "Senha"
2120
+ }
2121
+ ],
2122
+ "password_card.title.password": [
2123
+ {
2124
+ "type": 0,
2125
+ "value": "Senha"
2126
+ }
2127
+ ],
2128
+ "password_requirements.error.eight_letter_minimum": [
2129
+ {
2130
+ "type": 0,
2131
+ "value": "Mínimo de 8 caracteres"
2132
+ }
2133
+ ],
2134
+ "password_requirements.error.one_lowercase_letter": [
2135
+ {
2136
+ "type": 0,
2137
+ "value": "1 letra minúscula"
2138
+ }
2139
+ ],
2140
+ "password_requirements.error.one_number": [
2141
+ {
2142
+ "type": 0,
2143
+ "value": "1 número"
2144
+ }
2145
+ ],
2146
+ "password_requirements.error.one_special_character": [
2147
+ {
2148
+ "type": 0,
2149
+ "value": "1 caractere especial (exemplo: , $ ! % #)"
2150
+ }
2151
+ ],
2152
+ "password_requirements.error.one_uppercase_letter": [
2153
+ {
2154
+ "type": 0,
2155
+ "value": "1 letra maiúscula"
2156
+ }
2157
+ ],
2158
+ "payment_selection.button.save_and_continue": [
2159
+ {
2160
+ "type": 0,
2161
+ "value": "Salvar e continuar"
2162
+ }
2163
+ ],
2164
+ "payment_selection.heading.add_new_card": [
2165
+ {
2166
+ "type": 0,
2167
+ "value": "Adicionar novo cartão"
2168
+ }
2169
+ ],
2170
+ "payment_selection.heading.credit_card": [
2171
+ {
2172
+ "type": 0,
2173
+ "value": "Cartão de crédito"
2174
+ }
2175
+ ],
2176
+ "payment_selection.message.select_payment_method": [
2177
+ {
2178
+ "type": 0,
2179
+ "value": "Selecione um método de pagamento."
2180
+ }
2181
+ ],
2182
+ "payment_selection.tooltip.secure_payment": [
2183
+ {
2184
+ "type": 0,
2185
+ "value": "Este é um pagamento protegido com criptografia SSL."
2186
+ }
2187
+ ],
2188
+ "price_per_item.label.each": [
2189
+ {
2190
+ "type": 0,
2191
+ "value": "cada"
2192
+ }
2193
+ ],
2194
+ "product_detail.accordion.button.product_detail": [
2195
+ {
2196
+ "type": 0,
2197
+ "value": "Detalhe do produto"
2198
+ }
2199
+ ],
2200
+ "product_detail.accordion.button.questions": [
2201
+ {
2202
+ "type": 0,
2203
+ "value": "Perguntas"
2204
+ }
2205
+ ],
2206
+ "product_detail.accordion.button.reviews": [
2207
+ {
2208
+ "type": 0,
2209
+ "value": "Avaliações"
2210
+ }
2211
+ ],
2212
+ "product_detail.accordion.button.size_fit": [
2213
+ {
2214
+ "type": 0,
2215
+ "value": "Tamanho"
2216
+ }
2217
+ ],
2218
+ "product_detail.accordion.message.coming_soon": [
2219
+ {
2220
+ "type": 0,
2221
+ "value": "Em breve"
2222
+ }
2223
+ ],
2224
+ "product_detail.recommended_products.title.complete_set": [
2225
+ {
2226
+ "type": 0,
2227
+ "value": "Completar o conjunto"
2228
+ }
2229
+ ],
2230
+ "product_detail.recommended_products.title.might_also_like": [
2231
+ {
2232
+ "type": 0,
2233
+ "value": "Talvez você também queira"
2234
+ }
2235
+ ],
2236
+ "product_detail.recommended_products.title.recently_viewed": [
2237
+ {
2238
+ "type": 0,
2239
+ "value": "Recentemente visualizados"
2240
+ }
2241
+ ],
2242
+ "product_item.label.quantity": [
2243
+ {
2244
+ "type": 0,
2245
+ "value": "Quantidade:"
2246
+ }
2247
+ ],
2248
+ "product_list.button.filter": [
2249
+ {
2250
+ "type": 0,
2251
+ "value": "Filtrar"
2252
+ }
2253
+ ],
2254
+ "product_list.button.sort_by": [
2255
+ {
2256
+ "type": 0,
2257
+ "value": "Ordenar por: "
2258
+ },
2259
+ {
2260
+ "type": 1,
2261
+ "value": "sortOption"
2262
+ }
2263
+ ],
2264
+ "product_list.drawer.title.sort_by": [
2265
+ {
2266
+ "type": 0,
2267
+ "value": "Ordenar por"
2268
+ }
2269
+ ],
2270
+ "product_list.modal.button.clear_filters": [
2271
+ {
2272
+ "type": 0,
2273
+ "value": "Limpar filtros"
2274
+ }
2275
+ ],
2276
+ "product_list.modal.button.view_items": [
2277
+ {
2278
+ "type": 0,
2279
+ "value": "Ver "
2280
+ },
2281
+ {
2282
+ "type": 1,
2283
+ "value": "prroductCount"
2284
+ },
2285
+ {
2286
+ "type": 0,
2287
+ "value": " itens"
2288
+ }
2289
+ ],
2290
+ "product_list.modal.title.filter": [
2291
+ {
2292
+ "type": 0,
2293
+ "value": "Filtrar"
2294
+ }
2295
+ ],
2296
+ "product_list.select.sort_by": [
2297
+ {
2298
+ "type": 0,
2299
+ "value": "Ordenar por: "
2300
+ },
2301
+ {
2302
+ "type": 1,
2303
+ "value": "sortOption"
2304
+ }
2305
+ ],
2306
+ "product_tile.assistive_msg.wishlist": [
2307
+ {
2308
+ "type": 0,
2309
+ "value": "Lista de desejos"
2310
+ }
2311
+ ],
2312
+ "product_view.button.add_to_cart": [
2313
+ {
2314
+ "type": 0,
2315
+ "value": "Adicionar ao carrinho"
2316
+ }
2317
+ ],
2318
+ "product_view.button.add_to_wishlist": [
2319
+ {
2320
+ "type": 0,
2321
+ "value": "Adicionar à lista de desejos"
2322
+ }
2323
+ ],
2324
+ "product_view.button.update": [
2325
+ {
2326
+ "type": 0,
2327
+ "value": "Atualizar"
2328
+ }
2329
+ ],
2330
+ "product_view.label.quantity": [
2331
+ {
2332
+ "type": 0,
2333
+ "value": "Quantidade"
2334
+ }
2335
+ ],
2336
+ "product_view.link.full_details": [
2337
+ {
2338
+ "type": 0,
2339
+ "value": "Ver detalhes completos"
2340
+ }
2341
+ ],
2342
+ "profile_card.info.profile_updated": [
2343
+ {
2344
+ "type": 0,
2345
+ "value": "Perfil atualizado"
2346
+ }
2347
+ ],
2348
+ "profile_card.label.email": [
2349
+ {
2350
+ "type": 0,
2351
+ "value": "E-mail"
2352
+ }
2353
+ ],
2354
+ "profile_card.label.full_name": [
2355
+ {
2356
+ "type": 0,
2357
+ "value": "Nome"
2358
+ }
2359
+ ],
2360
+ "profile_card.label.phone": [
2361
+ {
2362
+ "type": 0,
2363
+ "value": "Número de telefone"
2364
+ }
2365
+ ],
2366
+ "profile_card.message.not_provided": [
2367
+ {
2368
+ "type": 0,
2369
+ "value": "Não fornecido"
2370
+ }
2371
+ ],
2372
+ "profile_card.title.my_profile": [
2373
+ {
2374
+ "type": 0,
2375
+ "value": "Meu perfil"
2376
+ }
2377
+ ],
2378
+ "promo_code_fields.button.apply": [
2379
+ {
2380
+ "type": 0,
2381
+ "value": "Aplicar"
2382
+ }
2383
+ ],
2384
+ "promo_popover.heading.promo_applied": [
2385
+ {
2386
+ "type": 0,
2387
+ "value": "Promoções aplicadas"
2388
+ }
2389
+ ],
2390
+ "promocode.accordion.button.have_promocode": [
2391
+ {
2392
+ "type": 0,
2393
+ "value": "Você tem um código promocional?"
2394
+ }
2395
+ ],
2396
+ "recent_searches.action.clear_searches": [
2397
+ {
2398
+ "type": 0,
2399
+ "value": "Apagar pesquisas recentes"
2400
+ }
2401
+ ],
2402
+ "recent_searches.heading.recent_searches": [
2403
+ {
2404
+ "type": 0,
2405
+ "value": "Pesquisas recentes"
2406
+ }
2407
+ ],
2408
+ "register_form.action.sign_in": [
2409
+ {
2410
+ "type": 0,
2411
+ "value": "Fazer logon"
2412
+ }
2413
+ ],
2414
+ "register_form.button.create_account": [
2415
+ {
2416
+ "type": 0,
2417
+ "value": "Criar conta"
2418
+ }
2419
+ ],
2420
+ "register_form.heading.lets_get_started": [
2421
+ {
2422
+ "type": 0,
2423
+ "value": "Vamos começar!"
2424
+ }
2425
+ ],
2426
+ "register_form.message.agree_to_policy_terms": [
2427
+ {
2428
+ "type": 0,
2429
+ "value": "Ao criar uma conta, você concorda com a "
2430
+ },
2431
+ {
2432
+ "children": [
2433
+ {
2434
+ "type": 0,
2435
+ "value": "Política de privacidade"
2436
+ }
2437
+ ],
2438
+ "type": 8,
2439
+ "value": "policy"
2440
+ },
2441
+ {
2442
+ "type": 0,
2443
+ "value": " e os "
2444
+ },
2445
+ {
2446
+ "children": [
2447
+ {
2448
+ "type": 0,
2449
+ "value": "Termos e condições"
2450
+ }
2451
+ ],
2452
+ "type": 8,
2453
+ "value": "terms"
2454
+ },
2455
+ {
2456
+ "type": 0,
2457
+ "value": " da Salesforce"
2458
+ }
2459
+ ],
2460
+ "register_form.message.already_have_account": [
2461
+ {
2462
+ "type": 0,
2463
+ "value": "Já tem uma conta?"
2464
+ }
2465
+ ],
2466
+ "register_form.message.create_an_account": [
2467
+ {
2468
+ "type": 0,
2469
+ "value": "Crie uma conta e tenha acesso aos melhores produtos, ideias e comunidade."
2470
+ }
2471
+ ],
2472
+ "reset_password.button.back_to_sign_in": [
2473
+ {
2474
+ "type": 0,
2475
+ "value": "Fazer login novamente"
2476
+ }
2477
+ ],
2478
+ "reset_password.info.receive_email_shortly": [
2479
+ {
2480
+ "type": 0,
2481
+ "value": "Em breve, você receberá um e-mail em "
2482
+ },
2483
+ {
2484
+ "children": [
2485
+ {
2486
+ "type": 1,
2487
+ "value": "email"
2488
+ }
2489
+ ],
2490
+ "type": 8,
2491
+ "value": "b"
2492
+ },
2493
+ {
2494
+ "type": 0,
2495
+ "value": " com um link para redefinir a senha."
2496
+ }
2497
+ ],
2498
+ "reset_password.title.password_reset": [
2499
+ {
2500
+ "type": 0,
2501
+ "value": "Redefinição de senha"
2502
+ }
2503
+ ],
2504
+ "reset_password_form.action.sign_in": [
2505
+ {
2506
+ "type": 0,
2507
+ "value": "Fazer logon"
2508
+ }
2509
+ ],
2510
+ "reset_password_form.button.reset_password": [
2511
+ {
2512
+ "type": 0,
2513
+ "value": "Redefinir senha"
2514
+ }
2515
+ ],
2516
+ "reset_password_form.message.enter_your_email": [
2517
+ {
2518
+ "type": 0,
2519
+ "value": "Digite seu e-mail para receber instruções sobre como redefinir sua senha"
2520
+ }
2521
+ ],
2522
+ "reset_password_form.message.return_to_sign_in": [
2523
+ {
2524
+ "type": 0,
2525
+ "value": "Ou voltar para"
2526
+ }
2527
+ ],
2528
+ "reset_password_form.title.reset_password": [
2529
+ {
2530
+ "type": 0,
2531
+ "value": "Redefinir senha"
2532
+ }
2533
+ ],
2534
+ "search.action.cancel": [
2535
+ {
2536
+ "type": 0,
2537
+ "value": "Cancelar"
2538
+ }
2539
+ ],
2540
+ "selected_refinements.action.clear_all": [
2541
+ {
2542
+ "type": 0,
2543
+ "value": "Apagar tudo"
2544
+ }
2545
+ ],
2546
+ "shipping_address.button.continue_to_shipping": [
2547
+ {
2548
+ "type": 0,
2549
+ "value": "Ir ao método de entrega"
2550
+ }
2551
+ ],
2552
+ "shipping_address.title.shipping_address": [
2553
+ {
2554
+ "type": 0,
2555
+ "value": "Endereço de entrega"
2556
+ }
2557
+ ],
2558
+ "shipping_address_edit_form.button.save_and_continue": [
2559
+ {
2560
+ "type": 0,
2561
+ "value": "Salvar e ir ao método de entrega"
2562
+ }
2563
+ ],
2564
+ "shipping_address_form.heading.edit_address": [
2565
+ {
2566
+ "type": 0,
2567
+ "value": "Editar endereço"
2568
+ }
2569
+ ],
2570
+ "shipping_address_form.heading.new_address": [
2571
+ {
2572
+ "type": 0,
2573
+ "value": "Adicionar novo endereço"
2574
+ }
2575
+ ],
2576
+ "shipping_address_selection.button.add_address": [
2577
+ {
2578
+ "type": 0,
2579
+ "value": "Adicionar novo endereço"
2580
+ }
2581
+ ],
2582
+ "shipping_address_selection.button.submit": [
2583
+ {
2584
+ "type": 0,
2585
+ "value": "Enviar"
2586
+ }
2587
+ ],
2588
+ "shipping_address_selection.title.add_address": [
2589
+ {
2590
+ "type": 0,
2591
+ "value": "Adicionar novo endereço"
2592
+ }
2593
+ ],
2594
+ "shipping_address_selection.title.edit_shipping": [
2595
+ {
2596
+ "type": 0,
2597
+ "value": "Editar endereço de entrega"
2598
+ }
2599
+ ],
2600
+ "shipping_options.action.send_as_a_gift": [
2601
+ {
2602
+ "type": 0,
2603
+ "value": "Deseja enviar esse item como presente?"
2604
+ }
2605
+ ],
2606
+ "shipping_options.button.continue_to_payment": [
2607
+ {
2608
+ "type": 0,
2609
+ "value": "Ir ao Pagamento"
2610
+ }
2611
+ ],
2612
+ "shipping_options.title.shipping_gift_options": [
2613
+ {
2614
+ "type": 0,
2615
+ "value": "Opções de frete e presente"
2616
+ }
2617
+ ],
2618
+ "signout_confirmation_dialog.button.cancel": [
2619
+ {
2620
+ "type": 0,
2621
+ "value": "Cancelar"
2622
+ }
2623
+ ],
2624
+ "signout_confirmation_dialog.button.sign_out": [
2625
+ {
2626
+ "type": 0,
2627
+ "value": "Fazer logoff"
2628
+ }
2629
+ ],
2630
+ "signout_confirmation_dialog.heading.sign_out": [
2631
+ {
2632
+ "type": 0,
2633
+ "value": "Fazer logoff"
2634
+ }
2635
+ ],
2636
+ "signout_confirmation_dialog.message.sure_to_sign_out": [
2637
+ {
2638
+ "type": 0,
2639
+ "value": "Tem certeza de que deseja fazer logout? Será preciso fazer logon novamente para dar continuidade ao seu pedido atual."
2640
+ }
2641
+ ],
2642
+ "toggle_card.action.edit": [
2643
+ {
2644
+ "type": 0,
2645
+ "value": "Editar"
2646
+ }
2647
+ ],
2648
+ "update_password_fields.button.forgot_password": [
2649
+ {
2650
+ "type": 0,
2651
+ "value": "Esqueceu a senha?"
2652
+ }
2653
+ ],
2654
+ "use_address_fields.error.please_enter_first_name": [
2655
+ {
2656
+ "type": 0,
2657
+ "value": "Insira seu nome."
2658
+ }
2659
+ ],
2660
+ "use_address_fields.error.please_enter_last_name": [
2661
+ {
2662
+ "type": 0,
2663
+ "value": "Insira seu sobrenome."
2664
+ }
2665
+ ],
2666
+ "use_address_fields.error.please_enter_phone_number": [
2667
+ {
2668
+ "type": 0,
2669
+ "value": "Insira seu telefone."
2670
+ }
2671
+ ],
2672
+ "use_address_fields.error.please_enter_your_postal_or_zip": [
2673
+ {
2674
+ "type": 0,
2675
+ "value": "Insira seu "
2676
+ },
2677
+ {
2678
+ "type": 1,
2679
+ "value": "postalOrZip"
2680
+ },
2681
+ {
2682
+ "type": 0,
2683
+ "value": "."
2684
+ }
2685
+ ],
2686
+ "use_address_fields.error.please_select_your_address": [
2687
+ {
2688
+ "type": 0,
2689
+ "value": "Insira seu endereço."
2690
+ }
2691
+ ],
2692
+ "use_address_fields.error.please_select_your_city": [
2693
+ {
2694
+ "type": 0,
2695
+ "value": "Insira sua cidade."
2696
+ }
2697
+ ],
2698
+ "use_address_fields.error.please_select_your_country": [
2699
+ {
2700
+ "type": 0,
2701
+ "value": "Selecione o país."
2702
+ }
2703
+ ],
2704
+ "use_address_fields.error.please_select_your_state_or_province": [
2705
+ {
2706
+ "type": 0,
2707
+ "value": "Selecione o "
2708
+ },
2709
+ {
2710
+ "type": 1,
2711
+ "value": "stateOrProvince"
2712
+ },
2713
+ {
2714
+ "type": 0,
2715
+ "value": "."
2716
+ }
2717
+ ],
2718
+ "use_address_fields.error.required": [
2719
+ {
2720
+ "type": 0,
2721
+ "value": "Requerido"
2722
+ }
2723
+ ],
2724
+ "use_address_fields.error.state_code_invalid": [
2725
+ {
2726
+ "type": 0,
2727
+ "value": "Insira 2 letras para estado/município."
2728
+ }
2729
+ ],
2730
+ "use_address_fields.label.address": [
2731
+ {
2732
+ "type": 0,
2733
+ "value": "Endereço"
2734
+ }
2735
+ ],
2736
+ "use_address_fields.label.city": [
2737
+ {
2738
+ "type": 0,
2739
+ "value": "Cidade"
2740
+ }
2741
+ ],
2742
+ "use_address_fields.label.country": [
2743
+ {
2744
+ "type": 0,
2745
+ "value": "País"
2746
+ }
2747
+ ],
2748
+ "use_address_fields.label.first_name": [
2749
+ {
2750
+ "type": 0,
2751
+ "value": "Nome"
2752
+ }
2753
+ ],
2754
+ "use_address_fields.label.last_name": [
2755
+ {
2756
+ "type": 0,
2757
+ "value": "Sobrenome"
2758
+ }
2759
+ ],
2760
+ "use_address_fields.label.phone": [
2761
+ {
2762
+ "type": 0,
2763
+ "value": "Telefone"
2764
+ }
2765
+ ],
2766
+ "use_address_fields.label.postal_code": [
2767
+ {
2768
+ "type": 0,
2769
+ "value": "Código postal"
2770
+ }
2771
+ ],
2772
+ "use_address_fields.label.preferred": [
2773
+ {
2774
+ "type": 0,
2775
+ "value": "Definir como padrão"
2776
+ }
2777
+ ],
2778
+ "use_address_fields.label.province": [
2779
+ {
2780
+ "type": 0,
2781
+ "value": "Município"
2782
+ }
2783
+ ],
2784
+ "use_address_fields.label.state": [
2785
+ {
2786
+ "type": 0,
2787
+ "value": "Estado"
2788
+ }
2789
+ ],
2790
+ "use_address_fields.label.zipCode": [
2791
+ {
2792
+ "type": 0,
2793
+ "value": "Código postal"
2794
+ }
2795
+ ],
2796
+ "use_credit_card_fields.error.required": [
2797
+ {
2798
+ "type": 0,
2799
+ "value": "Requerido"
2800
+ }
2801
+ ],
2802
+ "use_credit_card_fields.error.required_card_number": [
2803
+ {
2804
+ "type": 0,
2805
+ "value": "Insira o número de seu cartão."
2806
+ }
2807
+ ],
2808
+ "use_credit_card_fields.error.required_expiry": [
2809
+ {
2810
+ "type": 0,
2811
+ "value": "Insira a data de expiração."
2812
+ }
2813
+ ],
2814
+ "use_credit_card_fields.error.required_name": [
2815
+ {
2816
+ "type": 0,
2817
+ "value": "Insira seu nome exatamente como aparece no cartão."
2818
+ }
2819
+ ],
2820
+ "use_credit_card_fields.error.required_security_code": [
2821
+ {
2822
+ "type": 0,
2823
+ "value": "Insira seu código de segurança."
2824
+ }
2825
+ ],
2826
+ "use_credit_card_fields.error.valid_card_number": [
2827
+ {
2828
+ "type": 0,
2829
+ "value": "Insira um número de cartão válido."
2830
+ }
2831
+ ],
2832
+ "use_credit_card_fields.error.valid_date": [
2833
+ {
2834
+ "type": 0,
2835
+ "value": "Insira uma data válida."
2836
+ }
2837
+ ],
2838
+ "use_credit_card_fields.error.valid_name": [
2839
+ {
2840
+ "type": 0,
2841
+ "value": "Insira um nome válido."
2842
+ }
2843
+ ],
2844
+ "use_credit_card_fields.error.valid_security_code": [
2845
+ {
2846
+ "type": 0,
2847
+ "value": "Insira um código de segurança válido."
2848
+ }
2849
+ ],
2850
+ "use_credit_card_fields.label.card_number": [
2851
+ {
2852
+ "type": 0,
2853
+ "value": "Número de cartão"
2854
+ }
2855
+ ],
2856
+ "use_credit_card_fields.label.card_type": [
2857
+ {
2858
+ "type": 0,
2859
+ "value": "Tipo de cartão"
2860
+ }
2861
+ ],
2862
+ "use_credit_card_fields.label.expiry": [
2863
+ {
2864
+ "type": 0,
2865
+ "value": "Data de expiração"
2866
+ }
2867
+ ],
2868
+ "use_credit_card_fields.label.name": [
2869
+ {
2870
+ "type": 0,
2871
+ "value": "Nome no cartão"
2872
+ }
2873
+ ],
2874
+ "use_credit_card_fields.label.security_code": [
2875
+ {
2876
+ "type": 0,
2877
+ "value": "Código de segurança"
2878
+ }
2879
+ ],
2880
+ "use_login_fields.error.required_email": [
2881
+ {
2882
+ "type": 0,
2883
+ "value": "Insira seu endereço de e-mail."
2884
+ }
2885
+ ],
2886
+ "use_login_fields.error.required_password": [
2887
+ {
2888
+ "type": 0,
2889
+ "value": "Insira sua senha."
2890
+ }
2891
+ ],
2892
+ "use_login_fields.label.email": [
2893
+ {
2894
+ "type": 0,
2895
+ "value": "E-mail"
2896
+ }
2897
+ ],
2898
+ "use_login_fields.label.password": [
2899
+ {
2900
+ "type": 0,
2901
+ "value": "Senha"
2902
+ }
2903
+ ],
2904
+ "use_product.message.inventory_remaining": [
2905
+ {
2906
+ "type": 0,
2907
+ "value": "Somente "
2908
+ },
2909
+ {
2910
+ "type": 1,
2911
+ "value": "stockLevel"
2912
+ },
2913
+ {
2914
+ "type": 0,
2915
+ "value": " restante(s)!"
2916
+ }
2917
+ ],
2918
+ "use_product.message.out_of_stock": [
2919
+ {
2920
+ "type": 0,
2921
+ "value": "Fora de estoque"
2922
+ }
2923
+ ],
2924
+ "use_profile_fields.error.required_email": [
2925
+ {
2926
+ "type": 0,
2927
+ "value": "Insira um endereço de e-mail válido."
2928
+ }
2929
+ ],
2930
+ "use_profile_fields.error.required_first_name": [
2931
+ {
2932
+ "type": 0,
2933
+ "value": "Insira seu nome."
2934
+ }
2935
+ ],
2936
+ "use_profile_fields.error.required_last_name": [
2937
+ {
2938
+ "type": 0,
2939
+ "value": "Insira seu sobrenome."
2940
+ }
2941
+ ],
2942
+ "use_profile_fields.error.required_phone": [
2943
+ {
2944
+ "type": 0,
2945
+ "value": "Insira seu telefone."
2946
+ }
2947
+ ],
2948
+ "use_profile_fields.label.email": [
2949
+ {
2950
+ "type": 0,
2951
+ "value": "E-mail"
2952
+ }
2953
+ ],
2954
+ "use_profile_fields.label.first_name": [
2955
+ {
2956
+ "type": 0,
2957
+ "value": "Nome"
2958
+ }
2959
+ ],
2960
+ "use_profile_fields.label.last_name": [
2961
+ {
2962
+ "type": 0,
2963
+ "value": "Sobrenome"
2964
+ }
2965
+ ],
2966
+ "use_profile_fields.label.phone": [
2967
+ {
2968
+ "type": 0,
2969
+ "value": "Número de telefone"
2970
+ }
2971
+ ],
2972
+ "use_promo_code_fields.error.required_promo_code": [
2973
+ {
2974
+ "type": 0,
2975
+ "value": "Forneça um código promocional válido."
2976
+ }
2977
+ ],
2978
+ "use_promo_code_fields.label.promo_code": [
2979
+ {
2980
+ "type": 0,
2981
+ "value": "Código promocional"
2982
+ }
2983
+ ],
2984
+ "use_promocode.error.check_the_code": [
2985
+ {
2986
+ "type": 0,
2987
+ "value": "Verifique o código e tente novamente. Talvez ele já tenha sido utilizado ou a promoção já não é mais válida."
2988
+ }
2989
+ ],
2990
+ "use_promocode.info.promo_applied": [
2991
+ {
2992
+ "type": 0,
2993
+ "value": "Promoção aplicada"
2994
+ }
2995
+ ],
2996
+ "use_promocode.info.promo_removed": [
2997
+ {
2998
+ "type": 0,
2999
+ "value": "Promoção removida"
3000
+ }
3001
+ ],
3002
+ "use_registration_fields.error.contain_number": [
3003
+ {
3004
+ "type": 0,
3005
+ "value": "A senha deve conter pelo menos 1 número."
3006
+ }
3007
+ ],
3008
+ "use_registration_fields.error.lowercase_letter": [
3009
+ {
3010
+ "type": 0,
3011
+ "value": "A senha deve conter pelo menos 1 letra minúscula."
3012
+ }
3013
+ ],
3014
+ "use_registration_fields.error.minimum_characters": [
3015
+ {
3016
+ "type": 0,
3017
+ "value": "A senha deve conter pelo menos 8 caracteres."
3018
+ }
3019
+ ],
3020
+ "use_registration_fields.error.required_email": [
3021
+ {
3022
+ "type": 0,
3023
+ "value": "Insira um endereço de e-mail válido."
3024
+ }
3025
+ ],
3026
+ "use_registration_fields.error.required_first_name": [
3027
+ {
3028
+ "type": 0,
3029
+ "value": "Insira seu nome."
3030
+ }
3031
+ ],
3032
+ "use_registration_fields.error.required_last_name": [
3033
+ {
3034
+ "type": 0,
3035
+ "value": "Insira seu sobrenome."
3036
+ }
3037
+ ],
3038
+ "use_registration_fields.error.required_password": [
3039
+ {
3040
+ "type": 0,
3041
+ "value": "Crie uma senha."
3042
+ }
3043
+ ],
3044
+ "use_registration_fields.error.special_character": [
3045
+ {
3046
+ "type": 0,
3047
+ "value": "A senha deve conter pelo menos 1 caractere especial."
3048
+ }
3049
+ ],
3050
+ "use_registration_fields.error.uppercase_letter": [
3051
+ {
3052
+ "type": 0,
3053
+ "value": "A senha deve conter pelo menos 1 letra maiúscula."
3054
+ }
3055
+ ],
3056
+ "use_registration_fields.label.email": [
3057
+ {
3058
+ "type": 0,
3059
+ "value": "E-mail"
3060
+ }
3061
+ ],
3062
+ "use_registration_fields.label.first_name": [
3063
+ {
3064
+ "type": 0,
3065
+ "value": "Nome"
3066
+ }
3067
+ ],
3068
+ "use_registration_fields.label.last_name": [
3069
+ {
3070
+ "type": 0,
3071
+ "value": "Sobrenome"
3072
+ }
3073
+ ],
3074
+ "use_registration_fields.label.password": [
3075
+ {
3076
+ "type": 0,
3077
+ "value": "Senha"
3078
+ }
3079
+ ],
3080
+ "use_registration_fields.label.sign_up_to_emails": [
3081
+ {
3082
+ "type": 0,
3083
+ "value": "Fazer o meu registro para receber e-mails da Salesforce (você pode cancelar sua inscrição quando quiser)"
3084
+ }
3085
+ ],
3086
+ "use_reset_password_fields.error.required_email": [
3087
+ {
3088
+ "type": 0,
3089
+ "value": "Insira um endereço de e-mail válido."
3090
+ }
3091
+ ],
3092
+ "use_reset_password_fields.label.email": [
3093
+ {
3094
+ "type": 0,
3095
+ "value": "E-mail"
3096
+ }
3097
+ ],
3098
+ "use_update_password_fields.error.contain_number": [
3099
+ {
3100
+ "type": 0,
3101
+ "value": "A senha deve conter pelo menos 1 número."
3102
+ }
3103
+ ],
3104
+ "use_update_password_fields.error.lowercase_letter": [
3105
+ {
3106
+ "type": 0,
3107
+ "value": "A senha deve conter pelo menos 1 letra minúscula."
3108
+ }
3109
+ ],
3110
+ "use_update_password_fields.error.minimum_characters": [
3111
+ {
3112
+ "type": 0,
3113
+ "value": "A senha deve conter pelo menos 8 caracteres."
3114
+ }
3115
+ ],
3116
+ "use_update_password_fields.error.required_new_password": [
3117
+ {
3118
+ "type": 0,
3119
+ "value": "Forneça uma nova senha."
3120
+ }
3121
+ ],
3122
+ "use_update_password_fields.error.required_password": [
3123
+ {
3124
+ "type": 0,
3125
+ "value": "Insira sua senha."
3126
+ }
3127
+ ],
3128
+ "use_update_password_fields.error.special_character": [
3129
+ {
3130
+ "type": 0,
3131
+ "value": "A senha deve conter pelo menos 1 caractere especial."
3132
+ }
3133
+ ],
3134
+ "use_update_password_fields.error.uppercase_letter": [
3135
+ {
3136
+ "type": 0,
3137
+ "value": "A senha deve conter pelo menos 1 letra maiúscula."
3138
+ }
3139
+ ],
3140
+ "use_update_password_fields.label.current_password": [
3141
+ {
3142
+ "type": 0,
3143
+ "value": "Senha atual"
3144
+ }
3145
+ ],
3146
+ "use_update_password_fields.label.new_password": [
3147
+ {
3148
+ "type": 0,
3149
+ "value": "Nova senha"
3150
+ }
3151
+ ],
3152
+ "wishlist_primary_action.button.add_to_cart": [
3153
+ {
3154
+ "type": 0,
3155
+ "value": "Adicionar ao carrinho"
3156
+ }
3157
+ ],
3158
+ "wishlist_primary_action.button.select_options": [
3159
+ {
3160
+ "type": 0,
3161
+ "value": "Selecionar Opções"
3162
+ }
3163
+ ],
3164
+ "wishlist_primary_action.info.added_to_cart": [
3165
+ {
3166
+ "type": 1,
3167
+ "value": "quantity"
3168
+ },
3169
+ {
3170
+ "type": 0,
3171
+ "value": " "
3172
+ },
3173
+ {
3174
+ "offset": 0,
3175
+ "options": {
3176
+ "one": {
3177
+ "value": [
3178
+ {
3179
+ "type": 0,
3180
+ "value": "item"
3181
+ }
3182
+ ]
3183
+ },
3184
+ "other": {
3185
+ "value": [
3186
+ {
3187
+ "type": 0,
3188
+ "value": "itens"
3189
+ }
3190
+ ]
3191
+ }
3192
+ },
3193
+ "pluralType": "cardinal",
3194
+ "type": 6,
3195
+ "value": "quantity"
3196
+ },
3197
+ {
3198
+ "type": 0,
3199
+ "value": " adicionado(s) ao carrinho"
3200
+ }
3201
+ ],
3202
+ "wishlist_secondary_button_group.action.remove": [
3203
+ {
3204
+ "type": 0,
3205
+ "value": "Remover"
3206
+ }
3207
+ ],
3208
+ "wishlist_secondary_button_group.info.item_removed": [
3209
+ {
3210
+ "type": 0,
3211
+ "value": "Item removido da lista de desejos"
3212
+ }
3213
+ ],
3214
+ "with_registration.info.please_sign_in": [
3215
+ {
3216
+ "type": 0,
3217
+ "value": "Faça logon para continuar!"
3218
+ }
3219
+ ]
3220
+ }