@vendure/dashboard 3.2.0 → 3.2.2

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 (364) hide show
  1. package/LICENSE.md +42 -0
  2. package/README.md +12 -12
  3. package/dist/plugin/vite-plugin-admin-api-schema.js +2 -2
  4. package/dist/plugin/vite-plugin-dashboard-metadata.js +4 -4
  5. package/dist/plugin/vite-plugin-theme.d.ts +55 -0
  6. package/dist/plugin/vite-plugin-theme.js +130 -0
  7. package/dist/plugin/vite-plugin-ui-config.js +2 -2
  8. package/dist/plugin/vite-plugin-vendure-dashboard.d.ts +2 -1
  9. package/dist/plugin/vite-plugin-vendure-dashboard.js +2 -0
  10. package/index.html +15 -15
  11. package/lingui.config.js +12 -12
  12. package/package.json +15 -5
  13. package/src/app/app-providers.tsx +30 -30
  14. package/src/app/main.tsx +97 -97
  15. package/src/app/routes/__root.tsx +24 -24
  16. package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +79 -79
  17. package/src/app/routes/_authenticated/_administrators/administrators.tsx +86 -86
  18. package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +155 -155
  19. package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +133 -133
  20. package/src/app/routes/_authenticated/_assets/assets.tsx +19 -19
  21. package/src/app/routes/_authenticated/_channels/channels.graphql.ts +93 -93
  22. package/src/app/routes/_authenticated/_channels/channels.tsx +60 -60
  23. package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +248 -248
  24. package/src/app/routes/_authenticated/_collections/collections.graphql.ts +133 -133
  25. package/src/app/routes/_authenticated/_collections/collections.tsx +195 -195
  26. package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +224 -224
  27. package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +127 -127
  28. package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +46 -46
  29. package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +82 -82
  30. package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +91 -91
  31. package/src/app/routes/_authenticated/_countries/countries.graphql.ts +69 -69
  32. package/src/app/routes/_authenticated/_countries/countries.tsx +67 -67
  33. package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +122 -122
  34. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +44 -44
  35. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +129 -129
  36. package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +71 -71
  37. package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +68 -68
  38. package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +111 -111
  39. package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +155 -155
  40. package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +344 -344
  41. package/src/app/routes/_authenticated/_customers/components/customer-group-controls.tsx +4 -4
  42. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +78 -78
  43. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +77 -77
  44. package/src/app/routes/_authenticated/_customers/components/customer-history/index.ts +3 -3
  45. package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +169 -169
  46. package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +88 -88
  47. package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +33 -33
  48. package/src/app/routes/_authenticated/_customers/customers.graphql.ts +204 -204
  49. package/src/app/routes/_authenticated/_customers/customers.tsx +82 -82
  50. package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +274 -274
  51. package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +129 -129
  52. package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +46 -46
  53. package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +97 -97
  54. package/src/app/routes/_authenticated/_facets/facets.graphql.ts +104 -104
  55. package/src/app/routes/_authenticated/_facets/facets.tsx +97 -97
  56. package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +139 -139
  57. package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +28 -28
  58. package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +161 -161
  59. package/src/app/routes/_authenticated/_orders/components/order-address.tsx +58 -58
  60. package/src/app/routes/_authenticated/_orders/components/order-history/index.ts +3 -3
  61. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +72 -72
  62. package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +96 -96
  63. package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +171 -171
  64. package/src/app/routes/_authenticated/_orders/components/order-table.tsx +169 -169
  65. package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +38 -38
  66. package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +61 -61
  67. package/src/app/routes/_authenticated/_orders/orders.graphql.ts +325 -325
  68. package/src/app/routes/_authenticated/_orders/orders.tsx +120 -120
  69. package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +133 -133
  70. package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +104 -104
  71. package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +100 -100
  72. package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +83 -83
  73. package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +64 -64
  74. package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +183 -183
  75. package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +87 -87
  76. package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +123 -123
  77. package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +78 -78
  78. package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +331 -331
  79. package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +228 -228
  80. package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +462 -462
  81. package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +95 -95
  82. package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +87 -87
  83. package/src/app/routes/_authenticated/_products/products.graphql.ts +116 -116
  84. package/src/app/routes/_authenticated/_products/products.tsx +48 -48
  85. package/src/app/routes/_authenticated/_products/products_.$id.tsx +196 -196
  86. package/src/app/routes/_authenticated/_profile/profile.graphql.ts +23 -23
  87. package/src/app/routes/_authenticated/_profile/profile.tsx +122 -122
  88. package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +107 -107
  89. package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +107 -107
  90. package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +96 -96
  91. package/src/app/routes/_authenticated/_promotions/promotions.tsx +61 -61
  92. package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +235 -235
  93. package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +54 -54
  94. package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +116 -116
  95. package/src/app/routes/_authenticated/_roles/roles.graphql.ts +67 -67
  96. package/src/app/routes/_authenticated/_roles/roles.tsx +96 -96
  97. package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +142 -142
  98. package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +61 -61
  99. package/src/app/routes/_authenticated/_sellers/sellers.tsx +51 -51
  100. package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +111 -111
  101. package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +56 -56
  102. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +101 -101
  103. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +101 -101
  104. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +32 -32
  105. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +83 -83
  106. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +55 -55
  107. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +171 -171
  108. package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +62 -62
  109. package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +48 -48
  110. package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +115 -115
  111. package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +34 -34
  112. package/src/app/routes/_authenticated/_system/healthchecks.tsx +93 -93
  113. package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +43 -43
  114. package/src/app/routes/_authenticated/_system/job-queue.tsx +161 -161
  115. package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +63 -63
  116. package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +65 -65
  117. package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +115 -115
  118. package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +75 -75
  119. package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +108 -108
  120. package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +148 -148
  121. package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +31 -31
  122. package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +79 -79
  123. package/src/app/routes/_authenticated/_zones/zones.graphql.ts +96 -96
  124. package/src/app/routes/_authenticated/_zones/zones.tsx +57 -57
  125. package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +103 -103
  126. package/src/app/routes/_authenticated/index.tsx +194 -194
  127. package/src/app/routes/_authenticated.tsx +25 -25
  128. package/src/app/routes/login.tsx +48 -48
  129. package/src/app/styles.css +82 -82
  130. package/src/app/tailwindcss-animate.css +275 -275
  131. package/src/i18n/locales/de.po +1579 -1579
  132. package/src/i18n/locales/en.po +1579 -1579
  133. package/src/lib/components/data-display/boolean.tsx +23 -23
  134. package/src/lib/components/data-display/date-time.tsx +13 -13
  135. package/src/lib/components/data-display/json.tsx +5 -5
  136. package/src/lib/components/data-display/money.tsx +15 -15
  137. package/src/lib/components/data-input/affixed-input.tsx +49 -49
  138. package/src/lib/components/data-input/customer-group-input.tsx +72 -72
  139. package/src/lib/components/data-input/datetime-input.tsx +149 -149
  140. package/src/lib/components/data-input/facet-value-input.tsx +68 -68
  141. package/src/lib/components/data-input/money-input.tsx +112 -112
  142. package/src/lib/components/data-input/richt-text-input.tsx +99 -99
  143. package/src/lib/components/data-table/data-table-column-header.tsx +73 -73
  144. package/src/lib/components/data-table/data-table-faceted-filter.tsx +172 -172
  145. package/src/lib/components/data-table/data-table-filter-dialog.tsx +73 -73
  146. package/src/lib/components/data-table/data-table-pagination.tsx +87 -87
  147. package/src/lib/components/data-table/data-table-view-options.tsx +53 -53
  148. package/src/lib/components/data-table/data-table.tsx +218 -218
  149. package/src/lib/components/layout/app-layout.tsx +42 -42
  150. package/src/lib/components/layout/app-sidebar.tsx +34 -34
  151. package/src/lib/components/layout/channel-switcher.tsx +87 -87
  152. package/src/lib/components/layout/content-language-selector.tsx +41 -41
  153. package/src/lib/components/layout/generated-breadcrumbs.tsx +82 -82
  154. package/src/lib/components/layout/language-dialog.tsx +104 -104
  155. package/src/lib/components/layout/nav-main.tsx +178 -178
  156. package/src/lib/components/layout/nav-projects.tsx +81 -81
  157. package/src/lib/components/layout/nav-user.tsx +176 -176
  158. package/src/lib/components/layout/prerelease-popup.tsx +38 -38
  159. package/src/lib/components/login/login-form.tsx +173 -173
  160. package/src/lib/components/shared/alerts.tsx +20 -20
  161. package/src/lib/components/shared/animated-number.tsx +49 -49
  162. package/src/lib/components/shared/asset-gallery.tsx +433 -433
  163. package/src/lib/components/shared/asset-picker-dialog.tsx +71 -71
  164. package/src/lib/components/shared/asset-preview-dialog.tsx +48 -48
  165. package/src/lib/components/shared/asset-preview.tsx +345 -345
  166. package/src/lib/components/shared/assigned-facet-values.tsx +68 -68
  167. package/src/lib/components/shared/channel-code-label.tsx +7 -7
  168. package/src/lib/components/shared/channel-selector.tsx +51 -51
  169. package/src/lib/components/shared/configurable-operation-arg-input.tsx +51 -51
  170. package/src/lib/components/shared/configurable-operation-input.tsx +133 -133
  171. package/src/lib/components/shared/confirmation-dialog.tsx +58 -58
  172. package/src/lib/components/shared/copyable-text.tsx +31 -31
  173. package/src/lib/components/shared/country-selector.tsx +105 -105
  174. package/src/lib/components/shared/currency-selector.tsx +33 -33
  175. package/src/lib/components/shared/custom-fields-form.tsx +86 -86
  176. package/src/lib/components/shared/customer-address-form.tsx +330 -330
  177. package/src/lib/components/shared/customer-group-chip.tsx +30 -30
  178. package/src/lib/components/shared/customer-group-selector.tsx +62 -62
  179. package/src/lib/components/shared/customer-selector.tsx +107 -107
  180. package/src/lib/components/shared/detail-page-button.tsx +22 -22
  181. package/src/lib/components/shared/entity-assets.tsx +340 -340
  182. package/src/lib/components/shared/error-page.tsx +31 -31
  183. package/src/lib/components/shared/facet-value-chip.tsx +44 -44
  184. package/src/lib/components/shared/facet-value-selector.tsx +306 -306
  185. package/src/lib/components/shared/focal-point-control.tsx +64 -64
  186. package/src/lib/components/shared/form-field-wrapper.tsx +37 -37
  187. package/src/lib/components/shared/history-timeline/history-entry.tsx +112 -112
  188. package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +28 -28
  189. package/src/lib/components/shared/history-timeline/history-note-editor.tsx +60 -60
  190. package/src/lib/components/shared/history-timeline/history-note-input.tsx +39 -39
  191. package/src/lib/components/shared/history-timeline/history-timeline.tsx +56 -56
  192. package/src/lib/components/shared/icon-mark.tsx +18 -18
  193. package/src/lib/components/shared/language-selector.tsx +48 -48
  194. package/src/lib/components/shared/logo-mark.tsx +24 -24
  195. package/src/lib/components/shared/multi-select.tsx +159 -159
  196. package/src/lib/components/shared/option-value-input.tsx +94 -94
  197. package/src/lib/components/shared/paginated-list-data-table.tsx +520 -520
  198. package/src/lib/components/shared/permission-guard.tsx +20 -20
  199. package/src/lib/components/shared/role-code-label.tsx +8 -8
  200. package/src/lib/components/shared/role-selector.tsx +56 -56
  201. package/src/lib/components/shared/seller-selector.tsx +107 -107
  202. package/src/lib/components/shared/tax-category-selector.tsx +65 -65
  203. package/src/lib/components/shared/translatable-form-field.tsx +74 -74
  204. package/src/lib/components/shared/vendure-image.tsx +159 -159
  205. package/src/lib/components/shared/zone-selector.tsx +66 -66
  206. package/src/lib/components/ui/accordion.tsx +59 -59
  207. package/src/lib/components/ui/alert-dialog.tsx +128 -128
  208. package/src/lib/components/ui/alert.tsx +60 -60
  209. package/src/lib/components/ui/avatar.tsx +38 -38
  210. package/src/lib/components/ui/badge.tsx +38 -38
  211. package/src/lib/components/ui/breadcrumb.tsx +102 -102
  212. package/src/lib/components/ui/button.tsx +51 -51
  213. package/src/lib/components/ui/calendar.tsx +69 -69
  214. package/src/lib/components/ui/card.tsx +47 -47
  215. package/src/lib/components/ui/checkbox.tsx +27 -27
  216. package/src/lib/components/ui/collapsible.tsx +33 -33
  217. package/src/lib/components/ui/command.tsx +133 -133
  218. package/src/lib/components/ui/dialog.tsx +116 -116
  219. package/src/lib/components/ui/dropdown-menu.tsx +220 -220
  220. package/src/lib/components/ui/form.tsx +141 -141
  221. package/src/lib/components/ui/hover-card.tsx +36 -36
  222. package/src/lib/components/ui/input.tsx +19 -19
  223. package/src/lib/components/ui/label.tsx +21 -21
  224. package/src/lib/components/ui/pagination.tsx +127 -127
  225. package/src/lib/components/ui/popover.tsx +40 -40
  226. package/src/lib/components/ui/scroll-area.tsx +50 -50
  227. package/src/lib/components/ui/select.tsx +161 -161
  228. package/src/lib/components/ui/separator.tsx +26 -26
  229. package/src/lib/components/ui/sheet.tsx +118 -118
  230. package/src/lib/components/ui/sidebar.tsx +696 -696
  231. package/src/lib/components/ui/skeleton.tsx +13 -13
  232. package/src/lib/components/ui/sonner.tsx +27 -27
  233. package/src/lib/components/ui/switch.tsx +26 -26
  234. package/src/lib/components/ui/table.tsx +82 -82
  235. package/src/lib/components/ui/tabs.tsx +48 -48
  236. package/src/lib/components/ui/textarea.tsx +18 -18
  237. package/src/lib/components/ui/tooltip.tsx +51 -51
  238. package/src/lib/constants.ts +326 -326
  239. package/src/lib/framework/component-registry/component-registry.tsx +70 -70
  240. package/src/lib/framework/component-registry/dynamic-component.tsx +58 -58
  241. package/src/lib/framework/dashboard-widget/base-widget.tsx +97 -97
  242. package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +96 -96
  243. package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +35 -35
  244. package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +24 -24
  245. package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +82 -82
  246. package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +14 -14
  247. package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +167 -167
  248. package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +14 -14
  249. package/src/lib/framework/dashboard-widget/types.ts +22 -22
  250. package/src/lib/framework/dashboard-widget/widget-extensions.tsx +19 -19
  251. package/src/lib/framework/defaults.ts +219 -219
  252. package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +242 -242
  253. package/src/lib/framework/document-introspection/add-custom-fields.ts +246 -246
  254. package/src/lib/framework/document-introspection/get-document-structure.spec.ts +310 -310
  255. package/src/lib/framework/document-introspection/get-document-structure.ts +460 -460
  256. package/src/lib/framework/document-introspection/hooks.ts +10 -10
  257. package/src/lib/framework/extension-api/define-dashboard-extension.ts +66 -66
  258. package/src/lib/framework/extension-api/extension-api-types.ts +58 -58
  259. package/src/lib/framework/extension-api/use-dashboard-extensions.ts +26 -26
  260. package/src/lib/framework/form-engine/form-schema-tools.ts +98 -98
  261. package/src/lib/framework/form-engine/use-generated-form.tsx +116 -116
  262. package/src/lib/framework/layout-engine/layout-extensions.ts +30 -30
  263. package/src/lib/framework/layout-engine/location-wrapper.tsx +96 -96
  264. package/src/lib/framework/layout-engine/page-layout.tsx +272 -272
  265. package/src/lib/framework/nav-menu/nav-menu-extensions.ts +66 -66
  266. package/src/lib/framework/page/detail-page-route-loader.tsx +48 -48
  267. package/src/lib/framework/page/detail-page.tsx +131 -131
  268. package/src/lib/framework/page/list-page.tsx +166 -166
  269. package/src/lib/framework/page/page-api.ts +9 -9
  270. package/src/lib/framework/page/page-types.ts +51 -51
  271. package/src/lib/framework/page/use-detail-page.ts +217 -217
  272. package/src/lib/framework/page/use-extended-router.tsx +69 -69
  273. package/src/lib/framework/registry/global-registry.ts +46 -46
  274. package/src/lib/framework/registry/registry-types.ts +15 -15
  275. package/src/lib/graphql/api.ts +61 -61
  276. package/src/lib/graphql/fragments.tsx +54 -54
  277. package/src/lib/graphql/graphql-env.d.ts +499 -499
  278. package/src/lib/graphql/graphql.ts +15 -15
  279. package/src/lib/hooks/use-auth.tsx +11 -11
  280. package/src/lib/hooks/use-channel.ts +12 -12
  281. package/src/lib/hooks/use-custom-field-config.ts +10 -10
  282. package/src/lib/hooks/use-grouped-permissions.ts +54 -54
  283. package/src/lib/hooks/use-local-format.ts +119 -119
  284. package/src/lib/hooks/use-mobile.ts +19 -19
  285. package/src/lib/hooks/use-page.tsx +10 -10
  286. package/src/lib/hooks/use-permissions.ts +22 -22
  287. package/src/lib/hooks/use-server-config.ts +4 -4
  288. package/src/lib/hooks/use-theme.ts +10 -10
  289. package/src/lib/hooks/use-user-settings.tsx +12 -12
  290. package/src/lib/index.ts +149 -149
  291. package/src/lib/lib/trans.tsx +16 -16
  292. package/src/lib/lib/utils.ts +60 -60
  293. package/src/lib/providers/auth.tsx +152 -152
  294. package/src/lib/providers/channel-provider.tsx +121 -121
  295. package/src/lib/providers/i18n-provider.tsx +28 -28
  296. package/src/lib/providers/server-config.tsx +279 -279
  297. package/src/lib/providers/theme-provider.tsx +54 -54
  298. package/src/lib/providers/user-settings.tsx +89 -89
  299. package/src/lib/virtual.d.ts +12 -12
  300. package/vite/config-loader.ts +181 -181
  301. package/vite/constants.ts +280 -280
  302. package/vite/index.ts +1 -1
  303. package/vite/schema-generator.ts +40 -40
  304. package/vite/ui-config.ts +60 -60
  305. package/vite/vite-plugin-admin-api-schema.ts +141 -141
  306. package/vite/vite-plugin-config-loader.ts +64 -64
  307. package/vite/vite-plugin-config.ts +42 -42
  308. package/vite/vite-plugin-dashboard-metadata.ts +58 -58
  309. package/vite/vite-plugin-gql-tada.ts +62 -62
  310. package/vite/vite-plugin-theme.ts +195 -195
  311. package/vite/vite-plugin-ui-config.ts +60 -60
  312. package/vite/vite-plugin-vendure-dashboard.ts +118 -118
  313. package/dist/plugin/.vendure-dashboard-temp/dev-config.js +0 -227
  314. package/dist/plugin/.vendure-dashboard-temp/dev-config.js.map +0 -1
  315. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js +0 -33
  316. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js.map +0 -1
  317. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js +0 -69
  318. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js.map +0 -1
  319. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js +0 -110
  320. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js.map +0 -1
  321. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js +0 -134
  322. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js.map +0 -1
  323. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js +0 -86
  324. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js.map +0 -1
  325. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js +0 -49
  326. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js.map +0 -1
  327. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js +0 -57
  328. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js.map +0 -1
  329. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js +0 -20
  330. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js.map +0 -1
  331. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js +0 -151
  332. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js.map +0 -1
  333. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js +0 -47
  334. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js.map +0 -1
  335. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js +0 -222
  336. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js.map +0 -1
  337. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js +0 -4
  338. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js.map +0 -1
  339. package/dist/plugin/.vendure-dashboard-temp/package.json +0 -3
  340. package/dist/plugin/.vendure-dashboard-temp/schema.graphql +0 -6378
  341. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js +0 -103
  342. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js.map +0 -1
  343. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js +0 -105
  344. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js.map +0 -1
  345. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js +0 -183
  346. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js.map +0 -1
  347. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js +0 -113
  348. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js.map +0 -1
  349. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js +0 -112
  350. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js.map +0 -1
  351. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js +0 -111
  352. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js.map +0 -1
  353. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js +0 -616
  354. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js.map +0 -1
  355. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js +0 -563
  356. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js.map +0 -1
  357. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js +0 -135
  358. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js.map +0 -1
  359. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js +0 -4
  360. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js.map +0 -1
  361. package/dist/plugin/.vendure-dashboard-temp/tsconfig.json +0 -10
  362. package/dist/plugin/vite-plugin-set-root.d.ts +0 -4
  363. package/dist/plugin/vite-plugin-set-root.js +0 -15
  364. package/src/app/routeTree.gen.ts +0 -1372
