@sgftech/medusa-plugin-product-variant-licenses 0.0.1

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 (954) hide show
  1. package/.cache/admin/index.html +12 -0
  2. package/.cache/admin/public/locales/ar/translation.json +1919 -0
  3. package/.cache/admin/public/locales/bg/translation.json +2011 -0
  4. package/.cache/admin/public/locales/bs/translation.json +2011 -0
  5. package/.cache/admin/public/locales/cs/translation.json +1942 -0
  6. package/.cache/admin/public/locales/de/translation.json +1924 -0
  7. package/.cache/admin/public/locales/en/translation.json +2011 -0
  8. package/.cache/admin/public/locales/es/translation.json +1924 -0
  9. package/.cache/admin/public/locales/fr/translation.json +1924 -0
  10. package/.cache/admin/public/locales/hi/translation.json +2011 -0
  11. package/.cache/admin/public/locales/hr/translation.json +2011 -0
  12. package/.cache/admin/public/locales/it/translation.json +1922 -0
  13. package/.cache/admin/public/locales/ja/translation.json +2006 -0
  14. package/.cache/admin/public/locales/ko/translation.json +2011 -0
  15. package/.cache/admin/public/locales/pl/translation.json +1919 -0
  16. package/.cache/admin/public/locales/pt/translation.json +1925 -0
  17. package/.cache/admin/public/locales/ru/translation.json +1919 -0
  18. package/.cache/admin/public/locales/sl/translation.json +2010 -0
  19. package/.cache/admin/public/locales/tm/translation.json +1924 -0
  20. package/.cache/admin/public/locales/uk/translation.json +1919 -0
  21. package/.cache/admin/public/locales/vi/translation.json +2011 -0
  22. package/.cache/admin/public/locales/zh/translation.json +2011 -0
  23. package/.cache/admin/public/logo.svg +10 -0
  24. package/.cache/admin/src/App.tsx +61 -0
  25. package/.cache/admin/src/assets/styles/emoji-picker.css +109 -0
  26. package/.cache/admin/src/assets/styles/global.css +465 -0
  27. package/.cache/admin/src/assets/svg/carrot.svg +5 -0
  28. package/.cache/admin/src/assets/svg/controller.svg +7 -0
  29. package/.cache/admin/src/assets/svg/flag.svg +4 -0
  30. package/.cache/admin/src/assets/svg/happy.svg +6 -0
  31. package/.cache/admin/src/assets/svg/heart.svg +3 -0
  32. package/.cache/admin/src/assets/svg/lightbulb.svg +5 -0
  33. package/.cache/admin/src/assets/svg/plane.svg +3 -0
  34. package/.cache/admin/src/assets/svg/search.svg +3 -0
  35. package/.cache/admin/src/assets/svg/sprout.svg +6 -0
  36. package/.cache/admin/src/assets/svg/star.svg +3 -0
  37. package/.cache/admin/src/components/atoms/avatar/index.tsx +62 -0
  38. package/.cache/admin/src/components/atoms/back-button/index.tsx +32 -0
  39. package/.cache/admin/src/components/atoms/checkbox/index.tsx +32 -0
  40. package/.cache/admin/src/components/atoms/copy-to-clipboard/index.tsx +59 -0
  41. package/.cache/admin/src/components/atoms/date-picker/custom-header.tsx +44 -0
  42. package/.cache/admin/src/components/atoms/date-picker/date-picker.tsx +155 -0
  43. package/.cache/admin/src/components/atoms/date-picker/time-picker.tsx +103 -0
  44. package/.cache/admin/src/components/atoms/date-picker/types.tsx +6 -0
  45. package/.cache/admin/src/components/atoms/date-picker/utils.ts +25 -0
  46. package/.cache/admin/src/components/atoms/fade-wrapper/index.tsx +47 -0
  47. package/.cache/admin/src/components/atoms/file-upload-field/index.tsx +105 -0
  48. package/.cache/admin/src/components/atoms/includes-tax-tooltip/index.tsx +25 -0
  49. package/.cache/admin/src/components/atoms/input-error/index.tsx +72 -0
  50. package/.cache/admin/src/components/atoms/loading-container/index.tsx +32 -0
  51. package/.cache/admin/src/components/atoms/notification/index.tsx +62 -0
  52. package/.cache/admin/src/components/atoms/number-scroller/index.tsx +51 -0
  53. package/.cache/admin/src/components/atoms/os-shortcut/index.tsx +48 -0
  54. package/.cache/admin/src/components/atoms/page-description/index.tsx +20 -0
  55. package/.cache/admin/src/components/atoms/save-notification/error-state.tsx +49 -0
  56. package/.cache/admin/src/components/atoms/save-notification/index.tsx +94 -0
  57. package/.cache/admin/src/components/atoms/save-notification/saving-state.tsx +30 -0
  58. package/.cache/admin/src/components/atoms/save-notification/success-state.tsx +49 -0
  59. package/.cache/admin/src/components/atoms/settings-card/index.tsx +58 -0
  60. package/.cache/admin/src/components/atoms/skeleton/index.tsx +25 -0
  61. package/.cache/admin/src/components/atoms/spacer/index.tsx +9 -0
  62. package/.cache/admin/src/components/atoms/spinner.tsx +35 -0
  63. package/.cache/admin/src/components/atoms/switch/index.tsx +30 -0
  64. package/.cache/admin/src/components/atoms/text-input/index.tsx +19 -0
  65. package/.cache/admin/src/components/atoms/thumbnail/index.ts +1 -0
  66. package/.cache/admin/src/components/atoms/thumbnail/thumbnail.tsx +31 -0
  67. package/.cache/admin/src/components/atoms/toaster-container/index.tsx +33 -0
  68. package/.cache/admin/src/components/atoms/tooltip/index.tsx +61 -0
  69. package/.cache/admin/src/components/atoms/two-step-delete/index.tsx +110 -0
  70. package/.cache/admin/src/components/declarative-toaster/index.tsx +23 -0
  71. package/.cache/admin/src/components/extensions/route-container/index.tsx +80 -0
  72. package/.cache/admin/src/components/extensions/route-container/route-error-element.tsx +75 -0
  73. package/.cache/admin/src/components/extensions/route-container/use-route-container-props.tsx +8 -0
  74. package/.cache/admin/src/components/extensions/setting-container/index.tsx +14 -0
  75. package/.cache/admin/src/components/extensions/setting-container/setting-error-element.tsx +77 -0
  76. package/.cache/admin/src/components/extensions/setting-container/use-setting-container-props.tsx +7 -0
  77. package/.cache/admin/src/components/extensions/widget-container/index.tsx +32 -0
  78. package/.cache/admin/src/components/extensions/widget-container/types.ts +77 -0
  79. package/.cache/admin/src/components/extensions/widget-container/use-widget-container-props.tsx +31 -0
  80. package/.cache/admin/src/components/extensions/widget-container/widget-error-boundary.tsx +136 -0
  81. package/.cache/admin/src/components/forms/customer-group/customer-group-general-form/index.tsx +34 -0
  82. package/.cache/admin/src/components/forms/discount/discount-conditions-form/index.tsx +0 -0
  83. package/.cache/admin/src/components/forms/discount/discount-configuration-form/index.tsx +159 -0
  84. package/.cache/admin/src/components/forms/discount/discount-general-form/index.tsx +192 -0
  85. package/.cache/admin/src/components/forms/general/address-contact-form/index.tsx +87 -0
  86. package/.cache/admin/src/components/forms/general/address-location-form/index.tsx +129 -0
  87. package/.cache/admin/src/components/forms/general/metadata-form/index.tsx +371 -0
  88. package/.cache/admin/src/components/forms/general/prices-form/price-form-input.tsx +92 -0
  89. package/.cache/admin/src/components/forms/gift-card/denomination-form/index.tsx +183 -0
  90. package/.cache/admin/src/components/forms/gift-card/gift-card-balance-form/index.tsx +67 -0
  91. package/.cache/admin/src/components/forms/gift-card/gift-card-ends-at-form/index.tsx +57 -0
  92. package/.cache/admin/src/components/forms/gift-card/gift-card-receiver-form/index.tsx +43 -0
  93. package/.cache/admin/src/components/forms/gift-card/gift-card-region-form/index.tsx +78 -0
  94. package/.cache/admin/src/components/forms/product/customs-form/index.tsx +75 -0
  95. package/.cache/admin/src/components/forms/product/dimensions-form/index.tsx +74 -0
  96. package/.cache/admin/src/components/forms/product/discountable-form/index.tsx +36 -0
  97. package/.cache/admin/src/components/forms/product/general-form/index.tsx +109 -0
  98. package/.cache/admin/src/components/forms/product/media-form/index.tsx +233 -0
  99. package/.cache/admin/src/components/forms/product/organize-form/index.tsx +131 -0
  100. package/.cache/admin/src/components/forms/product/organize-form/use-organize-data.tsx +63 -0
  101. package/.cache/admin/src/components/forms/product/sales-channels-modal/add-screen.tsx +132 -0
  102. package/.cache/admin/src/components/forms/product/sales-channels-modal/available-screen.tsx +89 -0
  103. package/.cache/admin/src/components/forms/product/sales-channels-modal/index.tsx +55 -0
  104. package/.cache/admin/src/components/forms/product/sales-channels-modal/table.tsx +227 -0
  105. package/.cache/admin/src/components/forms/product/sales-channels-modal/use-sales-channels-modal.tsx +23 -0
  106. package/.cache/admin/src/components/forms/product/thumbnail-form/index.tsx +113 -0
  107. package/.cache/admin/src/components/forms/product/variant-form/create-flow-variant-form/index.tsx +105 -0
  108. package/.cache/admin/src/components/forms/product/variant-form/edit-flow-variant-form/index.tsx +137 -0
  109. package/.cache/admin/src/components/forms/product/variant-form/variant-general-form/index.tsx +50 -0
  110. package/.cache/admin/src/components/forms/product/variant-form/variant-select-options-form/hooks.tsx +74 -0
  111. package/.cache/admin/src/components/forms/product/variant-form/variant-select-options-form/index.tsx +77 -0
  112. package/.cache/admin/src/components/forms/product/variant-form/variant-stock-form/index.tsx +241 -0
  113. package/.cache/admin/src/components/forms/product/variant-inventory-form/edit-flow-variant-form/index.tsx +44 -0
  114. package/.cache/admin/src/components/forms/product/variant-inventory-form/variant-stock-form/index.tsx +429 -0
  115. package/.cache/admin/src/components/fundamentals/badge/index.tsx +46 -0
  116. package/.cache/admin/src/components/fundamentals/button/index.tsx +79 -0
  117. package/.cache/admin/src/components/fundamentals/details-icon/contact.svg +7 -0
  118. package/.cache/admin/src/components/fundamentals/details-icon/index.tsx +57 -0
  119. package/.cache/admin/src/components/fundamentals/feature-toggle.tsx +21 -0
  120. package/.cache/admin/src/components/fundamentals/icon-badge/index.tsx +36 -0
  121. package/.cache/admin/src/components/fundamentals/icons/adjustments-icon.tsx +29 -0
  122. package/.cache/admin/src/components/fundamentals/icons/alert-icon/index.tsx +43 -0
  123. package/.cache/admin/src/components/fundamentals/icons/arrow-down-icon.tsx +36 -0
  124. package/.cache/admin/src/components/fundamentals/icons/arrow-left-icon/index.tsx +35 -0
  125. package/.cache/admin/src/components/fundamentals/icons/arrow-right-icon/index.tsx +36 -0
  126. package/.cache/admin/src/components/fundamentals/icons/arrow-top-right-icon/index.tsx +29 -0
  127. package/.cache/admin/src/components/fundamentals/icons/arrow-up-icon.tsx +36 -0
  128. package/.cache/admin/src/components/fundamentals/icons/arrow-uturn-left/index.tsx +29 -0
  129. package/.cache/admin/src/components/fundamentals/icons/back-icon/index.tsx +36 -0
  130. package/.cache/admin/src/components/fundamentals/icons/backspace-icon/index.tsx +42 -0
  131. package/.cache/admin/src/components/fundamentals/icons/bell-icon/index.tsx +36 -0
  132. package/.cache/admin/src/components/fundamentals/icons/bell-noti-icon/index.tsx +41 -0
  133. package/.cache/admin/src/components/fundamentals/icons/bell-off-icon/index.tsx +57 -0
  134. package/.cache/admin/src/components/fundamentals/icons/building-tax-icon.tsx +67 -0
  135. package/.cache/admin/src/components/fundamentals/icons/buildings-icon/index.tsx +64 -0
  136. package/.cache/admin/src/components/fundamentals/icons/calendar-icon.tsx +54 -0
  137. package/.cache/admin/src/components/fundamentals/icons/cancel-icon/index.tsx +36 -0
  138. package/.cache/admin/src/components/fundamentals/icons/cart-icon/index.tsx +49 -0
  139. package/.cache/admin/src/components/fundamentals/icons/cash-icon/index.tsx +99 -0
  140. package/.cache/admin/src/components/fundamentals/icons/channels-icon.tsx +65 -0
  141. package/.cache/admin/src/components/fundamentals/icons/check-circle-fill-icon/index.tsx +28 -0
  142. package/.cache/admin/src/components/fundamentals/icons/check-circle-icon/index.tsx +36 -0
  143. package/.cache/admin/src/components/fundamentals/icons/check-icon.tsx +29 -0
  144. package/.cache/admin/src/components/fundamentals/icons/chevron-down.tsx +29 -0
  145. package/.cache/admin/src/components/fundamentals/icons/chevron-left-icon/index.tsx +29 -0
  146. package/.cache/admin/src/components/fundamentals/icons/chevron-right-icon/index.tsx +29 -0
  147. package/.cache/admin/src/components/fundamentals/icons/chevron-up.tsx +29 -0
  148. package/.cache/admin/src/components/fundamentals/icons/circle-quarter-solid/index.tsx +24 -0
  149. package/.cache/admin/src/components/fundamentals/icons/clipboard-copy-icon/index.tsx +50 -0
  150. package/.cache/admin/src/components/fundamentals/icons/clock-icon/index.tsx +36 -0
  151. package/.cache/admin/src/components/fundamentals/icons/coins-icon/index.tsx +50 -0
  152. package/.cache/admin/src/components/fundamentals/icons/corner-down-right-icon/index.tsx +36 -0
  153. package/.cache/admin/src/components/fundamentals/icons/cross-icon/index.tsx +36 -0
  154. package/.cache/admin/src/components/fundamentals/icons/crosshair-icon/index.tsx +57 -0
  155. package/.cache/admin/src/components/fundamentals/icons/customer-icon/index.tsx +36 -0
  156. package/.cache/admin/src/components/fundamentals/icons/details-icon.tsx +57 -0
  157. package/.cache/admin/src/components/fundamentals/icons/discord-icon.tsx +26 -0
  158. package/.cache/admin/src/components/fundamentals/icons/dollar-sign-icon/index.tsx +36 -0
  159. package/.cache/admin/src/components/fundamentals/icons/down-left/index.tsx +34 -0
  160. package/.cache/admin/src/components/fundamentals/icons/download-icon.tsx +42 -0
  161. package/.cache/admin/src/components/fundamentals/icons/duplicate-icon.tsx +36 -0
  162. package/.cache/admin/src/components/fundamentals/icons/edit-icon/index.tsx +36 -0
  163. package/.cache/admin/src/components/fundamentals/icons/edit-icon.tsx +36 -0
  164. package/.cache/admin/src/components/fundamentals/icons/ellipsis-vertical-icon/index.tsx +26 -0
  165. package/.cache/admin/src/components/fundamentals/icons/export-icon/index.tsx +43 -0
  166. package/.cache/admin/src/components/fundamentals/icons/eye-icon/index.tsx +36 -0
  167. package/.cache/admin/src/components/fundamentals/icons/eye-off-icon/index.tsx +36 -0
  168. package/.cache/admin/src/components/fundamentals/icons/fast-delivery-icon/index.tsx +64 -0
  169. package/.cache/admin/src/components/fundamentals/icons/file-icon.tsx +55 -0
  170. package/.cache/admin/src/components/fundamentals/icons/folder-open-icon/index.tsx +29 -0
  171. package/.cache/admin/src/components/fundamentals/icons/gear-icon/index.tsx +36 -0
  172. package/.cache/admin/src/components/fundamentals/icons/gift-icon/index.tsx +57 -0
  173. package/.cache/admin/src/components/fundamentals/icons/grip-icon.tsx +64 -0
  174. package/.cache/admin/src/components/fundamentals/icons/happy-icon/index.tsx +50 -0
  175. package/.cache/admin/src/components/fundamentals/icons/help-circle.tsx +43 -0
  176. package/.cache/admin/src/components/fundamentals/icons/image-placeholder-icon/index.tsx +43 -0
  177. package/.cache/admin/src/components/fundamentals/icons/info-icon/index.tsx +29 -0
  178. package/.cache/admin/src/components/fundamentals/icons/key-icon.tsx +30 -0
  179. package/.cache/admin/src/components/fundamentals/icons/list-arrow-icon/index.tsx +57 -0
  180. package/.cache/admin/src/components/fundamentals/icons/list-icon.tsx +64 -0
  181. package/.cache/admin/src/components/fundamentals/icons/lock-icon/index.tsx +36 -0
  182. package/.cache/admin/src/components/fundamentals/icons/log-out-icon/index.tsx +43 -0
  183. package/.cache/admin/src/components/fundamentals/icons/long-arrow-right-icon/index.tsx +38 -0
  184. package/.cache/admin/src/components/fundamentals/icons/mail-icon/index.tsx +36 -0
  185. package/.cache/admin/src/components/fundamentals/icons/map-pin-icon/index.tsx +36 -0
  186. package/.cache/admin/src/components/fundamentals/icons/medusa-icon/index.tsx +27 -0
  187. package/.cache/admin/src/components/fundamentals/icons/medusa-vice/index.tsx +39 -0
  188. package/.cache/admin/src/components/fundamentals/icons/minus-icon/index.tsx +29 -0
  189. package/.cache/admin/src/components/fundamentals/icons/more-horizontal-icon.tsx +43 -0
  190. package/.cache/admin/src/components/fundamentals/icons/package-icon/index.tsx +50 -0
  191. package/.cache/admin/src/components/fundamentals/icons/percent-icon/index.tsx +43 -0
  192. package/.cache/admin/src/components/fundamentals/icons/plus-icon/index.tsx +36 -0
  193. package/.cache/admin/src/components/fundamentals/icons/pointer-icon/index.tsx +35 -0
  194. package/.cache/admin/src/components/fundamentals/icons/publish-icon/index.tsx +57 -0
  195. package/.cache/admin/src/components/fundamentals/icons/refresh-icon.tsx +50 -0
  196. package/.cache/admin/src/components/fundamentals/icons/refund.tsx +57 -0
  197. package/.cache/admin/src/components/fundamentals/icons/reorder-icon/index.tsx +64 -0
  198. package/.cache/admin/src/components/fundamentals/icons/sad-face-icon/index.tsx +50 -0
  199. package/.cache/admin/src/components/fundamentals/icons/sale-icon/index.tsx +50 -0
  200. package/.cache/admin/src/components/fundamentals/icons/search-icon/index.tsx +27 -0
  201. package/.cache/admin/src/components/fundamentals/icons/send-icon/index.tsx +33 -0
  202. package/.cache/admin/src/components/fundamentals/icons/sided-mouth-face/index.tsx +50 -0
  203. package/.cache/admin/src/components/fundamentals/icons/sorting-icon/index.tsx +54 -0
  204. package/.cache/admin/src/components/fundamentals/icons/sparkles-icon/index.tsx +29 -0
  205. package/.cache/admin/src/components/fundamentals/icons/squares-plus/index.tsx +29 -0
  206. package/.cache/admin/src/components/fundamentals/icons/stop-icon.tsx +36 -0
  207. package/.cache/admin/src/components/fundamentals/icons/swatch-icon/index.tsx +29 -0
  208. package/.cache/admin/src/components/fundamentals/icons/tag-dot-icon/index.tsx +29 -0
  209. package/.cache/admin/src/components/fundamentals/icons/tag-icon/index.tsx +36 -0
  210. package/.cache/admin/src/components/fundamentals/icons/taxes-icon.tsx +54 -0
  211. package/.cache/admin/src/components/fundamentals/icons/tile-icon.tsx +50 -0
  212. package/.cache/admin/src/components/fundamentals/icons/trash-icon.tsx +50 -0
  213. package/.cache/admin/src/components/fundamentals/icons/triangle-mini-icon/index.tsx +28 -0
  214. package/.cache/admin/src/components/fundamentals/icons/triangle-right-icon/index.tsx +28 -0
  215. package/.cache/admin/src/components/fundamentals/icons/truck-icon/index.tsx +43 -0
  216. package/.cache/admin/src/components/fundamentals/icons/types/icon-type.ts +8 -0
  217. package/.cache/admin/src/components/fundamentals/icons/u-turn-icon.tsx +29 -0
  218. package/.cache/admin/src/components/fundamentals/icons/unpublish-icon/index.tsx +57 -0
  219. package/.cache/admin/src/components/fundamentals/icons/upload-icon/index.tsx +43 -0
  220. package/.cache/admin/src/components/fundamentals/icons/users-icon/index.tsx +50 -0
  221. package/.cache/admin/src/components/fundamentals/icons/warning-circle.tsx +81 -0
  222. package/.cache/admin/src/components/fundamentals/icons/x-circle-icon.tsx +43 -0
  223. package/.cache/admin/src/components/fundamentals/image-placeholder.tsx +11 -0
  224. package/.cache/admin/src/components/fundamentals/input-container.tsx +37 -0
  225. package/.cache/admin/src/components/fundamentals/input-header.tsx +38 -0
  226. package/.cache/admin/src/components/fundamentals/status-indicator/index.tsx +36 -0
  227. package/.cache/admin/src/components/helpers/form/form.tsx +187 -0
  228. package/.cache/admin/src/components/helpers/form/index.ts +1 -0
  229. package/.cache/admin/src/components/molecules/actionables.tsx +115 -0
  230. package/.cache/admin/src/components/molecules/activity-card/index.tsx +68 -0
  231. package/.cache/admin/src/components/molecules/amount-input/amount-and-currency-input.tsx +134 -0
  232. package/.cache/admin/src/components/molecules/amount-input/amount-input.tsx +91 -0
  233. package/.cache/admin/src/components/molecules/amount-input/index.ts +4 -0
  234. package/.cache/admin/src/components/molecules/availability-duration/index.tsx +86 -0
  235. package/.cache/admin/src/components/molecules/banner-card/index.tsx +74 -0
  236. package/.cache/admin/src/components/molecules/batch-job-file-card/index.tsx +67 -0
  237. package/.cache/admin/src/components/molecules/collapsible-tree/index.tsx +186 -0
  238. package/.cache/admin/src/components/molecules/connected-form.tsx +20 -0
  239. package/.cache/admin/src/components/molecules/customer-avatar-item/index.tsx +34 -0
  240. package/.cache/admin/src/components/molecules/customers-groups-summary/index.tsx +33 -0
  241. package/.cache/admin/src/components/molecules/delimited-list/index.tsx +44 -0
  242. package/.cache/admin/src/components/molecules/emoji-picker/index.tsx +41 -0
  243. package/.cache/admin/src/components/molecules/filter-dropdown/container.tsx +99 -0
  244. package/.cache/admin/src/components/molecules/filter-dropdown/item.tsx +556 -0
  245. package/.cache/admin/src/components/molecules/filter-dropdown/save-field.tsx +48 -0
  246. package/.cache/admin/src/components/molecules/filter-menu/filter-menu.tsx +496 -0
  247. package/.cache/admin/src/components/molecules/filter-menu/index.ts +1 -0
  248. package/.cache/admin/src/components/molecules/filter-tab/index.tsx +62 -0
  249. package/.cache/admin/src/components/molecules/form-error-toaster/index.tsx +41 -0
  250. package/.cache/admin/src/components/molecules/form-toaster/index.tsx +177 -0
  251. package/.cache/admin/src/components/molecules/generating-input/index.tsx +93 -0
  252. package/.cache/admin/src/components/molecules/grid-input/index.tsx +15 -0
  253. package/.cache/admin/src/components/molecules/hot-key-action/index.tsx +23 -0
  254. package/.cache/admin/src/components/molecules/icon-tooltip/index.tsx +36 -0
  255. package/.cache/admin/src/components/molecules/indeterminate-checkbox/index.tsx +84 -0
  256. package/.cache/admin/src/components/molecules/input/index.tsx +165 -0
  257. package/.cache/admin/src/components/molecules/input-signin/index.tsx +101 -0
  258. package/.cache/admin/src/components/molecules/item-search/index.tsx +110 -0
  259. package/.cache/admin/src/components/molecules/json-view/index.tsx +94 -0
  260. package/.cache/admin/src/components/molecules/location-dropdown/index.tsx +50 -0
  261. package/.cache/admin/src/components/molecules/modal/focus-modal.tsx +114 -0
  262. package/.cache/admin/src/components/molecules/modal/index.tsx +167 -0
  263. package/.cache/admin/src/components/molecules/modal/layered-modal.tsx +163 -0
  264. package/.cache/admin/src/components/molecules/modal/side-modal.tsx +63 -0
  265. package/.cache/admin/src/components/molecules/modal/stepped-modal.tsx +227 -0
  266. package/.cache/admin/src/components/molecules/native-select/index.tsx +68 -0
  267. package/.cache/admin/src/components/molecules/note-input/index.tsx +76 -0
  268. package/.cache/admin/src/components/molecules/notification-bell/index.tsx +21 -0
  269. package/.cache/admin/src/components/molecules/numbered-item/index.tsx +52 -0
  270. package/.cache/admin/src/components/molecules/order-status/index.tsx +113 -0
  271. package/.cache/admin/src/components/molecules/rma-select-shipping/index.tsx +54 -0
  272. package/.cache/admin/src/components/molecules/sales-channels-display/index.tsx +82 -0
  273. package/.cache/admin/src/components/molecules/sales-channels-list/index.tsx +46 -0
  274. package/.cache/admin/src/components/molecules/sales-channels-summary/index.tsx +39 -0
  275. package/.cache/admin/src/components/molecules/search-bar.tsx +49 -0
  276. package/.cache/admin/src/components/molecules/section/index.tsx +32 -0
  277. package/.cache/admin/src/components/molecules/select/index.tsx +240 -0
  278. package/.cache/admin/src/components/molecules/select/next-select/components/containers.tsx +190 -0
  279. package/.cache/admin/src/components/molecules/select/next-select/components/control.tsx +149 -0
  280. package/.cache/admin/src/components/molecules/select/next-select/components/index.ts +39 -0
  281. package/.cache/admin/src/components/molecules/select/next-select/components/input.tsx +36 -0
  282. package/.cache/admin/src/components/molecules/select/next-select/components/menu.tsx +344 -0
  283. package/.cache/admin/src/components/molecules/select/next-select/components/multi-value.tsx +118 -0
  284. package/.cache/admin/src/components/molecules/select/next-select/components/placeholder.tsx +32 -0
  285. package/.cache/admin/src/components/molecules/select/next-select/components/select-primitives.ts +3 -0
  286. package/.cache/admin/src/components/molecules/select/next-select/components/single-value.tsx +74 -0
  287. package/.cache/admin/src/components/molecules/select/next-select/createable-select/index.tsx +40 -0
  288. package/.cache/admin/src/components/molecules/select/next-select/index.tsx +4 -0
  289. package/.cache/admin/src/components/molecules/select/next-select/module-augmentation.ts +74 -0
  290. package/.cache/admin/src/components/molecules/select/next-select/select/index.tsx +63 -0
  291. package/.cache/admin/src/components/molecules/select/next-select/use-select-props.tsx +85 -0
  292. package/.cache/admin/src/components/molecules/select/next-select/utils.tsx +83 -0
  293. package/.cache/admin/src/components/molecules/select/select-components.tsx +313 -0
  294. package/.cache/admin/src/components/molecules/shipping-option/index.tsx +70 -0
  295. package/.cache/admin/src/components/molecules/sidebar-company-logo/index.tsx +20 -0
  296. package/.cache/admin/src/components/molecules/sidebar-menu-item/index.tsx +80 -0
  297. package/.cache/admin/src/components/molecules/sidebar-team-member/index.tsx +28 -0
  298. package/.cache/admin/src/components/molecules/status-selector/index.tsx +55 -0
  299. package/.cache/admin/src/components/molecules/switchable-item/index.tsx +55 -0
  300. package/.cache/admin/src/components/molecules/table/filtering-option.tsx +96 -0
  301. package/.cache/admin/src/components/molecules/table/index.tsx +265 -0
  302. package/.cache/admin/src/components/molecules/table/table-search.tsx +47 -0
  303. package/.cache/admin/src/components/molecules/table-fileds-filter/index.tsx +200 -0
  304. package/.cache/admin/src/components/molecules/table-pagination/index.ts +1 -0
  305. package/.cache/admin/src/components/molecules/table-pagination/table-pagination.tsx +77 -0
  306. package/.cache/admin/src/components/molecules/table-toaster/index.tsx +27 -0
  307. package/.cache/admin/src/components/molecules/tag-grid/index.tsx +38 -0
  308. package/.cache/admin/src/components/molecules/tag-input/index.tsx +232 -0
  309. package/.cache/admin/src/components/molecules/textarea/index.tsx +114 -0
  310. package/.cache/admin/src/components/molecules/timeline-events/claim-event/index.tsx +267 -0
  311. package/.cache/admin/src/components/molecules/timeline-events/event-actionables.tsx +20 -0
  312. package/.cache/admin/src/components/molecules/timeline-events/event-container.tsx +108 -0
  313. package/.cache/admin/src/components/molecules/timeline-events/event-item-container.tsx +48 -0
  314. package/.cache/admin/src/components/molecules/timeline-events/event-type.ts +5 -0
  315. package/.cache/admin/src/components/molecules/timeline-events/exchange.tsx +336 -0
  316. package/.cache/admin/src/components/molecules/timeline-events/items-fulfilled.tsx +38 -0
  317. package/.cache/admin/src/components/molecules/timeline-events/items-shipped.tsx +37 -0
  318. package/.cache/admin/src/components/molecules/timeline-events/note.tsx +73 -0
  319. package/.cache/admin/src/components/molecules/timeline-events/notification/index.tsx +66 -0
  320. package/.cache/admin/src/components/molecules/timeline-events/notification/resend-modal.tsx +99 -0
  321. package/.cache/admin/src/components/molecules/timeline-events/order-canceled.tsx +20 -0
  322. package/.cache/admin/src/components/molecules/timeline-events/order-edit/canceled.tsx +26 -0
  323. package/.cache/admin/src/components/molecules/timeline-events/order-edit/confirmed.tsx +40 -0
  324. package/.cache/admin/src/components/molecules/timeline-events/order-edit/created.tsx +289 -0
  325. package/.cache/admin/src/components/molecules/timeline-events/order-edit/declined.tsx +46 -0
  326. package/.cache/admin/src/components/molecules/timeline-events/order-edit/index.tsx +27 -0
  327. package/.cache/admin/src/components/molecules/timeline-events/order-edit/payment-required.tsx +77 -0
  328. package/.cache/admin/src/components/molecules/timeline-events/order-edit/refund-required.tsx +73 -0
  329. package/.cache/admin/src/components/molecules/timeline-events/order-edit/requested.tsx +62 -0
  330. package/.cache/admin/src/components/molecules/timeline-events/order-placed.tsx +29 -0
  331. package/.cache/admin/src/components/molecules/timeline-events/refund.tsx +43 -0
  332. package/.cache/admin/src/components/molecules/timeline-events/return.tsx +151 -0
  333. package/.cache/admin/src/components/molecules/tooltip-icon/index.tsx +20 -0
  334. package/.cache/admin/src/components/molecules/user-menu/index.tsx +76 -0
  335. package/.cache/admin/src/components/organisms/accordion/index.tsx +113 -0
  336. package/.cache/admin/src/components/organisms/activity-drawer/index.tsx +87 -0
  337. package/.cache/admin/src/components/organisms/analytics-config-form/index.tsx +125 -0
  338. package/.cache/admin/src/components/organisms/analytics-preferences/index.tsx +150 -0
  339. package/.cache/admin/src/components/organisms/batch-jobs-activity-list/index.tsx +255 -0
  340. package/.cache/admin/src/components/organisms/batch-jobs-activity-list/utils.ts +43 -0
  341. package/.cache/admin/src/components/organisms/body-card.tsx +133 -0
  342. package/.cache/admin/src/components/organisms/confirmation-prompt.tsx +71 -0
  343. package/.cache/admin/src/components/organisms/currency-input/index.tsx +303 -0
  344. package/.cache/admin/src/components/organisms/custom-table-header/index.tsx +37 -0
  345. package/.cache/admin/src/components/organisms/delete-prompt.tsx +96 -0
  346. package/.cache/admin/src/components/organisms/details-collapsible/index.tsx +60 -0
  347. package/.cache/admin/src/components/organisms/edit-user-modal/index.tsx +145 -0
  348. package/.cache/admin/src/components/organisms/error-boundary/index.tsx +203 -0
  349. package/.cache/admin/src/components/organisms/export-modal/index.tsx +64 -0
  350. package/.cache/admin/src/components/organisms/file-upload-modal/index.tsx +36 -0
  351. package/.cache/admin/src/components/organisms/gift-card-banner/index.tsx +104 -0
  352. package/.cache/admin/src/components/organisms/gift-card-denominations-section/add-denominations-modal.tsx +198 -0
  353. package/.cache/admin/src/components/organisms/gift-card-denominations-section/denominations-table.tsx +75 -0
  354. package/.cache/admin/src/components/organisms/gift-card-denominations-section/edit-denominations-modal.tsx +211 -0
  355. package/.cache/admin/src/components/organisms/gift-card-denominations-section/index.tsx +56 -0
  356. package/.cache/admin/src/components/organisms/gift-card-denominations-section/use-denominations-columns.tsx +207 -0
  357. package/.cache/admin/src/components/organisms/help-dialog/index.tsx +103 -0
  358. package/.cache/admin/src/components/organisms/invite-modal/index.tsx +136 -0
  359. package/.cache/admin/src/components/organisms/login-card/index.tsx +119 -0
  360. package/.cache/admin/src/components/organisms/medusa-price-input/index.tsx +53 -0
  361. package/.cache/admin/src/components/organisms/metadata/index.tsx +150 -0
  362. package/.cache/admin/src/components/organisms/price-input/index.tsx +64 -0
  363. package/.cache/admin/src/components/organisms/product-attributes-section/attribute-modal.tsx +153 -0
  364. package/.cache/admin/src/components/organisms/product-attributes-section/index.tsx +98 -0
  365. package/.cache/admin/src/components/organisms/product-general-section/channels-modal.tsx +54 -0
  366. package/.cache/admin/src/components/organisms/product-general-section/general-modal.tsx +185 -0
  367. package/.cache/admin/src/components/organisms/product-general-section/index.tsx +217 -0
  368. package/.cache/admin/src/components/organisms/product-media-section/index.tsx +51 -0
  369. package/.cache/admin/src/components/organisms/product-media-section/media-modal.tsx +151 -0
  370. package/.cache/admin/src/components/organisms/product-raw-section/index.tsx +28 -0
  371. package/.cache/admin/src/components/organisms/product-thumbnail-section/index.tsx +96 -0
  372. package/.cache/admin/src/components/organisms/product-thumbnail-section/thumbnail-modal.tsx +158 -0
  373. package/.cache/admin/src/components/organisms/product-variant-tree/index.tsx +89 -0
  374. package/.cache/admin/src/components/organisms/product-variants-section/add-variant-modal.tsx +214 -0
  375. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/currency-cell.tsx +243 -0
  376. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/edit-prices-actions.tsx +106 -0
  377. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/edit-prices-table.tsx +842 -0
  378. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/index.tsx +387 -0
  379. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/save-prompt.tsx +111 -0
  380. package/.cache/admin/src/components/organisms/product-variants-section/edit-prices-modal/utils.ts +84 -0
  381. package/.cache/admin/src/components/organisms/product-variants-section/edit-variant-inventory-modal.tsx +354 -0
  382. package/.cache/admin/src/components/organisms/product-variants-section/edit-variant-modal.tsx +217 -0
  383. package/.cache/admin/src/components/organisms/product-variants-section/edit-variants-modal/edit-variant-screen.tsx +153 -0
  384. package/.cache/admin/src/components/organisms/product-variants-section/edit-variants-modal/index.tsx +204 -0
  385. package/.cache/admin/src/components/organisms/product-variants-section/edit-variants-modal/use-edit-variants-modal.tsx +20 -0
  386. package/.cache/admin/src/components/organisms/product-variants-section/edit-variants-modal/variant-card.tsx +170 -0
  387. package/.cache/admin/src/components/organisms/product-variants-section/index.tsx +241 -0
  388. package/.cache/admin/src/components/organisms/product-variants-section/options-modal.tsx +273 -0
  389. package/.cache/admin/src/components/organisms/product-variants-section/options-provider.tsx +47 -0
  390. package/.cache/admin/src/components/organisms/product-variants-section/table.tsx +234 -0
  391. package/.cache/admin/src/components/organisms/radio-group/index.tsx +174 -0
  392. package/.cache/admin/src/components/organisms/raw-json/index.tsx +38 -0
  393. package/.cache/admin/src/components/organisms/reset-token-card/index.tsx +129 -0
  394. package/.cache/admin/src/components/organisms/rma-return-product-table/index.tsx +120 -0
  395. package/.cache/admin/src/components/organisms/rma-select-product-table/index.tsx +316 -0
  396. package/.cache/admin/src/components/organisms/section/index.tsx +52 -0
  397. package/.cache/admin/src/components/organisms/sidebar/index.tsx +142 -0
  398. package/.cache/admin/src/components/organisms/table-container/index.tsx +50 -0
  399. package/.cache/admin/src/components/organisms/table-container/pagination.tsx +86 -0
  400. package/.cache/admin/src/components/organisms/table-container/types.ts +12 -0
  401. package/.cache/admin/src/components/organisms/timeline/index.tsx +224 -0
  402. package/.cache/admin/src/components/organisms/topbar/index.tsx +62 -0
  403. package/.cache/admin/src/components/organisms/upload-modal/index.tsx +326 -0
  404. package/.cache/admin/src/components/private-route/index.tsx +31 -0
  405. package/.cache/admin/src/components/seo/index.tsx +80 -0
  406. package/.cache/admin/src/components/templates/add-products-modal/index.tsx +117 -0
  407. package/.cache/admin/src/components/templates/add-products-modal/product-table-config.tsx +106 -0
  408. package/.cache/admin/src/components/templates/add-products-modal/utils.ts +32 -0
  409. package/.cache/admin/src/components/templates/address-form.tsx +191 -0
  410. package/.cache/admin/src/components/templates/collection-modal/index.tsx +237 -0
  411. package/.cache/admin/src/components/templates/collection-product-table/add-product-table.tsx +240 -0
  412. package/.cache/admin/src/components/templates/collection-product-table/index.tsx +198 -0
  413. package/.cache/admin/src/components/templates/collection-product-table/types.ts +11 -0
  414. package/.cache/admin/src/components/templates/collection-product-table/use-collection-product-columns.tsx +48 -0
  415. package/.cache/admin/src/components/templates/collection-product-table/use-sorting-options.tsx +89 -0
  416. package/.cache/admin/src/components/templates/collection-product-table/use-view-product-columns.tsx +59 -0
  417. package/.cache/admin/src/components/templates/collection-product-table/utils.tsx +64 -0
  418. package/.cache/admin/src/components/templates/collection-product-table/view-products-table.tsx +205 -0
  419. package/.cache/admin/src/components/templates/collections-table/index.tsx +192 -0
  420. package/.cache/admin/src/components/templates/collections-table/use-collection-actions.tsx +48 -0
  421. package/.cache/admin/src/components/templates/collections-table/use-collection-column.tsx +54 -0
  422. package/.cache/admin/src/components/templates/customer-group-table/config.tsx +105 -0
  423. package/.cache/admin/src/components/templates/customer-group-table/customer-groups-table.tsx +295 -0
  424. package/.cache/admin/src/components/templates/customer-group-table/customers-list-table.tsx +240 -0
  425. package/.cache/admin/src/components/templates/customer-group-table/edit-customers-table.tsx +252 -0
  426. package/.cache/admin/src/components/templates/customer-orders-table/index.tsx +159 -0
  427. package/.cache/admin/src/components/templates/customer-orders-table/use-customer-orders-columns.tsx +221 -0
  428. package/.cache/admin/src/components/templates/customer-table/index.tsx +208 -0
  429. package/.cache/admin/src/components/templates/customer-table/use-customer-columns.tsx +54 -0
  430. package/.cache/admin/src/components/templates/customer-table/use-customer-filters.tsx +213 -0
  431. package/.cache/admin/src/components/templates/discount-filter-dropdown/index.tsx +142 -0
  432. package/.cache/admin/src/components/templates/discount-table/index.tsx +239 -0
  433. package/.cache/admin/src/components/templates/discount-table/use-copy-promotion.tsx +87 -0
  434. package/.cache/admin/src/components/templates/discount-table/use-promotion-columns.tsx +186 -0
  435. package/.cache/admin/src/components/templates/discount-table/use-promotion-filters.tsx +519 -0
  436. package/.cache/admin/src/components/templates/discount-table/use-promotion-row-actions.tsx +103 -0
  437. package/.cache/admin/src/components/templates/draft-order-table/index.tsx +168 -0
  438. package/.cache/admin/src/components/templates/draft-order-table/use-draft-order-column.tsx +94 -0
  439. package/.cache/admin/src/components/templates/draft-order-table/use-draft-order-filters.ts +213 -0
  440. package/.cache/admin/src/components/templates/gift-card-filter-dropdown/index.tsx +188 -0
  441. package/.cache/admin/src/components/templates/gift-card-table/index.tsx +199 -0
  442. package/.cache/admin/src/components/templates/gift-card-table/use-gift-card-column.tsx +113 -0
  443. package/.cache/admin/src/components/templates/gift-card-table/use-gift-card-filters.ts +591 -0
  444. package/.cache/admin/src/components/templates/image-table/index.tsx +165 -0
  445. package/.cache/admin/src/components/templates/inventory-table/index.tsx +499 -0
  446. package/.cache/admin/src/components/templates/inventory-table/use-inventory-column.tsx +111 -0
  447. package/.cache/admin/src/components/templates/inventory-table/use-inventory-filters.ts +467 -0
  448. package/.cache/admin/src/components/templates/layout.tsx +30 -0
  449. package/.cache/admin/src/components/templates/login-layout.tsx +62 -0
  450. package/.cache/admin/src/components/templates/order-filter-dropdown/index.tsx +263 -0
  451. package/.cache/admin/src/components/templates/order-table/index.tsx +243 -0
  452. package/.cache/admin/src/components/templates/order-table/use-order-column.tsx +155 -0
  453. package/.cache/admin/src/components/templates/order-table/use-order-filters.ts +644 -0
  454. package/.cache/admin/src/components/templates/price-list-table/price-list-filters.tsx +135 -0
  455. package/.cache/admin/src/components/templates/price-list-table/price-list-table.tsx +203 -0
  456. package/.cache/admin/src/components/templates/price-list-table/use-copy-price-list.tsx +69 -0
  457. package/.cache/admin/src/components/templates/price-list-table/use-price-list-actions.tsx +99 -0
  458. package/.cache/admin/src/components/templates/price-list-table/use-price-list-columns.tsx +80 -0
  459. package/.cache/admin/src/components/templates/price-list-table/use-price-list-filters.tsx +495 -0
  460. package/.cache/admin/src/components/templates/price-list-table/utils.tsx +42 -0
  461. package/.cache/admin/src/components/templates/price-overrides/index.tsx +232 -0
  462. package/.cache/admin/src/components/templates/price-overrides/price-amount.tsx +76 -0
  463. package/.cache/admin/src/components/templates/product-table/index.tsx +271 -0
  464. package/.cache/admin/src/components/templates/product-table/overview.tsx +106 -0
  465. package/.cache/admin/src/components/templates/product-table/use-copy-product.ts +208 -0
  466. package/.cache/admin/src/components/templates/product-table/use-filter-tabs.tsx +487 -0
  467. package/.cache/admin/src/components/templates/product-table/use-product-actions.tsx +133 -0
  468. package/.cache/admin/src/components/templates/product-table/use-product-column.tsx +146 -0
  469. package/.cache/admin/src/components/templates/product-table/use-product-filters.ts +604 -0
  470. package/.cache/admin/src/components/templates/reservations-table/components/reservation-form/index.tsx +172 -0
  471. package/.cache/admin/src/components/templates/reservations-table/components/reservations-filter/index.tsx +906 -0
  472. package/.cache/admin/src/components/templates/reservations-table/index.tsx +442 -0
  473. package/.cache/admin/src/components/templates/reservations-table/new/index.tsx +133 -0
  474. package/.cache/admin/src/components/templates/reservations-table/use-reservation-filters.ts +331 -0
  475. package/.cache/admin/src/components/templates/reservations-table/use-reservations-columns.tsx +47 -0
  476. package/.cache/admin/src/components/templates/search-modal/index.tsx +168 -0
  477. package/.cache/admin/src/components/templates/search-modal/keyboard-shortcuts.tsx +47 -0
  478. package/.cache/admin/src/components/templates/search-modal/results/customer-results.tsx +68 -0
  479. package/.cache/admin/src/components/templates/search-modal/results/discount-results.tsx +63 -0
  480. package/.cache/admin/src/components/templates/search-modal/results/order-results.tsx +62 -0
  481. package/.cache/admin/src/components/templates/search-modal/results/product-results.tsx +68 -0
  482. package/.cache/admin/src/components/templates/search-modal/section-collapsible.tsx +28 -0
  483. package/.cache/admin/src/components/templates/search-modal/use-keyboard-navigation-list.tsx +117 -0
  484. package/.cache/admin/src/components/templates/selectable-table/index.tsx +211 -0
  485. package/.cache/admin/src/components/templates/settings-overview.tsx +25 -0
  486. package/.cache/admin/src/components/templates/transfer-orders-modal/index.tsx +263 -0
  487. package/.cache/admin/src/components/templates/two-split-pane.tsx +54 -0
  488. package/.cache/admin/src/components/templates/user-table.tsx +373 -0
  489. package/.cache/admin/src/constants/analytics.ts +1 -0
  490. package/.cache/admin/src/constants/forbidden-routes.ts +59 -0
  491. package/.cache/admin/src/constants/injection-zones.ts +52 -0
  492. package/.cache/admin/src/constants/medusa-backend-url.ts +2 -0
  493. package/.cache/admin/src/constants/query-client.ts +11 -0
  494. package/.cache/admin/src/domain/categories/components/multiselect/index.tsx +401 -0
  495. package/.cache/admin/src/domain/categories/utils/transform-response.ts +12 -0
  496. package/.cache/admin/src/domain/collections/details/index.tsx +284 -0
  497. package/.cache/admin/src/domain/collections/index.tsx +27 -0
  498. package/.cache/admin/src/domain/customers/details/edit.tsx +187 -0
  499. package/.cache/admin/src/domain/customers/details/index.tsx +187 -0
  500. package/.cache/admin/src/domain/customers/groups/customer-group-modal.tsx +191 -0
  501. package/.cache/admin/src/domain/customers/groups/details.tsx +314 -0
  502. package/.cache/admin/src/domain/customers/groups/index.tsx +100 -0
  503. package/.cache/admin/src/domain/customers/header.tsx +28 -0
  504. package/.cache/admin/src/domain/customers/index.tsx +74 -0
  505. package/.cache/admin/src/domain/discounts/details/conditions/add-condition/conditions-provider.tsx +198 -0
  506. package/.cache/admin/src/domain/discounts/details/conditions/add-condition/index.tsx +30 -0
  507. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/collections/add-collections.tsx +82 -0
  508. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/collections/collections-conditions-table.tsx +82 -0
  509. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/customer-groups/add-customer-groups.tsx +83 -0
  510. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/customer-groups/customer-groups-conditions-table.tsx +82 -0
  511. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/product-types/add-types.tsx +84 -0
  512. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/product-types/type-conditions-table.tsx +82 -0
  513. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/products/add-products.tsx +79 -0
  514. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/products/product-conditions-table.tsx +84 -0
  515. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/tags/add-tags.tsx +80 -0
  516. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-condition-resources/tags/tags-conditions-table.tsx +80 -0
  517. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/add-conditions-screens.tsx +35 -0
  518. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/condition-table-actions.tsx +78 -0
  519. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/edit-condition-modal.tsx +82 -0
  520. package/.cache/admin/src/domain/discounts/details/conditions/edit-condition/edit-condition-provider.tsx +148 -0
  521. package/.cache/admin/src/domain/discounts/details/conditions/index.tsx +84 -0
  522. package/.cache/admin/src/domain/discounts/details/conditions/use-discount-conditions.tsx +131 -0
  523. package/.cache/admin/src/domain/discounts/details/configurations/edit-configurations.tsx +134 -0
  524. package/.cache/admin/src/domain/discounts/details/configurations/index.tsx +62 -0
  525. package/.cache/admin/src/domain/discounts/details/configurations/use-discount-configurations.tsx +173 -0
  526. package/.cache/admin/src/domain/discounts/details/general/edit-general.tsx +160 -0
  527. package/.cache/admin/src/domain/discounts/details/general/index.tsx +207 -0
  528. package/.cache/admin/src/domain/discounts/details/index.tsx +135 -0
  529. package/.cache/admin/src/domain/discounts/index.tsx +97 -0
  530. package/.cache/admin/src/domain/discounts/new/discount-form/add-conditions-modal.tsx +133 -0
  531. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/add-condition-footer.tsx +71 -0
  532. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/collections.tsx +97 -0
  533. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/customer-groups.tsx +93 -0
  534. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/products.tsx +89 -0
  535. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/tags.tsx +79 -0
  536. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/add-condition-tables/types.tsx +82 -0
  537. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/collections.tsx +99 -0
  538. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/customer-groups.tsx +93 -0
  539. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/details-condition-footer.tsx +64 -0
  540. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/products.tsx +89 -0
  541. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/tags.tsx +81 -0
  542. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/details-condition-tables/types.tsx +84 -0
  543. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/collections.tsx +95 -0
  544. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/customer-groups.tsx +86 -0
  545. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/edit-condition-footer.tsx +65 -0
  546. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/products.tsx +83 -0
  547. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/tags.tsx +82 -0
  548. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/edit-condition-tables/types.tsx +77 -0
  549. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/collection.tsx +72 -0
  550. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/common.tsx +4 -0
  551. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/condition-operator.tsx +44 -0
  552. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/groups.tsx +69 -0
  553. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/products.tsx +120 -0
  554. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/tags.tsx +64 -0
  555. package/.cache/admin/src/domain/discounts/new/discount-form/condition-tables/shared/types.tsx +63 -0
  556. package/.cache/admin/src/domain/discounts/new/discount-form/edit-conditions-modal.tsx +53 -0
  557. package/.cache/admin/src/domain/discounts/new/discount-form/form/discount-form-context.tsx +224 -0
  558. package/.cache/admin/src/domain/discounts/new/discount-form/form/mappers.ts +84 -0
  559. package/.cache/admin/src/domain/discounts/new/discount-form/form/use-form-actions.tsx +44 -0
  560. package/.cache/admin/src/domain/discounts/new/discount-form/index.tsx +196 -0
  561. package/.cache/admin/src/domain/discounts/new/discount-form/sections/conditions/condition-item.tsx +248 -0
  562. package/.cache/admin/src/domain/discounts/new/discount-form/sections/conditions/index.tsx +86 -0
  563. package/.cache/admin/src/domain/discounts/new/discount-form/sections/configuration.tsx +273 -0
  564. package/.cache/admin/src/domain/discounts/new/discount-form/sections/discount-allocation.tsx +49 -0
  565. package/.cache/admin/src/domain/discounts/new/discount-form/sections/discount-type.tsx +65 -0
  566. package/.cache/admin/src/domain/discounts/new/discount-form/sections/general.tsx +210 -0
  567. package/.cache/admin/src/domain/discounts/new/discount-form/use-condition-modal-items.tsx +135 -0
  568. package/.cache/admin/src/domain/discounts/new/index.tsx +14 -0
  569. package/.cache/admin/src/domain/discounts/types.ts +81 -0
  570. package/.cache/admin/src/domain/discounts/utils/index.tsx +24 -0
  571. package/.cache/admin/src/domain/gift-cards/custom-giftcard.tsx +154 -0
  572. package/.cache/admin/src/domain/gift-cards/details/edit-gift-card-modal.tsx +149 -0
  573. package/.cache/admin/src/domain/gift-cards/details/index.tsx +210 -0
  574. package/.cache/admin/src/domain/gift-cards/details/update-balance-modal.tsx +131 -0
  575. package/.cache/admin/src/domain/gift-cards/index.tsx +31 -0
  576. package/.cache/admin/src/domain/gift-cards/manage/index.tsx +105 -0
  577. package/.cache/admin/src/domain/gift-cards/new.tsx +336 -0
  578. package/.cache/admin/src/domain/gift-cards/overview.tsx +215 -0
  579. package/.cache/admin/src/domain/inventory/filter-dropdown.tsx +104 -0
  580. package/.cache/admin/src/domain/inventory/header.tsx +32 -0
  581. package/.cache/admin/src/domain/inventory/index.tsx +17 -0
  582. package/.cache/admin/src/domain/inventory/inventory/index.tsx +22 -0
  583. package/.cache/admin/src/domain/inventory/locations/components/address-form/index.tsx +165 -0
  584. package/.cache/admin/src/domain/inventory/locations/components/edit-sales-channels/index.tsx +81 -0
  585. package/.cache/admin/src/domain/inventory/locations/components/general-form/index.tsx +42 -0
  586. package/.cache/admin/src/domain/inventory/locations/components/location-card/index.tsx +124 -0
  587. package/.cache/admin/src/domain/inventory/locations/components/sales-channels-form/index.tsx +77 -0
  588. package/.cache/admin/src/domain/inventory/locations/components/sales-channels-section/index.tsx +31 -0
  589. package/.cache/admin/src/domain/inventory/locations/edit/index.tsx +146 -0
  590. package/.cache/admin/src/domain/inventory/locations/index.tsx +59 -0
  591. package/.cache/admin/src/domain/inventory/locations/new/index.tsx +263 -0
  592. package/.cache/admin/src/domain/inventory/reservations/index.tsx +22 -0
  593. package/.cache/admin/src/domain/oauth/index.tsx +29 -0
  594. package/.cache/admin/src/domain/orders/components/claim-type-form/index.tsx +48 -0
  595. package/.cache/admin/src/domain/orders/components/items-to-receive-form/index.ts +2 -0
  596. package/.cache/admin/src/domain/orders/components/items-to-receive-form/items-to-receive-form.tsx +75 -0
  597. package/.cache/admin/src/domain/orders/components/items-to-receive-form/items-to-receive-table.tsx +62 -0
  598. package/.cache/admin/src/domain/orders/components/items-to-receive-form/use-items-to-receive-columns.tsx +188 -0
  599. package/.cache/admin/src/domain/orders/components/items-to-return-form/add-return-reason/add-return-reason-screen.tsx +143 -0
  600. package/.cache/admin/src/domain/orders/components/items-to-return-form/add-return-reason/index.tsx +94 -0
  601. package/.cache/admin/src/domain/orders/components/items-to-return-form/index.tsx +93 -0
  602. package/.cache/admin/src/domain/orders/components/items-to-return-form/items-to-return-table.tsx +86 -0
  603. package/.cache/admin/src/domain/orders/components/items-to-return-form/use-return-item-columns.tsx +195 -0
  604. package/.cache/admin/src/domain/orders/components/items-to-send-form/add-additional-items-screen/add-additional-items-screen.tsx +199 -0
  605. package/.cache/admin/src/domain/orders/components/items-to-send-form/add-additional-items-screen/add-additional-items-table.tsx +90 -0
  606. package/.cache/admin/src/domain/orders/components/items-to-send-form/add-additional-items-screen/index.ts +1 -0
  607. package/.cache/admin/src/domain/orders/components/items-to-send-form/add-additional-items-screen/use-add-additional-items-columns.tsx +208 -0
  608. package/.cache/admin/src/domain/orders/components/items-to-send-form/additional-items-table.tsx +71 -0
  609. package/.cache/admin/src/domain/orders/components/items-to-send-form/index.tsx +100 -0
  610. package/.cache/admin/src/domain/orders/components/items-to-send-form/use-additional-items-columns.tsx +178 -0
  611. package/.cache/admin/src/domain/orders/components/refund-amount-form/index.tsx +128 -0
  612. package/.cache/admin/src/domain/orders/components/reservation-indicator/reservation-indicator.tsx +152 -0
  613. package/.cache/admin/src/domain/orders/components/rma-summaries/claim-summary.tsx +196 -0
  614. package/.cache/admin/src/domain/orders/components/rma-summaries/index.ts +3 -0
  615. package/.cache/admin/src/domain/orders/components/rma-summaries/receive-return-summary.tsx +126 -0
  616. package/.cache/admin/src/domain/orders/components/rma-summaries/summary-line-item.tsx +68 -0
  617. package/.cache/admin/src/domain/orders/components/rma-summaries/summary-shipping-line.tsx +43 -0
  618. package/.cache/admin/src/domain/orders/components/send-notification-form/index.tsx +57 -0
  619. package/.cache/admin/src/domain/orders/components/shipping-address-form/index.tsx +66 -0
  620. package/.cache/admin/src/domain/orders/components/shipping-address-form/shipping-address-form-modal.tsx +120 -0
  621. package/.cache/admin/src/domain/orders/components/shipping-form/index.tsx +238 -0
  622. package/.cache/admin/src/domain/orders/components/table-quantity-selector.tsx +93 -0
  623. package/.cache/admin/src/domain/orders/details/address-modal.tsx +229 -0
  624. package/.cache/admin/src/domain/orders/details/claim/register-claim-menu.tsx +395 -0
  625. package/.cache/admin/src/domain/orders/details/create-fulfillment/index.tsx +351 -0
  626. package/.cache/admin/src/domain/orders/details/create-fulfillment/item-table.tsx +241 -0
  627. package/.cache/admin/src/domain/orders/details/detail-cards/draft-summary.tsx +279 -0
  628. package/.cache/admin/src/domain/orders/details/detail-cards/summary.tsx +289 -0
  629. package/.cache/admin/src/domain/orders/details/email-modal.tsx +102 -0
  630. package/.cache/admin/src/domain/orders/details/index.tsx +650 -0
  631. package/.cache/admin/src/domain/orders/details/mark-shipped/index.tsx +273 -0
  632. package/.cache/admin/src/domain/orders/details/order-line/edit.tsx +330 -0
  633. package/.cache/admin/src/domain/orders/details/order-line/index.tsx +79 -0
  634. package/.cache/admin/src/domain/orders/details/receive-return/index.tsx +379 -0
  635. package/.cache/admin/src/domain/orders/details/refund/index.tsx +243 -0
  636. package/.cache/admin/src/domain/orders/details/reservation/edit-reservation-modal.tsx +408 -0
  637. package/.cache/admin/src/domain/orders/details/reservation/reserve-items-modal.tsx +345 -0
  638. package/.cache/admin/src/domain/orders/details/returns/index.tsx +483 -0
  639. package/.cache/admin/src/domain/orders/details/rma-sub-modals/address.tsx +208 -0
  640. package/.cache/admin/src/domain/orders/details/rma-sub-modals/products.tsx +302 -0
  641. package/.cache/admin/src/domain/orders/details/rma-sub-modals/return-reasons.tsx +183 -0
  642. package/.cache/admin/src/domain/orders/details/swap/create.tsx +511 -0
  643. package/.cache/admin/src/domain/orders/details/templates/address.tsx +34 -0
  644. package/.cache/admin/src/domain/orders/details/templates/display-total.tsx +60 -0
  645. package/.cache/admin/src/domain/orders/details/templates/fulfillment-status.tsx +63 -0
  646. package/.cache/admin/src/domain/orders/details/templates/fulfillment.tsx +195 -0
  647. package/.cache/admin/src/domain/orders/details/templates/index.ts +9 -0
  648. package/.cache/admin/src/domain/orders/details/templates/order-status.tsx +39 -0
  649. package/.cache/admin/src/domain/orders/details/templates/payment-actionables.tsx +86 -0
  650. package/.cache/admin/src/domain/orders/details/templates/payment-details.tsx +59 -0
  651. package/.cache/admin/src/domain/orders/details/templates/payment-status.tsx +36 -0
  652. package/.cache/admin/src/domain/orders/details/templates/tracking-link.tsx +18 -0
  653. package/.cache/admin/src/domain/orders/details/utils/create-filtering.ts +70 -0
  654. package/.cache/admin/src/domain/orders/details/utils/get-default-values.ts +262 -0
  655. package/.cache/admin/src/domain/orders/details/utils/use-admin-expand-paramter.ts +45 -0
  656. package/.cache/admin/src/domain/orders/draft-orders/details.tsx +517 -0
  657. package/.cache/admin/src/domain/orders/draft-orders/index.tsx +97 -0
  658. package/.cache/admin/src/domain/orders/edit/context.tsx +54 -0
  659. package/.cache/admin/src/domain/orders/edit/modal.tsx +478 -0
  660. package/.cache/admin/src/domain/orders/edit/utils/user.ts +19 -0
  661. package/.cache/admin/src/domain/orders/edit/variants-table.tsx +354 -0
  662. package/.cache/admin/src/domain/orders/index.tsx +167 -0
  663. package/.cache/admin/src/domain/orders/new/components/billing-details.tsx +89 -0
  664. package/.cache/admin/src/domain/orders/new/components/custom-item-sub-modal.tsx +90 -0
  665. package/.cache/admin/src/domain/orders/new/components/items.tsx +336 -0
  666. package/.cache/admin/src/domain/orders/new/components/select-region.tsx +66 -0
  667. package/.cache/admin/src/domain/orders/new/components/select-shipping.tsx +171 -0
  668. package/.cache/admin/src/domain/orders/new/components/shipping-details.tsx +274 -0
  669. package/.cache/admin/src/domain/orders/new/components/summary.tsx +406 -0
  670. package/.cache/admin/src/domain/orders/new/form/index.tsx +212 -0
  671. package/.cache/admin/src/domain/orders/new/new-order.tsx +141 -0
  672. package/.cache/admin/src/domain/orders/utils.ts +30 -0
  673. package/.cache/admin/src/domain/pricing/components/index.ts +1 -0
  674. package/.cache/admin/src/domain/pricing/components/product-filter-menu/index.ts +1 -0
  675. package/.cache/admin/src/domain/pricing/components/product-filter-menu/product-filter-menu.tsx +52 -0
  676. package/.cache/admin/src/domain/pricing/edit/details/details-drawer.tsx +184 -0
  677. package/.cache/admin/src/domain/pricing/edit/details/details-section.tsx +356 -0
  678. package/.cache/admin/src/domain/pricing/edit/details/index.ts +1 -0
  679. package/.cache/admin/src/domain/pricing/edit/edit.tsx +85 -0
  680. package/.cache/admin/src/domain/pricing/edit/index.ts +1 -0
  681. package/.cache/admin/src/domain/pricing/edit/prices/add-products-modal.tsx +695 -0
  682. package/.cache/admin/src/domain/pricing/edit/prices/edit-prices-modal.tsx +677 -0
  683. package/.cache/admin/src/domain/pricing/edit/prices/index.ts +1 -0
  684. package/.cache/admin/src/domain/pricing/edit/prices/prices-section.tsx +648 -0
  685. package/.cache/admin/src/domain/pricing/forms/price-list-details-form/index.ts +3 -0
  686. package/.cache/admin/src/domain/pricing/forms/price-list-details-form/price-list-details-form.tsx +753 -0
  687. package/.cache/admin/src/domain/pricing/forms/price-list-details-form/schema.ts +37 -0
  688. package/.cache/admin/src/domain/pricing/forms/price-list-details-form/types.ts +20 -0
  689. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/helpers.ts +46 -0
  690. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/index.ts +6 -0
  691. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/price-list-prices-form.tsx +237 -0
  692. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/schema.ts +32 -0
  693. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/types.ts +12 -0
  694. package/.cache/admin/src/domain/pricing/forms/price-list-prices-form/use-prices-form-data.tsx +78 -0
  695. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/helpers.ts +566 -0
  696. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/index.ts +3 -0
  697. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/models.ts +187 -0
  698. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/price-list-product-prices-form.tsx +2151 -0
  699. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/schema.ts +27 -0
  700. package/.cache/admin/src/domain/pricing/forms/price-list-product-prices-form/types.ts +91 -0
  701. package/.cache/admin/src/domain/pricing/forms/price-list-products-form/index.ts +3 -0
  702. package/.cache/admin/src/domain/pricing/forms/price-list-products-form/price-list-products-form.tsx +482 -0
  703. package/.cache/admin/src/domain/pricing/forms/price-list-products-form/schema.ts +7 -0
  704. package/.cache/admin/src/domain/pricing/forms/price-list-products-form/types.ts +4 -0
  705. package/.cache/admin/src/domain/pricing/index.tsx +16 -0
  706. package/.cache/admin/src/domain/pricing/new/index.ts +1 -0
  707. package/.cache/admin/src/domain/pricing/new/new.tsx +769 -0
  708. package/.cache/admin/src/domain/pricing/overview/index.ts +1 -0
  709. package/.cache/admin/src/domain/pricing/overview/overview.tsx +481 -0
  710. package/.cache/admin/src/domain/product-categories/components/product-categories-list.tsx +151 -0
  711. package/.cache/admin/src/domain/product-categories/components/product-category-list-item-details.tsx +181 -0
  712. package/.cache/admin/src/domain/product-categories/components/tree-crumbs.tsx +54 -0
  713. package/.cache/admin/src/domain/product-categories/index.tsx +30 -0
  714. package/.cache/admin/src/domain/product-categories/modals/add-product-category.tsx +282 -0
  715. package/.cache/admin/src/domain/product-categories/modals/edit-product-category.tsx +241 -0
  716. package/.cache/admin/src/domain/product-categories/pages/index.tsx +135 -0
  717. package/.cache/admin/src/domain/product-categories/styles/product-categories.css +21 -0
  718. package/.cache/admin/src/domain/product-categories/utils/index.tsx +63 -0
  719. package/.cache/admin/src/domain/products/batch-job/download-template.ts +18 -0
  720. package/.cache/admin/src/domain/products/batch-job/import.tsx +235 -0
  721. package/.cache/admin/src/domain/products/edit/index.tsx +91 -0
  722. package/.cache/admin/src/domain/products/filter-dropdown.tsx +244 -0
  723. package/.cache/admin/src/domain/products/index.tsx +29 -0
  724. package/.cache/admin/src/domain/products/new/add-sales-channels.tsx +123 -0
  725. package/.cache/admin/src/domain/products/new/add-variants/index.tsx +508 -0
  726. package/.cache/admin/src/domain/products/new/add-variants/new-variant/index.tsx +380 -0
  727. package/.cache/admin/src/domain/products/new/index.tsx +518 -0
  728. package/.cache/admin/src/domain/products/overview/index.tsx +269 -0
  729. package/.cache/admin/src/domain/publishable-api-keys/index.tsx +33 -0
  730. package/.cache/admin/src/domain/publishable-api-keys/modals/add-sales-channels.tsx +149 -0
  731. package/.cache/admin/src/domain/publishable-api-keys/modals/details.tsx +116 -0
  732. package/.cache/admin/src/domain/publishable-api-keys/modals/manage-sales-channels.tsx +428 -0
  733. package/.cache/admin/src/domain/publishable-api-keys/pages/index.tsx +294 -0
  734. package/.cache/admin/src/domain/publishable-api-keys/tables/publishable-api-keys-table.tsx +342 -0
  735. package/.cache/admin/src/domain/publishable-api-keys/tables/sales-channels-table.tsx +244 -0
  736. package/.cache/admin/src/domain/sales-channels/form/add-sales-channel.tsx +211 -0
  737. package/.cache/admin/src/domain/sales-channels/form/edit-sales-channel.tsx +116 -0
  738. package/.cache/admin/src/domain/sales-channels/index.tsx +30 -0
  739. package/.cache/admin/src/domain/sales-channels/pages/details.tsx +501 -0
  740. package/.cache/admin/src/domain/sales-channels/tables/config.tsx +57 -0
  741. package/.cache/admin/src/domain/sales-channels/tables/placeholder.tsx +33 -0
  742. package/.cache/admin/src/domain/sales-channels/tables/product.tsx +539 -0
  743. package/.cache/admin/src/domain/settings/currencies/components/currency-tax-setting.tsx +111 -0
  744. package/.cache/admin/src/domain/settings/currencies/components/default-store-currency/default-currency-selector.tsx +104 -0
  745. package/.cache/admin/src/domain/settings/currencies/components/default-store-currency/index.tsx +33 -0
  746. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/add-currencies-screen.tsx +160 -0
  747. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/current-currencies-screen.tsx +197 -0
  748. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/edit-currencies-modal.tsx +46 -0
  749. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/index.tsx +38 -0
  750. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/table.tsx +123 -0
  751. package/.cache/admin/src/domain/settings/currencies/components/store-currencies/use-currency-table-columns.tsx +58 -0
  752. package/.cache/admin/src/domain/settings/currencies/index.tsx +131 -0
  753. package/.cache/admin/src/domain/settings/details.tsx +184 -0
  754. package/.cache/admin/src/domain/settings/index.tsx +196 -0
  755. package/.cache/admin/src/domain/settings/personal-information/edit-user-information/edit-user-information-modal.tsx +116 -0
  756. package/.cache/admin/src/domain/settings/personal-information/edit-user-information/index.tsx +67 -0
  757. package/.cache/admin/src/domain/settings/personal-information/index.tsx +54 -0
  758. package/.cache/admin/src/domain/settings/personal-information/language-settings/index.tsx +42 -0
  759. package/.cache/admin/src/domain/settings/personal-information/language-settings/language-menu.tsx +31 -0
  760. package/.cache/admin/src/domain/settings/personal-information/usage-insights/index.tsx +65 -0
  761. package/.cache/admin/src/domain/settings/personal-information/usage-insights/usage-insights-modal.tsx +99 -0
  762. package/.cache/admin/src/domain/settings/regions/components/region-form/region-details-form.tsx +160 -0
  763. package/.cache/admin/src/domain/settings/regions/components/region-form/region-providers-form.tsx +111 -0
  764. package/.cache/admin/src/domain/settings/regions/components/region-form/use-store-data.tsx +58 -0
  765. package/.cache/admin/src/domain/settings/regions/components/shipping-option-card/edit-modal.tsx +170 -0
  766. package/.cache/admin/src/domain/settings/regions/components/shipping-option-card/index.tsx +127 -0
  767. package/.cache/admin/src/domain/settings/regions/components/shipping-option-form/index.tsx +332 -0
  768. package/.cache/admin/src/domain/settings/regions/components/shipping-option-form/use-shipping-option-form-data.tsx +136 -0
  769. package/.cache/admin/src/domain/settings/regions/edit/general-section/edit-region.modal.tsx +192 -0
  770. package/.cache/admin/src/domain/settings/regions/edit/general-section/index.tsx +210 -0
  771. package/.cache/admin/src/domain/settings/regions/edit/index.tsx +55 -0
  772. package/.cache/admin/src/domain/settings/regions/edit/return-shipping-options/create-return-shipping-option.modal.tsx +110 -0
  773. package/.cache/admin/src/domain/settings/regions/edit/return-shipping-options/index.tsx +59 -0
  774. package/.cache/admin/src/domain/settings/regions/edit/shipping-options/create-shipping-option-modal.tsx +107 -0
  775. package/.cache/admin/src/domain/settings/regions/edit/shipping-options/index.tsx +52 -0
  776. package/.cache/admin/src/domain/settings/regions/index.tsx +25 -0
  777. package/.cache/admin/src/domain/settings/regions/new/index.tsx +177 -0
  778. package/.cache/admin/src/domain/settings/regions/region-overview/index.tsx +95 -0
  779. package/.cache/admin/src/domain/settings/regions/region-overview/region-card.tsx +49 -0
  780. package/.cache/admin/src/domain/settings/return-reasons/create-reason-modal.tsx +150 -0
  781. package/.cache/admin/src/domain/settings/return-reasons/detail.tsx +163 -0
  782. package/.cache/admin/src/domain/settings/return-reasons/index.tsx +101 -0
  783. package/.cache/admin/src/domain/settings/taxes/details.tsx +160 -0
  784. package/.cache/admin/src/domain/settings/taxes/edit-form.tsx +379 -0
  785. package/.cache/admin/src/domain/settings/taxes/edit-tax-rate-details.tsx +83 -0
  786. package/.cache/admin/src/domain/settings/taxes/edit.tsx +56 -0
  787. package/.cache/admin/src/domain/settings/taxes/index.tsx +169 -0
  788. package/.cache/admin/src/domain/settings/taxes/new.tsx +300 -0
  789. package/.cache/admin/src/domain/settings/taxes/product-selector.tsx +80 -0
  790. package/.cache/admin/src/domain/settings/taxes/product-type-selector.tsx +44 -0
  791. package/.cache/admin/src/domain/settings/taxes/region-form.tsx +178 -0
  792. package/.cache/admin/src/domain/settings/taxes/selectable-table.tsx +197 -0
  793. package/.cache/admin/src/domain/settings/taxes/shipping-option-selector.tsx +46 -0
  794. package/.cache/admin/src/domain/settings/taxes/tax-rate-row.tsx +87 -0
  795. package/.cache/admin/src/domain/settings/taxes/tax-rule-item.tsx +43 -0
  796. package/.cache/admin/src/domain/settings/taxes/tax-rule-selector.tsx +161 -0
  797. package/.cache/admin/src/domain/settings/taxes/use-tax-rate-columns.tsx +50 -0
  798. package/.cache/admin/src/domain/settings/users/index.tsx +88 -0
  799. package/.cache/admin/src/extensions/_local-entry.ts +10 -0
  800. package/.cache/admin/src/extensions/_main-entry.ts +7 -0
  801. package/.cache/admin/src/fonts/Inter-Medium.ttf +0 -0
  802. package/.cache/admin/src/fonts/Inter-Regular.ttf +0 -0
  803. package/.cache/admin/src/fonts/Inter-SemiBold.ttf +0 -0
  804. package/.cache/admin/src/fonts/RobotoMono-Bold.ttf +0 -0
  805. package/.cache/admin/src/fonts/RobotoMono-Regular.ttf +0 -0
  806. package/.cache/admin/src/hooks/use-build-timeline.tsx +676 -0
  807. package/.cache/admin/src/hooks/use-command-history.tsx +66 -0
  808. package/.cache/admin/src/hooks/use-computed-height.ts +19 -0
  809. package/.cache/admin/src/hooks/use-debounce.ts +22 -0
  810. package/.cache/admin/src/hooks/use-debounced-search-param.tsx +33 -0
  811. package/.cache/admin/src/hooks/use-detect-change.tsx +50 -0
  812. package/.cache/admin/src/hooks/use-edit-product-actions.tsx +193 -0
  813. package/.cache/admin/src/hooks/use-extension-base-props.tsx +25 -0
  814. package/.cache/admin/src/hooks/use-highlight-search.tsx +33 -0
  815. package/.cache/admin/src/hooks/use-imperative-dialog.tsx +139 -0
  816. package/.cache/admin/src/hooks/use-is-me.tsx +12 -0
  817. package/.cache/admin/src/hooks/use-notification.tsx +20 -0
  818. package/.cache/admin/src/hooks/use-observe-width.ts +30 -0
  819. package/.cache/admin/src/hooks/use-on-click-outside.tsx +28 -0
  820. package/.cache/admin/src/hooks/use-outside-click.ts +19 -0
  821. package/.cache/admin/src/hooks/use-query-filters.ts +229 -0
  822. package/.cache/admin/src/hooks/use-scroll.ts +20 -0
  823. package/.cache/admin/src/hooks/use-selection-column.tsx +39 -0
  824. package/.cache/admin/src/hooks/use-set-search-params.tsx +24 -0
  825. package/.cache/admin/src/hooks/use-stock-locations.ts +28 -0
  826. package/.cache/admin/src/hooks/use-toggle-state.ts +46 -0
  827. package/.cache/admin/src/hooks/use-window-dimensions.ts +25 -0
  828. package/.cache/admin/src/i18n/index.ts +119 -0
  829. package/.cache/admin/src/main.tsx +27 -0
  830. package/.cache/admin/src/medusa-app.tsx +58 -0
  831. package/.cache/admin/src/pages/404.tsx +12 -0
  832. package/.cache/admin/src/pages/a.tsx +86 -0
  833. package/.cache/admin/src/pages/index.tsx +20 -0
  834. package/.cache/admin/src/pages/invite.tsx +246 -0
  835. package/.cache/admin/src/pages/login.tsx +50 -0
  836. package/.cache/admin/src/pages/reset-password.tsx +151 -0
  837. package/.cache/admin/src/providers/analytics-provider.tsx +223 -0
  838. package/.cache/admin/src/providers/feature-flag-provider.tsx +78 -0
  839. package/.cache/admin/src/providers/import-refresh.tsx +57 -0
  840. package/.cache/admin/src/providers/medusa-provider.tsx +17 -0
  841. package/.cache/admin/src/providers/polling-provider.tsx +112 -0
  842. package/.cache/admin/src/providers/providers.tsx +54 -0
  843. package/.cache/admin/src/providers/route-provider.tsx +55 -0
  844. package/.cache/admin/src/providers/setting-provider.tsx +49 -0
  845. package/.cache/admin/src/providers/skeleton-provider.tsx +32 -0
  846. package/.cache/admin/src/providers/widget-provider.tsx +38 -0
  847. package/.cache/admin/src/registries/route-registry.tsx +133 -0
  848. package/.cache/admin/src/registries/setting-registry.tsx +60 -0
  849. package/.cache/admin/src/registries/widget-registry.tsx +26 -0
  850. package/.cache/admin/src/services/analytics.ts +119 -0
  851. package/.cache/admin/src/types/extensions.ts +151 -0
  852. package/.cache/admin/src/types/shared.ts +55 -0
  853. package/.cache/admin/src/types/utils.ts +3 -0
  854. package/.cache/admin/src/utils/bytes-converter.ts +18 -0
  855. package/.cache/admin/src/utils/callAll.ts +4 -0
  856. package/.cache/admin/src/utils/color.ts +12 -0
  857. package/.cache/admin/src/utils/consolidate-images.ts +15 -0
  858. package/.cache/admin/src/utils/countries.ts +639 -0
  859. package/.cache/admin/src/utils/currencies.ts +1087 -0
  860. package/.cache/admin/src/utils/date-utils.ts +5 -0
  861. package/.cache/admin/src/utils/email.ts +9 -0
  862. package/.cache/admin/src/utils/equals-set.ts +11 -0
  863. package/.cache/admin/src/utils/error-messages.ts +10 -0
  864. package/.cache/admin/src/utils/extensions.ts +30 -0
  865. package/.cache/admin/src/utils/extract-customer-name.ts +69 -0
  866. package/.cache/admin/src/utils/extract-options.ts +26 -0
  867. package/.cache/admin/src/utils/focus-by-name.ts +3 -0
  868. package/.cache/admin/src/utils/form-helpers.ts +22 -0
  869. package/.cache/admin/src/utils/form-validator.ts +71 -0
  870. package/.cache/admin/src/utils/fulfillment-providers.mapper.ts +26 -0
  871. package/.cache/admin/src/utils/generate-promotion-code.ts +12 -0
  872. package/.cache/admin/src/utils/get-admin-path.ts +22 -0
  873. package/.cache/admin/src/utils/get-error-status.ts +11 -0
  874. package/.cache/admin/src/utils/get-relative-time.ts +35 -0
  875. package/.cache/admin/src/utils/handle-form-error.tsx +64 -0
  876. package/.cache/admin/src/utils/images.ts +33 -0
  877. package/.cache/admin/src/utils/is-line-item.ts +37 -0
  878. package/.cache/admin/src/utils/is-nullish-object.ts +14 -0
  879. package/.cache/admin/src/utils/map-address-to-form.ts +23 -0
  880. package/.cache/admin/src/utils/nested-form.ts +87 -0
  881. package/.cache/admin/src/utils/payment-providers-mapper.ts +73 -0
  882. package/.cache/admin/src/utils/prices.ts +153 -0
  883. package/.cache/admin/src/utils/product-status-variant.ts +13 -0
  884. package/.cache/admin/src/utils/remove-nullish.ts +11 -0
  885. package/.cache/admin/src/utils/sales-channel-compare-operator.ts +13 -0
  886. package/.cache/admin/src/utils/search-param-utils.ts +86 -0
  887. package/.cache/admin/src/utils/trim-values.ts +11 -0
  888. package/.cache/admin/src/utils/validate-email.ts +7 -0
  889. package/.cache/admin/src/utils/xorObjFields.ts +4 -0
  890. package/.cache/admin/tsconfig.json +22 -0
  891. package/.cache/admin-build-manifest.json +29 -0
  892. package/.eslintrc.js +112 -0
  893. package/.github/dependabot.yml +21 -0
  894. package/.github/scripts/wait-for-server-live.sh +29 -0
  895. package/.github/workflows/test-cli.yml +149 -0
  896. package/.github/workflows/update-preview-deps-ci.yml +70 -0
  897. package/.github/workflows/update-preview-deps.yml +70 -0
  898. package/.vscode/settings.json +2 -0
  899. package/.yarnrc.yml +1 -0
  900. package/README.md +70 -0
  901. package/build/230.c76076a78b7563553415.css +932 -0
  902. package/build/442f6a4cc2f03aaf41f6.ttf +0 -0
  903. package/build/68fda0752a470b05a5c5.ttf +0 -0
  904. package/build/6dcbc9bed1ec438907ee.ttf +0 -0
  905. package/build/6ed339415e1071e8ebc9.ttf +0 -0
  906. package/build/e62b16638c71c0eb4505.ttf +0 -0
  907. package/build/images/icon-minus-gray-fedf0680e4cc60b17e14.svg +16 -0
  908. package/build/images/icon-plus-gray-4813505451ce489532e3.svg +16 -0
  909. package/build/index.html +1 -0
  910. package/build/main.c5035eb0615ccdc82cbf.css +6635 -0
  911. package/build/public/locales/ar/translation.json +1919 -0
  912. package/build/public/locales/bg/translation.json +2011 -0
  913. package/build/public/locales/bs/translation.json +2011 -0
  914. package/build/public/locales/cs/translation.json +1942 -0
  915. package/build/public/locales/de/translation.json +1924 -0
  916. package/build/public/locales/en/translation.json +2011 -0
  917. package/build/public/locales/es/translation.json +1924 -0
  918. package/build/public/locales/fr/translation.json +1924 -0
  919. package/build/public/locales/hi/translation.json +2011 -0
  920. package/build/public/locales/hr/translation.json +2011 -0
  921. package/build/public/locales/it/translation.json +1922 -0
  922. package/build/public/locales/ja/translation.json +2006 -0
  923. package/build/public/locales/ko/translation.json +2011 -0
  924. package/build/public/locales/pl/translation.json +1919 -0
  925. package/build/public/locales/pt/translation.json +1925 -0
  926. package/build/public/locales/ru/translation.json +1919 -0
  927. package/build/public/locales/sl/translation.json +2010 -0
  928. package/build/public/locales/tm/translation.json +1924 -0
  929. package/build/public/locales/uk/translation.json +1919 -0
  930. package/build/public/locales/vi/translation.json +2011 -0
  931. package/build/public/locales/zh/translation.json +2011 -0
  932. package/build/public/logo.svg +10 -0
  933. package/data/seed-onboarding.json +141 -0
  934. package/data/seed.json +1006 -0
  935. package/datasource.js +18 -0
  936. package/dist/index.js +1 -0
  937. package/index.js +50 -0
  938. package/medusa-config.js +153 -0
  939. package/package.json +129 -0
  940. package/src/api/README.md +179 -0
  941. package/src/index.ts +0 -0
  942. package/src/jobs/README.md +32 -0
  943. package/src/loaders/README.md +19 -0
  944. package/src/migrations/1717765546068-licenseVariant.ts +20 -0
  945. package/src/migrations/README.md +29 -0
  946. package/src/models/README.md +46 -0
  947. package/src/models/product-variant.ts +35 -0
  948. package/src/repositories/ProductVariant.ts +11 -0
  949. package/src/services/README.md +49 -0
  950. package/src/subscribers/README.md +44 -0
  951. package/tsconfig.admin.json +8 -0
  952. package/tsconfig.json +30 -0
  953. package/tsconfig.server.json +8 -0
  954. package/tsconfig.spec.json +5 -0
