@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,3180 @@
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
+ "children": [
395
+ {
396
+ "type": 1,
397
+ "value": "email"
398
+ }
399
+ ],
400
+ "type": 8,
401
+ "value": "b"
402
+ },
403
+ {
404
+ "type": 0,
405
+ "value": "(으)로 암호 재설정 링크가 포함된 이메일이 곧 발송됩니다."
406
+ }
407
+ ],
408
+ "auth_modal.password_reset_success.title.password_reset": [
409
+ {
410
+ "type": 0,
411
+ "value": "암호 재설정"
412
+ }
413
+ ],
414
+ "card_payment_form.heading.new_payment_method": [
415
+ {
416
+ "type": 0,
417
+ "value": "새 결제 방법 추가"
418
+ }
419
+ ],
420
+ "cart.info.removed_from_cart": [
421
+ {
422
+ "type": 0,
423
+ "value": "항목이 카트에서 제거됨"
424
+ }
425
+ ],
426
+ "cart.recommended_products.title.may_also_like": [
427
+ {
428
+ "type": 0,
429
+ "value": "추천 상품"
430
+ }
431
+ ],
432
+ "cart.recommended_products.title.recently_viewed": [
433
+ {
434
+ "type": 0,
435
+ "value": "최근에 봄"
436
+ }
437
+ ],
438
+ "cart_cta.link.checkout": [
439
+ {
440
+ "type": 0,
441
+ "value": "체크아웃 진행"
442
+ }
443
+ ],
444
+ "cart_secondary_button_group.action.added_to_wishlist": [
445
+ {
446
+ "type": 0,
447
+ "value": "위시리스트에 추가"
448
+ }
449
+ ],
450
+ "cart_secondary_button_group.action.edit": [
451
+ {
452
+ "type": 0,
453
+ "value": "편집"
454
+ }
455
+ ],
456
+ "cart_secondary_button_group.action.remove": [
457
+ {
458
+ "type": 0,
459
+ "value": "제거"
460
+ }
461
+ ],
462
+ "cart_secondary_button_group.label.this_is_gift": [
463
+ {
464
+ "type": 0,
465
+ "value": "선물로 구매"
466
+ }
467
+ ],
468
+ "cart_secondary_button_group.link_learn_more": [
469
+ {
470
+ "type": 0,
471
+ "value": "자세히 알아보기"
472
+ }
473
+ ],
474
+ "cart_skeleton.heading.order_summary": [
475
+ {
476
+ "type": 0,
477
+ "value": "주문 요약"
478
+ }
479
+ ],
480
+ "cart_skeleton.title.cart": [
481
+ {
482
+ "type": 0,
483
+ "value": "카트"
484
+ }
485
+ ],
486
+ "cart_title.title.cart_num_of_items": [
487
+ {
488
+ "type": 0,
489
+ "value": "카트("
490
+ },
491
+ {
492
+ "offset": 0,
493
+ "options": {
494
+ "=0": {
495
+ "value": [
496
+ {
497
+ "type": 0,
498
+ "value": "0개 항목"
499
+ }
500
+ ]
501
+ },
502
+ "one": {
503
+ "value": [
504
+ {
505
+ "type": 7
506
+ },
507
+ {
508
+ "type": 0,
509
+ "value": "개 항목"
510
+ }
511
+ ]
512
+ },
513
+ "other": {
514
+ "value": [
515
+ {
516
+ "type": 7
517
+ },
518
+ {
519
+ "type": 0,
520
+ "value": "개 항목"
521
+ }
522
+ ]
523
+ }
524
+ },
525
+ "pluralType": "cardinal",
526
+ "type": 6,
527
+ "value": "itemCount"
528
+ },
529
+ {
530
+ "type": 0,
531
+ "value": ")"
532
+ }
533
+ ],
534
+ "cc_radio_group.action.remove": [
535
+ {
536
+ "type": 0,
537
+ "value": "제거"
538
+ }
539
+ ],
540
+ "cc_radio_group.button.add_new_card": [
541
+ {
542
+ "type": 0,
543
+ "value": "새 카드 추가"
544
+ }
545
+ ],
546
+ "checkout.button.place_order": [
547
+ {
548
+ "type": 0,
549
+ "value": "주문하기"
550
+ }
551
+ ],
552
+ "checkout.message.generic_error": [
553
+ {
554
+ "type": 0,
555
+ "value": "체크아웃하는 중에 예상치 못한 오류가 발생했습니다. "
556
+ }
557
+ ],
558
+ "checkout_confirmation.button.create_account": [
559
+ {
560
+ "type": 0,
561
+ "value": "계정 생성"
562
+ }
563
+ ],
564
+ "checkout_confirmation.heading.billing_address": [
565
+ {
566
+ "type": 0,
567
+ "value": "청구 주소"
568
+ }
569
+ ],
570
+ "checkout_confirmation.heading.create_account": [
571
+ {
572
+ "type": 0,
573
+ "value": "빠른 체크아웃을 위해 계정을 만듭니다."
574
+ }
575
+ ],
576
+ "checkout_confirmation.heading.credit_card": [
577
+ {
578
+ "type": 0,
579
+ "value": "신용카드"
580
+ }
581
+ ],
582
+ "checkout_confirmation.heading.delivery_details": [
583
+ {
584
+ "type": 0,
585
+ "value": "배송 세부 정보"
586
+ }
587
+ ],
588
+ "checkout_confirmation.heading.order_summary": [
589
+ {
590
+ "type": 0,
591
+ "value": "주문 요약"
592
+ }
593
+ ],
594
+ "checkout_confirmation.heading.payment_details": [
595
+ {
596
+ "type": 0,
597
+ "value": "결제 세부 정보"
598
+ }
599
+ ],
600
+ "checkout_confirmation.heading.shipping_address": [
601
+ {
602
+ "type": 0,
603
+ "value": "배송 주소"
604
+ }
605
+ ],
606
+ "checkout_confirmation.heading.shipping_method": [
607
+ {
608
+ "type": 0,
609
+ "value": "배송 방법"
610
+ }
611
+ ],
612
+ "checkout_confirmation.heading.thank_you_for_order": [
613
+ {
614
+ "type": 0,
615
+ "value": "주문해 주셔서 감사합니다."
616
+ }
617
+ ],
618
+ "checkout_confirmation.label.free": [
619
+ {
620
+ "type": 0,
621
+ "value": "무료"
622
+ }
623
+ ],
624
+ "checkout_confirmation.label.order_number": [
625
+ {
626
+ "type": 0,
627
+ "value": "주문 번호"
628
+ }
629
+ ],
630
+ "checkout_confirmation.label.order_total": [
631
+ {
632
+ "type": 0,
633
+ "value": "주문 합계"
634
+ }
635
+ ],
636
+ "checkout_confirmation.label.promo_applied": [
637
+ {
638
+ "type": 0,
639
+ "value": "프로모션이 적용됨"
640
+ }
641
+ ],
642
+ "checkout_confirmation.label.shipping": [
643
+ {
644
+ "type": 0,
645
+ "value": "배송"
646
+ }
647
+ ],
648
+ "checkout_confirmation.label.subtotal": [
649
+ {
650
+ "type": 0,
651
+ "value": "소계"
652
+ }
653
+ ],
654
+ "checkout_confirmation.label.tax": [
655
+ {
656
+ "type": 0,
657
+ "value": "세금"
658
+ }
659
+ ],
660
+ "checkout_confirmation.link.continue_shopping": [
661
+ {
662
+ "type": 0,
663
+ "value": "계속 쇼핑하기"
664
+ }
665
+ ],
666
+ "checkout_confirmation.link.login": [
667
+ {
668
+ "type": 0,
669
+ "value": "여기서 로그인하십시오."
670
+ }
671
+ ],
672
+ "checkout_confirmation.message.already_has_account": [
673
+ {
674
+ "type": 0,
675
+ "value": "이 이메일을 사용한 계정이 이미 있습니다."
676
+ }
677
+ ],
678
+ "checkout_confirmation.message.num_of_items_in_order": [
679
+ {
680
+ "offset": 0,
681
+ "options": {
682
+ "=0": {
683
+ "value": [
684
+ {
685
+ "type": 0,
686
+ "value": "0개 항목"
687
+ }
688
+ ]
689
+ },
690
+ "one": {
691
+ "value": [
692
+ {
693
+ "type": 7
694
+ },
695
+ {
696
+ "type": 0,
697
+ "value": "개 항목"
698
+ }
699
+ ]
700
+ },
701
+ "other": {
702
+ "value": [
703
+ {
704
+ "type": 7
705
+ },
706
+ {
707
+ "type": 0,
708
+ "value": "개 항목"
709
+ }
710
+ ]
711
+ }
712
+ },
713
+ "pluralType": "cardinal",
714
+ "type": 6,
715
+ "value": "itemCount"
716
+ }
717
+ ],
718
+ "checkout_confirmation.message.will_email_shortly": [
719
+ {
720
+ "children": [
721
+ {
722
+ "type": 1,
723
+ "value": "email"
724
+ }
725
+ ],
726
+ "type": 8,
727
+ "value": "b"
728
+ },
729
+ {
730
+ "type": 0,
731
+ "value": "(으)로 확인 번호와 영수증이 포함된 이메일을 곧 보내드리겠습니다."
732
+ }
733
+ ],
734
+ "checkout_footer.link.privacy_policy": [
735
+ {
736
+ "type": 0,
737
+ "value": "개인정보보호 정책"
738
+ }
739
+ ],
740
+ "checkout_footer.link.returns_exchanges": [
741
+ {
742
+ "type": 0,
743
+ "value": "반품 및 교환"
744
+ }
745
+ ],
746
+ "checkout_footer.link.shipping": [
747
+ {
748
+ "type": 0,
749
+ "value": "배송"
750
+ }
751
+ ],
752
+ "checkout_footer.link.site_map": [
753
+ {
754
+ "type": 0,
755
+ "value": "사이트 맵"
756
+ }
757
+ ],
758
+ "checkout_footer.link.terms_conditions": [
759
+ {
760
+ "type": 0,
761
+ "value": "이용 약관"
762
+ }
763
+ ],
764
+ "checkout_footer.message.copyright": [
765
+ {
766
+ "type": 0,
767
+ "value": "Salesforce or its affiliates. All rights reserved. 데모용 매장입니다. 주문이 처리되지 않습니다."
768
+ }
769
+ ],
770
+ "checkout_header.link.cart": [
771
+ {
772
+ "type": 0,
773
+ "value": "카트로 돌아가기"
774
+ }
775
+ ],
776
+ "checkout_payment.action.remove": [
777
+ {
778
+ "type": 0,
779
+ "value": "제거"
780
+ }
781
+ ],
782
+ "checkout_payment.button.review_order": [
783
+ {
784
+ "type": 0,
785
+ "value": "주문 검토"
786
+ }
787
+ ],
788
+ "checkout_payment.heading.billing_address": [
789
+ {
790
+ "type": 0,
791
+ "value": "청구 주소"
792
+ }
793
+ ],
794
+ "checkout_payment.heading.credit_card": [
795
+ {
796
+ "type": 0,
797
+ "value": "신용카드"
798
+ }
799
+ ],
800
+ "checkout_payment.label.same_as_shipping": [
801
+ {
802
+ "type": 0,
803
+ "value": "배송 주소와 동일"
804
+ }
805
+ ],
806
+ "checkout_payment.title.payment": [
807
+ {
808
+ "type": 0,
809
+ "value": "결제"
810
+ }
811
+ ],
812
+ "confirmation_modal.default.action.no": [
813
+ {
814
+ "type": 0,
815
+ "value": "아니요"
816
+ }
817
+ ],
818
+ "confirmation_modal.default.action.yes": [
819
+ {
820
+ "type": 0,
821
+ "value": "예"
822
+ }
823
+ ],
824
+ "confirmation_modal.default.message.you_want_to_continue": [
825
+ {
826
+ "type": 0,
827
+ "value": "계속하시겠습니까?"
828
+ }
829
+ ],
830
+ "confirmation_modal.default.title.confirm_action": [
831
+ {
832
+ "type": 0,
833
+ "value": "작업 확인"
834
+ }
835
+ ],
836
+ "confirmation_modal.remove_cart_item.action.no": [
837
+ {
838
+ "type": 0,
839
+ "value": "아니요. 항목을 그대로 둡니다."
840
+ }
841
+ ],
842
+ "confirmation_modal.remove_cart_item.action.yes": [
843
+ {
844
+ "type": 0,
845
+ "value": "예. 항목을 제거합니다."
846
+ }
847
+ ],
848
+ "confirmation_modal.remove_cart_item.message.sure_to_remove": [
849
+ {
850
+ "type": 0,
851
+ "value": "이 항목을 카트에서 제거하시겠습니까?"
852
+ }
853
+ ],
854
+ "confirmation_modal.remove_cart_item.title.confirm_remove": [
855
+ {
856
+ "type": 0,
857
+ "value": "항목 제거 확인"
858
+ }
859
+ ],
860
+ "confirmation_modal.remove_wishlist_item.action.no": [
861
+ {
862
+ "type": 0,
863
+ "value": "아니요. 항목을 그대로 둡니다."
864
+ }
865
+ ],
866
+ "confirmation_modal.remove_wishlist_item.action.yes": [
867
+ {
868
+ "type": 0,
869
+ "value": "예. 항목을 제거합니다."
870
+ }
871
+ ],
872
+ "confirmation_modal.remove_wishlist_item.message.sure_to_remove": [
873
+ {
874
+ "type": 0,
875
+ "value": "이 항목을 위시리스트에서 제거하시겠습니까?"
876
+ }
877
+ ],
878
+ "confirmation_modal.remove_wishlist_item.title.confirm_remove": [
879
+ {
880
+ "type": 0,
881
+ "value": "항목 제거 확인"
882
+ }
883
+ ],
884
+ "contact_info.action.sign_out": [
885
+ {
886
+ "type": 0,
887
+ "value": "로그아웃"
888
+ }
889
+ ],
890
+ "contact_info.button.already_have_account": [
891
+ {
892
+ "type": 0,
893
+ "value": "계정이 이미 있습니까? 로그인"
894
+ }
895
+ ],
896
+ "contact_info.button.checkout_as_guest": [
897
+ {
898
+ "type": 0,
899
+ "value": "비회원으로 체크아웃"
900
+ }
901
+ ],
902
+ "contact_info.button.login": [
903
+ {
904
+ "type": 0,
905
+ "value": "로그인"
906
+ }
907
+ ],
908
+ "contact_info.error.incorrect_username_or_password": [
909
+ {
910
+ "type": 0,
911
+ "value": "사용자 이름 또는 암호가 올바르지 않습니다. 다시 시도하십시오."
912
+ }
913
+ ],
914
+ "contact_info.link.forgot_password": [
915
+ {
916
+ "type": 0,
917
+ "value": "암호가 기억나지 않습니까?"
918
+ }
919
+ ],
920
+ "contact_info.title.contact_info": [
921
+ {
922
+ "type": 0,
923
+ "value": "연락처 정보"
924
+ }
925
+ ],
926
+ "credit_card_fields.tool_tip.security_code": [
927
+ {
928
+ "type": 0,
929
+ "value": "이 3자리 코드는 카드의 뒷면에서 확인할 수 있습니다."
930
+ }
931
+ ],
932
+ "credit_card_fields.tool_tip.security_code.american_express": [
933
+ {
934
+ "type": 0,
935
+ "value": "이 4자리 코드는 카드의 전면에서 확인할 수 있습니다."
936
+ }
937
+ ],
938
+ "drawer_menu.button.account_details": [
939
+ {
940
+ "type": 0,
941
+ "value": "계정 세부 정보"
942
+ }
943
+ ],
944
+ "drawer_menu.button.addresses": [
945
+ {
946
+ "type": 0,
947
+ "value": "주소"
948
+ }
949
+ ],
950
+ "drawer_menu.button.log_out": [
951
+ {
952
+ "type": 0,
953
+ "value": "로그아웃"
954
+ }
955
+ ],
956
+ "drawer_menu.button.my_account": [
957
+ {
958
+ "type": 0,
959
+ "value": "내 계정"
960
+ }
961
+ ],
962
+ "drawer_menu.button.order_history": [
963
+ {
964
+ "type": 0,
965
+ "value": "주문 내역"
966
+ }
967
+ ],
968
+ "drawer_menu.button.payment_methods": [
969
+ {
970
+ "type": 0,
971
+ "value": "결제 방법"
972
+ }
973
+ ],
974
+ "drawer_menu.link.about_us": [
975
+ {
976
+ "type": 0,
977
+ "value": "회사 정보"
978
+ }
979
+ ],
980
+ "drawer_menu.link.customer_support": [
981
+ {
982
+ "type": 0,
983
+ "value": "고객 지원"
984
+ }
985
+ ],
986
+ "drawer_menu.link.customer_support.contact_us": [
987
+ {
988
+ "type": 0,
989
+ "value": "문의"
990
+ }
991
+ ],
992
+ "drawer_menu.link.customer_support.shipping_and_returns": [
993
+ {
994
+ "type": 0,
995
+ "value": "배송 및 반품"
996
+ }
997
+ ],
998
+ "drawer_menu.link.our_company": [
999
+ {
1000
+ "type": 0,
1001
+ "value": "회사"
1002
+ }
1003
+ ],
1004
+ "drawer_menu.link.privacy_and_security": [
1005
+ {
1006
+ "type": 0,
1007
+ "value": "개인정보보호 및 보안"
1008
+ }
1009
+ ],
1010
+ "drawer_menu.link.privacy_policy": [
1011
+ {
1012
+ "type": 0,
1013
+ "value": "개인정보보호 정책"
1014
+ }
1015
+ ],
1016
+ "drawer_menu.link.shop_all": [
1017
+ {
1018
+ "type": 0,
1019
+ "value": "모두 구매"
1020
+ }
1021
+ ],
1022
+ "drawer_menu.link.sign_in": [
1023
+ {
1024
+ "type": 0,
1025
+ "value": "로그인"
1026
+ }
1027
+ ],
1028
+ "drawer_menu.link.site_map": [
1029
+ {
1030
+ "type": 0,
1031
+ "value": "사이트 맵"
1032
+ }
1033
+ ],
1034
+ "drawer_menu.link.store_locator": [
1035
+ {
1036
+ "type": 0,
1037
+ "value": "매장 찾기"
1038
+ }
1039
+ ],
1040
+ "drawer_menu.link.terms_and_conditions": [
1041
+ {
1042
+ "type": 0,
1043
+ "value": "이용 약관"
1044
+ }
1045
+ ],
1046
+ "empty_cart.description.empty_cart": [
1047
+ {
1048
+ "type": 0,
1049
+ "value": "카트가 비어 있습니다."
1050
+ }
1051
+ ],
1052
+ "empty_cart.link.continue_shopping": [
1053
+ {
1054
+ "type": 0,
1055
+ "value": "계속 쇼핑하기"
1056
+ }
1057
+ ],
1058
+ "empty_cart.link.sign_in": [
1059
+ {
1060
+ "type": 0,
1061
+ "value": "로그인"
1062
+ }
1063
+ ],
1064
+ "empty_cart.message.continue_shopping": [
1065
+ {
1066
+ "type": 0,
1067
+ "value": "계속 쇼핑하면서 카트에 항목을 추가합니다."
1068
+ }
1069
+ ],
1070
+ "empty_cart.message.sign_in_or_continue_shopping": [
1071
+ {
1072
+ "type": 0,
1073
+ "value": "로그인하여 저장된 항목을 검색하거나 쇼핑을 계속하십시오."
1074
+ }
1075
+ ],
1076
+ "empty_search_results.info.cant_find_anything_for_category": [
1077
+ {
1078
+ "type": 1,
1079
+ "value": "category"
1080
+ },
1081
+ {
1082
+ "type": 0,
1083
+ "value": "에 해당하는 항목을 찾을 수 없습니다. 제품을 검색하거나 "
1084
+ },
1085
+ {
1086
+ "type": 1,
1087
+ "value": "link"
1088
+ },
1089
+ {
1090
+ "type": 0,
1091
+ "value": "을(를) 클릭해 보십시오."
1092
+ }
1093
+ ],
1094
+ "empty_search_results.info.cant_find_anything_for_query": [
1095
+ {
1096
+ "type": 0,
1097
+ "value": "{searchQuery}에 해당하는 항목을 찾을 수 없습니다."
1098
+ }
1099
+ ],
1100
+ "empty_search_results.info.double_check_spelling": [
1101
+ {
1102
+ "type": 0,
1103
+ "value": "철자를 다시 확인하고 다시 시도하거나 "
1104
+ },
1105
+ {
1106
+ "type": 1,
1107
+ "value": "link"
1108
+ },
1109
+ {
1110
+ "type": 0,
1111
+ "value": "을(를) 클릭해 보십시오."
1112
+ }
1113
+ ],
1114
+ "empty_search_results.link.contact_us": [
1115
+ {
1116
+ "type": 0,
1117
+ "value": "문의"
1118
+ }
1119
+ ],
1120
+ "empty_search_results.recommended_products.title.most_viewed": [
1121
+ {
1122
+ "type": 0,
1123
+ "value": "가장 많이 본 항목"
1124
+ }
1125
+ ],
1126
+ "empty_search_results.recommended_products.title.top_sellers": [
1127
+ {
1128
+ "type": 0,
1129
+ "value": "탑셀러"
1130
+ }
1131
+ ],
1132
+ "footer.column.account": [
1133
+ {
1134
+ "type": 0,
1135
+ "value": "계정"
1136
+ }
1137
+ ],
1138
+ "footer.column.customer_support": [
1139
+ {
1140
+ "type": 0,
1141
+ "value": "고객 지원"
1142
+ }
1143
+ ],
1144
+ "footer.column.our_company": [
1145
+ {
1146
+ "type": 0,
1147
+ "value": "회사"
1148
+ }
1149
+ ],
1150
+ "footer.link.about_us": [
1151
+ {
1152
+ "type": 0,
1153
+ "value": "회사 정보"
1154
+ }
1155
+ ],
1156
+ "footer.link.contact_us": [
1157
+ {
1158
+ "type": 0,
1159
+ "value": "문의"
1160
+ }
1161
+ ],
1162
+ "footer.link.order_status": [
1163
+ {
1164
+ "type": 0,
1165
+ "value": "주문 상태"
1166
+ }
1167
+ ],
1168
+ "footer.link.privacy_policy": [
1169
+ {
1170
+ "type": 0,
1171
+ "value": "개인정보보호 정책"
1172
+ }
1173
+ ],
1174
+ "footer.link.shipping": [
1175
+ {
1176
+ "type": 0,
1177
+ "value": "배송"
1178
+ }
1179
+ ],
1180
+ "footer.link.signin_create_account": [
1181
+ {
1182
+ "type": 0,
1183
+ "value": "로그인 또는 계정 생성"
1184
+ }
1185
+ ],
1186
+ "footer.link.site_map": [
1187
+ {
1188
+ "type": 0,
1189
+ "value": "사이트 맵"
1190
+ }
1191
+ ],
1192
+ "footer.link.store_locator": [
1193
+ {
1194
+ "type": 0,
1195
+ "value": "매장 찾기"
1196
+ }
1197
+ ],
1198
+ "footer.link.terms_conditions": [
1199
+ {
1200
+ "type": 0,
1201
+ "value": "이용 약관"
1202
+ }
1203
+ ],
1204
+ "footer.message.copyright": [
1205
+ {
1206
+ "type": 0,
1207
+ "value": "Salesforce or its affiliates. All rights reserved. 데모용 매장입니다. 주문이 처리되지 않습니다."
1208
+ }
1209
+ ],
1210
+ "footer.subscribe.button.sign_up": [
1211
+ {
1212
+ "type": 0,
1213
+ "value": "가입하기"
1214
+ }
1215
+ ],
1216
+ "footer.subscribe.description.sign_up": [
1217
+ {
1218
+ "type": 0,
1219
+ "value": "특별한 구매 기회를 놓치지 않으려면 가입하세요."
1220
+ }
1221
+ ],
1222
+ "footer.subscribe.heading.first_to_know": [
1223
+ {
1224
+ "type": 0,
1225
+ "value": "최신 정보를 누구보다 빨리 받아보세요."
1226
+ }
1227
+ ],
1228
+ "form_action_buttons.button.cancel": [
1229
+ {
1230
+ "type": 0,
1231
+ "value": "취소"
1232
+ }
1233
+ ],
1234
+ "form_action_buttons.button.save": [
1235
+ {
1236
+ "type": 0,
1237
+ "value": "저장"
1238
+ }
1239
+ ],
1240
+ "global.account.link.account_details": [
1241
+ {
1242
+ "type": 0,
1243
+ "value": "계정 세부 정보"
1244
+ }
1245
+ ],
1246
+ "global.account.link.addresses": [
1247
+ {
1248
+ "type": 0,
1249
+ "value": "주소"
1250
+ }
1251
+ ],
1252
+ "global.account.link.order_history": [
1253
+ {
1254
+ "type": 0,
1255
+ "value": "주문 내역"
1256
+ }
1257
+ ],
1258
+ "global.account.link.payment_methods": [
1259
+ {
1260
+ "type": 0,
1261
+ "value": "결제 방법"
1262
+ }
1263
+ ],
1264
+ "global.account.link.wishlist": [
1265
+ {
1266
+ "type": 0,
1267
+ "value": "위시리스트"
1268
+ }
1269
+ ],
1270
+ "global.error.something_went_wrong": [
1271
+ {
1272
+ "type": 0,
1273
+ "value": "문제가 발생했습니다. 다시 시도하십시오."
1274
+ }
1275
+ ],
1276
+ "global.info.added_to_wishlist": [
1277
+ {
1278
+ "type": 1,
1279
+ "value": "quantity"
1280
+ },
1281
+ {
1282
+ "type": 0,
1283
+ "value": " "
1284
+ },
1285
+ {
1286
+ "offset": 0,
1287
+ "options": {
1288
+ "one": {
1289
+ "value": [
1290
+ {
1291
+ "type": 0,
1292
+ "value": "개 항목"
1293
+ }
1294
+ ]
1295
+ },
1296
+ "other": {
1297
+ "value": [
1298
+ {
1299
+ "type": 0,
1300
+ "value": "개 항목"
1301
+ }
1302
+ ]
1303
+ }
1304
+ },
1305
+ "pluralType": "cardinal",
1306
+ "type": 6,
1307
+ "value": "quantity"
1308
+ },
1309
+ {
1310
+ "type": 0,
1311
+ "value": "이 위시리스트에 추가됨"
1312
+ }
1313
+ ],
1314
+ "global.info.removed_from_wishlist": [
1315
+ {
1316
+ "type": 0,
1317
+ "value": "항목이 위시리스트에서 제거됨"
1318
+ }
1319
+ ],
1320
+ "global.link.added_to_wishlist.view_wishlist": [
1321
+ {
1322
+ "type": 0,
1323
+ "value": "보기"
1324
+ }
1325
+ ],
1326
+ "header.button.assistive_msg.logo": [
1327
+ {
1328
+ "type": 0,
1329
+ "value": "로고"
1330
+ }
1331
+ ],
1332
+ "header.button.assistive_msg.menu": [
1333
+ {
1334
+ "type": 0,
1335
+ "value": "메뉴"
1336
+ }
1337
+ ],
1338
+ "header.button.assistive_msg.my_account": [
1339
+ {
1340
+ "type": 0,
1341
+ "value": "내 계정"
1342
+ }
1343
+ ],
1344
+ "header.button.assistive_msg.my_cart": [
1345
+ {
1346
+ "type": 0,
1347
+ "value": "내 카트"
1348
+ }
1349
+ ],
1350
+ "header.button.assistive_msg.wishlist": [
1351
+ {
1352
+ "type": 0,
1353
+ "value": "위시리스트"
1354
+ }
1355
+ ],
1356
+ "header.field.placeholder.search_for_products": [
1357
+ {
1358
+ "type": 0,
1359
+ "value": "제품 검색..."
1360
+ }
1361
+ ],
1362
+ "header.popover.action.log_out": [
1363
+ {
1364
+ "type": 0,
1365
+ "value": "로그아웃"
1366
+ }
1367
+ ],
1368
+ "header.popover.title.my_account": [
1369
+ {
1370
+ "type": 0,
1371
+ "value": "내 계정"
1372
+ }
1373
+ ],
1374
+ "home.description.features": [
1375
+ {
1376
+ "type": 0,
1377
+ "value": "향상된 기능을 추가하는 데 집중할 수 있도록 기본 기능을 제공합니다."
1378
+ }
1379
+ ],
1380
+ "home.description.here_to_help": [
1381
+ {
1382
+ "type": 0,
1383
+ "value": "지원 담당자에게 문의하십시오."
1384
+ }
1385
+ ],
1386
+ "home.description.here_to_help_line_2": [
1387
+ {
1388
+ "type": 0,
1389
+ "value": "올바른 위치로 안내해 드립니다."
1390
+ }
1391
+ ],
1392
+ "home.description.shop_products": [
1393
+ {
1394
+ "type": 0,
1395
+ "value": "이 섹션에는 카탈로그의 컨텐츠가 포함되어 있습니다. 대체하는 방법을 안내하는 "
1396
+ },
1397
+ {
1398
+ "type": 1,
1399
+ "value": "docLink"
1400
+ },
1401
+ {
1402
+ "type": 0,
1403
+ "value": "입니다."
1404
+ }
1405
+ ],
1406
+ "home.features.description.cart_checkout": [
1407
+ {
1408
+ "type": 0,
1409
+ "value": "구매자의 카트 및 체크아웃 경험에 대한 이커머스 모범 사례입니다."
1410
+ }
1411
+ ],
1412
+ "home.features.description.components": [
1413
+ {
1414
+ "type": 0,
1415
+ "value": "이용이 간편한 모듈식 React 구성요소 라이브러리인 React Chakra UI를 사용하여 구축되었습니다."
1416
+ }
1417
+ ],
1418
+ "home.features.description.einstein_recommendations": [
1419
+ {
1420
+ "type": 0,
1421
+ "value": "권장 제품을 통해 모든 구매자에게 다른 추천 제품이나 오퍼를 제공합니다."
1422
+ }
1423
+ ],
1424
+ "home.features.description.my_account": [
1425
+ {
1426
+ "type": 0,
1427
+ "value": "구매자가 프로필, 주소, 결제, 주문 등의 계정 정보를 관리할 수 있습니다."
1428
+ }
1429
+ ],
1430
+ "home.features.description.shopper_login": [
1431
+ {
1432
+ "type": 0,
1433
+ "value": "구매자가 보다 개인화된 쇼핑 경험을 통해 편리하게 로그인할 수 있습니다."
1434
+ }
1435
+ ],
1436
+ "home.features.description.wishlist": [
1437
+ {
1438
+ "type": 0,
1439
+ "value": "등록된 구매자가 나중에 구매할 제품 항목을 위시리스트에 추가할 수 있습니다."
1440
+ }
1441
+ ],
1442
+ "home.features.heading.cart_checkout": [
1443
+ {
1444
+ "type": 0,
1445
+ "value": "카트 및 체크아웃"
1446
+ }
1447
+ ],
1448
+ "home.features.heading.components": [
1449
+ {
1450
+ "type": 0,
1451
+ "value": "구성요소 및 디자인 키트"
1452
+ }
1453
+ ],
1454
+ "home.features.heading.einstein_recommendations": [
1455
+ {
1456
+ "type": 0,
1457
+ "value": "Einstein 제품 추천"
1458
+ }
1459
+ ],
1460
+ "home.features.heading.my_account": [
1461
+ {
1462
+ "type": 0,
1463
+ "value": "내 계정"
1464
+ }
1465
+ ],
1466
+ "home.features.heading.shopper_login": [
1467
+ {
1468
+ "type": 0,
1469
+ "value": "Shopper Login 및 API Access Service(SLAS)"
1470
+ }
1471
+ ],
1472
+ "home.features.heading.wishlist": [
1473
+ {
1474
+ "type": 0,
1475
+ "value": "위시리스트"
1476
+ }
1477
+ ],
1478
+ "home.heading.features": [
1479
+ {
1480
+ "type": 0,
1481
+ "value": "기능"
1482
+ }
1483
+ ],
1484
+ "home.heading.here_to_help": [
1485
+ {
1486
+ "type": 0,
1487
+ "value": "도움 받기"
1488
+ }
1489
+ ],
1490
+ "home.heading.shop_products": [
1491
+ {
1492
+ "type": 0,
1493
+ "value": "제품 쇼핑"
1494
+ }
1495
+ ],
1496
+ "home.hero_features.link.design_kit": [
1497
+ {
1498
+ "type": 0,
1499
+ "value": "Figma PWA Design Kit를 사용하여 생성"
1500
+ }
1501
+ ],
1502
+ "home.hero_features.link.on_github": [
1503
+ {
1504
+ "type": 0,
1505
+ "value": "Github에서 다운로드"
1506
+ }
1507
+ ],
1508
+ "home.hero_features.link.on_managed_runtime": [
1509
+ {
1510
+ "type": 0,
1511
+ "value": "Managed Runtime에서 배포"
1512
+ }
1513
+ ],
1514
+ "home.link.contact_us": [
1515
+ {
1516
+ "type": 0,
1517
+ "value": "문의"
1518
+ }
1519
+ ],
1520
+ "home.link.get_started": [
1521
+ {
1522
+ "type": 0,
1523
+ "value": "시작하기"
1524
+ }
1525
+ ],
1526
+ "home.link.read_docs": [
1527
+ {
1528
+ "type": 0,
1529
+ "value": "문서 읽기"
1530
+ }
1531
+ ],
1532
+ "home.title.react_starter_store": [
1533
+ {
1534
+ "type": 0,
1535
+ "value": "리테일용 React PWA 스타터 스토어"
1536
+ }
1537
+ ],
1538
+ "item_attributes.label.promotions": [
1539
+ {
1540
+ "type": 0,
1541
+ "value": "프로모션"
1542
+ }
1543
+ ],
1544
+ "item_attributes.label.quantity": [
1545
+ {
1546
+ "type": 0,
1547
+ "value": "수량: "
1548
+ },
1549
+ {
1550
+ "type": 1,
1551
+ "value": "quantity"
1552
+ }
1553
+ ],
1554
+ "item_image.label.sale": [
1555
+ {
1556
+ "type": 0,
1557
+ "value": "판매"
1558
+ }
1559
+ ],
1560
+ "lCPCxk": [
1561
+ {
1562
+ "type": 0,
1563
+ "value": "위에서 옵션을 모두 선택하십시오."
1564
+ }
1565
+ ],
1566
+ "locale_text.message.ar-SA": [
1567
+ {
1568
+ "type": 0,
1569
+ "value": "아랍어(사우디아라비아)"
1570
+ }
1571
+ ],
1572
+ "locale_text.message.bn-BD": [
1573
+ {
1574
+ "type": 0,
1575
+ "value": "벵골어(방글라데시)"
1576
+ }
1577
+ ],
1578
+ "locale_text.message.bn-IN": [
1579
+ {
1580
+ "type": 0,
1581
+ "value": "벵골어(인도)"
1582
+ }
1583
+ ],
1584
+ "locale_text.message.cs-CZ": [
1585
+ {
1586
+ "type": 0,
1587
+ "value": "체코어(체코)"
1588
+ }
1589
+ ],
1590
+ "locale_text.message.da-DK": [
1591
+ {
1592
+ "type": 0,
1593
+ "value": "덴마크어(덴마크)"
1594
+ }
1595
+ ],
1596
+ "locale_text.message.de-AT": [
1597
+ {
1598
+ "type": 0,
1599
+ "value": "독일어(오스트리아)"
1600
+ }
1601
+ ],
1602
+ "locale_text.message.de-CH": [
1603
+ {
1604
+ "type": 0,
1605
+ "value": "독일어(스위스)"
1606
+ }
1607
+ ],
1608
+ "locale_text.message.de-DE": [
1609
+ {
1610
+ "type": 0,
1611
+ "value": "독일어(독일)"
1612
+ }
1613
+ ],
1614
+ "locale_text.message.el-GR": [
1615
+ {
1616
+ "type": 0,
1617
+ "value": "그리스어(그리스)"
1618
+ }
1619
+ ],
1620
+ "locale_text.message.en-AU": [
1621
+ {
1622
+ "type": 0,
1623
+ "value": "영어(오스트레일리아)"
1624
+ }
1625
+ ],
1626
+ "locale_text.message.en-CA": [
1627
+ {
1628
+ "type": 0,
1629
+ "value": "영어(캐나다)"
1630
+ }
1631
+ ],
1632
+ "locale_text.message.en-GB": [
1633
+ {
1634
+ "type": 0,
1635
+ "value": "영어(영국)"
1636
+ }
1637
+ ],
1638
+ "locale_text.message.en-IE": [
1639
+ {
1640
+ "type": 0,
1641
+ "value": "영어(아일랜드)"
1642
+ }
1643
+ ],
1644
+ "locale_text.message.en-IN": [
1645
+ {
1646
+ "type": 0,
1647
+ "value": "영어(인도)"
1648
+ }
1649
+ ],
1650
+ "locale_text.message.en-NZ": [
1651
+ {
1652
+ "type": 0,
1653
+ "value": "영어(뉴질랜드)"
1654
+ }
1655
+ ],
1656
+ "locale_text.message.en-US": [
1657
+ {
1658
+ "type": 0,
1659
+ "value": "영어(미국)"
1660
+ }
1661
+ ],
1662
+ "locale_text.message.en-ZA": [
1663
+ {
1664
+ "type": 0,
1665
+ "value": "영어(남아프리카공화국)"
1666
+ }
1667
+ ],
1668
+ "locale_text.message.es-AR": [
1669
+ {
1670
+ "type": 0,
1671
+ "value": "스페인어(아르헨티나)"
1672
+ }
1673
+ ],
1674
+ "locale_text.message.es-CL": [
1675
+ {
1676
+ "type": 0,
1677
+ "value": "스페인어(칠레)"
1678
+ }
1679
+ ],
1680
+ "locale_text.message.es-CO": [
1681
+ {
1682
+ "type": 0,
1683
+ "value": "스페인어(콜롬비아)"
1684
+ }
1685
+ ],
1686
+ "locale_text.message.es-ES": [
1687
+ {
1688
+ "type": 0,
1689
+ "value": "스페인어(스페인)"
1690
+ }
1691
+ ],
1692
+ "locale_text.message.es-MX": [
1693
+ {
1694
+ "type": 0,
1695
+ "value": "스페인어(멕시코)"
1696
+ }
1697
+ ],
1698
+ "locale_text.message.es-US": [
1699
+ {
1700
+ "type": 0,
1701
+ "value": "스페인어(미국)"
1702
+ }
1703
+ ],
1704
+ "locale_text.message.fi-FI": [
1705
+ {
1706
+ "type": 0,
1707
+ "value": "핀란드어(핀란드)"
1708
+ }
1709
+ ],
1710
+ "locale_text.message.fr-BE": [
1711
+ {
1712
+ "type": 0,
1713
+ "value": "프랑스어(벨기에)"
1714
+ }
1715
+ ],
1716
+ "locale_text.message.fr-CA": [
1717
+ {
1718
+ "type": 0,
1719
+ "value": "프랑스어(캐나다)"
1720
+ }
1721
+ ],
1722
+ "locale_text.message.fr-CH": [
1723
+ {
1724
+ "type": 0,
1725
+ "value": "프랑스어(스위스)"
1726
+ }
1727
+ ],
1728
+ "locale_text.message.fr-FR": [
1729
+ {
1730
+ "type": 0,
1731
+ "value": "프랑스어(프랑스)"
1732
+ }
1733
+ ],
1734
+ "locale_text.message.he-IL": [
1735
+ {
1736
+ "type": 0,
1737
+ "value": "히브리어(이스라엘)"
1738
+ }
1739
+ ],
1740
+ "locale_text.message.hi-IN": [
1741
+ {
1742
+ "type": 0,
1743
+ "value": "힌디어(인도)"
1744
+ }
1745
+ ],
1746
+ "locale_text.message.hu-HU": [
1747
+ {
1748
+ "type": 0,
1749
+ "value": "헝가리어(헝가리)"
1750
+ }
1751
+ ],
1752
+ "locale_text.message.id-ID": [
1753
+ {
1754
+ "type": 0,
1755
+ "value": "인도네시아어(인도네시아)"
1756
+ }
1757
+ ],
1758
+ "locale_text.message.it-CH": [
1759
+ {
1760
+ "type": 0,
1761
+ "value": "이탈리아어(스위스)"
1762
+ }
1763
+ ],
1764
+ "locale_text.message.it-IT": [
1765
+ {
1766
+ "type": 0,
1767
+ "value": "이탈리아어(이탈리아)"
1768
+ }
1769
+ ],
1770
+ "locale_text.message.ja-JP": [
1771
+ {
1772
+ "type": 0,
1773
+ "value": "일본어(일본)"
1774
+ }
1775
+ ],
1776
+ "locale_text.message.ko-KR": [
1777
+ {
1778
+ "type": 0,
1779
+ "value": "한국어(대한민국)"
1780
+ }
1781
+ ],
1782
+ "locale_text.message.nl-BE": [
1783
+ {
1784
+ "type": 0,
1785
+ "value": "네덜란드어(벨기에)"
1786
+ }
1787
+ ],
1788
+ "locale_text.message.nl-NL": [
1789
+ {
1790
+ "type": 0,
1791
+ "value": "네덜란드어(네덜란드)"
1792
+ }
1793
+ ],
1794
+ "locale_text.message.no-NO": [
1795
+ {
1796
+ "type": 0,
1797
+ "value": "노르웨이어(노르웨이)"
1798
+ }
1799
+ ],
1800
+ "locale_text.message.pl-PL": [
1801
+ {
1802
+ "type": 0,
1803
+ "value": "폴란드어(폴란드)"
1804
+ }
1805
+ ],
1806
+ "locale_text.message.pt-BR": [
1807
+ {
1808
+ "type": 0,
1809
+ "value": "포르투갈어(브라질)"
1810
+ }
1811
+ ],
1812
+ "locale_text.message.pt-PT": [
1813
+ {
1814
+ "type": 0,
1815
+ "value": "포르투갈어(포르투갈)"
1816
+ }
1817
+ ],
1818
+ "locale_text.message.ro-RO": [
1819
+ {
1820
+ "type": 0,
1821
+ "value": "루마니아어(루마니아)"
1822
+ }
1823
+ ],
1824
+ "locale_text.message.ru-RU": [
1825
+ {
1826
+ "type": 0,
1827
+ "value": "러시아어(러시아)"
1828
+ }
1829
+ ],
1830
+ "locale_text.message.sk-SK": [
1831
+ {
1832
+ "type": 0,
1833
+ "value": "슬로바키아어(슬로바키아)"
1834
+ }
1835
+ ],
1836
+ "locale_text.message.sv-SE": [
1837
+ {
1838
+ "type": 0,
1839
+ "value": "스웨덴어(스웨덴)"
1840
+ }
1841
+ ],
1842
+ "locale_text.message.ta-IN": [
1843
+ {
1844
+ "type": 0,
1845
+ "value": "타밀어(인도)"
1846
+ }
1847
+ ],
1848
+ "locale_text.message.ta-LK": [
1849
+ {
1850
+ "type": 0,
1851
+ "value": "타밀어(스리랑카)"
1852
+ }
1853
+ ],
1854
+ "locale_text.message.th-TH": [
1855
+ {
1856
+ "type": 0,
1857
+ "value": "태국어(태국)"
1858
+ }
1859
+ ],
1860
+ "locale_text.message.tr-TR": [
1861
+ {
1862
+ "type": 0,
1863
+ "value": "터키어(터키)"
1864
+ }
1865
+ ],
1866
+ "locale_text.message.zh-CN": [
1867
+ {
1868
+ "type": 0,
1869
+ "value": "중국어(중국)"
1870
+ }
1871
+ ],
1872
+ "locale_text.message.zh-HK": [
1873
+ {
1874
+ "type": 0,
1875
+ "value": "중국어(홍콩)"
1876
+ }
1877
+ ],
1878
+ "locale_text.message.zh-TW": [
1879
+ {
1880
+ "type": 0,
1881
+ "value": "중국어(타이완)"
1882
+ }
1883
+ ],
1884
+ "login_form.action.create_account": [
1885
+ {
1886
+ "type": 0,
1887
+ "value": "계정 생성"
1888
+ }
1889
+ ],
1890
+ "login_form.button.sign_in": [
1891
+ {
1892
+ "type": 0,
1893
+ "value": "로그인"
1894
+ }
1895
+ ],
1896
+ "login_form.link.forgot_password": [
1897
+ {
1898
+ "type": 0,
1899
+ "value": "암호가 기억나지 않습니까?"
1900
+ }
1901
+ ],
1902
+ "login_form.message.dont_have_account": [
1903
+ {
1904
+ "type": 0,
1905
+ "value": "계정이 없습니까?"
1906
+ }
1907
+ ],
1908
+ "login_form.message.welcome_back": [
1909
+ {
1910
+ "type": 0,
1911
+ "value": "다시 오신 것을 환영합니다."
1912
+ }
1913
+ ],
1914
+ "login_page.error.incorrect_username_or_password": [
1915
+ {
1916
+ "type": 0,
1917
+ "value": "사용자 이름 또는 암호가 올바르지 않습니다. 다시 시도하십시오."
1918
+ }
1919
+ ],
1920
+ "offline_banner.description.browsing_offline_mode": [
1921
+ {
1922
+ "type": 0,
1923
+ "value": "현재 오프라인 모드로 검색 중입니다."
1924
+ }
1925
+ ],
1926
+ "order_summary.action.remove_promo": [
1927
+ {
1928
+ "type": 0,
1929
+ "value": "제거"
1930
+ }
1931
+ ],
1932
+ "order_summary.cart_items.action.num_of_items_in_cart": [
1933
+ {
1934
+ "type": 0,
1935
+ "value": "카트에 "
1936
+ },
1937
+ {
1938
+ "offset": 0,
1939
+ "options": {
1940
+ "=0": {
1941
+ "value": [
1942
+ {
1943
+ "type": 0,
1944
+ "value": "0개 항목"
1945
+ }
1946
+ ]
1947
+ },
1948
+ "one": {
1949
+ "value": [
1950
+ {
1951
+ "type": 7
1952
+ },
1953
+ {
1954
+ "type": 0,
1955
+ "value": "개 항목"
1956
+ }
1957
+ ]
1958
+ },
1959
+ "other": {
1960
+ "value": [
1961
+ {
1962
+ "type": 7
1963
+ },
1964
+ {
1965
+ "type": 0,
1966
+ "value": "개 항목"
1967
+ }
1968
+ ]
1969
+ }
1970
+ },
1971
+ "pluralType": "cardinal",
1972
+ "type": 6,
1973
+ "value": "itemCount"
1974
+ },
1975
+ {
1976
+ "type": 0,
1977
+ "value": "이 있음"
1978
+ }
1979
+ ],
1980
+ "order_summary.cart_items.link.edit_cart": [
1981
+ {
1982
+ "type": 0,
1983
+ "value": "카트 편집"
1984
+ }
1985
+ ],
1986
+ "order_summary.heading.order_summary": [
1987
+ {
1988
+ "type": 0,
1989
+ "value": "주문 요약"
1990
+ }
1991
+ ],
1992
+ "order_summary.label.estimated_total": [
1993
+ {
1994
+ "type": 0,
1995
+ "value": "예상 합계"
1996
+ }
1997
+ ],
1998
+ "order_summary.label.free": [
1999
+ {
2000
+ "type": 0,
2001
+ "value": "무료"
2002
+ }
2003
+ ],
2004
+ "order_summary.label.order_total": [
2005
+ {
2006
+ "type": 0,
2007
+ "value": "주문 합계"
2008
+ }
2009
+ ],
2010
+ "order_summary.label.promo_applied": [
2011
+ {
2012
+ "type": 0,
2013
+ "value": "프로모션이 적용됨"
2014
+ }
2015
+ ],
2016
+ "order_summary.label.promotions_applied": [
2017
+ {
2018
+ "type": 0,
2019
+ "value": "프로모션이 적용됨"
2020
+ }
2021
+ ],
2022
+ "order_summary.label.shipping": [
2023
+ {
2024
+ "type": 0,
2025
+ "value": "배송"
2026
+ }
2027
+ ],
2028
+ "order_summary.label.subtotal": [
2029
+ {
2030
+ "type": 0,
2031
+ "value": "소계"
2032
+ }
2033
+ ],
2034
+ "order_summary.label.tax": [
2035
+ {
2036
+ "type": 0,
2037
+ "value": "세금"
2038
+ }
2039
+ ],
2040
+ "page_not_found.action.go_back": [
2041
+ {
2042
+ "type": 0,
2043
+ "value": "이전 페이지로 돌아가기"
2044
+ }
2045
+ ],
2046
+ "page_not_found.link.homepage": [
2047
+ {
2048
+ "type": 0,
2049
+ "value": "홈 페이지로 이동"
2050
+ }
2051
+ ],
2052
+ "page_not_found.message.suggestion_to_try": [
2053
+ {
2054
+ "type": 0,
2055
+ "value": "이 주소로 다시 시도해보거나 이전 페이지로 돌아가거나 홈 페이지로 돌아가십시오."
2056
+ }
2057
+ ],
2058
+ "page_not_found.title.page_cant_be_found": [
2059
+ {
2060
+ "type": 0,
2061
+ "value": "해당 페이지를 찾을 수 없습니다."
2062
+ }
2063
+ ],
2064
+ "pagination.field.num_of_pages": [
2065
+ {
2066
+ "type": 0,
2067
+ "value": "/"
2068
+ },
2069
+ {
2070
+ "type": 1,
2071
+ "value": "numOfPages"
2072
+ }
2073
+ ],
2074
+ "pagination.link.next": [
2075
+ {
2076
+ "type": 0,
2077
+ "value": "다음"
2078
+ }
2079
+ ],
2080
+ "pagination.link.prev": [
2081
+ {
2082
+ "type": 0,
2083
+ "value": "이전"
2084
+ }
2085
+ ],
2086
+ "password_card.info.password_updated": [
2087
+ {
2088
+ "type": 0,
2089
+ "value": "암호가 업데이트됨"
2090
+ }
2091
+ ],
2092
+ "password_card.label.password": [
2093
+ {
2094
+ "type": 0,
2095
+ "value": "암호"
2096
+ }
2097
+ ],
2098
+ "password_card.title.password": [
2099
+ {
2100
+ "type": 0,
2101
+ "value": "암호"
2102
+ }
2103
+ ],
2104
+ "password_requirements.error.eight_letter_minimum": [
2105
+ {
2106
+ "type": 0,
2107
+ "value": "최소 8자"
2108
+ }
2109
+ ],
2110
+ "password_requirements.error.one_lowercase_letter": [
2111
+ {
2112
+ "type": 0,
2113
+ "value": "소문자 1개"
2114
+ }
2115
+ ],
2116
+ "password_requirements.error.one_number": [
2117
+ {
2118
+ "type": 0,
2119
+ "value": "숫자 1개"
2120
+ }
2121
+ ],
2122
+ "password_requirements.error.one_special_character": [
2123
+ {
2124
+ "type": 0,
2125
+ "value": "특수 문자 1개(예: , S ! % #)"
2126
+ }
2127
+ ],
2128
+ "password_requirements.error.one_uppercase_letter": [
2129
+ {
2130
+ "type": 0,
2131
+ "value": "대문자 1개"
2132
+ }
2133
+ ],
2134
+ "payment_selection.button.save_and_continue": [
2135
+ {
2136
+ "type": 0,
2137
+ "value": "저장하고 계속하기"
2138
+ }
2139
+ ],
2140
+ "payment_selection.heading.add_new_card": [
2141
+ {
2142
+ "type": 0,
2143
+ "value": "새 카드 추가"
2144
+ }
2145
+ ],
2146
+ "payment_selection.heading.credit_card": [
2147
+ {
2148
+ "type": 0,
2149
+ "value": "신용카드"
2150
+ }
2151
+ ],
2152
+ "payment_selection.message.select_payment_method": [
2153
+ {
2154
+ "type": 0,
2155
+ "value": "결제 방법을 선택십시오."
2156
+ }
2157
+ ],
2158
+ "payment_selection.tooltip.secure_payment": [
2159
+ {
2160
+ "type": 0,
2161
+ "value": "안전한 SSL 암호화 결제입니다."
2162
+ }
2163
+ ],
2164
+ "price_per_item.label.each": [
2165
+ {
2166
+ "type": 0,
2167
+ "value": "개"
2168
+ }
2169
+ ],
2170
+ "product_detail.accordion.button.product_detail": [
2171
+ {
2172
+ "type": 0,
2173
+ "value": "제품 세부 정보"
2174
+ }
2175
+ ],
2176
+ "product_detail.accordion.button.questions": [
2177
+ {
2178
+ "type": 0,
2179
+ "value": "문의"
2180
+ }
2181
+ ],
2182
+ "product_detail.accordion.button.reviews": [
2183
+ {
2184
+ "type": 0,
2185
+ "value": "리뷰"
2186
+ }
2187
+ ],
2188
+ "product_detail.accordion.button.size_fit": [
2189
+ {
2190
+ "type": 0,
2191
+ "value": "사이즈와 핏"
2192
+ }
2193
+ ],
2194
+ "product_detail.accordion.message.coming_soon": [
2195
+ {
2196
+ "type": 0,
2197
+ "value": "제공 예정"
2198
+ }
2199
+ ],
2200
+ "product_detail.recommended_products.title.complete_set": [
2201
+ {
2202
+ "type": 0,
2203
+ "value": "세트 완성"
2204
+ }
2205
+ ],
2206
+ "product_detail.recommended_products.title.might_also_like": [
2207
+ {
2208
+ "type": 0,
2209
+ "value": "추천 상품"
2210
+ }
2211
+ ],
2212
+ "product_detail.recommended_products.title.recently_viewed": [
2213
+ {
2214
+ "type": 0,
2215
+ "value": "최근에 봄"
2216
+ }
2217
+ ],
2218
+ "product_item.label.quantity": [
2219
+ {
2220
+ "type": 0,
2221
+ "value": "수량:"
2222
+ }
2223
+ ],
2224
+ "product_list.button.filter": [
2225
+ {
2226
+ "type": 0,
2227
+ "value": "필터"
2228
+ }
2229
+ ],
2230
+ "product_list.button.sort_by": [
2231
+ {
2232
+ "type": 0,
2233
+ "value": "정렬 기준: "
2234
+ },
2235
+ {
2236
+ "type": 1,
2237
+ "value": "sortOption"
2238
+ }
2239
+ ],
2240
+ "product_list.drawer.title.sort_by": [
2241
+ {
2242
+ "type": 0,
2243
+ "value": "정렬 기준"
2244
+ }
2245
+ ],
2246
+ "product_list.modal.button.clear_filters": [
2247
+ {
2248
+ "type": 0,
2249
+ "value": "필터 지우기"
2250
+ }
2251
+ ],
2252
+ "product_list.modal.button.view_items": [
2253
+ {
2254
+ "type": 1,
2255
+ "value": "prroductCount"
2256
+ },
2257
+ {
2258
+ "type": 0,
2259
+ "value": "개 항목 보기"
2260
+ }
2261
+ ],
2262
+ "product_list.modal.title.filter": [
2263
+ {
2264
+ "type": 0,
2265
+ "value": "필터"
2266
+ }
2267
+ ],
2268
+ "product_list.select.sort_by": [
2269
+ {
2270
+ "type": 0,
2271
+ "value": "정렬 기준: "
2272
+ },
2273
+ {
2274
+ "type": 1,
2275
+ "value": "sortOption"
2276
+ }
2277
+ ],
2278
+ "product_tile.assistive_msg.wishlist": [
2279
+ {
2280
+ "type": 0,
2281
+ "value": "위시리스트"
2282
+ }
2283
+ ],
2284
+ "product_view.button.add_to_cart": [
2285
+ {
2286
+ "type": 0,
2287
+ "value": "카트에 추가"
2288
+ }
2289
+ ],
2290
+ "product_view.button.add_to_wishlist": [
2291
+ {
2292
+ "type": 0,
2293
+ "value": "위시리스트에 추가"
2294
+ }
2295
+ ],
2296
+ "product_view.button.update": [
2297
+ {
2298
+ "type": 0,
2299
+ "value": "업데이트"
2300
+ }
2301
+ ],
2302
+ "product_view.label.quantity": [
2303
+ {
2304
+ "type": 0,
2305
+ "value": "수량"
2306
+ }
2307
+ ],
2308
+ "product_view.link.full_details": [
2309
+ {
2310
+ "type": 0,
2311
+ "value": "전체 세부 정보 보기"
2312
+ }
2313
+ ],
2314
+ "profile_card.info.profile_updated": [
2315
+ {
2316
+ "type": 0,
2317
+ "value": "프로필이 업데이트됨"
2318
+ }
2319
+ ],
2320
+ "profile_card.label.email": [
2321
+ {
2322
+ "type": 0,
2323
+ "value": "이메일"
2324
+ }
2325
+ ],
2326
+ "profile_card.label.full_name": [
2327
+ {
2328
+ "type": 0,
2329
+ "value": "성명"
2330
+ }
2331
+ ],
2332
+ "profile_card.label.phone": [
2333
+ {
2334
+ "type": 0,
2335
+ "value": "전화번호"
2336
+ }
2337
+ ],
2338
+ "profile_card.message.not_provided": [
2339
+ {
2340
+ "type": 0,
2341
+ "value": "제공되지 않음"
2342
+ }
2343
+ ],
2344
+ "profile_card.title.my_profile": [
2345
+ {
2346
+ "type": 0,
2347
+ "value": "내 프로필"
2348
+ }
2349
+ ],
2350
+ "promo_code_fields.button.apply": [
2351
+ {
2352
+ "type": 0,
2353
+ "value": "적용"
2354
+ }
2355
+ ],
2356
+ "promo_popover.heading.promo_applied": [
2357
+ {
2358
+ "type": 0,
2359
+ "value": "프로모션이 적용됨"
2360
+ }
2361
+ ],
2362
+ "promocode.accordion.button.have_promocode": [
2363
+ {
2364
+ "type": 0,
2365
+ "value": "프로모션 코드가 있습니까?"
2366
+ }
2367
+ ],
2368
+ "recent_searches.action.clear_searches": [
2369
+ {
2370
+ "type": 0,
2371
+ "value": "최근 검색 지우기"
2372
+ }
2373
+ ],
2374
+ "recent_searches.heading.recent_searches": [
2375
+ {
2376
+ "type": 0,
2377
+ "value": "최근 검색"
2378
+ }
2379
+ ],
2380
+ "register_form.action.sign_in": [
2381
+ {
2382
+ "type": 0,
2383
+ "value": "로그인"
2384
+ }
2385
+ ],
2386
+ "register_form.button.create_account": [
2387
+ {
2388
+ "type": 0,
2389
+ "value": "계정 생성"
2390
+ }
2391
+ ],
2392
+ "register_form.heading.lets_get_started": [
2393
+ {
2394
+ "type": 0,
2395
+ "value": "이제 시작하세요!"
2396
+ }
2397
+ ],
2398
+ "register_form.message.agree_to_policy_terms": [
2399
+ {
2400
+ "type": 0,
2401
+ "value": "계정을 만들면 Salesforce "
2402
+ },
2403
+ {
2404
+ "children": [
2405
+ {
2406
+ "type": 0,
2407
+ "value": "개인정보보호 정책"
2408
+ }
2409
+ ],
2410
+ "type": 8,
2411
+ "value": "policy"
2412
+ },
2413
+ {
2414
+ "type": 0,
2415
+ "value": "과 "
2416
+ },
2417
+ {
2418
+ "children": [
2419
+ {
2420
+ "type": 0,
2421
+ "value": "이용 약관"
2422
+ }
2423
+ ],
2424
+ "type": 8,
2425
+ "value": "terms"
2426
+ },
2427
+ {
2428
+ "type": 0,
2429
+ "value": "에 동의한 것으로 간주됩니다."
2430
+ }
2431
+ ],
2432
+ "register_form.message.already_have_account": [
2433
+ {
2434
+ "type": 0,
2435
+ "value": "계정이 이미 있습니까?"
2436
+ }
2437
+ ],
2438
+ "register_form.message.create_an_account": [
2439
+ {
2440
+ "type": 0,
2441
+ "value": "계정을 만들고 최고의 제품, 아이디어, 커뮤니티를 누구보다 빨리 이용해 보세요."
2442
+ }
2443
+ ],
2444
+ "reset_password.button.back_to_sign_in": [
2445
+ {
2446
+ "type": 0,
2447
+ "value": "로그인 페이지로 돌아가기"
2448
+ }
2449
+ ],
2450
+ "reset_password.info.receive_email_shortly": [
2451
+ {
2452
+ "children": [
2453
+ {
2454
+ "type": 1,
2455
+ "value": "email"
2456
+ }
2457
+ ],
2458
+ "type": 8,
2459
+ "value": "b"
2460
+ },
2461
+ {
2462
+ "type": 0,
2463
+ "value": "(으)로 암호 재설정 링크가 포함된 이메일이 곧 발송됩니다."
2464
+ }
2465
+ ],
2466
+ "reset_password.title.password_reset": [
2467
+ {
2468
+ "type": 0,
2469
+ "value": "암호 재설정"
2470
+ }
2471
+ ],
2472
+ "reset_password_form.action.sign_in": [
2473
+ {
2474
+ "type": 0,
2475
+ "value": "로그인"
2476
+ }
2477
+ ],
2478
+ "reset_password_form.button.reset_password": [
2479
+ {
2480
+ "type": 0,
2481
+ "value": "암호 재설정"
2482
+ }
2483
+ ],
2484
+ "reset_password_form.message.enter_your_email": [
2485
+ {
2486
+ "type": 0,
2487
+ "value": "암호를 재설정하는 방법에 대한 지침을 안내받으려면 이메일을 입력하십시오."
2488
+ }
2489
+ ],
2490
+ "reset_password_form.message.return_to_sign_in": [
2491
+ {
2492
+ "type": 0,
2493
+ "value": "돌아가기"
2494
+ }
2495
+ ],
2496
+ "reset_password_form.title.reset_password": [
2497
+ {
2498
+ "type": 0,
2499
+ "value": "암호 재설정"
2500
+ }
2501
+ ],
2502
+ "search.action.cancel": [
2503
+ {
2504
+ "type": 0,
2505
+ "value": "취소"
2506
+ }
2507
+ ],
2508
+ "selected_refinements.action.clear_all": [
2509
+ {
2510
+ "type": 0,
2511
+ "value": "모두 지우기"
2512
+ }
2513
+ ],
2514
+ "shipping_address.button.continue_to_shipping": [
2515
+ {
2516
+ "type": 0,
2517
+ "value": "배송 방법으로 계속 진행하기"
2518
+ }
2519
+ ],
2520
+ "shipping_address.title.shipping_address": [
2521
+ {
2522
+ "type": 0,
2523
+ "value": "배송 주소"
2524
+ }
2525
+ ],
2526
+ "shipping_address_edit_form.button.save_and_continue": [
2527
+ {
2528
+ "type": 0,
2529
+ "value": "저장하고 배송 방법으로 계속 진행하기"
2530
+ }
2531
+ ],
2532
+ "shipping_address_form.heading.edit_address": [
2533
+ {
2534
+ "type": 0,
2535
+ "value": "주소 편집"
2536
+ }
2537
+ ],
2538
+ "shipping_address_form.heading.new_address": [
2539
+ {
2540
+ "type": 0,
2541
+ "value": "새 주소 추가"
2542
+ }
2543
+ ],
2544
+ "shipping_address_selection.button.add_address": [
2545
+ {
2546
+ "type": 0,
2547
+ "value": "새 주소 추가"
2548
+ }
2549
+ ],
2550
+ "shipping_address_selection.button.submit": [
2551
+ {
2552
+ "type": 0,
2553
+ "value": "제출"
2554
+ }
2555
+ ],
2556
+ "shipping_address_selection.title.add_address": [
2557
+ {
2558
+ "type": 0,
2559
+ "value": "새 주소 추가"
2560
+ }
2561
+ ],
2562
+ "shipping_address_selection.title.edit_shipping": [
2563
+ {
2564
+ "type": 0,
2565
+ "value": "배송 주소 편집"
2566
+ }
2567
+ ],
2568
+ "shipping_options.action.send_as_a_gift": [
2569
+ {
2570
+ "type": 0,
2571
+ "value": "이 제품을 선물로 보내시겠습니까?"
2572
+ }
2573
+ ],
2574
+ "shipping_options.button.continue_to_payment": [
2575
+ {
2576
+ "type": 0,
2577
+ "value": "결제로 계속 진행하기"
2578
+ }
2579
+ ],
2580
+ "shipping_options.title.shipping_gift_options": [
2581
+ {
2582
+ "type": 0,
2583
+ "value": "배송 및 선물 옵션"
2584
+ }
2585
+ ],
2586
+ "signout_confirmation_dialog.button.cancel": [
2587
+ {
2588
+ "type": 0,
2589
+ "value": "취소"
2590
+ }
2591
+ ],
2592
+ "signout_confirmation_dialog.button.sign_out": [
2593
+ {
2594
+ "type": 0,
2595
+ "value": "로그아웃"
2596
+ }
2597
+ ],
2598
+ "signout_confirmation_dialog.heading.sign_out": [
2599
+ {
2600
+ "type": 0,
2601
+ "value": "로그아웃"
2602
+ }
2603
+ ],
2604
+ "signout_confirmation_dialog.message.sure_to_sign_out": [
2605
+ {
2606
+ "type": 0,
2607
+ "value": "로그아웃하시겠습니까? 현재 주문을 처리하려면 다시 로그인해야 합니다."
2608
+ }
2609
+ ],
2610
+ "toggle_card.action.edit": [
2611
+ {
2612
+ "type": 0,
2613
+ "value": "편집"
2614
+ }
2615
+ ],
2616
+ "update_password_fields.button.forgot_password": [
2617
+ {
2618
+ "type": 0,
2619
+ "value": "암호가 기억나지 않습니까?"
2620
+ }
2621
+ ],
2622
+ "use_address_fields.error.please_enter_first_name": [
2623
+ {
2624
+ "type": 0,
2625
+ "value": "이름을 입력하십시오."
2626
+ }
2627
+ ],
2628
+ "use_address_fields.error.please_enter_last_name": [
2629
+ {
2630
+ "type": 0,
2631
+ "value": "성을 입력하십시오."
2632
+ }
2633
+ ],
2634
+ "use_address_fields.error.please_enter_phone_number": [
2635
+ {
2636
+ "type": 0,
2637
+ "value": "전화번호를 입력하십시오."
2638
+ }
2639
+ ],
2640
+ "use_address_fields.error.please_enter_your_postal_or_zip": [
2641
+ {
2642
+ "type": 1,
2643
+ "value": "postalOrZip"
2644
+ },
2645
+ {
2646
+ "type": 0,
2647
+ "value": "를 입력하십시오."
2648
+ }
2649
+ ],
2650
+ "use_address_fields.error.please_select_your_address": [
2651
+ {
2652
+ "type": 0,
2653
+ "value": "주소를 입력하십시오."
2654
+ }
2655
+ ],
2656
+ "use_address_fields.error.please_select_your_city": [
2657
+ {
2658
+ "type": 0,
2659
+ "value": "구/군/시를 입력하십시오."
2660
+ }
2661
+ ],
2662
+ "use_address_fields.error.please_select_your_country": [
2663
+ {
2664
+ "type": 0,
2665
+ "value": "국가를 선택하십시오."
2666
+ }
2667
+ ],
2668
+ "use_address_fields.error.please_select_your_state_or_province": [
2669
+ {
2670
+ "type": 1,
2671
+ "value": "stateOrProvince"
2672
+ },
2673
+ {
2674
+ "type": 0,
2675
+ "value": "를 선택하십시오."
2676
+ }
2677
+ ],
2678
+ "use_address_fields.error.required": [
2679
+ {
2680
+ "type": 0,
2681
+ "value": "필수"
2682
+ }
2683
+ ],
2684
+ "use_address_fields.error.state_code_invalid": [
2685
+ {
2686
+ "type": 0,
2687
+ "value": "2자리 시/도를 입력하십시오."
2688
+ }
2689
+ ],
2690
+ "use_address_fields.label.address": [
2691
+ {
2692
+ "type": 0,
2693
+ "value": "주소"
2694
+ }
2695
+ ],
2696
+ "use_address_fields.label.city": [
2697
+ {
2698
+ "type": 0,
2699
+ "value": "구/군/시"
2700
+ }
2701
+ ],
2702
+ "use_address_fields.label.country": [
2703
+ {
2704
+ "type": 0,
2705
+ "value": "국가"
2706
+ }
2707
+ ],
2708
+ "use_address_fields.label.first_name": [
2709
+ {
2710
+ "type": 0,
2711
+ "value": "이름"
2712
+ }
2713
+ ],
2714
+ "use_address_fields.label.last_name": [
2715
+ {
2716
+ "type": 0,
2717
+ "value": "성"
2718
+ }
2719
+ ],
2720
+ "use_address_fields.label.phone": [
2721
+ {
2722
+ "type": 0,
2723
+ "value": "전화번호"
2724
+ }
2725
+ ],
2726
+ "use_address_fields.label.postal_code": [
2727
+ {
2728
+ "type": 0,
2729
+ "value": "우편번호"
2730
+ }
2731
+ ],
2732
+ "use_address_fields.label.preferred": [
2733
+ {
2734
+ "type": 0,
2735
+ "value": "기본값으로 설정"
2736
+ }
2737
+ ],
2738
+ "use_address_fields.label.province": [
2739
+ {
2740
+ "type": 0,
2741
+ "value": "시/도"
2742
+ }
2743
+ ],
2744
+ "use_address_fields.label.state": [
2745
+ {
2746
+ "type": 0,
2747
+ "value": "시/도"
2748
+ }
2749
+ ],
2750
+ "use_address_fields.label.zipCode": [
2751
+ {
2752
+ "type": 0,
2753
+ "value": "우편번호"
2754
+ }
2755
+ ],
2756
+ "use_credit_card_fields.error.required": [
2757
+ {
2758
+ "type": 0,
2759
+ "value": "필수"
2760
+ }
2761
+ ],
2762
+ "use_credit_card_fields.error.required_card_number": [
2763
+ {
2764
+ "type": 0,
2765
+ "value": "카드 번호를 입력하십시오."
2766
+ }
2767
+ ],
2768
+ "use_credit_card_fields.error.required_expiry": [
2769
+ {
2770
+ "type": 0,
2771
+ "value": "만료 날짜를 입력하십시오."
2772
+ }
2773
+ ],
2774
+ "use_credit_card_fields.error.required_name": [
2775
+ {
2776
+ "type": 0,
2777
+ "value": "카드에 표시된 대로 이름을 입력하십시오."
2778
+ }
2779
+ ],
2780
+ "use_credit_card_fields.error.required_security_code": [
2781
+ {
2782
+ "type": 0,
2783
+ "value": "보안 코드를 입력하십시오."
2784
+ }
2785
+ ],
2786
+ "use_credit_card_fields.error.valid_card_number": [
2787
+ {
2788
+ "type": 0,
2789
+ "value": "유효한 카드 번호를 입력하십시오."
2790
+ }
2791
+ ],
2792
+ "use_credit_card_fields.error.valid_date": [
2793
+ {
2794
+ "type": 0,
2795
+ "value": "유효한 날짜를 입력하십시오."
2796
+ }
2797
+ ],
2798
+ "use_credit_card_fields.error.valid_name": [
2799
+ {
2800
+ "type": 0,
2801
+ "value": "올바른 이름을 입력하십시오."
2802
+ }
2803
+ ],
2804
+ "use_credit_card_fields.error.valid_security_code": [
2805
+ {
2806
+ "type": 0,
2807
+ "value": "유효한 보안 코드를 입력하십시오."
2808
+ }
2809
+ ],
2810
+ "use_credit_card_fields.label.card_number": [
2811
+ {
2812
+ "type": 0,
2813
+ "value": "카드 번호"
2814
+ }
2815
+ ],
2816
+ "use_credit_card_fields.label.card_type": [
2817
+ {
2818
+ "type": 0,
2819
+ "value": "카드 유형"
2820
+ }
2821
+ ],
2822
+ "use_credit_card_fields.label.expiry": [
2823
+ {
2824
+ "type": 0,
2825
+ "value": "만료 날짜"
2826
+ }
2827
+ ],
2828
+ "use_credit_card_fields.label.name": [
2829
+ {
2830
+ "type": 0,
2831
+ "value": "카드에 표시된 이름"
2832
+ }
2833
+ ],
2834
+ "use_credit_card_fields.label.security_code": [
2835
+ {
2836
+ "type": 0,
2837
+ "value": "보안 코드"
2838
+ }
2839
+ ],
2840
+ "use_login_fields.error.required_email": [
2841
+ {
2842
+ "type": 0,
2843
+ "value": "이메일 주소를 입력하십시오."
2844
+ }
2845
+ ],
2846
+ "use_login_fields.error.required_password": [
2847
+ {
2848
+ "type": 0,
2849
+ "value": "암호를 입력하십시오."
2850
+ }
2851
+ ],
2852
+ "use_login_fields.label.email": [
2853
+ {
2854
+ "type": 0,
2855
+ "value": "이메일"
2856
+ }
2857
+ ],
2858
+ "use_login_fields.label.password": [
2859
+ {
2860
+ "type": 0,
2861
+ "value": "암호"
2862
+ }
2863
+ ],
2864
+ "use_product.message.inventory_remaining": [
2865
+ {
2866
+ "type": 0,
2867
+ "value": "품절 임박("
2868
+ },
2869
+ {
2870
+ "type": 1,
2871
+ "value": "stockLevel"
2872
+ },
2873
+ {
2874
+ "type": 0,
2875
+ "value": "개 남음)"
2876
+ }
2877
+ ],
2878
+ "use_product.message.out_of_stock": [
2879
+ {
2880
+ "type": 0,
2881
+ "value": "품절"
2882
+ }
2883
+ ],
2884
+ "use_profile_fields.error.required_email": [
2885
+ {
2886
+ "type": 0,
2887
+ "value": "유효한 이메일 주소를 입력하십시오."
2888
+ }
2889
+ ],
2890
+ "use_profile_fields.error.required_first_name": [
2891
+ {
2892
+ "type": 0,
2893
+ "value": "이름을 입력하십시오."
2894
+ }
2895
+ ],
2896
+ "use_profile_fields.error.required_last_name": [
2897
+ {
2898
+ "type": 0,
2899
+ "value": "성을 입력하십시오."
2900
+ }
2901
+ ],
2902
+ "use_profile_fields.error.required_phone": [
2903
+ {
2904
+ "type": 0,
2905
+ "value": "전화번호를 입력하십시오."
2906
+ }
2907
+ ],
2908
+ "use_profile_fields.label.email": [
2909
+ {
2910
+ "type": 0,
2911
+ "value": "이메일"
2912
+ }
2913
+ ],
2914
+ "use_profile_fields.label.first_name": [
2915
+ {
2916
+ "type": 0,
2917
+ "value": "이름"
2918
+ }
2919
+ ],
2920
+ "use_profile_fields.label.last_name": [
2921
+ {
2922
+ "type": 0,
2923
+ "value": "성"
2924
+ }
2925
+ ],
2926
+ "use_profile_fields.label.phone": [
2927
+ {
2928
+ "type": 0,
2929
+ "value": "전화번호"
2930
+ }
2931
+ ],
2932
+ "use_promo_code_fields.error.required_promo_code": [
2933
+ {
2934
+ "type": 0,
2935
+ "value": "유효한 프로모션 코드를 제공하십시오."
2936
+ }
2937
+ ],
2938
+ "use_promo_code_fields.label.promo_code": [
2939
+ {
2940
+ "type": 0,
2941
+ "value": "프로모션 코드"
2942
+ }
2943
+ ],
2944
+ "use_promocode.error.check_the_code": [
2945
+ {
2946
+ "type": 0,
2947
+ "value": "코드를 확인하고 다시 시도하십시오. 이미 적용되었거나 프로모션이 만료되었을 수 있습니다."
2948
+ }
2949
+ ],
2950
+ "use_promocode.info.promo_applied": [
2951
+ {
2952
+ "type": 0,
2953
+ "value": "프로모션이 적용됨"
2954
+ }
2955
+ ],
2956
+ "use_promocode.info.promo_removed": [
2957
+ {
2958
+ "type": 0,
2959
+ "value": "프로모션이 제거됨"
2960
+ }
2961
+ ],
2962
+ "use_registration_fields.error.contain_number": [
2963
+ {
2964
+ "type": 0,
2965
+ "value": "암호에는 숫자가 하나 이상 포함되어야 합니다."
2966
+ }
2967
+ ],
2968
+ "use_registration_fields.error.lowercase_letter": [
2969
+ {
2970
+ "type": 0,
2971
+ "value": "암호에는 소문자가 하나 이상 포함되어야 합니다."
2972
+ }
2973
+ ],
2974
+ "use_registration_fields.error.minimum_characters": [
2975
+ {
2976
+ "type": 0,
2977
+ "value": "암호는 8자 이상이어야 합니다."
2978
+ }
2979
+ ],
2980
+ "use_registration_fields.error.required_email": [
2981
+ {
2982
+ "type": 0,
2983
+ "value": "유효한 이메일 주소를 입력하십시오."
2984
+ }
2985
+ ],
2986
+ "use_registration_fields.error.required_first_name": [
2987
+ {
2988
+ "type": 0,
2989
+ "value": "이름을 입력하십시오."
2990
+ }
2991
+ ],
2992
+ "use_registration_fields.error.required_last_name": [
2993
+ {
2994
+ "type": 0,
2995
+ "value": "성을 입력하십시오."
2996
+ }
2997
+ ],
2998
+ "use_registration_fields.error.required_password": [
2999
+ {
3000
+ "type": 0,
3001
+ "value": "암호를 생성하십시오."
3002
+ }
3003
+ ],
3004
+ "use_registration_fields.error.special_character": [
3005
+ {
3006
+ "type": 0,
3007
+ "value": "암호에는 특수 문자가 하나 이상 포함되어야 합니다."
3008
+ }
3009
+ ],
3010
+ "use_registration_fields.error.uppercase_letter": [
3011
+ {
3012
+ "type": 0,
3013
+ "value": "암호에는 대문자가 하나 이상 포함되어야 합니다."
3014
+ }
3015
+ ],
3016
+ "use_registration_fields.label.email": [
3017
+ {
3018
+ "type": 0,
3019
+ "value": "이메일"
3020
+ }
3021
+ ],
3022
+ "use_registration_fields.label.first_name": [
3023
+ {
3024
+ "type": 0,
3025
+ "value": "이름"
3026
+ }
3027
+ ],
3028
+ "use_registration_fields.label.last_name": [
3029
+ {
3030
+ "type": 0,
3031
+ "value": "성"
3032
+ }
3033
+ ],
3034
+ "use_registration_fields.label.password": [
3035
+ {
3036
+ "type": 0,
3037
+ "value": "암호"
3038
+ }
3039
+ ],
3040
+ "use_registration_fields.label.sign_up_to_emails": [
3041
+ {
3042
+ "type": 0,
3043
+ "value": "Salesforce 이메일 가입(언제든지 탈퇴 가능)"
3044
+ }
3045
+ ],
3046
+ "use_reset_password_fields.error.required_email": [
3047
+ {
3048
+ "type": 0,
3049
+ "value": "유효한 이메일 주소를 입력하십시오."
3050
+ }
3051
+ ],
3052
+ "use_reset_password_fields.label.email": [
3053
+ {
3054
+ "type": 0,
3055
+ "value": "이메일"
3056
+ }
3057
+ ],
3058
+ "use_update_password_fields.error.contain_number": [
3059
+ {
3060
+ "type": 0,
3061
+ "value": "암호에는 숫자가 하나 이상 포함되어야 합니다."
3062
+ }
3063
+ ],
3064
+ "use_update_password_fields.error.lowercase_letter": [
3065
+ {
3066
+ "type": 0,
3067
+ "value": "암호에는 소문자가 하나 이상 포함되어야 합니다."
3068
+ }
3069
+ ],
3070
+ "use_update_password_fields.error.minimum_characters": [
3071
+ {
3072
+ "type": 0,
3073
+ "value": "암호는 8자 이상이어야 합니다."
3074
+ }
3075
+ ],
3076
+ "use_update_password_fields.error.required_new_password": [
3077
+ {
3078
+ "type": 0,
3079
+ "value": "새 암호를 제공하십시오."
3080
+ }
3081
+ ],
3082
+ "use_update_password_fields.error.required_password": [
3083
+ {
3084
+ "type": 0,
3085
+ "value": "암호를 입력하십시오."
3086
+ }
3087
+ ],
3088
+ "use_update_password_fields.error.special_character": [
3089
+ {
3090
+ "type": 0,
3091
+ "value": "암호에는 특수 문자가 하나 이상 포함되어야 합니다."
3092
+ }
3093
+ ],
3094
+ "use_update_password_fields.error.uppercase_letter": [
3095
+ {
3096
+ "type": 0,
3097
+ "value": "암호에는 대문자가 하나 이상 포함되어야 합니다."
3098
+ }
3099
+ ],
3100
+ "use_update_password_fields.label.current_password": [
3101
+ {
3102
+ "type": 0,
3103
+ "value": "현재 암호"
3104
+ }
3105
+ ],
3106
+ "use_update_password_fields.label.new_password": [
3107
+ {
3108
+ "type": 0,
3109
+ "value": "새 암호"
3110
+ }
3111
+ ],
3112
+ "wishlist_primary_action.button.add_to_cart": [
3113
+ {
3114
+ "type": 0,
3115
+ "value": "카트에 추가"
3116
+ }
3117
+ ],
3118
+ "wishlist_primary_action.button.select_options": [
3119
+ {
3120
+ "type": 0,
3121
+ "value": "옵션 선택"
3122
+ }
3123
+ ],
3124
+ "wishlist_primary_action.info.added_to_cart": [
3125
+ {
3126
+ "type": 1,
3127
+ "value": "quantity"
3128
+ },
3129
+ {
3130
+ "type": 0,
3131
+ "value": " "
3132
+ },
3133
+ {
3134
+ "offset": 0,
3135
+ "options": {
3136
+ "one": {
3137
+ "value": [
3138
+ {
3139
+ "type": 0,
3140
+ "value": "개 항목"
3141
+ }
3142
+ ]
3143
+ },
3144
+ "other": {
3145
+ "value": [
3146
+ {
3147
+ "type": 0,
3148
+ "value": "개 항목"
3149
+ }
3150
+ ]
3151
+ }
3152
+ },
3153
+ "pluralType": "cardinal",
3154
+ "type": 6,
3155
+ "value": "quantity"
3156
+ },
3157
+ {
3158
+ "type": 0,
3159
+ "value": "이 카트에 추가됨"
3160
+ }
3161
+ ],
3162
+ "wishlist_secondary_button_group.action.remove": [
3163
+ {
3164
+ "type": 0,
3165
+ "value": "제거"
3166
+ }
3167
+ ],
3168
+ "wishlist_secondary_button_group.info.item_removed": [
3169
+ {
3170
+ "type": 0,
3171
+ "value": "항목이 위시리스트에서 제거됨"
3172
+ }
3173
+ ],
3174
+ "with_registration.info.please_sign_in": [
3175
+ {
3176
+ "type": 0,
3177
+ "value": "계속하려면 로그인하십시오."
3178
+ }
3179
+ ]
3180
+ }