@@ -1,1579 +1,1579 @@
1
- msgid ""
2
- msgstr ""
3
- "POT-Creation-Date: 2025-02-20 14:18+0100\n"
4
- "MIME-Version: 1.0\n"
5
- "Content-Type: text/plain; charset=utf-8\n"
6
- "Content-Transfer-Encoding: 8bit\n"
7
- "X-Generator: @lingui/cli\n"
8
- "Language: en\n"
9
- "Project-Id-Version: \n"
10
- "Report-Msgid-Bugs-To: \n"
11
- "PO-Revision-Date: \n"
12
- "Last-Translator: \n"
13
- "Language-Team: \n"
14
- "Plural-Forms: \n"
15
-
16
- #. js-lingui-explicit-id
17
- #: src/lib/components/shared/role-selector.tsx:52
18
- msgid "Select a role"
19
- msgstr "Select a role"
20
-
21
- #. js-lingui-explicit-id
22
- #: src/lib/components/shared/role-selector.tsx:53
23
- msgid "Search roles..."
24
- msgstr "Search roles..."
25
-
26
- #. js-lingui-explicit-id
27
- #: src/lib/components/shared/paginated-list-data-table.tsx:468
28
- msgid "Deleted successfully"
29
- msgstr "Deleted successfully"
30
-
31
- #. js-lingui-explicit-id
32
- #: src/lib/components/shared/paginated-list-data-table.tsx:470
33
- #: src/lib/components/shared/paginated-list-data-table.tsx:476
34
- msgid "Failed to delete"
35
- msgstr "Failed to delete"
36
-
37
- #. js-lingui-explicit-id
38
- #: src/lib/components/shared/language-selector.tsx:44
39
- msgid "Select a language"
40
- msgstr "Select a language"
41
-
42
- #. js-lingui-explicit-id
43
- #: src/lib/components/shared/language-selector.tsx:45
44
- msgid "Search languages..."
45
- msgstr "Search languages..."
46
-
47
- #. js-lingui-explicit-id
48
- #: src/lib/components/shared/currency-selector.tsx:29
49
- msgid "Select a currency"
50
- msgstr "Select a currency"
51
-
52
- #. js-lingui-explicit-id
53
- #: src/lib/components/shared/currency-selector.tsx:30
54
- msgid "Search currencies..."
55
- msgstr "Search currencies..."
56
-
57
- #. js-lingui-explicit-id
58
- #: src/lib/components/shared/channel-selector.tsx:47
59
- msgid "Select a channel"
60
- msgstr "Select a channel"
61
-
62
- #. js-lingui-explicit-id
63
- #: src/lib/components/shared/channel-selector.tsx:48
64
- msgid "Search channels..."
65
- msgstr "Search channels..."
66
-
67
- #. js-lingui-explicit-id
68
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:59
69
- msgid "Successfully updated zone"
70
- msgstr "Successfully updated zone"
71
-
72
- #. js-lingui-explicit-id
73
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:66
74
- msgid "Failed to update zone"
75
- msgstr "Failed to update zone"
76
-
77
- #. js-lingui-explicit-id
78
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:69
79
- msgid "Successfully updated tax rate"
80
- msgstr "Successfully updated tax rate"
81
-
82
- #. js-lingui-explicit-id
83
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:76
84
- msgid "Failed to update tax rate"
85
- msgstr "Failed to update tax rate"
86
-
87
- #. js-lingui-explicit-id
88
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:63
89
- msgid "Successfully updated tax category"
90
- msgstr "Successfully updated tax category"
91
-
92
- #. js-lingui-explicit-id
93
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:70
94
- msgid "Failed to update tax category"
95
- msgstr "Failed to update tax category"
96
-
97
- #. js-lingui-explicit-id
98
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:64
99
- msgid "Successfully updated stock location"
100
- msgstr "Successfully updated stock location"
101
-
102
- #. js-lingui-explicit-id
103
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:71
104
- msgid "Failed to update stock location"
105
- msgstr "Failed to update stock location"
106
-
107
- #. js-lingui-explicit-id
108
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:86
109
- msgid "Successfully updated shipping method"
110
- msgstr "Successfully updated shipping method"
111
-
112
- #. js-lingui-explicit-id
113
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:93
114
- msgid "Failed to update shipping method"
115
- msgstr "Failed to update shipping method"
116
-
117
- #. js-lingui-explicit-id
118
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:57
119
- msgid "Successfully updated seller"
120
- msgstr "Successfully updated seller"
121
-
122
- #. js-lingui-explicit-id
123
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:66
124
- msgid "Failed to update seller"
125
- msgstr "Failed to update seller"
126
-
127
- #. js-lingui-explicit-id
128
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:61
129
- msgid "Successfully updated role"
130
- msgstr "Successfully updated role"
131
-
132
- #. js-lingui-explicit-id
133
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:68
134
- msgid "Failed to update role"
135
- msgstr "Failed to update role"
136
-
137
- #. js-lingui-explicit-id
138
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:97
139
- msgid "Successfully updated promotion"
140
- msgstr "Successfully updated promotion"
141
-
142
- #. js-lingui-explicit-id
143
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:105
144
- msgid "Failed to update promotion"
145
- msgstr "Failed to update promotion"
146
-
147
- #. js-lingui-explicit-id
148
- #: src/app/routes/_authenticated/_profile/profile.tsx:62
149
- msgid "Successfully updated profile"
150
- msgstr "Successfully updated profile"
151
-
152
- #. js-lingui-explicit-id
153
- #: src/app/routes/_authenticated/_profile/profile.tsx:68
154
- msgid "Failed to update profile"
155
- msgstr "Failed to update profile"
156
-
157
- #. js-lingui-explicit-id
158
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:77
159
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:99
160
- msgid "Successfully updated product"
161
- msgstr "Successfully updated product"
162
-
163
- #. js-lingui-explicit-id
164
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:84
165
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:106
166
- msgid "Failed to update product"
167
- msgstr "Failed to update product"
168
-
169
- #. js-lingui-explicit-id
170
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:88
171
- msgid "Successfully updated payment method"
172
- msgstr "Successfully updated payment method"
173
-
174
- #. js-lingui-explicit-id
175
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:95
176
- msgid "Failed to update payment method"
177
- msgstr "Failed to update payment method"
178
-
179
- #. js-lingui-explicit-id
180
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:53
181
- msgid "Successfully updated order"
182
- msgstr "Successfully updated order"
183
-
184
- #. js-lingui-explicit-id
185
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:57
186
- msgid "Failed to update order"
187
- msgstr "Failed to update order"
188
-
189
- #. js-lingui-explicit-id
190
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:81
191
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:80
192
- msgid "Note added successfully"
193
- msgstr "Note added successfully"
194
-
195
- #. js-lingui-explicit-id
196
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:85
197
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:84
198
- msgid "Failed to add note"
199
- msgstr "Failed to add note"
200
-
201
- #. js-lingui-explicit-id
202
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:102
203
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:101
204
- msgid "Note updated successfully"
205
- msgstr "Note updated successfully"
206
-
207
- #. js-lingui-explicit-id
208
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:106
209
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:105
210
- msgid "Failed to update note"
211
- msgstr "Failed to update note"
212
-
213
- #. js-lingui-explicit-id
214
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:123
215
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:121
216
- msgid "Note deleted successfully"
217
- msgstr "Note deleted successfully"
218
-
219
- #. js-lingui-explicit-id
220
- #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:127
221
- #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:125
222
- msgid "Failed to delete note"
223
- msgstr "Failed to delete note"
224
-
225
- #. js-lingui-explicit-id
226
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:63
227
- msgid "Successfully updated global settings"
228
- msgstr "Successfully updated global settings"
229
-
230
- #. js-lingui-explicit-id
231
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:71
232
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:78
233
- msgid "Failed to update global settings"
234
- msgstr "Failed to update global settings"
235
-
236
- #. js-lingui-explicit-id
237
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:74
238
- msgid "Successfully updated facet"
239
- msgstr "Successfully updated facet"
240
-
241
- #. js-lingui-explicit-id
242
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:83
243
- msgid "Failed to update facet"
244
- msgstr "Failed to update facet"
245
-
246
- #. js-lingui-explicit-id
247
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:89
248
- msgid "Successfully updated customer"
249
- msgstr "Successfully updated customer"
250
-
251
- #. js-lingui-explicit-id
252
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:95
253
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:101
254
- msgid "Failed to update customer"
255
- msgstr "Failed to update customer"
256
-
257
- #. js-lingui-explicit-id
258
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:114
259
- msgid "Failed to create address"
260
- msgstr "Failed to create address"
261
-
262
- #. js-lingui-explicit-id
263
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:124
264
- #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:56
265
- msgid "Failed to add customer to group"
266
- msgstr "Failed to add customer to group"
267
-
268
- #. js-lingui-explicit-id
269
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:134
270
- msgid "Failed to remove customer from group"
271
- msgstr "Failed to remove customer from group"
272
-
273
- #. js-lingui-explicit-id
274
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:281
275
- msgid "Select a country"
276
- msgstr "Select a country"
277
-
278
- #. js-lingui-explicit-id
279
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:41
280
- msgid "Address deleted successfully"
281
- msgstr "Address deleted successfully"
282
-
283
- #. js-lingui-explicit-id
284
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:45
285
- msgid "Failed to delete address"
286
- msgstr "Failed to delete address"
287
-
288
- #. js-lingui-explicit-id
289
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:53
290
- msgid "Address updated successfully"
291
- msgstr "Address updated successfully"
292
-
293
- #. js-lingui-explicit-id
294
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:57
295
- msgid "Failed to update address"
296
- msgstr "Failed to update address"
297
-
298
- #. js-lingui-explicit-id
299
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:141
300
- msgid "Delete Address"
301
- msgstr "Delete Address"
302
-
303
- #. js-lingui-explicit-id
304
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:142
305
- msgid "Are you sure you want to delete this address?"
306
- msgstr "Are you sure you want to delete this address?"
307
-
308
- #. js-lingui-explicit-id
309
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:62
310
- msgid "Successfully updated customer group"
311
- msgstr "Successfully updated customer group"
312
-
313
- #. js-lingui-explicit-id
314
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:69
315
- msgid "Failed to update customer group"
316
- msgstr "Failed to update customer group"
317
-
318
- #. js-lingui-explicit-id
319
- #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:50
320
- msgid "Customer added to group"
321
- msgstr "Customer added to group"
322
-
323
- #. js-lingui-explicit-id
324
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:62
325
- msgid "Successfully updated country"
326
- msgstr "Successfully updated country"
327
-
328
- #. js-lingui-explicit-id
329
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
330
- msgid "Failed to update country"
331
- msgstr "Failed to update country"
332
-
333
- #. js-lingui-explicit-id
334
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:98
335
- msgid "Successfully updated collection"
336
- msgstr "Successfully updated collection"
337
-
338
- #. js-lingui-explicit-id
339
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:107
340
- msgid "Failed to update collection"
341
- msgstr "Failed to update collection"
342
-
343
- #. js-lingui-explicit-id
344
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:80
345
- msgid "Successfully updated channel"
346
- msgstr "Successfully updated channel"
347
-
348
- #. js-lingui-explicit-id
349
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:88
350
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:95
351
- msgid "Failed to update channel"
352
- msgstr "Failed to update channel"
353
-
354
- #. js-lingui-explicit-id
355
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:74
356
- msgid "Successfully updated administrator"
357
- msgstr "Successfully updated administrator"
358
-
359
- #. js-lingui-explicit-id
360
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:83
361
- msgid "Failed to update administrator"
362
- msgstr "Failed to update administrator"
363
-
364
- #. placeholder {0}: row.original.isDefault ? 'Yes' : 'No'
365
- #. placeholder {0}: entry.type.replace(/_/g, ' ').toLowerCase()
366
- #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:47
367
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:53
368
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:33
369
- msgid "{0}"
370
- msgstr "{0}"
371
-
372
- #. placeholder {0}: value.totalItems
373
- #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:43
374
- msgid "{0} customers"
375
- msgstr "{0} customers"
376
-
377
- #. placeholder {0}: row.original.productVariants.totalItems
378
- #: src/app/routes/_authenticated/_collections/collections.tsx:51
379
- msgid "{0} variants"
380
- msgstr "{0} variants"
381
-
382
- #: src/lib/components/data-table/data-table-filter-dialog.tsx:44
383
- msgctxt "filter-operator"
384
- msgid "{op}"
385
- msgstr "{op}"
386
-
387
- #: src/lib/framework/dashboard-widget/base-widget.tsx:85
388
- msgid "{title}"
389
- msgstr "{title}"
390
-
391
- #. placeholder {0}: list.totalItems - 3
392
- #: src/app/routes/_authenticated/_facets/facets.tsx:58
393
- msgid "+ {0} more"
394
- msgstr "+ {0} more"
395
-
396
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:225
397
- msgid "Actions"
398
- msgstr "Actions"
399
-
400
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:227
401
- msgid "Add a new address to the customer."
402
- msgstr "Add a new address to the customer."
403
-
404
- #: src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx:94
405
- msgctxt "Add new promotion action"
406
- msgid "Add action"
407
- msgstr "Add action"
408
-
409
- #: src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx:94
410
- msgctxt "Add new promotion condition"
411
- msgid "Add condition"
412
- msgstr "Add condition"
413
-
414
- #: src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx:78
415
- msgctxt "Add new collection filter"
416
- msgid "Add condition"
417
- msgstr "Add condition"
418
-
419
- #: src/app/routes/_authenticated/_countries/countries.tsx:61
420
- msgid "Add Country"
421
- msgstr "Add Country"
422
-
423
- #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:124
424
- msgid "Add customer"
425
- msgstr "Add customer"
426
-
427
- #: src/lib/components/shared/customer-group-selector.tsx:46
428
- msgid "Add customer groups"
429
- msgstr "Add customer groups"
430
-
431
- #: src/lib/components/shared/facet-value-selector.tsx:199
432
- msgid "Add facet values"
433
- msgstr "Add facet values"
434
-
435
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:218
436
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:224
437
- msgid "Add new address"
438
- msgstr "Add new address"
439
-
440
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:257
441
- msgid "Add Option"
442
- msgstr "Add Option"
443
-
444
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:271
445
- msgid "Add Stock to Location"
446
- msgstr "Add Stock to Location"
447
-
448
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:197
449
- msgid "Addresses"
450
- msgstr "Addresses"
451
-
452
- #: src/app/routes/_authenticated/_administrators/administrators.tsx:15
453
- msgid "Administrators"
454
- msgstr "Administrators"
455
-
456
- #: src/app/routes/_authenticated/_system/healthchecks.tsx:57
457
- msgid "All resources are up and running"
458
- msgstr "All resources are up and running"
459
-
460
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:213
461
- msgid "Allocated"
462
- msgstr "Allocated"
463
-
464
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:19
465
- msgid "Amount"
466
- msgstr "Amount"
467
-
468
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:179
469
- msgid "Apartment, suite, etc."
470
- msgstr "Apartment, suite, etc."
471
-
472
- #: src/lib/components/data-table/data-table-filter-dialog.tsx:67
473
- msgid "Apply filter"
474
- msgstr "Apply filter"
475
-
476
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:171
477
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:308
478
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:200
479
- #: src/app/routes/_authenticated/_assets/assets.tsx:14
480
- msgid "Assets"
481
- msgstr "Assets"
482
-
483
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:175
484
- msgid "Available currencies"
485
- msgstr "Available currencies"
486
-
487
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:109
488
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:163
489
- msgid "Available languages"
490
- msgstr "Available languages"
491
-
492
- #: src/lib/components/shared/facet-value-selector.tsx:234
493
- msgid "Back to search"
494
- msgstr "Back to search"
495
-
496
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:116
497
- msgid "Billing address"
498
- msgstr "Billing address"
499
-
500
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:166
501
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:163
502
- msgid "Calculator"
503
- msgstr "Calculator"
504
-
505
- #: src/lib/components/shared/confirmation-dialog.tsx:43
506
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:378
507
- msgid "Cancel"
508
- msgstr "Cancel"
509
-
510
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:189
511
- msgid "Channel defaults"
512
- msgstr "Channel defaults"
513
-
514
- #: src/lib/components/layout/channel-switcher.tsx:56
515
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:113
516
- #: src/app/routes/_authenticated/_channels/channels.tsx:14
517
- msgid "Channels"
518
- msgstr "Channels"
519
-
520
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:204
521
- msgid "City"
522
- msgstr "City"
523
-
524
- #: src/lib/components/data-table/data-table-filter-dialog.tsx:58
525
- msgid "Clear filter"
526
- msgstr "Clear filter"
527
-
528
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:129
529
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:102
530
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:139
531
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:129
532
- #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:113
533
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:116
534
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:135
535
- msgid "Code"
536
- msgstr "Code"
537
-
538
- #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:32
539
- msgid "Collection contents for {collectionName}"
540
- msgstr "Collection contents for {collectionName}"
541
-
542
- #: src/app/routes/_authenticated/_collections/collections.tsx:14
543
- msgid "Collections"
544
- msgstr "Collections"
545
-
546
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:133
547
- msgid "Company"
548
- msgstr "Company"
549
-
550
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:154
551
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:213
552
- msgid "Conditions"
553
- msgstr "Conditions"
554
-
555
- #: src/lib/components/shared/confirmation-dialog.tsx:52
556
- msgid "Continue"
557
- msgstr "Continue"
558
-
559
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:101
560
- #: src/app/routes/_authenticated/_countries/countries.tsx:13
561
- msgid "Countries"
562
- msgstr "Countries"
563
-
564
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:271
565
- msgid "Country"
566
- msgstr "Country"
567
-
568
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:183
569
- msgid "Coupon code"
570
- msgstr "Coupon code"
571
-
572
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:289
573
- msgid "Create"
574
- msgstr "Create"
575
-
576
- #. placeholder {0}: variantData ? Object.values(variantData.variants).filter(v => v.enabled).length : 0
577
- #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:214
578
- msgid "Create {0} variants"
579
- msgstr "Create {0} variants"
580
-
581
- #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:186
582
- msgid "Create Variants"
583
- msgstr "Create Variants"
584
-
585
- #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:189
586
- msgid "Create variants for your product"
587
- msgstr "Create variants for your product"
588
-
589
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:21
590
- msgid "Created at"
591
- msgstr "Created at"
592
-
593
- #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:212
594
- msgid "Creating..."
595
- msgstr "Creating..."
596
-
597
- #: src/lib/components/shared/role-code-label.tsx:6
598
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:97
599
- msgid "Customer"
600
- msgstr "Customer"
601
-
602
- #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:32
603
- msgid "Customer group members for {customerGroupName}"
604
- msgstr "Customer group members for {customerGroupName}"
605
-
606
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:252
607
- msgid "Customer groups"
608
- msgstr "Customer groups"
609
-
610
- #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:16
611
- msgid "Customer Groups"
612
- msgstr "Customer Groups"
613
-
614
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:246
615
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:30
616
- msgid "Customer history"
617
- msgstr "Customer history"
618
-
619
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:56
620
- msgid "Customer not found"
621
- msgstr "Customer not found"
622
-
623
- #: src/app/routes/_authenticated/_customers/customers.tsx:14
624
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:106
625
- msgid "Customers"
626
- msgstr "Customers"
627
-
628
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:363
629
- msgid "Default Billing Address"
630
- msgstr "Default Billing Address"
631
-
632
- #: src/lib/components/shared/channel-code-label.tsx:5
633
- msgid "Default channel"
634
- msgstr "Default channel"
635
-
636
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:208
637
- msgid "Default currency"
638
- msgstr "Default currency"
639
-
640
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:195
641
- msgid "Default language"
642
- msgstr "Default language"
643
-
644
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:339
645
- msgid "Default Shipping Address"
646
- msgstr "Default Shipping Address"
647
-
648
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:229
649
- msgid "Default shipping zone"
650
- msgstr "Default shipping zone"
651
-
652
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:221
653
- msgid "Default tax zone"
654
- msgstr "Default tax zone"
655
-
656
- #: src/lib/components/shared/paginated-list-data-table.tsx:485
657
- msgid "Delete"
658
- msgstr "Delete"
659
-
660
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
661
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:136
662
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:96
663
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:153
664
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:137
665
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:146
666
- #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
667
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:166
668
- msgid "Description"
669
- msgstr "Description"
670
-
671
- #: src/lib/components/layout/app-layout.tsx:26
672
- msgid "Dev Mode"
673
- msgstr "Dev Mode"
674
-
675
- #: src/lib/components/layout/nav-user.tsx:157
676
- msgid "Disabled"
677
- msgstr "Disabled"
678
-
679
- #: src/lib/components/layout/language-dialog.tsx:35
680
- msgid "Display language"
681
- msgstr "Display language"
682
-
683
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:243
684
- msgid "Do not track"
685
- msgstr "Do not track"
686
-
687
- #: src/lib/components/shared/history-timeline/history-entry.tsx:98
688
- #: src/app/routes/_authenticated/_facets/components/facet-values-table.tsx:85
689
- msgid "Edit"
690
- msgstr "Edit"
691
-
692
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:126
693
- msgid "Edit Address"
694
- msgstr "Edit Address"
695
-
696
- #: src/app/routes/_authenticated/_zones/zones.tsx:39
697
- msgid "Edit members"
698
- msgstr "Edit members"
699
-
700
- #: src/lib/components/shared/history-timeline/history-note-editor.tsx:44
701
- msgid "Edit Note"
702
- msgstr "Edit Note"
703
-
704
- #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:129
705
- msgid "Edit the address details below."
706
- msgstr "Edit the address details below."
707
-
708
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:182
709
- msgid "Email address"
710
- msgstr "Email address"
711
-
712
- #: src/app/routes/_authenticated/_profile/profile.tsx:109
713
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:127
714
- msgid "Email Address or identifier"
715
- msgstr "Email Address or identifier"
716
-
717
- #: src/lib/components/layout/nav-user.tsx:154
718
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:103
719
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:132
720
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:111
721
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:137
722
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:124
723
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:98
724
- msgid "Enabled"
725
- msgstr "Enabled"
726
-
727
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:172
728
- msgid "Ends at"
729
- msgstr "Ends at"
730
-
731
- #: src/lib/components/shared/error-page.tsx:18
732
- msgid "Error"
733
- msgstr "Error"
734
-
735
- #. placeholder {0}: error.message
736
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:46
737
- msgid "Error loading customer history: {0}"
738
- msgstr "Error loading customer history: {0}"
739
-
740
- #. placeholder {0}: error.message
741
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:43
742
- msgid "Error loading order history: {0}"
743
- msgstr "Error loading order history: {0}"
744
-
745
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:30
746
- msgid "Error message"
747
- msgstr "Error message"
748
-
749
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:162
750
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:299
751
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:136
752
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:224
753
- msgid "Facet values"
754
- msgstr "Facet values"
755
-
756
- #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:32
757
- msgid "Facet values for {facetName}"
758
- msgstr "Facet values for {facetName}"
759
-
760
- #: src/lib/components/shared/facet-value-selector.tsx:267
761
- #: src/app/routes/_authenticated/_facets/facets.tsx:17
762
- msgid "Facets"
763
- msgstr "Facets"
764
-
765
- #: src/lib/components/data-table/data-table-filter-dialog.tsx:32
766
- msgid "Filter by {columnId}"
767
- msgstr "Filter by {columnId}"
768
-
769
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:171
770
- msgid "Filters"
771
- msgstr "Filters"
772
-
773
- #: src/app/routes/_authenticated/_profile/profile.tsx:97
774
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:170
775
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:115
776
- msgid "First name"
777
- msgstr "First name"
778
-
779
- #. placeholder {0}: entry.data.from
780
- #. placeholder {1}: entry.data.to
781
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:81
782
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:61
783
- msgid "From {0} to {1}"
784
- msgstr "From {0} to {1}"
785
-
786
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:143
787
- msgid "Fulfillment handler"
788
- msgstr "Fulfillment handler"
789
-
790
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:112
791
- msgid "Full Name"
792
- msgstr "Full Name"
793
-
794
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:127
795
- msgid "Global out of stock threshold"
796
- msgstr "Global out of stock threshold"
797
-
798
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:35
799
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:88
800
- msgid "Global settings"
801
- msgstr "Global settings"
802
-
803
- #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:82
804
- msgid "Gross price: <0/>"
805
- msgstr "Gross price: <0/>"
806
-
807
- #: src/app/routes/_authenticated/_administrators/administrators.tsx:63
808
- msgid "Identifier"
809
- msgstr "Identifier"
810
-
811
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:177
812
- msgid "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
813
- msgstr "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
814
-
815
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:175
816
- msgid "Inherit filters"
817
- msgstr "Inherit filters"
818
-
819
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:237
820
- msgid "Inherit from global settings"
821
- msgstr "Inherit from global settings"
822
-
823
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:106
824
- msgid "Is default tax category"
825
- msgstr "Is default tax category"
826
-
827
- #: src/app/routes/_authenticated/_system/job-queue.tsx:15
828
- msgid "Job Queue"
829
- msgstr "Job Queue"
830
-
831
- #: src/app/routes/_authenticated/_profile/profile.tsx:103
832
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:176
833
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:121
834
- msgid "Last name"
835
- msgstr "Last name"
836
-
837
- #. placeholder {0}: formatRelative(dataUpdatedAt, new Date())
838
- #: src/app/routes/_authenticated/_system/healthchecks.tsx:48
839
- msgid "Last updated {0}"
840
- msgstr "Last updated {0}"
841
-
842
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:68
843
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:73
844
- msgid "Load more"
845
- msgstr "Load more"
846
-
847
- #: src/lib/components/shared/seller-selector.tsx:85
848
- #: src/lib/components/shared/facet-value-selector.tsx:221
849
- #: src/lib/components/shared/customer-selector.tsx:84
850
- #: src/lib/components/shared/country-selector.tsx:81
851
- msgid "Loading..."
852
- msgstr "Loading..."
853
-
854
- #: src/lib/components/layout/language-dialog.tsx:52
855
- msgid "Locale"
856
- msgstr "Locale"
857
-
858
- #: src/lib/framework/layout-engine/location-wrapper.tsx:69
859
- msgid "Location Details"
860
- msgstr "Location Details"
861
-
862
- #: src/app/routes/_authenticated/_system/healthchecks.tsx:73
863
- msgid "Monitored Resources"
864
- msgstr "Monitored Resources"
865
-
866
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:94
867
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:114
868
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:100
869
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:100
870
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:123
871
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:101
872
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:144
873
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:133
874
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:123
875
- #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
876
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:99
877
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:110
878
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:153
879
- msgid "Name"
880
- msgstr "Name"
881
-
882
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:38
883
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:95
884
- msgid "New administrator"
885
- msgstr "New administrator"
886
-
887
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:38
888
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:111
889
- msgid "New channel"
890
- msgstr "New channel"
891
-
892
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:52
893
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:122
894
- msgid "New collection"
895
- msgstr "New collection"
896
-
897
- #: src/app/routes/_authenticated/_collections/collections.tsx:77
898
- msgid "New Collection"
899
- msgstr "New Collection"
900
-
901
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:33
902
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:80
903
- msgid "New country"
904
- msgstr "New country"
905
-
906
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:57
907
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:143
908
- msgid "New customer"
909
- msgstr "New customer"
910
-
911
- #: src/app/routes/_authenticated/_customers/customers.tsx:76
912
- msgid "New Customer"
913
- msgstr "New Customer"
914
-
915
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:37
916
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:78
917
- msgid "New customer group"
918
- msgstr "New customer group"
919
-
920
- #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:62
921
- msgid "New Customer Group"
922
- msgstr "New Customer Group"
923
-
924
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:35
925
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:92
926
- msgid "New facet"
927
- msgstr "New facet"
928
-
929
- #: src/app/routes/_authenticated/_facets/facets.tsx:88
930
- msgid "New Facet"
931
- msgstr "New Facet"
932
-
933
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:104
934
- msgid "New payment method"
935
- msgstr "New payment method"
936
-
937
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:40
938
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:92
939
- msgid "New product"
940
- msgstr "New product"
941
-
942
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:117
943
- msgid "New product variant"
944
- msgstr "New product variant"
945
-
946
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:42
947
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:113
948
- msgid "New promotion"
949
- msgstr "New promotion"
950
-
951
- #: src/app/routes/_authenticated/_promotions/promotions.tsx:55
952
- msgid "New Promotion"
953
- msgstr "New Promotion"
954
-
955
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:33
956
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:76
957
- msgid "New role"
958
- msgstr "New role"
959
-
960
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:32
961
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:76
962
- msgid "New seller"
963
- msgstr "New seller"
964
-
965
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:43
966
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:102
967
- msgid "New shipping method"
968
- msgstr "New shipping method"
969
-
970
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:48
971
- msgid "New Shipping Method"
972
- msgstr "New Shipping Method"
973
-
974
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:37
975
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:80
976
- msgid "New stock location"
977
- msgstr "New stock location"
978
-
979
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:37
980
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:79
981
- msgid "New tax category"
982
- msgstr "New tax category"
983
-
984
- #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:59
985
- msgid "New Tax Category"
986
- msgstr "New Tax Category"
987
-
988
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:38
989
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:84
990
- msgid "New tax rate"
991
- msgstr "New tax rate"
992
-
993
- #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:102
994
- msgid "New Tax Rate"
995
- msgstr "New Tax Rate"
996
-
997
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:34
998
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:74
999
- msgid "New zone"
1000
- msgstr "New zone"
1001
-
1002
- #: src/app/routes/_authenticated/_zones/zones.tsx:51
1003
- msgid "New Zone"
1004
- msgstr "New Zone"
1005
-
1006
- #: src/lib/components/shared/country-selector.tsx:83
1007
- msgid "No countries found"
1008
- msgstr "No countries found"
1009
-
1010
- #: src/lib/components/shared/customer-selector.tsx:86
1011
- msgid "No customers found"
1012
- msgstr "No customers found"
1013
-
1014
- #: src/lib/components/shared/facet-value-selector.tsx:260
1015
- msgid "No more items"
1016
- msgstr "No more items"
1017
-
1018
- #: src/app/routes/_authenticated/_system/job-queue.tsx:98
1019
- msgid "No result yet"
1020
- msgstr "No result yet"
1021
-
1022
- #: src/lib/components/shared/facet-value-selector.tsx:223
1023
- msgid "No results found"
1024
- msgstr "No results found"
1025
-
1026
- #: src/lib/components/shared/seller-selector.tsx:87
1027
- msgid "No sellers found"
1028
- msgstr "No sellers found"
1029
-
1030
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:263
1031
- msgid "No stock locations available on current channel"
1032
- msgstr "No stock locations available on current channel"
1033
-
1034
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:39
1035
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:31
1036
- msgid "Note added"
1037
- msgstr "Note added"
1038
-
1039
- #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:21
1040
- msgid "Note is private"
1041
- msgstr "Note is private"
1042
-
1043
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:216
1044
- msgid "Option"
1045
- msgstr "Option"
1046
-
1047
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:230
1048
- msgid "Option Values"
1049
- msgstr "Option Values"
1050
-
1051
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:48
1052
- msgid "Order cancelled"
1053
- msgstr "Order cancelled"
1054
-
1055
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:42
1056
- msgid "Order created"
1057
- msgstr "Order created"
1058
-
1059
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:45
1060
- msgid "Order fulfilled"
1061
- msgstr "Order fulfilled"
1062
-
1063
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:91
1064
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:28
1065
- msgid "Order history"
1066
- msgstr "Order history"
1067
-
1068
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:52
1069
- msgid "Order not found"
1070
- msgstr "Order not found"
1071
-
1072
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:50
1073
- msgid "Order transitioned"
1074
- msgstr "Order transitioned"
1075
-
1076
- #: src/app/routes/_authenticated/_orders/orders.tsx:12
1077
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:243
1078
- msgid "Orders"
1079
- msgstr "Orders"
1080
-
1081
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
1082
- msgid "Out-of-stock threshold"
1083
- msgstr "Out-of-stock threshold"
1084
-
1085
- #: src/lib/components/login/login-form.tsx:105
1086
- #: src/app/routes/_authenticated/_profile/profile.tsx:115
1087
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:133
1088
- msgid "Password"
1089
- msgstr "Password"
1090
-
1091
- #. placeholder {0}: entry.data.paymentId
1092
- #. placeholder {1}: entry.data.to
1093
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:86
1094
- #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:66
1095
- msgid "Payment #{0} transitioned to {1}"
1096
- msgstr "Payment #{0} transitioned to {1}"
1097
-
1098
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:123
1099
- msgid "Payment details"
1100
- msgstr "Payment details"
1101
-
1102
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:151
1103
- msgid "Payment eligibility checker"
1104
- msgstr "Payment eligibility checker"
1105
-
1106
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:37
1107
- msgid "Payment metadata"
1108
- msgstr "Payment metadata"
1109
-
1110
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:17
1111
- msgid "Payment method"
1112
- msgstr "Payment method"
1113
-
1114
- #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:14
1115
- msgid "Payment Methods"
1116
- msgstr "Payment Methods"
1117
-
1118
- #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:37
1119
- msgid "Payment settled"
1120
- msgstr "Payment settled"
1121
-
1122
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:189
1123
- msgid "Per customer usage limit"
1124
- msgstr "Per customer usage limit"
1125
-
1126
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:131
1127
- msgid "Permissions"
1128
- msgstr "Permissions"
1129
-
1130
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:188
1131
- msgid "Phone number"
1132
- msgstr "Phone number"
1133
-
1134
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:308
1135
- msgid "Phone Number"
1136
- msgstr "Phone Number"
1137
-
1138
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:250
1139
- msgid "Postal Code"
1140
- msgstr "Postal Code"
1141
-
1142
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:301
1143
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:178
1144
- msgid "Price"
1145
- msgstr "Price"
1146
-
1147
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:163
1148
- msgid "Price and tax"
1149
- msgstr "Price and tax"
1150
-
1151
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:237
1152
- msgid "Prices include tax for default tax zone"
1153
- msgstr "Prices include tax for default tax zone"
1154
-
1155
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:111
1156
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:141
1157
- msgid "Private"
1158
- msgstr "Private"
1159
-
1160
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:142
1161
- msgid "Private collections are not visible in the shop"
1162
- msgstr "Private collections are not visible in the shop"
1163
-
1164
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:112
1165
- msgid "Private facets are not visible in the shop"
1166
- msgstr "Private facets are not visible in the shop"
1167
-
1168
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:123
1169
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:149
1170
- msgid "Product name"
1171
- msgstr "Product name"
1172
-
1173
- #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:12
1174
- #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:20
1175
- msgid "Product Variants"
1176
- msgstr "Product Variants"
1177
-
1178
- #: src/app/routes/_authenticated/_products/products.tsx:13
1179
- msgid "Products"
1180
- msgstr "Products"
1181
-
1182
- #: src/app/routes/_authenticated/_profile/profile.tsx:31
1183
- #: src/app/routes/_authenticated/_profile/profile.tsx:78
1184
- msgid "Profile"
1185
- msgstr "Profile"
1186
-
1187
- #: src/app/routes/_authenticated/_promotions/promotions.tsx:14
1188
- msgid "Promotions"
1189
- msgstr "Promotions"
1190
-
1191
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:120
1192
- msgid "Rate"
1193
- msgstr "Rate"
1194
-
1195
- #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:23
1196
- msgid "Registered"
1197
- msgstr "Registered"
1198
-
1199
- #: src/app/routes/_authenticated/_roles/roles.tsx:17
1200
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:139
1201
- msgid "Roles"
1202
- msgstr "Roles"
1203
-
1204
- #: src/lib/components/layout/language-dialog.tsx:70
1205
- msgid "Sample Formatting"
1206
- msgstr "Sample Formatting"
1207
-
1208
- #: src/lib/components/shared/history-timeline/history-note-editor.tsx:54
1209
- msgid "Save"
1210
- msgstr "Save"
1211
-
1212
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:382
1213
- msgid "Save Address"
1214
- msgstr "Save Address"
1215
-
1216
- #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
1217
- msgid "Save changes"
1218
- msgstr "Save changes"
1219
-
1220
- #: src/lib/components/shared/tax-category-selector.tsx:50
1221
- msgid "Select a tax category"
1222
- msgstr "Select a tax category"
1223
-
1224
- #: src/lib/components/shared/zone-selector.tsx:50
1225
- msgid "Select a zone"
1226
- msgstr "Select a zone"
1227
-
1228
- #: src/lib/components/shared/country-selector.tsx:65
1229
- msgid "Select country"
1230
- msgstr "Select country"
1231
-
1232
- #: src/lib/components/shared/customer-selector.tsx:68
1233
- msgid "Select customer"
1234
- msgstr "Select customer"
1235
-
1236
- #: src/lib/components/layout/language-dialog.tsx:29
1237
- msgid "Select display language"
1238
- msgstr "Select display language"
1239
-
1240
- #: src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx:86
1241
- msgid "Select Payment Eligibility Checker"
1242
- msgstr "Select Payment Eligibility Checker"
1243
-
1244
- #: src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx:86
1245
- msgid "Select Payment Handler"
1246
- msgstr "Select Payment Handler"
1247
-
1248
- #: src/lib/components/shared/seller-selector.tsx:68
1249
- msgid "Select seller"
1250
- msgstr "Select seller"
1251
-
1252
- #: src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx:87
1253
- msgctxt "Add new promotion action"
1254
- msgid "Select Shipping Calculator"
1255
- msgstr "Select Shipping Calculator"
1256
-
1257
- #: src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx:87
1258
- msgctxt "Add new promotion action"
1259
- msgid "Select Shipping Eligibility Checker"
1260
- msgstr "Select Shipping Eligibility Checker"
1261
-
1262
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:155
1263
- msgid "Seller"
1264
- msgstr "Seller"
1265
-
1266
- #: src/app/routes/_authenticated/_sellers/sellers.tsx:13
1267
- msgid "Sellers"
1268
- msgstr "Sellers"
1269
-
1270
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:111
1271
- msgid "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
1272
- msgstr "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
1273
-
1274
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:129
1275
- msgid "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
1276
- msgstr "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
1277
-
1278
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:262
1279
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:283
1280
- msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
1281
- msgstr "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
1282
-
1283
- #: src/app/routes/_authenticated/_orders/components/order-table.tsx:150
1284
- msgid "Shipping"
1285
- msgstr "Shipping"
1286
-
1287
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:108
1288
- msgid "Shipping address"
1289
- msgstr "Shipping address"
1290
-
1291
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:14
1292
- msgid "Shipping Methods"
1293
- msgstr "Shipping Methods"
1294
-
1295
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:298
1296
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:156
1297
- msgid "SKU"
1298
- msgstr "SKU"
1299
-
1300
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:129
1301
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:159
1302
- msgid "Slug"
1303
- msgstr "Slug"
1304
-
1305
- #: src/app/routes/_authenticated/_system/healthchecks.tsx:64
1306
- msgid "Some resources are down"
1307
- msgstr "Some resources are down"
1308
-
1309
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:161
1310
- msgid "Starts at"
1311
- msgstr "Starts at"
1312
-
1313
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:94
1314
- msgid "State"
1315
- msgstr "State"
1316
-
1317
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:225
1318
- msgid "State/Province"
1319
- msgstr "State/Province"
1320
-
1321
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:249
1322
- msgid "Status"
1323
- msgstr "Status"
1324
-
1325
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:192
1326
- msgid "Stock"
1327
- msgstr "Stock"
1328
-
1329
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:202
1330
- msgid "Stock level"
1331
- msgstr "Stock level"
1332
-
1333
- #: src/app/routes/_authenticated/_stock-locations/stock-locations.tsx:12
1334
- msgid "Stock Locations"
1335
- msgstr "Stock Locations"
1336
-
1337
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:304
1338
- msgid "Stock on Hand"
1339
- msgstr "Stock on Hand"
1340
-
1341
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:158
1342
- msgid "Street Address"
1343
- msgstr "Street Address"
1344
-
1345
- #: src/app/routes/_authenticated/_orders/components/order-table.tsx:142
1346
- msgid "Sub total"
1347
- msgstr "Sub total"
1348
-
1349
- #: src/lib/components/shared/role-code-label.tsx:5
1350
- msgid "Super Admin"
1351
- msgstr "Super Admin"
1352
-
1353
- #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:20
1354
- msgid "Tax base"
1355
- msgstr "Tax base"
1356
-
1357
- #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:14
1358
- msgid "Tax Categories"
1359
- msgstr "Tax Categories"
1360
-
1361
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:133
1362
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:168
1363
- msgid "Tax category"
1364
- msgstr "Tax category"
1365
-
1366
- #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:17
1367
- msgid "Tax rate"
1368
- msgstr "Tax rate"
1369
-
1370
- #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:79
1371
- msgid "Tax rate: {taxRate}%"
1372
- msgstr "Tax rate: {taxRate}%"
1373
-
1374
- #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:17
1375
- msgid "Tax Rates"
1376
- msgstr "Tax Rates"
1377
-
1378
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:87
1379
- msgid "Tax summary"
1380
- msgstr "Tax summary"
1381
-
1382
- #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:23
1383
- msgid "Tax total"
1384
- msgstr "Tax total"
1385
-
1386
- #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx:19
1387
- msgid "Test shipping method"
1388
- msgstr "Test shipping method"
1389
-
1390
- #: src/app/routes/_authenticated/_system/job-queue.tsx:69
1391
- msgid "The data that has been passed to the job"
1392
- msgstr "The data that has been passed to the job"
1393
-
1394
- #: src/app/routes/_authenticated/_system/job-queue.tsx:89
1395
- msgid "The result of the job"
1396
- msgstr "The result of the job"
1397
-
1398
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:115
1399
- msgid "The selected permissions will be applied to the these channels."
1400
- msgstr "The selected permissions will be applied to the these channels."
1401
-
1402
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:146
1403
- msgid "The token is used to specify the channel when making API requests."
1404
- msgstr "The token is used to specify the channel when making API requests."
1405
-
1406
- #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:35
1407
- msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
1408
- msgstr "These are the customers in the <0>{customerGroupName}</0> customer group."
1409
-
1410
- #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:35
1411
- msgid "These are the facet values for the <0>{facetName}</0> facet."
1412
- msgstr "These are the facet values for the <0>{facetName}</0> facet."
1413
-
1414
- #: src/app/routes/_authenticated/_roles/roles.tsx:55
1415
- msgid "This is a default Role and cannot be modified"
1416
- msgstr "This is a default Role and cannot be modified"
1417
-
1418
- #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:35
1419
- msgid "This is the contents of the <0>{collectionName}</0> collection."
1420
- msgstr "This is the contents of the <0>{collectionName}</0> collection."
1421
-
1422
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:163
1423
- msgid "Title"
1424
- msgstr "Title"
1425
-
1426
- #: src/app/routes/_authenticated/_roles/components/permissions-grid.tsx:80
1427
- msgid "Toggle all"
1428
- msgstr "Toggle all"
1429
-
1430
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:144
1431
- msgid "Token"
1432
- msgstr "Token"
1433
-
1434
- #: src/app/routes/_authenticated/_orders/components/order-table.tsx:158
1435
- msgid "Total"
1436
- msgstr "Total"
1437
-
1438
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:240
1439
- msgid "Track"
1440
- msgstr "Track"
1441
-
1442
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:227
1443
- msgid "Track inventory"
1444
- msgstr "Track inventory"
1445
-
1446
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:146
1447
- msgid "Track inventory by default"
1448
- msgstr "Track inventory by default"
1449
-
1450
- #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:24
1451
- msgid "Transaction ID"
1452
- msgstr "Transaction ID"
1453
-
1454
- #: src/lib/components/shared/facet-value-selector.tsx:219
1455
- msgid "Type at least 2 characters to search..."
1456
- msgstr "Type at least 2 characters to search..."
1457
-
1458
- #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:28
1459
- msgid "Unverified"
1460
- msgstr "Unverified"
1461
-
1462
- #: src/lib/framework/page/detail-page.tsx:88
1463
- #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:83
1464
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:93
1465
- #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:89
1466
- #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:90
1467
- #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:112
1468
- #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:87
1469
- #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:85
1470
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:122
1471
- #: src/app/routes/_authenticated/_profile/profile.tsx:87
1472
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:101
1473
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:127
1474
- #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:114
1475
- #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:78
1476
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:98
1477
- #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:101
1478
- #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:152
1479
- #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:88
1480
- #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:89
1481
- #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:131
1482
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:124
1483
- #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:104
1484
- msgid "Update"
1485
- msgstr "Update"
1486
-
1487
- #: src/lib/components/shared/history-timeline/history-note-editor.tsx:47
1488
- msgid "Update the note content or visibility"
1489
- msgstr "Update the note content or visibility"
1490
-
1491
- #: src/lib/components/shared/asset-gallery.tsx:227
1492
- msgid "Upload"
1493
- msgstr "Upload"
1494
-
1495
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:201
1496
- msgid "Usage limit"
1497
- msgstr "Usage limit"
1498
-
1499
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:366
1500
- msgid "Use as the default billing address"
1501
- msgstr "Use as the default billing address"
1502
-
1503
- #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:342
1504
- msgid "Use as the default shipping address"
1505
- msgstr "Use as the default shipping address"
1506
-
1507
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:277
1508
- msgid "Use global out-of-stock threshold"
1509
- msgstr "Use global out-of-stock threshold"
1510
-
1511
- #: src/components/login-form.tsx:44
1512
- #~ msgid "User"
1513
- #~ msgstr "User"
1514
-
1515
- #: src/lib/components/login/login-form.tsx:89
1516
- msgid "Username"
1517
- msgstr "Username"
1518
-
1519
- #: src/app/routes/_authenticated/_facets/facets.tsx:33
1520
- #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:33
1521
- msgid "Values"
1522
- msgstr "Values"
1523
-
1524
- #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:294
1525
- msgid "Variant"
1526
- msgstr "Variant"
1527
-
1528
- #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:18
1529
- msgid "Verified"
1530
- msgstr "Verified"
1531
-
1532
- #: src/app/routes/_authenticated/_system/job-queue.tsx:68
1533
- msgid "View job data"
1534
- msgstr "View job data"
1535
-
1536
- #: src/app/routes/_authenticated/_system/job-queue.tsx:88
1537
- msgid "View job result"
1538
- msgstr "View job result"
1539
-
1540
- #: src/app/routes/_authenticated/_facets/facets.tsx:59
1541
- msgid "View values"
1542
- msgstr "View values"
1543
-
1544
- #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
1545
- msgid "Visible to admins only"
1546
- msgstr "Visible to admins only"
1547
-
1548
- #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
1549
- msgid "Visible to customer"
1550
- msgstr "Visible to customer"
1551
-
1552
- #: src/lib/components/login/login-form.tsx:76
1553
- msgid "Welcome back!"
1554
- msgstr "Welcome back!"
1555
-
1556
- #: src/app/routes/_authenticated/_products/products_.$id.tsx:112
1557
- #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:138
1558
- msgid "When enabled, a product is available in the shop"
1559
- msgstr "When enabled, a product is available in the shop"
1560
-
1561
- #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:133
1562
- msgid "When enabled, a promotion is available in the shop"
1563
- msgstr "When enabled, a promotion is available in the shop"
1564
-
1565
- #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:239
1566
- msgid "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
1567
- msgstr "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
1568
-
1569
- #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:148
1570
- msgid "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
1571
- msgstr "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
1572
-
1573
- #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:141
1574
- msgid "Zone"
1575
- msgstr "Zone"
1576
-
1577
- #: src/app/routes/_authenticated/_zones/zones.tsx:14
1578
- msgid "Zones"
1579
- msgstr "Zones"
1
+ msgid ""
2
+ msgstr ""
3
+ "POT-Creation-Date: 2025-02-20 14:18+0100\n"
4
+ "MIME-Version: 1.0\n"
5
+ "Content-Type: text/plain; charset=utf-8\n"
6
+ "Content-Transfer-Encoding: 8bit\n"
7
+ "X-Generator: @lingui/cli\n"
8
+ "Language: en\n"
9
+ "Project-Id-Version: \n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "PO-Revision-Date: \n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: \n"
14
+ "Plural-Forms: \n"
15
+
16
+ #. js-lingui-explicit-id
17
+ #: src/lib/components/shared/role-selector.tsx:52
18
+ msgid "Select a role"
19
+ msgstr "Select a role"
20
+
21
+ #. js-lingui-explicit-id
22
+ #: src/lib/components/shared/role-selector.tsx:53
23
+ msgid "Search roles..."
24
+ msgstr "Search roles..."
25
+
26
+ #. js-lingui-explicit-id
27
+ #: src/lib/components/shared/paginated-list-data-table.tsx:468
28
+ msgid "Deleted successfully"
29
+ msgstr "Deleted successfully"
30
+
31
+ #. js-lingui-explicit-id
32
+ #: src/lib/components/shared/paginated-list-data-table.tsx:470
33
+ #: src/lib/components/shared/paginated-list-data-table.tsx:476
34
+ msgid "Failed to delete"
35
+ msgstr "Failed to delete"
36
+
37
+ #. js-lingui-explicit-id
38
+ #: src/lib/components/shared/language-selector.tsx:44
39
+ msgid "Select a language"
40
+ msgstr "Select a language"
41
+
42
+ #. js-lingui-explicit-id
43
+ #: src/lib/components/shared/language-selector.tsx:45
44
+ msgid "Search languages..."
45
+ msgstr "Search languages..."
46
+
47
+ #. js-lingui-explicit-id
48
+ #: src/lib/components/shared/currency-selector.tsx:29
49
+ msgid "Select a currency"
50
+ msgstr "Select a currency"
51
+
52
+ #. js-lingui-explicit-id
53
+ #: src/lib/components/shared/currency-selector.tsx:30
54
+ msgid "Search currencies..."
55
+ msgstr "Search currencies..."
56
+
57
+ #. js-lingui-explicit-id
58
+ #: src/lib/components/shared/channel-selector.tsx:47
59
+ msgid "Select a channel"
60
+ msgstr "Select a channel"
61
+
62
+ #. js-lingui-explicit-id
63
+ #: src/lib/components/shared/channel-selector.tsx:48
64
+ msgid "Search channels..."
65
+ msgstr "Search channels..."
66
+
67
+ #. js-lingui-explicit-id
68
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:59
69
+ msgid "Successfully updated zone"
70
+ msgstr "Successfully updated zone"
71
+
72
+ #. js-lingui-explicit-id
73
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:66
74
+ msgid "Failed to update zone"
75
+ msgstr "Failed to update zone"
76
+
77
+ #. js-lingui-explicit-id
78
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:69
79
+ msgid "Successfully updated tax rate"
80
+ msgstr "Successfully updated tax rate"
81
+
82
+ #. js-lingui-explicit-id
83
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:76
84
+ msgid "Failed to update tax rate"
85
+ msgstr "Failed to update tax rate"
86
+
87
+ #. js-lingui-explicit-id
88
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:63
89
+ msgid "Successfully updated tax category"
90
+ msgstr "Successfully updated tax category"
91
+
92
+ #. js-lingui-explicit-id
93
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:70
94
+ msgid "Failed to update tax category"
95
+ msgstr "Failed to update tax category"
96
+
97
+ #. js-lingui-explicit-id
98
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:64
99
+ msgid "Successfully updated stock location"
100
+ msgstr "Successfully updated stock location"
101
+
102
+ #. js-lingui-explicit-id
103
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:71
104
+ msgid "Failed to update stock location"
105
+ msgstr "Failed to update stock location"
106
+
107
+ #. js-lingui-explicit-id
108
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:86
109
+ msgid "Successfully updated shipping method"
110
+ msgstr "Successfully updated shipping method"
111
+
112
+ #. js-lingui-explicit-id
113
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:93
114
+ msgid "Failed to update shipping method"
115
+ msgstr "Failed to update shipping method"
116
+
117
+ #. js-lingui-explicit-id
118
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:57
119
+ msgid "Successfully updated seller"
120
+ msgstr "Successfully updated seller"
121
+
122
+ #. js-lingui-explicit-id
123
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:66
124
+ msgid "Failed to update seller"
125
+ msgstr "Failed to update seller"
126
+
127
+ #. js-lingui-explicit-id
128
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:61
129
+ msgid "Successfully updated role"
130
+ msgstr "Successfully updated role"
131
+
132
+ #. js-lingui-explicit-id
133
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:68
134
+ msgid "Failed to update role"
135
+ msgstr "Failed to update role"
136
+
137
+ #. js-lingui-explicit-id
138
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:97
139
+ msgid "Successfully updated promotion"
140
+ msgstr "Successfully updated promotion"
141
+
142
+ #. js-lingui-explicit-id
143
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:105
144
+ msgid "Failed to update promotion"
145
+ msgstr "Failed to update promotion"
146
+
147
+ #. js-lingui-explicit-id
148
+ #: src/app/routes/_authenticated/_profile/profile.tsx:62
149
+ msgid "Successfully updated profile"
150
+ msgstr "Successfully updated profile"
151
+
152
+ #. js-lingui-explicit-id
153
+ #: src/app/routes/_authenticated/_profile/profile.tsx:68
154
+ msgid "Failed to update profile"
155
+ msgstr "Failed to update profile"
156
+
157
+ #. js-lingui-explicit-id
158
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:77
159
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:99
160
+ msgid "Successfully updated product"
161
+ msgstr "Successfully updated product"
162
+
163
+ #. js-lingui-explicit-id
164
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:84
165
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:106
166
+ msgid "Failed to update product"
167
+ msgstr "Failed to update product"
168
+
169
+ #. js-lingui-explicit-id
170
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:88
171
+ msgid "Successfully updated payment method"
172
+ msgstr "Successfully updated payment method"
173
+
174
+ #. js-lingui-explicit-id
175
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:95
176
+ msgid "Failed to update payment method"
177
+ msgstr "Failed to update payment method"
178
+
179
+ #. js-lingui-explicit-id
180
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:53
181
+ msgid "Successfully updated order"
182
+ msgstr "Successfully updated order"
183
+
184
+ #. js-lingui-explicit-id
185
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:57
186
+ msgid "Failed to update order"
187
+ msgstr "Failed to update order"
188
+
189
+ #. js-lingui-explicit-id
190
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:81
191
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:80
192
+ msgid "Note added successfully"
193
+ msgstr "Note added successfully"
194
+
195
+ #. js-lingui-explicit-id
196
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:85
197
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:84
198
+ msgid "Failed to add note"
199
+ msgstr "Failed to add note"
200
+
201
+ #. js-lingui-explicit-id
202
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:102
203
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:101
204
+ msgid "Note updated successfully"
205
+ msgstr "Note updated successfully"
206
+
207
+ #. js-lingui-explicit-id
208
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:106
209
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:105
210
+ msgid "Failed to update note"
211
+ msgstr "Failed to update note"
212
+
213
+ #. js-lingui-explicit-id
214
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:123
215
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:121
216
+ msgid "Note deleted successfully"
217
+ msgstr "Note deleted successfully"
218
+
219
+ #. js-lingui-explicit-id
220
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:127
221
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:125
222
+ msgid "Failed to delete note"
223
+ msgstr "Failed to delete note"
224
+
225
+ #. js-lingui-explicit-id
226
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:63
227
+ msgid "Successfully updated global settings"
228
+ msgstr "Successfully updated global settings"
229
+
230
+ #. js-lingui-explicit-id
231
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:71
232
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:78
233
+ msgid "Failed to update global settings"
234
+ msgstr "Failed to update global settings"
235
+
236
+ #. js-lingui-explicit-id
237
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:74
238
+ msgid "Successfully updated facet"
239
+ msgstr "Successfully updated facet"
240
+
241
+ #. js-lingui-explicit-id
242
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:83
243
+ msgid "Failed to update facet"
244
+ msgstr "Failed to update facet"
245
+
246
+ #. js-lingui-explicit-id
247
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:89
248
+ msgid "Successfully updated customer"
249
+ msgstr "Successfully updated customer"
250
+
251
+ #. js-lingui-explicit-id
252
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:95
253
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:101
254
+ msgid "Failed to update customer"
255
+ msgstr "Failed to update customer"
256
+
257
+ #. js-lingui-explicit-id
258
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:114
259
+ msgid "Failed to create address"
260
+ msgstr "Failed to create address"
261
+
262
+ #. js-lingui-explicit-id
263
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:124
264
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:56
265
+ msgid "Failed to add customer to group"
266
+ msgstr "Failed to add customer to group"
267
+
268
+ #. js-lingui-explicit-id
269
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:134
270
+ msgid "Failed to remove customer from group"
271
+ msgstr "Failed to remove customer from group"
272
+
273
+ #. js-lingui-explicit-id
274
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:281
275
+ msgid "Select a country"
276
+ msgstr "Select a country"
277
+
278
+ #. js-lingui-explicit-id
279
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:41
280
+ msgid "Address deleted successfully"
281
+ msgstr "Address deleted successfully"
282
+
283
+ #. js-lingui-explicit-id
284
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:45
285
+ msgid "Failed to delete address"
286
+ msgstr "Failed to delete address"
287
+
288
+ #. js-lingui-explicit-id
289
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:53
290
+ msgid "Address updated successfully"
291
+ msgstr "Address updated successfully"
292
+
293
+ #. js-lingui-explicit-id
294
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:57
295
+ msgid "Failed to update address"
296
+ msgstr "Failed to update address"
297
+
298
+ #. js-lingui-explicit-id
299
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:141
300
+ msgid "Delete Address"
301
+ msgstr "Delete Address"
302
+
303
+ #. js-lingui-explicit-id
304
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:142
305
+ msgid "Are you sure you want to delete this address?"
306
+ msgstr "Are you sure you want to delete this address?"
307
+
308
+ #. js-lingui-explicit-id
309
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:62
310
+ msgid "Successfully updated customer group"
311
+ msgstr "Successfully updated customer group"
312
+
313
+ #. js-lingui-explicit-id
314
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:69
315
+ msgid "Failed to update customer group"
316
+ msgstr "Failed to update customer group"
317
+
318
+ #. js-lingui-explicit-id
319
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:50
320
+ msgid "Customer added to group"
321
+ msgstr "Customer added to group"
322
+
323
+ #. js-lingui-explicit-id
324
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:62
325
+ msgid "Successfully updated country"
326
+ msgstr "Successfully updated country"
327
+
328
+ #. js-lingui-explicit-id
329
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
330
+ msgid "Failed to update country"
331
+ msgstr "Failed to update country"
332
+
333
+ #. js-lingui-explicit-id
334
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:98
335
+ msgid "Successfully updated collection"
336
+ msgstr "Successfully updated collection"
337
+
338
+ #. js-lingui-explicit-id
339
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:107
340
+ msgid "Failed to update collection"
341
+ msgstr "Failed to update collection"
342
+
343
+ #. js-lingui-explicit-id
344
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:80
345
+ msgid "Successfully updated channel"
346
+ msgstr "Successfully updated channel"
347
+
348
+ #. js-lingui-explicit-id
349
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:88
350
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:95
351
+ msgid "Failed to update channel"
352
+ msgstr "Failed to update channel"
353
+
354
+ #. js-lingui-explicit-id
355
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:74
356
+ msgid "Successfully updated administrator"
357
+ msgstr "Successfully updated administrator"
358
+
359
+ #. js-lingui-explicit-id
360
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:83
361
+ msgid "Failed to update administrator"
362
+ msgstr "Failed to update administrator"
363
+
364
+ #. placeholder {0}: row.original.isDefault ? 'Yes' : 'No'
365
+ #. placeholder {0}: entry.type.replace(/_/g, ' ').toLowerCase()
366
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:47
367
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:53
368
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:33
369
+ msgid "{0}"
370
+ msgstr "{0}"
371
+
372
+ #. placeholder {0}: value.totalItems
373
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:43
374
+ msgid "{0} customers"
375
+ msgstr "{0} customers"
376
+
377
+ #. placeholder {0}: row.original.productVariants.totalItems
378
+ #: src/app/routes/_authenticated/_collections/collections.tsx:51
379
+ msgid "{0} variants"
380
+ msgstr "{0} variants"
381
+
382
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:44
383
+ msgctxt "filter-operator"
384
+ msgid "{op}"
385
+ msgstr "{op}"
386
+
387
+ #: src/lib/framework/dashboard-widget/base-widget.tsx:85
388
+ msgid "{title}"
389
+ msgstr "{title}"
390
+
391
+ #. placeholder {0}: list.totalItems - 3
392
+ #: src/app/routes/_authenticated/_facets/facets.tsx:58
393
+ msgid "+ {0} more"
394
+ msgstr "+ {0} more"
395
+
396
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:225
397
+ msgid "Actions"
398
+ msgstr "Actions"
399
+
400
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:227
401
+ msgid "Add a new address to the customer."
402
+ msgstr "Add a new address to the customer."
403
+
404
+ #: src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx:94
405
+ msgctxt "Add new promotion action"
406
+ msgid "Add action"
407
+ msgstr "Add action"
408
+
409
+ #: src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx:94
410
+ msgctxt "Add new promotion condition"
411
+ msgid "Add condition"
412
+ msgstr "Add condition"
413
+
414
+ #: src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx:78
415
+ msgctxt "Add new collection filter"
416
+ msgid "Add condition"
417
+ msgstr "Add condition"
418
+
419
+ #: src/app/routes/_authenticated/_countries/countries.tsx:61
420
+ msgid "Add Country"
421
+ msgstr "Add Country"
422
+
423
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:124
424
+ msgid "Add customer"
425
+ msgstr "Add customer"
426
+
427
+ #: src/lib/components/shared/customer-group-selector.tsx:46
428
+ msgid "Add customer groups"
429
+ msgstr "Add customer groups"
430
+
431
+ #: src/lib/components/shared/facet-value-selector.tsx:199
432
+ msgid "Add facet values"
433
+ msgstr "Add facet values"
434
+
435
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:218
436
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:224
437
+ msgid "Add new address"
438
+ msgstr "Add new address"
439
+
440
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:257
441
+ msgid "Add Option"
442
+ msgstr "Add Option"
443
+
444
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:271
445
+ msgid "Add Stock to Location"
446
+ msgstr "Add Stock to Location"
447
+
448
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:197
449
+ msgid "Addresses"
450
+ msgstr "Addresses"
451
+
452
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:15
453
+ msgid "Administrators"
454
+ msgstr "Administrators"
455
+
456
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:57
457
+ msgid "All resources are up and running"
458
+ msgstr "All resources are up and running"
459
+
460
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:213
461
+ msgid "Allocated"
462
+ msgstr "Allocated"
463
+
464
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:19
465
+ msgid "Amount"
466
+ msgstr "Amount"
467
+
468
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:179
469
+ msgid "Apartment, suite, etc."
470
+ msgstr "Apartment, suite, etc."
471
+
472
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:67
473
+ msgid "Apply filter"
474
+ msgstr "Apply filter"
475
+
476
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:171
477
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:308
478
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:200
479
+ #: src/app/routes/_authenticated/_assets/assets.tsx:14
480
+ msgid "Assets"
481
+ msgstr "Assets"
482
+
483
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:175
484
+ msgid "Available currencies"
485
+ msgstr "Available currencies"
486
+
487
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:109
488
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:163
489
+ msgid "Available languages"
490
+ msgstr "Available languages"
491
+
492
+ #: src/lib/components/shared/facet-value-selector.tsx:234
493
+ msgid "Back to search"
494
+ msgstr "Back to search"
495
+
496
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:116
497
+ msgid "Billing address"
498
+ msgstr "Billing address"
499
+
500
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:166
501
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:163
502
+ msgid "Calculator"
503
+ msgstr "Calculator"
504
+
505
+ #: src/lib/components/shared/confirmation-dialog.tsx:43
506
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:378
507
+ msgid "Cancel"
508
+ msgstr "Cancel"
509
+
510
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:189
511
+ msgid "Channel defaults"
512
+ msgstr "Channel defaults"
513
+
514
+ #: src/lib/components/layout/channel-switcher.tsx:56
515
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:113
516
+ #: src/app/routes/_authenticated/_channels/channels.tsx:14
517
+ msgid "Channels"
518
+ msgstr "Channels"
519
+
520
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:204
521
+ msgid "City"
522
+ msgstr "City"
523
+
524
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:58
525
+ msgid "Clear filter"
526
+ msgstr "Clear filter"
527
+
528
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:129
529
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:102
530
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:139
531
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:129
532
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:113
533
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:116
534
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:135
535
+ msgid "Code"
536
+ msgstr "Code"
537
+
538
+ #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:32
539
+ msgid "Collection contents for {collectionName}"
540
+ msgstr "Collection contents for {collectionName}"
541
+
542
+ #: src/app/routes/_authenticated/_collections/collections.tsx:14
543
+ msgid "Collections"
544
+ msgstr "Collections"
545
+
546
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:133
547
+ msgid "Company"
548
+ msgstr "Company"
549
+
550
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:154
551
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:213
552
+ msgid "Conditions"
553
+ msgstr "Conditions"
554
+
555
+ #: src/lib/components/shared/confirmation-dialog.tsx:52
556
+ msgid "Continue"
557
+ msgstr "Continue"
558
+
559
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:101
560
+ #: src/app/routes/_authenticated/_countries/countries.tsx:13
561
+ msgid "Countries"
562
+ msgstr "Countries"
563
+
564
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:271
565
+ msgid "Country"
566
+ msgstr "Country"
567
+
568
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:183
569
+ msgid "Coupon code"
570
+ msgstr "Coupon code"
571
+
572
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:289
573
+ msgid "Create"
574
+ msgstr "Create"
575
+
576
+ #. placeholder {0}: variantData ? Object.values(variantData.variants).filter(v => v.enabled).length : 0
577
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:214
578
+ msgid "Create {0} variants"
579
+ msgstr "Create {0} variants"
580
+
581
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:186
582
+ msgid "Create Variants"
583
+ msgstr "Create Variants"
584
+
585
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:189
586
+ msgid "Create variants for your product"
587
+ msgstr "Create variants for your product"
588
+
589
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:21
590
+ msgid "Created at"
591
+ msgstr "Created at"
592
+
593
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:212
594
+ msgid "Creating..."
595
+ msgstr "Creating..."
596
+
597
+ #: src/lib/components/shared/role-code-label.tsx:6
598
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:97
599
+ msgid "Customer"
600
+ msgstr "Customer"
601
+
602
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:32
603
+ msgid "Customer group members for {customerGroupName}"
604
+ msgstr "Customer group members for {customerGroupName}"
605
+
606
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:252
607
+ msgid "Customer groups"
608
+ msgstr "Customer groups"
609
+
610
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:16
611
+ msgid "Customer Groups"
612
+ msgstr "Customer Groups"
613
+
614
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:246
615
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:30
616
+ msgid "Customer history"
617
+ msgstr "Customer history"
618
+
619
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:56
620
+ msgid "Customer not found"
621
+ msgstr "Customer not found"
622
+
623
+ #: src/app/routes/_authenticated/_customers/customers.tsx:14
624
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:106
625
+ msgid "Customers"
626
+ msgstr "Customers"
627
+
628
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:363
629
+ msgid "Default Billing Address"
630
+ msgstr "Default Billing Address"
631
+
632
+ #: src/lib/components/shared/channel-code-label.tsx:5
633
+ msgid "Default channel"
634
+ msgstr "Default channel"
635
+
636
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:208
637
+ msgid "Default currency"
638
+ msgstr "Default currency"
639
+
640
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:195
641
+ msgid "Default language"
642
+ msgstr "Default language"
643
+
644
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:339
645
+ msgid "Default Shipping Address"
646
+ msgstr "Default Shipping Address"
647
+
648
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:229
649
+ msgid "Default shipping zone"
650
+ msgstr "Default shipping zone"
651
+
652
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:221
653
+ msgid "Default tax zone"
654
+ msgstr "Default tax zone"
655
+
656
+ #: src/lib/components/shared/paginated-list-data-table.tsx:485
657
+ msgid "Delete"
658
+ msgstr "Delete"
659
+
660
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
661
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:136
662
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:96
663
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:153
664
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:137
665
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:146
666
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
667
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:166
668
+ msgid "Description"
669
+ msgstr "Description"
670
+
671
+ #: src/lib/components/layout/app-layout.tsx:26
672
+ msgid "Dev Mode"
673
+ msgstr "Dev Mode"
674
+
675
+ #: src/lib/components/layout/nav-user.tsx:157
676
+ msgid "Disabled"
677
+ msgstr "Disabled"
678
+
679
+ #: src/lib/components/layout/language-dialog.tsx:35
680
+ msgid "Display language"
681
+ msgstr "Display language"
682
+
683
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:243
684
+ msgid "Do not track"
685
+ msgstr "Do not track"
686
+
687
+ #: src/lib/components/shared/history-timeline/history-entry.tsx:98
688
+ #: src/app/routes/_authenticated/_facets/components/facet-values-table.tsx:85
689
+ msgid "Edit"
690
+ msgstr "Edit"
691
+
692
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:126
693
+ msgid "Edit Address"
694
+ msgstr "Edit Address"
695
+
696
+ #: src/app/routes/_authenticated/_zones/zones.tsx:39
697
+ msgid "Edit members"
698
+ msgstr "Edit members"
699
+
700
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:44
701
+ msgid "Edit Note"
702
+ msgstr "Edit Note"
703
+
704
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:129
705
+ msgid "Edit the address details below."
706
+ msgstr "Edit the address details below."
707
+
708
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:182
709
+ msgid "Email address"
710
+ msgstr "Email address"
711
+
712
+ #: src/app/routes/_authenticated/_profile/profile.tsx:109
713
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:127
714
+ msgid "Email Address or identifier"
715
+ msgstr "Email Address or identifier"
716
+
717
+ #: src/lib/components/layout/nav-user.tsx:154
718
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:103
719
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:132
720
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:111
721
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:137
722
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:124
723
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:98
724
+ msgid "Enabled"
725
+ msgstr "Enabled"
726
+
727
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:172
728
+ msgid "Ends at"
729
+ msgstr "Ends at"
730
+
731
+ #: src/lib/components/shared/error-page.tsx:18
732
+ msgid "Error"
733
+ msgstr "Error"
734
+
735
+ #. placeholder {0}: error.message
736
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:46
737
+ msgid "Error loading customer history: {0}"
738
+ msgstr "Error loading customer history: {0}"
739
+
740
+ #. placeholder {0}: error.message
741
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:43
742
+ msgid "Error loading order history: {0}"
743
+ msgstr "Error loading order history: {0}"
744
+
745
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:30
746
+ msgid "Error message"
747
+ msgstr "Error message"
748
+
749
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:162
750
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:299
751
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:136
752
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:224
753
+ msgid "Facet values"
754
+ msgstr "Facet values"
755
+
756
+ #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:32
757
+ msgid "Facet values for {facetName}"
758
+ msgstr "Facet values for {facetName}"
759
+
760
+ #: src/lib/components/shared/facet-value-selector.tsx:267
761
+ #: src/app/routes/_authenticated/_facets/facets.tsx:17
762
+ msgid "Facets"
763
+ msgstr "Facets"
764
+
765
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:32
766
+ msgid "Filter by {columnId}"
767
+ msgstr "Filter by {columnId}"
768
+
769
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:171
770
+ msgid "Filters"
771
+ msgstr "Filters"
772
+
773
+ #: src/app/routes/_authenticated/_profile/profile.tsx:97
774
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:170
775
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:115
776
+ msgid "First name"
777
+ msgstr "First name"
778
+
779
+ #. placeholder {0}: entry.data.from
780
+ #. placeholder {1}: entry.data.to
781
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:81
782
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:61
783
+ msgid "From {0} to {1}"
784
+ msgstr "From {0} to {1}"
785
+
786
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:143
787
+ msgid "Fulfillment handler"
788
+ msgstr "Fulfillment handler"
789
+
790
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:112
791
+ msgid "Full Name"
792
+ msgstr "Full Name"
793
+
794
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:127
795
+ msgid "Global out of stock threshold"
796
+ msgstr "Global out of stock threshold"
797
+
798
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:35
799
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:88
800
+ msgid "Global settings"
801
+ msgstr "Global settings"
802
+
803
+ #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:82
804
+ msgid "Gross price: <0/>"
805
+ msgstr "Gross price: <0/>"
806
+
807
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:63
808
+ msgid "Identifier"
809
+ msgstr "Identifier"
810
+
811
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:177
812
+ msgid "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
813
+ msgstr "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
814
+
815
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:175
816
+ msgid "Inherit filters"
817
+ msgstr "Inherit filters"
818
+
819
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:237
820
+ msgid "Inherit from global settings"
821
+ msgstr "Inherit from global settings"
822
+
823
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:106
824
+ msgid "Is default tax category"
825
+ msgstr "Is default tax category"
826
+
827
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:15
828
+ msgid "Job Queue"
829
+ msgstr "Job Queue"
830
+
831
+ #: src/app/routes/_authenticated/_profile/profile.tsx:103
832
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:176
833
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:121
834
+ msgid "Last name"
835
+ msgstr "Last name"
836
+
837
+ #. placeholder {0}: formatRelative(dataUpdatedAt, new Date())
838
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:48
839
+ msgid "Last updated {0}"
840
+ msgstr "Last updated {0}"
841
+
842
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:68
843
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:73
844
+ msgid "Load more"
845
+ msgstr "Load more"
846
+
847
+ #: src/lib/components/shared/seller-selector.tsx:85
848
+ #: src/lib/components/shared/facet-value-selector.tsx:221
849
+ #: src/lib/components/shared/customer-selector.tsx:84
850
+ #: src/lib/components/shared/country-selector.tsx:81
851
+ msgid "Loading..."
852
+ msgstr "Loading..."
853
+
854
+ #: src/lib/components/layout/language-dialog.tsx:52
855
+ msgid "Locale"
856
+ msgstr "Locale"
857
+
858
+ #: src/lib/framework/layout-engine/location-wrapper.tsx:69
859
+ msgid "Location Details"
860
+ msgstr "Location Details"
861
+
862
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:73
863
+ msgid "Monitored Resources"
864
+ msgstr "Monitored Resources"
865
+
866
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:94
867
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:114
868
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:100
869
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:100
870
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:123
871
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:101
872
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:144
873
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:133
874
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:123
875
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
876
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:99
877
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:110
878
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:153
879
+ msgid "Name"
880
+ msgstr "Name"
881
+
882
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:38
883
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:95
884
+ msgid "New administrator"
885
+ msgstr "New administrator"
886
+
887
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:38
888
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:111
889
+ msgid "New channel"
890
+ msgstr "New channel"
891
+
892
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:52
893
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:122
894
+ msgid "New collection"
895
+ msgstr "New collection"
896
+
897
+ #: src/app/routes/_authenticated/_collections/collections.tsx:77
898
+ msgid "New Collection"
899
+ msgstr "New Collection"
900
+
901
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:33
902
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:80
903
+ msgid "New country"
904
+ msgstr "New country"
905
+
906
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:57
907
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:143
908
+ msgid "New customer"
909
+ msgstr "New customer"
910
+
911
+ #: src/app/routes/_authenticated/_customers/customers.tsx:76
912
+ msgid "New Customer"
913
+ msgstr "New Customer"
914
+
915
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:37
916
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:78
917
+ msgid "New customer group"
918
+ msgstr "New customer group"
919
+
920
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:62
921
+ msgid "New Customer Group"
922
+ msgstr "New Customer Group"
923
+
924
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:35
925
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:92
926
+ msgid "New facet"
927
+ msgstr "New facet"
928
+
929
+ #: src/app/routes/_authenticated/_facets/facets.tsx:88
930
+ msgid "New Facet"
931
+ msgstr "New Facet"
932
+
933
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:104
934
+ msgid "New payment method"
935
+ msgstr "New payment method"
936
+
937
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:40
938
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:92
939
+ msgid "New product"
940
+ msgstr "New product"
941
+
942
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:117
943
+ msgid "New product variant"
944
+ msgstr "New product variant"
945
+
946
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:42
947
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:113
948
+ msgid "New promotion"
949
+ msgstr "New promotion"
950
+
951
+ #: src/app/routes/_authenticated/_promotions/promotions.tsx:55
952
+ msgid "New Promotion"
953
+ msgstr "New Promotion"
954
+
955
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:33
956
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:76
957
+ msgid "New role"
958
+ msgstr "New role"
959
+
960
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:32
961
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:76
962
+ msgid "New seller"
963
+ msgstr "New seller"
964
+
965
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:43
966
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:102
967
+ msgid "New shipping method"
968
+ msgstr "New shipping method"
969
+
970
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:48
971
+ msgid "New Shipping Method"
972
+ msgstr "New Shipping Method"
973
+
974
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:37
975
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:80
976
+ msgid "New stock location"
977
+ msgstr "New stock location"
978
+
979
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:37
980
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:79
981
+ msgid "New tax category"
982
+ msgstr "New tax category"
983
+
984
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:59
985
+ msgid "New Tax Category"
986
+ msgstr "New Tax Category"
987
+
988
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:38
989
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:84
990
+ msgid "New tax rate"
991
+ msgstr "New tax rate"
992
+
993
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:102
994
+ msgid "New Tax Rate"
995
+ msgstr "New Tax Rate"
996
+
997
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:34
998
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:74
999
+ msgid "New zone"
1000
+ msgstr "New zone"
1001
+
1002
+ #: src/app/routes/_authenticated/_zones/zones.tsx:51
1003
+ msgid "New Zone"
1004
+ msgstr "New Zone"
1005
+
1006
+ #: src/lib/components/shared/country-selector.tsx:83
1007
+ msgid "No countries found"
1008
+ msgstr "No countries found"
1009
+
1010
+ #: src/lib/components/shared/customer-selector.tsx:86
1011
+ msgid "No customers found"
1012
+ msgstr "No customers found"
1013
+
1014
+ #: src/lib/components/shared/facet-value-selector.tsx:260
1015
+ msgid "No more items"
1016
+ msgstr "No more items"
1017
+
1018
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:98
1019
+ msgid "No result yet"
1020
+ msgstr "No result yet"
1021
+
1022
+ #: src/lib/components/shared/facet-value-selector.tsx:223
1023
+ msgid "No results found"
1024
+ msgstr "No results found"
1025
+
1026
+ #: src/lib/components/shared/seller-selector.tsx:87
1027
+ msgid "No sellers found"
1028
+ msgstr "No sellers found"
1029
+
1030
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:263
1031
+ msgid "No stock locations available on current channel"
1032
+ msgstr "No stock locations available on current channel"
1033
+
1034
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:39
1035
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:31
1036
+ msgid "Note added"
1037
+ msgstr "Note added"
1038
+
1039
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:21
1040
+ msgid "Note is private"
1041
+ msgstr "Note is private"
1042
+
1043
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:216
1044
+ msgid "Option"
1045
+ msgstr "Option"
1046
+
1047
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:230
1048
+ msgid "Option Values"
1049
+ msgstr "Option Values"
1050
+
1051
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:48
1052
+ msgid "Order cancelled"
1053
+ msgstr "Order cancelled"
1054
+
1055
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:42
1056
+ msgid "Order created"
1057
+ msgstr "Order created"
1058
+
1059
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:45
1060
+ msgid "Order fulfilled"
1061
+ msgstr "Order fulfilled"
1062
+
1063
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:91
1064
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:28
1065
+ msgid "Order history"
1066
+ msgstr "Order history"
1067
+
1068
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:52
1069
+ msgid "Order not found"
1070
+ msgstr "Order not found"
1071
+
1072
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:50
1073
+ msgid "Order transitioned"
1074
+ msgstr "Order transitioned"
1075
+
1076
+ #: src/app/routes/_authenticated/_orders/orders.tsx:12
1077
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:243
1078
+ msgid "Orders"
1079
+ msgstr "Orders"
1080
+
1081
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
1082
+ msgid "Out-of-stock threshold"
1083
+ msgstr "Out-of-stock threshold"
1084
+
1085
+ #: src/lib/components/login/login-form.tsx:105
1086
+ #: src/app/routes/_authenticated/_profile/profile.tsx:115
1087
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:133
1088
+ msgid "Password"
1089
+ msgstr "Password"
1090
+
1091
+ #. placeholder {0}: entry.data.paymentId
1092
+ #. placeholder {1}: entry.data.to
1093
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:86
1094
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx:66
1095
+ msgid "Payment #{0} transitioned to {1}"
1096
+ msgstr "Payment #{0} transitioned to {1}"
1097
+
1098
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:123
1099
+ msgid "Payment details"
1100
+ msgstr "Payment details"
1101
+
1102
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:151
1103
+ msgid "Payment eligibility checker"
1104
+ msgstr "Payment eligibility checker"
1105
+
1106
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:37
1107
+ msgid "Payment metadata"
1108
+ msgstr "Payment metadata"
1109
+
1110
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:17
1111
+ msgid "Payment method"
1112
+ msgstr "Payment method"
1113
+
1114
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:14
1115
+ msgid "Payment Methods"
1116
+ msgstr "Payment Methods"
1117
+
1118
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx:37
1119
+ msgid "Payment settled"
1120
+ msgstr "Payment settled"
1121
+
1122
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:189
1123
+ msgid "Per customer usage limit"
1124
+ msgstr "Per customer usage limit"
1125
+
1126
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:131
1127
+ msgid "Permissions"
1128
+ msgstr "Permissions"
1129
+
1130
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:188
1131
+ msgid "Phone number"
1132
+ msgstr "Phone number"
1133
+
1134
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:308
1135
+ msgid "Phone Number"
1136
+ msgstr "Phone Number"
1137
+
1138
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:250
1139
+ msgid "Postal Code"
1140
+ msgstr "Postal Code"
1141
+
1142
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:301
1143
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:178
1144
+ msgid "Price"
1145
+ msgstr "Price"
1146
+
1147
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:163
1148
+ msgid "Price and tax"
1149
+ msgstr "Price and tax"
1150
+
1151
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:237
1152
+ msgid "Prices include tax for default tax zone"
1153
+ msgstr "Prices include tax for default tax zone"
1154
+
1155
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:111
1156
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:141
1157
+ msgid "Private"
1158
+ msgstr "Private"
1159
+
1160
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:142
1161
+ msgid "Private collections are not visible in the shop"
1162
+ msgstr "Private collections are not visible in the shop"
1163
+
1164
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:112
1165
+ msgid "Private facets are not visible in the shop"
1166
+ msgstr "Private facets are not visible in the shop"
1167
+
1168
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:123
1169
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:149
1170
+ msgid "Product name"
1171
+ msgstr "Product name"
1172
+
1173
+ #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:12
1174
+ #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:20
1175
+ msgid "Product Variants"
1176
+ msgstr "Product Variants"
1177
+
1178
+ #: src/app/routes/_authenticated/_products/products.tsx:13
1179
+ msgid "Products"
1180
+ msgstr "Products"
1181
+
1182
+ #: src/app/routes/_authenticated/_profile/profile.tsx:31
1183
+ #: src/app/routes/_authenticated/_profile/profile.tsx:78
1184
+ msgid "Profile"
1185
+ msgstr "Profile"
1186
+
1187
+ #: src/app/routes/_authenticated/_promotions/promotions.tsx:14
1188
+ msgid "Promotions"
1189
+ msgstr "Promotions"
1190
+
1191
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:120
1192
+ msgid "Rate"
1193
+ msgstr "Rate"
1194
+
1195
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:23
1196
+ msgid "Registered"
1197
+ msgstr "Registered"
1198
+
1199
+ #: src/app/routes/_authenticated/_roles/roles.tsx:17
1200
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:139
1201
+ msgid "Roles"
1202
+ msgstr "Roles"
1203
+
1204
+ #: src/lib/components/layout/language-dialog.tsx:70
1205
+ msgid "Sample Formatting"
1206
+ msgstr "Sample Formatting"
1207
+
1208
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:54
1209
+ msgid "Save"
1210
+ msgstr "Save"
1211
+
1212
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:382
1213
+ msgid "Save Address"
1214
+ msgstr "Save Address"
1215
+
1216
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
1217
+ msgid "Save changes"
1218
+ msgstr "Save changes"
1219
+
1220
+ #: src/lib/components/shared/tax-category-selector.tsx:50
1221
+ msgid "Select a tax category"
1222
+ msgstr "Select a tax category"
1223
+
1224
+ #: src/lib/components/shared/zone-selector.tsx:50
1225
+ msgid "Select a zone"
1226
+ msgstr "Select a zone"
1227
+
1228
+ #: src/lib/components/shared/country-selector.tsx:65
1229
+ msgid "Select country"
1230
+ msgstr "Select country"
1231
+
1232
+ #: src/lib/components/shared/customer-selector.tsx:68
1233
+ msgid "Select customer"
1234
+ msgstr "Select customer"
1235
+
1236
+ #: src/lib/components/layout/language-dialog.tsx:29
1237
+ msgid "Select display language"
1238
+ msgstr "Select display language"
1239
+
1240
+ #: src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx:86
1241
+ msgid "Select Payment Eligibility Checker"
1242
+ msgstr "Select Payment Eligibility Checker"
1243
+
1244
+ #: src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx:86
1245
+ msgid "Select Payment Handler"
1246
+ msgstr "Select Payment Handler"
1247
+
1248
+ #: src/lib/components/shared/seller-selector.tsx:68
1249
+ msgid "Select seller"
1250
+ msgstr "Select seller"
1251
+
1252
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx:87
1253
+ msgctxt "Add new promotion action"
1254
+ msgid "Select Shipping Calculator"
1255
+ msgstr "Select Shipping Calculator"
1256
+
1257
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx:87
1258
+ msgctxt "Add new promotion action"
1259
+ msgid "Select Shipping Eligibility Checker"
1260
+ msgstr "Select Shipping Eligibility Checker"
1261
+
1262
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:155
1263
+ msgid "Seller"
1264
+ msgstr "Seller"
1265
+
1266
+ #: src/app/routes/_authenticated/_sellers/sellers.tsx:13
1267
+ msgid "Sellers"
1268
+ msgstr "Sellers"
1269
+
1270
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:111
1271
+ msgid "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
1272
+ msgstr "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
1273
+
1274
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:129
1275
+ msgid "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
1276
+ msgstr "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
1277
+
1278
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:262
1279
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:283
1280
+ msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
1281
+ msgstr "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
1282
+
1283
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:150
1284
+ msgid "Shipping"
1285
+ msgstr "Shipping"
1286
+
1287
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:108
1288
+ msgid "Shipping address"
1289
+ msgstr "Shipping address"
1290
+
1291
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:14
1292
+ msgid "Shipping Methods"
1293
+ msgstr "Shipping Methods"
1294
+
1295
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:298
1296
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:156
1297
+ msgid "SKU"
1298
+ msgstr "SKU"
1299
+
1300
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:129
1301
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:159
1302
+ msgid "Slug"
1303
+ msgstr "Slug"
1304
+
1305
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:64
1306
+ msgid "Some resources are down"
1307
+ msgstr "Some resources are down"
1308
+
1309
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:161
1310
+ msgid "Starts at"
1311
+ msgstr "Starts at"
1312
+
1313
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:94
1314
+ msgid "State"
1315
+ msgstr "State"
1316
+
1317
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:225
1318
+ msgid "State/Province"
1319
+ msgstr "State/Province"
1320
+
1321
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:249
1322
+ msgid "Status"
1323
+ msgstr "Status"
1324
+
1325
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:192
1326
+ msgid "Stock"
1327
+ msgstr "Stock"
1328
+
1329
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:202
1330
+ msgid "Stock level"
1331
+ msgstr "Stock level"
1332
+
1333
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations.tsx:12
1334
+ msgid "Stock Locations"
1335
+ msgstr "Stock Locations"
1336
+
1337
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:304
1338
+ msgid "Stock on Hand"
1339
+ msgstr "Stock on Hand"
1340
+
1341
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:158
1342
+ msgid "Street Address"
1343
+ msgstr "Street Address"
1344
+
1345
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:142
1346
+ msgid "Sub total"
1347
+ msgstr "Sub total"
1348
+
1349
+ #: src/lib/components/shared/role-code-label.tsx:5
1350
+ msgid "Super Admin"
1351
+ msgstr "Super Admin"
1352
+
1353
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:20
1354
+ msgid "Tax base"
1355
+ msgstr "Tax base"
1356
+
1357
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:14
1358
+ msgid "Tax Categories"
1359
+ msgstr "Tax Categories"
1360
+
1361
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:133
1362
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:168
1363
+ msgid "Tax category"
1364
+ msgstr "Tax category"
1365
+
1366
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:17
1367
+ msgid "Tax rate"
1368
+ msgstr "Tax rate"
1369
+
1370
+ #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:79
1371
+ msgid "Tax rate: {taxRate}%"
1372
+ msgstr "Tax rate: {taxRate}%"
1373
+
1374
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:17
1375
+ msgid "Tax Rates"
1376
+ msgstr "Tax Rates"
1377
+
1378
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:87
1379
+ msgid "Tax summary"
1380
+ msgstr "Tax summary"
1381
+
1382
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:23
1383
+ msgid "Tax total"
1384
+ msgstr "Tax total"
1385
+
1386
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx:19
1387
+ msgid "Test shipping method"
1388
+ msgstr "Test shipping method"
1389
+
1390
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:69
1391
+ msgid "The data that has been passed to the job"
1392
+ msgstr "The data that has been passed to the job"
1393
+
1394
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:89
1395
+ msgid "The result of the job"
1396
+ msgstr "The result of the job"
1397
+
1398
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:115
1399
+ msgid "The selected permissions will be applied to the these channels."
1400
+ msgstr "The selected permissions will be applied to the these channels."
1401
+
1402
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:146
1403
+ msgid "The token is used to specify the channel when making API requests."
1404
+ msgstr "The token is used to specify the channel when making API requests."
1405
+
1406
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:35
1407
+ msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
1408
+ msgstr "These are the customers in the <0>{customerGroupName}</0> customer group."
1409
+
1410
+ #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:35
1411
+ msgid "These are the facet values for the <0>{facetName}</0> facet."
1412
+ msgstr "These are the facet values for the <0>{facetName}</0> facet."
1413
+
1414
+ #: src/app/routes/_authenticated/_roles/roles.tsx:55
1415
+ msgid "This is a default Role and cannot be modified"
1416
+ msgstr "This is a default Role and cannot be modified"
1417
+
1418
+ #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:35
1419
+ msgid "This is the contents of the <0>{collectionName}</0> collection."
1420
+ msgstr "This is the contents of the <0>{collectionName}</0> collection."
1421
+
1422
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:163
1423
+ msgid "Title"
1424
+ msgstr "Title"
1425
+
1426
+ #: src/app/routes/_authenticated/_roles/components/permissions-grid.tsx:80
1427
+ msgid "Toggle all"
1428
+ msgstr "Toggle all"
1429
+
1430
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:144
1431
+ msgid "Token"
1432
+ msgstr "Token"
1433
+
1434
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:158
1435
+ msgid "Total"
1436
+ msgstr "Total"
1437
+
1438
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:240
1439
+ msgid "Track"
1440
+ msgstr "Track"
1441
+
1442
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:227
1443
+ msgid "Track inventory"
1444
+ msgstr "Track inventory"
1445
+
1446
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:146
1447
+ msgid "Track inventory by default"
1448
+ msgstr "Track inventory by default"
1449
+
1450
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:24
1451
+ msgid "Transaction ID"
1452
+ msgstr "Transaction ID"
1453
+
1454
+ #: src/lib/components/shared/facet-value-selector.tsx:219
1455
+ msgid "Type at least 2 characters to search..."
1456
+ msgstr "Type at least 2 characters to search..."
1457
+
1458
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:28
1459
+ msgid "Unverified"
1460
+ msgstr "Unverified"
1461
+
1462
+ #: src/lib/framework/page/detail-page.tsx:88
1463
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:83
1464
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:93
1465
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:89
1466
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:90
1467
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:112
1468
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:87
1469
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:85
1470
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:122
1471
+ #: src/app/routes/_authenticated/_profile/profile.tsx:87
1472
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:101
1473
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:127
1474
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:114
1475
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:78
1476
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:98
1477
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:101
1478
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:152
1479
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:88
1480
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:89
1481
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:131
1482
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:124
1483
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:104
1484
+ msgid "Update"
1485
+ msgstr "Update"
1486
+
1487
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:47
1488
+ msgid "Update the note content or visibility"
1489
+ msgstr "Update the note content or visibility"
1490
+
1491
+ #: src/lib/components/shared/asset-gallery.tsx:227
1492
+ msgid "Upload"
1493
+ msgstr "Upload"
1494
+
1495
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:201
1496
+ msgid "Usage limit"
1497
+ msgstr "Usage limit"
1498
+
1499
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:366
1500
+ msgid "Use as the default billing address"
1501
+ msgstr "Use as the default billing address"
1502
+
1503
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:342
1504
+ msgid "Use as the default shipping address"
1505
+ msgstr "Use as the default shipping address"
1506
+
1507
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:277
1508
+ msgid "Use global out-of-stock threshold"
1509
+ msgstr "Use global out-of-stock threshold"
1510
+
1511
+ #: src/components/login-form.tsx:44
1512
+ #~ msgid "User"
1513
+ #~ msgstr "User"
1514
+
1515
+ #: src/lib/components/login/login-form.tsx:89
1516
+ msgid "Username"
1517
+ msgstr "Username"
1518
+
1519
+ #: src/app/routes/_authenticated/_facets/facets.tsx:33
1520
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:33
1521
+ msgid "Values"
1522
+ msgstr "Values"
1523
+
1524
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:294
1525
+ msgid "Variant"
1526
+ msgstr "Variant"
1527
+
1528
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:18
1529
+ msgid "Verified"
1530
+ msgstr "Verified"
1531
+
1532
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:68
1533
+ msgid "View job data"
1534
+ msgstr "View job data"
1535
+
1536
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:88
1537
+ msgid "View job result"
1538
+ msgstr "View job result"
1539
+
1540
+ #: src/app/routes/_authenticated/_facets/facets.tsx:59
1541
+ msgid "View values"
1542
+ msgstr "View values"
1543
+
1544
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
1545
+ msgid "Visible to admins only"
1546
+ msgstr "Visible to admins only"
1547
+
1548
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
1549
+ msgid "Visible to customer"
1550
+ msgstr "Visible to customer"
1551
+
1552
+ #: src/lib/components/login/login-form.tsx:76
1553
+ msgid "Welcome back!"
1554
+ msgstr "Welcome back!"
1555
+
1556
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:112
1557
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:138
1558
+ msgid "When enabled, a product is available in the shop"
1559
+ msgstr "When enabled, a product is available in the shop"
1560
+
1561
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:133
1562
+ msgid "When enabled, a promotion is available in the shop"
1563
+ msgstr "When enabled, a promotion is available in the shop"
1564
+
1565
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:239
1566
+ msgid "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
1567
+ msgstr "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
1568
+
1569
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:148
1570
+ msgid "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
1571
+ msgstr "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
1572
+
1573
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:141
1574
+ msgid "Zone"
1575
+ msgstr "Zone"
1576
+
1577
+ #: src/app/routes/_authenticated/_zones/zones.tsx:14
1578
+ msgid "Zones"
1579
+ msgstr "Zones"