@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": "返回",
3
+ "filter-menu-trigger": "查看",
4
+ "filter-menu-clear-button": "清除",
5
+ "filter-menu-select-item-default-placeholder": "选择过滤器",
6
+ "filter-menu-select-item-clear-button": "清除所选选项",
7
+ "filter-menu-select-item-selected": "已选择",
8
+ "filter-menu-date-item-before": "之前",
9
+ "filter-menu-date-item-after": "之后",
10
+ "filter-menu-date-item-between": "之间",
11
+ "sales-channels-display-available-count": "在销售渠道中,有<2>{{availableChannelsCount}}</2>个可用,共<6>{{totalChannelsCount}}</6>个销售渠道",
12
+ "activity-drawer-activity": "活动",
13
+ "activity-drawer-no-notifications-title": "这里很安静...",
14
+ "activity-drawer-no-notifications-description": "您目前没有任何通知,但一旦有通知,它们将显示在这里。",
15
+ "activity-drawer-error-title": "哦,不好...",
16
+ "activity-drawer-error-description": "在尝试获取您的通知时出了一些问题 - 我们会继续尝试!",
17
+ "activity-drawer-processing": "处理中...",
18
+ "analytics-config-form-title": "匿名化我的使用数据",
19
+ "analytics-config-form-description": "您可以选择匿名化您的使用数据。如果选择此选项,我们将不会收集您的个人信息,如姓名和电子邮件地址。",
20
+ "analytics-config-form-opt-out": "选择不分享我的使用数据",
21
+ "analytics-config-form-opt-out-later": "您随时可以选择不分享您的使用数据。",
22
+ "analytics-preferences-success": "成功",
23
+ "analytics-preferences-your-preferences-were-successfully-updated": "您的偏好已成功更新",
24
+ "analytics-preferences-error": "错误",
25
+ "analytics-preferences-help-us-get-better": "帮助我们变得更好",
26
+ "analytics-preferences-disclaimer": "为了创建最引人入胜的电子商务体验,我们希望了解您如何使用 Medusa 的见解。用户见解让我们能够构建更好、更引人入胜、更易用的产品。我们仅收集用于产品改进的数据。阅读我们在",
27
+ "analytics-preferences-documentation": "文档",
28
+ "analytics-preferences-please-enter-a-valid-email": "请输入有效的电子邮件",
29
+ "analytics-preferences-continue": "继续",
30
+ "currency-input-currency": "货币",
31
+ "currency-input-amount-is-not-valid": "金额无效",
32
+ "organisms-success": "成功",
33
+ "organisms-delete-successful": "删除成功",
34
+ "organisms-are-you-sure-you-want-to-delete": "您确定要删除吗?",
35
+ "organisms-no-cancel": "不,取消",
36
+ "organisms-yes-remove": "是的,删除",
37
+ "details-collapsible-hide-additional-details": "隐藏附加详情",
38
+ "details-collapsible-show-additional-details": "显示附加详情",
39
+ "edit-user-modal-success": "成功",
40
+ "edit-user-modal-user-was-updated": "用户已更新",
41
+ "edit-user-modal-error": "错误",
42
+ "edit-user-modal-edit-user": "编辑用户",
43
+ "edit-user-modal-first-name-label": "名字",
44
+ "edit-user-modal-first-name-placeholder": "名字...",
45
+ "edit-user-modal-last-name-label": "姓氏",
46
+ "edit-user-modal-last-name-placeholder": "姓氏...",
47
+ "edit-user-modal-email": "电子邮件",
48
+ "edit-user-modal-cancel": "取消",
49
+ "edit-user-modal-save": "保存",
50
+ "error-boundary-back-to-dashboard": "返回仪表板",
51
+ "error-boundary-an-unknown-error-occured": "发生了未知错误",
52
+ "error-boundary-bad-request": "错误的请求",
53
+ "error-boundary-you-are-not-logged-in": "您未登录",
54
+ "error-boundary-you-do-not-have-permission-perform-this-action": "您没有执行此操作的权限",
55
+ "error-boundary-page-was-not-found": "未找到页面",
56
+ "error-boundary-an-unknown-server-error-occured": "发生未知服务器错误",
57
+ "error-boundary-503": "服务器当前不可用",
58
+ "error-boundary-500": "发生错误,原因未指定,这很可能是由于我们端的技术问题。请尝试刷新页面。如果问题仍然存在,请联系您的管理员。",
59
+ "error-boundary-400": "请求格式不正确,请修复您的请求并重试。",
60
+ "error-boundary-401": "您未登录,请登录以继续。",
61
+ "error-boundary-403": "您没有执行此操作的权限,如果您认为这是一个错误,请联系您的管理员。",
62
+ "error-boundary-404": "您请求的页面未找到,请检查URL并重试。",
63
+ "error-boundary-500-2": "服务器无法处理您的请求,这很可能是由于我们端的技术问题。请重试。如果问题仍然存在,请联系您的管理员。",
64
+ "error-boundary-503-2": "服务器暂时不可用,无法处理您的请求。请稍后重试。如果问题仍然存在,请联系您的管理员。",
65
+ "export-modal-title": "初始化数据导出",
66
+ "export-modal-cancel": "取消",
67
+ "export-modal-export": "导出",
68
+ "file-upload-modal-upload-a-new-photo": "上传新照片",
69
+ "gift-card-banner-edit": "编辑",
70
+ "gift-card-banner-unpublish": "取消发布",
71
+ "gift-card-banner-publish": "发布",
72
+ "gift-card-banner-delete": "删除",
73
+ "gift-card-banner-published": "已发布",
74
+ "gift-card-banner-unpublished": "未发布",
75
+ "gift-card-denominations-section-denomination-added": "添加面额",
76
+ "gift-card-denominations-section-a-new-denomination-was-successfully-added": "新面额已成功添加",
77
+ "gift-card-denominations-section-a-denomination-with-that-default-value-already-exists": "具有该默认值的面额已存在",
78
+ "gift-card-denominations-section-error": "错误",
79
+ "gift-card-denominations-section-add-denomination": "添加面额",
80
+ "gift-card-denominations-section-cancel": "取消",
81
+ "gift-card-denominations-section-save-and-close": "保存并关闭",
82
+ "gift-card-denominations-section-denomination-updated": "更新面额",
83
+ "gift-card-denominations-section-a-new-denomination-was-successfully-updated": "新面额已成功更新",
84
+ "gift-card-denominations-section-edit-denomination": "编辑面额",
85
+ "gift-card-denominations-section-denominations": "面额",
86
+ "gift-card-denominations-section-denomination": "面额",
87
+ "gift-card-denominations-section-in-other-currencies": "在其他货币中",
88
+ "gift-card-denominations-section-and-more_one": ",还有{{count}}个",
89
+ "gift-card-denominations-section-and-more_other": ",还有{{count}}个",
90
+ "gift-card-denominations-section-delete-denomination": "删除面额",
91
+ "gift-card-denominations-section-confirm-delete": "您确定要删除此面额吗?",
92
+ "gift-card-denominations-section-denomination-deleted": "已删除面额",
93
+ "gift-card-denominations-section-denomination-was-successfully-deleted": "已成功删除面额",
94
+ "gift-card-denominations-section-edit": "编辑",
95
+ "gift-card-denominations-section-delete": "删除",
96
+ "help-dialog-how-can-we-help": "我们可以如何帮助您?",
97
+ "help-dialog-we-usually-respond-in-a-few-hours": "我们通常在几小时内回复",
98
+ "help-dialog-subject": "主题",
99
+ "help-dialog-what-is-it-about": "关于什么?...",
100
+ "help-dialog-write-a-message": "撰写消息...",
101
+ "help-dialog-feel-free-to-join-our-community-of": "欢迎加入我们的社区,其中包括",
102
+ "help-dialog-merchants-and-e-commerce-developers": "商家和电子商务开发者",
103
+ "help-dialog-send-a-message": "发送消息",
104
+ "invite-modal-success": "成功",
105
+ "invite-modal-invitation-sent-to": "已发送邀请至 {{user}}",
106
+ "invite-modal-error": "错误",
107
+ "invite-modal-member": "成员",
108
+ "invite-modal-admin": "管理员",
109
+ "invite-modal-developer": "开发者",
110
+ "invite-modal-invite-users": "邀请用户",
111
+ "invite-modal-email": "电子邮件",
112
+ "invite-modal-role": "角色",
113
+ "invite-modal-select-role": "选择角色",
114
+ "invite-modal-cancel": "取消",
115
+ "invite-modal-invite": "邀请",
116
+ "login-card-no-match": "这些凭据与我们的记录不匹配。",
117
+ "login-card-log-in-to": "登录 Uponco",
118
+ "login-card-email": "电子邮件",
119
+ "login-card-password": "密码",
120
+ "login-card-forgot-your-password": "忘记密码?",
121
+ "metadata-add-metadata": "添加元数据",
122
+ "product-attributes-section-edit-attributes": "编辑属性",
123
+ "product-attributes-section-dimensions": "尺寸",
124
+ "product-attributes-section-configure-to-calculate-the-most-accurate-shipping-rates": "配置以计算最准确的运费",
125
+ "product-attributes-section-customs": "海关",
126
+ "product-attributes-section-cancel": "取消",
127
+ "product-attributes-section-save": "保存",
128
+ "product-attributes-section-title": "属性",
129
+ "product-attributes-section-height": "高度",
130
+ "product-attributes-section-width": "宽度",
131
+ "product-attributes-section-length": "长度",
132
+ "product-attributes-section-weight": "重量",
133
+ "product-attributes-section-mid-code": "MID 码",
134
+ "product-attributes-section-hs-code": "HS 码",
135
+ "product-attributes-section-country-of-origin": "原产国",
136
+ "product-general-section-success": "成功",
137
+ "product-general-section-successfully-updated-sales-channels": "成功更新销售渠道",
138
+ "product-general-section-error": "错误",
139
+ "product-general-section-failed-to-update-sales-channels": "无法更新销售渠道",
140
+ "product-general-section-edit-general-information": "编辑一般信息",
141
+ "product-general-section-gift-card": "礼品卡",
142
+ "product-general-section-product": "产品",
143
+ "product-general-section-metadata": "元数据",
144
+ "product-general-section-cancel": "取消",
145
+ "product-general-section-save": "保存",
146
+ "product-general-section-delete": "删除",
147
+ "product-general-section-edit-sales-channels": "编辑销售渠道",
148
+ "product-general-section-published": "已发布",
149
+ "product-general-section-draft": "草稿",
150
+ "product-general-section-details": "详情",
151
+ "product-general-section-subtitle": "副标题",
152
+ "product-general-section-handle": "标识",
153
+ "product-general-section-type": "类型",
154
+ "product-general-section-collection": "收藏",
155
+ "product-general-section-category": "类别",
156
+ "product-general-section-discountable": "可打折",
157
+ "product-general-section-true": "是",
158
+ "product-general-section-false": "否",
159
+ "product-general-section-count_one": "{{count}}",
160
+ "product-general-section-count_other": "{{count}}",
161
+ "product-general-section-sales-channels": "销售渠道",
162
+ "product-media-section-edit-media": "编辑媒体",
163
+ "product-media-section-upload-images-error": "尝试上传图像时出了问题。",
164
+ "product-media-section-file-service-not-configured": "您可能没有配置文件服务。请联系您的管理员",
165
+ "product-media-section-error": "错误",
166
+ "product-media-section-media": "媒体",
167
+ "product-media-section-add-images-to-your-product": "为您的产品添加图像。",
168
+ "product-media-section-cancel": "取消",
169
+ "product-media-section-save-and-close": "保存并关闭",
170
+ "product-raw-section-raw-gift-card": "原始礼品卡",
171
+ "product-raw-section-raw-product": "原始产品",
172
+ "product-thumbnail-section-success": "成功",
173
+ "product-thumbnail-section-successfully-deleted-thumbnail": "成功删除缩略图",
174
+ "product-thumbnail-section-error": "错误",
175
+ "product-thumbnail-section-edit": "编辑",
176
+ "product-thumbnail-section-upload": "上传",
177
+ "product-thumbnail-section-upload-thumbnail-error": "尝试上传缩略图时出了问题。",
178
+ "product-thumbnail-section-you-might-not-have-a-file-service-configured-please-contact-your-administrator": "您可能没有配置文件服务。请联系您的管理员",
179
+ "product-thumbnail-section-upload-thumbnail": "上传缩略图",
180
+ "product-thumbnail-section-thumbnail": "缩略图",
181
+ "product-thumbnail-section-used-to-represent-your-product-during-checkout-social-sharing-and-more": "用于在结账、社交分享等过程中代表您的产品。",
182
+ "product-thumbnail-section-cancel": "取消",
183
+ "product-thumbnail-section-save-and-close": "保存并关闭",
184
+ "product-variant-tree-count_one": "{{count}}",
185
+ "product-variant-tree-count_other": "{{count}}",
186
+ "product-variant-tree-add-prices": "添加价格",
187
+ "product-variants-section-add-variant": "添加变体",
188
+ "product-variants-section-cancel": "取消",
189
+ "product-variants-section-save-and-close": "保存并关闭",
190
+ "product-variants-section-edit-stock-inventory": "编辑库存",
191
+ "product-variants-section-edit-variant": "编辑变体",
192
+ "edit-variants-modal-cancel": "取消",
193
+ "edit-variants-modal-save-and-go-back": "保存并返回",
194
+ "edit-variants-modal-save-and-close": "保存并关闭",
195
+ "edit-variants-modal-edit-variant": "编辑变体",
196
+ "edit-variants-modal-update-success": "变体已成功更新",
197
+ "edit-variants-modal-edit-variants": "编辑变体",
198
+ "edit-variants-modal-product-variants": "产品变体",
199
+ "edit-variants-modal-variant": "变体",
200
+ "edit-variants-modal-inventory": "库存",
201
+ "product-variants-section-edit-prices": "编辑价格",
202
+ "product-variants-section-edit-variants": "编辑变体",
203
+ "product-variants-section-edit-options": "编辑选项",
204
+ "product-variants-section-product-variants": "产品变体",
205
+ "product-variants-section-error": "错误",
206
+ "product-variants-section-failed-to-update-product-options": "无法更新产品选项",
207
+ "product-variants-section-success": "成功",
208
+ "product-variants-section-successfully-updated-product-options": "成功更新产品选项",
209
+ "product-variants-section-product-options": "产品选项",
210
+ "product-variants-section-option-title": "选项标题",
211
+ "product-variants-section-option-title-is-required": "选项标题是必需的",
212
+ "product-variants-section-add-an-option": "添加一个选项",
213
+ "product-variants-section-inventory": "库存",
214
+ "product-variants-section-title": "标题",
215
+ "product-variants-section-sku": "SKU",
216
+ "product-variants-section-ean": "EAN",
217
+ "product-variants-section-manage-inventory": "管理库存",
218
+ "product-variants-section-duplicate-variant": "复制变体",
219
+ "product-variants-section-delete-variant-label": "删除变体",
220
+ "product-variants-section-yes-delete": "是的,删除",
221
+ "product-variants-section-delete-variant-heading": "删除变体",
222
+ "product-variants-section-confirm-delete": "您确定要删除此变体吗?",
223
+ "product-variants-section-note-deleting-the-variant-will-also-remove-inventory-items-and-levels": "注意:删除变体还将删除库存项目和级别",
224
+ "reset-token-card-error": "错误",
225
+ "reset-token-card-reset-your-password": "重置您的密码",
226
+ "reset-token-card-password-reset-description": "在下面输入您的电子邮件地址,我们将<1></1>向您发送有关如何重置<3></3>密码的说明。",
227
+ "reset-token-card-email": "电子邮件",
228
+ "reset-token-card-this-is-not-a-valid-email": "这不是有效的电子邮件",
229
+ "reset-token-card-send-reset-instructions": "发送重置说明",
230
+ "reset-token-card-successfully-sent-you-an-email": "成功向您发送了一封电子邮件",
231
+ "reset-token-card-go-back-to-sign-in": "返回登录",
232
+ "rma-return-product-table-product-details": "产品详情",
233
+ "rma-return-product-table-quantity": "数量",
234
+ "rma-select-product-table-product-details": "产品详情",
235
+ "rma-select-product-table-quantity": "数量",
236
+ "rma-select-product-table-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": "选择原因",
240
+ "sidebar-store": "商店",
241
+ "sidebar-orders": "订单",
242
+ "sidebar-products": "产品",
243
+ "sidebar-categories": "类别",
244
+ "sidebar-customers": "顾客",
245
+ "sidebar-inventory": "库存",
246
+ "sidebar-discounts": "折扣",
247
+ "sidebar-gift-cards": "礼品卡",
248
+ "sidebar-pricing": "定价",
249
+ "sidebar-settings": "设置",
250
+ "table-container-soothed-offset_one": "{{soothedOffset}} - {{pageSize}} 共 {{count}} {{title}}",
251
+ "table-container-soothed-offset_other": "{{soothedOffset}} - {{pageSize}} 共 {{count}} {{title}}",
252
+ "table-container-current-page": "{{currentPage}} 共 {{soothedPageCount}}",
253
+ "timeline-request-return": "请求退货",
254
+ "timeline-register-exchange": "注册换货",
255
+ "timeline-register-claim": "注册索赔",
256
+ "timeline-success": "成功",
257
+ "timeline-added-note": "添加注释",
258
+ "timeline-error": "错误",
259
+ "timeline-timeline": "时间线",
260
+ "upload-modal-new": "新",
261
+ "upload-modal-updates": "更新",
262
+ "upload-modal-drop-your-file-here-or": "将您的文件拖到这里,或",
263
+ "upload-modal-click-to-browse": "点击浏览。",
264
+ "upload-modal-only-csv-files-are-supported": "仅支持 .csv 文件。",
265
+ "upload-modal-import-file-title": "导入 {{fileTitle}}",
266
+ "upload-modal-cancel": "取消",
267
+ "upload-modal-import-list": "导入列表",
268
+ "add-products-modal-add-products": "添加产品",
269
+ "add-products-modal-search-by-name-or-description": "按名称或描述搜索...",
270
+ "add-products-modal-cancel": "取消",
271
+ "add-products-modal-save": "保存",
272
+ "add-products-modal-product-details": "产品详情",
273
+ "add-products-modal-status": "状态",
274
+ "add-products-modal-variants": "变体",
275
+ "templates-general": "通用",
276
+ "templates-first-name": "名字",
277
+ "templates-last-name": "姓氏",
278
+ "templates-company": "公司",
279
+ "templates-phone": "电话",
280
+ "templates-billing-address": "账单地址",
281
+ "templates-shipping-address": "送货地址",
282
+ "templates-address": "地址",
283
+ "templates-address-1": "地址1",
284
+ "templates-address-2": "地址2",
285
+ "templates-postal-code": "邮政编码",
286
+ "templates-city": "城市",
287
+ "templates-province": "省份",
288
+ "templates-country": "国家",
289
+ "templates-metadata": "元数据",
290
+ "collection-modal-success": "成功",
291
+ "collection-modal-successfully-updated-collection": "成功更新收藏",
292
+ "collection-modal-error": "错误",
293
+ "collection-modal-successfully-created-collection": "成功创建收藏",
294
+ "collection-modal-edit-collection": "编辑收藏",
295
+ "collection-modal-add-collection": "添加收藏",
296
+ "collection-modal-description": "要创建收藏,您只需要标题和标识。",
297
+ "collection-modal-details": "详情",
298
+ "collection-modal-title-label": "标题",
299
+ "collection-modal-title-placeholder": "太阳镜",
300
+ "collection-modal-handle-label": "标识",
301
+ "collection-modal-handle-placeholder": "太阳镜",
302
+ "collection-modal-slug-description": "用于集合的URL Slug。如果留空,将自动生成。",
303
+ "collection-modal-metadata": "元数据",
304
+ "collection-modal-cancel": "取消",
305
+ "collection-modal-save-collection": "保存集合",
306
+ "collection-modal-publish-collection": "发布集合",
307
+ "collection-product-table-add-products": "添加产品",
308
+ "collection-product-table-products": "产品",
309
+ "collection-product-table-search-products": "搜索产品",
310
+ "collection-product-table-cancel": "取消",
311
+ "collection-product-table-save": "保存",
312
+ "collection-product-table-sort-by": "排序方式",
313
+ "collection-product-table-all": "全部",
314
+ "collection-product-table-newest": "最新",
315
+ "collection-product-table-oldest": "最旧",
316
+ "collection-product-table-title": "标题",
317
+ "collection-product-table-decide-status-published": "已发布",
318
+ "collection-product-table-draft": "草稿",
319
+ "collection-product-table-proposed": "建议",
320
+ "collection-product-table-rejected": "已拒绝",
321
+ "collection-product-table-remove-product-from-collection": "从集合中移除产品",
322
+ "collection-product-table-product-removed-from-collection": "产品已从集合中移除",
323
+ "collections-table-delete-collection": "删除集合",
324
+ "collections-table-confirm-delete": "您确定要删除此集合吗?",
325
+ "collections-table-edit": "编辑",
326
+ "collections-table-delete": "删除",
327
+ "collections-table-title": "标题",
328
+ "collections-table-handle": "标识",
329
+ "collections-table-created-at": "创建于",
330
+ "collections-table-updated-at": "更新于",
331
+ "collections-table-products": "产品",
332
+ "customer-group-table-details": "详情",
333
+ "customer-group-table-delete": "删除",
334
+ "customer-group-table-success": "成功",
335
+ "customer-group-table-group-deleted": "组已删除",
336
+ "customer-group-table-error": "错误",
337
+ "customer-group-table-failed-to-delete-the-group": "无法删除组",
338
+ "customer-group-table-customer-groups": "客户组",
339
+ "customer-group-table-delete-from-the-group": "从组中删除",
340
+ "customer-group-table-customer-groups-title": "客户组",
341
+ "customer-group-table-groups": "组",
342
+ "customer-group-table-all": "全部",
343
+ "customer-group-table-edit-customers": "编辑客户",
344
+ "customer-group-table-customers": "客户",
345
+ "customer-group-table-cancel": "取消",
346
+ "customer-group-table-save": "保存",
347
+ "customer-orders-table-orders": "订单",
348
+ "customer-orders-table-transfer-order": "转移订单",
349
+ "customer-orders-table-paid": "已支付",
350
+ "customer-orders-table-awaiting": "等待中",
351
+ "customer-orders-table-requires-action": "需要操作",
352
+ "customer-orders-table-n-a": "N/A",
353
+ "customer-orders-table-fulfilled": "已完成",
354
+ "customer-orders-table-shipped": "已发货",
355
+ "customer-orders-table-not-fulfilled": "未完成",
356
+ "customer-orders-table-partially-fulfilled": "部分完成",
357
+ "customer-orders-table-partially-shipped": "部分发货",
358
+ "customer-orders-table-order": "订单",
359
+ "customer-orders-table-remainder-more": "+ {{remainder}} 更多",
360
+ "customer-orders-table-date": "日期",
361
+ "customer-orders-table-fulfillment": "履行",
362
+ "customer-orders-table-status": "状态",
363
+ "customer-orders-table-total": "总计",
364
+ "customer-table-customers": "客户",
365
+ "customer-table-edit": "编辑",
366
+ "customer-table-details": "详情",
367
+ "customer-table-date-added": "添加日期",
368
+ "customer-table-name": "姓名",
369
+ "customer-table-email": "电子邮件",
370
+ "customer-table-orders": "订单",
371
+ "discount-filter-dropdown-filters": "过滤器",
372
+ "discount-table-discounts": "折扣",
373
+ "discount-table-search-by-code-or-description": "按代码或描述搜索...",
374
+ "discount-table-success": "成功",
375
+ "discount-table-successfully-copied-discount": "成功复制折扣",
376
+ "discount-table-error": "错误",
377
+ "discount-table-scheduled": "计划中",
378
+ "discount-table-expired": "已过期",
379
+ "discount-table-active": "活动",
380
+ "discount-table-disabled": "已禁用",
381
+ "discount-table-free-shipping": "免费运费",
382
+ "discount-table-code": "代码",
383
+ "discount-table-description": "描述",
384
+ "discount-table-amount": "金额",
385
+ "discount-table-status": "状态",
386
+ "discount-table-redemptions": "兑换",
387
+ "discount-table-delete-discount": "删除折扣",
388
+ "discount-table-confirm-delete": "您确定要删除此折扣吗?",
389
+ "discount-table-publish": "发布",
390
+ "discount-table-unpublish": "取消发布",
391
+ "discount-table-successfully-published-discount": "成功发布折扣",
392
+ "discount-table-successfully-unpublished-discount": "成功取消发布折扣",
393
+ "discount-table-duplicate": "复制",
394
+ "discount-table-delete": "删除",
395
+ "draft-order-table-draft-orders": "草稿订单",
396
+ "draft-order-table-completed": "已完成",
397
+ "draft-order-table-open": "打开",
398
+ "draft-order-table-draft": "草稿",
399
+ "draft-order-table-order": "订单",
400
+ "draft-order-table-date-added": "添加日期",
401
+ "draft-order-table-customer": "客户",
402
+ "draft-order-table-status": "状态",
403
+ "gift-card-filter-dropdown-is-in-the-last": "在最后",
404
+ "gift-card-filter-dropdown-is-older-than": "早于",
405
+ "gift-card-filter-dropdown-is-after": "晚于",
406
+ "gift-card-filter-dropdown-is-before": "早于",
407
+ "gift-card-filter-dropdown-is-equal-to": "等于",
408
+ "gift-card-filter-dropdown-filters": "过滤器",
409
+ "gift-card-filter-dropdown-status": "状态",
410
+ "gift-card-filter-dropdown-payment-status": "支付状态",
411
+ "gift-card-filter-dropdown-fulfillment-status": "履行状态",
412
+ "gift-card-filter-dropdown-date": "日期",
413
+ "gift-card-table-gift-cards": "礼品卡",
414
+ "gift-card-table-code": "代码",
415
+ "gift-card-table-order": "订单",
416
+ "gift-card-table-original-amount": "原始金额",
417
+ "gift-card-table-balance": "余额",
418
+ "gift-card-table-region-has-been-deleted": "地区已被删除",
419
+ "gift-card-table-none": "无",
420
+ "gift-card-table-created": "创建于",
421
+ "image-table-file-name": "文件名",
422
+ "image-table-thumbnail": "缩略图",
423
+ "image-table-select-thumbnail-image-for-product": "选择要用作此产品缩略图的图像",
424
+ "inventory-table-inventory-items": "库存项目",
425
+ "inventory-table-actions-adjust-availability": "调整可用性",
426
+ "inventory-table-view-product": "查看产品",
427
+ "inventory-table-success": "成功",
428
+ "inventory-table-inventory-item-updated-successfully": "库存项目已成功更新",
429
+ "inventory-table-adjust-availability": "调整可用性",
430
+ "inventory-table-cancel": "取消",
431
+ "inventory-table-save-and-close": "保存并关闭",
432
+ "inventory-table-item": "项目",
433
+ "inventory-table-variant": "变体",
434
+ "inventory-table-sku": "SKU",
435
+ "inventory-table-reserved": "已预留",
436
+ "inventory-table-in-stock": "有库存",
437
+ "order-filter-dropdown-filters": "过滤器",
438
+ "order-filter-dropdown-status": "状态",
439
+ "order-filter-dropdown-payment-status": "支付状态",
440
+ "order-filter-dropdown-fulfillment-status": "履行状态",
441
+ "order-filter-dropdown-regions": "地区",
442
+ "order-filter-dropdown-sales-channel": "销售渠道",
443
+ "order-filter-dropdown-date": "日期",
444
+ "order-table-paid": "已支付",
445
+ "order-table-awaiting": "等待中",
446
+ "order-table-requires-action": "需要操作",
447
+ "order-table-canceled": "已取消",
448
+ "order-table-n-a": "N/A",
449
+ "order-table-order": "订单",
450
+ "order-table-date-added": "添加日期",
451
+ "order-table-customer": "客户",
452
+ "order-table-fulfillment": "履行",
453
+ "order-table-payment-status": "支付状态",
454
+ "order-table-sales-channel": "销售渠道",
455
+ "order-table-total": "总计",
456
+ "order-table-filters-complete": "已完成",
457
+ "order-table-filters-incomplete": "未完成",
458
+ "price-list-table-filters": "过滤器",
459
+ "price-list-table-status": "状态",
460
+ "price-list-table-type": "类型",
461
+ "price-list-table-price-lists": "价格表",
462
+ "price-list-table-success": "成功",
463
+ "price-list-table-successfully-copied-price-list": "成功复制价格表",
464
+ "price-list-table-error": "错误",
465
+ "price-list-table-delete-price-list": "删除价格表",
466
+ "price-list-table-confirm-delete": "您确定要删除此价格表吗?",
467
+ "price-list-table-successfully-deleted-the-price-list": "成功删除了价格表",
468
+ "price-list-table-successfully-unpublished-price-list": "成功取消发布价格表",
469
+ "price-list-table-successfully-published-price-list": "成功发布价格表",
470
+ "price-list-table-unpublish": "取消发布",
471
+ "price-list-table-publish": "发布",
472
+ "price-list-table-delete": "删除",
473
+ "price-list-table-name": "名称",
474
+ "price-list-table-description": "描述",
475
+ "price-list-table-groups": "组",
476
+ "price-list-table-other-more": "+ {{other}} 更多",
477
+ "price-overrides-apply-overrides-on-selected-variants": "对选定变体应用覆盖",
478
+ "price-overrides-apply-on-all-variants": "应用于所有变体",
479
+ "price-overrides-prices": "价格",
480
+ "price-overrides-cancel": "取消",
481
+ "price-overrides-save-and-close": "保存并关闭",
482
+ "price-overrides-show-regions": "显示地区",
483
+ "product-table-products": "产品",
484
+ "product-table-copy-success": "成功",
485
+ "product-table-copy-created-a-new-product": "创建了新产品",
486
+ "product-table-copy-error": "错误",
487
+ "product-table-delete-product": "删除产品",
488
+ "product-table-confirm-delete": "您确定要删除此产品吗?",
489
+ "product-table-edit": "编辑",
490
+ "product-table-unpublish": "取消发布",
491
+ "product-table-publish": "发布",
492
+ "product-table-draft": "草稿",
493
+ "product-table-published": "已发布",
494
+ "product-table-success": "成功",
495
+ "product-table-successfully-unpublished-product": "成功取消发布产品",
496
+ "product-table-successfully-published-product": "成功发布产品",
497
+ "product-table-error": "错误",
498
+ "product-table-duplicate": "复制",
499
+ "product-table-delete": "删除",
500
+ "product-table-proposed": "建议",
501
+ "product-table-published-title": "已发布",
502
+ "product-table-rejected": "已拒绝",
503
+ "product-table-draft-title": "草稿",
504
+ "product-table-name": "名称",
505
+ "product-table-collection": "集合",
506
+ "product-table-status": "状态",
507
+ "product-table-availability": "可用性",
508
+ "product-table-inventory": "库存",
509
+ "product-table-inventory-in-stock-count_one": "{{count}} 个变体有库存",
510
+ "product-table-inventory-in-stock-count_other": "{{count}} 个变体有库存",
511
+ "reservation-form-location": "位置",
512
+ "reservation-form-choose-where-you-wish-to-reserve-from": "选择您希望从哪里预订。",
513
+ "reservation-form-item-to-reserve": "要预订的项目",
514
+ "reservation-form-select-the-item-that-you-wish-to-reserve": "选择您要预订的项目。",
515
+ "reservation-form-item": "项目",
516
+ "reservation-form-in-stock": "有库存",
517
+ "reservation-form-available": "可用",
518
+ "reservation-form-reserve": "预订",
519
+ "reservation-form-remove-item": "移除项目",
520
+ "reservation-form-description": "描述",
521
+ "reservation-form-what-type-of-reservation-is-this": "这是什么类型的预订?",
522
+ "reservations-table-reservations": "预订",
523
+ "reservations-table-edit": "编辑",
524
+ "reservations-table-delete": "删除",
525
+ "reservations-table-confirm-delete": "您确定要移除此预订吗?",
526
+ "reservations-table-remove-reservation": "移除预订",
527
+ "reservations-table-reservation-has-been-removed": "预订已被移除",
528
+ "new-success": "成功",
529
+ "new-successfully-created-reservation": "预订成功创建",
530
+ "new-error": "错误",
531
+ "new-cancel": "取消",
532
+ "new-save-reservation": "保存预订",
533
+ "new-reserve-item": "预订项目",
534
+ "new-metadata": "元数据",
535
+ "reservations-table-order-id": "订单ID",
536
+ "reservations-table-description": "描述",
537
+ "reservations-table-created": "创建日期",
538
+ "reservations-table-quantity": "数量",
539
+ "search-modal-start-typing-to-search": "开始输入以搜索...",
540
+ "search-modal-clear-search": "清除搜索",
541
+ "search-modal-or": "或",
542
+ "search-modal-to-navigate": "导航",
543
+ "search-modal-to-select-and": "选择,并",
544
+ "search-modal-to-search-anytime": "随时搜索",
545
+ "templates-settings": "设置",
546
+ "templates-manage-the-settings-for-your-store": "管理您商店的设置",
547
+ "transfer-orders-modal-info": "信息",
548
+ "transfer-orders-modal-customer-is-already-the-owner-of-the-order": "客户已经是订单的所有者",
549
+ "transfer-orders-modal-success": "成功",
550
+ "transfer-orders-modal-successfully-transferred-order-to-different-customer": "成功将订单转移给不同的客户",
551
+ "transfer-orders-modal-error": "错误",
552
+ "transfer-orders-modal-could-not-transfer-order-to-different-customer": "无法将订单转移给不同的客户",
553
+ "transfer-orders-modal-transfer-order": "转移订单",
554
+ "transfer-orders-modal-order": "订单",
555
+ "transfer-orders-modal-current-owner": "当前所有者",
556
+ "transfer-orders-modal-the-customer-currently-related-to-this-order": "当前与此订单相关的客户",
557
+ "transfer-orders-modal-new-owner": "新所有者",
558
+ "transfer-orders-modal-the-customer-to-transfer-this-order-to": "要将此订单转移给的客户",
559
+ "transfer-orders-modal-cancel": "取消",
560
+ "transfer-orders-modal-confirm": "确认",
561
+ "templates-edit-user": "编辑用户",
562
+ "templates-remove-user": "删除用户",
563
+ "templates-resend-invitation": "重新发送邀请",
564
+ "templates-success": "成功",
565
+ "templates-invitiation-link-has-been-resent": "邀请链接已重新发送",
566
+ "templates-copy-invite-link": "复制邀请链接",
567
+ "templates-invite-link-copied-to-clipboard": "邀请链接已复制到剪贴板",
568
+ "templates-remove-invitation": "删除邀请",
569
+ "templates-expired": "已过期",
570
+ "templates-pending": "待处理",
571
+ "templates-all": "全部",
572
+ "templates-member": "成员",
573
+ "templates-admin": "管理员",
574
+ "templates-no-team-permissions": "无团队权限",
575
+ "templates-status": "状态",
576
+ "templates-active": "活动",
577
+ "templates-name": "名称",
578
+ "templates-email": "电子邮件",
579
+ "templates-team-permissions": "团队权限",
580
+ "templates-confirm-remove": "您确定要删除此用户吗?",
581
+ "templates-remove-user-heading": "删除用户",
582
+ "templates-user-has-been-removed": "用户已被移除",
583
+ "templates-confirm-remove-invite": "您确定要删除此邀请吗?",
584
+ "templates-remove-invite": "删除邀请",
585
+ "templates-invitiation-has-been-removed": "邀请已被删除",
586
+ "multiselect-choose-categories": "选择类别",
587
+ "domain-categories-multiselect-selected-with-counts_one": "{{count}}",
588
+ "domain-categories-multiselect-selected-with-counts_other": "{{count}}",
589
+ "details-success": "成功",
590
+ "details-updated-products-in-collection": "更新集合中的产品",
591
+ "details-error": "错误",
592
+ "details-back-to-collections": "返回到集合",
593
+ "details-edit-collection": "编辑集合",
594
+ "details-delete": "删除",
595
+ "details-metadata": "元数据",
596
+ "details-edit-products": "编辑产品",
597
+ "details-products-in-this-collection": "此集合中的产品",
598
+ "details-raw-collection": "原始集合",
599
+ "details-delete-collection": "删除集合",
600
+ "details-successfully-deleted-collection": "成功删除集合",
601
+ "details-yes-delete": "是,删除",
602
+ "details-successfully-updated-customer": "成功更新客户",
603
+ "details-customer-details": "客户详情",
604
+ "details-general": "常规",
605
+ "details-first-name": "名字",
606
+ "details-lebron": "勒布朗",
607
+ "details-last-name": "姓氏",
608
+ "details-james": "詹姆斯",
609
+ "details-email": "电子邮件",
610
+ "details-phone-number": "电话号码",
611
+ "details-cancel": "取消",
612
+ "details-save-and-close": "保存并关闭",
613
+ "details-edit": "编辑",
614
+ "details-back-to-customers": "返回到客户",
615
+ "details-first-seen": "首次见面",
616
+ "details-phone": "电话",
617
+ "details-orders": "订单",
618
+ "details-user": "用户",
619
+ "details-orders_one": "订单 {{count}}",
620
+ "details-orders_other": "订单 {{count}}",
621
+ "details-an-overview-of-customer-orders": "客户订单概览",
622
+ "details-raw-customer": "原始客户",
623
+ "groups-group-updated": "组已更新",
624
+ "groups-group-created": "组已创建",
625
+ "groups-the-customer-group-has-been-updated": "客户组已更新",
626
+ "groups-the-customer-group-has-been-created": "客户组已创建",
627
+ "groups-edit-customer-group": "编辑客户组",
628
+ "groups-create-a-new-customer-group": "创建新的客户组",
629
+ "groups-details": "详情",
630
+ "groups-metadata": "元数据",
631
+ "groups-cancel": "取消",
632
+ "groups-edit-group": "编辑组",
633
+ "groups-publish-group": "发布组",
634
+ "groups-no-customers-in-this-group-yet": "此组中尚无客户",
635
+ "groups-customers": "客户",
636
+ "groups-edit": "编辑",
637
+ "groups-delete": "删除",
638
+ "groups-yes-delete": "是,删除",
639
+ "groups-delete-the-group": "删除组",
640
+ "groups-group-deleted": "组已删除",
641
+ "groups-confirm-delete-customer-group": "您确定要删除此客户组吗?",
642
+ "groups-back-to-customer-groups": "返回到客户组",
643
+ "groups-new-group": "新组",
644
+ "add-condition-conditions-were-successfully-added": "条件已成功添加",
645
+ "add-condition-discount-conditions-updated": "折扣条件已更新",
646
+ "add-condition-use-conditions-must-be-used-within-a-conditions-provider": "useConditions必须在ConditionsProvider内使用",
647
+ "collections-search": "搜索...",
648
+ "collections-cancel": "取消",
649
+ "collections-save-and-go-back": "保存并返回",
650
+ "collections-save-and-close": "保存并关闭",
651
+ "customer-groups-search": "搜索...",
652
+ "customer-groups-cancel": "取消",
653
+ "customer-groups-save-and-go-back": "保存并返回",
654
+ "customer-groups-save-and-close": "保存并关闭",
655
+ "product-types-search": "搜索...",
656
+ "product-types-cancel": "取消",
657
+ "product-types-save-and-go-back": "保存并返回",
658
+ "product-types-save-and-close": "保存并关闭",
659
+ "products-search": "搜索...",
660
+ "products-cancel": "取消",
661
+ "products-save-and-go-back": "保存并返回",
662
+ "products-save-and-close": "保存并关闭",
663
+ "tags-search": "搜索...",
664
+ "tags-cancel": "取消",
665
+ "tags-save-and-go-back": "保存并返回",
666
+ "tags-save-and-close": "保存并关闭",
667
+ "edit-condition-add-conditions": "添加条件",
668
+ "edit-condition-selected-with-count_one": "{{count}}",
669
+ "edit-condition-selected-with-count_other": "{{count}}",
670
+ "edit-condition-deselect": "取消选择",
671
+ "edit-condition-remove": "移除",
672
+ "edit-condition-add": "添加",
673
+ "edit-condition-title": "编辑折扣条件中的{{type}}",
674
+ "edit-condition-close": "关闭",
675
+ "edit-condition-success": "成功",
676
+ "edit-condition-the-resources-were-successfully-added": "资源已成功添加",
677
+ "edit-condition-error": "错误",
678
+ "edit-condition-failed-to-add-resources": "添加资源失败",
679
+ "edit-condition-the-resources-were-successfully-removed": "资源已成功移除",
680
+ "edit-condition-failed-to-remove-resources": "移除资源失败",
681
+ "edit-condition-use-edit-condition-context-must-be-used-within-an-edit-condition-provider": "useEditConditionContext必须在EditConditionProvider内使用",
682
+ "conditions-conditions": "条件",
683
+ "conditions-add-condition-label": "添加条件",
684
+ "conditions-this-discount-has-no-conditions": "此折扣没有条件",
685
+ "conditions-success": "成功",
686
+ "conditions-condition-removed": "条件已移除",
687
+ "conditions-error": "错误",
688
+ "conditions-edit-condition": "编辑条件",
689
+ "conditions-delete-condition": "删除条件",
690
+ "conditions-discount-is-applicable-to-specific-products": "折扣适用于特定产品",
691
+ "conditions-discount-is-applicable-to-specific-collections": "折扣适用于特定集合",
692
+ "conditions-discount-is-applicable-to-specific-product-tags": "折扣适用于特定产品标签",
693
+ "conditions-discount-is-applicable-to-specific-product-types": "折扣适用于特定产品类型",
694
+ "conditions-discount-is-applicable-to-specific-customer-groups": "折扣适用于特定客户组",
695
+ "configurations-success": "成功",
696
+ "configurations-discount-updated-successfully": "折扣已成功更新",
697
+ "configurations-error": "错误",
698
+ "configurations-edit-configurations": "编辑配置",
699
+ "configurations-cancel": "取消",
700
+ "configurations-save": "保存",
701
+ "configurations-configurations": "配置",
702
+ "configurations-start-date": "开始日期",
703
+ "configurations-end-date": "结束日期",
704
+ "configurations-delete-configuration": "删除配置",
705
+ "configurations-discount-end-date-removed": "折扣结束日期已移除",
706
+ "configurations-number-of-redemptions": "兑换次数",
707
+ "configurations-redemption-limit-removed": "兑换限制已移除",
708
+ "configurations-delete-setting": "删除设置",
709
+ "configurations-discount-duration-removed": "折扣持续时间已移除",
710
+ "general-success": "成功",
711
+ "general-discount-updated-successfully": "折扣更新成功",
712
+ "general-error": "错误",
713
+ "general-edit-general-information": "编辑常规信息",
714
+ "general-details": "详细信息",
715
+ "general-metadata": "元数据",
716
+ "general-cancel": "取消",
717
+ "general-save-and-close": "保存并关闭",
718
+ "general-delete-promotion": "删除促销",
719
+ "general-confirm-delete-promotion": "您确定要删除此促销吗?",
720
+ "general-promotion-deleted-successfully": "促销删除成功",
721
+ "general-discount-published-successfully": "折扣成功发布",
722
+ "general-discount-drafted-successfully": "折扣成功起草",
723
+ "general-delete-discount": "删除折扣",
724
+ "general-template-discount": "模板折扣",
725
+ "general-published": "已发布",
726
+ "general-draft": "起草",
727
+ "general-discount-amount": "折扣金额",
728
+ "general-valid-regions": "有效地区",
729
+ "general-total-redemptions": "总兑换次数",
730
+ "general-free-shipping": "免费送货",
731
+ "general-unknown-discount-type": "未知折扣类型",
732
+ "details-discount-deleted": "折扣已删除",
733
+ "details-confirm-delete-discount": "您确定要删除此折扣吗?",
734
+ "details-delete-discount": "删除折扣",
735
+ "details-back-to-discounts": "返回到折扣",
736
+ "details-raw-discount": "原始折扣",
737
+ "discounts-add-discount": "添加折扣",
738
+ "discount-form-add-conditions": "添加条件",
739
+ "discount-form-choose-a-condition-type": "选择条件类型",
740
+ "discount-form-you-can-only-add-one-of-each-type-of-condition": "您只能添加每种类型的条件一次",
741
+ "discount-form-you-cannot-add-any-more-conditions": "您不能再添加条件",
742
+ "discount-form-cancel": "取消",
743
+ "discount-form-save": "保存",
744
+ "add-condition-tables-cancel": "取消",
745
+ "add-condition-tables-save-and-add-more": "保存并添加更多",
746
+ "add-condition-tables-save-and-close": "保存并关闭",
747
+ "add-condition-tables-search-by-title": "按标题搜索...",
748
+ "add-condition-tables-search-groups": "搜索组...",
749
+ "add-condition-tables-search-products": "搜索产品...",
750
+ "add-condition-tables-search-by-tag": "按标签搜索...",
751
+ "add-condition-tables-search-by-type": "按类型搜索...",
752
+ "details-condition-tables-search-by-title": "按标题搜索...",
753
+ "details-condition-tables-search-groups": "搜索组...",
754
+ "details-condition-tables-cancel": "取消",
755
+ "details-condition-tables-save-and-add-more": "保存并添加更多",
756
+ "details-condition-tables-save-and-close": "保存并关闭",
757
+ "details-condition-tables-search-products": "搜索产品...",
758
+ "details-condition-tables-search-by-tag": "按标签搜索...",
759
+ "details-condition-tables-search-by-type": "按类型搜索...",
760
+ "edit-condition-tables-search-by-title": "按标题搜索...",
761
+ "edit-condition-tables-title": "标题",
762
+ "edit-condition-tables-search-groups": "搜索组...",
763
+ "edit-condition-tables-cancel": "取消",
764
+ "edit-condition-tables-delete-condition": "删除条件",
765
+ "edit-condition-tables-save": "保存",
766
+ "edit-condition-tables-search-products": "搜索产品...",
767
+ "edit-condition-tables-search-by-tag": "按标签搜索...",
768
+ "edit-condition-tables-search-by-type": "按类型搜索...",
769
+ "shared-title": "标题",
770
+ "shared-products": "产品",
771
+ "shared-applies-to-the-selected-items": "适用于所选项目。",
772
+ "shared-applies-to-all-items-except-the-selected-items": "适用于除所选项目之外的所有项目。",
773
+ "shared-members": "会员",
774
+ "shared-status": "状态",
775
+ "shared-variants": "变体",
776
+ "shared-tag": "标签",
777
+ "shared-type": "类型",
778
+ "edit-conditions-modal-title": "编辑{{title}}",
779
+ "form-use-discount-form-must-be-a-child-of-discount-form-context": "useDiscountForm必须是DiscountFormContext的子级",
780
+ "discount-form-error": "错误",
781
+ "discount-form-save-as-draft": "保存为草稿",
782
+ "discount-form-publish-discount": "发布折扣",
783
+ "discount-form-create-new-discount": "创建新折扣",
784
+ "discount-form-discount-type": "折扣类型",
785
+ "discount-form-select-a-discount-type": "选择折扣类型",
786
+ "discount-form-allocation": "分配",
787
+ "discount-form-general": "常规",
788
+ "discount-form-configuration": "配置",
789
+ "discount-form-discount-code-application-disclaimer": "折扣代码从您点击发布按钮开始,如果不作更改将一直有效。",
790
+ "discount-form-conditions": "条件",
791
+ "discount-form-discount-code-apply-to-all-products-if-left-untouched": "如果不作更改,折扣代码将适用于所有产品。",
792
+ "discount-form-add-conditions-to-your-discount": "为您的折扣添加条件",
793
+ "discount-form-metadata": "元数据",
794
+ "discount-form-metadata-usage-description": "元数据允许您向折扣添加附加信息。",
795
+ "condition-item-remainder-more": "+{{remainder}} 更多",
796
+ "conditions-edit": "编辑",
797
+ "conditions-product": "产品",
798
+ "conditions-collection": "集合",
799
+ "conditions-tag": "标签",
800
+ "conditions-customer-group": "客户组",
801
+ "conditions-type": "类型",
802
+ "conditions-add-condition": "添加条件",
803
+ "sections-start-date": "开始日期",
804
+ "sections-schedule-the-discount-to-activate-in-the-future": "安排折扣在将来生效。",
805
+ "sections-select-discount-start-date": "如果您希望安排折扣在将来生效,您可以在此设置开始日期,否则折扣将立即生效。",
806
+ "sections-start-time": "开始时间",
807
+ "sections-discount-has-an-expiry-date": "折扣有到期日期吗?",
808
+ "sections-schedule-the-discount-to-deactivate-in-the-future": "安排折扣在将来停用。",
809
+ "sections-select-discount-end-date": "如果您希望安排折扣在将来停用,您可以在此设置到期日期。",
810
+ "sections-expiry-date": "到期日期",
811
+ "sections-expiry-time": "到期时间",
812
+ "sections-limit-the-number-of-redemptions": "限制兑换次数?",
813
+ "sections-limit-applies-across-all-customers-not-per-customer": "限制适用于所有客户,而不是每个客户。",
814
+ "sections-limit-discount-number-of-uses": "如果您希望限制客户可以兑换此折扣的次数,您可以在此设置限制。",
815
+ "sections-number-of-redemptions": "兑换次数",
816
+ "sections-availability-duration": "有效期?",
817
+ "sections-set-the-duration-of-the-discount": "设置折扣的持续时间。",
818
+ "sections-select-a-discount-type": "选择折扣类型",
819
+ "sections-total-amount": "总金额",
820
+ "sections-apply-to-the-total-amount": "适用于总金额",
821
+ "sections-item-specific": "特定项目",
822
+ "sections-apply-to-every-allowed-item": "适用于每个允许的项目",
823
+ "sections-percentage": "百分比",
824
+ "sections-fixed-amount": "固定金额",
825
+ "sections-discount-in-whole-numbers": "整数折扣",
826
+ "sections-you-can-only-select-one-valid-region-if-you-want-to-use-the-fixed-amount-type": "如果要使用固定金额类型,您只能选择一个有效地区",
827
+ "sections-free-shipping": "免费送货",
828
+ "sections-override-delivery-amount": "覆盖交付金额",
829
+ "sections-at-least-one-region-is-required": "至少需要一个地区",
830
+ "sections-choose-valid-regions": "选择有效地区",
831
+ "sections-code": "代码",
832
+ "sections-summersale-10": "SUMMERSALE10",
833
+ "sections-code-is-required": "代码是必需的",
834
+ "sections-amount-is-required": "金额是必需的",
835
+ "sections-amount": "金额",
836
+ "sections-customer-invoice-code": "客户在结账时输入的代码。这将显示在客户的发票上。",
837
+ "sections-uppercase-letters-and-numbers-only": "仅允许大写字母和数字。",
838
+ "sections-description": "描述",
839
+ "sections-summer-sale-2022": "2022年夏季特卖",
840
+ "sections-this-is-a-template-discount": "这是一个模板折扣",
841
+ "sections-template-discounts-description": "模板折扣允许您定义一组规则,可以在一组折扣中使用。这在需要为每个用户生成唯一代码的活动中非常有用,但所有唯一代码的规则应相同。",
842
+ "discount-form-product": "产品",
843
+ "discount-form-only-for-specific-products": "仅适用于特定产品",
844
+ "discount-form-choose-products": "选择产品",
845
+ "discount-form-customer-group": "客户组",
846
+ "discount-form-only-for-specific-customer-groups": "仅适用于特定客户组",
847
+ "discount-form-choose-groups": "选择组",
848
+ "discount-form-tag": "标签",
849
+ "discount-form-only-for-specific-tags": "仅适用于特定标签",
850
+ "discount-form-collection": "集合",
851
+ "discount-form-only-for-specific-product-collections": "仅适用于特定产品集合",
852
+ "discount-form-choose-collections": "选择集合",
853
+ "discount-form-type": "类型",
854
+ "discount-form-only-for-specific-product-types": "仅适用于特定产品类型",
855
+ "discount-form-choose-types": "选择类型",
856
+ "utils-products": "产品",
857
+ "utils-groups": "组",
858
+ "utils-tags": "标签",
859
+ "utils-collections": "集合",
860
+ "utils-types": "类型",
861
+ "gift-cards-created-gift-card": "创建礼品卡",
862
+ "gift-cards-custom-gift-card-was-created-successfully": "自定义礼品卡创建成功",
863
+ "gift-cards-error": "错误",
864
+ "gift-cards-custom-gift-card": "自定义礼品卡",
865
+ "gift-cards-details": "详细信息",
866
+ "gift-cards-receiver": "接收者",
867
+ "gift-cards-cancel": "取消",
868
+ "gift-cards-create-and-send": "创建并发送",
869
+ "details-updated-gift-card": "更新礼品卡",
870
+ "details-gift-card-was-successfully-updated": "礼品卡更新成功",
871
+ "details-failed-to-update-gift-card": "更新礼品卡失败",
872
+ "details-edit-gift-card": "编辑礼品卡",
873
+ "details-details": "详细信息",
874
+ "details-edit-details": "编辑详细信息",
875
+ "details-update-balance-label": "更新余额",
876
+ "details-updated-status": "更新状态",
877
+ "details-successfully-updated-the-status-of-the-gift-card": "成功更新礼品卡状态",
878
+ "details-back-to-gift-cards": "返回到礼品卡",
879
+ "details-original-amount": "原始金额",
880
+ "details-balance": "余额",
881
+ "details-region": "地区",
882
+ "details-expires-on": "到期日",
883
+ "details-created": "创建日期",
884
+ "details-raw-gift-card": "原始礼品卡",
885
+ "details-balance-updated": "余额已更新",
886
+ "details-gift-card-balance-was-updated": "礼品卡余额已更新",
887
+ "details-failed-to-update-balance": "更新余额失败",
888
+ "details-update-balance": "更新余额",
889
+ "manage-back-to-gift-cards": "返回到礼品卡",
890
+ "gift-cards-please-enter-a-name-for-the-gift-card": "请输入礼品卡的名称",
891
+ "gift-cards-please-add-at-least-one-denomination": "请至少添加一个面额",
892
+ "gift-cards-denominations": "面额",
893
+ "gift-cards-success": "成功",
894
+ "gift-cards-successfully-created-gift-card": "成功创建礼品卡",
895
+ "gift-cards-create-gift-card": "创建礼品卡",
896
+ "gift-cards-gift-card-details": "礼品卡详情",
897
+ "gift-cards-name": "名称",
898
+ "gift-cards-the-best-gift-card": "最佳礼品卡",
899
+ "gift-cards-description": "描述",
900
+ "gift-cards-the-best-gift-card-of-all-time": "有史以来最好的礼品卡",
901
+ "gift-cards-thumbnail": "缩略图",
902
+ "gift-cards-delete": "删除",
903
+ "gift-cards-size-recommended": "推荐尺寸为1200 x 1600(3:4),每个最大10MB",
904
+ "gift-cards-amount": "金额",
905
+ "gift-cards-add-denomination": "添加面额",
906
+ "gift-cards-create-publish": "创建并发布",
907
+ "gift-cards-successfully-updated-gift-card": "成功更新礼品卡",
908
+ "gift-cards-gift-cards": "礼品卡",
909
+ "gift-cards-manage": "管理您商店的礼品卡",
910
+ "gift-cards-are-you-ready-to-sell-your-first-gift-card": "您准备好销售第一张礼品卡了吗?",
911
+ "gift-cards-no-gift-card-has-been-added-yet": "尚未添加礼品卡。",
912
+ "gift-cards-history": "历史记录",
913
+ "gift-cards-see-the-history-of-purchased-gift-cards": "查看已购买礼品卡的历史记录",
914
+ "gift-cards-successfully-deleted-gift-card": "成功删除礼品卡",
915
+ "gift-cards-yes-delete": "是,删除",
916
+ "gift-cards-delete-gift-card": "删除礼品卡",
917
+ "inventory-filters": "过滤器",
918
+ "address-form-address": "地址",
919
+ "address-form-company": "公司",
920
+ "address-form-address-1": "地址1",
921
+ "address-form-this-field-is-required": "此字段为必填项",
922
+ "address-form-address-2": "地址2",
923
+ "address-form-postal-code": "邮政编码",
924
+ "address-form-city": "城市",
925
+ "address-form-country": "国家",
926
+ "edit-sales-channels-edit-channels": "编辑通道",
927
+ "edit-sales-channels-add-channels": "添加通道",
928
+ "general-form-location-name": "位置名称",
929
+ "general-form-flagship-store-warehouse": "旗舰店,仓库",
930
+ "general-form-name-is-required": "名称是必需的",
931
+ "location-card-delete-location": "删除位置",
932
+ "location-card-confirm-delete": "您确定要删除此位置吗?这也将删除与此位置关联的所有库存级别和预订。",
933
+ "location-card-success": "成功",
934
+ "location-card-location-deleted-successfully": "位置删除成功",
935
+ "location-card-error": "错误",
936
+ "location-card-edit-details": "编辑详细信息",
937
+ "location-card-delete": "删除",
938
+ "location-card-connected-sales-channels": "已连接销售通道",
939
+ "sales-channels-form-add-sales-channels": "添加销售通道",
940
+ "sales-channels-form-edit-channels": "编辑通道",
941
+ "sales-channels-section-not-connected-to-any-sales-channels-yet": "尚未连接到任何销售通道",
942
+ "edit-success": "成功",
943
+ "edit-location-edited-successfully": "位置编辑成功",
944
+ "edit-error": "错误",
945
+ "edit-edit-location-details": "编辑位置详情",
946
+ "edit-metadata": "元数据",
947
+ "edit-cancel": "取消",
948
+ "edit-save-and-close": "保存并关闭",
949
+ "new-location-added-successfully": "位置添加成功",
950
+ "new-location-created": "位置创建成功,但关联销售通道时出现错误",
951
+ "new-cancel-location-changes": "您确定要取消未保存的更改吗?",
952
+ "new-yes-cancel": "是,取消",
953
+ "new-no-continue-creating": "不,继续创建",
954
+ "new-add-location": "添加位置",
955
+ "new-add-new-location": "添加新位置",
956
+ "new-general-information": "常规信息",
957
+ "new-location-details": "指定此位置的详细信息",
958
+ "new-select-location-channel": "指定此位置的项目可通过哪些销售通道购买。",
959
+ "oauth-complete-installation": "完成安装",
960
+ "claim-type-form-refund": "退款",
961
+ "claim-type-form-replace": "替换",
962
+ "items-to-receive-form-items-to-receive": "待收货物品",
963
+ "items-to-receive-form-product": "产品",
964
+ "items-to-receive-form-quantity": "数量",
965
+ "items-to-receive-form-refundable": "可退款",
966
+ "add-return-reason-reason-for-return": "退货原因",
967
+ "add-return-reason-reason": "原因",
968
+ "add-return-reason-choose-a-return-reason": "选择退货原因",
969
+ "add-return-reason-note": "备注",
970
+ "add-return-reason-product-was-damaged-during-shipping": "产品在运输过程中受损",
971
+ "add-return-reason-cancel": "取消",
972
+ "add-return-reason-save-and-go-back": "保存并返回",
973
+ "add-return-reason-select-reason-title": "选择原因",
974
+ "add-return-reason-edit-reason": "编辑原因",
975
+ "add-return-reason-select-reason": "选择原因",
976
+ "items-to-return-form-items-to-claim": "要索赔的物品",
977
+ "items-to-return-form-items-to-return": "要退还的物品",
978
+ "items-to-return-form-product": "产品",
979
+ "items-to-return-form-quantity": "数量",
980
+ "items-to-return-form-refundable": "可退款",
981
+ "add-additional-items-screen-go-back": "返回",
982
+ "add-additional-items-screen-add-products": "添加产品",
983
+ "add-additional-items-screen-add-product-variants": "添加产品变体",
984
+ "add-additional-items-screen-search-products": "搜索产品",
985
+ "add-additional-items-screen-variant-price-missing": "此变体在订单的区域/货币中没有价格,无法选择。",
986
+ "add-additional-items-screen-stock": "库存",
987
+ "add-additional-items-screen-price": "价格",
988
+ "add-additional-items-screen-price-overridden-in-price-list-applicable-to-this-order": "该价格在适用于此订单的价格表中被覆盖。",
989
+ "items-to-send-form-items-to-send": "待发送商品",
990
+ "items-to-send-form-add-products": "添加产品",
991
+ "items-to-send-form-product": "产品",
992
+ "items-to-send-form-quantity": "数量",
993
+ "items-to-send-form-price": "价格",
994
+ "items-to-send-form-price-overridden-in-price-list-applicable-to-this-order": "该价格在适用于此订单的价格表中被覆盖。",
995
+ "refund-amount-form-cancel-editing-refund-amount": "取消编辑退款金额",
996
+ "refund-amount-form-edit-refund-amount": "编辑退款金额",
997
+ "refund-amount-form-refund-amount-cannot-be-negative": "退款金额不能为负数",
998
+ "refund-amount-form-the-refund-amount-must-be-at-least-0": "退款金额必须至少为0",
999
+ "reservation-indicator-awaiting-reservation-count": "{{awaitingReservation}} 个商品未预留",
1000
+ "reservation-indicator-this-item-has-been-fulfilled": "此商品已完成。",
1001
+ "edit-reservation-button-quantity-item-location-name": "{{quantity}} 个商品:$ {{locationName}}",
1002
+ "reservation-indicator-edit-reservation": "编辑预留",
1003
+ "rma-summaries-claimed-items": "索赔商品",
1004
+ "rma-summaries-replacement-items": "替换商品",
1005
+ "rma-summaries-customer-refund-description": "客户将对索赔商品获得全额退款,因为替换商品和运费不会被扣除。或者,您可以选择在收到退回商品或创建替换商品时设置自定义退款金额。",
1006
+ "rma-summaries-refund-amount": "退款金额",
1007
+ "rma-summaries-the-customer-will-be-refunded-once-the-returned-items-are-received": "一旦收到退回商品,客户将获得退款",
1008
+ "rma-summaries-the-customer-will-be-refunded-immediately": "客户将立即获得退款",
1009
+ "rma-summaries-receiving": "收货中",
1010
+ "rma-summaries-free": "免费",
1011
+ "send-notification-form-return": "退货",
1012
+ "send-notification-form-exchange": "交换",
1013
+ "send-notification-form-claim": "索赔",
1014
+ "send-notification-form-send-notifications": "发送通知",
1015
+ "send-notification-form-if-unchecked-the-customer-will-not-receive-communication": "如果取消选中,客户将不会收到关于此{{subject}}的通信。",
1016
+ "shipping-address-form-shipping-address": "收货地址",
1017
+ "shipping-address-form-ship-to-a-different-address": "寄到其他地址",
1018
+ "shipping-address-form-cancel": "取消",
1019
+ "shipping-address-form-save-and-go-back": "保存并返回",
1020
+ "shipping-address-form-shipping-information": "运输信息",
1021
+ "shipping-form-shipping-for-return-items": "退货物品的运输",
1022
+ "shipping-form-shipping-for-replacement-items": "替换商品的运输",
1023
+ "shipping-form-shipping-method-is-required": "需要运输方式",
1024
+ "shipping-form-choose-shipping-method": "选择运输方式",
1025
+ "shipping-form-shipping-method": "运输方式",
1026
+ "shipping-form-add-custom-price": "添加自定义价格",
1027
+ "shipping-form-return-shipping-for-items-claimed-by-the-customer-is-complimentary": "客户索赔的商品的退货运费是免费的。",
1028
+ "shipping-form-shipping-for-replacement-items-is-complimentary": "替换商品的运费是免费的。",
1029
+ "components-decrease-quantity": "减少数量",
1030
+ "components-increase-quantity": "增加数量",
1031
+ "details-successfully-updated-address": "地址更新成功",
1032
+ "details-billing-address": "账单地址",
1033
+ "details-shipping-address": "送货地址",
1034
+ "details-contact": "联系方式",
1035
+ "details-location": "地点",
1036
+ "claim-are-you-sure-you-want-to-close": "您确定要关闭吗?",
1037
+ "claim-you-have-unsaved-changes-are-you-sure-you-want-to-close": "您有未保存的更改,您确定要关闭吗?",
1038
+ "claim-please-select-a-reason": "请选择一个原因",
1039
+ "claim-a-shipping-method-for-replacement-items-is-required": "需要替换商品的运输方式",
1040
+ "claim-successfully-created-claim": "索赔创建成功",
1041
+ "claim-created": "订单 #{{display_id}} 的索赔成功创建",
1042
+ "claim-error-creating-claim": "创建索赔时出错",
1043
+ "claim-create-claim": "创建索赔",
1044
+ "claim-location": "地点",
1045
+ "claim-choose-which-location-you-want-to-return-the-items-to": "选择要退回商品的地点。",
1046
+ "claim-select-location-to-return-to": "选择要退还的位置",
1047
+ "claim-cancel": "取消",
1048
+ "claim-submit-and-close": "提交并关闭",
1049
+ "create-fulfillment-error": "错误",
1050
+ "create-fulfillment-please-select-a-location-to-fulfill-from": "请选择要履行的位置",
1051
+ "create-fulfillment-cant-allow-this-action": "无法执行此操作",
1052
+ "create-fulfillment-trying-to-fulfill-more-than-in-stock": "试图履行超过库存的数量",
1053
+ "create-fulfillment-successfully-fulfilled-order": "成功履行订单",
1054
+ "create-fulfillment-successfully-fulfilled-swap": "成功履行置换",
1055
+ "create-fulfillment-successfully-fulfilled-claim": "成功履行索赔",
1056
+ "create-fulfillment-success": "成功",
1057
+ "create-fulfillment-cancel": "取消",
1058
+ "create-fulfillment-create-fulfillment": "创建履行",
1059
+ "create-fulfillment-create-fulfillment-title": "创建履行",
1060
+ "create-fulfillment-locations": "位置",
1061
+ "create-fulfillment-choose-where-you-wish-to-fulfill-from": "选择希望从哪里履行。",
1062
+ "create-fulfillment-items-to-fulfill": "要履行的物品",
1063
+ "create-fulfillment-select-the-number-of-items-that-you-wish-to-fulfill": "选择您希望履行的物品数量。",
1064
+ "create-fulfillment-send-notifications": "发送通知",
1065
+ "create-fulfillment-when-toggled-notification-emails-will-be-sent": "切换时,将发送通知电子邮件。",
1066
+ "create-fulfillment-quantity-is-not-valid": "数量无效",
1067
+ "detail-cards-allocated": "已分配",
1068
+ "detail-cards-not-fully-allocated": "未完全分配",
1069
+ "detail-cards-subtotal": "小计",
1070
+ "detail-cards-shipping": "运费",
1071
+ "detail-cards-tax": "税费",
1072
+ "detail-cards-total": "总计",
1073
+ "detail-cards-edit-order": "编辑订单",
1074
+ "detail-cards-allocate": "分配",
1075
+ "detail-cards-discount": "折扣:",
1076
+ "detail-cards-original-total": "原始总计",
1077
+ "details-successfully-updated-the-email-address": "成功更新电子邮件地址",
1078
+ "details-email-address": "电子邮件地址",
1079
+ "details-save": "保存",
1080
+ "details-order-id-copied": "订单ID已复制",
1081
+ "details-email-copied": "电子邮件已复制",
1082
+ "details-cancel-order-heading": "取消订单",
1083
+ "details-are-you-sure-you-want-to-cancel-the-order": "您确定要取消订单吗?",
1084
+ "order-details-display-id": "订单 #{{display_id}}",
1085
+ "details-successfully-canceled-order": "成功取消订单",
1086
+ "details-go-to-customer": "转至客户",
1087
+ "details-transfer-ownership": "转让所有权",
1088
+ "details-edit-shipping-address": "编辑送货地址",
1089
+ "details-edit-billing-address": "编辑账单地址",
1090
+ "details-edit-email-address": "编辑电子邮件地址",
1091
+ "details-back-to-orders": "返回订单",
1092
+ "details-cancel-order": "取消订单",
1093
+ "details-payment": "支付",
1094
+ "details-refunded": "已退款",
1095
+ "details-total-paid": "总支付额",
1096
+ "details-fulfillment": "履行",
1097
+ "details-create-fulfillment": "创建履行",
1098
+ "details-shipping-method": "运输方式",
1099
+ "details-customer": "客户",
1100
+ "details-shipping": "运输",
1101
+ "details-billing": "结算",
1102
+ "details-raw-order": "原始订单",
1103
+ "mark-shipped-successfully-marked-order-as-shipped": "成功标记订单为已发货",
1104
+ "mark-shipped-successfully-marked-swap-as-shipped": "成功标记置换为已发货",
1105
+ "mark-shipped-successfully-marked-claim-as-shipped": "成功标记索赔为已发货",
1106
+ "mark-shipped-success": "成功",
1107
+ "mark-shipped-error": "错误",
1108
+ "mark-shipped-mark-fulfillment-shipped": "标记履行为已发货",
1109
+ "mark-shipped-tracking": "追踪",
1110
+ "mark-shipped-tracking-number-label": "追踪号",
1111
+ "mark-shipped-tracking-number": "追踪号...",
1112
+ "mark-shipped-add-additional-tracking-number": "+ 添加额外的追踪号",
1113
+ "mark-shipped-send-notifications": "发送通知",
1114
+ "mark-shipped-cancel": "取消",
1115
+ "mark-shipped-complete": "完成",
1116
+ "order-line-warning": "警告",
1117
+ "order-line-cannot-duplicate-an-item-without-a-variant": "无法复制没有变体的物品",
1118
+ "order-line-error": "错误",
1119
+ "order-line-failed-to-duplicate-item": "复制物品失败",
1120
+ "order-line-success": "成功",
1121
+ "order-line-item-removed": "物品已移除",
1122
+ "order-line-failed-to-remove-item": "移除物品失败",
1123
+ "order-line-item-added": "物品已添加",
1124
+ "order-line-failed-to-replace-the-item": "替换物品失败",
1125
+ "order-line-replace-product-variants": "替换产品变体",
1126
+ "order-line-replace-with-other-item": "用其他物品替换",
1127
+ "order-line-duplicate-item": "复制物品",
1128
+ "order-line-remove-item": "移除物品",
1129
+ "order-line-line-item-cannot-be-edited": "此行项目是履行的一部分,无法编辑。取消履行以编辑行项目。",
1130
+ "order-line-new": "新建",
1131
+ "order-line-modified": "已修改",
1132
+ "receive-return-please-select-at-least-one-item-to-receive": "请至少选择一件物品进行接收",
1133
+ "receive-return-successfully-received-return": "成功接收退货",
1134
+ "receive-return-received-return-for-order": "已收到订单 #{{display_id}} 的退货",
1135
+ "receive-return-failed-to-receive-return": "无法接收退货",
1136
+ "receive-return-receive-return": "接收退货",
1137
+ "receive-return-location": "位置",
1138
+ "receive-return-choose-location": "选择您希望将物品退回的位置。",
1139
+ "receive-return-select-location-to-return-to": "选择要退回的位置",
1140
+ "receive-return-no-inventory-levels-exist-for-the-items-at-the-selected-location": "在所选位置不存在物品的库存水平",
1141
+ "receive-return-cancel": "取消",
1142
+ "receive-return-save-and-close": "保存并关闭",
1143
+ "refund-success": "成功",
1144
+ "refund-successfully-refunded-order": "成功退款订单",
1145
+ "refund-error": "错误",
1146
+ "refund-create-a-refund": "创建退款",
1147
+ "refund-attention": "注意!",
1148
+ "refund-system-payment-disclaimer": "您的一个或多个支付是系统支付。请注意,默认情况下不处理此类支付的捕获和退款。",
1149
+ "refund-details": "详情",
1150
+ "refund-cannot-refund-more-than-the-orders-net-total": "不能退还超过订单净总额的金额。",
1151
+ "refund-discount": "折扣",
1152
+ "refund-reason": "原因",
1153
+ "refund-note": "备注",
1154
+ "refund-discount-for-loyal-customer": "忠实客户折扣",
1155
+ "refund-send-notifications": "发送通知",
1156
+ "refund-cancel": "取消",
1157
+ "refund-complete": "完成",
1158
+ "reservation-reservation-was-deleted": "预订已删除",
1159
+ "reservation-the-allocated-items-have-been-released": "已释放分配的物品。",
1160
+ "reservation-error": "错误",
1161
+ "reservation-failed-to-delete-the-reservation": "删除预订失败",
1162
+ "reservation-reservation-was-updated": "预订已更新",
1163
+ "reservation-the-reservation-change-was-saved": "预订更改已保存。",
1164
+ "reservation-errors": "错误",
1165
+ "reservation-failed-to-update-reservation": "更新预订失败",
1166
+ "reservation-edit-reservation": "编辑预订",
1167
+ "reservation-location": "位置",
1168
+ "reservation-choose-which-location-you-want-to-ship-the-items-from": "选择要发货物品的位置。",
1169
+ "reservation-items-to-allocate-title": "要分配的物品",
1170
+ "reservation-select-the-number-of-items-that-you-wish-to-allocate": "选择要分配的物品数量。",
1171
+ "reservation-max-reservation-requested": " / 已请求 {{maxReservation}}",
1172
+ "reservation-reserved": "已预订",
1173
+ "reservation-description": "描述",
1174
+ "reservation-what-type-of-reservation-is-this": "这是什么类型的预订?",
1175
+ "reservation-metadata": "元数据",
1176
+ "reservation-remove-metadata": "删除元数据",
1177
+ "reservation-add-metadata": "添加元数据",
1178
+ "reservation-delete-reservation": "删除预订",
1179
+ "reservation-cancel": "取消",
1180
+ "reservation-save-and-close": "保存并关闭",
1181
+ "reservation-couldnt-allocate-items": "无法分配物品",
1182
+ "reservation-items-allocated": "已分配的物品",
1183
+ "reservation-items-have-been-allocated-successfully": "物品已成功分配",
1184
+ "reservation-save-reservation": "保存预订",
1185
+ "reservation-loading": "加载中...",
1186
+ "reservation-allocate-order-items": "分配订单物品",
1187
+ "reservation-choose-where-you-wish-to-allocate-from": "选择要分配的位置",
1188
+ "reservation-items-to-allocate": "要分配的物品",
1189
+ "returns-success": "成功",
1190
+ "returns-successfully-returned-order": "成功退还订单",
1191
+ "returns-error": "错误",
1192
+ "returns-request-return": "请求退货",
1193
+ "returns-items-to-return": "要退回的物品",
1194
+ "returns-choose-which-location-you-want-to-return-the-items-to": "选择要将物品退回的位置。",
1195
+ "returns-select-location-to-return-to": "选择要退回的位置",
1196
+ "returns-selected-location-has-no-inventory-levels": "所选位置没有所选物品的库存水平。可以请求退货,但在为所选位置创建库存水平之前无法接收退货。",
1197
+ "returns-shipping": "运费",
1198
+ "returns-choose-retur,-shipping-method": "选择用于此退货的运费方式。",
1199
+ "returns-total-refund": "总退款",
1200
+ "returns-amount": "金额",
1201
+ "returns-send-notifications": "发送通知",
1202
+ "returns-notify-customer-of-created-return": "通知客户已创建退货",
1203
+ "returns-back": "返回",
1204
+ "returns-submit": "提交",
1205
+ "rma-sub-modals-search-for-additional": "搜索额外的",
1206
+ "rma-sub-modals-general": "通用",
1207
+ "rma-sub-modals-first-name": "名字",
1208
+ "rma-sub-modals-last-name": "姓氏",
1209
+ "rma-sub-modals-phone": "电话",
1210
+ "rma-sub-modals-shipping-address": "送货地址",
1211
+ "rma-sub-modals-address-1": "地址1",
1212
+ "rma-sub-modals-address-2": "地址2",
1213
+ "rma-sub-modals-province": "省份",
1214
+ "rma-sub-modals-postal-code": "邮政编码",
1215
+ "rma-sub-modals-city": "城市",
1216
+ "rma-sub-modals-country": "国家",
1217
+ "rma-sub-modals-back": "返回",
1218
+ "rma-sub-modals-add": "添加",
1219
+ "rma-sub-modals-name": "名称",
1220
+ "rma-sub-modals-status": "状态",
1221
+ "rma-sub-modals-in-stock": "有库存",
1222
+ "rma-sub-modals-products": "产品",
1223
+ "rma-sub-modals-search-products": "搜索产品...",
1224
+ "rma-sub-modals-reason-for-return": "退货原因",
1225
+ "rma-sub-modals-reason": "原因",
1226
+ "rma-sub-modals-note": "备注",
1227
+ "swap-success": "成功",
1228
+ "swap-successfully-created-exchange": "成功创建置换",
1229
+ "swap-error": "错误",
1230
+ "swap-register-exchange": "注册置换",
1231
+ "swap-items-to-return": "要退回的物品",
1232
+ "swap-shipping": "运费",
1233
+ "swap-shipping-method": "运费方式",
1234
+ "swap-add-a-shipping-method": "添加运费方式",
1235
+ "swap-location": "位置",
1236
+ "swap-choose-which-location-you-want-to-return-the-items-to": "选择要将物品退回的位置。",
1237
+ "swap-select-location-to-return-to": "选择要退回的位置",
1238
+ "swap-items-to-send": "要发送的物品",
1239
+ "swap-add-product": "添加产品",
1240
+ "swap-return-total": "退货总额",
1241
+ "swap-additional-total": "附加总额",
1242
+ "swap-outbond-shipping": "出库运费",
1243
+ "swap-calculated-at-checkout": "在结账时计算",
1244
+ "swap-estimated-difference": "估计的差额",
1245
+ "swap-send-notifications": "发送通知",
1246
+ "swap-if-unchecked-the-customer-will-not-receive-communication-about-this-exchange": "如果未选中,客户将不会收到有关此置换的通信",
1247
+ "swap-complete": "完成",
1248
+ "templates-shipped": "已发货",
1249
+ "templates-fulfilled": "已履行",
1250
+ "templates-canceled": "已取消",
1251
+ "templates-partially-fulfilled": "部分履行",
1252
+ "templates-fulfillment-status-requires-action": "需要操作的履行状态",
1253
+ "templates-awaiting-fulfillment": "等待履行",
1254
+ "templates-partially-shipped": "部分已发货",
1255
+ "templates-cancel-fulfillment-heading": "取消履行?",
1256
+ "templates-are-you-sure-you-want-to-cancel-the-fulfillment": "您确定要取消履行吗?",
1257
+ "templates-successfully-canceled-swap": "成功取消置换",
1258
+ "templates-error": "错误",
1259
+ "templates-successfully-canceled-claim": "成功取消索赔",
1260
+ "templates-successfully-canceled-fulfillment": "成功取消履行",
1261
+ "templates-fulfillment-has-been-canceled": "履行已取消",
1262
+ "templates-fulfilled-by-provider": "{{title}} 由{{provider}}履行",
1263
+ "templates-not-shipped": "未发货",
1264
+ "templates-tracking": "追踪",
1265
+ "templates-shipped-from": "发货自",
1266
+ "templates-shipping-from": "从何处发货",
1267
+ "templates-mark-shipped": "标记已发货",
1268
+ "templates-cancel-fulfillment": "取消履行",
1269
+ "templates-completed": "已完成",
1270
+ "templates-processing": "处理中",
1271
+ "templates-requires-action": "需要操作",
1272
+ "templates-capture-payment": "捕获支付",
1273
+ "templates-successfully-captured-payment": "成功捕获支付",
1274
+ "templates-refund": "退款",
1275
+ "templates-total-for-swaps": "置换总计",
1276
+ "templates-refunded-for-swaps": "置换退款",
1277
+ "templates-refunded-for-returns": "退货退款",
1278
+ "templates-manually-refunded": "手动退款",
1279
+ "templates-net-total": "净总额",
1280
+ "templates-paid": "已支付",
1281
+ "templates-awaiting-payment": "等待支付",
1282
+ "templates-payment-status-requires-action": "需要操作的支付状态",
1283
+ "draft-orders-completed": "已完成",
1284
+ "draft-orders-open": "打开",
1285
+ "draft-orders-mark-as-paid": "标记为已支付",
1286
+ "draft-orders-success": "成功",
1287
+ "draft-orders-successfully-mark-as-paid": "成功标记为已支付",
1288
+ "draft-orders-error": "错误",
1289
+ "draft-orders-successfully-canceled-order": "成功取消订单",
1290
+ "draft-orders-back-to-draft-orders": "返回到草稿订单",
1291
+ "on-mark-as-paid-confirm-order-id": "订单 #{{display_id}}",
1292
+ "draft-orders-go-to-order": "前往订单",
1293
+ "draft-orders-cancel-draft-order": "取消草稿订单",
1294
+ "draft-orders-draft-order": "草稿订单",
1295
+ "draft-orders-email": "电子邮件",
1296
+ "draft-orders-phone": "电话",
1297
+ "draft-orders-amount": "金额 {{currency_code}}",
1298
+ "draft-orders-payment": "支付",
1299
+ "draft-orders-subtotal": "小计",
1300
+ "draft-orders-shipping": "运费",
1301
+ "draft-orders-tax": "税费",
1302
+ "draft-orders-total-to-pay": "总支付金额",
1303
+ "draft-orders-payment-link": "支付链接:",
1304
+ "draft-orders-configure-payment-link-in-store-settings": "在商店设置中配置支付链接",
1305
+ "draft-orders-shipping-method": "运费方式",
1306
+ "draft-orders-data": "数据",
1307
+ "draft-orders-1-item": "(1 件商品)",
1308
+ "draft-orders-customer": "客户",
1309
+ "draft-orders-edit-shipping-address": "编辑送货地址",
1310
+ "draft-orders-edit-billing-address": "编辑账单地址",
1311
+ "draft-orders-go-to-customer": "前往客户",
1312
+ "draft-orders-contact": "联系",
1313
+ "draft-orders-billing": "账单",
1314
+ "draft-orders-raw-draft-order": "原始草稿订单",
1315
+ "draft-orders-are-you-sure": "您确定吗?",
1316
+ "draft-orders-remove-resource-heading": "移除 {{resource}}",
1317
+ "draft-orders-remove-resource-success-text": "{{resource}} 已被移除",
1318
+ "draft-orders-this-will-create-an-order-mark-this-as-paid-if-you-received-the-payment": "这将创建一个订单。如果您已收到付款,请标记为已支付。",
1319
+ "draft-orders-mark-paid": "标记为已支付",
1320
+ "draft-orders-cancel": "取消",
1321
+ "draft-orders-create-draft-order": "创建草稿订单",
1322
+ "edit-amount-paid": "支付金额",
1323
+ "edit-new-total": "新总额",
1324
+ "edit-difference-due": "差额",
1325
+ "edit-back": "返回",
1326
+ "edit-save-and-go-back": "保存并返回",
1327
+ "edit-order-edit-set-as-requested": "订单编辑已设为已请求",
1328
+ "edit-failed-to-request-confirmation": "请求确认失败",
1329
+ "edit-added-successfully": "成功添加",
1330
+ "edit-error-occurred": "发生错误",
1331
+ "edit-add-product-variants": "添加产品变体",
1332
+ "edit-edit-order": "编辑订单",
1333
+ "edit-items": "商品",
1334
+ "edit-add-items": "添加商品",
1335
+ "edit-filter-items": "筛选商品...",
1336
+ "edit-note": "备注",
1337
+ "edit-add-a-note": "添加备注...",
1338
+ "variants-table-location": " 在 {{location}}",
1339
+ "edit-product": "产品",
1340
+ "edit-in-stock": "有库存",
1341
+ "edit-price": "价格",
1342
+ "edit-products": "产品",
1343
+ "edit-search-product-variants": "搜索产品变体...",
1344
+ "orders-success": "成功",
1345
+ "orders-successfully-initiated-export": "成功启动导出",
1346
+ "orders-error": "错误",
1347
+ "orders-export-orders": "导出订单",
1348
+ "components-billing-address": "账单地址",
1349
+ "components-use-same-as-shipping": "使用与送货相同的地址",
1350
+ "components-e-g-gift-wrapping": "例如礼品包装",
1351
+ "components-title": "标题",
1352
+ "components-price": "价格",
1353
+ "components-quantity": "数量",
1354
+ "components-back": "返回",
1355
+ "components-add": "添加",
1356
+ "components-items-for-the-order": "订单商品",
1357
+ "components-details": "详情",
1358
+ "components-price-excl-taxes": "价格(不含税)",
1359
+ "components-add-custom": "添加自定义",
1360
+ "components-add-existing": "添加已有的",
1361
+ "components-add-products": "添加产品",
1362
+ "components-add-custom-item": "添加自定义商品",
1363
+ "components-choose-region": "选择地区",
1364
+ "components-region": "地区",
1365
+ "select-shipping-to-name": "(寄往 {{name}})",
1366
+ "components-attention": "注意!",
1367
+ "components-no-options-for-orders-without-shipping": "对于没有配送的订单,您没有任何选项。请添加一个(例如“门店履行”),在地区设置中取消选中“在网站上显示”并继续。",
1368
+ "components-choose-a-shipping-method": "选择一种运费方式",
1369
+ "components-set-custom-price": "设置自定义价格",
1370
+ "components-custom-price": "自定义价格",
1371
+ "components-customer-and-shipping-details": "客户和送货详情",
1372
+ "components-find-existing-customer": "查找现有客户",
1373
+ "components-email": "电子邮件",
1374
+ "components-choose-existing-addresses": "选择现有地址",
1375
+ "components-create-new": "创建新的",
1376
+ "components-the-discount-is-not-applicable-to-the-selected-region": "折扣不适用于所选地区",
1377
+ "components-the-discount-code-is-invalid": "折扣码无效",
1378
+ "components-add-discount": "添加折扣",
1379
+ "components-summer-10": "SUMMER10",
1380
+ "components-discount": "折扣",
1381
+ "select-shipping-code": "(代码:{{code}})",
1382
+ "components-type": "类型",
1383
+ "components-value": "值",
1384
+ "components-address": "地址",
1385
+ "components-shipping-method": "运费方式",
1386
+ "components-billing-details": "账单详情",
1387
+ "components-edit": "编辑",
1388
+ "form-use-new-order-form-must-be-used-within-new-order-form-provider": "useNewOrderForm 必须在 NewOrderFormProvider 内使用",
1389
+ "new-order-created": "订单已创建",
1390
+ "new-create-draft-order": "创建草稿订单",
1391
+ "price-list-product-filter-created-at": "创建于",
1392
+ "price-list-product-filter-updated-at": "更新于",
1393
+ "price-list-details-drawer-prompt-title": "您确定吗?",
1394
+ "price-list-details-drawer-prompt-description": "您有未保存的更改,确定要退出吗?",
1395
+ "price-list-details-notification-succes-title": "价格表已更新",
1396
+ "price-list-details-drawer-notification-success-message": "成功更新价格表",
1397
+ "price-list-details-drawer-notification-error-title": "发生错误",
1398
+ "price-list-details-drawer-title": "编辑价格表详情",
1399
+ "price-list-details-drawer-cancel-button": "取消",
1400
+ "price-list-details-drawer-save-button": "保存",
1401
+ "price-list-details-section-prompt-confirm-text": "删除",
1402
+ "price-list-details-section-prompt-cancel-text": "取消",
1403
+ "price-list-details-section-prompt-title": "删除价格表",
1404
+ "price-list-details-section-prompt-description": "您确定要删除价格表 \"{{name}}\" 吗?",
1405
+ "price-list-details-section-delete-notification-success-title": "成功删除价格表",
1406
+ "price-list-details-section-delete-notification-success-message": "价格表 \"{{name}}\" 已成功删除",
1407
+ "price-list-details-section-delete-notification-error-title": "删除价格表失败",
1408
+ "price-list-details-section-customer-groups": "客户组",
1409
+ "price-list-details-section-last-edited": "最后编辑",
1410
+ "price-list-details-section-number-of-prices": "价格",
1411
+ "price-list-details-section-status-menu-expired": "已过期",
1412
+ "price-list-details-section-status-menu-draft": "草稿",
1413
+ "price-list-details-section-status-menu-scheduled": "已计划",
1414
+ "price-list-details-section-status-active": "激活",
1415
+ "price-list-details-section-status-menu-notification-success-title": "成功更新价格表状态",
1416
+ "price-list-details-section-status-menu-notification-success-message": "价格表状态已成功更新为 {{status}}",
1417
+ "price-list-details-section-status-menu-notification-error-title": "更新价格表状态失败",
1418
+ "price-list-details-section-status-menu-item-draft": "草稿",
1419
+ "price-list-details-section-status-menu-item-activate": "激活",
1420
+ "price-list-details-menu-item-edit": "编辑详情",
1421
+ "price-list-details-menu-item-delete": "删除",
1422
+ "price-list-edit-error": "加载价格表时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1423
+ "price-list-new-form-prompt-title": "您确定吗?",
1424
+ "price-list-new-form-prompt-exit-description": "您有未保存的更改,您确定要退出吗?",
1425
+ "price-list-new-form-prompt-back-description": "您有未保存的更改,您确定要返回吗?",
1426
+ "price-list-add-products-modal-no-prices-error": "请至少为一种产品分配价格。",
1427
+ "price-list-add-products-modal-missing-prices-title": "价格表不完整",
1428
+ "price-list-add-products-modal-missing-prices-description": "未为您选择的所有产品分配价格。您要继续吗?",
1429
+ "price-list-add-products-modal-success-title": "添加新价格",
1430
+ "price-list-add-products-modal-success-message": "新价格已添加到价格表。",
1431
+ "price-list-add-products-modal-error-title": "发生错误",
1432
+ "price-list-add-products-modal-back-button-cancel": "取消",
1433
+ "price-list-add-products-modal-back-button": "返回",
1434
+ "price-list-add-products-modal-next-button-continue": "继续",
1435
+ "price-list-add-products-modal-next-button-submit-and-close": "提交并关闭",
1436
+ "price-list-add-products-modal-next-button-continue-save-prices": "保存价格",
1437
+ "price-list-add-products-modal-products-tab": "选择产品",
1438
+ "price-list-add-products-modal-prices-tab": "编辑价格",
1439
+ "price-list-add-products-modal-error": "准备表单时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1440
+ "price-list-edit-prices-modal-prompt-title": "未保存的更改",
1441
+ "price-list-edit-prices-modal-prompt-exit-description": "您有未保存的更改,您确定要退出吗?",
1442
+ "price-list-edit-prices-modal-prompt-back-description": "您有未保存的更改,您确定要返回吗?",
1443
+ "price-list-edit-prices-modal-notification-update-error": "发生错误",
1444
+ "price-list-edit-prices-modal-notification-remove-error-title": "发生错误",
1445
+ "price-list-edit-prices-modal-notification-remove-error-description": "某些价格未正确更新。请重试。",
1446
+ "price-list-edit-prices-modal-notification-update-success-title": "价格已更新",
1447
+ "price-list-edit-prices-modal-notification-update-success-description": "价格已成功更新",
1448
+ "price-list-edit-prices-modal-next-button-save-and-close": "保存并关闭",
1449
+ "price-list-edit-prices-modal-next-button-save": "保存价格",
1450
+ "price-list-edit-prices-modal-back-button-cancel": "取消",
1451
+ "price-list-edit-prices-modal-back-button-back": "返回",
1452
+ "price-list-edit-prices-modal-overview-tab": "编辑价格",
1453
+ "price-list-edit-prices-modal-error-loading": "准备表单时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1454
+ "price-list-prices-section-prompt-title": "您确定吗?",
1455
+ "price-list-prices-section-prompt-description": "这将永久删除列表中的产品价格",
1456
+ "price-list-prices-secton-delete-success-title": "删除价格",
1457
+ "price-list-prices-section-delete-success-description_one": "已成功删除 {{count}} 种产品的价格",
1458
+ "price-list-prices-section-delete-success-description_other": "已成功删除 {{count}} 种产品的价格",
1459
+ "price-list-prices-section-delete-error-title": "发生错误",
1460
+ "price-list-prices-section-heading": "价格",
1461
+ "price-list-prices-section-search-placeholder": "搜索产品",
1462
+ "price-list-prices-section-prices-menu-edit": "编辑价格",
1463
+ "price-list-prices-section-prices-menu-add": "添加产品",
1464
+ "price-list-prices-section-table-load-error": "获取产品时发生错误。尝试重新加载页面,或者如果问题仍然存在,请稍后再试。",
1465
+ "price-list-prices-section-bar-count_one": "已选择 {{count}} 项",
1466
+ "price-list-prices-section-bar-count_other": "已选择 {{count}} 项",
1467
+ "price-list-prices-section-edit-command": "编辑",
1468
+ "price-list-prices-section-delete-command": "删除",
1469
+ "price-list-prices-section-select-all-checkbox-label": "选择当前页面上的所有产品",
1470
+ "price-list-prices-section-select-checkbox-label": "选择行",
1471
+ "price-list-prices-section-table-product": "产品",
1472
+ "price-list-prices-section-table-thumbnail-alt": "{{title}} 缩略图",
1473
+ "price-list-prices-section-table-collection": "系列",
1474
+ "price-list-prices-section-table-variants": "变体",
1475
+ "price-list-details-form-type-heading": "类型",
1476
+ "price-list-details-form-type-description": "选择要创建的价格表类型。",
1477
+ "price-list-details-form-type-label-sale": "特价",
1478
+ "price-list-details-form-type-hint-sale": "如果您正在创建特价,请使用此选项。",
1479
+ "price-list-details-form-type-label-override": "覆盖",
1480
+ "price-list-details-form-type-hint-override": "如果您要覆盖价格,请使用此选项。",
1481
+ "price-list-details-form-general-heading": "常规",
1482
+ "price-list-details-form-general-description": "为价格表选择标题和描述。",
1483
+ "price-list-details-form-general-name-label": "名称",
1484
+ "price-list-details-form-general-name-placeholder": "黑色星期五特卖",
1485
+ "price-list-details-form-general-description-label": "描述",
1486
+ "price-list-details-form-general-description-placeholder": "黑色星期五特卖的价格...",
1487
+ "price-list-details-form-tax-inclusive-label": "含税价格",
1488
+ "price-list-details-form-tax-inclusive-hint": "选择使此价格表中的所有价格都包含税。",
1489
+ "price-list-details-form-dates-starts-at-heading": "价格表是否有开始日期?",
1490
+ "price-list-details-form-dates-starts-at-description": "安排将来激活价格覆盖。",
1491
+ "price-list-details-form-dates-starts-at-label": "开始日期",
1492
+ "price-list-details-form-ends-at-heading": "价格表是否有到期日期?",
1493
+ "price-list-details-form-ends-at-description": "安排将来停用价格覆盖。",
1494
+ "price-list-details-form-ends-at-label": "到期日期",
1495
+ "price-list-details-form-customer-groups-name": "名称",
1496
+ "price-list-details-form-customer-groups-members": "成员",
1497
+ "price-list-details-form-customer-groups-error": "加载客户组时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1498
+ "price-list-details-form-customer-groups-no-groups": "找不到客户组。",
1499
+ "price-list-details-form-customer-groups-heading": "客户可用性",
1500
+ "price-list-details-form-customer-groups-description": "指定价格覆盖应适用于哪些客户组。",
1501
+ "price-list-details-form-customer-groups-content-heading": "客户组",
1502
+ "price-list-details-form-customer-groups-search-placeholder": "搜索",
1503
+ "price-list-prices-form-products-error": "准备表单时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1504
+ "price-list-prices-form-heading": "编辑价格",
1505
+ "price-list-prices-form-variant": "变体",
1506
+ "price-list-prices-form-sku": "SKU",
1507
+ "price-list-prices-form-prices": "价格",
1508
+ "price-list-prices-form-prices-variant-count_one": "{{count}} 个变体",
1509
+ "price-list-prices-form-prices-variant-count_other": "{{count}} 个变体",
1510
+ "price-list-prices-form-add-prices-button": "添加价格",
1511
+ "price-list-prices-form-prices-count_one": "{{count}} 个价格",
1512
+ "price-list-prices-form-prices-count_other": "{{count}} 个价格",
1513
+ "price-list-product-prices-form-invalid-data-title": "无效的数据",
1514
+ "price-list-product-prices-form-invalid-data-body": "您粘贴的数据包含非数字的值。",
1515
+ "price-list-product-prices-form-column-visibility-button": "查看",
1516
+ "price-list-product-prices-form-column-visibility-currencies-label": "货币",
1517
+ "price-list-product-prices-form-column-visibility-regions-label": "地区",
1518
+ "price-list-product-prices-form-column-product-label": "产品",
1519
+ "price-list-product-prices-form-column-currencies-price-label": "{{code}} 价格",
1520
+ "price-list-product-prices-form-column-regions-price-label": "{{name}} ({{code}}) 价格",
1521
+ "price-list-products-form-select-all": "选择当前页面上的所有产品",
1522
+ "price-list-products-form-select-row": "选择行",
1523
+ "price-list-products-form-product-label": "产品",
1524
+ "price-list-products-form-product-thumbnail": "{{title}} 缩略图",
1525
+ "price-list-products-form-collection-label": "系列",
1526
+ "price-list-products-form-sales-channels-label": "可用性",
1527
+ "price-list-products-form-sales-channels-value": "{{first}} + {{remaining}} 更多",
1528
+ "price-list-products-form-status-label": "状态",
1529
+ "price-list-products-form-inventory-label": "库存",
1530
+ "price-list-products-form-inventory-value": "库存 {{variants}} 个变体中有 {{totalStock}} 个",
1531
+ "price-list-products-form-loading": "正在加载产品",
1532
+ "price-list-products-form-error": "加载产品时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1533
+ "price-list-products-form-no-products": "找不到产品。",
1534
+ "price-list-products-form-heading": "选择产品",
1535
+ "price-list-products-form-search-placeholder": "搜索",
1536
+ "price-list-new-form-no-prices-error": "请至少为一种产品设置价格。",
1537
+ "price-list-new-form-missing-prices-title": "不完整的价格表",
1538
+ "price-list-new-products-modal-missing-prices-description": "未为您选择的所有产品分配价格。您要继续吗?",
1539
+ "price-list-new-form-notification-success-title": "已创建价格表",
1540
+ "price-list-new-form-notification-success-message": "成功创建价格表",
1541
+ "price-list-new-form-notification-error-title": "发生错误",
1542
+ "price-list-new-form-next-button-save-and-publish": "保存并发布",
1543
+ "price-list-new-form-next-button-save": "保存价格",
1544
+ "price-list-new-form-next-button-continue": "继续",
1545
+ "price-list-new-form-back-button-cancel": "取消",
1546
+ "price-list-new-form-back-button-back": "返回",
1547
+ "price-list-new-form-details-tab": "创建价格表",
1548
+ "price-list-new-form-products-tab": "选择产品",
1549
+ "price-list-new-form-prices-tab": "编辑价格",
1550
+ "price-list-new-form-save-as-draft": "保存为草稿",
1551
+ "price-list-new-form-error-loading-products": "准备表单时发生错误。重新加载页面并重试。如果问题仍然存在,请稍后再试。",
1552
+ "components-success": "成功",
1553
+ "components-successfully-updated-category-tree": "成功更新类别树",
1554
+ "components-error": "错误",
1555
+ "components-failed-to-update-category-tree": "无法更新类别树",
1556
+ "components-delete": "删除",
1557
+ "components-category-deleted": "类别已删除",
1558
+ "components-category-deletion-failed": "类别删除失败",
1559
+ "components-category-status-is-inactive": "类别状态为非活动",
1560
+ "components-category-visibility-is-private": "类别可见性为私有",
1561
+ "components-add-category-item-to": "将类别项添加到",
1562
+ "modals-public": "公开",
1563
+ "modals-private": "私有",
1564
+ "modals-active": "活动",
1565
+ "modals-inactive": "非活动",
1566
+ "modals-success": "成功",
1567
+ "modals-successfully-created-a-category": "成功创建类别",
1568
+ "modals-failed-to-create-a-new-category": "无法创建新类别",
1569
+ "modals-error": "错误",
1570
+ "modals-save-category": "保存类别",
1571
+ "modals-add-category-to": "将类别添加到 {{name}}",
1572
+ "modals-add-category": "添加类别",
1573
+ "modals-details": "详情",
1574
+ "modals-name": "名称",
1575
+ "modals-give-this-category-a-name": "为此类别命名",
1576
+ "modals-handle": "句柄",
1577
+ "modals-custom-handle": "自定义句柄",
1578
+ "modals-description": "描述",
1579
+ "modals-give-this-category-a-description": "为此类别添加描述",
1580
+ "modals-status": "状态",
1581
+ "modals-visibility": "可见性",
1582
+ "modals-successfully-updated-the-category": "成功更新类别",
1583
+ "modals-failed-to-update-the-category": "无法更新类别",
1584
+ "modals-edit-product-category": "编辑产品类别",
1585
+ "modals-cancel": "取消",
1586
+ "modals-save-and-close": "保存并关闭",
1587
+ "pages-no-product-categories-yet": "尚无产品类别,使用上面的按钮创建您的第一个类别。",
1588
+ "pages-add-category": "添加类别",
1589
+ "pages-product-categories": "产品类别",
1590
+ "pages-helps-you-to-keep-your-products-organized": "帮助您组织产品。",
1591
+ "batch-job-success": "成功",
1592
+ "batch-job-import-confirmed-for-processing-progress-info-is-available-in-the-activity-drawer": "确认导入进行中。进度信息可在活动抽屉中查看。",
1593
+ "batch-job-error": "错误",
1594
+ "batch-job-import-failed": "导入失败。",
1595
+ "batch-job-failed-to-delete-the-csv-file": "无法删除 CSV 文件",
1596
+ "batch-job-failed-to-cancel-the-batch-job": "无法取消批处理作业",
1597
+ "batch-job-products-list": "产品列表",
1598
+ "batch-job-unsure-about-how-to-arrange-your-list": "不确定如何排列列表?",
1599
+ "batch-job-download-template": "下载下面的模板以确保您遵循正确的格式。",
1600
+ "batch-job-imports-description": "通过导入,您可以添加或更新产品。要更新现有产品/变体,必须在“产品/变体 ID”列中设置现有 ID。如果值未设置,将创建新记录。在导入产品之前,系统将向您确认。",
1601
+ "products-filters": "过滤器",
1602
+ "products-status": "状态",
1603
+ "products-tags": "标签",
1604
+ "products-spring-summer": "春季,夏季...",
1605
+ "new-sales-channels": "销售渠道",
1606
+ "new-this-product-will-only-be-available-in-the-default-sales-channel-if-left-untouched": "如果不做更改,此产品将仅在默认销售渠道中提供。",
1607
+ "new-change-availablity": "更改可用性",
1608
+ "add-variants-a-variant-with-these-options-already-exists": "具有这些选项的变体已存在。",
1609
+ "add-variants-product-options": "产品选项",
1610
+ "add-variants-options-are-used-to-define-the-color-size-etc-of-the-product": "选项用于定义产品的颜色、尺寸等。",
1611
+ "add-variants-option-title": "选项标题",
1612
+ "add-variants-variations-comma-separated": "变化(逗号分隔)",
1613
+ "add-variants-color": "颜色...",
1614
+ "add-variants-already-exists": "已存在",
1615
+ "add-variants-blue-red-black": "蓝色,红色,黑色...",
1616
+ "add-variants-add-an-option": "添加选项",
1617
+ "add-variants-product-variants": "产品变体",
1618
+ "add-variants-you-must-add-at-least-one-product-option-before-you-can-begin-adding-product-variants": "在开始添加产品变体之前,您必须添加至少一个产品选项。",
1619
+ "add-variants-variant": "变体",
1620
+ "add-variants-inventory": "库存",
1621
+ "add-variants-add-a-variant": "添加变体",
1622
+ "add-variants-create-variant": "创建变体",
1623
+ "add-variants-cancel": "取消",
1624
+ "add-variants-save-and-close": "保存并关闭",
1625
+ "new-variant-a-variant-with-these-options-already-exists": "具有这些选项的变体已存在。",
1626
+ "new-variant-are-you-sure-you-want-to-delete-this-variant": "您确定要删除此变体吗?",
1627
+ "new-variant-delete-variant": "删除变体",
1628
+ "new-variant-edit": "编辑",
1629
+ "new-variant-delete": "删除",
1630
+ "new-variant-edit-variant": "编辑变体",
1631
+ "new-variant-cancel": "取消",
1632
+ "new-variant-save-and-close": "保存并关闭",
1633
+ "new-something-went-wrong-while-trying-to-upload-images": "尝试上传图像时出现问题。",
1634
+ "new-no-file-service-configured": "您可能没有配置文件服务。请联系您的管理员。",
1635
+ "new-upload-thumbnail-error": "尝试上传缩略图时出现问题。",
1636
+ "new-save-as-draft": "保存为草稿",
1637
+ "new-publish-product": "发布产品",
1638
+ "new-general-information-title": "常规信息",
1639
+ "new-to-start-selling-all-you-need-is-a-name-and-a-price": "要开始销售,您只需要名称和价格。",
1640
+ "new-organize-product": "组织产品",
1641
+ "new-add-variations-of-this-product": "添加此产品的变体。",
1642
+ "new-offer-your-customers-different-options-for-color-format-size-shape-etc": "为您的客户提供颜色、格式、尺寸、形状等不同的选择。",
1643
+ "new-used-for-shipping-and-customs-purposes": "用于运输和海关目的。",
1644
+ "new-dimensions": "尺寸",
1645
+ "new-customs": "海关",
1646
+ "new-used-to-represent-your-product-during-checkout-social-sharing-and-more": "用于在结账、社交共享等过程中代表您的产品。",
1647
+ "new-media": "媒体",
1648
+ "new-add-images-to-your-product": "为您的产品添加图像。",
1649
+ "overview-import-products": "导入产品",
1650
+ "overview-export-products": "导出产品",
1651
+ "overview-new-product": "新产品",
1652
+ "overview-new-collection": "新系列",
1653
+ "overview-success": "成功",
1654
+ "overview-successfully-created-collection": "成功创建系列",
1655
+ "overview-error": "错误",
1656
+ "overview-successfully-initiated-export": "成功启动导出",
1657
+ "modals-add-sales-channels": "添加销售渠道",
1658
+ "modals-find-channels": "查找渠道",
1659
+ "modals-updated-the-api-key": "更新了 API 密钥",
1660
+ "modals-failed-to-update-the-api-key": "无法更新 API 密钥",
1661
+ "modals-edit-api-key-details": "编辑 API 密钥详情",
1662
+ "modals-title": "标题",
1663
+ "modals-name-your-key": "为您的密钥命名",
1664
+ "modals-sales-channels-added-to-the-scope": "销售渠道已添加到范围内",
1665
+ "modals-error-occurred-while-adding-sales-channels-to-the-scope-of-the-key": "在将销售渠道添加到密钥范围时发生错误",
1666
+ "modals-add-and-go-back": "添加并返回",
1667
+ "modals-add-and-close": "添加并关闭",
1668
+ "modals-sales-channels-removed-from-the-scope": "销售渠道已从范围中移除",
1669
+ "modals-error-occurred-while-removing-sales-channels-from-the-scope-of-the-key": "在从密钥范围中移除销售渠道时发生错误",
1670
+ "modals-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": "取消选择",
1674
+ "modals-remove": "移除",
1675
+ "modals-add-channels": "添加渠道",
1676
+ "modals-close": "关闭",
1677
+ "pages-sales-channels": "销售渠道",
1678
+ "pages-connect-as-many-sales-channels-to-your-api-key-as-you-need": "将尽可能多的销售渠道连接到您的 API 密钥。",
1679
+ "pages-add-sales-channels": "添加销售渠道",
1680
+ "pages-edit-sales-channels": "编辑销售渠道",
1681
+ "pages-success": "成功",
1682
+ "pages-created-a-new-api-key": "创建了新的 API 密钥",
1683
+ "pages-error": "错误",
1684
+ "pages-failed-to-create-a-new-api-key": "无法创建新的 API 密钥",
1685
+ "pages-sales-channels-added-to-the-scope": "销售渠道已添加到范围内",
1686
+ "pages-error-occurred-while-adding-sales-channels-to-the-scope-of-the-key": "在将销售渠道添加到密钥范围时发生错误",
1687
+ "pages-publish-api-key": "发布 API 密钥",
1688
+ "pages-create-api-key": "创建 API 密钥",
1689
+ "pages-create-and-manage-api-keys-right-now-this-is-only-related-to-sales-channels": "创建和管理 API 密钥。目前仅与销售渠道相关。",
1690
+ "pages-create-api-key-label": "创建 API 密钥",
1691
+ "pages-back-to-settings": "返回到设置",
1692
+ "pages-publishable-api-keys": "可发布的 API 密钥",
1693
+ "pages-these-publishable-keys-will-allow-you-to-authenticate-api-requests": "这些可发布的密钥将允许您验证 API 请求。",
1694
+ "tables-name": "名称",
1695
+ "tables-token": "令牌",
1696
+ "tables-done": "完成",
1697
+ "tables-copy-to-clipboard": "复制到剪贴板",
1698
+ "tables-created": "创建",
1699
+ "tables-status": "状态",
1700
+ "tables-revoked": "已撤销",
1701
+ "tables-live": "已上线",
1702
+ "tables-edit-api-key-details": "编辑 API 密钥详细信息",
1703
+ "tables-edit-sales-channels": "编辑销售渠道",
1704
+ "tables-copy-token": "复制令牌",
1705
+ "tables-revoke-token": "撤销令牌",
1706
+ "tables-delete-api-key": "删除 API 密钥",
1707
+ "tables-yes-delete": "是的,删除",
1708
+ "tables-api-key-deleted": "API 密钥已删除",
1709
+ "tables-are-you-sure-you-want-to-delete-this-public-key": "您确定要删除此公钥吗?",
1710
+ "tables-delete-key": "删除密钥",
1711
+ "tables-yes-revoke": "是的,撤销",
1712
+ "tables-api-key-revoked": "API 密钥已撤销",
1713
+ "tables-are-you-sure-you-want-to-revoke-this-public-key": "您确定要撤销此公钥吗?",
1714
+ "tables-revoke-key": "撤销密钥",
1715
+ "tables-api-keys": "API 密钥",
1716
+ "tables-no-keys-yet-use-the-above-button-to-create-your-first-publishable-key": "尚无密钥,请使用上面的按钮创建您的第一个可发布密钥",
1717
+ "tables-title": "标题",
1718
+ "tables-description": "描述",
1719
+ "tables-no-added-sales-channels": "尚未添加销售渠道",
1720
+ "tables-sales-channels": "销售渠道",
1721
+ "form-title": "标题",
1722
+ "form-website-app-amazon-physical-store-pos-facebook-product-feed": "网站、应用、亚马逊、实体店 POS、Facebook 产品提要...",
1723
+ "form-description": "描述",
1724
+ "form-available-products-at-our-website-app": "我们网站、应用上的可用产品...",
1725
+ "form-success": "成功",
1726
+ "form-the-sales-channel-is-successfully-updated": "销售渠道已成功更新",
1727
+ "form-error": "错误",
1728
+ "form-failed-to-update-the-sales-channel": "无法更新销售渠道",
1729
+ "form-sales-channel-details": "销售渠道详情",
1730
+ "form-general-info": "常规信息",
1731
+ "form-name": "名称",
1732
+ "form-close": "关闭",
1733
+ "form-save": "保存",
1734
+ "pages-draft": "草稿",
1735
+ "pages-control-which-products-are-available-in-which-channels": "控制产品在哪些渠道中可用",
1736
+ "pages-search-by-title-or-description": "按标题或描述搜索",
1737
+ "pages-confirm-delete-sales-channel": "您确定要删除此销售渠道吗?您所做的设置将永久消失。",
1738
+ "pages-delete-channel-heading": "删除渠道",
1739
+ "pages-edit-general-info": "编辑常规信息",
1740
+ "pages-add-products": "添加产品",
1741
+ "pages-delete-channel": "删除渠道",
1742
+ "pages-disabled": "已禁用",
1743
+ "pages-enabled": "已启用",
1744
+ "tables-collection": "系列",
1745
+ "tables-start-building-your-channels-setup": "开始构建您的渠道设置...",
1746
+ "tables-no-products-in-channels": "您尚未向此渠道添加任何产品,但一旦添加,它们将显示在此处。",
1747
+ "tables-add-products": "添加产品",
1748
+ "tables-details": "详情",
1749
+ "tables-remove-from-the-channel": "从渠道中移除",
1750
+ "tables-products": "产品",
1751
+ "sales-channels-table-placeholder-selected-with-counts_one": "{{count}}",
1752
+ "sales-channels-table-placeholder-selected-with-counts_other": "{{count}}",
1753
+ "tables-remove": "移除",
1754
+ "components-successfully-updated-currency": "货币已成功更新",
1755
+ "components-default": "默认",
1756
+ "default-store-currency-success": "成功",
1757
+ "default-store-currency-successfully-updated-default-currency": "默认货币已成功更新",
1758
+ "default-store-currency-error": "错误",
1759
+ "default-store-currency-default-store-currency": "默认商店货币",
1760
+ "default-store-currency-this-is-the-currency-your-prices-are-shown-in": "这是显示价格的货币。",
1761
+ "store-currencies-success": "成功",
1762
+ "store-currencies-successfully-updated-currencies": "成功更新货币",
1763
+ "store-currencies-error": "错误",
1764
+ "store-currencies-cancel": "取消",
1765
+ "store-currencies-save-and-go-back": "保存并返回",
1766
+ "store-currencies-save-and-close": "保存并关闭",
1767
+ "store-currencies-add-store-currencies": "添加商店货币",
1768
+ "store-currencies-current-store-currencies": "当前商店货币",
1769
+ "store-currencies-close": "关闭",
1770
+ "current-currencies-screen-selected-with-count_one": "{{count}}",
1771
+ "current-currencies-screen-selected-with-count_other": "{{count}}",
1772
+ "store-currencies-deselect": "取消选择",
1773
+ "store-currencies-remove": "移除",
1774
+ "store-currencies-add-currencies": "添加货币",
1775
+ "store-currencies-store-currencies": "商店货币",
1776
+ "store-currencies-all-the-currencies-available-in-your-store": "您商店中所有可用的货币。",
1777
+ "store-currencies-edit-currencies": "编辑货币",
1778
+ "currencies-an-unknown-error-occurred": "发生未知错误",
1779
+ "currencies-error": "错误",
1780
+ "currencies-back-to-settings": "返回设置",
1781
+ "currencies-manage-the-markets-that-you-will-operate-within": "管理您将在其中运营的市场。",
1782
+ "currencies-include-or-exclude-taxes": "决定在定义此货币的价格时是否包括或排除税费",
1783
+ "currencies-tax-incl-prices": "含税价格",
1784
+ "settings-error": "错误",
1785
+ "settings-malformed-swap-url": "格式错误的交换 URL",
1786
+ "settings-malformed-payment-url": "格式错误的付款 URL",
1787
+ "settings-malformed-invite-url": "格式错误的邀请 URL",
1788
+ "settings-success": "成功",
1789
+ "settings-successfully-updated-store": "成功更新商店",
1790
+ "settings-back-to-settings": "返回设置",
1791
+ "settings-save": "保存",
1792
+ "settings-cancel": "取消",
1793
+ "settings-store-details": "商店详情",
1794
+ "settings-manage-your-business-details": "管理您的业务详情",
1795
+ "settings-general": "常规",
1796
+ "settings-store-name": "商店名称",
1797
+ "settings-store": "Acme 商店",
1798
+ "settings-advanced-settings": "高级设置",
1799
+ "settings-swap-link-template": "交换链接模板",
1800
+ "settings-draft-order-link-template": "草稿订单链接模板",
1801
+ "settings-invite-link-template": "邀请链接模板",
1802
+ "settings-manage-the-general-settings-for-your-store": "管理您商店的常规设置",
1803
+ "settings-manage-the-settings-for-your-store-apos-s-extensions": "管理您商店扩展的设置",
1804
+ "edit-user-information-success": "成功",
1805
+ "edit-user-information-your-information-was-successfully-updated": "您的信息已成功更新",
1806
+ "edit-user-information-edit-information": "编辑信息",
1807
+ "edit-user-information-cancel": "取消",
1808
+ "edit-user-information-submit-and-close": "提交并关闭",
1809
+ "personal-information-back-to-settings": "返回设置",
1810
+ "personal-information-personal-information": "个人信息",
1811
+ "personal-information-manage-your-profile": "管理您的个人资料",
1812
+ "personal-information-language-settings-title": "语言",
1813
+ "personal-information-language-settings-description": "调整管理员的语言",
1814
+ "personal-information-language-settings-help-us-translate": "帮助我们翻译",
1815
+ "personal-information-usage-insights-title": "使用见解",
1816
+ "usage-insights-disabled": "已禁用",
1817
+ "usage-insights-active": "已启用",
1818
+ "usage-insights-share-usage-insights-and-help-us-improve": "分享使用见解,帮助我们改进",
1819
+ "usage-insights-edit-preferences": "编辑首选项",
1820
+ "usage-insights-success": "成功",
1821
+ "usage-insights-your-information-was-successfully-updated": "您的信息已成功更新",
1822
+ "usage-insights-error": "错误",
1823
+ "usage-insights-cancel": "取消",
1824
+ "usage-insights-submit-and-close": "提交并关闭",
1825
+ "region-form-title": "标题",
1826
+ "region-form-europe": "欧洲",
1827
+ "region-form-currency-code-is-required": "货币代码是必需的",
1828
+ "region-form-currency": "货币",
1829
+ "region-form-choose-currency": "选择货币",
1830
+ "region-form-default-tax-rate": "默认税率",
1831
+ "region-form-tax-rate-is-required": "税率是必需的",
1832
+ "region-form-tax-rate-must-be-equal-to-or-less-than-100": "税率必须等于或小于 100",
1833
+ "region-form-default-tax-code": "默认税收代码",
1834
+ "region-form-countries": "国家",
1835
+ "region-form-choose-countries": "选择国家",
1836
+ "region-form-tax-inclusive-prices": "含税价格",
1837
+ "region-form-when-enabled-region-prices-will-be-tax-inclusive": "启用区域价格时将包含税费。",
1838
+ "region-form-payment-providers-are-required": "需要付款提供商",
1839
+ "region-form-payment-providers": "付款提供商",
1840
+ "region-form-choose-payment-providers": "选择付款提供商...",
1841
+ "region-form-fulfillment-providers-are-required": "需要履行提供商",
1842
+ "region-form-fulfillment-providers": "履行提供商",
1843
+ "region-form-choose-fulfillment-providers": "选择履行提供商...",
1844
+ "shipping-option-card-success": "成功",
1845
+ "shipping-option-card-shipping-option-updated": "已更新运输选项",
1846
+ "shipping-option-card-error": "错误",
1847
+ "shipping-option-card-edit-shipping-option": "编辑运输选项",
1848
+ "shipping-option-card-fulfillment-method": "履行方法",
1849
+ "shipping-option-card-cancel": "取消",
1850
+ "shipping-option-card-save-and-close": "保存并关闭",
1851
+ "shipping-option-card-shipping-option-has-been-deleted": "运输选项已被删除",
1852
+ "shipping-option-card-flat-rate": "固定费率",
1853
+ "shipping-option-card-calcualted": "计算",
1854
+ "shipping-option-card-min-subtotal": "最低小计:",
1855
+ "shipping-option-card-max-subtotal": "最高小计:",
1856
+ "shipping-option-card-admin": "管理员",
1857
+ "shipping-option-card-store": "商店",
1858
+ "shipping-option-card-edit": "编辑",
1859
+ "shipping-option-card-delete": "删除",
1860
+ "shipping-option-form-visible-in-store": "在商店中可见",
1861
+ "shipping-option-form-enable-or-disable-the-shipping-option-visiblity-in-store": "在商店中启用或禁用运输选项的可见性。",
1862
+ "shipping-option-form-details": "详情",
1863
+ "shipping-option-form-title": "标题",
1864
+ "shipping-option-form-title-is-required": "标题是必需的",
1865
+ "shipping-option-form-price-type": "价格类型",
1866
+ "shipping-option-form-flat-rate": "固定费率",
1867
+ "shipping-option-form-calculated": "计算",
1868
+ "shipping-option-form-choose-a-price-type": "选择价格类型",
1869
+ "shipping-option-form-price": "价格",
1870
+ "shipping-option-form-shipping-profile": "运输配置文件",
1871
+ "shipping-option-form-choose-a-shipping-profile": "选择运输配置文件",
1872
+ "shipping-option-form-fulfillment-method": "履行方法",
1873
+ "shipping-option-form-choose-a-fulfillment-method": "选择履行方法",
1874
+ "shipping-option-form-requirements": "要求",
1875
+ "shipping-option-form-min-subtotal-must-be-less-than-max-subtotal": "最低小计必须小于最高小计",
1876
+ "shipping-option-form-min-subtotal": "最低小计",
1877
+ "shipping-option-form-max-subtotal": "最高小计",
1878
+ "shipping-option-form-metadata": "元数据",
1879
+ "general-section-success": "成功",
1880
+ "general-section-region-was-successfully-updated": "区域已成功更新",
1881
+ "general-section-error": "错误",
1882
+ "general-section-edit-region-details": "编辑区域详情",
1883
+ "general-section-details": "详情",
1884
+ "general-section-providers": "提供商",
1885
+ "general-section-metadata": "元数据",
1886
+ "general-section-cancel": "取消",
1887
+ "general-section-save-and-close": "保存并关闭",
1888
+ "edit-something-went-wrong": "出了些问题...",
1889
+ "edit-no-region-found": "我们找不到具有该ID的区域,请使用左侧的菜单选择区域。",
1890
+ "return-shipping-options-success": "成功",
1891
+ "return-shipping-options-shipping-option-created": "已创建运输选项",
1892
+ "return-shipping-options-error": "错误",
1893
+ "return-shipping-options-add-return-shipping-option": "添加退货运输选项",
1894
+ "return-shipping-options-cancel": "取消",
1895
+ "return-shipping-options-save-and-close": "保存并关闭",
1896
+ "return-shipping-options-return-shipping-options": "退货运输选项",
1897
+ "return-shipping-options-add-option": "添加选项",
1898
+ "return-shipping-options-enter-specifics-about-available-regional-return-shipment-methods": "输入有关可用区域退货运输方法的详细信息。",
1899
+ "shipping-options-success": "成功",
1900
+ "shipping-options-shipping-option-created": "已创建运输选项",
1901
+ "shipping-options-error": "错误",
1902
+ "shipping-options-add-shipping-option": "添加运输选项",
1903
+ "shipping-options-cancel": "取消",
1904
+ "shipping-options-save-and-close": "保存并关闭",
1905
+ "shipping-options-shipping-options": "运输选项",
1906
+ "shipping-options-add-option": "添加选项",
1907
+ "shipping-options-enter-specifics-about-available-regional-shipment-methods": "输入有关可用区域运输方法的详细信息。",
1908
+ "new-region-created": "已创建区域",
1909
+ "new-create-region": "创建区域",
1910
+ "new-details": "详情",
1911
+ "new-add-the-region-details": "添加区域详情。",
1912
+ "new-providers": "提供商",
1913
+ "new-add-which-fulfillment-and-payment-providers-should-be-available-in-this-region": "添加在该区域中应可用的履行和付款提供商。",
1914
+ "region-overview-regions": "区域",
1915
+ "region-overview-manage-the-markets-that-you-will-operate-within": "管理您将在其中运营的市场",
1916
+ "region-overview-not-configured": "未配置",
1917
+ "region-overview-fulfillment-providers": "履行提供商:",
1918
+ "return-reasons-notification-success": "成功",
1919
+ "return-reasons-created-a-new-return-reason": "创建了一个新的退货原因",
1920
+ "return-reasons-success": "成功",
1921
+ "return-reasons-error": "错误",
1922
+ "return-reasons-cannot-create-a-return-reason-with-an-existing-value": "无法使用现有值创建退货原因",
1923
+ "return-reasons-add-reason": "添加原因",
1924
+ "return-reasons-value-is-required": "需要值",
1925
+ "return-reasons-value": "值",
1926
+ "return-reasons-label-is-required": "需要标签",
1927
+ "return-reasons-label": "标签",
1928
+ "return-reasons-description": "描述",
1929
+ "return-reasons-customer-received-the-wrong-size": "顾客收到了错误的尺寸",
1930
+ "return-reasons-cancel": "取消",
1931
+ "return-reasons-create": "创建",
1932
+ "return-reasons-success-title": "成功",
1933
+ "return-reasons-successfully-updated-return-reason": "成功更新退货原因",
1934
+ "return-reasons-duplicate-reason": "重复的原因",
1935
+ "return-reasons-delete-reason": "删除原因",
1936
+ "return-reasons-save": "保存",
1937
+ "return-reasons-details": "详情",
1938
+ "return-reasons-delete-return-reason": "删除退货原因",
1939
+ "return-reasons-are-you-sure-you-want-to-delete-this-return-reason": "您确定要删除此退货原因吗?",
1940
+ "return-reasons-back-to-settings": "返回设置",
1941
+ "return-reasons-return-reasons": "退货原因",
1942
+ "return-reasons-add-reason-label": "添加原因",
1943
+ "return-reasons-manage-reasons-for-returned-items": "管理退货商品的原因",
1944
+ "taxes-details": "详情",
1945
+ "taxes-new-tax-rate": "新税率",
1946
+ "taxes-tax-calculation-settings": "税收计算设置",
1947
+ "taxes-success": "成功",
1948
+ "taxes-successfully-updated-tax-rate": "成功更新税率。",
1949
+ "taxes-error": "错误",
1950
+ "taxes-overrides": "覆盖",
1951
+ "taxes-product-rules": "产品规则",
1952
+ "taxes-product-rules-description_one": "适用于{{count}}个产品",
1953
+ "taxes-product-rules-description_other": "适用于{{count}}个产品",
1954
+ "taxes-product-type-rules": "产品类型规则",
1955
+ "taxes-product-type-rules-description_one": "适用于{{count}}个产品类型",
1956
+ "taxes-product-type-rules-description_other": "适用于{{count}}个产品类型",
1957
+ "taxes-shipping-option-rules": "运输选项规则",
1958
+ "taxes-applies-to-shipping-option-with-count_one": "适用于{{count}}个运输选项",
1959
+ "taxes-applies-to-shipping-option-with-count_other": "适用于{{count}}个运输选项",
1960
+ "taxes-add-overrides": "添加覆盖",
1961
+ "taxes-cancel": "取消",
1962
+ "taxes-save": "保存",
1963
+ "taxes-name": "名称",
1964
+ "taxes-default": "默认",
1965
+ "taxes-rate-name": "费率名称",
1966
+ "taxes-tax-rate": "税率",
1967
+ "taxes-tax-code": "税收代码",
1968
+ "taxes-edit-tax-rate": "编辑税率",
1969
+ "taxes-back-to-settings": "返回设置",
1970
+ "taxes-regions": "区域",
1971
+ "taxes-select-the-region-you-wish-to-manage-taxes-for": "选择要管理税收的区域",
1972
+ "taxes-go-to-region-settings": "转到区域设置",
1973
+ "taxes-successfully-created-tax-rate": "成功创建税率。",
1974
+ "taxes-add-tax-rate": "添加税率",
1975
+ "taxes-applies-to-product-type-with-count_one": "适用于{{count}}个产品类型",
1976
+ "taxes-applies-to-product-type-with-count_other": "适用于{{count}}个产品类型",
1977
+ "taxes-create": "创建",
1978
+ "taxes-select-products": "选择产品",
1979
+ "taxes-select-product-types-label": "选择产品类型",
1980
+ "taxes-product-types": "产品类型",
1981
+ "taxes-system-tax-provider": "系统税务提供商",
1982
+ "taxes-region-tax-settings-were-successfully-updated": "成功更新了区域税收设置。",
1983
+ "taxes-tax-provider": "税务提供商",
1984
+ "taxes-calculate-taxes-automatically": "是否自动计算税金?",
1985
+ "taxes-automatically-apply-tax-calculations-to-carts": "勾选后,系统将自动将税金计算应用于此区域的购物车。如果未勾选,您将需要在结账时手动计算税金。如果使用第三方税务提供商,建议手动计算税金以避免执行过多请求",
1986
+ "taxes-apply-tax-to-gift-cards": "将税金应用于礼品卡?",
1987
+ "taxes-apply-taxes-to-gift-cards": "勾选后,在结账时将向礼品卡应用税金。在某些国家/地区,税收法规要求在购买时向礼品卡应用税金。",
1988
+ "taxes-search-products": "搜索产品",
1989
+ "taxes-select-shipping-option": "选择运输选项",
1990
+ "taxes-shipping-options": "运输选项",
1991
+ "taxes-delete-tax-rate-heading": "删除税率",
1992
+ "taxes-confirm-delete": "您确定要删除此税率吗?",
1993
+ "taxes-tax-rate-was-deleted": "税率已删除",
1994
+ "taxes-edit": "编辑",
1995
+ "taxes-delete-tax-rate": "删除税率",
1996
+ "taxes-delete-rule": "删除规则",
1997
+ "taxes-type": "类型",
1998
+ "taxes-products": "产品",
1999
+ "taxes-select-individual-products": "选择个别产品",
2000
+ "taxes-select-product-types": "选择产品类型",
2001
+ "taxes-select-shipping-options": "选择运输选项",
2002
+ "taxes-back": "返回",
2003
+ "taxes-add": "添加",
2004
+ "taxes-code": "代码",
2005
+ "users-invite-users": "邀请用户",
2006
+ "users-back-to-settings": "返回设置",
2007
+ "users-the-team": "团队",
2008
+ "users-manage-users-of-your-store": "管理您商店的用户",
2009
+ "users-count_one": "{{count}}",
2010
+ "users-count_other": "{{count}}"
2011
+ }