@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,3208 @@
1
+ {
2
+ "account.accordion.button.my_account": [
3
+ {
4
+ "type": 0,
5
+ "value": "我的帳戶"
6
+ }
7
+ ],
8
+ "account.heading.my_account": [
9
+ {
10
+ "type": 0,
11
+ "value": "我的帳戶"
12
+ }
13
+ ],
14
+ "account.logout_button.button.log_out": [
15
+ {
16
+ "type": 0,
17
+ "value": "登出"
18
+ }
19
+ ],
20
+ "account_addresses.badge.default": [
21
+ {
22
+ "type": 0,
23
+ "value": "預設"
24
+ }
25
+ ],
26
+ "account_addresses.button.add_address": [
27
+ {
28
+ "type": 0,
29
+ "value": "新增地址"
30
+ }
31
+ ],
32
+ "account_addresses.info.address_updated": [
33
+ {
34
+ "type": 0,
35
+ "value": "地址已更新"
36
+ }
37
+ ],
38
+ "account_addresses.info.new_address_saved": [
39
+ {
40
+ "type": 0,
41
+ "value": "新地址已儲存"
42
+ }
43
+ ],
44
+ "account_addresses.page_action_placeholder.button.add_address": [
45
+ {
46
+ "type": 0,
47
+ "value": "新增地址"
48
+ }
49
+ ],
50
+ "account_addresses.page_action_placeholder.heading.no_saved_addresses": [
51
+ {
52
+ "type": 0,
53
+ "value": "沒有已儲存的地址"
54
+ }
55
+ ],
56
+ "account_addresses.page_action_placeholder.message.add_new_address": [
57
+ {
58
+ "type": 0,
59
+ "value": "新增地址,加快結帳流程。"
60
+ }
61
+ ],
62
+ "account_addresses.title.addresses": [
63
+ {
64
+ "type": 0,
65
+ "value": "地址"
66
+ }
67
+ ],
68
+ "account_detail.title.account_details": [
69
+ {
70
+ "type": 0,
71
+ "value": "帳戶詳細資料"
72
+ }
73
+ ],
74
+ "account_order_detail.heading.billing_address": [
75
+ {
76
+ "type": 0,
77
+ "value": "帳單地址"
78
+ }
79
+ ],
80
+ "account_order_detail.heading.num_of_items": [
81
+ {
82
+ "type": 1,
83
+ "value": "count"
84
+ },
85
+ {
86
+ "type": 0,
87
+ "value": " 件商品"
88
+ }
89
+ ],
90
+ "account_order_detail.heading.payment_method": [
91
+ {
92
+ "type": 0,
93
+ "value": "付款方式"
94
+ }
95
+ ],
96
+ "account_order_detail.heading.shipping_address": [
97
+ {
98
+ "type": 0,
99
+ "value": "運送地址"
100
+ }
101
+ ],
102
+ "account_order_detail.heading.shipping_method": [
103
+ {
104
+ "type": 0,
105
+ "value": "運送方式"
106
+ }
107
+ ],
108
+ "account_order_detail.label.order_number": [
109
+ {
110
+ "type": 0,
111
+ "value": "訂單編號:"
112
+ },
113
+ {
114
+ "type": 1,
115
+ "value": "orderNumber"
116
+ }
117
+ ],
118
+ "account_order_detail.label.ordered_date": [
119
+ {
120
+ "type": 0,
121
+ "value": "下單日期:"
122
+ },
123
+ {
124
+ "type": 1,
125
+ "value": "date"
126
+ }
127
+ ],
128
+ "account_order_detail.label.pending_tracking_number": [
129
+ {
130
+ "type": 0,
131
+ "value": "待處理"
132
+ }
133
+ ],
134
+ "account_order_detail.label.tracking_number": [
135
+ {
136
+ "type": 0,
137
+ "value": "追蹤編號"
138
+ }
139
+ ],
140
+ "account_order_detail.link.back_to_history": [
141
+ {
142
+ "type": 0,
143
+ "value": "返回訂單記錄"
144
+ }
145
+ ],
146
+ "account_order_detail.title.order_details": [
147
+ {
148
+ "type": 0,
149
+ "value": "訂單詳細資料"
150
+ }
151
+ ],
152
+ "account_order_history.button.continue_shopping": [
153
+ {
154
+ "type": 0,
155
+ "value": "繼續選購"
156
+ }
157
+ ],
158
+ "account_order_history.description.once_you_place_order": [
159
+ {
160
+ "type": 0,
161
+ "value": "下訂單後,詳細資料將會在這裡顯示。"
162
+ }
163
+ ],
164
+ "account_order_history.heading.no_order_yet": [
165
+ {
166
+ "type": 0,
167
+ "value": "您尚未下訂單。"
168
+ }
169
+ ],
170
+ "account_order_history.label.num_of_items": [
171
+ {
172
+ "type": 1,
173
+ "value": "count"
174
+ },
175
+ {
176
+ "type": 0,
177
+ "value": " 件商品"
178
+ }
179
+ ],
180
+ "account_order_history.label.order_number": [
181
+ {
182
+ "type": 0,
183
+ "value": "訂單編號:"
184
+ },
185
+ {
186
+ "type": 1,
187
+ "value": "orderNumber"
188
+ }
189
+ ],
190
+ "account_order_history.label.ordered_date": [
191
+ {
192
+ "type": 0,
193
+ "value": "下單日期:"
194
+ },
195
+ {
196
+ "type": 1,
197
+ "value": "date"
198
+ }
199
+ ],
200
+ "account_order_history.label.shipped_to": [
201
+ {
202
+ "type": 0,
203
+ "value": "出貨至:"
204
+ },
205
+ {
206
+ "type": 1,
207
+ "value": "name"
208
+ }
209
+ ],
210
+ "account_order_history.link.view_details": [
211
+ {
212
+ "type": 0,
213
+ "value": "檢視詳細資料"
214
+ }
215
+ ],
216
+ "account_order_history.title.order_history": [
217
+ {
218
+ "type": 0,
219
+ "value": "訂單記錄"
220
+ }
221
+ ],
222
+ "account_payment_methods.button.add_method": [
223
+ {
224
+ "type": 0,
225
+ "value": "新增付款方式"
226
+ }
227
+ ],
228
+ "account_payment_methods.description.add_method_for_faster_checkout": [
229
+ {
230
+ "type": 0,
231
+ "value": "新增付款方式,加快結帳流程。"
232
+ }
233
+ ],
234
+ "account_payment_methods.heading.no_saved_methods": [
235
+ {
236
+ "type": 0,
237
+ "value": "沒有已儲存的付款方式"
238
+ }
239
+ ],
240
+ "account_payment_methods.info.new_method_saved": [
241
+ {
242
+ "type": 0,
243
+ "value": "新付款方式已儲存"
244
+ }
245
+ ],
246
+ "account_payment_methods.title.payment_methods": [
247
+ {
248
+ "type": 0,
249
+ "value": "付款方式"
250
+ }
251
+ ],
252
+ "account_wishlist.button.continue_shopping": [
253
+ {
254
+ "type": 0,
255
+ "value": "繼續選購"
256
+ }
257
+ ],
258
+ "account_wishlist.description.continue_shopping": [
259
+ {
260
+ "type": 0,
261
+ "value": "繼續選購,並將商品新增至願望清單。"
262
+ }
263
+ ],
264
+ "account_wishlist.heading.no_wishlist": [
265
+ {
266
+ "type": 0,
267
+ "value": "沒有願望清單商品"
268
+ }
269
+ ],
270
+ "account_wishlist.title.wishlist": [
271
+ {
272
+ "type": 0,
273
+ "value": "願望清單"
274
+ }
275
+ ],
276
+ "action_card.action.edit": [
277
+ {
278
+ "type": 0,
279
+ "value": "編輯"
280
+ }
281
+ ],
282
+ "action_card.action.remove": [
283
+ {
284
+ "type": 0,
285
+ "value": "移除"
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": "件商品"
305
+ }
306
+ ]
307
+ },
308
+ "other": {
309
+ "value": [
310
+ {
311
+ "type": 0,
312
+ "value": "件商品"
313
+ }
314
+ ]
315
+ }
316
+ },
317
+ "pluralType": "cardinal",
318
+ "type": 6,
319
+ "value": "quantity"
320
+ },
321
+ {
322
+ "type": 0,
323
+ "value": "已新增至購物車"
324
+ }
325
+ ],
326
+ "add_to_cart_modal.label.cart_subtotal": [
327
+ {
328
+ "type": 0,
329
+ "value": "購物車小計 ("
330
+ },
331
+ {
332
+ "type": 1,
333
+ "value": "itemAccumulatedCount"
334
+ },
335
+ {
336
+ "type": 0,
337
+ "value": " 件商品)"
338
+ }
339
+ ],
340
+ "add_to_cart_modal.label.quantity": [
341
+ {
342
+ "type": 0,
343
+ "value": "數量"
344
+ }
345
+ ],
346
+ "add_to_cart_modal.link.checkout": [
347
+ {
348
+ "type": 0,
349
+ "value": "繼續以結帳"
350
+ }
351
+ ],
352
+ "add_to_cart_modal.link.view_cart": [
353
+ {
354
+ "type": 0,
355
+ "value": "檢視購物車"
356
+ }
357
+ ],
358
+ "add_to_cart_modal.recommended_products.title.might_also_like": [
359
+ {
360
+ "type": 0,
361
+ "value": "您可能也喜歡"
362
+ }
363
+ ],
364
+ "auth_modal.description.now_signed_in": [
365
+ {
366
+ "type": 0,
367
+ "value": "您現在已登入。"
368
+ }
369
+ ],
370
+ "auth_modal.error.incorrect_email_or_password": [
371
+ {
372
+ "type": 0,
373
+ "value": "您的電子郵件或密碼不正確。請再試一次。"
374
+ }
375
+ ],
376
+ "auth_modal.info.welcome_user": [
377
+ {
378
+ "type": 1,
379
+ "value": "name"
380
+ },
381
+ {
382
+ "type": 0,
383
+ "value": ",歡迎:"
384
+ }
385
+ ],
386
+ "auth_modal.password_reset_success.button.back_to_sign_in": [
387
+ {
388
+ "type": 0,
389
+ "value": "返回登入"
390
+ }
391
+ ],
392
+ "auth_modal.password_reset_success.info.will_email_shortly": [
393
+ {
394
+ "type": 0,
395
+ "value": "您很快就會在 "
396
+ },
397
+ {
398
+ "children": [
399
+ {
400
+ "type": 1,
401
+ "value": "email"
402
+ }
403
+ ],
404
+ "type": 8,
405
+ "value": "b"
406
+ },
407
+ {
408
+ "type": 0,
409
+ "value": " 收到一封電子郵件,內含重設密碼的連結。"
410
+ }
411
+ ],
412
+ "auth_modal.password_reset_success.title.password_reset": [
413
+ {
414
+ "type": 0,
415
+ "value": "重設密碼"
416
+ }
417
+ ],
418
+ "card_payment_form.heading.new_payment_method": [
419
+ {
420
+ "type": 0,
421
+ "value": "新增付款方式"
422
+ }
423
+ ],
424
+ "cart.info.removed_from_cart": [
425
+ {
426
+ "type": 0,
427
+ "value": "已從購物車移除商品"
428
+ }
429
+ ],
430
+ "cart.recommended_products.title.may_also_like": [
431
+ {
432
+ "type": 0,
433
+ "value": "您可能也喜歡"
434
+ }
435
+ ],
436
+ "cart.recommended_products.title.recently_viewed": [
437
+ {
438
+ "type": 0,
439
+ "value": "最近檢視"
440
+ }
441
+ ],
442
+ "cart_cta.link.checkout": [
443
+ {
444
+ "type": 0,
445
+ "value": "繼續以結帳"
446
+ }
447
+ ],
448
+ "cart_secondary_button_group.action.added_to_wishlist": [
449
+ {
450
+ "type": 0,
451
+ "value": "新增至願望清單"
452
+ }
453
+ ],
454
+ "cart_secondary_button_group.action.edit": [
455
+ {
456
+ "type": 0,
457
+ "value": "編輯"
458
+ }
459
+ ],
460
+ "cart_secondary_button_group.action.remove": [
461
+ {
462
+ "type": 0,
463
+ "value": "移除"
464
+ }
465
+ ],
466
+ "cart_secondary_button_group.label.this_is_gift": [
467
+ {
468
+ "type": 0,
469
+ "value": "這是禮物。"
470
+ }
471
+ ],
472
+ "cart_secondary_button_group.link_learn_more": [
473
+ {
474
+ "type": 0,
475
+ "value": "瞭解更多"
476
+ }
477
+ ],
478
+ "cart_skeleton.heading.order_summary": [
479
+ {
480
+ "type": 0,
481
+ "value": "訂單摘要"
482
+ }
483
+ ],
484
+ "cart_skeleton.title.cart": [
485
+ {
486
+ "type": 0,
487
+ "value": "購物車"
488
+ }
489
+ ],
490
+ "cart_title.title.cart_num_of_items": [
491
+ {
492
+ "type": 0,
493
+ "value": "購物車 ("
494
+ },
495
+ {
496
+ "offset": 0,
497
+ "options": {
498
+ "=0": {
499
+ "value": [
500
+ {
501
+ "type": 0,
502
+ "value": "0 件商品"
503
+ }
504
+ ]
505
+ },
506
+ "one": {
507
+ "value": [
508
+ {
509
+ "type": 7
510
+ },
511
+ {
512
+ "type": 0,
513
+ "value": " 件商品"
514
+ }
515
+ ]
516
+ },
517
+ "other": {
518
+ "value": [
519
+ {
520
+ "type": 7
521
+ },
522
+ {
523
+ "type": 0,
524
+ "value": " 件商品"
525
+ }
526
+ ]
527
+ }
528
+ },
529
+ "pluralType": "cardinal",
530
+ "type": 6,
531
+ "value": "itemCount"
532
+ },
533
+ {
534
+ "type": 0,
535
+ "value": ")"
536
+ }
537
+ ],
538
+ "cc_radio_group.action.remove": [
539
+ {
540
+ "type": 0,
541
+ "value": "移除"
542
+ }
543
+ ],
544
+ "cc_radio_group.button.add_new_card": [
545
+ {
546
+ "type": 0,
547
+ "value": "新增卡片"
548
+ }
549
+ ],
550
+ "checkout.button.place_order": [
551
+ {
552
+ "type": 0,
553
+ "value": "送出訂單"
554
+ }
555
+ ],
556
+ "checkout.message.generic_error": [
557
+ {
558
+ "type": 0,
559
+ "value": "結帳時發生意外錯誤。"
560
+ }
561
+ ],
562
+ "checkout_confirmation.button.create_account": [
563
+ {
564
+ "type": 0,
565
+ "value": "建立帳戶"
566
+ }
567
+ ],
568
+ "checkout_confirmation.heading.billing_address": [
569
+ {
570
+ "type": 0,
571
+ "value": "帳單地址"
572
+ }
573
+ ],
574
+ "checkout_confirmation.heading.create_account": [
575
+ {
576
+ "type": 0,
577
+ "value": "建立帳戶,加快結帳流程"
578
+ }
579
+ ],
580
+ "checkout_confirmation.heading.credit_card": [
581
+ {
582
+ "type": 0,
583
+ "value": "信用卡"
584
+ }
585
+ ],
586
+ "checkout_confirmation.heading.delivery_details": [
587
+ {
588
+ "type": 0,
589
+ "value": "運送詳細資料"
590
+ }
591
+ ],
592
+ "checkout_confirmation.heading.order_summary": [
593
+ {
594
+ "type": 0,
595
+ "value": "訂單摘要"
596
+ }
597
+ ],
598
+ "checkout_confirmation.heading.payment_details": [
599
+ {
600
+ "type": 0,
601
+ "value": "付款詳細資料"
602
+ }
603
+ ],
604
+ "checkout_confirmation.heading.shipping_address": [
605
+ {
606
+ "type": 0,
607
+ "value": "運送地址"
608
+ }
609
+ ],
610
+ "checkout_confirmation.heading.shipping_method": [
611
+ {
612
+ "type": 0,
613
+ "value": "運送方式"
614
+ }
615
+ ],
616
+ "checkout_confirmation.heading.thank_you_for_order": [
617
+ {
618
+ "type": 0,
619
+ "value": "感謝您的訂購!"
620
+ }
621
+ ],
622
+ "checkout_confirmation.label.free": [
623
+ {
624
+ "type": 0,
625
+ "value": "免費"
626
+ }
627
+ ],
628
+ "checkout_confirmation.label.order_number": [
629
+ {
630
+ "type": 0,
631
+ "value": "訂單編號"
632
+ }
633
+ ],
634
+ "checkout_confirmation.label.order_total": [
635
+ {
636
+ "type": 0,
637
+ "value": "訂單總計"
638
+ }
639
+ ],
640
+ "checkout_confirmation.label.promo_applied": [
641
+ {
642
+ "type": 0,
643
+ "value": "已套用促銷"
644
+ }
645
+ ],
646
+ "checkout_confirmation.label.shipping": [
647
+ {
648
+ "type": 0,
649
+ "value": "運送"
650
+ }
651
+ ],
652
+ "checkout_confirmation.label.subtotal": [
653
+ {
654
+ "type": 0,
655
+ "value": "小計"
656
+ }
657
+ ],
658
+ "checkout_confirmation.label.tax": [
659
+ {
660
+ "type": 0,
661
+ "value": "稅項"
662
+ }
663
+ ],
664
+ "checkout_confirmation.link.continue_shopping": [
665
+ {
666
+ "type": 0,
667
+ "value": "繼續選購"
668
+ }
669
+ ],
670
+ "checkout_confirmation.link.login": [
671
+ {
672
+ "type": 0,
673
+ "value": "於此處登入"
674
+ }
675
+ ],
676
+ "checkout_confirmation.message.already_has_account": [
677
+ {
678
+ "type": 0,
679
+ "value": "此電子郵件已擁有帳戶。"
680
+ }
681
+ ],
682
+ "checkout_confirmation.message.num_of_items_in_order": [
683
+ {
684
+ "offset": 0,
685
+ "options": {
686
+ "=0": {
687
+ "value": [
688
+ {
689
+ "type": 0,
690
+ "value": "0 件商品"
691
+ }
692
+ ]
693
+ },
694
+ "one": {
695
+ "value": [
696
+ {
697
+ "type": 7
698
+ },
699
+ {
700
+ "type": 0,
701
+ "value": " 件商品"
702
+ }
703
+ ]
704
+ },
705
+ "other": {
706
+ "value": [
707
+ {
708
+ "type": 7
709
+ },
710
+ {
711
+ "type": 0,
712
+ "value": " 件商品"
713
+ }
714
+ ]
715
+ }
716
+ },
717
+ "pluralType": "cardinal",
718
+ "type": 6,
719
+ "value": "itemCount"
720
+ }
721
+ ],
722
+ "checkout_confirmation.message.will_email_shortly": [
723
+ {
724
+ "type": 0,
725
+ "value": "我們很快就會寄送電子郵件至 "
726
+ },
727
+ {
728
+ "children": [
729
+ {
730
+ "type": 1,
731
+ "value": "email"
732
+ }
733
+ ],
734
+ "type": 8,
735
+ "value": "b"
736
+ },
737
+ {
738
+ "type": 0,
739
+ "value": ",內含您的確認號碼和收據。"
740
+ }
741
+ ],
742
+ "checkout_footer.link.privacy_policy": [
743
+ {
744
+ "type": 0,
745
+ "value": "隱私政策"
746
+ }
747
+ ],
748
+ "checkout_footer.link.returns_exchanges": [
749
+ {
750
+ "type": 0,
751
+ "value": "退貨與換貨"
752
+ }
753
+ ],
754
+ "checkout_footer.link.shipping": [
755
+ {
756
+ "type": 0,
757
+ "value": "運送"
758
+ }
759
+ ],
760
+ "checkout_footer.link.site_map": [
761
+ {
762
+ "type": 0,
763
+ "value": "網站地圖"
764
+ }
765
+ ],
766
+ "checkout_footer.link.terms_conditions": [
767
+ {
768
+ "type": 0,
769
+ "value": "條款與條件"
770
+ }
771
+ ],
772
+ "checkout_footer.message.copyright": [
773
+ {
774
+ "type": 0,
775
+ "value": "Salesforce 或相關企業。保留一切權利。這只是一個示範商店。在此下單將「不會」進行處理。"
776
+ }
777
+ ],
778
+ "checkout_header.link.cart": [
779
+ {
780
+ "type": 0,
781
+ "value": "返回購物車"
782
+ }
783
+ ],
784
+ "checkout_payment.action.remove": [
785
+ {
786
+ "type": 0,
787
+ "value": "移除"
788
+ }
789
+ ],
790
+ "checkout_payment.button.review_order": [
791
+ {
792
+ "type": 0,
793
+ "value": "檢查訂單"
794
+ }
795
+ ],
796
+ "checkout_payment.heading.billing_address": [
797
+ {
798
+ "type": 0,
799
+ "value": "帳單地址"
800
+ }
801
+ ],
802
+ "checkout_payment.heading.credit_card": [
803
+ {
804
+ "type": 0,
805
+ "value": "信用卡"
806
+ }
807
+ ],
808
+ "checkout_payment.label.same_as_shipping": [
809
+ {
810
+ "type": 0,
811
+ "value": "與運送地址相同"
812
+ }
813
+ ],
814
+ "checkout_payment.title.payment": [
815
+ {
816
+ "type": 0,
817
+ "value": "付款"
818
+ }
819
+ ],
820
+ "confirmation_modal.default.action.no": [
821
+ {
822
+ "type": 0,
823
+ "value": "否"
824
+ }
825
+ ],
826
+ "confirmation_modal.default.action.yes": [
827
+ {
828
+ "type": 0,
829
+ "value": "是"
830
+ }
831
+ ],
832
+ "confirmation_modal.default.message.you_want_to_continue": [
833
+ {
834
+ "type": 0,
835
+ "value": "確定要繼續嗎?"
836
+ }
837
+ ],
838
+ "confirmation_modal.default.title.confirm_action": [
839
+ {
840
+ "type": 0,
841
+ "value": "確認動作"
842
+ }
843
+ ],
844
+ "confirmation_modal.remove_cart_item.action.no": [
845
+ {
846
+ "type": 0,
847
+ "value": "否,保留商品"
848
+ }
849
+ ],
850
+ "confirmation_modal.remove_cart_item.action.yes": [
851
+ {
852
+ "type": 0,
853
+ "value": "是,移除商品"
854
+ }
855
+ ],
856
+ "confirmation_modal.remove_cart_item.message.sure_to_remove": [
857
+ {
858
+ "type": 0,
859
+ "value": "確定要將商品從購物車中移除嗎?"
860
+ }
861
+ ],
862
+ "confirmation_modal.remove_cart_item.title.confirm_remove": [
863
+ {
864
+ "type": 0,
865
+ "value": "確認移除商品"
866
+ }
867
+ ],
868
+ "confirmation_modal.remove_wishlist_item.action.no": [
869
+ {
870
+ "type": 0,
871
+ "value": "否,保留商品"
872
+ }
873
+ ],
874
+ "confirmation_modal.remove_wishlist_item.action.yes": [
875
+ {
876
+ "type": 0,
877
+ "value": "是,移除商品"
878
+ }
879
+ ],
880
+ "confirmation_modal.remove_wishlist_item.message.sure_to_remove": [
881
+ {
882
+ "type": 0,
883
+ "value": "確定要將商品從願望清單中移除嗎?"
884
+ }
885
+ ],
886
+ "confirmation_modal.remove_wishlist_item.title.confirm_remove": [
887
+ {
888
+ "type": 0,
889
+ "value": "確認移除商品"
890
+ }
891
+ ],
892
+ "contact_info.action.sign_out": [
893
+ {
894
+ "type": 0,
895
+ "value": "登出"
896
+ }
897
+ ],
898
+ "contact_info.button.already_have_account": [
899
+ {
900
+ "type": 0,
901
+ "value": "已經有帳戶了?登入"
902
+ }
903
+ ],
904
+ "contact_info.button.checkout_as_guest": [
905
+ {
906
+ "type": 0,
907
+ "value": "以訪客身份結帳"
908
+ }
909
+ ],
910
+ "contact_info.button.login": [
911
+ {
912
+ "type": 0,
913
+ "value": "登入"
914
+ }
915
+ ],
916
+ "contact_info.error.incorrect_username_or_password": [
917
+ {
918
+ "type": 0,
919
+ "value": "使用者名稱或密碼不正確,請再試一次。"
920
+ }
921
+ ],
922
+ "contact_info.link.forgot_password": [
923
+ {
924
+ "type": 0,
925
+ "value": "忘記密碼了嗎?"
926
+ }
927
+ ],
928
+ "contact_info.title.contact_info": [
929
+ {
930
+ "type": 0,
931
+ "value": "聯絡資訊"
932
+ }
933
+ ],
934
+ "credit_card_fields.tool_tip.security_code": [
935
+ {
936
+ "type": 0,
937
+ "value": "此 3 位數代碼可在您卡片的背面找到。"
938
+ }
939
+ ],
940
+ "credit_card_fields.tool_tip.security_code.american_express": [
941
+ {
942
+ "type": 0,
943
+ "value": "此 4 位數代碼可在您卡片的正面找到。"
944
+ }
945
+ ],
946
+ "drawer_menu.button.account_details": [
947
+ {
948
+ "type": 0,
949
+ "value": "帳戶詳細資料"
950
+ }
951
+ ],
952
+ "drawer_menu.button.addresses": [
953
+ {
954
+ "type": 0,
955
+ "value": "地址"
956
+ }
957
+ ],
958
+ "drawer_menu.button.log_out": [
959
+ {
960
+ "type": 0,
961
+ "value": "登出"
962
+ }
963
+ ],
964
+ "drawer_menu.button.my_account": [
965
+ {
966
+ "type": 0,
967
+ "value": "我的帳戶"
968
+ }
969
+ ],
970
+ "drawer_menu.button.order_history": [
971
+ {
972
+ "type": 0,
973
+ "value": "訂單記錄"
974
+ }
975
+ ],
976
+ "drawer_menu.button.payment_methods": [
977
+ {
978
+ "type": 0,
979
+ "value": "付款方式"
980
+ }
981
+ ],
982
+ "drawer_menu.link.about_us": [
983
+ {
984
+ "type": 0,
985
+ "value": "關於我們"
986
+ }
987
+ ],
988
+ "drawer_menu.link.customer_support": [
989
+ {
990
+ "type": 0,
991
+ "value": "客戶支援"
992
+ }
993
+ ],
994
+ "drawer_menu.link.customer_support.contact_us": [
995
+ {
996
+ "type": 0,
997
+ "value": "聯絡我們"
998
+ }
999
+ ],
1000
+ "drawer_menu.link.customer_support.shipping_and_returns": [
1001
+ {
1002
+ "type": 0,
1003
+ "value": "運送與退貨"
1004
+ }
1005
+ ],
1006
+ "drawer_menu.link.our_company": [
1007
+ {
1008
+ "type": 0,
1009
+ "value": "我們的公司"
1010
+ }
1011
+ ],
1012
+ "drawer_menu.link.privacy_and_security": [
1013
+ {
1014
+ "type": 0,
1015
+ "value": "隱私與安全"
1016
+ }
1017
+ ],
1018
+ "drawer_menu.link.privacy_policy": [
1019
+ {
1020
+ "type": 0,
1021
+ "value": "隱私政策"
1022
+ }
1023
+ ],
1024
+ "drawer_menu.link.shop_all": [
1025
+ {
1026
+ "type": 0,
1027
+ "value": "選購全部"
1028
+ }
1029
+ ],
1030
+ "drawer_menu.link.sign_in": [
1031
+ {
1032
+ "type": 0,
1033
+ "value": "登入"
1034
+ }
1035
+ ],
1036
+ "drawer_menu.link.site_map": [
1037
+ {
1038
+ "type": 0,
1039
+ "value": "網站地圖"
1040
+ }
1041
+ ],
1042
+ "drawer_menu.link.store_locator": [
1043
+ {
1044
+ "type": 0,
1045
+ "value": "商店位置搜尋"
1046
+ }
1047
+ ],
1048
+ "drawer_menu.link.terms_and_conditions": [
1049
+ {
1050
+ "type": 0,
1051
+ "value": "條款與條件"
1052
+ }
1053
+ ],
1054
+ "empty_cart.description.empty_cart": [
1055
+ {
1056
+ "type": 0,
1057
+ "value": "您的購物車是空的。"
1058
+ }
1059
+ ],
1060
+ "empty_cart.link.continue_shopping": [
1061
+ {
1062
+ "type": 0,
1063
+ "value": "繼續選購"
1064
+ }
1065
+ ],
1066
+ "empty_cart.link.sign_in": [
1067
+ {
1068
+ "type": 0,
1069
+ "value": "登入"
1070
+ }
1071
+ ],
1072
+ "empty_cart.message.continue_shopping": [
1073
+ {
1074
+ "type": 0,
1075
+ "value": "繼續選購,並將商品新增至購物車。"
1076
+ }
1077
+ ],
1078
+ "empty_cart.message.sign_in_or_continue_shopping": [
1079
+ {
1080
+ "type": 0,
1081
+ "value": "登入來存取您所儲存的商品,或繼續選購。"
1082
+ }
1083
+ ],
1084
+ "empty_search_results.info.cant_find_anything_for_category": [
1085
+ {
1086
+ "type": 0,
1087
+ "value": "我們找不到"
1088
+ },
1089
+ {
1090
+ "type": 1,
1091
+ "value": "category"
1092
+ },
1093
+ {
1094
+ "type": 0,
1095
+ "value": "的結果。請嘗試搜尋產品或"
1096
+ },
1097
+ {
1098
+ "type": 1,
1099
+ "value": "link"
1100
+ },
1101
+ {
1102
+ "type": 0,
1103
+ "value": "。"
1104
+ }
1105
+ ],
1106
+ "empty_search_results.info.cant_find_anything_for_query": [
1107
+ {
1108
+ "type": 0,
1109
+ "value": "我們找不到「"
1110
+ },
1111
+ {
1112
+ "type": 1,
1113
+ "value": "searchQuery"
1114
+ },
1115
+ {
1116
+ "type": 0,
1117
+ "value": "」的結果。"
1118
+ }
1119
+ ],
1120
+ "empty_search_results.info.double_check_spelling": [
1121
+ {
1122
+ "type": 0,
1123
+ "value": "請確認拼字並再試一次,或"
1124
+ },
1125
+ {
1126
+ "type": 1,
1127
+ "value": "link"
1128
+ },
1129
+ {
1130
+ "type": 0,
1131
+ "value": "。"
1132
+ }
1133
+ ],
1134
+ "empty_search_results.link.contact_us": [
1135
+ {
1136
+ "type": 0,
1137
+ "value": "聯絡我們"
1138
+ }
1139
+ ],
1140
+ "empty_search_results.recommended_products.title.most_viewed": [
1141
+ {
1142
+ "type": 0,
1143
+ "value": "最多檢視"
1144
+ }
1145
+ ],
1146
+ "empty_search_results.recommended_products.title.top_sellers": [
1147
+ {
1148
+ "type": 0,
1149
+ "value": "最暢銷產品"
1150
+ }
1151
+ ],
1152
+ "footer.column.account": [
1153
+ {
1154
+ "type": 0,
1155
+ "value": "帳戶"
1156
+ }
1157
+ ],
1158
+ "footer.column.customer_support": [
1159
+ {
1160
+ "type": 0,
1161
+ "value": "客戶支援"
1162
+ }
1163
+ ],
1164
+ "footer.column.our_company": [
1165
+ {
1166
+ "type": 0,
1167
+ "value": "我們的公司"
1168
+ }
1169
+ ],
1170
+ "footer.link.about_us": [
1171
+ {
1172
+ "type": 0,
1173
+ "value": "關於我們"
1174
+ }
1175
+ ],
1176
+ "footer.link.contact_us": [
1177
+ {
1178
+ "type": 0,
1179
+ "value": "聯絡我們"
1180
+ }
1181
+ ],
1182
+ "footer.link.order_status": [
1183
+ {
1184
+ "type": 0,
1185
+ "value": "訂單狀態"
1186
+ }
1187
+ ],
1188
+ "footer.link.privacy_policy": [
1189
+ {
1190
+ "type": 0,
1191
+ "value": "隱私政策"
1192
+ }
1193
+ ],
1194
+ "footer.link.shipping": [
1195
+ {
1196
+ "type": 0,
1197
+ "value": "運送"
1198
+ }
1199
+ ],
1200
+ "footer.link.signin_create_account": [
1201
+ {
1202
+ "type": 0,
1203
+ "value": "登入或建立帳戶"
1204
+ }
1205
+ ],
1206
+ "footer.link.site_map": [
1207
+ {
1208
+ "type": 0,
1209
+ "value": "網站地圖"
1210
+ }
1211
+ ],
1212
+ "footer.link.store_locator": [
1213
+ {
1214
+ "type": 0,
1215
+ "value": "商店位置搜尋"
1216
+ }
1217
+ ],
1218
+ "footer.link.terms_conditions": [
1219
+ {
1220
+ "type": 0,
1221
+ "value": "條款與條件"
1222
+ }
1223
+ ],
1224
+ "footer.message.copyright": [
1225
+ {
1226
+ "type": 0,
1227
+ "value": "Salesforce 或相關企業。保留一切權利。這只是一個示範商店。在此下單將「不會」進行處理。"
1228
+ }
1229
+ ],
1230
+ "footer.subscribe.button.sign_up": [
1231
+ {
1232
+ "type": 0,
1233
+ "value": "註冊"
1234
+ }
1235
+ ],
1236
+ "footer.subscribe.description.sign_up": [
1237
+ {
1238
+ "type": 0,
1239
+ "value": "註冊來獲得最熱門的優惠消息"
1240
+ }
1241
+ ],
1242
+ "footer.subscribe.heading.first_to_know": [
1243
+ {
1244
+ "type": 0,
1245
+ "value": "搶先獲得消息"
1246
+ }
1247
+ ],
1248
+ "form_action_buttons.button.cancel": [
1249
+ {
1250
+ "type": 0,
1251
+ "value": "取消"
1252
+ }
1253
+ ],
1254
+ "form_action_buttons.button.save": [
1255
+ {
1256
+ "type": 0,
1257
+ "value": "儲存"
1258
+ }
1259
+ ],
1260
+ "global.account.link.account_details": [
1261
+ {
1262
+ "type": 0,
1263
+ "value": "帳戶詳細資料"
1264
+ }
1265
+ ],
1266
+ "global.account.link.addresses": [
1267
+ {
1268
+ "type": 0,
1269
+ "value": "地址"
1270
+ }
1271
+ ],
1272
+ "global.account.link.order_history": [
1273
+ {
1274
+ "type": 0,
1275
+ "value": "訂單記錄"
1276
+ }
1277
+ ],
1278
+ "global.account.link.payment_methods": [
1279
+ {
1280
+ "type": 0,
1281
+ "value": "付款方式"
1282
+ }
1283
+ ],
1284
+ "global.account.link.wishlist": [
1285
+ {
1286
+ "type": 0,
1287
+ "value": "願望清單"
1288
+ }
1289
+ ],
1290
+ "global.error.something_went_wrong": [
1291
+ {
1292
+ "type": 0,
1293
+ "value": "發生錯誤。請再試一次。"
1294
+ }
1295
+ ],
1296
+ "global.info.added_to_wishlist": [
1297
+ {
1298
+ "type": 1,
1299
+ "value": "quantity"
1300
+ },
1301
+ {
1302
+ "type": 0,
1303
+ "value": " "
1304
+ },
1305
+ {
1306
+ "offset": 0,
1307
+ "options": {
1308
+ "one": {
1309
+ "value": [
1310
+ {
1311
+ "type": 0,
1312
+ "value": "件商品"
1313
+ }
1314
+ ]
1315
+ },
1316
+ "other": {
1317
+ "value": [
1318
+ {
1319
+ "type": 0,
1320
+ "value": "件商品"
1321
+ }
1322
+ ]
1323
+ }
1324
+ },
1325
+ "pluralType": "cardinal",
1326
+ "type": 6,
1327
+ "value": "quantity"
1328
+ },
1329
+ {
1330
+ "type": 0,
1331
+ "value": "已新增至願望清單"
1332
+ }
1333
+ ],
1334
+ "global.info.removed_from_wishlist": [
1335
+ {
1336
+ "type": 0,
1337
+ "value": "已從願望清單移除商品"
1338
+ }
1339
+ ],
1340
+ "global.link.added_to_wishlist.view_wishlist": [
1341
+ {
1342
+ "type": 0,
1343
+ "value": "檢視"
1344
+ }
1345
+ ],
1346
+ "header.button.assistive_msg.logo": [
1347
+ {
1348
+ "type": 0,
1349
+ "value": "標誌"
1350
+ }
1351
+ ],
1352
+ "header.button.assistive_msg.menu": [
1353
+ {
1354
+ "type": 0,
1355
+ "value": "選單"
1356
+ }
1357
+ ],
1358
+ "header.button.assistive_msg.my_account": [
1359
+ {
1360
+ "type": 0,
1361
+ "value": "我的帳戶"
1362
+ }
1363
+ ],
1364
+ "header.button.assistive_msg.my_cart": [
1365
+ {
1366
+ "type": 0,
1367
+ "value": "我的購物車"
1368
+ }
1369
+ ],
1370
+ "header.button.assistive_msg.wishlist": [
1371
+ {
1372
+ "type": 0,
1373
+ "value": "願望清單"
1374
+ }
1375
+ ],
1376
+ "header.field.placeholder.search_for_products": [
1377
+ {
1378
+ "type": 0,
1379
+ "value": "搜尋產品..."
1380
+ }
1381
+ ],
1382
+ "header.popover.action.log_out": [
1383
+ {
1384
+ "type": 0,
1385
+ "value": "登出"
1386
+ }
1387
+ ],
1388
+ "header.popover.title.my_account": [
1389
+ {
1390
+ "type": 0,
1391
+ "value": "我的帳戶"
1392
+ }
1393
+ ],
1394
+ "home.description.features": [
1395
+ {
1396
+ "type": 0,
1397
+ "value": "功能皆可立即使用,您只需專注於如何精益求精。"
1398
+ }
1399
+ ],
1400
+ "home.description.here_to_help": [
1401
+ {
1402
+ "type": 0,
1403
+ "value": "聯絡我們的支援人員,"
1404
+ }
1405
+ ],
1406
+ "home.description.here_to_help_line_2": [
1407
+ {
1408
+ "type": 0,
1409
+ "value": "讓他們為您指點迷津。"
1410
+ }
1411
+ ],
1412
+ "home.description.shop_products": [
1413
+ {
1414
+ "type": 0,
1415
+ "value": "此區塊包含來自目錄的內容。"
1416
+ },
1417
+ {
1418
+ "type": 1,
1419
+ "value": "docLink"
1420
+ },
1421
+ {
1422
+ "type": 0,
1423
+ "value": "來瞭解如何取代。"
1424
+ }
1425
+ ],
1426
+ "home.features.description.cart_checkout": [
1427
+ {
1428
+ "type": 0,
1429
+ "value": "為購物者提供購物車和結帳體驗的電子商務最佳做法。"
1430
+ }
1431
+ ],
1432
+ "home.features.description.components": [
1433
+ {
1434
+ "type": 0,
1435
+ "value": "以簡單、模組化、無障礙設計的 React 元件庫 Chakra UI 打造而成。"
1436
+ }
1437
+ ],
1438
+ "home.features.description.einstein_recommendations": [
1439
+ {
1440
+ "type": 0,
1441
+ "value": "透過產品推薦,向每位購物者傳遞下一個最佳產品或優惠。"
1442
+ }
1443
+ ],
1444
+ "home.features.description.my_account": [
1445
+ {
1446
+ "type": 0,
1447
+ "value": "購物者可管理帳戶資訊,例如個人資料、地址、付款和訂單。"
1448
+ }
1449
+ ],
1450
+ "home.features.description.shopper_login": [
1451
+ {
1452
+ "type": 0,
1453
+ "value": "讓購物者能夠輕鬆登入,享受更加個人化的購物體驗。"
1454
+ }
1455
+ ],
1456
+ "home.features.description.wishlist": [
1457
+ {
1458
+ "type": 0,
1459
+ "value": "已註冊的購物者可以新增產品至願望清單,留待日後購買。"
1460
+ }
1461
+ ],
1462
+ "home.features.heading.cart_checkout": [
1463
+ {
1464
+ "type": 0,
1465
+ "value": "購物車與結帳"
1466
+ }
1467
+ ],
1468
+ "home.features.heading.components": [
1469
+ {
1470
+ "type": 0,
1471
+ "value": "元件與設計套件"
1472
+ }
1473
+ ],
1474
+ "home.features.heading.einstein_recommendations": [
1475
+ {
1476
+ "type": 0,
1477
+ "value": "Einstein 推薦"
1478
+ }
1479
+ ],
1480
+ "home.features.heading.my_account": [
1481
+ {
1482
+ "type": 0,
1483
+ "value": "我的帳戶"
1484
+ }
1485
+ ],
1486
+ "home.features.heading.shopper_login": [
1487
+ {
1488
+ "type": 0,
1489
+ "value": "Shopper Login and API Access Service (SLAS)"
1490
+ }
1491
+ ],
1492
+ "home.features.heading.wishlist": [
1493
+ {
1494
+ "type": 0,
1495
+ "value": "願望清單"
1496
+ }
1497
+ ],
1498
+ "home.heading.features": [
1499
+ {
1500
+ "type": 0,
1501
+ "value": "功能"
1502
+ }
1503
+ ],
1504
+ "home.heading.here_to_help": [
1505
+ {
1506
+ "type": 0,
1507
+ "value": "我們很樂意隨時提供協助"
1508
+ }
1509
+ ],
1510
+ "home.heading.shop_products": [
1511
+ {
1512
+ "type": 0,
1513
+ "value": "選購產品"
1514
+ }
1515
+ ],
1516
+ "home.hero_features.link.design_kit": [
1517
+ {
1518
+ "type": 0,
1519
+ "value": "使用 Figma PWA Design Kit 揮灑創意"
1520
+ }
1521
+ ],
1522
+ "home.hero_features.link.on_github": [
1523
+ {
1524
+ "type": 0,
1525
+ "value": "前往 Github 下載"
1526
+ }
1527
+ ],
1528
+ "home.hero_features.link.on_managed_runtime": [
1529
+ {
1530
+ "type": 0,
1531
+ "value": "在 Managed Runtime 上部署"
1532
+ }
1533
+ ],
1534
+ "home.link.contact_us": [
1535
+ {
1536
+ "type": 0,
1537
+ "value": "聯絡我們"
1538
+ }
1539
+ ],
1540
+ "home.link.get_started": [
1541
+ {
1542
+ "type": 0,
1543
+ "value": "開始使用"
1544
+ }
1545
+ ],
1546
+ "home.link.read_docs": [
1547
+ {
1548
+ "type": 0,
1549
+ "value": "閱讀文件"
1550
+ }
1551
+ ],
1552
+ "home.title.react_starter_store": [
1553
+ {
1554
+ "type": 0,
1555
+ "value": "零售型 React PWA Starter Store"
1556
+ }
1557
+ ],
1558
+ "item_attributes.label.promotions": [
1559
+ {
1560
+ "type": 0,
1561
+ "value": "促銷"
1562
+ }
1563
+ ],
1564
+ "item_attributes.label.quantity": [
1565
+ {
1566
+ "type": 0,
1567
+ "value": "數量:"
1568
+ },
1569
+ {
1570
+ "type": 1,
1571
+ "value": "quantity"
1572
+ }
1573
+ ],
1574
+ "item_image.label.sale": [
1575
+ {
1576
+ "type": 0,
1577
+ "value": "特價"
1578
+ }
1579
+ ],
1580
+ "lCPCxk": [
1581
+ {
1582
+ "type": 0,
1583
+ "value": "請在上方選擇所有選項"
1584
+ }
1585
+ ],
1586
+ "locale_text.message.ar-SA": [
1587
+ {
1588
+ "type": 0,
1589
+ "value": "阿拉伯文 (沙烏地阿拉伯)"
1590
+ }
1591
+ ],
1592
+ "locale_text.message.bn-BD": [
1593
+ {
1594
+ "type": 0,
1595
+ "value": "孟加拉文 (孟加拉)"
1596
+ }
1597
+ ],
1598
+ "locale_text.message.bn-IN": [
1599
+ {
1600
+ "type": 0,
1601
+ "value": "孟加拉文 (印度)"
1602
+ }
1603
+ ],
1604
+ "locale_text.message.cs-CZ": [
1605
+ {
1606
+ "type": 0,
1607
+ "value": "捷克文 (捷克共和國)"
1608
+ }
1609
+ ],
1610
+ "locale_text.message.da-DK": [
1611
+ {
1612
+ "type": 0,
1613
+ "value": "丹麥文 (丹麥)"
1614
+ }
1615
+ ],
1616
+ "locale_text.message.de-AT": [
1617
+ {
1618
+ "type": 0,
1619
+ "value": "德文 (奧地利)"
1620
+ }
1621
+ ],
1622
+ "locale_text.message.de-CH": [
1623
+ {
1624
+ "type": 0,
1625
+ "value": "德文 (瑞士)"
1626
+ }
1627
+ ],
1628
+ "locale_text.message.de-DE": [
1629
+ {
1630
+ "type": 0,
1631
+ "value": "德文 (德國)"
1632
+ }
1633
+ ],
1634
+ "locale_text.message.el-GR": [
1635
+ {
1636
+ "type": 0,
1637
+ "value": "希臘文 (希臘)"
1638
+ }
1639
+ ],
1640
+ "locale_text.message.en-AU": [
1641
+ {
1642
+ "type": 0,
1643
+ "value": "英文 (澳洲)"
1644
+ }
1645
+ ],
1646
+ "locale_text.message.en-CA": [
1647
+ {
1648
+ "type": 0,
1649
+ "value": "英文 (加拿大)"
1650
+ }
1651
+ ],
1652
+ "locale_text.message.en-GB": [
1653
+ {
1654
+ "type": 0,
1655
+ "value": "英文 (英國)"
1656
+ }
1657
+ ],
1658
+ "locale_text.message.en-IE": [
1659
+ {
1660
+ "type": 0,
1661
+ "value": "英文 (愛爾蘭)"
1662
+ }
1663
+ ],
1664
+ "locale_text.message.en-IN": [
1665
+ {
1666
+ "type": 0,
1667
+ "value": "英文 (印度)"
1668
+ }
1669
+ ],
1670
+ "locale_text.message.en-NZ": [
1671
+ {
1672
+ "type": 0,
1673
+ "value": "英文 (紐西蘭)"
1674
+ }
1675
+ ],
1676
+ "locale_text.message.en-US": [
1677
+ {
1678
+ "type": 0,
1679
+ "value": "英文 (美國)"
1680
+ }
1681
+ ],
1682
+ "locale_text.message.en-ZA": [
1683
+ {
1684
+ "type": 0,
1685
+ "value": "英文 (南非)"
1686
+ }
1687
+ ],
1688
+ "locale_text.message.es-AR": [
1689
+ {
1690
+ "type": 0,
1691
+ "value": "西班牙文 (阿根廷)"
1692
+ }
1693
+ ],
1694
+ "locale_text.message.es-CL": [
1695
+ {
1696
+ "type": 0,
1697
+ "value": "西班牙文 (智利)"
1698
+ }
1699
+ ],
1700
+ "locale_text.message.es-CO": [
1701
+ {
1702
+ "type": 0,
1703
+ "value": "西班牙文 (哥倫比亞)"
1704
+ }
1705
+ ],
1706
+ "locale_text.message.es-ES": [
1707
+ {
1708
+ "type": 0,
1709
+ "value": "西班牙文 (西班牙)"
1710
+ }
1711
+ ],
1712
+ "locale_text.message.es-MX": [
1713
+ {
1714
+ "type": 0,
1715
+ "value": "西班牙文 (墨西哥)"
1716
+ }
1717
+ ],
1718
+ "locale_text.message.es-US": [
1719
+ {
1720
+ "type": 0,
1721
+ "value": "西班牙文 (美國)"
1722
+ }
1723
+ ],
1724
+ "locale_text.message.fi-FI": [
1725
+ {
1726
+ "type": 0,
1727
+ "value": "芬蘭文 (芬蘭)"
1728
+ }
1729
+ ],
1730
+ "locale_text.message.fr-BE": [
1731
+ {
1732
+ "type": 0,
1733
+ "value": "法文 (比利時)"
1734
+ }
1735
+ ],
1736
+ "locale_text.message.fr-CA": [
1737
+ {
1738
+ "type": 0,
1739
+ "value": "法文 (加拿大)"
1740
+ }
1741
+ ],
1742
+ "locale_text.message.fr-CH": [
1743
+ {
1744
+ "type": 0,
1745
+ "value": "法文 (瑞士)"
1746
+ }
1747
+ ],
1748
+ "locale_text.message.fr-FR": [
1749
+ {
1750
+ "type": 0,
1751
+ "value": "法文 (法國)"
1752
+ }
1753
+ ],
1754
+ "locale_text.message.he-IL": [
1755
+ {
1756
+ "type": 0,
1757
+ "value": "希伯來文 (以色列)"
1758
+ }
1759
+ ],
1760
+ "locale_text.message.hi-IN": [
1761
+ {
1762
+ "type": 0,
1763
+ "value": "印度文 (印度)"
1764
+ }
1765
+ ],
1766
+ "locale_text.message.hu-HU": [
1767
+ {
1768
+ "type": 0,
1769
+ "value": "匈牙利文 (匈牙利)"
1770
+ }
1771
+ ],
1772
+ "locale_text.message.id-ID": [
1773
+ {
1774
+ "type": 0,
1775
+ "value": "印尼文 (印尼)"
1776
+ }
1777
+ ],
1778
+ "locale_text.message.it-CH": [
1779
+ {
1780
+ "type": 0,
1781
+ "value": "義大利文 (瑞士)"
1782
+ }
1783
+ ],
1784
+ "locale_text.message.it-IT": [
1785
+ {
1786
+ "type": 0,
1787
+ "value": "義大利文 (義大利)"
1788
+ }
1789
+ ],
1790
+ "locale_text.message.ja-JP": [
1791
+ {
1792
+ "type": 0,
1793
+ "value": "日文 (日本)"
1794
+ }
1795
+ ],
1796
+ "locale_text.message.ko-KR": [
1797
+ {
1798
+ "type": 0,
1799
+ "value": "韓文 (韓國)"
1800
+ }
1801
+ ],
1802
+ "locale_text.message.nl-BE": [
1803
+ {
1804
+ "type": 0,
1805
+ "value": "荷蘭文 (比利時)"
1806
+ }
1807
+ ],
1808
+ "locale_text.message.nl-NL": [
1809
+ {
1810
+ "type": 0,
1811
+ "value": "荷蘭文 (荷蘭)"
1812
+ }
1813
+ ],
1814
+ "locale_text.message.no-NO": [
1815
+ {
1816
+ "type": 0,
1817
+ "value": "挪威文 (挪威)"
1818
+ }
1819
+ ],
1820
+ "locale_text.message.pl-PL": [
1821
+ {
1822
+ "type": 0,
1823
+ "value": "波蘭文 (波蘭)"
1824
+ }
1825
+ ],
1826
+ "locale_text.message.pt-BR": [
1827
+ {
1828
+ "type": 0,
1829
+ "value": "葡萄牙文 (巴西)"
1830
+ }
1831
+ ],
1832
+ "locale_text.message.pt-PT": [
1833
+ {
1834
+ "type": 0,
1835
+ "value": "葡萄牙文 (葡萄牙)"
1836
+ }
1837
+ ],
1838
+ "locale_text.message.ro-RO": [
1839
+ {
1840
+ "type": 0,
1841
+ "value": "羅馬尼亞文 (羅馬尼亞)"
1842
+ }
1843
+ ],
1844
+ "locale_text.message.ru-RU": [
1845
+ {
1846
+ "type": 0,
1847
+ "value": "俄文 (俄羅斯聯邦)"
1848
+ }
1849
+ ],
1850
+ "locale_text.message.sk-SK": [
1851
+ {
1852
+ "type": 0,
1853
+ "value": "斯洛伐克文 (斯洛伐克)"
1854
+ }
1855
+ ],
1856
+ "locale_text.message.sv-SE": [
1857
+ {
1858
+ "type": 0,
1859
+ "value": "瑞典文 (瑞典)"
1860
+ }
1861
+ ],
1862
+ "locale_text.message.ta-IN": [
1863
+ {
1864
+ "type": 0,
1865
+ "value": "泰米爾文 (印度)"
1866
+ }
1867
+ ],
1868
+ "locale_text.message.ta-LK": [
1869
+ {
1870
+ "type": 0,
1871
+ "value": "泰米爾文 (斯里蘭卡)"
1872
+ }
1873
+ ],
1874
+ "locale_text.message.th-TH": [
1875
+ {
1876
+ "type": 0,
1877
+ "value": "泰文 (泰國)"
1878
+ }
1879
+ ],
1880
+ "locale_text.message.tr-TR": [
1881
+ {
1882
+ "type": 0,
1883
+ "value": "土耳其文 (土耳其)"
1884
+ }
1885
+ ],
1886
+ "locale_text.message.zh-CN": [
1887
+ {
1888
+ "type": 0,
1889
+ "value": "中文 (中國)"
1890
+ }
1891
+ ],
1892
+ "locale_text.message.zh-HK": [
1893
+ {
1894
+ "type": 0,
1895
+ "value": "中文 (香港)"
1896
+ }
1897
+ ],
1898
+ "locale_text.message.zh-TW": [
1899
+ {
1900
+ "type": 0,
1901
+ "value": "中文 (台灣)"
1902
+ }
1903
+ ],
1904
+ "login_form.action.create_account": [
1905
+ {
1906
+ "type": 0,
1907
+ "value": "建立帳戶"
1908
+ }
1909
+ ],
1910
+ "login_form.button.sign_in": [
1911
+ {
1912
+ "type": 0,
1913
+ "value": "登入"
1914
+ }
1915
+ ],
1916
+ "login_form.link.forgot_password": [
1917
+ {
1918
+ "type": 0,
1919
+ "value": "忘記密碼了嗎?"
1920
+ }
1921
+ ],
1922
+ "login_form.message.dont_have_account": [
1923
+ {
1924
+ "type": 0,
1925
+ "value": "沒有帳戶嗎?"
1926
+ }
1927
+ ],
1928
+ "login_form.message.welcome_back": [
1929
+ {
1930
+ "type": 0,
1931
+ "value": "歡迎回來"
1932
+ }
1933
+ ],
1934
+ "login_page.error.incorrect_username_or_password": [
1935
+ {
1936
+ "type": 0,
1937
+ "value": "使用者名稱或密碼不正確,請再試一次。"
1938
+ }
1939
+ ],
1940
+ "offline_banner.description.browsing_offline_mode": [
1941
+ {
1942
+ "type": 0,
1943
+ "value": "您目前正以離線模式瀏覽"
1944
+ }
1945
+ ],
1946
+ "order_summary.action.remove_promo": [
1947
+ {
1948
+ "type": 0,
1949
+ "value": "移除"
1950
+ }
1951
+ ],
1952
+ "order_summary.cart_items.action.num_of_items_in_cart": [
1953
+ {
1954
+ "type": 0,
1955
+ "value": "購物車有 "
1956
+ },
1957
+ {
1958
+ "offset": 0,
1959
+ "options": {
1960
+ "=0": {
1961
+ "value": [
1962
+ {
1963
+ "type": 0,
1964
+ "value": "0 件商品"
1965
+ }
1966
+ ]
1967
+ },
1968
+ "one": {
1969
+ "value": [
1970
+ {
1971
+ "type": 7
1972
+ },
1973
+ {
1974
+ "type": 0,
1975
+ "value": " 件商品"
1976
+ }
1977
+ ]
1978
+ },
1979
+ "other": {
1980
+ "value": [
1981
+ {
1982
+ "type": 7
1983
+ },
1984
+ {
1985
+ "type": 0,
1986
+ "value": " 件商品"
1987
+ }
1988
+ ]
1989
+ }
1990
+ },
1991
+ "pluralType": "cardinal",
1992
+ "type": 6,
1993
+ "value": "itemCount"
1994
+ }
1995
+ ],
1996
+ "order_summary.cart_items.link.edit_cart": [
1997
+ {
1998
+ "type": 0,
1999
+ "value": "編輯購物車"
2000
+ }
2001
+ ],
2002
+ "order_summary.heading.order_summary": [
2003
+ {
2004
+ "type": 0,
2005
+ "value": "訂單摘要"
2006
+ }
2007
+ ],
2008
+ "order_summary.label.estimated_total": [
2009
+ {
2010
+ "type": 0,
2011
+ "value": "預估總計"
2012
+ }
2013
+ ],
2014
+ "order_summary.label.free": [
2015
+ {
2016
+ "type": 0,
2017
+ "value": "免費"
2018
+ }
2019
+ ],
2020
+ "order_summary.label.order_total": [
2021
+ {
2022
+ "type": 0,
2023
+ "value": "訂單總計"
2024
+ }
2025
+ ],
2026
+ "order_summary.label.promo_applied": [
2027
+ {
2028
+ "type": 0,
2029
+ "value": "已套用促銷"
2030
+ }
2031
+ ],
2032
+ "order_summary.label.promotions_applied": [
2033
+ {
2034
+ "type": 0,
2035
+ "value": "已套用促銷"
2036
+ }
2037
+ ],
2038
+ "order_summary.label.shipping": [
2039
+ {
2040
+ "type": 0,
2041
+ "value": "運送"
2042
+ }
2043
+ ],
2044
+ "order_summary.label.subtotal": [
2045
+ {
2046
+ "type": 0,
2047
+ "value": "小計"
2048
+ }
2049
+ ],
2050
+ "order_summary.label.tax": [
2051
+ {
2052
+ "type": 0,
2053
+ "value": "稅項"
2054
+ }
2055
+ ],
2056
+ "page_not_found.action.go_back": [
2057
+ {
2058
+ "type": 0,
2059
+ "value": "返回上一頁"
2060
+ }
2061
+ ],
2062
+ "page_not_found.link.homepage": [
2063
+ {
2064
+ "type": 0,
2065
+ "value": "前往首頁"
2066
+ }
2067
+ ],
2068
+ "page_not_found.message.suggestion_to_try": [
2069
+ {
2070
+ "type": 0,
2071
+ "value": "請嘗試重新輸入地址、返回上一頁或前往首頁。"
2072
+ }
2073
+ ],
2074
+ "page_not_found.title.page_cant_be_found": [
2075
+ {
2076
+ "type": 0,
2077
+ "value": "找不到您在尋找的頁面。"
2078
+ }
2079
+ ],
2080
+ "pagination.field.num_of_pages": [
2081
+ {
2082
+ "type": 0,
2083
+ "value": "/ "
2084
+ },
2085
+ {
2086
+ "type": 1,
2087
+ "value": "numOfPages"
2088
+ }
2089
+ ],
2090
+ "pagination.link.next": [
2091
+ {
2092
+ "type": 0,
2093
+ "value": "下一頁"
2094
+ }
2095
+ ],
2096
+ "pagination.link.prev": [
2097
+ {
2098
+ "type": 0,
2099
+ "value": "上一頁"
2100
+ }
2101
+ ],
2102
+ "password_card.info.password_updated": [
2103
+ {
2104
+ "type": 0,
2105
+ "value": "密碼已更新"
2106
+ }
2107
+ ],
2108
+ "password_card.label.password": [
2109
+ {
2110
+ "type": 0,
2111
+ "value": "密碼"
2112
+ }
2113
+ ],
2114
+ "password_card.title.password": [
2115
+ {
2116
+ "type": 0,
2117
+ "value": "密碼"
2118
+ }
2119
+ ],
2120
+ "password_requirements.error.eight_letter_minimum": [
2121
+ {
2122
+ "type": 0,
2123
+ "value": "最少 8 個字元"
2124
+ }
2125
+ ],
2126
+ "password_requirements.error.one_lowercase_letter": [
2127
+ {
2128
+ "type": 0,
2129
+ "value": "1 個小寫字母"
2130
+ }
2131
+ ],
2132
+ "password_requirements.error.one_number": [
2133
+ {
2134
+ "type": 0,
2135
+ "value": "1 個數字"
2136
+ }
2137
+ ],
2138
+ "password_requirements.error.one_special_character": [
2139
+ {
2140
+ "type": 0,
2141
+ "value": "1 個特殊字元 (例如:, $ ! % #)"
2142
+ }
2143
+ ],
2144
+ "password_requirements.error.one_uppercase_letter": [
2145
+ {
2146
+ "type": 0,
2147
+ "value": "1 個大寫字母"
2148
+ }
2149
+ ],
2150
+ "payment_selection.button.save_and_continue": [
2151
+ {
2152
+ "type": 0,
2153
+ "value": "儲存並繼續"
2154
+ }
2155
+ ],
2156
+ "payment_selection.heading.add_new_card": [
2157
+ {
2158
+ "type": 0,
2159
+ "value": "新增卡片"
2160
+ }
2161
+ ],
2162
+ "payment_selection.heading.credit_card": [
2163
+ {
2164
+ "type": 0,
2165
+ "value": "信用卡"
2166
+ }
2167
+ ],
2168
+ "payment_selection.message.select_payment_method": [
2169
+ {
2170
+ "type": 0,
2171
+ "value": "請選擇一種付款方式。"
2172
+ }
2173
+ ],
2174
+ "payment_selection.tooltip.secure_payment": [
2175
+ {
2176
+ "type": 0,
2177
+ "value": "此為安全 SSL 加密付款。"
2178
+ }
2179
+ ],
2180
+ "price_per_item.label.each": [
2181
+ {
2182
+ "type": 0,
2183
+ "value": "每件"
2184
+ }
2185
+ ],
2186
+ "product_detail.accordion.button.product_detail": [
2187
+ {
2188
+ "type": 0,
2189
+ "value": "產品詳細資料"
2190
+ }
2191
+ ],
2192
+ "product_detail.accordion.button.questions": [
2193
+ {
2194
+ "type": 0,
2195
+ "value": "問題"
2196
+ }
2197
+ ],
2198
+ "product_detail.accordion.button.reviews": [
2199
+ {
2200
+ "type": 0,
2201
+ "value": "評價"
2202
+ }
2203
+ ],
2204
+ "product_detail.accordion.button.size_fit": [
2205
+ {
2206
+ "type": 0,
2207
+ "value": "尺寸與版型"
2208
+ }
2209
+ ],
2210
+ "product_detail.accordion.message.coming_soon": [
2211
+ {
2212
+ "type": 0,
2213
+ "value": "即將推出"
2214
+ }
2215
+ ],
2216
+ "product_detail.recommended_products.title.complete_set": [
2217
+ {
2218
+ "type": 0,
2219
+ "value": "完成組合"
2220
+ }
2221
+ ],
2222
+ "product_detail.recommended_products.title.might_also_like": [
2223
+ {
2224
+ "type": 0,
2225
+ "value": "您可能也喜歡"
2226
+ }
2227
+ ],
2228
+ "product_detail.recommended_products.title.recently_viewed": [
2229
+ {
2230
+ "type": 0,
2231
+ "value": "最近檢視"
2232
+ }
2233
+ ],
2234
+ "product_item.label.quantity": [
2235
+ {
2236
+ "type": 0,
2237
+ "value": "數量:"
2238
+ }
2239
+ ],
2240
+ "product_list.button.filter": [
2241
+ {
2242
+ "type": 0,
2243
+ "value": "篩選條件"
2244
+ }
2245
+ ],
2246
+ "product_list.button.sort_by": [
2247
+ {
2248
+ "type": 0,
2249
+ "value": "排序方式:"
2250
+ },
2251
+ {
2252
+ "type": 1,
2253
+ "value": "sortOption"
2254
+ }
2255
+ ],
2256
+ "product_list.drawer.title.sort_by": [
2257
+ {
2258
+ "type": 0,
2259
+ "value": "排序方式"
2260
+ }
2261
+ ],
2262
+ "product_list.modal.button.clear_filters": [
2263
+ {
2264
+ "type": 0,
2265
+ "value": "清除篩選條件"
2266
+ }
2267
+ ],
2268
+ "product_list.modal.button.view_items": [
2269
+ {
2270
+ "type": 0,
2271
+ "value": "檢視 "
2272
+ },
2273
+ {
2274
+ "type": 1,
2275
+ "value": "prroductCount"
2276
+ },
2277
+ {
2278
+ "type": 0,
2279
+ "value": " 件商品"
2280
+ }
2281
+ ],
2282
+ "product_list.modal.title.filter": [
2283
+ {
2284
+ "type": 0,
2285
+ "value": "篩選條件"
2286
+ }
2287
+ ],
2288
+ "product_list.select.sort_by": [
2289
+ {
2290
+ "type": 0,
2291
+ "value": "排序方式:"
2292
+ },
2293
+ {
2294
+ "type": 1,
2295
+ "value": "sortOption"
2296
+ }
2297
+ ],
2298
+ "product_tile.assistive_msg.wishlist": [
2299
+ {
2300
+ "type": 0,
2301
+ "value": "願望清單"
2302
+ }
2303
+ ],
2304
+ "product_view.button.add_to_cart": [
2305
+ {
2306
+ "type": 0,
2307
+ "value": "新增至購物車"
2308
+ }
2309
+ ],
2310
+ "product_view.button.add_to_wishlist": [
2311
+ {
2312
+ "type": 0,
2313
+ "value": "新增至願望清單"
2314
+ }
2315
+ ],
2316
+ "product_view.button.update": [
2317
+ {
2318
+ "type": 0,
2319
+ "value": "更新"
2320
+ }
2321
+ ],
2322
+ "product_view.label.quantity": [
2323
+ {
2324
+ "type": 0,
2325
+ "value": "數量"
2326
+ }
2327
+ ],
2328
+ "product_view.link.full_details": [
2329
+ {
2330
+ "type": 0,
2331
+ "value": "檢視完整詳細資料"
2332
+ }
2333
+ ],
2334
+ "profile_card.info.profile_updated": [
2335
+ {
2336
+ "type": 0,
2337
+ "value": "個人資料已更新"
2338
+ }
2339
+ ],
2340
+ "profile_card.label.email": [
2341
+ {
2342
+ "type": 0,
2343
+ "value": "電子郵件"
2344
+ }
2345
+ ],
2346
+ "profile_card.label.full_name": [
2347
+ {
2348
+ "type": 0,
2349
+ "value": "全名"
2350
+ }
2351
+ ],
2352
+ "profile_card.label.phone": [
2353
+ {
2354
+ "type": 0,
2355
+ "value": "電話號碼"
2356
+ }
2357
+ ],
2358
+ "profile_card.message.not_provided": [
2359
+ {
2360
+ "type": 0,
2361
+ "value": "未提供"
2362
+ }
2363
+ ],
2364
+ "profile_card.title.my_profile": [
2365
+ {
2366
+ "type": 0,
2367
+ "value": "我的個人資料"
2368
+ }
2369
+ ],
2370
+ "promo_code_fields.button.apply": [
2371
+ {
2372
+ "type": 0,
2373
+ "value": "套用"
2374
+ }
2375
+ ],
2376
+ "promo_popover.heading.promo_applied": [
2377
+ {
2378
+ "type": 0,
2379
+ "value": "已套用促銷"
2380
+ }
2381
+ ],
2382
+ "promocode.accordion.button.have_promocode": [
2383
+ {
2384
+ "type": 0,
2385
+ "value": "您有促銷代碼嗎?"
2386
+ }
2387
+ ],
2388
+ "recent_searches.action.clear_searches": [
2389
+ {
2390
+ "type": 0,
2391
+ "value": "清除最近搜尋"
2392
+ }
2393
+ ],
2394
+ "recent_searches.heading.recent_searches": [
2395
+ {
2396
+ "type": 0,
2397
+ "value": "最近搜尋"
2398
+ }
2399
+ ],
2400
+ "register_form.action.sign_in": [
2401
+ {
2402
+ "type": 0,
2403
+ "value": "登入"
2404
+ }
2405
+ ],
2406
+ "register_form.button.create_account": [
2407
+ {
2408
+ "type": 0,
2409
+ "value": "建立帳戶"
2410
+ }
2411
+ ],
2412
+ "register_form.heading.lets_get_started": [
2413
+ {
2414
+ "type": 0,
2415
+ "value": "讓我們開始吧!"
2416
+ }
2417
+ ],
2418
+ "register_form.message.agree_to_policy_terms": [
2419
+ {
2420
+ "type": 0,
2421
+ "value": "建立帳戶即代表您同意 Salesforce "
2422
+ },
2423
+ {
2424
+ "children": [
2425
+ {
2426
+ "type": 0,
2427
+ "value": "隱私權政策"
2428
+ }
2429
+ ],
2430
+ "type": 8,
2431
+ "value": "policy"
2432
+ },
2433
+ {
2434
+ "type": 0,
2435
+ "value": "和"
2436
+ },
2437
+ {
2438
+ "children": [
2439
+ {
2440
+ "type": 0,
2441
+ "value": "條款與條件"
2442
+ }
2443
+ ],
2444
+ "type": 8,
2445
+ "value": "terms"
2446
+ }
2447
+ ],
2448
+ "register_form.message.already_have_account": [
2449
+ {
2450
+ "type": 0,
2451
+ "value": "已經有帳戶了?"
2452
+ }
2453
+ ],
2454
+ "register_form.message.create_an_account": [
2455
+ {
2456
+ "type": 0,
2457
+ "value": "建立帳戶,就能搶先獲得最棒產品、靈感來源和社群最新消息。"
2458
+ }
2459
+ ],
2460
+ "reset_password.button.back_to_sign_in": [
2461
+ {
2462
+ "type": 0,
2463
+ "value": "返回登入"
2464
+ }
2465
+ ],
2466
+ "reset_password.info.receive_email_shortly": [
2467
+ {
2468
+ "type": 0,
2469
+ "value": "您很快就會在 "
2470
+ },
2471
+ {
2472
+ "children": [
2473
+ {
2474
+ "type": 1,
2475
+ "value": "email"
2476
+ }
2477
+ ],
2478
+ "type": 8,
2479
+ "value": "b"
2480
+ },
2481
+ {
2482
+ "type": 0,
2483
+ "value": " 收到一封電子郵件,內含重設密碼的連結。"
2484
+ }
2485
+ ],
2486
+ "reset_password.title.password_reset": [
2487
+ {
2488
+ "type": 0,
2489
+ "value": "重設密碼"
2490
+ }
2491
+ ],
2492
+ "reset_password_form.action.sign_in": [
2493
+ {
2494
+ "type": 0,
2495
+ "value": "登入"
2496
+ }
2497
+ ],
2498
+ "reset_password_form.button.reset_password": [
2499
+ {
2500
+ "type": 0,
2501
+ "value": "重設密碼"
2502
+ }
2503
+ ],
2504
+ "reset_password_form.message.enter_your_email": [
2505
+ {
2506
+ "type": 0,
2507
+ "value": "請輸入您的電子郵件,以便接收重設密碼的說明"
2508
+ }
2509
+ ],
2510
+ "reset_password_form.message.return_to_sign_in": [
2511
+ {
2512
+ "type": 0,
2513
+ "value": "或返回"
2514
+ }
2515
+ ],
2516
+ "reset_password_form.title.reset_password": [
2517
+ {
2518
+ "type": 0,
2519
+ "value": "重設密碼"
2520
+ }
2521
+ ],
2522
+ "search.action.cancel": [
2523
+ {
2524
+ "type": 0,
2525
+ "value": "取消"
2526
+ }
2527
+ ],
2528
+ "selected_refinements.action.clear_all": [
2529
+ {
2530
+ "type": 0,
2531
+ "value": "全部清除"
2532
+ }
2533
+ ],
2534
+ "shipping_address.button.continue_to_shipping": [
2535
+ {
2536
+ "type": 0,
2537
+ "value": "繼續前往運送方式"
2538
+ }
2539
+ ],
2540
+ "shipping_address.title.shipping_address": [
2541
+ {
2542
+ "type": 0,
2543
+ "value": "運送地址"
2544
+ }
2545
+ ],
2546
+ "shipping_address_edit_form.button.save_and_continue": [
2547
+ {
2548
+ "type": 0,
2549
+ "value": "儲存並繼續前往運送方式"
2550
+ }
2551
+ ],
2552
+ "shipping_address_form.heading.edit_address": [
2553
+ {
2554
+ "type": 0,
2555
+ "value": "編輯地址"
2556
+ }
2557
+ ],
2558
+ "shipping_address_form.heading.new_address": [
2559
+ {
2560
+ "type": 0,
2561
+ "value": "新增地址"
2562
+ }
2563
+ ],
2564
+ "shipping_address_selection.button.add_address": [
2565
+ {
2566
+ "type": 0,
2567
+ "value": "新增地址"
2568
+ }
2569
+ ],
2570
+ "shipping_address_selection.button.submit": [
2571
+ {
2572
+ "type": 0,
2573
+ "value": "提交"
2574
+ }
2575
+ ],
2576
+ "shipping_address_selection.title.add_address": [
2577
+ {
2578
+ "type": 0,
2579
+ "value": "新增地址"
2580
+ }
2581
+ ],
2582
+ "shipping_address_selection.title.edit_shipping": [
2583
+ {
2584
+ "type": 0,
2585
+ "value": "編輯運送地址"
2586
+ }
2587
+ ],
2588
+ "shipping_options.action.send_as_a_gift": [
2589
+ {
2590
+ "type": 0,
2591
+ "value": "您想以禮品方式寄送嗎?"
2592
+ }
2593
+ ],
2594
+ "shipping_options.button.continue_to_payment": [
2595
+ {
2596
+ "type": 0,
2597
+ "value": "繼續前往付款"
2598
+ }
2599
+ ],
2600
+ "shipping_options.title.shipping_gift_options": [
2601
+ {
2602
+ "type": 0,
2603
+ "value": "運送與禮品選項"
2604
+ }
2605
+ ],
2606
+ "signout_confirmation_dialog.button.cancel": [
2607
+ {
2608
+ "type": 0,
2609
+ "value": "取消"
2610
+ }
2611
+ ],
2612
+ "signout_confirmation_dialog.button.sign_out": [
2613
+ {
2614
+ "type": 0,
2615
+ "value": "登出"
2616
+ }
2617
+ ],
2618
+ "signout_confirmation_dialog.heading.sign_out": [
2619
+ {
2620
+ "type": 0,
2621
+ "value": "登出"
2622
+ }
2623
+ ],
2624
+ "signout_confirmation_dialog.message.sure_to_sign_out": [
2625
+ {
2626
+ "type": 0,
2627
+ "value": "確定要登出嗎?您必須重新登入,才能繼續目前的訂單流程。"
2628
+ }
2629
+ ],
2630
+ "toggle_card.action.edit": [
2631
+ {
2632
+ "type": 0,
2633
+ "value": "編輯"
2634
+ }
2635
+ ],
2636
+ "update_password_fields.button.forgot_password": [
2637
+ {
2638
+ "type": 0,
2639
+ "value": "忘記密碼了嗎?"
2640
+ }
2641
+ ],
2642
+ "use_address_fields.error.please_enter_first_name": [
2643
+ {
2644
+ "type": 0,
2645
+ "value": "請輸入您的名字。"
2646
+ }
2647
+ ],
2648
+ "use_address_fields.error.please_enter_last_name": [
2649
+ {
2650
+ "type": 0,
2651
+ "value": "請輸入您的姓氏。"
2652
+ }
2653
+ ],
2654
+ "use_address_fields.error.please_enter_phone_number": [
2655
+ {
2656
+ "type": 0,
2657
+ "value": "請輸入您的電話號碼。"
2658
+ }
2659
+ ],
2660
+ "use_address_fields.error.please_enter_your_postal_or_zip": [
2661
+ {
2662
+ "type": 0,
2663
+ "value": "請輸入您的"
2664
+ },
2665
+ {
2666
+ "type": 1,
2667
+ "value": "postalOrZip"
2668
+ },
2669
+ {
2670
+ "type": 0,
2671
+ "value": "。"
2672
+ }
2673
+ ],
2674
+ "use_address_fields.error.please_select_your_address": [
2675
+ {
2676
+ "type": 0,
2677
+ "value": "請輸入您的地址。"
2678
+ }
2679
+ ],
2680
+ "use_address_fields.error.please_select_your_city": [
2681
+ {
2682
+ "type": 0,
2683
+ "value": "請輸入您的城市。"
2684
+ }
2685
+ ],
2686
+ "use_address_fields.error.please_select_your_country": [
2687
+ {
2688
+ "type": 0,
2689
+ "value": "請選擇您的國家/地區。"
2690
+ }
2691
+ ],
2692
+ "use_address_fields.error.please_select_your_state_or_province": [
2693
+ {
2694
+ "type": 0,
2695
+ "value": "請選擇您的"
2696
+ },
2697
+ {
2698
+ "type": 1,
2699
+ "value": "stateOrProvince"
2700
+ },
2701
+ {
2702
+ "type": 0,
2703
+ "value": "。"
2704
+ }
2705
+ ],
2706
+ "use_address_fields.error.required": [
2707
+ {
2708
+ "type": 0,
2709
+ "value": "必填"
2710
+ }
2711
+ ],
2712
+ "use_address_fields.error.state_code_invalid": [
2713
+ {
2714
+ "type": 0,
2715
+ "value": "請輸入 2 個字母的州/省名。"
2716
+ }
2717
+ ],
2718
+ "use_address_fields.label.address": [
2719
+ {
2720
+ "type": 0,
2721
+ "value": "地址"
2722
+ }
2723
+ ],
2724
+ "use_address_fields.label.city": [
2725
+ {
2726
+ "type": 0,
2727
+ "value": "城市"
2728
+ }
2729
+ ],
2730
+ "use_address_fields.label.country": [
2731
+ {
2732
+ "type": 0,
2733
+ "value": "國家/地區"
2734
+ }
2735
+ ],
2736
+ "use_address_fields.label.first_name": [
2737
+ {
2738
+ "type": 0,
2739
+ "value": "名字"
2740
+ }
2741
+ ],
2742
+ "use_address_fields.label.last_name": [
2743
+ {
2744
+ "type": 0,
2745
+ "value": "姓氏"
2746
+ }
2747
+ ],
2748
+ "use_address_fields.label.phone": [
2749
+ {
2750
+ "type": 0,
2751
+ "value": "電話"
2752
+ }
2753
+ ],
2754
+ "use_address_fields.label.postal_code": [
2755
+ {
2756
+ "type": 0,
2757
+ "value": "郵遞區號"
2758
+ }
2759
+ ],
2760
+ "use_address_fields.label.preferred": [
2761
+ {
2762
+ "type": 0,
2763
+ "value": "設為預設"
2764
+ }
2765
+ ],
2766
+ "use_address_fields.label.province": [
2767
+ {
2768
+ "type": 0,
2769
+ "value": "省"
2770
+ }
2771
+ ],
2772
+ "use_address_fields.label.state": [
2773
+ {
2774
+ "type": 0,
2775
+ "value": "州"
2776
+ }
2777
+ ],
2778
+ "use_address_fields.label.zipCode": [
2779
+ {
2780
+ "type": 0,
2781
+ "value": "郵遞區號"
2782
+ }
2783
+ ],
2784
+ "use_credit_card_fields.error.required": [
2785
+ {
2786
+ "type": 0,
2787
+ "value": "必填"
2788
+ }
2789
+ ],
2790
+ "use_credit_card_fields.error.required_card_number": [
2791
+ {
2792
+ "type": 0,
2793
+ "value": "請輸入您的卡片號碼。"
2794
+ }
2795
+ ],
2796
+ "use_credit_card_fields.error.required_expiry": [
2797
+ {
2798
+ "type": 0,
2799
+ "value": "請輸入您的到期日。"
2800
+ }
2801
+ ],
2802
+ "use_credit_card_fields.error.required_name": [
2803
+ {
2804
+ "type": 0,
2805
+ "value": "請輸入您卡片上的姓名。"
2806
+ }
2807
+ ],
2808
+ "use_credit_card_fields.error.required_security_code": [
2809
+ {
2810
+ "type": 0,
2811
+ "value": "請輸入您的安全碼。"
2812
+ }
2813
+ ],
2814
+ "use_credit_card_fields.error.valid_card_number": [
2815
+ {
2816
+ "type": 0,
2817
+ "value": "請輸入有效的卡片號碼。"
2818
+ }
2819
+ ],
2820
+ "use_credit_card_fields.error.valid_date": [
2821
+ {
2822
+ "type": 0,
2823
+ "value": "請輸入有效的日期。"
2824
+ }
2825
+ ],
2826
+ "use_credit_card_fields.error.valid_name": [
2827
+ {
2828
+ "type": 0,
2829
+ "value": "請輸入有效的姓名。"
2830
+ }
2831
+ ],
2832
+ "use_credit_card_fields.error.valid_security_code": [
2833
+ {
2834
+ "type": 0,
2835
+ "value": "請輸入有效的安全碼。"
2836
+ }
2837
+ ],
2838
+ "use_credit_card_fields.label.card_number": [
2839
+ {
2840
+ "type": 0,
2841
+ "value": "卡片號碼"
2842
+ }
2843
+ ],
2844
+ "use_credit_card_fields.label.card_type": [
2845
+ {
2846
+ "type": 0,
2847
+ "value": "卡片類型"
2848
+ }
2849
+ ],
2850
+ "use_credit_card_fields.label.expiry": [
2851
+ {
2852
+ "type": 0,
2853
+ "value": "到期日"
2854
+ }
2855
+ ],
2856
+ "use_credit_card_fields.label.name": [
2857
+ {
2858
+ "type": 0,
2859
+ "value": "持卡人姓名"
2860
+ }
2861
+ ],
2862
+ "use_credit_card_fields.label.security_code": [
2863
+ {
2864
+ "type": 0,
2865
+ "value": "安全碼"
2866
+ }
2867
+ ],
2868
+ "use_login_fields.error.required_email": [
2869
+ {
2870
+ "type": 0,
2871
+ "value": "請輸入您的電子郵件地址。"
2872
+ }
2873
+ ],
2874
+ "use_login_fields.error.required_password": [
2875
+ {
2876
+ "type": 0,
2877
+ "value": "請輸入您的密碼。"
2878
+ }
2879
+ ],
2880
+ "use_login_fields.label.email": [
2881
+ {
2882
+ "type": 0,
2883
+ "value": "電子郵件"
2884
+ }
2885
+ ],
2886
+ "use_login_fields.label.password": [
2887
+ {
2888
+ "type": 0,
2889
+ "value": "密碼"
2890
+ }
2891
+ ],
2892
+ "use_product.message.inventory_remaining": [
2893
+ {
2894
+ "type": 0,
2895
+ "value": "只剩 "
2896
+ },
2897
+ {
2898
+ "type": 1,
2899
+ "value": "stockLevel"
2900
+ },
2901
+ {
2902
+ "type": 0,
2903
+ "value": " 個!"
2904
+ }
2905
+ ],
2906
+ "use_product.message.out_of_stock": [
2907
+ {
2908
+ "type": 0,
2909
+ "value": "缺貨"
2910
+ }
2911
+ ],
2912
+ "use_profile_fields.error.required_email": [
2913
+ {
2914
+ "type": 0,
2915
+ "value": "請輸入有效的電子郵件地址。"
2916
+ }
2917
+ ],
2918
+ "use_profile_fields.error.required_first_name": [
2919
+ {
2920
+ "type": 0,
2921
+ "value": "請輸入您的名字。"
2922
+ }
2923
+ ],
2924
+ "use_profile_fields.error.required_last_name": [
2925
+ {
2926
+ "type": 0,
2927
+ "value": "請輸入您的姓氏。"
2928
+ }
2929
+ ],
2930
+ "use_profile_fields.error.required_phone": [
2931
+ {
2932
+ "type": 0,
2933
+ "value": "請輸入您的電話號碼。"
2934
+ }
2935
+ ],
2936
+ "use_profile_fields.label.email": [
2937
+ {
2938
+ "type": 0,
2939
+ "value": "電子郵件"
2940
+ }
2941
+ ],
2942
+ "use_profile_fields.label.first_name": [
2943
+ {
2944
+ "type": 0,
2945
+ "value": "名字"
2946
+ }
2947
+ ],
2948
+ "use_profile_fields.label.last_name": [
2949
+ {
2950
+ "type": 0,
2951
+ "value": "姓氏"
2952
+ }
2953
+ ],
2954
+ "use_profile_fields.label.phone": [
2955
+ {
2956
+ "type": 0,
2957
+ "value": "電話號碼"
2958
+ }
2959
+ ],
2960
+ "use_promo_code_fields.error.required_promo_code": [
2961
+ {
2962
+ "type": 0,
2963
+ "value": "請提供有效的促銷代碼。"
2964
+ }
2965
+ ],
2966
+ "use_promo_code_fields.label.promo_code": [
2967
+ {
2968
+ "type": 0,
2969
+ "value": "促銷代碼"
2970
+ }
2971
+ ],
2972
+ "use_promocode.error.check_the_code": [
2973
+ {
2974
+ "type": 0,
2975
+ "value": "請檢查代碼並再試一次,代碼可能已套用過或促銷已過期。"
2976
+ }
2977
+ ],
2978
+ "use_promocode.info.promo_applied": [
2979
+ {
2980
+ "type": 0,
2981
+ "value": "已套用促銷"
2982
+ }
2983
+ ],
2984
+ "use_promocode.info.promo_removed": [
2985
+ {
2986
+ "type": 0,
2987
+ "value": "已移除促銷"
2988
+ }
2989
+ ],
2990
+ "use_registration_fields.error.contain_number": [
2991
+ {
2992
+ "type": 0,
2993
+ "value": "密碼必須包含至少 1 個數字。"
2994
+ }
2995
+ ],
2996
+ "use_registration_fields.error.lowercase_letter": [
2997
+ {
2998
+ "type": 0,
2999
+ "value": "密碼必須包含至少 1 個小寫字母。"
3000
+ }
3001
+ ],
3002
+ "use_registration_fields.error.minimum_characters": [
3003
+ {
3004
+ "type": 0,
3005
+ "value": "密碼必須包含至少 8 個字元。"
3006
+ }
3007
+ ],
3008
+ "use_registration_fields.error.required_email": [
3009
+ {
3010
+ "type": 0,
3011
+ "value": "請輸入有效的電子郵件地址。"
3012
+ }
3013
+ ],
3014
+ "use_registration_fields.error.required_first_name": [
3015
+ {
3016
+ "type": 0,
3017
+ "value": "請輸入您的名字。"
3018
+ }
3019
+ ],
3020
+ "use_registration_fields.error.required_last_name": [
3021
+ {
3022
+ "type": 0,
3023
+ "value": "請輸入您的姓氏。"
3024
+ }
3025
+ ],
3026
+ "use_registration_fields.error.required_password": [
3027
+ {
3028
+ "type": 0,
3029
+ "value": "請建立密碼。"
3030
+ }
3031
+ ],
3032
+ "use_registration_fields.error.special_character": [
3033
+ {
3034
+ "type": 0,
3035
+ "value": "密碼必須包含至少 1 個特殊字元。"
3036
+ }
3037
+ ],
3038
+ "use_registration_fields.error.uppercase_letter": [
3039
+ {
3040
+ "type": 0,
3041
+ "value": "密碼必須包含至少 1 個大寫字母。"
3042
+ }
3043
+ ],
3044
+ "use_registration_fields.label.email": [
3045
+ {
3046
+ "type": 0,
3047
+ "value": "電子郵件"
3048
+ }
3049
+ ],
3050
+ "use_registration_fields.label.first_name": [
3051
+ {
3052
+ "type": 0,
3053
+ "value": "名字"
3054
+ }
3055
+ ],
3056
+ "use_registration_fields.label.last_name": [
3057
+ {
3058
+ "type": 0,
3059
+ "value": "姓氏"
3060
+ }
3061
+ ],
3062
+ "use_registration_fields.label.password": [
3063
+ {
3064
+ "type": 0,
3065
+ "value": "密碼"
3066
+ }
3067
+ ],
3068
+ "use_registration_fields.label.sign_up_to_emails": [
3069
+ {
3070
+ "type": 0,
3071
+ "value": "我要訂閱 Salesforce 電子報 (可以隨時取消訂閱)"
3072
+ }
3073
+ ],
3074
+ "use_reset_password_fields.error.required_email": [
3075
+ {
3076
+ "type": 0,
3077
+ "value": "請輸入有效的電子郵件地址。"
3078
+ }
3079
+ ],
3080
+ "use_reset_password_fields.label.email": [
3081
+ {
3082
+ "type": 0,
3083
+ "value": "電子郵件"
3084
+ }
3085
+ ],
3086
+ "use_update_password_fields.error.contain_number": [
3087
+ {
3088
+ "type": 0,
3089
+ "value": "密碼必須包含至少 1 個數字。"
3090
+ }
3091
+ ],
3092
+ "use_update_password_fields.error.lowercase_letter": [
3093
+ {
3094
+ "type": 0,
3095
+ "value": "密碼必須包含至少 1 個小寫字母。"
3096
+ }
3097
+ ],
3098
+ "use_update_password_fields.error.minimum_characters": [
3099
+ {
3100
+ "type": 0,
3101
+ "value": "密碼必須包含至少 8 個字元。"
3102
+ }
3103
+ ],
3104
+ "use_update_password_fields.error.required_new_password": [
3105
+ {
3106
+ "type": 0,
3107
+ "value": "請提供新密碼。"
3108
+ }
3109
+ ],
3110
+ "use_update_password_fields.error.required_password": [
3111
+ {
3112
+ "type": 0,
3113
+ "value": "請輸入您的密碼。"
3114
+ }
3115
+ ],
3116
+ "use_update_password_fields.error.special_character": [
3117
+ {
3118
+ "type": 0,
3119
+ "value": "密碼必須包含至少 1 個特殊字元。"
3120
+ }
3121
+ ],
3122
+ "use_update_password_fields.error.uppercase_letter": [
3123
+ {
3124
+ "type": 0,
3125
+ "value": "密碼必須包含至少 1 個大寫字母。"
3126
+ }
3127
+ ],
3128
+ "use_update_password_fields.label.current_password": [
3129
+ {
3130
+ "type": 0,
3131
+ "value": "目前密碼"
3132
+ }
3133
+ ],
3134
+ "use_update_password_fields.label.new_password": [
3135
+ {
3136
+ "type": 0,
3137
+ "value": "新密碼"
3138
+ }
3139
+ ],
3140
+ "wishlist_primary_action.button.add_to_cart": [
3141
+ {
3142
+ "type": 0,
3143
+ "value": "新增至購物車"
3144
+ }
3145
+ ],
3146
+ "wishlist_primary_action.button.select_options": [
3147
+ {
3148
+ "type": 0,
3149
+ "value": "選擇選項"
3150
+ }
3151
+ ],
3152
+ "wishlist_primary_action.info.added_to_cart": [
3153
+ {
3154
+ "type": 1,
3155
+ "value": "quantity"
3156
+ },
3157
+ {
3158
+ "type": 0,
3159
+ "value": " "
3160
+ },
3161
+ {
3162
+ "offset": 0,
3163
+ "options": {
3164
+ "one": {
3165
+ "value": [
3166
+ {
3167
+ "type": 0,
3168
+ "value": "件商品"
3169
+ }
3170
+ ]
3171
+ },
3172
+ "other": {
3173
+ "value": [
3174
+ {
3175
+ "type": 0,
3176
+ "value": "件商品"
3177
+ }
3178
+ ]
3179
+ }
3180
+ },
3181
+ "pluralType": "cardinal",
3182
+ "type": 6,
3183
+ "value": "quantity"
3184
+ },
3185
+ {
3186
+ "type": 0,
3187
+ "value": "已新增至購物車"
3188
+ }
3189
+ ],
3190
+ "wishlist_secondary_button_group.action.remove": [
3191
+ {
3192
+ "type": 0,
3193
+ "value": "移除"
3194
+ }
3195
+ ],
3196
+ "wishlist_secondary_button_group.info.item_removed": [
3197
+ {
3198
+ "type": 0,
3199
+ "value": "已從願望清單移除商品"
3200
+ }
3201
+ ],
3202
+ "with_registration.info.please_sign_in": [
3203
+ {
3204
+ "type": 0,
3205
+ "value": "請登入以繼續。"
3206
+ }
3207
+ ]
3208
+ }