@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": "सबसे सम्मोहक ई-कॉमर्स अनुभव बनाने के लिए हम यह जानकारी हासिल करना चाहेंगे कि आप मेडुसा का उपयोग कैसे करते हैं। उपयोगकर्ता अंतर्दृष्टि हमें बेहतर, अधिक आकर्षक और अधिक उपयोगी उत्पाद बनाने की अनुमति देती है। हम केवल उत्पाद सुधार के लिए डेटा एकत्र करते हैं। पढ़ें कि हम अपने में कौन सा डेटा इकट्ठा करते हैं",
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": "आपके द्वारा अनुरोधित पेज नहीं मिला, कृपया यूआरएल जांचें और पुनः प्रयास करें।",
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-medusa": "मेडुसा मे लॉगिन करे",
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": "ऐमिड कोड",
134
+ "product-attributes-section-hs-code": "हेस कोड",
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": "ए. स. के. ऊ",
216
+ "product-variants-section-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": "संग्रह के लिए यूआरएल स्लग। खाली छोड़ने पर स्वतः उत्पन्न हो जाएगा।",
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": "एन/ए",
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": "ए'. स'. के. ऊ",
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": "एन/ए",
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": "ऑर्डर आईडी",
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-medusa-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 का उपयोग एक शर्त प्रदाता के भीतर किया जाना चाहिए",
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": "समरसेल10",
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) अनुशंसित, प्रत्येक 10एमबी तक",
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": "ऑर्डर आईडी कॉपी की गई",
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": "(नाम देने के लिए}})",
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": "ग्रीष्म10",
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": "ए'. स'. के. ऊ",
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": "{{totalStock}} विभिन्न {{variants}} प्रकार के स्टॉक में है",
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": "आयात के माध्यम से आप उत्पाद जोड़ या अपडेट कर सकते हैं। मौजूदा उत्पादों/वेरिएंट को अपडेट करने के लिए आपको उत्पाद/वेरिएंट आईडी कॉलम में एक मौजूदा आईडी सेट करनी होगी। यदि मान सेट नहीं है तो एक नया रिकॉर्ड बनाया जाएगा। उत्पादों को आयात करने से पहले आपसे पुष्टि के लिए कहा जाएगा।",
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": "एपीआई कुंजी अपडेट की गई",
1660
+ "modals-failed-to-update-the-api-key": "एपीआई कुंजी अद्यतन करने में विफल",
1661
+ "modals-edit-api-key-details": "एपीआई कुंजी विवरण संपादित करें",
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": "अपनी एपीआई कुंजी से जितनी आवश्यकता हो उतने बिक्री चैनल कनेक्ट करें।",
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": "एपीआई कुंजी प्रकाशित करें",
1688
+ "pages-create-api-key": "एपीआई कुंजी बनाएं",
1689
+ "pages-create-and-manage-api-keys-right-now-this-is-only-related-to-sales-channels": "एपीआई कुंजी बनाएं और प्रबंधित करें। अभी यह केवल बिक्री चैनलों से संबंधित है।",
1690
+ "pages-create-api-key-label": "एपीआई कुंजी बनाएं",
1691
+ "pages-back-to-settings": "सेटिंग्स पर वापस जाएँ",
1692
+ "pages-publishable-api-keys": "प्रकाशन योग्य एपीआई कुंजियाँ",
1693
+ "pages-these-publishable-keys-will-allow-you-to-authenticate-api-requests": "ये प्रकाशन योग्य कुंजियाँ आपको एपीआई अनुरोधों को प्रमाणित करने की अनुमति देंगी।",
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": "एपीआई कुंजी विवरण संपादित करें",
1703
+ "tables-edit-sales-channels": "बिक्री चैनल संपादित करें",
1704
+ "tables-copy-token": "टोकन कॉपी करें",
1705
+ "tables-revoke-token": "टोकन निरस्त करें",
1706
+ "tables-delete-api-key": "एपीआई कुंजी हटाएं",
1707
+ "tables-yes-delete": "हाँ, हटाओ",
1708
+ "tables-api-key-deleted": "एपीआई कुंजी हटा दी गई",
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": "एपीआई कुंजी निरस्त कर दी गई",
1713
+ "tables-are-you-sure-you-want-to-revoke-this-public-key": "क्या आप वाकई इस सार्वजनिक कुंजी को रद्द करना चाहते हैं?",
1714
+ "tables-revoke-key": "कुंजी निरस्त करें",
1715
+ "tables-api-keys": "एपीआई कुंजी",
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": "वेबसाइट, ऐप, अमेज़ॅन, फिजिकल स्टोर पीओएस, फेसबुक उत्पाद फ़ीड...",
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": "विकृत स्वैप यूआरएल",
1786
+ "settings-malformed-payment-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-medusa-store": "मेडुसा स्टोर",
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-medusa-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-medusa": "उपयोग संबंधी जानकारी साझा करें और मेडुसा को बेहतर बनाने में हमारी सहायता करें",
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": "हमें उस आईडी वाला कोई क्षेत्र नहीं मिल रहा है, किसी क्षेत्र का चयन करने के लिए बाईं ओर दिए गए मेनू का उपयोग करें।",
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}} productWithCount पर लागू होता है",
1953
+ "taxes-product-rules-description_other": "{{count}} productWithCount पर लागू होता है",
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-medusa-store": "अपने मेडुसा स्टोर के उपयोगकर्ताओं को प्रबंधित करें",
2009
+ "users-count_one": "{{count}}",
2010
+ "users-count_other": "{{count}}"
2011
+ }