@@ -0,0 +1,2011 @@
1
+ {
2
+ "back-button-go-back": "Go back",
3
+ "filter-menu-trigger": "View",
4
+ "filter-menu-clear-button": "Clear",
5
+ "filter-menu-select-item-default-placeholder": "Select filter",
6
+ "filter-menu-select-item-clear-button": "Clear the selected options",
7
+ "filter-menu-select-item-selected": "Selected",
8
+ "filter-menu-date-item-before": "Before",
9
+ "filter-menu-date-item-after": "After",
10
+ "filter-menu-date-item-between": "Between",
11
+ "sales-channels-display-available-count": "Available in <2>{{availableChannelsCount}}</2> out of <6>{{totalChannelsCount}}</6> Sales Channels",
12
+ "activity-drawer-activity": "Activity",
13
+ "activity-drawer-no-notifications-title": "It's quiet in here...",
14
+ "activity-drawer-no-notifications-description": "You don't have any notifications at the moment, but once you do they will live here.",
15
+ "activity-drawer-error-title": "Oh no...",
16
+ "activity-drawer-error-description": "Something went wrong while trying to fetch your notifications - We will keep trying!",
17
+ "activity-drawer-processing": "Processing...",
18
+ "analytics-config-form-title": "Anonymize my usage data",
19
+ "analytics-config-form-description": "You can choose to anonymize your usage data. If this option is selected, we will not collect your personal information, such as your name and email address.",
20
+ "analytics-config-form-opt-out": "Opt out of sharing my usage data",
21
+ "analytics-config-form-opt-out-later": "You can always opt out of sharing your usage data at any time.",
22
+ "analytics-preferences-success": "Success",
23
+ "analytics-preferences-your-preferences-were-successfully-updated": "Your preferences were successfully updated",
24
+ "analytics-preferences-error": "Error",
25
+ "analytics-preferences-help-us-get-better": "Help us get better",
26
+ "analytics-preferences-disclaimer": "To create the most compelling e-commerce experience we would like to gain insights in how you use Medusa. User insights allow us to build a better, more engaging, and more usable products. We only collect data for product improvements. Read what data we gather in our",
27
+ "analytics-preferences-documentation": "documentation",
28
+ "analytics-preferences-please-enter-a-valid-email": "Please enter a valid email",
29
+ "analytics-preferences-continue": "Continue",
30
+ "currency-input-currency": "Currency",
31
+ "currency-input-amount-is-not-valid": "Amount is not valid",
32
+ "organisms-success": "Success",
33
+ "organisms-delete-successful": "Delete successful",
34
+ "organisms-are-you-sure-you-want-to-delete": "Are you sure you want to delete?",
35
+ "organisms-no-cancel": "No, cancel",
36
+ "organisms-yes-remove": "Yes, remove",
37
+ "details-collapsible-hide-additional-details": "Hide additional details",
38
+ "details-collapsible-show-additional-details": "Show additional details",
39
+ "edit-user-modal-success": "Success",
40
+ "edit-user-modal-user-was-updated": "User was updated",
41
+ "edit-user-modal-error": "Error",
42
+ "edit-user-modal-edit-user": "Edit User",
43
+ "edit-user-modal-first-name-label": "First Name",
44
+ "edit-user-modal-first-name-placeholder": "First name...",
45
+ "edit-user-modal-last-name-label": "Last Name",
46
+ "edit-user-modal-last-name-placeholder": "Last name...",
47
+ "edit-user-modal-email": "Email",
48
+ "edit-user-modal-cancel": "Cancel",
49
+ "edit-user-modal-save": "Save",
50
+ "error-boundary-back-to-dashboard": "Back to dashboard",
51
+ "error-boundary-an-unknown-error-occured": "An unknown error occured",
52
+ "error-boundary-bad-request": "Bad request",
53
+ "error-boundary-you-are-not-logged-in": "You are not logged in",
54
+ "error-boundary-you-do-not-have-permission-perform-this-action": "You do not have permission to perform this action",
55
+ "error-boundary-page-was-not-found": "Page was not found",
56
+ "error-boundary-an-unknown-server-error-occured": "An unknown server error occured",
57
+ "error-boundary-503": "Server is currently unavailable",
58
+ "error-boundary-500": "An error occurred with unspecified causes, this is most likely due to a techinical issue on our end. Please try refreshing the page. If the issue keeps happening, contact your administrator.",
59
+ "error-boundary-400": "The request was malformed, fix your request and please try again.",
60
+ "error-boundary-401": "You are not logged in, please log in to proceed.",
61
+ "error-boundary-403": "You do not have permission to perform this action, if you think this is a mistake, contact your administrator.",
62
+ "error-boundary-404": "The page you have requested was not found, please check the URL and try again.",
63
+ "error-boundary-500-2": "The server was not able to handle your request, this is mostly likely due to a techinical issue on our end. Please try again. If the issue keeps happening, contact your administrator.",
64
+ "error-boundary-503-2": "The server is temporarily unavailable, and your request could not be processed. Please try again later. If the issue keeps happening, contact your administrator.",
65
+ "export-modal-title": "Initialize an export of your data",
66
+ "export-modal-cancel": "Cancel",
67
+ "export-modal-export": "Export",
68
+ "file-upload-modal-upload-a-new-photo": "Upload a new photo",
69
+ "gift-card-banner-edit": "Edit",
70
+ "gift-card-banner-unpublish": "Unpublish",
71
+ "gift-card-banner-publish": "Publish",
72
+ "gift-card-banner-delete": "Delete",
73
+ "gift-card-banner-published": "Published",
74
+ "gift-card-banner-unpublished": "Unpublished",
75
+ "gift-card-denominations-section-denomination-added": "Denomination added",
76
+ "gift-card-denominations-section-a-new-denomination-was-successfully-added": "A new denomination was successfully added",
77
+ "gift-card-denominations-section-a-denomination-with-that-default-value-already-exists": "A denomination with that default value already exists",
78
+ "gift-card-denominations-section-error": "Error",
79
+ "gift-card-denominations-section-add-denomination": "Add Denomination",
80
+ "gift-card-denominations-section-cancel": "Cancel",
81
+ "gift-card-denominations-section-save-and-close": "Save and close",
82
+ "gift-card-denominations-section-denomination-updated": "Denomination updated",
83
+ "gift-card-denominations-section-a-new-denomination-was-successfully-updated": "A new denomination was successfully updated",
84
+ "gift-card-denominations-section-edit-denomination": "Edit Denomination",
85
+ "gift-card-denominations-section-denominations": "Denominations",
86
+ "gift-card-denominations-section-denomination": "Denomination",
87
+ "gift-card-denominations-section-in-other-currencies": "In other currencies",
88
+ "gift-card-denominations-section-and-more_one": ", and {{count}} more",
89
+ "gift-card-denominations-section-and-more_other": ", and {{count}} more",
90
+ "gift-card-denominations-section-delete-denomination": "Delete denomination",
91
+ "gift-card-denominations-section-confirm-delete": "Are you sure you want to delete this denomination?",
92
+ "gift-card-denominations-section-denomination-deleted": "Denomination deleted",
93
+ "gift-card-denominations-section-denomination-was-successfully-deleted": "Denomination was successfully deleted",
94
+ "gift-card-denominations-section-edit": "Edit",
95
+ "gift-card-denominations-section-delete": "Delete",
96
+ "help-dialog-how-can-we-help": "How can we help?",
97
+ "help-dialog-we-usually-respond-in-a-few-hours": "We usually respond in a few hours",
98
+ "help-dialog-subject": "Subject",
99
+ "help-dialog-what-is-it-about": "What is it about?...",
100
+ "help-dialog-write-a-message": "Write a message...",
101
+ "help-dialog-feel-free-to-join-our-community-of": "Feel free to join our community of",
102
+ "help-dialog-merchants-and-e-commerce-developers": "merchants and e-commerce developers",
103
+ "help-dialog-send-a-message": "Send a message",
104
+ "invite-modal-success": "Success",
105
+ "invite-modal-invitation-sent-to": "Invitation sent to {{user}}",
106
+ "invite-modal-error": "Error",
107
+ "invite-modal-member": "Member",
108
+ "invite-modal-admin": "Admin",
109
+ "invite-modal-developer": "Developer",
110
+ "invite-modal-invite-users": "Invite Users",
111
+ "invite-modal-email": "Email",
112
+ "invite-modal-role": "Role",
113
+ "invite-modal-select-role": "Select role",
114
+ "invite-modal-cancel": "Cancel",
115
+ "invite-modal-invite": "Invite",
116
+ "login-card-no-match": "These credentials do not match our records.",
117
+ "login-card-log-in-to-medusa": "Log in to Medusa",
118
+ "login-card-email": "Email",
119
+ "login-card-password": "Password",
120
+ "login-card-forgot-your-password": "Forgot your password?",
121
+ "metadata-add-metadata": "Add Metadata",
122
+ "product-attributes-section-edit-attributes": "Edit Attributes",
123
+ "product-attributes-section-dimensions": "Dimensions",
124
+ "product-attributes-section-configure-to-calculate-the-most-accurate-shipping-rates": "Configure to calculate the most accurate shipping rates",
125
+ "product-attributes-section-customs": "Customs",
126
+ "product-attributes-section-cancel": "Cancel",
127
+ "product-attributes-section-save": "Save",
128
+ "product-attributes-section-title": "Attributes",
129
+ "product-attributes-section-height": "Height",
130
+ "product-attributes-section-width": "Width",
131
+ "product-attributes-section-length": "Length",
132
+ "product-attributes-section-weight": "Weight",
133
+ "product-attributes-section-mid-code": "MID Code",
134
+ "product-attributes-section-hs-code": "HS Code",
135
+ "product-attributes-section-country-of-origin": "Country of origin",
136
+ "product-general-section-success": "Success",
137
+ "product-general-section-successfully-updated-sales-channels": "Successfully updated sales channels",
138
+ "product-general-section-error": "Error",
139
+ "product-general-section-failed-to-update-sales-channels": "Failed to update sales channels",
140
+ "product-general-section-edit-general-information": "Edit General Information",
141
+ "product-general-section-gift-card": "Gift Card",
142
+ "product-general-section-product": "Product",
143
+ "product-general-section-metadata": "Metadata",
144
+ "product-general-section-cancel": "Cancel",
145
+ "product-general-section-save": "Save",
146
+ "product-general-section-delete": "Delete",
147
+ "product-general-section-edit-sales-channels": "Edit Sales Channels",
148
+ "product-general-section-published": "Published",
149
+ "product-general-section-draft": "Draft",
150
+ "product-general-section-details": "Details",
151
+ "product-general-section-subtitle": "Subtitle",
152
+ "product-general-section-handle": "Handle",
153
+ "product-general-section-type": "Type",
154
+ "product-general-section-collection": "Collection",
155
+ "product-general-section-category": "Category",
156
+ "product-general-section-discountable": "Discountable",
157
+ "product-general-section-true": "True",
158
+ "product-general-section-false": "False",
159
+ "product-general-section-count_one": "{{count}}",
160
+ "product-general-section-count_other": "{{count}}",
161
+ "product-general-section-sales-channels": "Sales channels",
162
+ "product-media-section-edit-media": "Edit Media",
163
+ "product-media-section-upload-images-error": "Something went wrong while trying to upload images.",
164
+ "product-media-section-file-service-not-configured": "You might not have a file service configured. Please contact your administrator",
165
+ "product-media-section-error": "Error",
166
+ "product-media-section-media": "Media",
167
+ "product-media-section-add-images-to-your-product": "Add images to your product.",
168
+ "product-media-section-cancel": "Cancel",
169
+ "product-media-section-save-and-close": "Save and close",
170
+ "product-raw-section-raw-gift-card": "Raw Gift Card",
171
+ "product-raw-section-raw-product": "Raw Product",
172
+ "product-thumbnail-section-success": "Success",
173
+ "product-thumbnail-section-successfully-deleted-thumbnail": "Successfully deleted thumbnail",
174
+ "product-thumbnail-section-error": "Error",
175
+ "product-thumbnail-section-edit": "Edit",
176
+ "product-thumbnail-section-upload": "Upload",
177
+ "product-thumbnail-section-upload-thumbnail-error": "Something went wrong while trying to upload the thumbnail.",
178
+ "product-thumbnail-section-you-might-not-have-a-file-service-configured-please-contact-your-administrator": "You might not have a file service configured. Please contact your administrator",
179
+ "product-thumbnail-section-upload-thumbnail": "Upload Thumbnail",
180
+ "product-thumbnail-section-thumbnail": "Thumbnail",
181
+ "product-thumbnail-section-used-to-represent-your-product-during-checkout-social-sharing-and-more": "Used to represent your product during checkout, social sharing and more.",
182
+ "product-thumbnail-section-cancel": "Cancel",
183
+ "product-thumbnail-section-save-and-close": "Save and close",
184
+ "product-variant-tree-count_one": "{{count}}",
185
+ "product-variant-tree-count_other": "{{count}}",
186
+ "product-variant-tree-add-prices": "Add prices",
187
+ "product-variants-section-add-variant": "Add Variant",
188
+ "product-variants-section-cancel": "Cancel",
189
+ "product-variants-section-save-and-close": "Save and close",
190
+ "product-variants-section-edit-stock-inventory": "Edit stock & inventory",
191
+ "product-variants-section-edit-variant": "Edit Variant",
192
+ "edit-variants-modal-cancel": "Cancel",
193
+ "edit-variants-modal-save-and-go-back": "Save and go back",
194
+ "edit-variants-modal-save-and-close": "Save and close",
195
+ "edit-variants-modal-edit-variant": "Edit Variant",
196
+ "edit-variants-modal-update-success": "Variants were successfully updated",
197
+ "edit-variants-modal-edit-variants": "Edit Variants",
198
+ "edit-variants-modal-product-variants": "Product variants",
199
+ "edit-variants-modal-variant": "Variant",
200
+ "edit-variants-modal-inventory": "Inventory",
201
+ "product-variants-section-edit-prices": "Edit Prices",
202
+ "product-variants-section-edit-variants": "Edit Variants",
203
+ "product-variants-section-edit-options": "Edit Options",
204
+ "product-variants-section-product-variants": "Product variants",
205
+ "product-variants-section-error": "Error",
206
+ "product-variants-section-failed-to-update-product-options": "Failed to update product options",
207
+ "product-variants-section-success": "Success",
208
+ "product-variants-section-successfully-updated-product-options": "Successfully updated product options",
209
+ "product-variants-section-product-options": "Product options",
210
+ "product-variants-section-option-title": "Option title",
211
+ "product-variants-section-option-title-is-required": "Option title is required",
212
+ "product-variants-section-add-an-option": "Add an option",
213
+ "product-variants-section-inventory": "Inventory",
214
+ "product-variants-section-title": "Title",
215
+ "product-variants-section-sku": "SKU",
216
+ "product-variants-section-ean": "EAN",
217
+ "product-variants-section-manage-inventory": "Manage inventory",
218
+ "product-variants-section-duplicate-variant": "Duplicate Variant",
219
+ "product-variants-section-delete-variant-label": "Delete Variant",
220
+ "product-variants-section-yes-delete": "Yes, delete",
221
+ "product-variants-section-delete-variant-heading": "Delete variant",
222
+ "product-variants-section-confirm-delete": "Are you sure you want to delete this variant? ",
223
+ "product-variants-section-note-deleting-the-variant-will-also-remove-inventory-items-and-levels": " Note: Deleting the variant will also remove inventory items and levels",
224
+ "reset-token-card-error": "Error",
225
+ "reset-token-card-reset-your-password": "Reset your password",
226
+ "reset-token-card-password-reset-description": "Enter your email address below, and we'll<1></1>send you instructions on how to reset<3></3>your password.",
227
+ "reset-token-card-email": "Email",
228
+ "reset-token-card-this-is-not-a-valid-email": "This is not a valid email",
229
+ "reset-token-card-send-reset-instructions": "Send reset instructions",
230
+ "reset-token-card-successfully-sent-you-an-email": "Successfully sent you an email",
231
+ "reset-token-card-go-back-to-sign-in": "Go back to sign in",
232
+ "rma-return-product-table-product-details": "Product Details",
233
+ "rma-return-product-table-quantity": "Quantity",
234
+ "rma-select-product-table-product-details": "Product Details",
235
+ "rma-select-product-table-quantity": "Quantity",
236
+ "rma-select-product-table-refundable": "Refundable",
237
+ "rma-select-product-table-images-witch-count_one": "{{count}}",
238
+ "rma-select-product-table-images-witch-count_other": "{{count}}",
239
+ "rma-select-product-table-select-reason": "Select Reason",
240
+ "sidebar-store": "Store",
241
+ "sidebar-orders": "Orders",
242
+ "sidebar-products": "Products",
243
+ "sidebar-categories": "Categories",
244
+ "sidebar-customers": "Customers",
245
+ "sidebar-inventory": "Inventory",
246
+ "sidebar-discounts": "Discounts",
247
+ "sidebar-gift-cards": "Gift Cards",
248
+ "sidebar-pricing": "Pricing",
249
+ "sidebar-settings": "Settings",
250
+ "table-container-soothed-offset_one": "{{soothedOffset}} - {{pageSize}} of {{count}} {{title}}",
251
+ "table-container-soothed-offset_other": "{{soothedOffset}} - {{pageSize}} of {{count}} {{title}}",
252
+ "table-container-current-page": "{{currentPage}} of {{soothedPageCount}}",
253
+ "timeline-request-return": "Request Return",
254
+ "timeline-register-exchange": "Register Exchange",
255
+ "timeline-register-claim": "Register Claim",
256
+ "timeline-success": "Success",
257
+ "timeline-added-note": "Added note",
258
+ "timeline-error": "Error",
259
+ "timeline-timeline": "Timeline",
260
+ "upload-modal-new": "new",
261
+ "upload-modal-updates": "updates",
262
+ "upload-modal-drop-your-file-here-or": "Drop your file here, or",
263
+ "upload-modal-click-to-browse": "click to browse.",
264
+ "upload-modal-only-csv-files-are-supported": "Only .csv files are supported.",
265
+ "upload-modal-import-file-title": "Import {{fileTitle}}",
266
+ "upload-modal-cancel": "Cancel",
267
+ "upload-modal-import-list": "Import List",
268
+ "add-products-modal-add-products": "Add Products",
269
+ "add-products-modal-search-by-name-or-description": "Search by name or description...",
270
+ "add-products-modal-cancel": "Cancel",
271
+ "add-products-modal-save": "Save",
272
+ "add-products-modal-product-details": "Product Details",
273
+ "add-products-modal-status": "Status",
274
+ "add-products-modal-variants": "Variants",
275
+ "templates-general": "General",
276
+ "templates-first-name": "First Name",
277
+ "templates-last-name": "Last Name",
278
+ "templates-company": "Company",
279
+ "templates-phone": "Phone",
280
+ "templates-billing-address": "Billing Address",
281
+ "templates-shipping-address": "Shipping Address",
282
+ "templates-address": "Address",
283
+ "templates-address-1": "Address 1",
284
+ "templates-address-2": "Address 2",
285
+ "templates-postal-code": "Postal code",
286
+ "templates-city": "City",
287
+ "templates-province": "Province",
288
+ "templates-country": "Country",
289
+ "templates-metadata": "Metadata",
290
+ "collection-modal-success": "Success",
291
+ "collection-modal-successfully-updated-collection": "Successfully updated collection",
292
+ "collection-modal-error": "Error",
293
+ "collection-modal-successfully-created-collection": "Successfully created collection",
294
+ "collection-modal-edit-collection": "Edit Collection",
295
+ "collection-modal-add-collection": "Add Collection",
296
+ "collection-modal-description": "To create a collection, all you need is a title and a handle.",
297
+ "collection-modal-details": "Details",
298
+ "collection-modal-title-label": "Title",
299
+ "collection-modal-title-placeholder": "Sunglasses",
300
+ "collection-modal-handle-label": "Handle",
301
+ "collection-modal-handle-placeholder": "sunglasses",
302
+ "collection-modal-slug-description": "URL Slug for the collection. Will be auto generated if left blank.",
303
+ "collection-modal-metadata": "Metadata",
304
+ "collection-modal-cancel": "Cancel",
305
+ "collection-modal-save-collection": "Save collection",
306
+ "collection-modal-publish-collection": "Publish collection",
307
+ "collection-product-table-add-products": "Add Products",
308
+ "collection-product-table-products": "Products",
309
+ "collection-product-table-search-products": "Search Products",
310
+ "collection-product-table-cancel": "Cancel",
311
+ "collection-product-table-save": "Save",
312
+ "collection-product-table-sort-by": "Sort by",
313
+ "collection-product-table-all": "All",
314
+ "collection-product-table-newest": "Newest",
315
+ "collection-product-table-oldest": "Oldest",
316
+ "collection-product-table-title": "Title",
317
+ "collection-product-table-decide-status-published": "Published",
318
+ "collection-product-table-draft": "Draft",
319
+ "collection-product-table-proposed": "Proposed",
320
+ "collection-product-table-rejected": "Rejected",
321
+ "collection-product-table-remove-product-from-collection": "Remove product from collection",
322
+ "collection-product-table-product-removed-from-collection": "Product removed from collection",
323
+ "collections-table-delete-collection": "Delete Collection",
324
+ "collections-table-confirm-delete": "Are you sure you want to delete this collection?",
325
+ "collections-table-edit": "Edit",
326
+ "collections-table-delete": "Delete",
327
+ "collections-table-title": "Title",
328
+ "collections-table-handle": "Handle",
329
+ "collections-table-created-at": "Created At",
330
+ "collections-table-updated-at": "Updated At",
331
+ "collections-table-products": "Products",
332
+ "customer-group-table-details": "Details",
333
+ "customer-group-table-delete": "Delete",
334
+ "customer-group-table-success": "Success",
335
+ "customer-group-table-group-deleted": "Group deleted",
336
+ "customer-group-table-error": "Error",
337
+ "customer-group-table-failed-to-delete-the-group": "Failed to delete the group",
338
+ "customer-group-table-customer-groups": "Customer groups",
339
+ "customer-group-table-delete-from-the-group": "Delete from the group",
340
+ "customer-group-table-customer-groups-title": "Customer Groups",
341
+ "customer-group-table-groups": "Groups",
342
+ "customer-group-table-all": "All",
343
+ "customer-group-table-edit-customers": "Edit Customers",
344
+ "customer-group-table-customers": "Customers",
345
+ "customer-group-table-cancel": "Cancel",
346
+ "customer-group-table-save": "Save",
347
+ "customer-orders-table-orders": "Orders",
348
+ "customer-orders-table-transfer-order": "Transfer order",
349
+ "customer-orders-table-paid": "Paid",
350
+ "customer-orders-table-awaiting": "Awaiting",
351
+ "customer-orders-table-requires-action": "Requires action",
352
+ "customer-orders-table-n-a": "N/A",
353
+ "customer-orders-table-fulfilled": "Fulfilled",
354
+ "customer-orders-table-shipped": "Shipped",
355
+ "customer-orders-table-not-fulfilled": "Not fulfilled",
356
+ "customer-orders-table-partially-fulfilled": "Partially fulfilled",
357
+ "customer-orders-table-partially-shipped": "Partially shipped",
358
+ "customer-orders-table-order": "Order",
359
+ "customer-orders-table-remainder-more": "+ {{remainder}} more",
360
+ "customer-orders-table-date": "Date",
361
+ "customer-orders-table-fulfillment": "Fulfillment",
362
+ "customer-orders-table-status": "Status",
363
+ "customer-orders-table-total": "Total",
364
+ "customer-table-customers": "Customers",
365
+ "customer-table-edit": "Edit",
366
+ "customer-table-details": "Details",
367
+ "customer-table-date-added": "Date added",
368
+ "customer-table-name": "Name",
369
+ "customer-table-email": "Email",
370
+ "customer-table-orders": "Orders",
371
+ "discount-filter-dropdown-filters": "Filters",
372
+ "discount-table-discounts": "Discounts",
373
+ "discount-table-search-by-code-or-description": "Search by code or description...",
374
+ "discount-table-success": "Success",
375
+ "discount-table-successfully-copied-discount": "Successfully copied discount",
376
+ "discount-table-error": "Error",
377
+ "discount-table-scheduled": "Scheduled",
378
+ "discount-table-expired": "Expired",
379
+ "discount-table-active": "Active",
380
+ "discount-table-disabled": "Disabled",
381
+ "discount-table-free-shipping": "Free Shipping",
382
+ "discount-table-code": "Code",
383
+ "discount-table-description": "Description",
384
+ "discount-table-amount": "Amount",
385
+ "discount-table-status": "Status",
386
+ "discount-table-redemptions": "Redemptions",
387
+ "discount-table-delete-discount": "Delete Discount",
388
+ "discount-table-confirm-delete": "Are you sure you want to delete this Discount?",
389
+ "discount-table-publish": "Publish",
390
+ "discount-table-unpublish": "Unpublish",
391
+ "discount-table-successfully-published-discount": "Successfully published discount",
392
+ "discount-table-successfully-unpublished-discount": "Successfully unpublished discount",
393
+ "discount-table-duplicate": "Duplicate",
394
+ "discount-table-delete": "Delete",
395
+ "draft-order-table-draft-orders": "Draft Orders",
396
+ "draft-order-table-completed": "Completed",
397
+ "draft-order-table-open": "Open",
398
+ "draft-order-table-draft": "Draft",
399
+ "draft-order-table-order": "Order",
400
+ "draft-order-table-date-added": "Date added",
401
+ "draft-order-table-customer": "Customer",
402
+ "draft-order-table-status": "Status",
403
+ "gift-card-filter-dropdown-is-in-the-last": "is in the last",
404
+ "gift-card-filter-dropdown-is-older-than": "is older than",
405
+ "gift-card-filter-dropdown-is-after": "is after",
406
+ "gift-card-filter-dropdown-is-before": "is before",
407
+ "gift-card-filter-dropdown-is-equal-to": "is equal to",
408
+ "gift-card-filter-dropdown-filters": "Filters",
409
+ "gift-card-filter-dropdown-status": "Status",
410
+ "gift-card-filter-dropdown-payment-status": "Payment Status",
411
+ "gift-card-filter-dropdown-fulfillment-status": "Fulfillment Status",
412
+ "gift-card-filter-dropdown-date": "Date",
413
+ "gift-card-table-gift-cards": "Gift cards",
414
+ "gift-card-table-code": "Code",
415
+ "gift-card-table-order": "Order",
416
+ "gift-card-table-original-amount": "Original Amount",
417
+ "gift-card-table-balance": "Balance",
418
+ "gift-card-table-region-has-been-deleted": "Region has been deleted",
419
+ "gift-card-table-none": "None",
420
+ "gift-card-table-created": "Created",
421
+ "image-table-file-name": "File name",
422
+ "image-table-thumbnail": "Thumbnail",
423
+ "image-table-select-thumbnail-image-for-product": "Select which image you want to use as the thumbnail for this product",
424
+ "inventory-table-inventory-items": "Inventory Items",
425
+ "inventory-table-actions-adjust-availability": "Adjust Availability",
426
+ "inventory-table-view-product": "View Product",
427
+ "inventory-table-success": "Success",
428
+ "inventory-table-inventory-item-updated-successfully": "Inventory item updated successfully",
429
+ "inventory-table-adjust-availability": "Adjust availability",
430
+ "inventory-table-cancel": "Cancel",
431
+ "inventory-table-save-and-close": "Save and close",
432
+ "inventory-table-item": "Item",
433
+ "inventory-table-variant": "Variant",
434
+ "inventory-table-sku": "SKU",
435
+ "inventory-table-reserved": "Reserved",
436
+ "inventory-table-in-stock": "In stock",
437
+ "order-filter-dropdown-filters": "Filters",
438
+ "order-filter-dropdown-status": "Status",
439
+ "order-filter-dropdown-payment-status": "Payment Status",
440
+ "order-filter-dropdown-fulfillment-status": "Fulfillment Status",
441
+ "order-filter-dropdown-regions": "Regions",
442
+ "order-filter-dropdown-sales-channel": "Sales Channel",
443
+ "order-filter-dropdown-date": "Date",
444
+ "order-table-paid": "Paid",
445
+ "order-table-awaiting": "Awaiting",
446
+ "order-table-requires-action": "Requires action",
447
+ "order-table-canceled": "Canceled",
448
+ "order-table-n-a": "N/A",
449
+ "order-table-order": "Order",
450
+ "order-table-date-added": "Date added",
451
+ "order-table-customer": "Customer",
452
+ "order-table-fulfillment": "Fulfillment",
453
+ "order-table-payment-status": "Payment status",
454
+ "order-table-sales-channel": "Sales Channel",
455
+ "order-table-total": "Total",
456
+ "order-table-filters-complete": "Complete",
457
+ "order-table-filters-incomplete": "Incomplete",
458
+ "price-list-table-filters": "Filters",
459
+ "price-list-table-status": "Status",
460
+ "price-list-table-type": "Type",
461
+ "price-list-table-price-lists": "Price Lists",
462
+ "price-list-table-success": "Success",
463
+ "price-list-table-successfully-copied-price-list": "Successfully copied price list",
464
+ "price-list-table-error": "Error",
465
+ "price-list-table-delete-price-list": "Delete Price List",
466
+ "price-list-table-confirm-delete": "Are you sure you want to delete this price list?",
467
+ "price-list-table-successfully-deleted-the-price-list": "Successfully deleted the price list",
468
+ "price-list-table-successfully-unpublished-price-list": "Successfully unpublished price list",
469
+ "price-list-table-successfully-published-price-list": "Successfully published price list",
470
+ "price-list-table-unpublish": "Unpublish",
471
+ "price-list-table-publish": "Publish",
472
+ "price-list-table-delete": "Delete",
473
+ "price-list-table-name": "Name",
474
+ "price-list-table-description": "Description",
475
+ "price-list-table-groups": "Groups",
476
+ "price-list-table-other-more": "+ {{other}} more",
477
+ "price-overrides-apply-overrides-on-selected-variants": "Apply overrides on selected variants",
478
+ "price-overrides-apply-on-all-variants": "Apply on all variants",
479
+ "price-overrides-prices": "Prices",
480
+ "price-overrides-cancel": "Cancel",
481
+ "price-overrides-save-and-close": "Save and close",
482
+ "price-overrides-show-regions": "Show regions",
483
+ "product-table-products": "Products",
484
+ "product-table-copy-success": "Success",
485
+ "product-table-copy-created-a-new-product": "Created a new product",
486
+ "product-table-copy-error": "Error",
487
+ "product-table-delete-product": "Delete Product",
488
+ "product-table-confirm-delete": "Are you sure you want to delete this product?",
489
+ "product-table-edit": "Edit",
490
+ "product-table-unpublish": "Unpublish",
491
+ "product-table-publish": "Publish",
492
+ "product-table-draft": "draft",
493
+ "product-table-published": "published",
494
+ "product-table-success": "Success",
495
+ "product-table-successfully-unpublished-product": "Successfully unpublished product",
496
+ "product-table-successfully-published-product": "Successfully published product",
497
+ "product-table-error": "Error",
498
+ "product-table-duplicate": "Duplicate",
499
+ "product-table-delete": "Delete",
500
+ "product-table-proposed": "Proposed",
501
+ "product-table-published-title": "Published",
502
+ "product-table-rejected": "Rejected",
503
+ "product-table-draft-title": "Draft",
504
+ "product-table-name": "Name",
505
+ "product-table-collection": "Collection",
506
+ "product-table-status": "Status",
507
+ "product-table-availability": "Availability",
508
+ "product-table-inventory": "Inventory",
509
+ "product-table-inventory-in-stock-count_one": " in stock for {{count}} variant(s)",
510
+ "product-table-inventory-in-stock-count_other": " in stock for {{count}} variant(s)",
511
+ "reservation-form-location": "Location",
512
+ "reservation-form-choose-where-you-wish-to-reserve-from": "Choose where you wish to reserve from.",
513
+ "reservation-form-item-to-reserve": "Item to reserve",
514
+ "reservation-form-select-the-item-that-you-wish-to-reserve": "Select the item that you wish to reserve.",
515
+ "reservation-form-item": "Item",
516
+ "reservation-form-in-stock": "In stock",
517
+ "reservation-form-available": "Available",
518
+ "reservation-form-reserve": "Reserve",
519
+ "reservation-form-remove-item": "Remove item",
520
+ "reservation-form-description": "Description",
521
+ "reservation-form-what-type-of-reservation-is-this": "What type of reservation is this?",
522
+ "reservations-table-reservations": "Reservations",
523
+ "reservations-table-edit": "Edit",
524
+ "reservations-table-delete": "Delete",
525
+ "reservations-table-confirm-delete": "Are you sure you want to remove this reservation?",
526
+ "reservations-table-remove-reservation": "Remove reservation",
527
+ "reservations-table-reservation-has-been-removed": "Reservation has been removed",
528
+ "new-success": "Success",
529
+ "new-successfully-created-reservation": "Successfully created reservation",
530
+ "new-error": "Error",
531
+ "new-cancel": "Cancel",
532
+ "new-save-reservation": "Save reservation",
533
+ "new-reserve-item": "Reserve Item",
534
+ "new-metadata": "Metadata",
535
+ "reservations-table-order-id": "Order ID",
536
+ "reservations-table-description": "Description",
537
+ "reservations-table-created": "Created",
538
+ "reservations-table-quantity": "Quantity",
539
+ "search-modal-start-typing-to-search": "Start typing to search...",
540
+ "search-modal-clear-search": "Clear search",
541
+ "search-modal-or": "or",
542
+ "search-modal-to-navigate": "to navigate",
543
+ "search-modal-to-select-and": "to select, and",
544
+ "search-modal-to-search-anytime": "to search anytime",
545
+ "templates-settings": "Settings",
546
+ "templates-manage-the-settings-for-your-medusa-store": "Manage the settings for your Medusa store",
547
+ "transfer-orders-modal-info": "Info",
548
+ "transfer-orders-modal-customer-is-already-the-owner-of-the-order": "Customer is already the owner of the order",
549
+ "transfer-orders-modal-success": "Success",
550
+ "transfer-orders-modal-successfully-transferred-order-to-different-customer": "Successfully transferred order to different customer",
551
+ "transfer-orders-modal-error": "Error",
552
+ "transfer-orders-modal-could-not-transfer-order-to-different-customer": "Could not transfer order to different customer",
553
+ "transfer-orders-modal-transfer-order": "Transfer order",
554
+ "transfer-orders-modal-order": "Order",
555
+ "transfer-orders-modal-current-owner": "Current Owner",
556
+ "transfer-orders-modal-the-customer-currently-related-to-this-order": "The customer currently related to this order",
557
+ "transfer-orders-modal-new-owner": "New Owner",
558
+ "transfer-orders-modal-the-customer-to-transfer-this-order-to": "The customer to transfer this order to",
559
+ "transfer-orders-modal-cancel": "Cancel",
560
+ "transfer-orders-modal-confirm": "Confirm",
561
+ "templates-edit-user": "Edit User",
562
+ "templates-remove-user": "Remove User",
563
+ "templates-resend-invitation": "Resend Invitation",
564
+ "templates-success": "Success",
565
+ "templates-invitiation-link-has-been-resent": "Invitiation link has been resent",
566
+ "templates-copy-invite-link": "Copy invite link",
567
+ "templates-invite-link-copied-to-clipboard": "Invite link copied to clipboard",
568
+ "templates-remove-invitation": "Remove Invitation",
569
+ "templates-expired": "Expired",
570
+ "templates-pending": "Pending",
571
+ "templates-all": "All",
572
+ "templates-member": "Member",
573
+ "templates-admin": "Admin",
574
+ "templates-no-team-permissions": "No team permissions",
575
+ "templates-status": "Status",
576
+ "templates-active": "Active",
577
+ "templates-name": "Name",
578
+ "templates-email": "Email",
579
+ "templates-team-permissions": "Team permissions",
580
+ "templates-confirm-remove": "Are you sure you want to remove this user?",
581
+ "templates-remove-user-heading": "Remove user",
582
+ "templates-user-has-been-removed": "User has been removed",
583
+ "templates-confirm-remove-invite": "Are you sure you want to remove this invite?",
584
+ "templates-remove-invite": "Remove invite",
585
+ "templates-invitiation-has-been-removed": "Invitiation has been removed",
586
+ "multiselect-choose-categories": "Choose categories",
587
+ "domain-categories-multiselect-selected-with-counts_one": "{{count}}",
588
+ "domain-categories-multiselect-selected-with-counts_other": "{{count}}",
589
+ "details-success": "Success",
590
+ "details-updated-products-in-collection": "Updated products in collection",
591
+ "details-error": "Error",
592
+ "details-back-to-collections": "Back to Collections",
593
+ "details-edit-collection": "Edit Collection",
594
+ "details-delete": "Delete",
595
+ "details-metadata": "Metadata",
596
+ "details-edit-products": "Edit Products",
597
+ "details-products-in-this-collection": "Products in this collection",
598
+ "details-raw-collection": "Raw collection",
599
+ "details-delete-collection": "Delete collection",
600
+ "details-successfully-deleted-collection": "Successfully deleted collection",
601
+ "details-yes-delete": "Yes, delete",
602
+ "details-successfully-updated-customer": "Successfully updated customer",
603
+ "details-customer-details": "Customer Details",
604
+ "details-general": "General",
605
+ "details-first-name": "First Name",
606
+ "details-lebron": "Lebron",
607
+ "details-last-name": "Last Name",
608
+ "details-james": "James",
609
+ "details-email": "Email",
610
+ "details-phone-number": "Phone number",
611
+ "details-cancel": "Cancel",
612
+ "details-save-and-close": "Save and close",
613
+ "details-edit": "Edit",
614
+ "details-back-to-customers": "Back to Customers",
615
+ "details-first-seen": "First seen",
616
+ "details-phone": "Phone",
617
+ "details-orders": "Orders",
618
+ "details-user": "User",
619
+ "details-orders_one": "Orders {{count}}",
620
+ "details-orders_other": "Orders {{count}}",
621
+ "details-an-overview-of-customer-orders": "An overview of Customer Orders",
622
+ "details-raw-customer": "Raw customer",
623
+ "groups-group-updated": "Group Updated",
624
+ "groups-group-created": "Group Created",
625
+ "groups-the-customer-group-has-been-updated": "The customer group has been updated",
626
+ "groups-the-customer-group-has-been-created": "The customer group has been created",
627
+ "groups-edit-customer-group": "Edit Customer Group",
628
+ "groups-create-a-new-customer-group": "Create a New Customer Group",
629
+ "groups-details": "Details",
630
+ "groups-metadata": "Metadata",
631
+ "groups-cancel": "Cancel",
632
+ "groups-edit-group": "Edit Group",
633
+ "groups-publish-group": "Publish Group",
634
+ "groups-no-customers-in-this-group-yet": "No customers in this group yet",
635
+ "groups-customers": "Customers",
636
+ "groups-edit": "Edit",
637
+ "groups-delete": "Delete",
638
+ "groups-yes-delete": "Yes, delete",
639
+ "groups-delete-the-group": "Delete the group",
640
+ "groups-group-deleted": "Group deleted",
641
+ "groups-confirm-delete-customer-group": "Are you sure you want to delete this customer group?",
642
+ "groups-back-to-customer-groups": "Back to customer groups",
643
+ "groups-new-group": "New group",
644
+ "add-condition-conditions-were-successfully-added": "Conditions were successfully added",
645
+ "add-condition-discount-conditions-updated": "Discount conditions updated",
646
+ "add-condition-use-conditions-must-be-used-within-a-conditions-provider": "useConditions must be used within a ConditionsProvider",
647
+ "collections-search": "Search...",
648
+ "collections-cancel": "Cancel",
649
+ "collections-save-and-go-back": "Save and go back",
650
+ "collections-save-and-close": "Save and close",
651
+ "customer-groups-search": "Search...",
652
+ "customer-groups-cancel": "Cancel",
653
+ "customer-groups-save-and-go-back": "Save and go back",
654
+ "customer-groups-save-and-close": "Save and close",
655
+ "product-types-search": "Search...",
656
+ "product-types-cancel": "Cancel",
657
+ "product-types-save-and-go-back": "Save and go back",
658
+ "product-types-save-and-close": "Save and close",
659
+ "products-search": "Search...",
660
+ "products-cancel": "Cancel",
661
+ "products-save-and-go-back": "Save and go back",
662
+ "products-save-and-close": "Save and close",
663
+ "tags-search": "Search...",
664
+ "tags-cancel": "Cancel",
665
+ "tags-save-and-go-back": "Save and go back",
666
+ "tags-save-and-close": "Save and close",
667
+ "edit-condition-add-conditions": "Add conditions",
668
+ "edit-condition-selected-with-count_one": "{{count}}",
669
+ "edit-condition-selected-with-count_other": "{{count}}",
670
+ "edit-condition-deselect": "Deselect",
671
+ "edit-condition-remove": "Remove",
672
+ "edit-condition-add": "Add",
673
+ "edit-condition-title": "Edit {{type}} in Discount Condition",
674
+ "edit-condition-close": "Close",
675
+ "edit-condition-success": "Success",
676
+ "edit-condition-the-resources-were-successfully-added": "The resources were successfully added",
677
+ "edit-condition-error": "Error",
678
+ "edit-condition-failed-to-add-resources": "Failed to add resources",
679
+ "edit-condition-the-resources-were-successfully-removed": "The resources were successfully removed",
680
+ "edit-condition-failed-to-remove-resources": "Failed to remove resources",
681
+ "edit-condition-use-edit-condition-context-must-be-used-within-an-edit-condition-provider": "useEditConditionContext must be used within an EditConditionProvider",
682
+ "conditions-conditions": "Conditions",
683
+ "conditions-add-condition-label": "Add condition",
684
+ "conditions-this-discount-has-no-conditions": "This discount has no conditions",
685
+ "conditions-success": "Success",
686
+ "conditions-condition-removed": "Condition removed",
687
+ "conditions-error": "Error",
688
+ "conditions-edit-condition": "Edit condition",
689
+ "conditions-delete-condition": "Delete condition",
690
+ "conditions-discount-is-applicable-to-specific-products": "Discount is applicable to specific products",
691
+ "conditions-discount-is-applicable-to-specific-collections": "Discount is applicable to specific collections",
692
+ "conditions-discount-is-applicable-to-specific-product-tags": "Discount is applicable to specific product tags",
693
+ "conditions-discount-is-applicable-to-specific-product-types": "Discount is applicable to specific product types",
694
+ "conditions-discount-is-applicable-to-specific-customer-groups": "Discount is applicable to specific customer groups",
695
+ "configurations-success": "Success",
696
+ "configurations-discount-updated-successfully": "Discount updated successfully",
697
+ "configurations-error": "Error",
698
+ "configurations-edit-configurations": "Edit configurations",
699
+ "configurations-cancel": "Cancel",
700
+ "configurations-save": "Save",
701
+ "configurations-configurations": "Configurations",
702
+ "configurations-start-date": "Start date",
703
+ "configurations-end-date": "End date",
704
+ "configurations-delete-configuration": "Delete configuration",
705
+ "configurations-discount-end-date-removed": "Discount end date removed",
706
+ "configurations-number-of-redemptions": "Number of redemptions",
707
+ "configurations-redemption-limit-removed": "Redemption limit removed",
708
+ "configurations-delete-setting": "Delete setting",
709
+ "configurations-discount-duration-removed": "Discount duration removed",
710
+ "general-success": "Success",
711
+ "general-discount-updated-successfully": "Discount updated successfully",
712
+ "general-error": "Error",
713
+ "general-edit-general-information": "Edit general information",
714
+ "general-details": "Details",
715
+ "general-metadata": "Metadata",
716
+ "general-cancel": "Cancel",
717
+ "general-save-and-close": "Save and close",
718
+ "general-delete-promotion": "Delete Promotion",
719
+ "general-confirm-delete-promotion": "Are you sure you want to delete this promotion?",
720
+ "general-promotion-deleted-successfully": "Promotion deleted successfully",
721
+ "general-discount-published-successfully": "Discount published successfully",
722
+ "general-discount-drafted-successfully": "Discount drafted successfully",
723
+ "general-delete-discount": "Delete discount",
724
+ "general-template-discount": "Template discount",
725
+ "general-published": "Published",
726
+ "general-draft": "Draft",
727
+ "general-discount-amount": "Discount Amount",
728
+ "general-valid-regions": "Valid Regions",
729
+ "general-total-redemptions": "Total Redemptions",
730
+ "general-free-shipping": "FREE SHIPPING",
731
+ "general-unknown-discount-type": "Unknown discount type",
732
+ "details-discount-deleted": "Discount deleted",
733
+ "details-confirm-delete-discount": "Are you sure you want to delete this discount?",
734
+ "details-delete-discount": "Delete discount",
735
+ "details-back-to-discounts": "Back to Discounts",
736
+ "details-raw-discount": "Raw discount",
737
+ "discounts-add-discount": "Add Discount",
738
+ "discount-form-add-conditions": "Add Conditions",
739
+ "discount-form-choose-a-condition-type": "Choose a condition type",
740
+ "discount-form-you-can-only-add-one-of-each-type-of-condition": "You can only add one of each type of condition",
741
+ "discount-form-you-cannot-add-any-more-conditions": "You cannot add any more conditions",
742
+ "discount-form-cancel": "Cancel",
743
+ "discount-form-save": "Save",
744
+ "add-condition-tables-cancel": "Cancel",
745
+ "add-condition-tables-save-and-add-more": "Save and add more",
746
+ "add-condition-tables-save-and-close": "Save and close",
747
+ "add-condition-tables-search-by-title": "Search by title...",
748
+ "add-condition-tables-search-groups": "Search groups...",
749
+ "add-condition-tables-search-products": "Search products...",
750
+ "add-condition-tables-search-by-tag": "Search by tag...",
751
+ "add-condition-tables-search-by-type": "Search by type...",
752
+ "details-condition-tables-search-by-title": "Search by title...",
753
+ "details-condition-tables-search-groups": "Search groups...",
754
+ "details-condition-tables-cancel": "Cancel",
755
+ "details-condition-tables-save-and-add-more": "Save and add more",
756
+ "details-condition-tables-save-and-close": "Save and close",
757
+ "details-condition-tables-search-products": "Search products...",
758
+ "details-condition-tables-search-by-tag": "Search by tag...",
759
+ "details-condition-tables-search-by-type": "Search by type...",
760
+ "edit-condition-tables-search-by-title": "Search by title...",
761
+ "edit-condition-tables-title": "Title",
762
+ "edit-condition-tables-search-groups": "Search groups...",
763
+ "edit-condition-tables-cancel": "Cancel",
764
+ "edit-condition-tables-delete-condition": "Delete condition",
765
+ "edit-condition-tables-save": "Save",
766
+ "edit-condition-tables-search-products": "Search products...",
767
+ "edit-condition-tables-search-by-tag": "Search by tag...",
768
+ "edit-condition-tables-search-by-type": "Search by type...",
769
+ "shared-title": "Title",
770
+ "shared-products": "Products",
771
+ "shared-applies-to-the-selected-items": "Applies to the selected items.",
772
+ "shared-applies-to-all-items-except-the-selected-items": "Applies to all items except the selected items.",
773
+ "shared-members": "Members",
774
+ "shared-status": "Status",
775
+ "shared-variants": "Variants",
776
+ "shared-tag": "Tag",
777
+ "shared-type": "Type",
778
+ "edit-conditions-modal-title": "Edit {{title}}",
779
+ "form-use-discount-form-must-be-a-child-of-discount-form-context": "useDiscountForm must be a child of DiscountFormContext",
780
+ "discount-form-error": "Error",
781
+ "discount-form-save-as-draft": "Save as draft",
782
+ "discount-form-publish-discount": "Publish discount",
783
+ "discount-form-create-new-discount": "Create new discount",
784
+ "discount-form-discount-type": "Discount type",
785
+ "discount-form-select-a-discount-type": "Select a discount type",
786
+ "discount-form-allocation": "Allocation",
787
+ "discount-form-general": "General",
788
+ "discount-form-configuration": "Configuration",
789
+ "discount-form-discount-code-application-disclaimer": "Discount code applies from when you hit the publish button and forever if left untouched.",
790
+ "discount-form-conditions": "Conditions",
791
+ "discount-form-discount-code-apply-to-all-products-if-left-untouched": "Discount code apply to all products if left untouched.",
792
+ "discount-form-add-conditions-to-your-discount": "Add conditions to your Discount",
793
+ "discount-form-metadata": "Metadata",
794
+ "discount-form-metadata-usage-description": "Metadata allows you to add additional information to your discount.",
795
+ "condition-item-remainder-more": "+{{remainder}} more",
796
+ "conditions-edit": "Edit",
797
+ "conditions-product": "Product",
798
+ "conditions-collection": "Collection",
799
+ "conditions-tag": "Tag",
800
+ "conditions-customer-group": "Customer group",
801
+ "conditions-type": "Type",
802
+ "conditions-add-condition": "Add Condition",
803
+ "sections-start-date": "Start date",
804
+ "sections-schedule-the-discount-to-activate-in-the-future": "Schedule the discount to activate in the future.",
805
+ "sections-select-discount-start-date": "If you want to schedule the discount to activate in the future, you can set a start date here, otherwise the discount will be active immediately.",
806
+ "sections-start-time": "Start time",
807
+ "sections-discount-has-an-expiry-date": "Discount has an expiry date?",
808
+ "sections-schedule-the-discount-to-deactivate-in-the-future": "Schedule the discount to deactivate in the future.",
809
+ "sections-select-discount-end-date": "If you want to schedule the discount to deactivate in the future, you can set an expiry date here.",
810
+ "sections-expiry-date": "Expiry date",
811
+ "sections-expiry-time": "Expiry time",
812
+ "sections-limit-the-number-of-redemptions": "Limit the number of redemptions?",
813
+ "sections-limit-applies-across-all-customers-not-per-customer": "Limit applies across all customers, not per customer.",
814
+ "sections-limit-discount-number-of-uses": "If you wish to limit the amount of times a customer can redeem this discount, you can set a limit here.",
815
+ "sections-number-of-redemptions": "Number of redemptions",
816
+ "sections-availability-duration": "Availability duration?",
817
+ "sections-set-the-duration-of-the-discount": "Set the duration of the discount.",
818
+ "sections-select-a-discount-type": "Select a discount type",
819
+ "sections-total-amount": "Total amount",
820
+ "sections-apply-to-the-total-amount": "Apply to the total amount",
821
+ "sections-item-specific": "Item specific",
822
+ "sections-apply-to-every-allowed-item": "Apply to every allowed item",
823
+ "sections-percentage": "Percentage",
824
+ "sections-fixed-amount": "Fixed amount",
825
+ "sections-discount-in-whole-numbers": "Discount in whole numbers",
826
+ "sections-you-can-only-select-one-valid-region-if-you-want-to-use-the-fixed-amount-type": "You can only select one valid region if you want to use the fixed amount type",
827
+ "sections-free-shipping": "Free shipping",
828
+ "sections-override-delivery-amount": "Override delivery amount",
829
+ "sections-at-least-one-region-is-required": "At least one region is required",
830
+ "sections-choose-valid-regions": "Choose valid regions",
831
+ "sections-code": "Code",
832
+ "sections-summersale-10": "SUMMERSALE10",
833
+ "sections-code-is-required": "Code is required",
834
+ "sections-amount-is-required": "Amount is required",
835
+ "sections-amount": "Amount",
836
+ "sections-customer-invoice-code": "The code your customers will enter during checkout. This will appear on your customer’s invoice.",
837
+ "sections-uppercase-letters-and-numbers-only": "Uppercase letters and numbers only.",
838
+ "sections-description": "Description",
839
+ "sections-summer-sale-2022": "Summer Sale 2022",
840
+ "sections-this-is-a-template-discount": "This is a template discount",
841
+ "sections-template-discounts-description": "Template discounts allow you to define a set of rules that can be used across a group of discounts. This is useful in campaigns that should generate unique codes for each user, but where the rules for all unique codes should be the same.",
842
+ "discount-form-product": "Product",
843
+ "discount-form-only-for-specific-products": "Only for specific products",
844
+ "discount-form-choose-products": "Choose products",
845
+ "discount-form-customer-group": "Customer group",
846
+ "discount-form-only-for-specific-customer-groups": "Only for specific customer groups",
847
+ "discount-form-choose-groups": "Choose groups",
848
+ "discount-form-tag": "Tag",
849
+ "discount-form-only-for-specific-tags": "Only for specific tags",
850
+ "discount-form-collection": "Collection",
851
+ "discount-form-only-for-specific-product-collections": "Only for specific product collections",
852
+ "discount-form-choose-collections": "Choose collections",
853
+ "discount-form-type": "Type",
854
+ "discount-form-only-for-specific-product-types": "Only for specific product types",
855
+ "discount-form-choose-types": "Choose types",
856
+ "utils-products": "products",
857
+ "utils-groups": "groups",
858
+ "utils-tags": "tags",
859
+ "utils-collections": "collections",
860
+ "utils-types": "types",
861
+ "gift-cards-created-gift-card": "Created gift card",
862
+ "gift-cards-custom-gift-card-was-created-successfully": "Custom gift card was created successfully",
863
+ "gift-cards-error": "Error",
864
+ "gift-cards-custom-gift-card": "Custom Gift Card",
865
+ "gift-cards-details": "Details",
866
+ "gift-cards-receiver": "Receiver",
867
+ "gift-cards-cancel": "Cancel",
868
+ "gift-cards-create-and-send": "Create and send",
869
+ "details-updated-gift-card": "Updated Gift card",
870
+ "details-gift-card-was-successfully-updated": "Gift card was successfully updated",
871
+ "details-failed-to-update-gift-card": "Failed to update Gift card",
872
+ "details-edit-gift-card": "Edit Gift Card",
873
+ "details-details": "Details",
874
+ "details-edit-details": "Edit details",
875
+ "details-update-balance-label": "Update balance",
876
+ "details-updated-status": "Updated status",
877
+ "details-successfully-updated-the-status-of-the-gift-card": "Successfully updated the status of the Gift Card",
878
+ "details-back-to-gift-cards": "Back to Gift Cards",
879
+ "details-original-amount": "Original amount",
880
+ "details-balance": "Balance",
881
+ "details-region": "Region",
882
+ "details-expires-on": "Expires on",
883
+ "details-created": "Created",
884
+ "details-raw-gift-card": "Raw gift card",
885
+ "details-balance-updated": "Balance updated",
886
+ "details-gift-card-balance-was-updated": "Gift card balance was updated",
887
+ "details-failed-to-update-balance": "Failed to update balance",
888
+ "details-update-balance": "Update Balance",
889
+ "manage-back-to-gift-cards": "Back to Gift Cards",
890
+ "gift-cards-please-enter-a-name-for-the-gift-card": "Please enter a name for the Gift Card",
891
+ "gift-cards-please-add-at-least-one-denomination": "Please add at least one denomination",
892
+ "gift-cards-denominations": "Denominations",
893
+ "gift-cards-success": "Success",
894
+ "gift-cards-successfully-created-gift-card": "Successfully created Gift Card",
895
+ "gift-cards-create-gift-card": "Create Gift Card",
896
+ "gift-cards-gift-card-details": "Gift Card Details",
897
+ "gift-cards-name": "Name",
898
+ "gift-cards-the-best-gift-card": "The best Gift Card",
899
+ "gift-cards-description": "Description",
900
+ "gift-cards-the-best-gift-card-of-all-time": "The best Gift Card of all time",
901
+ "gift-cards-thumbnail": "Thumbnail",
902
+ "gift-cards-delete": "Delete",
903
+ "gift-cards-size-recommended": "1200 x 1600 (3:4) recommended, up to 10MB each",
904
+ "gift-cards-amount": "Amount",
905
+ "gift-cards-add-denomination": "Add Denomination",
906
+ "gift-cards-create-publish": "Create & Publish",
907
+ "gift-cards-successfully-updated-gift-card": "Successfully updated Gift Card",
908
+ "gift-cards-gift-cards": "Gift Cards",
909
+ "gift-cards-manage": "Manage the Gift Cards of your Medusa store",
910
+ "gift-cards-are-you-ready-to-sell-your-first-gift-card": "Are you ready to sell your first Gift Card?",
911
+ "gift-cards-no-gift-card-has-been-added-yet": "No Gift Card has been added yet.",
912
+ "gift-cards-history": "History",
913
+ "gift-cards-see-the-history-of-purchased-gift-cards": "See the history of purchased Gift Cards",
914
+ "gift-cards-successfully-deleted-gift-card": "Successfully deleted Gift Card",
915
+ "gift-cards-yes-delete": "Yes, delete",
916
+ "gift-cards-delete-gift-card": "Delete Gift Card",
917
+ "inventory-filters": "Filters",
918
+ "address-form-address": "Address",
919
+ "address-form-company": "Company",
920
+ "address-form-address-1": "Address 1",
921
+ "address-form-this-field-is-required": "This field is required",
922
+ "address-form-address-2": "Address 2",
923
+ "address-form-postal-code": "Postal code",
924
+ "address-form-city": "City",
925
+ "address-form-country": "Country",
926
+ "edit-sales-channels-edit-channels": "Edit channels",
927
+ "edit-sales-channels-add-channels": "Add channels",
928
+ "general-form-location-name": "Location name",
929
+ "general-form-flagship-store-warehouse": "Flagship store, warehouse",
930
+ "general-form-name-is-required": "Name is required",
931
+ "location-card-delete-location": "Delete Location",
932
+ "location-card-confirm-delete": "Are you sure you want to delete this location. This will also delete all inventory levels and reservations associated with this location.",
933
+ "location-card-success": "Success",
934
+ "location-card-location-deleted-successfully": "Location deleted successfully",
935
+ "location-card-error": "Error",
936
+ "location-card-edit-details": "Edit details",
937
+ "location-card-delete": "Delete",
938
+ "location-card-connected-sales-channels": "Connected sales channels",
939
+ "sales-channels-form-add-sales-channels": "Add sales channels",
940
+ "sales-channels-form-edit-channels": "Edit channels",
941
+ "sales-channels-section-not-connected-to-any-sales-channels-yet": "Not connected to any sales channels yet",
942
+ "edit-success": "Success",
943
+ "edit-location-edited-successfully": "Location edited successfully",
944
+ "edit-error": "Error",
945
+ "edit-edit-location-details": "Edit Location Details",
946
+ "edit-metadata": "Metadata",
947
+ "edit-cancel": "Cancel",
948
+ "edit-save-and-close": "Save and close",
949
+ "new-location-added-successfully": "Location added successfully",
950
+ "new-location-created": "Location was created successfully, but there was an error associating sales channels",
951
+ "new-cancel-location-changes": "Are you sure you want to cancel with unsaved changes",
952
+ "new-yes-cancel": "Yes, cancel",
953
+ "new-no-continue-creating": "No, continue creating",
954
+ "new-add-location": "Add location",
955
+ "new-add-new-location": "Add new location",
956
+ "new-general-information": "General Information",
957
+ "new-location-details": "Specify the details about this location",
958
+ "new-select-location-channel": "Specify which Sales Channels this location's items can be purchased through.",
959
+ "oauth-complete-installation": "Complete Installation",
960
+ "claim-type-form-refund": "Refund",
961
+ "claim-type-form-replace": "Replace",
962
+ "items-to-receive-form-items-to-receive": "Items to receive",
963
+ "items-to-receive-form-product": "Product",
964
+ "items-to-receive-form-quantity": "Quantity",
965
+ "items-to-receive-form-refundable": "Refundable",
966
+ "add-return-reason-reason-for-return": "Reason for Return",
967
+ "add-return-reason-reason": "Reason",
968
+ "add-return-reason-choose-a-return-reason": "Choose a return reason",
969
+ "add-return-reason-note": "Note",
970
+ "add-return-reason-product-was-damaged-during-shipping": "Product was damaged during shipping",
971
+ "add-return-reason-cancel": "Cancel",
972
+ "add-return-reason-save-and-go-back": "Save and go back",
973
+ "add-return-reason-select-reason-title": "Select Reason",
974
+ "add-return-reason-edit-reason": "Edit reason",
975
+ "add-return-reason-select-reason": "Select reason",
976
+ "items-to-return-form-items-to-claim": "Items to claim",
977
+ "items-to-return-form-items-to-return": "Items to return",
978
+ "items-to-return-form-product": "Product",
979
+ "items-to-return-form-quantity": "Quantity",
980
+ "items-to-return-form-refundable": "Refundable",
981
+ "add-additional-items-screen-go-back": "Go back",
982
+ "add-additional-items-screen-add-products": "Add products",
983
+ "add-additional-items-screen-add-product-variants": "Add Product Variants",
984
+ "add-additional-items-screen-search-products": "Search products",
985
+ "add-additional-items-screen-variant-price-missing": "This variant does not have a price for the region/currency of this order, and cannot be selected.",
986
+ "add-additional-items-screen-stock": "Stock",
987
+ "add-additional-items-screen-price": "Price",
988
+ "add-additional-items-screen-price-overridden-in-price-list-applicable-to-this-order": "The price has been overridden in a price list, that is applicable to this order.",
989
+ "items-to-send-form-items-to-send": "Items to send",
990
+ "items-to-send-form-add-products": "Add products",
991
+ "items-to-send-form-product": "Product",
992
+ "items-to-send-form-quantity": "Quantity",
993
+ "items-to-send-form-price": "Price",
994
+ "items-to-send-form-price-overridden-in-price-list-applicable-to-this-order": "The price has been overridden in a price list, that is applicable to this order.",
995
+ "refund-amount-form-cancel-editing-refund-amount": "Cancel editing refund amount",
996
+ "refund-amount-form-edit-refund-amount": "Edit refund amount",
997
+ "refund-amount-form-refund-amount-cannot-be-negative": "Refund amount cannot be negative",
998
+ "refund-amount-form-the-refund-amount-must-be-at-least-0": "The refund amount must be at least 0",
999
+ "reservation-indicator-awaiting-reservation-count": "{{awaitingReservation}} items not reserved",
1000
+ "reservation-indicator-this-item-has-been-fulfilled": "This item has been fulfilled.",
1001
+ "edit-reservation-button-quantity-item-location-name": "{{quantity}} item: ${{locationName}}",
1002
+ "reservation-indicator-edit-reservation": "Edit reservation",
1003
+ "rma-summaries-claimed-items": "Claimed items",
1004
+ "rma-summaries-replacement-items": "Replacement items",
1005
+ "rma-summaries-customer-refund-description": "The customer will receive a full refund for the claimed items, as the cost of replacement items and shipping will not be deducted. Alternatively, you can choose to set a custom refund amount when you receive the returned items or create an exchange instead.",
1006
+ "rma-summaries-refund-amount": "Refund amount",
1007
+ "rma-summaries-the-customer-will-be-refunded-once-the-returned-items-are-received": "The customer will be refunded once the returned items are received",
1008
+ "rma-summaries-the-customer-will-be-refunded-immediately": "The customer will be refunded immediately",
1009
+ "rma-summaries-receiving": "Receiving",
1010
+ "rma-summaries-free": "Free",
1011
+ "send-notification-form-return": "return",
1012
+ "send-notification-form-exchange": "exchange",
1013
+ "send-notification-form-claim": "claim",
1014
+ "send-notification-form-send-notifications": "Send notifications",
1015
+ "send-notification-form-if-unchecked-the-customer-will-not-receive-communication": "If unchecked the customer will not receive communication about this {{subject}}.",
1016
+ "shipping-address-form-shipping-address": "Shipping address",
1017
+ "shipping-address-form-ship-to-a-different-address": "Ship to a different address",
1018
+ "shipping-address-form-cancel": "Cancel",
1019
+ "shipping-address-form-save-and-go-back": "Save and go back",
1020
+ "shipping-address-form-shipping-information": "Shipping Information",
1021
+ "shipping-form-shipping-for-return-items": "Shipping for return items",
1022
+ "shipping-form-shipping-for-replacement-items": "Shipping for replacement items",
1023
+ "shipping-form-shipping-method-is-required": "Shipping method is required",
1024
+ "shipping-form-choose-shipping-method": "Choose shipping method",
1025
+ "shipping-form-shipping-method": "Shipping method",
1026
+ "shipping-form-add-custom-price": "Add custom price",
1027
+ "shipping-form-return-shipping-for-items-claimed-by-the-customer-is-complimentary": "Return shipping for items claimed by the customer is complimentary.",
1028
+ "shipping-form-shipping-for-replacement-items-is-complimentary": "Shipping for replacement items is complimentary.",
1029
+ "components-decrease-quantity": "Decrease quantity",
1030
+ "components-increase-quantity": "Increase quantity",
1031
+ "details-successfully-updated-address": "Successfully updated address",
1032
+ "details-billing-address": "Billing Address",
1033
+ "details-shipping-address": "Shipping Address",
1034
+ "details-contact": "Contact",
1035
+ "details-location": "Location",
1036
+ "claim-are-you-sure-you-want-to-close": "Are you sure you want to close?",
1037
+ "claim-you-have-unsaved-changes-are-you-sure-you-want-to-close": "You have unsaved changes, are you sure you want to close?",
1038
+ "claim-please-select-a-reason": "Please select a reason",
1039
+ "claim-a-shipping-method-for-replacement-items-is-required": "A shipping method for replacement items is required",
1040
+ "claim-successfully-created-claim": "Successfully created claim",
1041
+ "claim-created": "A claim for order #{{display_id}} was successfully created",
1042
+ "claim-error-creating-claim": "Error creating claim",
1043
+ "claim-create-claim": "Create Claim",
1044
+ "claim-location": "Location",
1045
+ "claim-choose-which-location-you-want-to-return-the-items-to": "Choose which location you want to return the items to.",
1046
+ "claim-select-location-to-return-to": "Select Location to Return to",
1047
+ "claim-cancel": "Cancel",
1048
+ "claim-submit-and-close": "Submit and close",
1049
+ "create-fulfillment-error": "Error",
1050
+ "create-fulfillment-please-select-a-location-to-fulfill-from": "Please select a location to fulfill from",
1051
+ "create-fulfillment-cant-allow-this-action": "Can't allow this action",
1052
+ "create-fulfillment-trying-to-fulfill-more-than-in-stock": "Trying to fulfill more than in stock",
1053
+ "create-fulfillment-successfully-fulfilled-order": "Successfully fulfilled order",
1054
+ "create-fulfillment-successfully-fulfilled-swap": "Successfully fulfilled swap",
1055
+ "create-fulfillment-successfully-fulfilled-claim": "Successfully fulfilled claim",
1056
+ "create-fulfillment-success": "Success",
1057
+ "create-fulfillment-cancel": "Cancel",
1058
+ "create-fulfillment-create-fulfillment": "Create fulfillment",
1059
+ "create-fulfillment-create-fulfillment-title": "Create Fulfillment",
1060
+ "create-fulfillment-locations": "Locations",
1061
+ "create-fulfillment-choose-where-you-wish-to-fulfill-from": "Choose where you wish to fulfill from.",
1062
+ "create-fulfillment-items-to-fulfill": "Items to fulfill",
1063
+ "create-fulfillment-select-the-number-of-items-that-you-wish-to-fulfill": "Select the number of items that you wish to fulfill.",
1064
+ "create-fulfillment-send-notifications": "Send notifications",
1065
+ "create-fulfillment-when-toggled-notification-emails-will-be-sent": "When toggled, notification emails will be sent.",
1066
+ "create-fulfillment-quantity-is-not-valid": "Quantity is not valid",
1067
+ "detail-cards-allocated": "Allocated",
1068
+ "detail-cards-not-fully-allocated": "Not fully allocated",
1069
+ "detail-cards-subtotal": "Subtotal",
1070
+ "detail-cards-shipping": "Shipping",
1071
+ "detail-cards-tax": "Tax",
1072
+ "detail-cards-total": "Total",
1073
+ "detail-cards-edit-order": "Edit Order",
1074
+ "detail-cards-allocate": "Allocate",
1075
+ "detail-cards-discount": "Discount:",
1076
+ "detail-cards-original-total": "Original Total",
1077
+ "details-successfully-updated-the-email-address": "Successfully updated the email address",
1078
+ "details-email-address": "Email Address",
1079
+ "details-save": "Save",
1080
+ "details-order-id-copied": "Order ID copied",
1081
+ "details-email-copied": "Email copied",
1082
+ "details-cancel-order-heading": "Cancel order",
1083
+ "details-are-you-sure-you-want-to-cancel-the-order": "Are you sure you want to cancel the order?",
1084
+ "order-details-display-id": "order #{{display_id}}",
1085
+ "details-successfully-canceled-order": "Successfully canceled order",
1086
+ "details-go-to-customer": "Go to Customer",
1087
+ "details-transfer-ownership": "Transfer ownership",
1088
+ "details-edit-shipping-address": "Edit Shipping Address",
1089
+ "details-edit-billing-address": "Edit Billing Address",
1090
+ "details-edit-email-address": "Edit Email Address",
1091
+ "details-back-to-orders": "Back to Orders",
1092
+ "details-cancel-order": "Cancel Order",
1093
+ "details-payment": "Payment",
1094
+ "details-refunded": "Refunded",
1095
+ "details-total-paid": "Total Paid",
1096
+ "details-fulfillment": "Fulfillment",
1097
+ "details-create-fulfillment": "Create Fulfillment",
1098
+ "details-shipping-method": "Shipping Method",
1099
+ "details-customer": "Customer",
1100
+ "details-shipping": "Shipping",
1101
+ "details-billing": "Billing",
1102
+ "details-raw-order": "Raw order",
1103
+ "mark-shipped-successfully-marked-order-as-shipped": "Successfully marked order as shipped",
1104
+ "mark-shipped-successfully-marked-swap-as-shipped": "Successfully marked swap as shipped",
1105
+ "mark-shipped-successfully-marked-claim-as-shipped": "Successfully marked claim as shipped",
1106
+ "mark-shipped-success": "Success",
1107
+ "mark-shipped-error": "Error",
1108
+ "mark-shipped-mark-fulfillment-shipped": "Mark Fulfillment Shipped",
1109
+ "mark-shipped-tracking": "Tracking",
1110
+ "mark-shipped-tracking-number-label": "Tracking number",
1111
+ "mark-shipped-tracking-number": "Tracking number...",
1112
+ "mark-shipped-add-additional-tracking-number": "+ Add Additional Tracking Number",
1113
+ "mark-shipped-send-notifications": "Send notifications",
1114
+ "mark-shipped-cancel": "Cancel",
1115
+ "mark-shipped-complete": "Complete",
1116
+ "order-line-warning": "Warning",
1117
+ "order-line-cannot-duplicate-an-item-without-a-variant": "Cannot duplicate an item without a variant",
1118
+ "order-line-error": "Error",
1119
+ "order-line-failed-to-duplicate-item": "Failed to duplicate item",
1120
+ "order-line-success": "Success",
1121
+ "order-line-item-removed": "Item removed",
1122
+ "order-line-failed-to-remove-item": "Failed to remove item",
1123
+ "order-line-item-added": "Item added",
1124
+ "order-line-failed-to-replace-the-item": "Failed to replace the item",
1125
+ "order-line-replace-product-variants": "Replace Product Variants",
1126
+ "order-line-replace-with-other-item": "Replace with other item",
1127
+ "order-line-duplicate-item": "Duplicate item",
1128
+ "order-line-remove-item": "Remove item",
1129
+ "order-line-line-item-cannot-be-edited": "This line item is part of a fulfillment and cannot be edited. Cancel the fulfillment to edit the line item.",
1130
+ "order-line-new": "New",
1131
+ "order-line-modified": "Modified",
1132
+ "receive-return-please-select-at-least-one-item-to-receive": "Please select at least one item to receive",
1133
+ "receive-return-successfully-received-return": "Successfully received return",
1134
+ "receive-return-received-return-for-order": "Received return for order #{{display_id}}",
1135
+ "receive-return-failed-to-receive-return": "Failed to receive return",
1136
+ "receive-return-receive-return": "Receive Return",
1137
+ "receive-return-location": "Location",
1138
+ "receive-return-choose-location": "Choose which location you want to return the items to.",
1139
+ "receive-return-select-location-to-return-to": "Select Location to Return to",
1140
+ "receive-return-no-inventory-levels-exist-for-the-items-at-the-selected-location": "No inventory levels exist for the items at the selected location",
1141
+ "receive-return-cancel": "Cancel",
1142
+ "receive-return-save-and-close": "Save and close",
1143
+ "refund-success": "Success",
1144
+ "refund-successfully-refunded-order": "Successfully refunded order",
1145
+ "refund-error": "Error",
1146
+ "refund-create-a-refund": "Create a refund",
1147
+ "refund-attention": "Attention!",
1148
+ "refund-system-payment-disclaimer": "One or more of your payments is a system payment. Be aware, that captures and refunds are not handled by Medusa for such payments.",
1149
+ "refund-details": "Details",
1150
+ "refund-cannot-refund-more-than-the-orders-net-total": "Cannot refund more than the order's net total.",
1151
+ "refund-discount": "Discount",
1152
+ "refund-reason": "Reason",
1153
+ "refund-note": "Note",
1154
+ "refund-discount-for-loyal-customer": "Discount for loyal customer",
1155
+ "refund-send-notifications": "Send notifications",
1156
+ "refund-cancel": "Cancel",
1157
+ "refund-complete": "Complete",
1158
+ "reservation-reservation-was-deleted": "Reservation was deleted",
1159
+ "reservation-the-allocated-items-have-been-released": "The allocated items have been released.",
1160
+ "reservation-error": "Error",
1161
+ "reservation-failed-to-delete-the-reservation": "Failed to delete the reservation ",
1162
+ "reservation-reservation-was-updated": "Reservation was updated",
1163
+ "reservation-the-reservation-change-was-saved": "The reservation change was saved.",
1164
+ "reservation-errors": "Errors",
1165
+ "reservation-failed-to-update-reservation": "Failed to update reservation",
1166
+ "reservation-edit-reservation": "Edit Reservation",
1167
+ "reservation-location": "Location",
1168
+ "reservation-choose-which-location-you-want-to-ship-the-items-from": "Choose which location you want to ship the items from.",
1169
+ "reservation-items-to-allocate-title": "Items to Allocate",
1170
+ "reservation-select-the-number-of-items-that-you-wish-to-allocate": "Select the number of items that you wish to allocate.",
1171
+ "reservation-max-reservation-requested": " / {{maxReservation}} requested",
1172
+ "reservation-reserved": " reserved",
1173
+ "reservation-description": "Description",
1174
+ "reservation-what-type-of-reservation-is-this": "What type of reservation is this?",
1175
+ "reservation-metadata": "Metadata",
1176
+ "reservation-remove-metadata": "Remove metadata",
1177
+ "reservation-add-metadata": "Add metadata",
1178
+ "reservation-delete-reservation": "Delete reservation",
1179
+ "reservation-cancel": "Cancel",
1180
+ "reservation-save-and-close": "Save and close",
1181
+ "reservation-couldnt-allocate-items": "Couldn't allocate items",
1182
+ "reservation-items-allocated": "Items allocated",
1183
+ "reservation-items-have-been-allocated-successfully": "Items have been allocated successfully",
1184
+ "reservation-save-reservation": "Save reservation",
1185
+ "reservation-loading": "Loading...",
1186
+ "reservation-allocate-order-items": "Allocate order items",
1187
+ "reservation-choose-where-you-wish-to-allocate-from": "Choose where you wish to allocate from",
1188
+ "reservation-items-to-allocate": "Items to allocate",
1189
+ "returns-success": "Success",
1190
+ "returns-successfully-returned-order": "Successfully returned order",
1191
+ "returns-error": "Error",
1192
+ "returns-request-return": "Request Return",
1193
+ "returns-items-to-return": "Items to return",
1194
+ "returns-choose-which-location-you-want-to-return-the-items-to": "Choose which location you want to return the items to.",
1195
+ "returns-select-location-to-return-to": "Select Location to Return to",
1196
+ "returns-selected-location-has-no-inventory-levels": "The selected location does not have inventory levels for the selected items. The return can be requested but can't be received until an inventory level is created for the selected location.",
1197
+ "returns-shipping": "Shipping",
1198
+ "returns-choose-retur,-shipping-method": "Choose which shipping method you want to use for this return.",
1199
+ "returns-total-refund": "Total Refund",
1200
+ "returns-amount": "Amount",
1201
+ "returns-send-notifications": "Send notifications",
1202
+ "returns-notify-customer-of-created-return": "Notify customer of created return",
1203
+ "returns-back": "Back",
1204
+ "returns-submit": "Submit",
1205
+ "rma-sub-modals-search-for-additional": "Search for additional",
1206
+ "rma-sub-modals-general": "General",
1207
+ "rma-sub-modals-first-name": "First Name",
1208
+ "rma-sub-modals-last-name": "Last Name",
1209
+ "rma-sub-modals-phone": "Phone",
1210
+ "rma-sub-modals-shipping-address": "Shipping Address",
1211
+ "rma-sub-modals-address-1": "Address 1",
1212
+ "rma-sub-modals-address-2": "Address 2",
1213
+ "rma-sub-modals-province": "Province",
1214
+ "rma-sub-modals-postal-code": "Postal code",
1215
+ "rma-sub-modals-city": "City",
1216
+ "rma-sub-modals-country": "Country",
1217
+ "rma-sub-modals-back": "Back",
1218
+ "rma-sub-modals-add": "Add",
1219
+ "rma-sub-modals-name": "Name",
1220
+ "rma-sub-modals-status": "Status",
1221
+ "rma-sub-modals-in-stock": "In Stock",
1222
+ "rma-sub-modals-products": "Products",
1223
+ "rma-sub-modals-search-products": "Search Products..",
1224
+ "rma-sub-modals-reason-for-return": "Reason for Return",
1225
+ "rma-sub-modals-reason": "Reason",
1226
+ "rma-sub-modals-note": "Note",
1227
+ "swap-success": "Success",
1228
+ "swap-successfully-created-exchange": "Successfully created exchange",
1229
+ "swap-error": "Error",
1230
+ "swap-register-exchange": "Register Exchange",
1231
+ "swap-items-to-return": "Items to return",
1232
+ "swap-shipping": "Shipping",
1233
+ "swap-shipping-method": "Shipping Method",
1234
+ "swap-add-a-shipping-method": "Add a shipping method",
1235
+ "swap-location": "Location",
1236
+ "swap-choose-which-location-you-want-to-return-the-items-to": "Choose which location you want to return the items to.",
1237
+ "swap-select-location-to-return-to": "Select Location to Return to",
1238
+ "swap-items-to-send": "Items to send",
1239
+ "swap-add-product": "Add Product",
1240
+ "swap-return-total": "Return Total",
1241
+ "swap-additional-total": "Additional Total",
1242
+ "swap-outbond-shipping": "Outbond Shipping",
1243
+ "swap-calculated-at-checkout": "Calculated at checkout",
1244
+ "swap-estimated-difference": "Estimated difference",
1245
+ "swap-send-notifications": "Send notifications",
1246
+ "swap-if-unchecked-the-customer-will-not-receive-communication-about-this-exchange": "If unchecked the customer will not receive communication about this exchange",
1247
+ "swap-complete": "Complete",
1248
+ "templates-shipped": "Shipped",
1249
+ "templates-fulfilled": "Fulfilled",
1250
+ "templates-canceled": "Canceled",
1251
+ "templates-partially-fulfilled": "Partially fulfilled",
1252
+ "templates-fulfillment-status-requires-action": "Requires Action",
1253
+ "templates-awaiting-fulfillment": "Awaiting fulfillment",
1254
+ "templates-partially-shipped": "Partially Shipped",
1255
+ "templates-cancel-fulfillment-heading": "Cancel fulfillment?",
1256
+ "templates-are-you-sure-you-want-to-cancel-the-fulfillment": "Are you sure you want to cancel the fulfillment?",
1257
+ "templates-successfully-canceled-swap": "Successfully canceled swap",
1258
+ "templates-error": "Error",
1259
+ "templates-successfully-canceled-claim": "Successfully canceled claim",
1260
+ "templates-successfully-canceled-fulfillment": "Successfully canceled fulfillment",
1261
+ "templates-fulfillment-has-been-canceled": "Fulfillment has been canceled",
1262
+ "templates-fulfilled-by-provider": "{{title}} Fulfilled by {{provider}}",
1263
+ "templates-not-shipped": "Not shipped",
1264
+ "templates-tracking": "Tracking",
1265
+ "templates-shipped-from": "Shipped from",
1266
+ "templates-shipping-from": "Shipping from",
1267
+ "templates-mark-shipped": "Mark Shipped",
1268
+ "templates-cancel-fulfillment": "Cancel Fulfillment",
1269
+ "templates-completed": "Completed",
1270
+ "templates-processing": "Processing",
1271
+ "templates-requires-action": "Requires action",
1272
+ "templates-capture-payment": "Capture payment",
1273
+ "templates-successfully-captured-payment": "Successfully captured payment",
1274
+ "templates-refund": "Refund",
1275
+ "templates-total-for-swaps": "Total for Swaps",
1276
+ "templates-refunded-for-swaps": "Refunded for Swaps",
1277
+ "templates-refunded-for-returns": "Refunded for Returns",
1278
+ "templates-manually-refunded": "Manually refunded",
1279
+ "templates-net-total": "Net Total",
1280
+ "templates-paid": "Paid",
1281
+ "templates-awaiting-payment": "Awaiting payment",
1282
+ "templates-payment-status-requires-action": "Requires Action",
1283
+ "draft-orders-completed": "Completed",
1284
+ "draft-orders-open": "Open",
1285
+ "draft-orders-mark-as-paid": "Mark as paid",
1286
+ "draft-orders-success": "Success",
1287
+ "draft-orders-successfully-mark-as-paid": "Successfully mark as paid",
1288
+ "draft-orders-error": "Error",
1289
+ "draft-orders-successfully-canceled-order": "Successfully canceled order",
1290
+ "draft-orders-back-to-draft-orders": "Back to Draft Orders",
1291
+ "on-mark-as-paid-confirm-order-id": "Order #{{display_id}}",
1292
+ "draft-orders-go-to-order": "Go to Order",
1293
+ "draft-orders-cancel-draft-order": "Cancel Draft Order",
1294
+ "draft-orders-draft-order": "Draft Order",
1295
+ "draft-orders-email": "Email",
1296
+ "draft-orders-phone": "Phone",
1297
+ "draft-orders-amount": "Amount {{currency_code}}",
1298
+ "draft-orders-payment": "Payment",
1299
+ "draft-orders-subtotal": "Subtotal",
1300
+ "draft-orders-shipping": "Shipping",
1301
+ "draft-orders-tax": "Tax",
1302
+ "draft-orders-total-to-pay": "Total to pay",
1303
+ "draft-orders-payment-link": "Payment link:",
1304
+ "draft-orders-configure-payment-link-in-store-settings": "Configure payment link in store settings",
1305
+ "draft-orders-shipping-method": "Shipping Method",
1306
+ "draft-orders-data": "Data",
1307
+ "draft-orders-1-item": "(1 item)",
1308
+ "draft-orders-customer": "Customer",
1309
+ "draft-orders-edit-shipping-address": "Edit Shipping Address",
1310
+ "draft-orders-edit-billing-address": "Edit Billing Address",
1311
+ "draft-orders-go-to-customer": "Go to Customer",
1312
+ "draft-orders-contact": "Contact",
1313
+ "draft-orders-billing": "Billing",
1314
+ "draft-orders-raw-draft-order": "Raw Draft Order",
1315
+ "draft-orders-are-you-sure": "Are you sure?",
1316
+ "draft-orders-remove-resource-heading": "Remove {{resource}}",
1317
+ "draft-orders-remove-resource-success-text": "{{resource}} has been removed",
1318
+ "draft-orders-this-will-create-an-order-mark-this-as-paid-if-you-received-the-payment": "This will create an order. Mark this as paid if you received the payment.",
1319
+ "draft-orders-mark-paid": "Mark paid",
1320
+ "draft-orders-cancel": "Cancel",
1321
+ "draft-orders-create-draft-order": "Create draft order",
1322
+ "edit-amount-paid": "Amount Paid",
1323
+ "edit-new-total": "New Total",
1324
+ "edit-difference-due": "Difference Due",
1325
+ "edit-back": "Back",
1326
+ "edit-save-and-go-back": "Save and go back",
1327
+ "edit-order-edit-set-as-requested": "Order edit set as requested",
1328
+ "edit-failed-to-request-confirmation": "Failed to request confirmation",
1329
+ "edit-added-successfully": "Added successfully",
1330
+ "edit-error-occurred": "Error occurred",
1331
+ "edit-add-product-variants": "Add Product Variants",
1332
+ "edit-edit-order": "Edit Order",
1333
+ "edit-items": "Items",
1334
+ "edit-add-items": "Add items",
1335
+ "edit-filter-items": "Filter items...",
1336
+ "edit-note": "Note",
1337
+ "edit-add-a-note": "Add a note...",
1338
+ "variants-table-location": " in {{location}}",
1339
+ "edit-product": "Product",
1340
+ "edit-in-stock": "In Stock",
1341
+ "edit-price": "Price",
1342
+ "edit-products": "Products",
1343
+ "edit-search-product-variants": "Search Product Variants...",
1344
+ "orders-success": "Success",
1345
+ "orders-successfully-initiated-export": "Successfully initiated export",
1346
+ "orders-error": "Error",
1347
+ "orders-export-orders": "Export Orders",
1348
+ "components-billing-address": "Billing Address",
1349
+ "components-use-same-as-shipping": "Use same as shipping",
1350
+ "components-e-g-gift-wrapping": "E.g. Gift wrapping",
1351
+ "components-title": "Title",
1352
+ "components-price": "Price",
1353
+ "components-quantity": "Quantity",
1354
+ "components-back": "Back",
1355
+ "components-add": "Add",
1356
+ "components-items-for-the-order": "Items for the order",
1357
+ "components-details": "Details",
1358
+ "components-price-excl-taxes": "Price (excl. Taxes)",
1359
+ "components-add-custom": "Add Custom",
1360
+ "components-add-existing": "Add Existing",
1361
+ "components-add-products": "Add Products",
1362
+ "components-add-custom-item": "Add Custom Item",
1363
+ "components-choose-region": "Choose region",
1364
+ "components-region": "Region",
1365
+ "select-shipping-to-name": "(To {{name}})",
1366
+ "components-attention": "Attention!",
1367
+ "components-no-options-for-orders-without-shipping": "You don't have any options for orders without shipping. Please add one (e.g. \"In-store fulfillment\") with \"Show on website\" unchecked in region settings and continue.",
1368
+ "components-choose-a-shipping-method": "Choose a shipping method",
1369
+ "components-set-custom-price": "Set custom price",
1370
+ "components-custom-price": "Custom Price",
1371
+ "components-customer-and-shipping-details": "Customer and shipping details",
1372
+ "components-find-existing-customer": "Find existing customer",
1373
+ "components-email": "Email",
1374
+ "components-choose-existing-addresses": "Choose existing addresses",
1375
+ "components-create-new": "Create new",
1376
+ "components-the-discount-is-not-applicable-to-the-selected-region": "The discount is not applicable to the selected region",
1377
+ "components-the-discount-code-is-invalid": "The discount code is invalid",
1378
+ "components-add-discount": "Add Discount",
1379
+ "components-summer-10": "SUMMER10",
1380
+ "components-discount": "Discount",
1381
+ "select-shipping-code": "(Code: {{code}})",
1382
+ "components-type": "Type",
1383
+ "components-value": "Value",
1384
+ "components-address": "Address",
1385
+ "components-shipping-method": "Shipping method",
1386
+ "components-billing-details": "Billing details",
1387
+ "components-edit": "Edit",
1388
+ "form-use-new-order-form-must-be-used-within-new-order-form-provider": "useNewOrderForm must be used within NewOrderFormProvider",
1389
+ "new-order-created": "Order created",
1390
+ "new-create-draft-order": "Create Draft Order",
1391
+ "price-list-product-filter-created-at": "Created at",
1392
+ "price-list-product-filter-updated-at": "Updated at",
1393
+ "price-list-details-drawer-prompt-title": "Are you sure?",
1394
+ "price-list-details-drawer-prompt-description": "You have unsaved changes, are you sure you want to exit?",
1395
+ "price-list-details-notification-succes-title": "Price list updated",
1396
+ "price-list-details-drawer-notification-success-message": "Successfully updated price list",
1397
+ "price-list-details-drawer-notification-error-title": "An error occurred",
1398
+ "price-list-details-drawer-title": "Edit Price List Details",
1399
+ "price-list-details-drawer-cancel-button": "Cancel",
1400
+ "price-list-details-drawer-save-button": "Save",
1401
+ "price-list-details-section-prompt-confirm-text": "Delete",
1402
+ "price-list-details-section-prompt-cancel-text": "Cancel",
1403
+ "price-list-details-section-prompt-title": "Delete price list",
1404
+ "price-list-details-section-prompt-description": "Are you sure you want to delete the price list \"{{name}}\"?",
1405
+ "price-list-details-section-delete-notification-success-title": "Successfully deleted price list",
1406
+ "price-list-details-section-delete-notification-success-message": "The price list \"{{name}}\" was successfully deleted",
1407
+ "price-list-details-section-delete-notification-error-title": "Failed to delete price list",
1408
+ "price-list-details-section-customer-groups": "Customer Groups",
1409
+ "price-list-details-section-last-edited": "Last edited",
1410
+ "price-list-details-section-number-of-prices": "Prices",
1411
+ "price-list-details-section-status-menu-expired": "Expired",
1412
+ "price-list-details-section-status-menu-draft": "Draft",
1413
+ "price-list-details-section-status-menu-scheduled": "Scheduled",
1414
+ "price-list-details-section-status-active": "Active",
1415
+ "price-list-details-section-status-menu-notification-success-title": "Successfully updated price list status",
1416
+ "price-list-details-section-status-menu-notification-success-message": "The price list status was successfully updated to {{status}}",
1417
+ "price-list-details-section-status-menu-notification-error-title": "Failed to update price list status",
1418
+ "price-list-details-section-status-menu-item-draft": "Draft",
1419
+ "price-list-details-section-status-menu-item-activate": "Activate",
1420
+ "price-list-details-menu-item-edit": "Edit details",
1421
+ "price-list-details-menu-item-delete": "Delete",
1422
+ "price-list-edit-error": "An error occurred while loading price list. Reload the page and try again. If the issue persists, try again later.",
1423
+ "price-list-new-form-prompt-title": "Are you sure?",
1424
+ "price-list-new-form-prompt-exit-description": "You have unsaved changes, are you sure you want to exit?",
1425
+ "price-list-new-form-prompt-back-description": "You have unsaved changes, are you sure you want to go back?",
1426
+ "price-list-add-products-modal-no-prices-error": "Please assign prices for at least one product.",
1427
+ "price-list-add-products-modal-missing-prices-title": "Incomplete price list",
1428
+ "price-list-add-products-modal-missing-prices-description": "Prices have not been assigned to all of your chosen products. Would you like to continue?",
1429
+ "price-list-add-products-modal-success-title": "New prices added",
1430
+ "price-list-add-products-modal-success-message": "The new prices have been added to the price list.",
1431
+ "price-list-add-products-modal-error-title": "An error occurred",
1432
+ "price-list-add-products-modal-back-button-cancel": "Cancel",
1433
+ "price-list-add-products-modal-back-button": "Back",
1434
+ "price-list-add-products-modal-next-button-continue": "Continue",
1435
+ "price-list-add-products-modal-next-button-submit-and-close": "Submit and Close",
1436
+ "price-list-add-products-modal-next-button-continue-save-prices": "Save Prices",
1437
+ "price-list-add-products-modal-products-tab": "Choose Products",
1438
+ "price-list-add-products-modal-prices-tab": "Edit Prices",
1439
+ "price-list-add-products-modal-error": "An error occurred while preparing the form. Reload the page and try again. If the issue persists, try again later.",
1440
+ "price-list-edit-prices-modal-prompt-title": "Unsaved changes",
1441
+ "price-list-edit-prices-modal-prompt-exit-description": "You have unsaved changes, are you sure you want to exit?",
1442
+ "price-list-edit-prices-modal-prompt-back-description": "You have unsaved changes, are you sure you want to go back?",
1443
+ "price-list-edit-prices-modal-notification-update-error": "An error occurred",
1444
+ "price-list-edit-prices-modal-notification-remove-error-title": "An error occurred",
1445
+ "price-list-edit-prices-modal-notification-remove-error-description": "Some prices were not updated correctly. Try again.",
1446
+ "price-list-edit-prices-modal-notification-update-success-title": "Prices updated",
1447
+ "price-list-edit-prices-modal-notification-update-success-description": "Successfully updated prices",
1448
+ "price-list-edit-prices-modal-next-button-save-and-close": "Save and Close",
1449
+ "price-list-edit-prices-modal-next-button-save": "Save Prices",
1450
+ "price-list-edit-prices-modal-back-button-cancel": "Cancel",
1451
+ "price-list-edit-prices-modal-back-button-back": "Back",
1452
+ "price-list-edit-prices-modal-overview-tab": "Edit Prices",
1453
+ "price-list-edit-prices-modal-error-loading": "An error occurred while preparing the form. Reload the page and try again. If the issue persists, try again later.",
1454
+ "price-list-prices-section-prompt-title": "Are you sure?",
1455
+ "price-list-prices-section-prompt-description": "This will permanently delete the product prices from the list",
1456
+ "price-list-prices-secton-delete-success-title": "Prices deleted",
1457
+ "price-list-prices-section-delete-success-description_one": "Successfully deleted prices for {{count}} products",
1458
+ "price-list-prices-section-delete-success-description_other": "Successfully deleted prices for {{count}} products",
1459
+ "price-list-prices-section-delete-error-title": "An error occurred",
1460
+ "price-list-prices-section-heading": "Prices",
1461
+ "price-list-prices-section-search-placeholder": "Search products",
1462
+ "price-list-prices-section-prices-menu-edit": "Edit prices",
1463
+ "price-list-prices-section-prices-menu-add": "Add products",
1464
+ "price-list-prices-section-table-load-error": "An error occured while fetching the products. Try to reload the page, or if the issue persists, try again later.",
1465
+ "price-list-prices-section-bar-count_one": "{{count}} selected",
1466
+ "price-list-prices-section-bar-count_other": "{{count}} selected",
1467
+ "price-list-prices-section-edit-command": "Edit",
1468
+ "price-list-prices-section-delete-command": "Delete",
1469
+ "price-list-prices-section-select-all-checkbox-label": "Select all products on the current page",
1470
+ "price-list-prices-section-select-checkbox-label": "Select row",
1471
+ "price-list-prices-section-table-product": "Product",
1472
+ "price-list-prices-section-table-thumbnail-alt": "{{title}} thumbnail",
1473
+ "price-list-prices-section-table-collection": "Collection",
1474
+ "price-list-prices-section-table-variants": "Variants",
1475
+ "price-list-details-form-type-heading": "Type",
1476
+ "price-list-details-form-type-description": "Choose the type of price list you want to create.",
1477
+ "price-list-details-form-type-label-sale": "Sale",
1478
+ "price-list-details-form-type-hint-sale": "Use this if you are creating a sale.",
1479
+ "price-list-details-form-type-label-override": "Override",
1480
+ "price-list-details-form-type-hint-override": "Use this if you are overriding prices.",
1481
+ "price-list-details-form-general-heading": "General",
1482
+ "price-list-details-form-general-description": "Choose a title and description for the price list.",
1483
+ "price-list-details-form-general-name-label": "Name",
1484
+ "price-list-details-form-general-name-placeholder": "Black Friday Sale",
1485
+ "price-list-details-form-general-description-label": "Description",
1486
+ "price-list-details-form-general-description-placeholder": "Prices for the Black Friday sale...",
1487
+ "price-list-details-form-tax-inclusive-label": "Tax inclusive prices",
1488
+ "price-list-details-form-tax-inclusive-hint": "Choose to make all prices in this list inclusive of tax.",
1489
+ "price-list-details-form-dates-starts-at-heading": "Price list has a start date?",
1490
+ "price-list-details-form-dates-starts-at-description": "Schedule the price overrides to activate in the future.",
1491
+ "price-list-details-form-dates-starts-at-label": "Start date",
1492
+ "price-list-details-form-ends-at-heading": "Price list has an expiry date?",
1493
+ "price-list-details-form-ends-at-description": "Schedule the price overrides to deactivate in the future.",
1494
+ "price-list-details-form-ends-at-label": "Expiry date",
1495
+ "price-list-details-form-customer-groups-name": "Name",
1496
+ "price-list-details-form-customer-groups-members": "Members",
1497
+ "price-list-details-form-customer-groups-error": "An error occurred while loading customer groups. Reload the page and try again. If the issue persists, try again later.",
1498
+ "price-list-details-form-customer-groups-no-groups": "No customer groups found.",
1499
+ "price-list-details-form-customer-groups-heading": "Customer availability",
1500
+ "price-list-details-form-customer-groups-description": "Specify which customer groups the price overrides should apply for.",
1501
+ "price-list-details-form-customer-groups-content-heading": "Customer Groups",
1502
+ "price-list-details-form-customer-groups-search-placeholder": "Search",
1503
+ "price-list-prices-form-products-error": "An error occurred while preparing the form. Reload the page and try again. If the issue persists, try again later.",
1504
+ "price-list-prices-form-heading": "Edit prices",
1505
+ "price-list-prices-form-variant": "Variant",
1506
+ "price-list-prices-form-sku": "SKU",
1507
+ "price-list-prices-form-prices": "Prices",
1508
+ "price-list-prices-form-prices-variant-count_one": "{{count}} variants",
1509
+ "price-list-prices-form-prices-variant-count_other": "{{count}} variants",
1510
+ "price-list-prices-form-add-prices-button": "Add prices",
1511
+ "price-list-prices-form-prices-count_one": "{{count}} prices",
1512
+ "price-list-prices-form-prices-count_other": "{{count}} prices",
1513
+ "price-list-product-prices-form-invalid-data-title": "Invalid data",
1514
+ "price-list-product-prices-form-invalid-data-body": "The data you pasted contains values that are not numbers.",
1515
+ "price-list-product-prices-form-column-visibility-button": "Currencies",
1516
+ "price-list-product-prices-form-column-visibility-currencies-label": "Currencies",
1517
+ "price-list-product-prices-form-column-visibility-regions-label": "Regions",
1518
+ "price-list-product-prices-form-column-product-label": "Product",
1519
+ "price-list-product-prices-form-column-currencies-price-label": "Price {{code}}",
1520
+ "price-list-product-prices-form-column-regions-price-label": "Price {{name}} ({{code}})",
1521
+ "price-list-products-form-select-all": "Select all products on the current page",
1522
+ "price-list-products-form-select-row": "Select row",
1523
+ "price-list-products-form-product-label": "Product",
1524
+ "price-list-products-form-product-thumbnail": "{{title}} thumbnail",
1525
+ "price-list-products-form-collection-label": "Collection",
1526
+ "price-list-products-form-sales-channels-label": "Availability",
1527
+ "price-list-products-form-sales-channels-value": "{{first}} + {{remaining}} more",
1528
+ "price-list-products-form-status-label": "Status",
1529
+ "price-list-products-form-inventory-label": "Inventory",
1530
+ "price-list-products-form-inventory-value": "{{totalStock}} in stock across {{variants}} variants",
1531
+ "price-list-products-form-loading": "Loading products",
1532
+ "price-list-products-form-error": "An error occurred while loading products. Reload the page and try again. If the issue persists, try again later.",
1533
+ "price-list-products-form-no-products": "No products found.",
1534
+ "price-list-products-form-heading": "Choose products",
1535
+ "price-list-products-form-search-placeholder": "Search",
1536
+ "price-list-new-form-no-prices-error": "Please set prices for at least one product.",
1537
+ "price-list-new-form-missing-prices-title": "Incomplete price list",
1538
+ "price-list-new-products-modal-missing-prices-description": "Prices have not been assigned to all of your chosen products. Would you like to proceed?",
1539
+ "price-list-new-form-notification-success-title": "Price list created",
1540
+ "price-list-new-form-notification-success-message": "Successfully created price list",
1541
+ "price-list-new-form-notification-error-title": "An error occurred",
1542
+ "price-list-new-form-next-button-save-and-publish": "Save and Publish",
1543
+ "price-list-new-form-next-button-save": "Save Prices",
1544
+ "price-list-new-form-next-button-continue": "Continue",
1545
+ "price-list-new-form-back-button-cancel": "Cancel",
1546
+ "price-list-new-form-back-button-back": "Back",
1547
+ "price-list-new-form-details-tab": "Create Price List",
1548
+ "price-list-new-form-products-tab": "Choose Products",
1549
+ "price-list-new-form-prices-tab": "Edit Prices",
1550
+ "price-list-new-form-save-as-draft": "Save as Draft",
1551
+ "price-list-new-form-error-loading-products": "An error occurred while preparing the form. Reload the page and try again. If the issue persists, try again later.",
1552
+ "components-success": "Success",
1553
+ "components-successfully-updated-category-tree": "Successfully updated category tree",
1554
+ "components-error": "Error",
1555
+ "components-failed-to-update-category-tree": "Failed to update category tree",
1556
+ "components-delete": "Delete",
1557
+ "components-category-deleted": "Category deleted",
1558
+ "components-category-deletion-failed": "Category deletion failed",
1559
+ "components-category-status-is-inactive": "Category status is inactive",
1560
+ "components-category-visibility-is-private": "Category visibility is private",
1561
+ "components-add-category-item-to": "Add category item to",
1562
+ "modals-public": "Public",
1563
+ "modals-private": "Private",
1564
+ "modals-active": "Active",
1565
+ "modals-inactive": "Inactive",
1566
+ "modals-success": "Success",
1567
+ "modals-successfully-created-a-category": "Successfully created a category",
1568
+ "modals-failed-to-create-a-new-category": "Failed to create a new category",
1569
+ "modals-error": "Error",
1570
+ "modals-save-category": "Save category",
1571
+ "modals-add-category-to": "Add category to {{name}}",
1572
+ "modals-add-category": "Add category",
1573
+ "modals-details": "Details",
1574
+ "modals-name": "Name",
1575
+ "modals-give-this-category-a-name": "Give this category a name",
1576
+ "modals-handle": "Handle",
1577
+ "modals-custom-handle": "Custom handle",
1578
+ "modals-description": "Description",
1579
+ "modals-give-this-category-a-description": "Give this category a description",
1580
+ "modals-status": "Status",
1581
+ "modals-visibility": "Visibility",
1582
+ "modals-successfully-updated-the-category": "Successfully updated the category",
1583
+ "modals-failed-to-update-the-category": "Failed to update the category",
1584
+ "modals-edit-product-category": "Edit product category",
1585
+ "modals-cancel": "Cancel",
1586
+ "modals-save-and-close": "Save and close",
1587
+ "pages-no-product-categories-yet": "No product categories yet, use the above button to create your first category.",
1588
+ "pages-add-category": "Add category",
1589
+ "pages-product-categories": "Product Categories",
1590
+ "pages-helps-you-to-keep-your-products-organized": "Helps you to keep your products organized.",
1591
+ "batch-job-success": "Success",
1592
+ "batch-job-import-confirmed-for-processing-progress-info-is-available-in-the-activity-drawer": "Import confirmed for processing. Progress info is available in the activity drawer.",
1593
+ "batch-job-error": "Error",
1594
+ "batch-job-import-failed": "Import failed.",
1595
+ "batch-job-failed-to-delete-the-csv-file": "Failed to delete the CSV file",
1596
+ "batch-job-failed-to-cancel-the-batch-job": "Failed to cancel the batch job",
1597
+ "batch-job-products-list": "products list",
1598
+ "batch-job-unsure-about-how-to-arrange-your-list": "Unsure about how to arrange your list?",
1599
+ "batch-job-download-template": "Download the template below to ensure you are following the correct format.",
1600
+ "batch-job-imports-description": "Through imports you can add or update products. To update existing products/variants you must set an existing id in the Product/Variant id columns. If the value is unset a new record will be created. You will be asked for confirmation before we import products.",
1601
+ "products-filters": "Filters",
1602
+ "products-status": "Status",
1603
+ "products-tags": "Tags",
1604
+ "products-spring-summer": "Spring, summer...",
1605
+ "new-sales-channels": "Sales channels",
1606
+ "new-this-product-will-only-be-available-in-the-default-sales-channel-if-left-untouched": "This product will only be available in the default sales channel if left untouched.",
1607
+ "new-change-availablity": "Change availablity",
1608
+ "add-variants-a-variant-with-these-options-already-exists": "A variant with these options already exists.",
1609
+ "add-variants-product-options": "Product options",
1610
+ "add-variants-options-are-used-to-define-the-color-size-etc-of-the-product": "Options are used to define the color, size, etc. of the product.",
1611
+ "add-variants-option-title": "Option title",
1612
+ "add-variants-variations-comma-separated": "Variations (comma separated)",
1613
+ "add-variants-color": "Color...",
1614
+ "add-variants-already-exists": "already exists",
1615
+ "add-variants-blue-red-black": "Blue, Red, Black...",
1616
+ "add-variants-add-an-option": "Add an option",
1617
+ "add-variants-product-variants": "Product variants",
1618
+ "add-variants-you-must-add-at-least-one-product-option-before-you-can-begin-adding-product-variants": "You must add at least one product option before you can begin adding product variants.",
1619
+ "add-variants-variant": "Variant",
1620
+ "add-variants-inventory": "Inventory",
1621
+ "add-variants-add-a-variant": "Add a variant",
1622
+ "add-variants-create-variant": "Create Variant",
1623
+ "add-variants-cancel": "Cancel",
1624
+ "add-variants-save-and-close": "Save and close",
1625
+ "new-variant-a-variant-with-these-options-already-exists": "A variant with these options already exists.",
1626
+ "new-variant-are-you-sure-you-want-to-delete-this-variant": "Are you sure you want to delete this variant?",
1627
+ "new-variant-delete-variant": "Delete Variant",
1628
+ "new-variant-edit": "Edit",
1629
+ "new-variant-delete": "Delete",
1630
+ "new-variant-edit-variant": "Edit Variant",
1631
+ "new-variant-cancel": "Cancel",
1632
+ "new-variant-save-and-close": "Save and close",
1633
+ "new-something-went-wrong-while-trying-to-upload-images": "Something went wrong while trying to upload images.",
1634
+ "new-no-file-service-configured": "You might not have a file service configured. Please contact your administrator",
1635
+ "new-upload-thumbnail-error": "Something went wrong while trying to upload the thumbnail.",
1636
+ "new-save-as-draft": "Save as draft",
1637
+ "new-publish-product": "Publish product",
1638
+ "new-general-information-title": "General information",
1639
+ "new-to-start-selling-all-you-need-is-a-name-and-a-price": "To start selling, all you need is a name and a price.",
1640
+ "new-organize-product": "Organize Product",
1641
+ "new-add-variations-of-this-product": "Add variations of this product.",
1642
+ "new-offer-your-customers-different-options-for-color-format-size-shape-etc": "Offer your customers different options for color, format, size, shape, etc.",
1643
+ "new-used-for-shipping-and-customs-purposes": "Used for shipping and customs purposes.",
1644
+ "new-dimensions": "Dimensions",
1645
+ "new-customs": "Customs",
1646
+ "new-used-to-represent-your-product-during-checkout-social-sharing-and-more": "Used to represent your product during checkout, social sharing and more.",
1647
+ "new-media": "Media",
1648
+ "new-add-images-to-your-product": "Add images to your product.",
1649
+ "overview-import-products": "Import Products",
1650
+ "overview-export-products": "Export Products",
1651
+ "overview-new-product": "New Product",
1652
+ "overview-new-collection": "New Collection",
1653
+ "overview-success": "Success",
1654
+ "overview-successfully-created-collection": "Successfully created collection",
1655
+ "overview-error": "Error",
1656
+ "overview-successfully-initiated-export": "Successfully initiated export",
1657
+ "modals-add-sales-channels": "Add sales channels",
1658
+ "modals-find-channels": "Find channels",
1659
+ "modals-updated-the-api-key": "Updated the API key",
1660
+ "modals-failed-to-update-the-api-key": "Failed to update the API key",
1661
+ "modals-edit-api-key-details": "Edit API key details",
1662
+ "modals-title": "Title",
1663
+ "modals-name-your-key": "Name your key",
1664
+ "modals-sales-channels-added-to-the-scope": "Sales channels added to the scope",
1665
+ "modals-error-occurred-while-adding-sales-channels-to-the-scope-of-the-key": "Error occurred while adding sales channels to the scope of the key",
1666
+ "modals-add-and-go-back": "Add and go back",
1667
+ "modals-add-and-close": "Add and close",
1668
+ "modals-sales-channels-removed-from-the-scope": "Sales channels removed from the scope",
1669
+ "modals-error-occurred-while-removing-sales-channels-from-the-scope-of-the-key": "Error occurred while removing sales channels from the scope of the key",
1670
+ "modals-edit-sales-channels": "Edit sales channels",
1671
+ "publishable-api-keys-modals-manage-sales-channels-selected-with-counts_one": "{{count}}",
1672
+ "publishable-api-keys-modals-manage-sales-channels-selected-with-counts_other": "{{count}}",
1673
+ "modals-deselect": "Deselect",
1674
+ "modals-remove": "Remove",
1675
+ "modals-add-channels": "Add channels",
1676
+ "modals-close": "Close",
1677
+ "pages-sales-channels": "Sales channels",
1678
+ "pages-connect-as-many-sales-channels-to-your-api-key-as-you-need": "Connect as many sales channels to your API key as you need.",
1679
+ "pages-add-sales-channels": "Add sales channels",
1680
+ "pages-edit-sales-channels": "Edit sales channels",
1681
+ "pages-success": "Success",
1682
+ "pages-created-a-new-api-key": "Created a new API key",
1683
+ "pages-error": "Error",
1684
+ "pages-failed-to-create-a-new-api-key": "Failed to create a new API key",
1685
+ "pages-sales-channels-added-to-the-scope": "Sales channels added to the scope",
1686
+ "pages-error-occurred-while-adding-sales-channels-to-the-scope-of-the-key": "Error occurred while adding sales channels to the scope of the key",
1687
+ "pages-publish-api-key": "Publish API key",
1688
+ "pages-create-api-key": "Create API Key",
1689
+ "pages-create-and-manage-api-keys-right-now-this-is-only-related-to-sales-channels": "Create and manage API keys. Right now this is only related to sales channels.",
1690
+ "pages-create-api-key-label": "Create API key",
1691
+ "pages-back-to-settings": "Back to settings",
1692
+ "pages-publishable-api-keys": "Publishable API keys",
1693
+ "pages-these-publishable-keys-will-allow-you-to-authenticate-api-requests": "These publishable keys will allow you to authenticate API requests.",
1694
+ "tables-name": "Name",
1695
+ "tables-token": "Token",
1696
+ "tables-done": "done",
1697
+ "tables-copy-to-clipboard": "Copy to clipboard",
1698
+ "tables-created": "Created",
1699
+ "tables-status": "Status",
1700
+ "tables-revoked": "Revoked",
1701
+ "tables-live": "Live",
1702
+ "tables-edit-api-key-details": "Edit API key details",
1703
+ "tables-edit-sales-channels": "Edit sales channels",
1704
+ "tables-copy-token": "Copy token",
1705
+ "tables-revoke-token": "Revoke token",
1706
+ "tables-delete-api-key": "Delete API key",
1707
+ "tables-yes-delete": "Yes, delete",
1708
+ "tables-api-key-deleted": "API key deleted",
1709
+ "tables-are-you-sure-you-want-to-delete-this-public-key": "Are you sure you want to delete this public key?",
1710
+ "tables-delete-key": "Delete key",
1711
+ "tables-yes-revoke": "Yes, revoke",
1712
+ "tables-api-key-revoked": "API key revoked",
1713
+ "tables-are-you-sure-you-want-to-revoke-this-public-key": "Are you sure you want to revoke this public key?",
1714
+ "tables-revoke-key": "Revoke key",
1715
+ "tables-api-keys": "API Keys",
1716
+ "tables-no-keys-yet-use-the-above-button-to-create-your-first-publishable-key": "No keys yet, use the above button to create your first publishable key",
1717
+ "tables-title": "Title",
1718
+ "tables-description": "Description",
1719
+ "tables-no-added-sales-channels": "No added sales channels",
1720
+ "tables-sales-channels": "Sales Channels",
1721
+ "form-title": "Title",
1722
+ "form-website-app-amazon-physical-store-pos-facebook-product-feed": "Website, app, Amazon, physical store POS, facebook product feed...",
1723
+ "form-description": "Description",
1724
+ "form-available-products-at-our-website-app": "Available products at our website, app...",
1725
+ "form-success": "Success",
1726
+ "form-the-sales-channel-is-successfully-updated": "The sales channel is successfully updated",
1727
+ "form-error": "Error",
1728
+ "form-failed-to-update-the-sales-channel": "Failed to update the sales channel",
1729
+ "form-sales-channel-details": "Sales channel details",
1730
+ "form-general-info": "General info",
1731
+ "form-name": "Name",
1732
+ "form-close": "Close",
1733
+ "form-save": "Save",
1734
+ "pages-draft": "Draft",
1735
+ "pages-control-which-products-are-available-in-which-channels": "Control which products are available in which channels",
1736
+ "pages-search-by-title-or-description": "Search by title or description",
1737
+ "pages-confirm-delete-sales-channel": "Are you sure you want to delete this sales channel? The setup you made will be gone forever.",
1738
+ "pages-delete-channel-heading": "Delete Channel",
1739
+ "pages-edit-general-info": "Edit general info",
1740
+ "pages-add-products": "Add products",
1741
+ "pages-delete-channel": "Delete channel",
1742
+ "pages-disabled": "Disabled",
1743
+ "pages-enabled": "Enabled",
1744
+ "tables-collection": "Collection",
1745
+ "tables-start-building-your-channels-setup": "Start building your channels setup...",
1746
+ "tables-no-products-in-channels": "You haven’t added any products to this channels yet, but once you do they will live here.",
1747
+ "tables-add-products": "Add products",
1748
+ "tables-details": "Details",
1749
+ "tables-remove-from-the-channel": "Remove from the channel",
1750
+ "tables-products": "Products",
1751
+ "sales-channels-table-placeholder-selected-with-counts_one": "{{count}}",
1752
+ "sales-channels-table-placeholder-selected-with-counts_other": "{{count}}",
1753
+ "tables-remove": "Remove",
1754
+ "components-successfully-updated-currency": "Successfully updated currency",
1755
+ "components-default": "Default",
1756
+ "default-store-currency-success": "Success",
1757
+ "default-store-currency-successfully-updated-default-currency": "Successfully updated default currency",
1758
+ "default-store-currency-error": "Error",
1759
+ "default-store-currency-default-store-currency": "Default store currency",
1760
+ "default-store-currency-this-is-the-currency-your-prices-are-shown-in": "This is the currency your prices are shown in.",
1761
+ "store-currencies-success": "Success",
1762
+ "store-currencies-successfully-updated-currencies": "Successfully updated currencies",
1763
+ "store-currencies-error": "Error",
1764
+ "store-currencies-cancel": "Cancel",
1765
+ "store-currencies-save-and-go-back": "Save and go back",
1766
+ "store-currencies-save-and-close": "Save and close",
1767
+ "store-currencies-add-store-currencies": "Add Store Currencies",
1768
+ "store-currencies-current-store-currencies": "Current Store Currencies",
1769
+ "store-currencies-close": "Close",
1770
+ "current-currencies-screen-selected-with-count_one": "{{count}}",
1771
+ "current-currencies-screen-selected-with-count_other": "{{count}}",
1772
+ "store-currencies-deselect": "Deselect",
1773
+ "store-currencies-remove": "Remove",
1774
+ "store-currencies-add-currencies": "Add Currencies",
1775
+ "store-currencies-store-currencies": "Store currencies",
1776
+ "store-currencies-all-the-currencies-available-in-your-store": "All the currencies available in your store.",
1777
+ "store-currencies-edit-currencies": "Edit currencies",
1778
+ "currencies-an-unknown-error-occurred": "An unknown error occurred",
1779
+ "currencies-error": "Error",
1780
+ "currencies-back-to-settings": "Back to Settings",
1781
+ "currencies-manage-the-markets-that-you-will-operate-within": "Manage the markets that you will operate within.",
1782
+ "currencies-include-or-exclude-taxes": "Decide if you want to include or exclude taxes whenever you define a price in this currency",
1783
+ "currencies-tax-incl-prices": "Tax Incl. Prices",
1784
+ "settings-error": "Error",
1785
+ "settings-malformed-swap-url": "Malformed swap url",
1786
+ "settings-malformed-payment-url": "Malformed payment url",
1787
+ "settings-malformed-invite-url": "Malformed invite url",
1788
+ "settings-success": "Success",
1789
+ "settings-successfully-updated-store": "Successfully updated store",
1790
+ "settings-back-to-settings": "Back to settings",
1791
+ "settings-save": "Save",
1792
+ "settings-cancel": "Cancel",
1793
+ "settings-store-details": "Store Details",
1794
+ "settings-manage-your-business-details": "Manage your business details",
1795
+ "settings-general": "General",
1796
+ "settings-store-name": "Store name",
1797
+ "settings-medusa-store": "Medusa Store",
1798
+ "settings-advanced-settings": "Advanced settings",
1799
+ "settings-swap-link-template": "Swap link template",
1800
+ "settings-draft-order-link-template": "Draft order link template",
1801
+ "settings-invite-link-template": "Invite link template",
1802
+ "settings-manage-the-general-settings-for-your-store": "Manage the general settings for your store",
1803
+ "settings-manage-the-settings-for-your-store-apos-s-extensions": "Manage the settings for your store extensions",
1804
+ "edit-user-information-success": "Success",
1805
+ "edit-user-information-your-information-was-successfully-updated": "Your information was successfully updated",
1806
+ "edit-user-information-edit-information": "Edit information",
1807
+ "edit-user-information-cancel": "Cancel",
1808
+ "edit-user-information-submit-and-close": "Submit and close",
1809
+ "personal-information-back-to-settings": "Back to Settings",
1810
+ "personal-information-personal-information": "Personal information",
1811
+ "personal-information-manage-your-medusa-profile": "Manage your Medusa profile",
1812
+ "personal-information-language-settings-title": "Language",
1813
+ "personal-information-language-settings-description": "Adjust the language of Medusa Admin",
1814
+ "personal-information-language-settings-help-us-translate": "Help us translate",
1815
+ "personal-information-usage-insights-title": "Usage insights",
1816
+ "usage-insights-disabled": "Disabled",
1817
+ "usage-insights-active": "Active",
1818
+ "usage-insights-share-usage-insights-and-help-us-improve-medusa": "Share usage insights and help us improve Medusa",
1819
+ "usage-insights-edit-preferences": "Edit preferences",
1820
+ "usage-insights-success": "Success",
1821
+ "usage-insights-your-information-was-successfully-updated": "Your information was successfully updated",
1822
+ "usage-insights-error": "Error",
1823
+ "usage-insights-cancel": "Cancel",
1824
+ "usage-insights-submit-and-close": "Submit and close",
1825
+ "region-form-title": "Title",
1826
+ "region-form-europe": "Europe",
1827
+ "region-form-currency-code-is-required": "Currency code is required",
1828
+ "region-form-currency": "Currency",
1829
+ "region-form-choose-currency": "Choose currency",
1830
+ "region-form-default-tax-rate": "Default Tax Rate",
1831
+ "region-form-tax-rate-is-required": "Tax rate is required",
1832
+ "region-form-tax-rate-must-be-equal-to-or-less-than-100": "Tax rate must be equal to or less than 100",
1833
+ "region-form-default-tax-code": "Default Tax Code",
1834
+ "region-form-countries": "Countries",
1835
+ "region-form-choose-countries": "Choose countries",
1836
+ "region-form-tax-inclusive-prices": "Tax inclusive prices",
1837
+ "region-form-when-enabled-region-prices-will-be-tax-inclusive": "When enabled region prices will be tax inclusive.",
1838
+ "region-form-payment-providers-are-required": "Payment providers are required",
1839
+ "region-form-payment-providers": "Payment Providers",
1840
+ "region-form-choose-payment-providers": "Choose payment providers...",
1841
+ "region-form-fulfillment-providers-are-required": "Fulfillment providers are required",
1842
+ "region-form-fulfillment-providers": "Fulfillment Providers",
1843
+ "region-form-choose-fulfillment-providers": "Choose fulfillment providers...",
1844
+ "shipping-option-card-success": "Success",
1845
+ "shipping-option-card-shipping-option-updated": "Shipping option updated",
1846
+ "shipping-option-card-error": "Error",
1847
+ "shipping-option-card-edit-shipping-option": "Edit Shipping Option",
1848
+ "shipping-option-card-fulfillment-method": "Fulfillment Method",
1849
+ "shipping-option-card-cancel": "Cancel",
1850
+ "shipping-option-card-save-and-close": "Save and close",
1851
+ "shipping-option-card-shipping-option-has-been-deleted": "Shipping option has been deleted",
1852
+ "shipping-option-card-flat-rate": "Flat Rate",
1853
+ "shipping-option-card-calcualted": "Calculated",
1854
+ "shipping-option-card-min-subtotal": "Min. subtotal:",
1855
+ "shipping-option-card-max-subtotal": "Max. subtotal:",
1856
+ "shipping-option-card-admin": "Admin",
1857
+ "shipping-option-card-store": "Store",
1858
+ "shipping-option-card-edit": "Edit",
1859
+ "shipping-option-card-delete": "Delete",
1860
+ "shipping-option-form-visible-in-store": "Visible in store",
1861
+ "shipping-option-form-enable-or-disable-the-shipping-option-visiblity-in-store": "Enable or disable the shipping option visiblity in store.",
1862
+ "shipping-option-form-details": "Details",
1863
+ "shipping-option-form-title": "Title",
1864
+ "shipping-option-form-title-is-required": "Title is required",
1865
+ "shipping-option-form-price-type": "Price Type",
1866
+ "shipping-option-form-flat-rate": "Flat Rate",
1867
+ "shipping-option-form-calculated": "Calculated",
1868
+ "shipping-option-form-choose-a-price-type": "Choose a price type",
1869
+ "shipping-option-form-price": "Price",
1870
+ "shipping-option-form-shipping-profile": "Shipping Profile",
1871
+ "shipping-option-form-choose-a-shipping-profile": "Choose a shipping profile",
1872
+ "shipping-option-form-fulfillment-method": "Fulfillment Method",
1873
+ "shipping-option-form-choose-a-fulfillment-method": "Choose a fulfillment method",
1874
+ "shipping-option-form-requirements": "Requirements",
1875
+ "shipping-option-form-min-subtotal-must-be-less-than-max-subtotal": "Min. subtotal must be less than max. subtotal",
1876
+ "shipping-option-form-min-subtotal": "Min. subtotal",
1877
+ "shipping-option-form-max-subtotal": "Max. subtotal",
1878
+ "shipping-option-form-metadata": "Metadata",
1879
+ "general-section-success": "Success",
1880
+ "general-section-region-was-successfully-updated": "Region was successfully updated",
1881
+ "general-section-error": "Error",
1882
+ "general-section-edit-region-details": "Edit Region Details",
1883
+ "general-section-details": "Details",
1884
+ "general-section-providers": "Providers",
1885
+ "general-section-metadata": "Metadata",
1886
+ "general-section-cancel": "Cancel",
1887
+ "general-section-save-and-close": "Save and close",
1888
+ "edit-something-went-wrong": "Something went wrong...",
1889
+ "edit-no-region-found": "We can't find a region with that ID, use the menu to the left to select a region.",
1890
+ "return-shipping-options-success": "Success",
1891
+ "return-shipping-options-shipping-option-created": "Shipping option created",
1892
+ "return-shipping-options-error": "Error",
1893
+ "return-shipping-options-add-return-shipping-option": "Add Return Shipping Option",
1894
+ "return-shipping-options-cancel": "Cancel",
1895
+ "return-shipping-options-save-and-close": "Save and close",
1896
+ "return-shipping-options-return-shipping-options": "Return Shipping Options",
1897
+ "return-shipping-options-add-option": "Add Option",
1898
+ "return-shipping-options-enter-specifics-about-available-regional-return-shipment-methods": "Enter specifics about available regional return shipment methods.",
1899
+ "shipping-options-success": "Success",
1900
+ "shipping-options-shipping-option-created": "Shipping option created",
1901
+ "shipping-options-error": "Error",
1902
+ "shipping-options-add-shipping-option": "Add Shipping Option",
1903
+ "shipping-options-cancel": "Cancel",
1904
+ "shipping-options-save-and-close": "Save and close",
1905
+ "shipping-options-shipping-options": "Shipping Options",
1906
+ "shipping-options-add-option": "Add Option",
1907
+ "shipping-options-enter-specifics-about-available-regional-shipment-methods": "Enter specifics about available regional shipment methods.",
1908
+ "new-region-created": "Region created",
1909
+ "new-create-region": "Create region",
1910
+ "new-details": "Details",
1911
+ "new-add-the-region-details": "Add the region details.",
1912
+ "new-providers": "Providers",
1913
+ "new-add-which-fulfillment-and-payment-providers-should-be-available-in-this-region": "Add which fulfillment and payment providers should be available in this region.",
1914
+ "region-overview-regions": "Regions",
1915
+ "region-overview-manage-the-markets-that-you-will-operate-within": "Manage the markets that you will operate within.",
1916
+ "region-overview-not-configured": "Not configured",
1917
+ "region-overview-fulfillment-providers": "Fulfillment providers:",
1918
+ "return-reasons-notification-success": "Success",
1919
+ "return-reasons-created-a-new-return-reason": "Created a new return reason",
1920
+ "return-reasons-success": "success",
1921
+ "return-reasons-error": "Error",
1922
+ "return-reasons-cannot-create-a-return-reason-with-an-existing-value": "Cannot create a return reason with an existing value",
1923
+ "return-reasons-add-reason": "Add Reason",
1924
+ "return-reasons-value-is-required": "Value is required",
1925
+ "return-reasons-value": "Value",
1926
+ "return-reasons-label-is-required": "Label is required",
1927
+ "return-reasons-label": "Label",
1928
+ "return-reasons-description": "Description",
1929
+ "return-reasons-customer-received-the-wrong-size": "Customer received the wrong size",
1930
+ "return-reasons-cancel": "Cancel",
1931
+ "return-reasons-create": "Create",
1932
+ "return-reasons-success-title": "Success",
1933
+ "return-reasons-successfully-updated-return-reason": "Successfully updated return reason",
1934
+ "return-reasons-duplicate-reason": "Duplicate reason",
1935
+ "return-reasons-delete-reason": "Delete reason",
1936
+ "return-reasons-save": "Save",
1937
+ "return-reasons-details": "Details",
1938
+ "return-reasons-delete-return-reason": "Delete Return Reason",
1939
+ "return-reasons-are-you-sure-you-want-to-delete-this-return-reason": "Are you sure you want to delete this return reason?",
1940
+ "return-reasons-back-to-settings": "Back to settings",
1941
+ "return-reasons-return-reasons": "Return Reasons",
1942
+ "return-reasons-add-reason-label": "Add reason",
1943
+ "return-reasons-manage-reasons-for-returned-items": "Manage reasons for returned items",
1944
+ "taxes-details": "Details",
1945
+ "taxes-new-tax-rate": "New Tax Rate",
1946
+ "taxes-tax-calculation-settings": "Tax Calculation Settings",
1947
+ "taxes-success": "Success",
1948
+ "taxes-successfully-updated-tax-rate": "Successfully updated Tax Rate.",
1949
+ "taxes-error": "Error",
1950
+ "taxes-overrides": "Overrides",
1951
+ "taxes-product-rules": "Product Rules",
1952
+ "taxes-product-rules-description_one": "Applies to {{count}} productWithCount",
1953
+ "taxes-product-rules-description_other": "Applies to {{count}} productWithCount",
1954
+ "taxes-product-type-rules": "Product Type Rules",
1955
+ "taxes-product-type-rules-description_one": "Applies to {{count}} product typeWithCount",
1956
+ "taxes-product-type-rules-description_other": "Applies to {{count}} product typeWithCount",
1957
+ "taxes-shipping-option-rules": "Shipping Option Rules",
1958
+ "taxes-applies-to-shipping-option-with-count_one": "Applies to {{count}} shipping optionWithCount",
1959
+ "taxes-applies-to-shipping-option-with-count_other": "Applies to {{count}} shipping optionWithCount",
1960
+ "taxes-add-overrides": "Add Overrides",
1961
+ "taxes-cancel": "Cancel",
1962
+ "taxes-save": "Save",
1963
+ "taxes-name": "Name",
1964
+ "taxes-default": "Default",
1965
+ "taxes-rate-name": "Rate name",
1966
+ "taxes-tax-rate": "Tax Rate",
1967
+ "taxes-tax-code": "Tax Code",
1968
+ "taxes-edit-tax-rate": "Edit Tax Rate",
1969
+ "taxes-back-to-settings": "Back to settings",
1970
+ "taxes-regions": "Regions",
1971
+ "taxes-select-the-region-you-wish-to-manage-taxes-for": "Select the region you wish to manage taxes for",
1972
+ "taxes-go-to-region-settings": "Go to Region settings",
1973
+ "taxes-successfully-created-tax-rate": "Successfully created tax rate.",
1974
+ "taxes-add-tax-rate": "Add Tax Rate",
1975
+ "taxes-applies-to-product-type-with-count_one": "Applies to {{count}} product typeWithCount",
1976
+ "taxes-applies-to-product-type-with-count_other": "Applies to {{count}} product typeWithCount",
1977
+ "taxes-create": "Create",
1978
+ "taxes-select-products": "Select Products",
1979
+ "taxes-select-product-types-label": "Select Product Types",
1980
+ "taxes-product-types": "Product Types",
1981
+ "taxes-system-tax-provider": "System Tax Provider",
1982
+ "taxes-region-tax-settings-were-successfully-updated": "Region tax settings were successfully updated.",
1983
+ "taxes-tax-provider": "Tax Provider",
1984
+ "taxes-calculate-taxes-automatically": "Calculate taxes automatically?",
1985
+ "taxes-automatically-apply-tax-calculations-to-carts": "When checked Medusa will automatically apply tax calculations to Carts in this Region. When unchecked you will have to manually compute taxes at checkout. Manual taxes are recommended if using a 3rd party tax provider to avoid performing too many requests",
1986
+ "taxes-apply-tax-to-gift-cards": "Apply tax to gift cards?",
1987
+ "taxes-apply-taxes-to-gift-cards": "When checked taxes will be applied to gift cards on checkout. In some contries tax regulations require that taxes are applied to gift cards on purchase.",
1988
+ "taxes-search-products": "Search Products..",
1989
+ "taxes-select-shipping-option": "Select Shipping Option",
1990
+ "taxes-shipping-options": "Shipping Options",
1991
+ "taxes-delete-tax-rate-heading": "Delete tax rate",
1992
+ "taxes-confirm-delete": "Are you sure you want to delete this tax rate?",
1993
+ "taxes-tax-rate-was-deleted": "Tax rate was deleted.",
1994
+ "taxes-edit": "Edit",
1995
+ "taxes-delete-tax-rate": "Delete Tax Rate",
1996
+ "taxes-delete-rule": "Delete rule",
1997
+ "taxes-type": "Type",
1998
+ "taxes-products": "Products",
1999
+ "taxes-select-individual-products": "Select individual products",
2000
+ "taxes-select-product-types": "Select product types",
2001
+ "taxes-select-shipping-options": "Select shipping options",
2002
+ "taxes-back": "Back",
2003
+ "taxes-add": "Add",
2004
+ "taxes-code": "Code",
2005
+ "users-invite-users": "Invite Users",
2006
+ "users-back-to-settings": "Back to settings",
2007
+ "users-the-team": "The Team",
2008
+ "users-manage-users-of-your-medusa-store": "Manage users of your Medusa Store",
2009
+ "users-count_one": "{{count}}",
2010
+ "users-count_other": "{{count}}"
2011
+ }