@vendure/dashboard 3.4.3-master-202509260228 → 3.5.0-minor-202510012036

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 (295) hide show
  1. package/README.md +4 -0
  2. package/dist/plugin/api/api-extensions.js +11 -14
  3. package/dist/plugin/api/metrics.resolver.d.ts +2 -2
  4. package/dist/plugin/api/metrics.resolver.js +2 -2
  5. package/dist/plugin/config/metrics-strategies.d.ts +9 -9
  6. package/dist/plugin/config/metrics-strategies.js +6 -6
  7. package/dist/plugin/constants.d.ts +2 -0
  8. package/dist/plugin/constants.js +3 -1
  9. package/dist/plugin/dashboard.plugin.js +13 -0
  10. package/dist/plugin/service/metrics.service.d.ts +3 -3
  11. package/dist/plugin/service/metrics.service.js +37 -53
  12. package/dist/plugin/types.d.ts +9 -12
  13. package/dist/plugin/types.js +7 -11
  14. package/dist/vite/vite-plugin-config.js +13 -9
  15. package/dist/vite/vite-plugin-translations.d.ts +22 -0
  16. package/dist/vite/vite-plugin-translations.js +66 -0
  17. package/dist/vite/vite-plugin-vendure-dashboard.js +10 -8
  18. package/lingui.config.js +25 -2
  19. package/package.json +159 -156
  20. package/src/app/app-providers.tsx +0 -4
  21. package/src/app/common/delete-bulk-action.tsx +6 -5
  22. package/src/app/common/duplicate-bulk-action.tsx +4 -5
  23. package/src/app/common/duplicate-entity-dialog.tsx +1 -1
  24. package/src/app/common/set-document-direction.ts +7 -0
  25. package/src/app/main.tsx +50 -17
  26. package/src/app/routes/_authenticated/_administrators/administrators.tsx +8 -6
  27. package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +17 -6
  28. package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +2 -2
  29. package/src/app/routes/_authenticated/_assets/assets.tsx +1 -1
  30. package/src/app/routes/_authenticated/_assets/assets_.$id.tsx +4 -4
  31. package/src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx +8 -6
  32. package/src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx +1 -1
  33. package/src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx +1 -1
  34. package/src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx +3 -8
  35. package/src/app/routes/_authenticated/_channels/channels.tsx +3 -6
  36. package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +5 -5
  37. package/src/app/routes/_authenticated/_collections/collections.tsx +10 -6
  38. package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +16 -5
  39. package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +1 -1
  40. package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +1 -1
  41. package/src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx +6 -6
  42. package/src/app/routes/_authenticated/_countries/countries.graphql.ts +2 -0
  43. package/src/app/routes/_authenticated/_countries/countries.tsx +2 -3
  44. package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +4 -4
  45. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +1 -1
  46. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +4 -4
  47. package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +2 -4
  48. package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +13 -6
  49. package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +8 -8
  50. package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +3 -3
  51. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +1 -1
  52. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx +1 -1
  53. package/src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx +1 -1
  54. package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +1 -1
  55. package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +1 -1
  56. package/src/app/routes/_authenticated/_customers/customers.graphql.ts +4 -0
  57. package/src/app/routes/_authenticated/_customers/customers.tsx +23 -11
  58. package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +10 -8
  59. package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +1 -1
  60. package/src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx +6 -5
  61. package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +1 -1
  62. package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +1 -1
  63. package/src/app/routes/_authenticated/_facets/facets.tsx +5 -5
  64. package/src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx +7 -5
  65. package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +18 -6
  66. package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +5 -5
  67. package/src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx +19 -21
  68. package/src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx +1 -1
  69. package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +22 -22
  70. package/src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx +6 -6
  71. package/src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx +15 -9
  72. package/src/app/routes/_authenticated/_orders/components/order-address.tsx +1 -1
  73. package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +11 -9
  74. package/src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx +1 -1
  75. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +1 -1
  76. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx +1 -1
  77. package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +1 -1
  78. package/src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx +1 -1
  79. package/src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx +4 -4
  80. package/src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx +1 -1
  81. package/src/app/routes/_authenticated/_orders/components/order-table-totals.tsx +27 -27
  82. package/src/app/routes/_authenticated/_orders/components/order-table.tsx +2 -2
  83. package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +1 -1
  84. package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +26 -20
  85. package/src/app/routes/_authenticated/_orders/components/seller-orders-card.tsx +3 -1
  86. package/src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx +6 -6
  87. package/src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx +1 -1
  88. package/src/app/routes/_authenticated/_orders/components/state-transition-control.tsx +1 -1
  89. package/src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx +3 -2
  90. package/src/app/routes/_authenticated/_orders/orders.tsx +5 -9
  91. package/src/app/routes/_authenticated/_orders/orders_.$aggregateOrderId_.seller-orders.$sellerOrderId.tsx +1 -1
  92. package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +1 -1
  93. package/src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx +4 -4
  94. package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +17 -17
  95. package/src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx +1 -1
  96. package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +5 -6
  97. package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +13 -6
  98. package/src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx +1 -1
  99. package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +1 -1
  100. package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +10 -0
  101. package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +9 -2
  102. package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +13 -6
  103. package/src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx +5 -5
  104. package/src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx +5 -5
  105. package/src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx +5 -4
  106. package/src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx +9 -12
  107. package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +1 -1
  108. package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +4 -4
  109. package/src/app/routes/_authenticated/_products/components/option-groups-editor.tsx +1 -1
  110. package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +1 -1
  111. package/src/app/routes/_authenticated/_products/components/product-option-group-badge.tsx +19 -0
  112. package/src/app/routes/_authenticated/_products/components/product-option-select.tsx +3 -3
  113. package/src/app/routes/_authenticated/_products/components/product-options-table.tsx +114 -0
  114. package/src/app/routes/_authenticated/_products/product-option-groups.graphql.ts +103 -0
  115. package/src/app/routes/_authenticated/_products/products.graphql.ts +44 -32
  116. package/src/app/routes/_authenticated/_products/products.tsx +34 -5
  117. package/src/app/routes/_authenticated/_products/products_.$id.tsx +29 -12
  118. package/src/app/routes/_authenticated/_products/products_.$id_.variants.tsx +11 -11
  119. package/src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx +177 -0
  120. package/src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx +208 -0
  121. package/src/app/routes/_authenticated/_profile/profile.tsx +4 -4
  122. package/src/app/routes/_authenticated/_promotions/promotions.tsx +2 -4
  123. package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +16 -9
  124. package/src/app/routes/_authenticated/_roles/components/permissions-table-grid.tsx +1 -1
  125. package/src/app/routes/_authenticated/_roles/roles.tsx +3 -6
  126. package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +4 -6
  127. package/src/app/routes/_authenticated/_sellers/sellers.tsx +3 -4
  128. package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +4 -4
  129. package/src/app/routes/_authenticated/_shipping-methods/components/price-display.tsx +5 -5
  130. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx +1 -1
  131. package/src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx +11 -11
  132. package/src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx +1 -1
  133. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-result.tsx +8 -8
  134. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-sheet.tsx +1 -1
  135. package/src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx +8 -8
  136. package/src/app/routes/_authenticated/_shipping-methods/components/test-single-shipping-method-sheet.tsx +4 -4
  137. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +2 -3
  138. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +2 -2
  139. package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +3 -4
  140. package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +13 -6
  141. package/src/app/routes/_authenticated/_system/healthchecks.tsx +10 -4
  142. package/src/app/routes/_authenticated/_system/job-queue.tsx +10 -13
  143. package/src/app/routes/_authenticated/_system/scheduled-tasks.tsx +18 -16
  144. package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +2 -4
  145. package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +13 -6
  146. package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +8 -12
  147. package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +6 -4
  148. package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +4 -1
  149. package/src/app/routes/_authenticated/_zones/zones.tsx +4 -4
  150. package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +8 -5
  151. package/src/app/routes/_authenticated/index.tsx +46 -25
  152. package/src/app/styles.css +4 -0
  153. package/src/i18n/common-strings.ts +111 -0
  154. package/src/i18n/locales/ar.po +4777 -0
  155. package/src/i18n/locales/cs.po +4777 -0
  156. package/src/i18n/locales/de.po +4299 -1101
  157. package/src/i18n/locales/en.po +3857 -659
  158. package/src/i18n/locales/es.po +4777 -0
  159. package/src/i18n/locales/fa.po +4777 -0
  160. package/src/i18n/locales/fr.po +4777 -0
  161. package/src/i18n/locales/he.po +4777 -0
  162. package/src/i18n/locales/hr.po +4777 -0
  163. package/src/i18n/locales/it.po +4777 -0
  164. package/src/i18n/locales/ja.po +4777 -0
  165. package/src/i18n/locales/ko.po +4628 -0
  166. package/src/i18n/locales/nb.po +4777 -0
  167. package/src/i18n/locales/ne.po +4777 -0
  168. package/src/i18n/locales/nl.po +4628 -0
  169. package/src/i18n/locales/pl.po +4777 -0
  170. package/src/i18n/locales/pt_BR.po +4777 -0
  171. package/src/i18n/locales/pt_PT.po +4777 -0
  172. package/src/i18n/locales/ru.po +4777 -0
  173. package/src/i18n/locales/sv.po +4777 -0
  174. package/src/i18n/locales/tr.po +4777 -0
  175. package/src/i18n/locales/uk.po +4777 -0
  176. package/src/i18n/locales/zh_Hans.po +4777 -0
  177. package/src/i18n/locales/zh_Hant.po +4777 -0
  178. package/src/lib/components/data-display/json.tsx +16 -1
  179. package/src/lib/components/data-input/combination-mode-input.tsx +1 -1
  180. package/src/lib/components/data-input/custom-field-list-input.tsx +11 -7
  181. package/src/lib/components/data-input/customer-group-input.tsx +27 -33
  182. package/src/lib/components/data-input/datetime-input.tsx +40 -1
  183. package/src/lib/components/data-input/default-relation-input.tsx +5 -4
  184. package/src/lib/components/data-input/index.ts +3 -0
  185. package/src/lib/components/data-input/product-multi-selector-input.tsx +14 -14
  186. package/src/lib/components/data-input/relation-selector.tsx +1 -1
  187. package/src/lib/components/data-input/select-with-options.tsx +1 -1
  188. package/src/lib/components/data-input/slug-input.tsx +290 -0
  189. package/src/lib/components/data-table/add-filter-menu.tsx +17 -10
  190. package/src/lib/components/data-table/data-table-bulk-action-item.tsx +45 -8
  191. package/src/lib/components/data-table/data-table-bulk-actions.tsx +4 -4
  192. package/src/lib/components/data-table/data-table-column-header.tsx +13 -8
  193. package/src/lib/components/data-table/data-table-context.tsx +91 -0
  194. package/src/lib/components/data-table/data-table-faceted-filter.tsx +2 -1
  195. package/src/lib/components/data-table/data-table-filter-badge.tsx +9 -5
  196. package/src/lib/components/data-table/data-table-filter-dialog.tsx +1 -1
  197. package/src/lib/components/data-table/data-table-utils.ts +21 -4
  198. package/src/lib/components/data-table/data-table-view-options.tsx +21 -10
  199. package/src/lib/components/data-table/data-table.tsx +146 -94
  200. package/src/lib/components/data-table/filters/data-table-boolean-filter.tsx +4 -4
  201. package/src/lib/components/data-table/global-views-bar.tsx +97 -0
  202. package/src/lib/components/data-table/global-views-sheet.tsx +11 -0
  203. package/src/lib/components/data-table/human-readable-operator.tsx +1 -1
  204. package/src/lib/components/data-table/manage-global-views-button.tsx +26 -0
  205. package/src/lib/components/data-table/my-views-button.tsx +47 -0
  206. package/src/lib/components/data-table/refresh-button.tsx +12 -3
  207. package/src/lib/components/data-table/save-view-button.tsx +41 -0
  208. package/src/lib/components/data-table/save-view-dialog.tsx +113 -0
  209. package/src/lib/components/data-table/use-generated-columns.tsx +13 -8
  210. package/src/lib/components/data-table/user-views-sheet.tsx +11 -0
  211. package/src/lib/components/data-table/views-sheet.tsx +305 -0
  212. package/src/lib/components/date-range-picker.tsx +186 -0
  213. package/src/lib/components/layout/app-sidebar.tsx +3 -1
  214. package/src/lib/components/layout/channel-switcher.tsx +8 -10
  215. package/src/lib/components/layout/dev-mode-indicator.tsx +1 -1
  216. package/src/lib/components/layout/generated-breadcrumbs.tsx +10 -8
  217. package/src/lib/components/layout/language-dialog.tsx +34 -13
  218. package/src/lib/components/layout/manage-languages-dialog.tsx +1 -1
  219. package/src/lib/components/layout/nav-main.tsx +23 -13
  220. package/src/lib/components/layout/nav-user.tsx +19 -23
  221. package/src/lib/components/login/login-form.tsx +1 -1
  222. package/src/lib/components/shared/asset/asset-bulk-actions.tsx +4 -4
  223. package/src/lib/components/shared/asset/asset-focal-point-editor.tsx +1 -1
  224. package/src/lib/components/shared/asset/asset-gallery.tsx +15 -14
  225. package/src/lib/components/shared/assign-to-channel-bulk-action.tsx +11 -11
  226. package/src/lib/components/shared/assign-to-channel-dialog.tsx +6 -5
  227. package/src/lib/components/shared/channel-code-label.tsx +1 -1
  228. package/src/lib/components/shared/channel-selector.tsx +4 -4
  229. package/src/lib/components/shared/configurable-operation-multi-selector.tsx +16 -14
  230. package/src/lib/components/shared/configurable-operation-selector.tsx +1 -1
  231. package/src/lib/components/shared/confirmation-dialog.tsx +8 -8
  232. package/src/lib/components/shared/country-selector.tsx +1 -1
  233. package/src/lib/components/shared/currency-selector.tsx +4 -4
  234. package/src/lib/components/shared/custom-fields-form.tsx +8 -24
  235. package/src/lib/components/shared/customer-address-form.tsx +3 -3
  236. package/src/lib/components/shared/customer-group-selector.tsx +1 -1
  237. package/src/lib/components/shared/customer-selector.tsx +1 -1
  238. package/src/lib/components/shared/error-page.tsx +1 -1
  239. package/src/lib/components/shared/facet-value-selector.tsx +10 -10
  240. package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +1 -1
  241. package/src/lib/components/shared/history-timeline/history-note-editor.tsx +1 -1
  242. package/src/lib/components/shared/history-timeline/history-note-entry.tsx +1 -1
  243. package/src/lib/components/shared/language-selector.tsx +4 -4
  244. package/src/lib/components/shared/navigation-confirmation.tsx +1 -1
  245. package/src/lib/components/shared/paginated-list-data-table.tsx +64 -34
  246. package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +6 -5
  247. package/src/lib/components/shared/rich-text-editor/image-dialog.tsx +1 -1
  248. package/src/lib/components/shared/rich-text-editor/link-dialog.tsx +1 -1
  249. package/src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx +1 -1
  250. package/src/lib/components/shared/rich-text-editor/table-edit-icons.tsx +1 -1
  251. package/src/lib/components/shared/role-code-label.tsx +1 -1
  252. package/src/lib/components/shared/role-selector.tsx +4 -4
  253. package/src/lib/components/shared/seller-selector.tsx +1 -1
  254. package/src/lib/components/shared/stock-level-label.tsx +3 -5
  255. package/src/lib/components/shared/table-cell/order-table-cell-components.tsx +3 -1
  256. package/src/lib/components/shared/tax-category-selector.tsx +1 -1
  257. package/src/lib/components/shared/translatable-form-field.tsx +15 -15
  258. package/src/lib/components/shared/zone-selector.tsx +1 -1
  259. package/src/lib/components/ui/button.tsx +1 -1
  260. package/src/lib/framework/dashboard-widget/base-widget.tsx +11 -9
  261. package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +35 -6
  262. package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +18 -12
  263. package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +9 -3
  264. package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +26 -79
  265. package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +35 -0
  266. package/src/lib/framework/defaults.ts +34 -63
  267. package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +319 -9
  268. package/src/lib/framework/document-introspection/add-custom-fields.ts +60 -31
  269. package/src/lib/framework/document-introspection/get-document-structure.spec.ts +1 -159
  270. package/src/lib/framework/document-introspection/include-only-selected-list-fields.spec.ts +1840 -0
  271. package/src/lib/framework/document-introspection/include-only-selected-list-fields.ts +940 -0
  272. package/src/lib/framework/document-introspection/testing-utils.ts +161 -0
  273. package/src/lib/framework/extension-api/display-component-extensions.tsx +2 -0
  274. package/src/lib/framework/extension-api/types/data-table.ts +62 -4
  275. package/src/lib/framework/extension-api/types/navigation.ts +16 -0
  276. package/src/lib/framework/form-engine/utils.ts +34 -0
  277. package/src/lib/framework/layout-engine/page-layout.tsx +36 -36
  278. package/src/lib/framework/page/detail-page.tsx +10 -10
  279. package/src/lib/framework/page/list-page.tsx +289 -4
  280. package/src/lib/framework/page/use-extended-router.tsx +101 -34
  281. package/src/lib/graphql/api.ts +6 -2
  282. package/src/lib/graphql/graphql-env.d.ts +38 -26
  283. package/src/lib/hooks/use-display-locale.ts +40 -0
  284. package/src/lib/hooks/use-dynamic-translations.ts +46 -0
  285. package/src/lib/hooks/use-extended-detail-query.ts +1 -1
  286. package/src/lib/hooks/use-extended-list-query.ts +6 -1
  287. package/src/lib/hooks/use-local-format.ts +15 -1
  288. package/src/lib/hooks/use-saved-views.ts +230 -0
  289. package/src/lib/hooks/use-ui-language-loader.ts +30 -0
  290. package/src/lib/index.ts +15 -0
  291. package/src/lib/lib/load-i18n-messages.ts +17 -0
  292. package/src/lib/lib/trans.tsx +15 -11
  293. package/src/lib/providers/i18n-provider.tsx +7 -14
  294. package/src/lib/types/saved-views.ts +39 -0
  295. package/src/lib/utils/saved-views-utils.ts +40 -0
@@ -0,0 +1,4628 @@
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: ko\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/hooks/use-extended-detail-query.ts:23
18
+ #: src/lib/hooks/use-extended-list-query.ts:64
19
+ msgid "Query extension error"
20
+ msgstr "쿼리 확장 오류"
21
+
22
+ #. js-lingui-explicit-id
23
+ #: src/lib/hooks/use-extended-detail-query.ts:25
24
+ #: src/lib/hooks/use-extended-list-query.ts:66
25
+ msgid "The page will continue with the default query."
26
+ msgstr "페이지는 기본 쿼리로 계속됩니다."
27
+
28
+ #. js-lingui-explicit-id
29
+ #: src/lib/hooks/use-extended-list-query.ts:41
30
+ msgid "Failed to extend query document"
31
+ msgstr "쿼리 문서 확장 실패"
32
+
33
+ #. js-lingui-explicit-id
34
+ #: src/lib/hooks/use-extended-list-query.ts:43
35
+ msgid "Query extension is invalid: must have at least one top-level field"
36
+ msgstr "쿼리 확장이 유효하지 않습니다: 최소 하나의 최상위 필드가 필요합니다"
37
+
38
+ #. js-lingui-explicit-id
39
+ #: src/lib/hooks/use-extended-list-query.ts:47
40
+ msgid "Query extension mismatch: "
41
+ msgstr "쿼리 확장 불일치:"
42
+
43
+ #. js-lingui-explicit-id
44
+ #: src/lib/hooks/use-extended-list-query.ts:49
45
+ msgid "Query extension contains invalid GraphQL syntax"
46
+ msgstr "쿼리 확장에 유효하지 않은 GraphQL 구문이 포함되어 있습니다"
47
+
48
+ #. js-lingui-explicit-id
49
+ #: src/lib/hooks/use-extended-list-query.ts:51
50
+ msgid "Query extension error: "
51
+ msgstr "쿼리 확장 오류:"
52
+
53
+ #. js-lingui-explicit-id
54
+ #: src/lib/framework/defaults.ts:22
55
+ msgid "Insights"
56
+ msgstr "인사이트"
57
+
58
+ #. js-lingui-explicit-id
59
+ #: src/lib/framework/defaults.ts:30
60
+ msgid "Catalog"
61
+ msgstr "카탈로그"
62
+
63
+ #. js-lingui-explicit-id
64
+ #: src/lib/framework/defaults.ts:37
65
+ msgid "Products"
66
+ msgstr "상품"
67
+
68
+ #. js-lingui-explicit-id
69
+ #: src/lib/framework/defaults.ts:44
70
+ msgid "Product Variants"
71
+ msgstr "상품 변형"
72
+
73
+ #. js-lingui-explicit-id
74
+ #: src/lib/framework/defaults.ts:51
75
+ msgid "Facets"
76
+ msgstr "속성"
77
+
78
+ #. js-lingui-explicit-id
79
+ #: src/lib/framework/defaults.ts:58
80
+ msgid "Collections"
81
+ msgstr "컬렉션"
82
+
83
+ #. js-lingui-explicit-id
84
+ #: src/lib/framework/defaults.ts:65
85
+ msgid "Assets"
86
+ msgstr "에셋"
87
+
88
+ #. js-lingui-explicit-id
89
+ #: src/lib/framework/defaults.ts:74
90
+ msgid "Sales"
91
+ msgstr "판매"
92
+
93
+ #. js-lingui-explicit-id
94
+ #: src/lib/framework/defaults.ts:81
95
+ msgid "Orders"
96
+ msgstr "주문"
97
+
98
+ #. js-lingui-explicit-id
99
+ #: src/lib/framework/defaults.ts:90
100
+ #: src/lib/framework/defaults.ts:97
101
+ msgid "Customers"
102
+ msgstr "고객"
103
+
104
+ #. js-lingui-explicit-id
105
+ #: src/lib/framework/defaults.ts:104
106
+ msgid "Customer Groups"
107
+ msgstr "고객 그룹"
108
+
109
+ #. js-lingui-explicit-id
110
+ #: src/lib/framework/defaults.ts:113
111
+ msgid "Marketing"
112
+ msgstr "마케팅"
113
+
114
+ #. js-lingui-explicit-id
115
+ #: src/lib/framework/defaults.ts:120
116
+ msgid "Promotions"
117
+ msgstr "프로모션"
118
+
119
+ #. js-lingui-explicit-id
120
+ #: src/lib/framework/defaults.ts:129
121
+ msgid "System"
122
+ msgstr "시스템"
123
+
124
+ #. js-lingui-explicit-id
125
+ #: src/lib/framework/defaults.ts:136
126
+ msgid "Job Queue"
127
+ msgstr "작업 큐"
128
+
129
+ #. js-lingui-explicit-id
130
+ #: src/lib/framework/defaults.ts:143
131
+ msgid "Healthchecks"
132
+ msgstr "헬스체크"
133
+
134
+ #. js-lingui-explicit-id
135
+ #: src/lib/framework/defaults.ts:150
136
+ msgid "Scheduled Tasks"
137
+ msgstr "예약된 작업"
138
+
139
+ #. js-lingui-explicit-id
140
+ #: src/lib/framework/defaults.ts:159
141
+ msgid "Settings"
142
+ msgstr "설정"
143
+
144
+ #. js-lingui-explicit-id
145
+ #: src/lib/framework/defaults.ts:166
146
+ msgid "Sellers"
147
+ msgstr "판매자"
148
+
149
+ #. js-lingui-explicit-id
150
+ #: src/lib/framework/defaults.ts:173
151
+ msgid "Channels"
152
+ msgstr "채널"
153
+
154
+ #. js-lingui-explicit-id
155
+ #: src/lib/framework/defaults.ts:180
156
+ msgid "Stock Locations"
157
+ msgstr "재고 위치"
158
+
159
+ #. js-lingui-explicit-id
160
+ #: src/lib/framework/defaults.ts:187
161
+ msgid "Administrators"
162
+ msgstr "관리자"
163
+
164
+ #. js-lingui-explicit-id
165
+ #: src/lib/framework/defaults.ts:194
166
+ msgid "Roles"
167
+ msgstr "역할"
168
+
169
+ #. js-lingui-explicit-id
170
+ #: src/lib/framework/defaults.ts:201
171
+ msgid "Shipping Methods"
172
+ msgstr "배송 방법"
173
+
174
+ #. js-lingui-explicit-id
175
+ #: src/lib/framework/defaults.ts:208
176
+ msgid "Payment Methods"
177
+ msgstr "결제 방법"
178
+
179
+ #. js-lingui-explicit-id
180
+ #: src/lib/framework/defaults.ts:215
181
+ msgid "Tax Categories"
182
+ msgstr "세금 카테고리"
183
+
184
+ #. js-lingui-explicit-id
185
+ #: src/lib/framework/defaults.ts:222
186
+ msgid "Tax Rates"
187
+ msgstr "세율"
188
+
189
+ #. js-lingui-explicit-id
190
+ #: src/lib/framework/defaults.ts:229
191
+ msgid "Countries"
192
+ msgstr "국가"
193
+
194
+ #. js-lingui-explicit-id
195
+ #: src/lib/framework/defaults.ts:236
196
+ msgid "Zones"
197
+ msgstr "지역"
198
+
199
+ #. js-lingui-explicit-id
200
+ #: src/lib/framework/defaults.ts:243
201
+ msgid "Global Settings"
202
+ msgstr "전역 설정"
203
+
204
+ #. js-lingui-explicit-id
205
+ #: src/lib/framework/defaults.ts:255
206
+ msgid "Metrics Widget"
207
+ msgstr "지표 위젯"
208
+
209
+ #. js-lingui-explicit-id
210
+ #: src/lib/framework/defaults.ts:263
211
+ msgid "Latest Orders Widget"
212
+ msgstr "최근 주문 위젯"
213
+
214
+ #. js-lingui-explicit-id
215
+ #: src/lib/framework/defaults.ts:270
216
+ msgid "Orders Summary Widget"
217
+ msgstr "주문 요약 위젯"
218
+
219
+ #. js-lingui-explicit-id
220
+ #: src/i18n/common-strings.ts:7
221
+ msgid "fulfillmentState.Created"
222
+ msgstr "생성됨"
223
+
224
+ #. js-lingui-explicit-id
225
+ #: src/i18n/common-strings.ts:8
226
+ msgid "fulfillmentState.Pending"
227
+ msgstr "대기 중"
228
+
229
+ #. js-lingui-explicit-id
230
+ #: src/i18n/common-strings.ts:9
231
+ #: src/i18n/common-strings.ts:12
232
+ msgid "fulfillmentState.Cancelled"
233
+ msgstr "취소됨"
234
+
235
+ #. js-lingui-explicit-id
236
+ #: src/i18n/common-strings.ts:10
237
+ msgid "fulfillmentState.Shipped"
238
+ msgstr "배송됨"
239
+
240
+ #. js-lingui-explicit-id
241
+ #: src/i18n/common-strings.ts:11
242
+ msgid "fulfillmentState.Delivered"
243
+ msgstr "배달됨"
244
+
245
+ #. js-lingui-explicit-id
246
+ #: src/i18n/common-strings.ts:15
247
+ msgid "paymentState.Created"
248
+ msgstr "생성됨"
249
+
250
+ #. js-lingui-explicit-id
251
+ #: src/i18n/common-strings.ts:16
252
+ msgid "paymentState.Authorized"
253
+ msgstr "승인됨"
254
+
255
+ #. js-lingui-explicit-id
256
+ #: src/i18n/common-strings.ts:17
257
+ #: src/i18n/common-strings.ts:24
258
+ msgid "paymentState.Settled"
259
+ msgstr "정산됨"
260
+
261
+ #. js-lingui-explicit-id
262
+ #: src/i18n/common-strings.ts:18
263
+ msgid "paymentState.Declined"
264
+ msgstr "거절됨"
265
+
266
+ #. js-lingui-explicit-id
267
+ #: src/i18n/common-strings.ts:19
268
+ msgid "paymentState.Error"
269
+ msgstr "오류"
270
+
271
+ #. js-lingui-explicit-id
272
+ #: src/i18n/common-strings.ts:20
273
+ msgid "paymentState.Cancelled"
274
+ msgstr "취소됨"
275
+
276
+ #. js-lingui-explicit-id
277
+ #: src/i18n/common-strings.ts:23
278
+ msgid "paymentState.Pending"
279
+ msgstr "대기 중"
280
+
281
+ #. js-lingui-explicit-id
282
+ #: src/i18n/common-strings.ts:25
283
+ msgid "paymentState.Failed"
284
+ msgstr "실패"
285
+
286
+ #. js-lingui-explicit-id
287
+ #: src/i18n/common-strings.ts:28
288
+ msgid "orderState.Created"
289
+ msgstr "생성됨"
290
+
291
+ #. js-lingui-explicit-id
292
+ #: src/i18n/common-strings.ts:29
293
+ msgid "orderState.Draft"
294
+ msgstr "임시 저장"
295
+
296
+ #. js-lingui-explicit-id
297
+ #: src/i18n/common-strings.ts:30
298
+ msgid "orderState.AddingItems"
299
+ msgstr "상품 추가 중"
300
+
301
+ #. js-lingui-explicit-id
302
+ #: src/i18n/common-strings.ts:31
303
+ msgid "orderState.Cancelled"
304
+ msgstr "취소됨"
305
+
306
+ #. js-lingui-explicit-id
307
+ #: src/i18n/common-strings.ts:32
308
+ msgid "orderState.ArrangingPayment"
309
+ msgstr "결제 준비 중"
310
+
311
+ #. js-lingui-explicit-id
312
+ #: src/i18n/common-strings.ts:33
313
+ msgid "orderState.PaymentAuthorized"
314
+ msgstr "결제 승인됨"
315
+
316
+ #. js-lingui-explicit-id
317
+ #: src/i18n/common-strings.ts:34
318
+ msgid "orderState.PaymentSettled"
319
+ msgstr "결제 완료"
320
+
321
+ #. js-lingui-explicit-id
322
+ #: src/i18n/common-strings.ts:35
323
+ msgid "orderState.PartiallyShipped"
324
+ msgstr "부분 배송됨"
325
+
326
+ #. js-lingui-explicit-id
327
+ #: src/i18n/common-strings.ts:36
328
+ msgid "orderState.Shipped"
329
+ msgstr "배송됨"
330
+
331
+ #. js-lingui-explicit-id
332
+ #: src/i18n/common-strings.ts:37
333
+ msgid "orderState.PartiallyDelivered"
334
+ msgstr "부분 배달됨"
335
+
336
+ #. js-lingui-explicit-id
337
+ #: src/i18n/common-strings.ts:38
338
+ msgid "orderState.Delivered"
339
+ msgstr "배달됨"
340
+
341
+ #. js-lingui-explicit-id
342
+ #: src/i18n/common-strings.ts:39
343
+ msgid "orderState.Modifying"
344
+ msgstr "수정 중"
345
+
346
+ #. js-lingui-explicit-id
347
+ #: src/i18n/common-strings.ts:40
348
+ msgid "orderState.ArrangingAdditionalPayment"
349
+ msgstr "추가 결제 준비 중"
350
+
351
+ #. js-lingui-explicit-id
352
+ #: src/i18n/common-strings.ts:43
353
+ msgid "fieldName.attempts"
354
+ msgstr "시도 횟수"
355
+
356
+ #. js-lingui-explicit-id
357
+ #: src/i18n/common-strings.ts:44
358
+ msgid "fieldName.availableCurrencyCodes"
359
+ msgstr "사용 가능한 통화 코드"
360
+
361
+ #. js-lingui-explicit-id
362
+ #: src/i18n/common-strings.ts:45
363
+ msgid "fieldName.availableLanguageCodes"
364
+ msgstr "사용 가능한 언어 코드"
365
+
366
+ #. js-lingui-explicit-id
367
+ #: src/i18n/common-strings.ts:46
368
+ msgid "fieldName.breadcrumbs"
369
+ msgstr "경로"
370
+
371
+ #. js-lingui-explicit-id
372
+ #: src/i18n/common-strings.ts:47
373
+ msgid "fieldName.category"
374
+ msgstr "카테고리"
375
+
376
+ #. js-lingui-explicit-id
377
+ #: src/i18n/common-strings.ts:48
378
+ msgid "fieldName.channels"
379
+ msgstr "채널"
380
+
381
+ #. js-lingui-explicit-id
382
+ #: src/i18n/common-strings.ts:49
383
+ msgid "fieldName.children"
384
+ msgstr "하위 항목"
385
+
386
+ #. js-lingui-explicit-id
387
+ #: src/i18n/common-strings.ts:50
388
+ msgid "fieldName.code"
389
+ msgstr "코드"
390
+
391
+ #. js-lingui-explicit-id
392
+ #: src/i18n/common-strings.ts:51
393
+ msgid "fieldName.couponCode"
394
+ msgstr "쿠폰 코드"
395
+
396
+ #. js-lingui-explicit-id
397
+ #: src/i18n/common-strings.ts:52
398
+ msgid "fieldName.createdAt"
399
+ msgstr "생성일"
400
+
401
+ #. js-lingui-explicit-id
402
+ #: src/i18n/common-strings.ts:53
403
+ msgid "fieldName.currencyCode"
404
+ msgstr "통화 코드"
405
+
406
+ #. js-lingui-explicit-id
407
+ #: src/i18n/common-strings.ts:54
408
+ msgid "fieldName.customer"
409
+ msgstr "고객"
410
+
411
+ #. js-lingui-explicit-id
412
+ #: src/i18n/common-strings.ts:55
413
+ msgid "fieldName.customerGroup"
414
+ msgstr "고객 그룹"
415
+
416
+ #. js-lingui-explicit-id
417
+ #: src/i18n/common-strings.ts:56
418
+ msgid "fieldName.customers"
419
+ msgstr "고객"
420
+
421
+ #. js-lingui-explicit-id
422
+ #: src/i18n/common-strings.ts:57
423
+ msgid "fieldName.customFields"
424
+ msgstr "사용자 정의 필드"
425
+
426
+ #. js-lingui-explicit-id
427
+ #: src/i18n/common-strings.ts:58
428
+ msgid "fieldName.data"
429
+ msgstr "데이터"
430
+
431
+ #. js-lingui-explicit-id
432
+ #: src/i18n/common-strings.ts:59
433
+ msgid "fieldName.defaultCurrencyCode"
434
+ msgstr "기본 통화 코드"
435
+
436
+ #. js-lingui-explicit-id
437
+ #: src/i18n/common-strings.ts:60
438
+ msgid "fieldName.defaultLanguageCode"
439
+ msgstr "기본 언어 코드"
440
+
441
+ #. js-lingui-explicit-id
442
+ #: src/i18n/common-strings.ts:61
443
+ msgid "fieldName.defaultShippingZone"
444
+ msgstr "기본 배송 지역"
445
+
446
+ #. js-lingui-explicit-id
447
+ #: src/i18n/common-strings.ts:62
448
+ msgid "fieldName.defaultTaxZone"
449
+ msgstr "기본 세금 지역"
450
+
451
+ #. js-lingui-explicit-id
452
+ #: src/i18n/common-strings.ts:63
453
+ msgid "fieldName.description"
454
+ msgstr "설명"
455
+
456
+ #. js-lingui-explicit-id
457
+ #: src/i18n/common-strings.ts:64
458
+ msgid "fieldName.duration"
459
+ msgstr "기간"
460
+
461
+ #. js-lingui-explicit-id
462
+ #: src/i18n/common-strings.ts:65
463
+ msgid "fieldName.emailAddress"
464
+ msgstr "이메일 주소"
465
+
466
+ #. js-lingui-explicit-id
467
+ #: src/i18n/common-strings.ts:66
468
+ msgid "fieldName.enabled"
469
+ msgstr "활성화됨"
470
+
471
+ #. js-lingui-explicit-id
472
+ #: src/i18n/common-strings.ts:67
473
+ msgid "fieldName.endsAt"
474
+ msgstr "종료 일시"
475
+
476
+ #. js-lingui-explicit-id
477
+ #: src/i18n/common-strings.ts:68
478
+ msgid "fieldName.error"
479
+ msgstr "오류"
480
+
481
+ #. js-lingui-explicit-id
482
+ #: src/i18n/common-strings.ts:69
483
+ msgid "fieldName.featuredAsset"
484
+ msgstr "주요 에셋"
485
+
486
+ #. js-lingui-explicit-id
487
+ #: src/i18n/common-strings.ts:70
488
+ msgid "fieldName.firstName"
489
+ msgstr "이름"
490
+
491
+ #. js-lingui-explicit-id
492
+ #: src/i18n/common-strings.ts:71
493
+ msgid "fieldName.fulfillmentHandlerCode"
494
+ msgstr "배송 처리 코드"
495
+
496
+ #. js-lingui-explicit-id
497
+ #: src/i18n/common-strings.ts:72
498
+ msgid "fieldName.id"
499
+ msgstr "ID"
500
+
501
+ #. js-lingui-explicit-id
502
+ #: src/i18n/common-strings.ts:73
503
+ msgid "fieldName.isDefault"
504
+ msgstr "기본값"
505
+
506
+ #. js-lingui-explicit-id
507
+ #: src/i18n/common-strings.ts:74
508
+ msgid "fieldName.isPrivate"
509
+ msgstr "비공개"
510
+
511
+ #. js-lingui-explicit-id
512
+ #: src/i18n/common-strings.ts:75
513
+ msgid "fieldName.isSettled"
514
+ msgstr "정산 완료"
515
+
516
+ #. js-lingui-explicit-id
517
+ #: src/i18n/common-strings.ts:76
518
+ msgid "fieldName.lastName"
519
+ msgstr "성"
520
+
521
+ #. js-lingui-explicit-id
522
+ #: src/i18n/common-strings.ts:77
523
+ msgid "fieldName.name"
524
+ msgstr "이름"
525
+
526
+ #. js-lingui-explicit-id
527
+ #: src/i18n/common-strings.ts:78
528
+ msgid "fieldName.orderPlacedAt"
529
+ msgstr "주문 일시"
530
+
531
+ #. js-lingui-explicit-id
532
+ #: src/i18n/common-strings.ts:79
533
+ msgid "fieldName.parentId"
534
+ msgstr "상위 ID"
535
+
536
+ #. js-lingui-explicit-id
537
+ #: src/i18n/common-strings.ts:80
538
+ msgid "fieldName.perCustomerUsageLimit"
539
+ msgstr "고객당 사용 제한"
540
+
541
+ #. js-lingui-explicit-id
542
+ #: src/i18n/common-strings.ts:81
543
+ msgid "fieldName.permissions"
544
+ msgstr "권한"
545
+
546
+ #. js-lingui-explicit-id
547
+ #: src/i18n/common-strings.ts:82
548
+ msgid "fieldName.position"
549
+ msgstr "위치"
550
+
551
+ #. js-lingui-explicit-id
552
+ #: src/i18n/common-strings.ts:83
553
+ msgid "fieldName.price"
554
+ msgstr "가격"
555
+
556
+ #. js-lingui-explicit-id
557
+ #: src/i18n/common-strings.ts:84
558
+ msgid "fieldName.priceWithTax"
559
+ msgstr "세금 포함 가격"
560
+
561
+ #. js-lingui-explicit-id
562
+ #: src/i18n/common-strings.ts:85
563
+ msgid "fieldName.pricesIncludeTax"
564
+ msgstr "가격에 세금 포함"
565
+
566
+ #. js-lingui-explicit-id
567
+ #: src/i18n/common-strings.ts:86
568
+ msgid "fieldName.productVariants"
569
+ msgstr "상품 변형"
570
+
571
+ #. js-lingui-explicit-id
572
+ #: src/i18n/common-strings.ts:87
573
+ msgid "fieldName.progress"
574
+ msgstr "진행률"
575
+
576
+ #. js-lingui-explicit-id
577
+ #: src/i18n/common-strings.ts:88
578
+ msgid "fieldName.queueName"
579
+ msgstr "큐 이름"
580
+
581
+ #. js-lingui-explicit-id
582
+ #: src/i18n/common-strings.ts:89
583
+ msgid "fieldName.result"
584
+ msgstr "결과"
585
+
586
+ #. js-lingui-explicit-id
587
+ #: src/i18n/common-strings.ts:90
588
+ msgid "fieldName.retries"
589
+ msgstr "재시도"
590
+
591
+ #. js-lingui-explicit-id
592
+ #: src/i18n/common-strings.ts:91
593
+ msgid "fieldName.seller"
594
+ msgstr "판매자"
595
+
596
+ #. js-lingui-explicit-id
597
+ #: src/i18n/common-strings.ts:92
598
+ msgid "fieldName.settledAt"
599
+ msgstr "정산일"
600
+
601
+ #. js-lingui-explicit-id
602
+ #: src/i18n/common-strings.ts:93
603
+ msgid "fieldName.shippingLines"
604
+ msgstr "배송 항목"
605
+
606
+ #. js-lingui-explicit-id
607
+ #: src/i18n/common-strings.ts:94
608
+ msgid "fieldName.sku"
609
+ msgstr "SKU"
610
+
611
+ #. js-lingui-explicit-id
612
+ #: src/i18n/common-strings.ts:95
613
+ msgid "fieldName.slug"
614
+ msgstr "슬러그"
615
+
616
+ #. js-lingui-explicit-id
617
+ #: src/i18n/common-strings.ts:96
618
+ msgid "fieldName.startedAt"
619
+ msgstr "시작일"
620
+
621
+ #. js-lingui-explicit-id
622
+ #: src/i18n/common-strings.ts:97
623
+ msgid "fieldName.startsAt"
624
+ msgstr "시작 일시"
625
+
626
+ #. js-lingui-explicit-id
627
+ #: src/i18n/common-strings.ts:98
628
+ msgid "fieldName.state"
629
+ msgstr "상태"
630
+
631
+ #. js-lingui-explicit-id
632
+ #: src/i18n/common-strings.ts:99
633
+ msgid "fieldName.stockLevels"
634
+ msgstr "재고 수준"
635
+
636
+ #. js-lingui-explicit-id
637
+ #: src/i18n/common-strings.ts:100
638
+ msgid "fieldName.token"
639
+ msgstr "토큰"
640
+
641
+ #. js-lingui-explicit-id
642
+ #: src/i18n/common-strings.ts:101
643
+ msgid "fieldName.total"
644
+ msgstr "합계"
645
+
646
+ #. js-lingui-explicit-id
647
+ #: src/i18n/common-strings.ts:102
648
+ msgid "fieldName.totalWithTax"
649
+ msgstr "세금 포함 합계"
650
+
651
+ #. js-lingui-explicit-id
652
+ #: src/i18n/common-strings.ts:103
653
+ msgid "fieldName.type"
654
+ msgstr "유형"
655
+
656
+ #. js-lingui-explicit-id
657
+ #: src/i18n/common-strings.ts:104
658
+ msgid "fieldName.updatedAt"
659
+ msgstr "수정일"
660
+
661
+ #. js-lingui-explicit-id
662
+ #: src/i18n/common-strings.ts:105
663
+ msgid "fieldName.usageLimit"
664
+ msgstr "사용 제한"
665
+
666
+ #. js-lingui-explicit-id
667
+ #: src/i18n/common-strings.ts:106
668
+ msgid "fieldName.user"
669
+ msgstr "사용자"
670
+
671
+ #. js-lingui-explicit-id
672
+ #: src/i18n/common-strings.ts:107
673
+ msgid "fieldName.value"
674
+ msgstr "값"
675
+
676
+ #. js-lingui-explicit-id
677
+ #: src/i18n/common-strings.ts:108
678
+ msgid "fieldName.valueList"
679
+ msgstr "값 목록"
680
+
681
+ #. js-lingui-explicit-id
682
+ #: src/i18n/common-strings.ts:109
683
+ msgid "fieldName.zone"
684
+ msgstr "지역"
685
+
686
+ #. js-lingui-explicit-id
687
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:99
688
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:104
689
+ msgid "Note added successfully"
690
+ msgstr "메모가 추가되었습니다"
691
+
692
+ #. js-lingui-explicit-id
693
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:103
694
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:108
695
+ msgid "Failed to add note"
696
+ msgstr "메모 추가 실패"
697
+
698
+ #. js-lingui-explicit-id
699
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:120
700
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:125
701
+ msgid "Note updated successfully"
702
+ msgstr "메모가 업데이트되었습니다"
703
+
704
+ #. js-lingui-explicit-id
705
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:124
706
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:129
707
+ msgid "Failed to update note"
708
+ msgstr "메모 업데이트 실패"
709
+
710
+ #. js-lingui-explicit-id
711
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:140
712
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:146
713
+ msgid "Note deleted successfully"
714
+ msgstr "메모가 삭제되었습니다"
715
+
716
+ #. js-lingui-explicit-id
717
+ #: src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts:144
718
+ #: src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts:150
719
+ msgid "Failed to delete note"
720
+ msgstr "메모 삭제 실패"
721
+
722
+ #: src/lib/components/data-table/human-readable-operator.tsx:26
723
+ msgid "!="
724
+ msgstr "!="
725
+
726
+ #. placeholder {0}: action.label
727
+ #. placeholder {0}: entityType === 'products' ? 'Product' : 'Variant'
728
+ #. placeholder {0}: entry.type.replace(/_/g, ' ').toLowerCase()
729
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:67
730
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:102
731
+ #: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:37
732
+ #: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:44
733
+ #: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:93
734
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:189
735
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:45
736
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:278
737
+ #: src/lib/components/data-input/relation-selector.tsx:403
738
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:421
739
+ msgid "{0}"
740
+ msgstr "{0}"
741
+
742
+ #. placeholder {0}: value.totalItems
743
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:41
744
+ msgid "{0} customers"
745
+ msgstr "{0}명의 고객"
746
+
747
+ #. placeholder {0}: selectedIds.length
748
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:401
749
+ msgid "{0} items selected"
750
+ msgstr "{0}개 항목 선택됨"
751
+
752
+ #. placeholder {0}: quantity.max
753
+ #. placeholder {1}: line.quantity
754
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:258
755
+ msgid "{0} of {1} available to fulfill"
756
+ msgstr "{1}개 중 {0}개 처리 가능"
757
+
758
+ #. placeholder {0}: selection.length
759
+ #: src/lib/components/data-table/data-table-bulk-actions.tsx:72
760
+ #: src/lib/components/shared/asset/asset-bulk-actions.tsx:82
761
+ msgid "{0} selected"
762
+ msgstr "{0}개 선택됨"
763
+
764
+ #. placeholder {0}: row.original.productVariants?.totalItems
765
+ #: src/app/routes/_authenticated/_collections/collections.tsx:150
766
+ msgid "{0} variants"
767
+ msgstr "{0}개 변형"
768
+
769
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:396
770
+ #: src/lib/components/shared/configurable-operation-multi-selector.tsx:225
771
+ #: src/lib/components/shared/configurable-operation-selector.tsx:135
772
+ msgid "{buttonText}"
773
+ msgstr "{buttonText}"
774
+
775
+ #: src/lib/components/data-table/data-table-bulk-action-item.tsx:106
776
+ #: src/lib/components/data-table/data-table-bulk-action-item.tsx:134
777
+ msgid "{label}"
778
+ msgstr "{label}"
779
+
780
+ #: src/lib/components/data-table/human-readable-operator.tsx:63
781
+ msgid "{operator}"
782
+ msgstr "{operator}"
783
+
784
+ #: src/lib/framework/dashboard-widget/base-widget.tsx:78
785
+ msgid "{title}"
786
+ msgstr "{title}"
787
+
788
+ #. placeholder {0}: list.totalItems - 3
789
+ #: src/app/routes/_authenticated/_facets/facets.tsx:50
790
+ msgid "+ {0} more"
791
+ msgstr "+ {0}개 더보기"
792
+
793
+ #: src/app/routes/_authenticated/_collections/collections.tsx:168
794
+ msgid "+ {leftOver} more"
795
+ msgstr "+ {leftOver}개 더보기"
796
+
797
+ #: src/lib/components/data-table/human-readable-operator.tsx:24
798
+ msgid "="
799
+ msgstr "="
800
+
801
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:173
802
+ msgid "A refund of {formattedDiff} is required. Select payment amounts and enter a note to proceed."
803
+ msgstr "{formattedDiff}의 환불이 필요합니다. 결제 금액을 선택하고 메모를 입력하여 계속하세요."
804
+
805
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:238
806
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:191
807
+ #: src/lib/components/data-table/use-generated-columns.tsx:231
808
+ msgid "Actions"
809
+ msgstr "작업"
810
+
811
+ #: src/app/routes/_authenticated/_products/components/product-option-select.tsx:81
812
+ msgid "Add \"{newOptionInput}\""
813
+ msgstr "「{newOptionInput}」추가"
814
+
815
+ #. placeholder {0}: formatCurrency(outstandingAmount, currencyCode)
816
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:130
817
+ msgid "Add a manual payment of {0}"
818
+ msgstr "{0}의 수동 결제 추가"
819
+
820
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:230
821
+ msgid "Add a new address to the customer."
822
+ msgstr "고객에게 새 주소를 추가합니다."
823
+
824
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:318
825
+ msgid "Add another option group"
826
+ msgstr "다른 옵션 그룹 추가"
827
+
828
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:132
829
+ msgid "Add asset"
830
+ msgstr "에셋 추가"
831
+
832
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:151
833
+ msgid "Add column after"
834
+ msgstr "뒤에 열 추가"
835
+
836
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:145
837
+ msgid "Add column before"
838
+ msgstr "앞에 열 추가"
839
+
840
+ #: src/app/routes/_authenticated/_countries/countries.tsx:65
841
+ msgid "Add Country"
842
+ msgstr "국가 추가"
843
+
844
+ #: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:247
845
+ msgid "Add coupon code"
846
+ msgstr "쿠폰 코드 추가"
847
+
848
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:129
849
+ msgid "Add customer"
850
+ msgstr "고객 추가"
851
+
852
+ #: src/lib/components/shared/customer-group-selector.tsx:46
853
+ msgid "Add customer groups"
854
+ msgstr "고객 그룹 추가"
855
+
856
+ #: src/app/routes/_authenticated/_facets/components/facet-values-table.tsx:102
857
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:169
858
+ msgid "Add facet value"
859
+ msgstr "속성 값 추가"
860
+
861
+ #: src/lib/components/shared/facet-value-selector.tsx:256
862
+ msgid "Add facet values"
863
+ msgstr "속성 값 추가"
864
+
865
+ #: src/lib/components/data-table/add-filter-menu.tsx:39
866
+ msgid "Add filter"
867
+ msgstr "필터 추가"
868
+
869
+ #: src/lib/components/data-input/custom-field-list-input.tsx:289
870
+ msgid "Add item"
871
+ msgstr "항목 추가"
872
+
873
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:221
874
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:227
875
+ msgid "Add new address"
876
+ msgstr "새 주소 추가"
877
+
878
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:311
879
+ msgid "Add option"
880
+ msgstr "옵션 추가"
881
+
882
+ #: src/app/routes/_authenticated/_products/components/option-groups-editor.tsx:175
883
+ msgid "Add Option"
884
+ msgstr "옵션 추가"
885
+
886
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:97
887
+ msgid "Add option group"
888
+ msgstr "옵션 그룹 추가"
889
+
890
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:103
891
+ msgid "Add option group to product"
892
+ msgstr "상품에 옵션 그룹 추가"
893
+
894
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:149
895
+ msgid "Add option value"
896
+ msgstr "옵션 값 추가"
897
+
898
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:134
899
+ msgid "Add option value to {groupName}"
900
+ msgstr "{groupName}에 옵션 값 추가"
901
+
902
+ #. placeholder {0}: entityIds.length
903
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:159
904
+ msgid "Add or remove facet values for {0} {entityType}"
905
+ msgstr "{0}개 {entityType}의 속성 값 추가 또는 제거"
906
+
907
+ #. placeholder {0}: formatCurrency(outstandingAmount, currencyCode)
908
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:177
909
+ msgid "Add payment ({0})"
910
+ msgstr "결제 추가({0})"
911
+
912
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:127
913
+ msgid "Add payment to order"
914
+ msgstr "주문에 결제 추가"
915
+
916
+ #. placeholder {0}: formatCurrency(outstandingAmount, currencyCode)
917
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:121
918
+ msgid "Add payment to order ({0})"
919
+ msgstr "주문에 결제 추가({0})"
920
+
921
+ #: src/app/routes/_authenticated/_products/components/product-options-table.tsx:105
922
+ msgid "Add product option"
923
+ msgstr "상품 옵션 추가"
924
+
925
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:249
926
+ msgid "Add product options first"
927
+ msgstr "먼저 상품 옵션을 추가하세요"
928
+
929
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:276
930
+ msgid "Add product variant"
931
+ msgstr "상품 변형 추가"
932
+
933
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:231
934
+ msgid "Add products to create a test order"
935
+ msgstr "테스트 주문을 생성하려면 상품을 추가하세요"
936
+
937
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:203
938
+ msgid "Add row after"
939
+ msgstr "뒤에 행 추가"
940
+
941
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:197
942
+ msgid "Add row before"
943
+ msgstr "앞에 행 추가"
944
+
945
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:179
946
+ msgid "Add Stock to Location"
947
+ msgstr "위치에 재고 추가"
948
+
949
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:141
950
+ msgid "Add tags..."
951
+ msgstr "태그 추가..."
952
+
953
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:243
954
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:270
955
+ msgid "Add variant"
956
+ msgstr "변형 추가"
957
+
958
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:187
959
+ msgid "Added coupon codes"
960
+ msgstr "쿠폰 코드가 추가되었습니다"
961
+
962
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:47
963
+ msgid "Added to group"
964
+ msgstr "그룹에 추가되었습니다"
965
+
966
+ #. placeholder {0}: addedLines.length
967
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:161
968
+ msgid "Adding {0} item(s)"
969
+ msgstr "{0}개 항목 추가 중"
970
+
971
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:175
972
+ msgid "Adding..."
973
+ msgstr "추가 중..."
974
+
975
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:321
976
+ msgid "Additional payment required"
977
+ msgstr "추가 결제가 필요합니다"
978
+
979
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:51
980
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:62
981
+ msgid "Address created"
982
+ msgstr "주소가 생성되었습니다"
983
+
984
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:55
985
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:104
986
+ msgid "Address deleted"
987
+ msgstr "주소가 삭제되었습니다"
988
+
989
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:44
990
+ msgid "Address deleted successfully"
991
+ msgstr "주소가 삭제되었습니다"
992
+
993
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:53
994
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:78
995
+ msgid "Address updated"
996
+ msgstr "주소가 업데이트되었습니다"
997
+
998
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:56
999
+ msgid "Address updated successfully"
1000
+ msgstr "주소가 업데이트되었습니다"
1001
+
1002
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:200
1003
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:464
1004
+ msgid "Addresses"
1005
+ msgstr "주소"
1006
+
1007
+ #. placeholder {0}: adjustedLines.length
1008
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:130
1009
+ msgid "Adjusting {0} lines"
1010
+ msgstr "{0}개 항목 조정 중"
1011
+
1012
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:39
1013
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:16
1014
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:23
1015
+ msgid "Administrators"
1016
+ msgstr "관리자"
1017
+
1018
+ #: src/lib/components/data-table/human-readable-operator.tsx:30
1019
+ msgid "after"
1020
+ msgstr "이후"
1021
+
1022
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:67
1023
+ msgid "All resources are up and running"
1024
+ msgstr "모든 리소스가 정상 작동 중입니다"
1025
+
1026
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:222
1027
+ msgid "Allocated"
1028
+ msgstr "할당됨"
1029
+
1030
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:170
1031
+ msgid "Amount"
1032
+ msgstr "금액"
1033
+
1034
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:324
1035
+ msgid "An additional payment of {formattedDiff} will be required."
1036
+ msgstr "{formattedDiff}의 추가 결제가 필요합니다."
1037
+
1038
+ #: src/lib/components/data-input/combination-mode-input.tsx:44
1039
+ msgid "AND"
1040
+ msgstr "AND"
1041
+
1042
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:163
1043
+ #: src/lib/components/shared/customer-address-form.tsx:154
1044
+ msgid "Apartment, suite, etc."
1045
+ msgstr "아파트, 스위트 등"
1046
+
1047
+ #: src/lib/components/data-table/views-sheet.tsx:49
1048
+ msgid "Applied global view \"{viewName}\""
1049
+ msgstr "전역 뷰 \"{viewName}\"가 적용되었습니다"
1050
+
1051
+ #: src/lib/components/data-table/views-sheet.tsx:49
1052
+ msgid "Applied view \"{viewName}\""
1053
+ msgstr "뷰 \"{viewName}\"가 적용되었습니다"
1054
+
1055
+ #: src/lib/components/data-table/views-sheet.tsx:227
1056
+ msgid "Apply"
1057
+ msgstr "적용"
1058
+
1059
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:66
1060
+ msgid "Apply filter"
1061
+ msgstr "필터 적용"
1062
+
1063
+ #: src/lib/components/data-table/views-sheet.tsx:155
1064
+ msgid "Apply filters to the table and click \"Save View\" to get started."
1065
+ msgstr "테이블에 필터를 적용하고 \"뷰 저장\"을 클릭하여 시작하세요."
1066
+
1067
+ #. placeholder {0}: selection.length
1068
+ #: src/app/common/delete-bulk-action.tsx:141
1069
+ msgid "Are you sure you want to delete {0} {entityName}?"
1070
+ msgstr "{0}개 {entityName}을(를) 삭제하시겠습니까?"
1071
+
1072
+ #: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:42
1073
+ msgid "Are you sure you want to delete {selectionLength} assets?"
1074
+ msgstr "{selectionLength}개 에셋을 삭제하시겠습니까?"
1075
+
1076
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:142
1077
+ msgid "Are you sure you want to delete this address?"
1078
+ msgstr "이 주소를 삭제하시겠습니까?"
1079
+
1080
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:287
1081
+ msgid "Are you sure you want to delete this draft order?"
1082
+ msgstr "이 임시 저장 주문을 삭제하시겠습니까?"
1083
+
1084
+ #: src/lib/components/data-table/views-sheet.tsx:168
1085
+ msgid "Are you sure you want to delete this global view? This action cannot be undone and will affect all users."
1086
+ msgstr "이 전역 뷰를 삭제하시겠습니까? 이 작업은 취소할 수 없으며 모든 사용자에게 영향을 미칩니다."
1087
+
1088
+ #: src/lib/components/data-table/use-generated-columns.tsx:322
1089
+ msgid "Are you sure you want to delete this item? This action cannot be undone."
1090
+ msgstr "이 항목을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다."
1091
+
1092
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:236
1093
+ msgid "Are you sure you want to delete this variant?"
1094
+ msgstr "이 변형을 삭제하시겠습니까?"
1095
+
1096
+ #: src/lib/components/data-table/views-sheet.tsx:173
1097
+ msgid "Are you sure you want to delete this view? This action cannot be undone."
1098
+ msgstr "이 뷰를 삭제하시겠습니까? 이 작업은 취소할 수 없습니다."
1099
+
1100
+ #: src/lib/components/shared/navigation-confirmation.tsx:47
1101
+ msgid "Are you sure you want to navigate away from this page? Any unsaved changes will be lost."
1102
+ msgstr "이 페이지에서 나가시겠습니까? 저장하지 않은 변경사항은 손실됩니다."
1103
+
1104
+ #. placeholder {0}: selection.length
1105
+ #: src/lib/components/shared/remove-from-channel-bulk-action.tsx:83
1106
+ msgid "Are you sure you want to remove {0} {entityType} from the current channel?"
1107
+ msgstr "현재 채널에서 {0}개 {entityType}을(를) 제거하시겠습니까?"
1108
+
1109
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:38
1110
+ #: src/app/routes/_authenticated/_assets/assets.tsx:9
1111
+ #: src/app/routes/_authenticated/_assets/assets.tsx:16
1112
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:198
1113
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:310
1114
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:208
1115
+ msgid "Assets"
1116
+ msgstr "에셋"
1117
+
1118
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:125
1119
+ msgid "Assign"
1120
+ msgstr "할당"
1121
+
1122
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:92
1123
+ msgid "Assign {entityType} to channel"
1124
+ msgstr "채널에 {entityType} 할당"
1125
+
1126
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:325
1127
+ msgid "Assign options to existing variant"
1128
+ msgstr "기존 변형에 옵션 할당"
1129
+
1130
+ #: src/lib/components/shared/assign-to-channel-bulk-action.tsx:55
1131
+ msgid "Assign to channel"
1132
+ msgstr "채널에 할당"
1133
+
1134
+ #. placeholder {0}: currentInterval?.label
1135
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:236
1136
+ msgid "Auto refresh: {0}"
1137
+ msgstr "자동 새로고침: {0}"
1138
+
1139
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:176
1140
+ msgid "Available currencies"
1141
+ msgstr "사용 가능한 통화"
1142
+
1143
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:164
1144
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:111
1145
+ msgid "Available languages"
1146
+ msgstr "사용 가능한 언어"
1147
+
1148
+ #: src/lib/components/layout/manage-languages-dialog.tsx:340
1149
+ msgid "Available Languages"
1150
+ msgstr "사용 가능한 언어"
1151
+
1152
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:235
1153
+ msgid "Available:"
1154
+ msgstr "사용 가능:"
1155
+
1156
+ #: src/lib/components/shared/facet-value-selector.tsx:288
1157
+ msgid "Back to search"
1158
+ msgstr "검색으로 돌아가기"
1159
+
1160
+ #: src/lib/components/data-table/human-readable-operator.tsx:28
1161
+ msgid "before"
1162
+ msgstr "이전"
1163
+
1164
+ #: src/lib/components/data-table/human-readable-operator.tsx:32
1165
+ msgid "between"
1166
+ msgstr "사이"
1167
+
1168
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:267
1169
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:493
1170
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:433
1171
+ msgid "Billing address"
1172
+ msgstr "청구지 주소"
1173
+
1174
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:116
1175
+ msgid "Billing address changed"
1176
+ msgstr "청구지 주소가 변경되었습니다"
1177
+
1178
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:174
1179
+ msgid "Billing address set for order"
1180
+ msgstr "주문에 청구 주소가 설정되었습니다"
1181
+
1182
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:190
1183
+ msgid "Billing address unset for order"
1184
+ msgstr "주문에서 청구 주소가 제거되었습니다"
1185
+
1186
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:185
1187
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:185
1188
+ msgid "Calculator"
1189
+ msgstr "계산기"
1190
+
1191
+ #: src/app/common/duplicate-entity-dialog.tsx:108
1192
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:203
1193
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:414
1194
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:334
1195
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:168
1196
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:304
1197
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:350
1198
+ #: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:71
1199
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:270
1200
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:364
1201
+ #: src/lib/components/data-table/data-table-bulk-action-item.tsx:119
1202
+ #: src/lib/components/data-table/use-generated-columns.tsx:329
1203
+ #: src/lib/components/data-table/views-sheet.tsx:217
1204
+ #: src/lib/components/data-table/views-sheet.tsx:295
1205
+ #: src/lib/components/layout/manage-languages-dialog.tsx:396
1206
+ #: src/lib/components/shared/asset/asset-focal-point-editor.tsx:88
1207
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:122
1208
+ #: src/lib/components/shared/confirmation-dialog.tsx:43
1209
+ #: src/lib/components/shared/customer-address-form.tsx:325
1210
+ #: src/lib/components/shared/navigation-confirmation.tsx:55
1211
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:205
1212
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:142
1213
+ msgid "Cancel"
1214
+ msgstr "취소"
1215
+
1216
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:184
1217
+ msgid "Cancel Job"
1218
+ msgstr "작업 취소"
1219
+
1220
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:397
1221
+ msgid "Cancel modification"
1222
+ msgstr "수정 취소"
1223
+
1224
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:153
1225
+ msgid "Cancel payment"
1226
+ msgstr "결제 취소"
1227
+
1228
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:54
1229
+ msgid "Category"
1230
+ msgstr "카테고리"
1231
+
1232
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:103
1233
+ msgid "Channel"
1234
+ msgstr "채널"
1235
+
1236
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:187
1237
+ msgid "Channel defaults"
1238
+ msgstr "채널 기본값"
1239
+
1240
+ #: src/lib/components/layout/manage-languages-dialog.tsx:323
1241
+ msgid "Channel Languages"
1242
+ msgstr "채널 언어"
1243
+
1244
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:40
1245
+ #: src/app/routes/_authenticated/_channels/channels.tsx:16
1246
+ #: src/app/routes/_authenticated/_channels/channels.tsx:24
1247
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:115
1248
+ #: src/lib/components/layout/channel-switcher.tsx:121
1249
+ msgid "Channels"
1250
+ msgstr "채널"
1251
+
1252
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:184
1253
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:195
1254
+ #: src/lib/components/shared/customer-address-form.tsx:175
1255
+ msgid "City"
1256
+ msgstr "도시"
1257
+
1258
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:323
1259
+ msgid "Clear"
1260
+ msgstr "지우기"
1261
+
1262
+ #: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:180
1263
+ #: src/lib/components/data-table/data-table.tsx:277
1264
+ msgid "Clear all"
1265
+ msgstr "모두 지우기"
1266
+
1267
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:54
1268
+ msgid "Clear filter"
1269
+ msgstr "필터 지우기"
1270
+
1271
+ #: src/lib/components/data-table/data-table-faceted-filter.tsx:163
1272
+ msgid "Clear filters"
1273
+ msgstr "필터 지우기"
1274
+
1275
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx:43
1276
+ msgid "Click \"Run Test\" to test this shipping method."
1277
+ msgstr "\"테스트 실행\"을 클릭하여 이 배송 방법을 테스트하세요."
1278
+
1279
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:136
1280
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:114
1281
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:113
1282
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:140
1283
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:130
1284
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:157
1285
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:159
1286
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:191
1287
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:104
1288
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:149
1289
+ msgid "Code"
1290
+ msgstr "코드"
1291
+
1292
+ #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:36
1293
+ msgid "Collection contents for {collectionName}"
1294
+ msgstr "{collectionName}의 컬렉션 내용"
1295
+
1296
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:45
1297
+ #: src/app/routes/_authenticated/_collections/collections.tsx:29
1298
+ #: src/app/routes/_authenticated/_collections/collections.tsx:85
1299
+ msgid "Collections"
1300
+ msgstr "컬렉션"
1301
+
1302
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:283
1303
+ msgid "Collections moved successfully"
1304
+ msgstr "컬렉션이 성공적으로 이동되었습니다"
1305
+
1306
+ #: src/lib/components/data-table/data-table-view-options.tsx:93
1307
+ msgid "Column settings"
1308
+ msgstr "열 설정"
1309
+
1310
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:125
1311
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:164
1312
+ #: src/lib/components/shared/customer-address-form.tsx:116
1313
+ msgid "Company"
1314
+ msgstr "회사"
1315
+
1316
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:308
1317
+ msgid "Complete draft"
1318
+ msgstr "임시 저장 완료"
1319
+
1320
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:226
1321
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:173
1322
+ msgid "Conditions"
1323
+ msgstr "조건"
1324
+
1325
+ #: src/lib/components/layout/manage-languages-dialog.tsx:261
1326
+ msgid "Configure available languages for your store and channels"
1327
+ msgstr "스토어 및 채널에 사용 가능한 언어 구성"
1328
+
1329
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:359
1330
+ #: src/lib/components/shared/navigation-confirmation.tsx:58
1331
+ msgid "Confirm"
1332
+ msgstr "확인"
1333
+
1334
+ #: src/lib/components/data-table/data-table-bulk-action-item.tsx:113
1335
+ msgid "Confirm Action"
1336
+ msgstr "작업 확인"
1337
+
1338
+ #: src/lib/components/data-table/use-generated-columns.tsx:319
1339
+ msgid "Confirm deletion"
1340
+ msgstr "삭제 확인"
1341
+
1342
+ #: src/lib/components/shared/navigation-confirmation.tsx:44
1343
+ msgid "Confirm navigation"
1344
+ msgstr "이동 확인"
1345
+
1346
+ #: src/lib/components/data-table/human-readable-operator.tsx:56
1347
+ msgid "contains"
1348
+ msgstr "포함"
1349
+
1350
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:222
1351
+ #: src/app/routes/_authenticated/_collections/collections.tsx:143
1352
+ msgid "Contents"
1353
+ msgstr "내용"
1354
+
1355
+ #: src/lib/components/data-table/data-table-bulk-action-item.tsx:122
1356
+ #: src/lib/components/shared/confirmation-dialog.tsx:52
1357
+ msgid "Continue"
1358
+ msgstr "계속"
1359
+
1360
+ #: src/lib/components/data-table/views-sheet.tsx:253
1361
+ msgid "Copy to Personal"
1362
+ msgstr "개인용으로 복사"
1363
+
1364
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:34
1365
+ #: src/app/routes/_authenticated/_countries/countries.tsx:14
1366
+ #: src/app/routes/_authenticated/_countries/countries.tsx:23
1367
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:103
1368
+ msgid "Countries"
1369
+ msgstr "국가"
1370
+
1371
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:239
1372
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:216
1373
+ #: src/lib/components/shared/customer-address-form.tsx:230
1374
+ msgid "Country"
1375
+ msgstr "국가"
1376
+
1377
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:196
1378
+ msgid "Coupon code"
1379
+ msgstr "쿠폰 코드"
1380
+
1381
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:230
1382
+ msgid "Coupon code removed from order"
1383
+ msgstr "주문에서 쿠폰 코드가 제거되었습니다"
1384
+
1385
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:217
1386
+ msgid "Coupon code set for order"
1387
+ msgstr "주문에 쿠폰 코드가 설정되었습니다"
1388
+
1389
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:115
1390
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
1391
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
1392
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
1393
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:96
1394
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
1395
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
1396
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
1397
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
1398
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:134
1399
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:197
1400
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:111
1401
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:142
1402
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:163
1403
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:135
1404
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
1405
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
1406
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:132
1407
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
1408
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
1409
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
1410
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:85
1411
+ msgid "Create"
1412
+ msgstr "생성"
1413
+
1414
+ #. placeholder {0}: searchValue.trim()
1415
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:161
1416
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:178
1417
+ msgid "Create \"{0}\""
1418
+ msgstr "\"{0}\" 생성"
1419
+
1420
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:181
1421
+ msgid "Create {createCount} variants"
1422
+ msgstr "{createCount}개 변형 생성"
1423
+
1424
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:249
1425
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:408
1426
+ msgid "Create options"
1427
+ msgstr "옵션 생성"
1428
+
1429
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:255
1430
+ msgid "Create product options"
1431
+ msgstr "상품 옵션 생성"
1432
+
1433
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:364
1434
+ msgid "Create variant"
1435
+ msgstr "변형 생성"
1436
+
1437
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:152
1438
+ msgid "Create Variants"
1439
+ msgstr "변형 생성"
1440
+
1441
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:155
1442
+ msgid "Create variants for your product"
1443
+ msgstr "상품 변형 생성"
1444
+
1445
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:114
1446
+ #: src/lib/framework/layout-engine/page-layout.tsx:394
1447
+ msgid "Created"
1448
+ msgstr "생성일"
1449
+
1450
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:174
1451
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:221
1452
+ msgid "Created at"
1453
+ msgstr "생성 일시"
1454
+
1455
+ #: src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx:179
1456
+ msgid "Creating..."
1457
+ msgstr "생성 중..."
1458
+
1459
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:199
1460
+ msgid "Current facet values"
1461
+ msgstr "현재 속성 값"
1462
+
1463
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:55
1464
+ msgid "Current status"
1465
+ msgstr "현재 상태"
1466
+
1467
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:362
1468
+ msgid "Custom fields"
1469
+ msgstr "사용자 정의 필드"
1470
+
1471
+ #: src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx:42
1472
+ msgid "Custom Fields"
1473
+ msgstr "사용자 정의 필드"
1474
+
1475
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:150
1476
+ msgid "Custom fields changed"
1477
+ msgstr "사용자 정의 필드가 변경되었습니다"
1478
+
1479
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:242
1480
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:450
1481
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:388
1482
+ #: src/lib/components/shared/role-code-label.tsx:8
1483
+ msgid "Customer"
1484
+ msgstr "고객"
1485
+
1486
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:55
1487
+ msgid "Customer added to group"
1488
+ msgstr "고객이 그룹에 추가되었습니다"
1489
+
1490
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:45
1491
+ msgid "Customer details updated"
1492
+ msgstr "고객 정보가 업데이트되었습니다"
1493
+
1494
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:36
1495
+ msgid "Customer group members for {customerGroupName}"
1496
+ msgstr "{customerGroupName}의 고객 그룹 멤버"
1497
+
1498
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:255
1499
+ msgid "Customer groups"
1500
+ msgstr "고객 그룹"
1501
+
1502
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:37
1503
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:15
1504
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:22
1505
+ msgid "Customer Groups"
1506
+ msgstr "고객 그룹"
1507
+
1508
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:30
1509
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:249
1510
+ msgid "Customer history"
1511
+ msgstr "고객 이력"
1512
+
1513
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:84
1514
+ msgid "Customer information updated"
1515
+ msgstr "고객 정보가 업데이트되었습니다"
1516
+
1517
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:56
1518
+ msgid "Customer not found"
1519
+ msgstr "고객을 찾을 수 없습니다"
1520
+
1521
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:39
1522
+ msgid "Customer registered"
1523
+ msgstr "고객이 등록되었습니다"
1524
+
1525
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:153
1526
+ msgid "Customer set for order"
1527
+ msgstr "주문에 고객이 설정되었습니다"
1528
+
1529
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:98
1530
+ msgid "Customer updated"
1531
+ msgstr "고객이 업데이트되었습니다"
1532
+
1533
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:41
1534
+ msgid "Customer verified"
1535
+ msgstr "고객이 인증되었습니다"
1536
+
1537
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:114
1538
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:58
1539
+ #: src/app/routes/_authenticated/_customers/customers.tsx:15
1540
+ #: src/app/routes/_authenticated/_customers/customers.tsx:21
1541
+ msgid "Customers"
1542
+ msgstr "고객"
1543
+
1544
+ #: src/lib/components/layout/nav-user.tsx:131
1545
+ msgctxt "theme"
1546
+ msgid "Dark"
1547
+ msgstr "다크"
1548
+
1549
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:319
1550
+ #: src/lib/components/shared/customer-address-form.tsx:310
1551
+ msgid "Default Billing Address"
1552
+ msgstr "기본 청구지 주소"
1553
+
1554
+ #: src/lib/components/shared/channel-code-label.tsx:5
1555
+ msgid "Default channel"
1556
+ msgstr "기본 채널"
1557
+
1558
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:205
1559
+ msgid "Default currency"
1560
+ msgstr "기본 통화"
1561
+
1562
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:192
1563
+ msgid "Default language"
1564
+ msgstr "기본 언어"
1565
+
1566
+ #: src/lib/components/layout/manage-languages-dialog.tsx:368
1567
+ msgid "Default Language"
1568
+ msgstr "기본 언어"
1569
+
1570
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:299
1571
+ #: src/lib/components/shared/customer-address-form.tsx:290
1572
+ msgid "Default Shipping Address"
1573
+ msgstr "기본 배송지 주소"
1574
+
1575
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:226
1576
+ msgid "Default shipping zone"
1577
+ msgstr "기본 배송 지역"
1578
+
1579
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:218
1580
+ msgid "Default tax zone"
1581
+ msgstr "기본 세금 지역"
1582
+
1583
+ #: src/app/common/delete-bulk-action.tsx:139
1584
+ #: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:41
1585
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:312
1586
+ #: src/lib/components/data-table/use-generated-columns.tsx:312
1587
+ #: src/lib/components/data-table/use-generated-columns.tsx:343
1588
+ #: src/lib/components/data-table/views-sheet.tsx:272
1589
+ #: src/lib/components/data-table/views-sheet.tsx:298
1590
+ msgid "Delete"
1591
+ msgstr "삭제"
1592
+
1593
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:141
1594
+ msgid "Delete Address"
1595
+ msgstr "주소 삭제"
1596
+
1597
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:166
1598
+ msgid "Delete column"
1599
+ msgstr "열 삭제"
1600
+
1601
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:293
1602
+ msgid "Delete draft"
1603
+ msgstr "임시 저장 삭제"
1604
+
1605
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:286
1606
+ msgid "Delete draft order"
1607
+ msgstr "임시 저장 주문 삭제"
1608
+
1609
+ #: src/lib/components/data-table/views-sheet.tsx:163
1610
+ msgid "Delete Global View"
1611
+ msgstr "전역 뷰 삭제"
1612
+
1613
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:218
1614
+ msgid "Delete row"
1615
+ msgstr "행 삭제"
1616
+
1617
+ #: src/lib/components/data-table/views-sheet.tsx:163
1618
+ msgid "Delete View"
1619
+ msgstr "뷰 삭제"
1620
+
1621
+ #: src/app/common/delete-bulk-action.tsx:108
1622
+ msgid "Deleted {deleted} {entityName}"
1623
+ msgstr "{deleted}개 {entityName}이(가) 삭제되었습니다"
1624
+
1625
+ #: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:25
1626
+ msgid "Deleted {selectionLength} assets"
1627
+ msgstr "{selectionLength}개 에셋이 삭제되었습니다"
1628
+
1629
+ #: src/lib/components/data-table/use-generated-columns.tsx:293
1630
+ msgid "Deleted successfully"
1631
+ msgstr "삭제되었습니다"
1632
+
1633
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:167
1634
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
1635
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:164
1636
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:155
1637
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:166
1638
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:98
1639
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:157
1640
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:118
1641
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:110
1642
+ msgid "Description"
1643
+ msgstr "설명"
1644
+
1645
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:166
1646
+ msgid "Description (alt)"
1647
+ msgstr "설명(대체 텍스트)"
1648
+
1649
+ #: src/lib/components/layout/dev-mode-indicator.tsx:12
1650
+ #: src/lib/components/layout/nav-user.tsx:144
1651
+ msgid "Dev Mode"
1652
+ msgstr "개발 모드"
1653
+
1654
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:220
1655
+ msgid "Disable"
1656
+ msgstr "비활성화"
1657
+
1658
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:121
1659
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:50
1660
+ #: src/lib/components/layout/nav-user.tsx:155
1661
+ msgid "Disabled"
1662
+ msgstr "비활성화됨"
1663
+
1664
+ #: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:36
1665
+ msgid "Discount"
1666
+ msgstr "할인"
1667
+
1668
+ #: src/lib/components/layout/language-dialog.tsx:42
1669
+ msgid "Display language"
1670
+ msgstr "표시 언어"
1671
+
1672
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
1673
+ msgid "Do not track"
1674
+ msgstr "추적 안 함"
1675
+
1676
+ #: src/lib/components/data-table/human-readable-operator.tsx:58
1677
+ msgid "does not contain"
1678
+ msgstr "포함하지 않음"
1679
+
1680
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:280
1681
+ #: src/app/routes/_authenticated/_orders/orders.tsx:113
1682
+ msgid "Draft order"
1683
+ msgstr "임시 저장 주문"
1684
+
1685
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:241
1686
+ msgid "Draft order completed"
1687
+ msgstr "임시 저장 주문이 완료되었습니다"
1688
+
1689
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:258
1690
+ msgid "Draft order deleted"
1691
+ msgstr "임시 저장 주문이 삭제되었습니다"
1692
+
1693
+ #: src/lib/components/data-input/custom-field-list-input.tsx:72
1694
+ msgid "Drag to reorder"
1695
+ msgstr "드래그하여 순서 변경"
1696
+
1697
+ #: src/app/common/duplicate-bulk-action.tsx:131
1698
+ #: src/app/common/duplicate-entity-dialog.tsx:111
1699
+ #: src/lib/components/data-table/views-sheet.tsx:246
1700
+ msgid "Duplicate"
1701
+ msgstr "복제"
1702
+
1703
+ #. placeholder {0}: entityName.toLowerCase()
1704
+ #: src/app/common/duplicate-entity-dialog.tsx:83
1705
+ msgid "Duplicate {0}s"
1706
+ msgstr "{0} 복제"
1707
+
1708
+ #. placeholder {0}: progress.completed
1709
+ #. placeholder {1}: progress.total
1710
+ #: src/app/common/duplicate-bulk-action.tsx:127
1711
+ msgid "Duplicating... ({0}/{1})"
1712
+ msgstr "복제 중...({0}/{1})"
1713
+
1714
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:269
1715
+ msgid "e.g. Size"
1716
+ msgstr "예: 사이즈"
1717
+
1718
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:290
1719
+ msgid "e.g. Small"
1720
+ msgstr "예: 스몰"
1721
+
1722
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:144
1723
+ msgid "e.g., Red, Large, Cotton"
1724
+ msgstr "예: 레드, 라지, 코튼"
1725
+
1726
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:474
1727
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:500
1728
+ #: src/lib/components/shared/asset/asset-gallery.tsx:457
1729
+ #: src/lib/components/shared/history-timeline/history-note-entry.tsx:48
1730
+ msgid "Edit"
1731
+ msgstr "편집"
1732
+
1733
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:129
1734
+ msgid "Edit Address"
1735
+ msgstr "주소 편집"
1736
+
1737
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:95
1738
+ msgid "Edit asset"
1739
+ msgstr "에셋 편집"
1740
+
1741
+ #: src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx:95
1742
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:156
1743
+ #: src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx:89
1744
+ msgid "Edit facet values"
1745
+ msgstr "속성 값 편집"
1746
+
1747
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:106
1748
+ msgid "Edit image"
1749
+ msgstr "이미지 편집"
1750
+
1751
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:84
1752
+ msgid "Edit link"
1753
+ msgstr "링크 편집"
1754
+
1755
+ #: src/app/routes/_authenticated/_zones/zones.tsx:39
1756
+ msgid "Edit members"
1757
+ msgstr "멤버 편집"
1758
+
1759
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:44
1760
+ msgid "Edit Note"
1761
+ msgstr "메모 편집"
1762
+
1763
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:195
1764
+ msgid "Edit or delete existing tags"
1765
+ msgstr "기존 태그 편집 또는 삭제"
1766
+
1767
+ #: src/lib/components/data-input/slug-input.tsx:279
1768
+ #: src/lib/components/data-input/slug-input.tsx:281
1769
+ msgid "Edit slug manually"
1770
+ msgstr "슬러그 수동 편집"
1771
+
1772
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:132
1773
+ msgid "Edit the address details below."
1774
+ msgstr "아래 주소 정보를 편집하세요."
1775
+
1776
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:185
1777
+ msgid "Email address"
1778
+ msgstr "이메일 주소"
1779
+
1780
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:138
1781
+ #: src/app/routes/_authenticated/_profile/profile.tsx:104
1782
+ msgid "Email Address or identifier"
1783
+ msgstr "이메일 주소 또는 식별자"
1784
+
1785
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:63
1786
+ msgid "Email update requested"
1787
+ msgstr "이메일 업데이트가 요청되었습니다"
1788
+
1789
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:65
1790
+ msgid "Email update verified"
1791
+ msgstr "이메일 업데이트가 확인되었습니다"
1792
+
1793
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:220
1794
+ msgid "Enable"
1795
+ msgstr "활성화"
1796
+
1797
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:96
1798
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:140
1799
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:42
1800
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:144
1801
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:121
1802
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:145
1803
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:113
1804
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:117
1805
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:105
1806
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:47
1807
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:49
1808
+ #: src/lib/components/layout/nav-user.tsx:152
1809
+ msgid "Enabled"
1810
+ msgstr "활성화됨"
1811
+
1812
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:185
1813
+ msgid "Ends at"
1814
+ msgstr "종료 일시"
1815
+
1816
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:306
1817
+ msgid "Enter refund note"
1818
+ msgstr "환불 메모 입력"
1819
+
1820
+ #: src/lib/components/data-input/slug-input.tsx:239
1821
+ msgid "Enter slug manually"
1822
+ msgstr "슬러그 수동 입력"
1823
+
1824
+ #: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:52
1825
+ msgid "Enter the transaction ID for this refund settlement"
1826
+ msgstr "이 환불 정산의 거래 ID를 입력하세요"
1827
+
1828
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:163
1829
+ msgid "Enter transaction ID"
1830
+ msgstr "거래 ID 입력"
1831
+
1832
+ #: src/lib/framework/layout-engine/page-layout.tsx:367
1833
+ msgid "Entity Information"
1834
+ msgstr "엔티티 정보"
1835
+
1836
+ #: src/lib/components/shared/error-page.tsx:18
1837
+ msgid "Error"
1838
+ msgstr "오류"
1839
+
1840
+ #. placeholder {0}: error.message
1841
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:46
1842
+ msgid "Error loading customer history: {0}"
1843
+ msgstr "고객 이력 로딩 오류: {0}"
1844
+
1845
+ #. placeholder {0}: error.message
1846
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:46
1847
+ msgid "Error loading order history: {0}"
1848
+ msgstr "주문 이력 로딩 오류: {0}"
1849
+
1850
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:183
1851
+ msgid "Error message"
1852
+ msgstr "오류 메시지"
1853
+
1854
+ #: src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx:125
1855
+ msgid "Error transitioning to state"
1856
+ msgstr "상태 전환 오류"
1857
+
1858
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:72
1859
+ msgid "Every 10 seconds"
1860
+ msgstr "10초마다"
1861
+
1862
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:73
1863
+ msgid "Every 30 seconds"
1864
+ msgstr "30초마다"
1865
+
1866
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:71
1867
+ msgid "Every 5 seconds"
1868
+ msgstr "5초마다"
1869
+
1870
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:74
1871
+ msgid "Every 60 seconds"
1872
+ msgstr "60초마다"
1873
+
1874
+ #: src/app/routes/_authenticated/_shipping-methods/components/price-display.tsx:17
1875
+ msgid "ex. tax:"
1876
+ msgstr "세금 제외:"
1877
+
1878
+ #: src/lib/components/layout/nav-user.tsx:98
1879
+ msgid "Explore Enterprise Edition"
1880
+ msgstr "Enterprise Edition 살펴보기"
1881
+
1882
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:122
1883
+ msgid "Facet"
1884
+ msgstr "속성"
1885
+
1886
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:145
1887
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:301
1888
+ msgid "Facet values"
1889
+ msgstr "속성 값"
1890
+
1891
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:199
1892
+ msgid "Facet Values"
1893
+ msgstr "속성 값"
1894
+
1895
+ #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:32
1896
+ msgid "Facet values for {facetName}"
1897
+ msgstr "{facetName}의 속성 값"
1898
+
1899
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:39
1900
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:37
1901
+ #: src/app/routes/_authenticated/_facets/facets.tsx:24
1902
+ #: src/app/routes/_authenticated/_facets/facets.tsx:64
1903
+ #: src/lib/components/shared/facet-value-selector.tsx:321
1904
+ msgid "Facets"
1905
+ msgstr "속성"
1906
+
1907
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx:61
1908
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:129
1909
+ msgid "Failed to add customer to group"
1910
+ msgstr "고객을 그룹에 추가하는 데 실패했습니다"
1911
+
1912
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:103
1913
+ msgid "Failed to add option value"
1914
+ msgstr "옵션 값 추가 실패"
1915
+
1916
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:52
1917
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:58
1918
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:86
1919
+ msgid "Failed to add payment"
1920
+ msgstr "결제 추가 실패"
1921
+
1922
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:78
1923
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:82
1924
+ msgid "Failed to cancel payment"
1925
+ msgstr "결제 취소 실패"
1926
+
1927
+ #: src/lib/components/data-table/views-sheet.tsx:110
1928
+ msgid "Failed to convert global view to personal view"
1929
+ msgstr "전역 뷰를 개인 뷰로 변환하는 데 실패했습니다"
1930
+
1931
+ #: src/lib/components/data-table/views-sheet.tsx:120
1932
+ msgid "Failed to convert view to global"
1933
+ msgstr "뷰를 전역으로 변환하는 데 실패했습니다"
1934
+
1935
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:119
1936
+ msgid "Failed to create address"
1937
+ msgstr "주소 생성 실패"
1938
+
1939
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:92
1940
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:98
1941
+ msgid "Failed to create channel"
1942
+ msgstr "채널 생성 실패"
1943
+
1944
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:102
1945
+ msgid "Failed to create collection"
1946
+ msgstr "컬렉션 생성 실패"
1947
+
1948
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
1949
+ msgid "Failed to create country"
1950
+ msgstr "국가 생성 실패"
1951
+
1952
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:100
1953
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:106
1954
+ msgid "Failed to create customer"
1955
+ msgstr "고객 생성 실패"
1956
+
1957
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:76
1958
+ msgid "Failed to create customer group"
1959
+ msgstr "고객 그룹 생성 실패"
1960
+
1961
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:86
1962
+ msgid "Failed to create facet"
1963
+ msgstr "속성 생성 실패"
1964
+
1965
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:94
1966
+ msgid "Failed to create facet value"
1967
+ msgstr "속성 값 생성 실패"
1968
+
1969
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:86
1970
+ msgid "Failed to create option group"
1971
+ msgstr "옵션 그룹 생성 실패"
1972
+
1973
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:110
1974
+ msgid "Failed to create payment method"
1975
+ msgstr "결제 방법 생성 실패"
1976
+
1977
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:95
1978
+ msgid "Failed to create product"
1979
+ msgstr "상품 생성 실패"
1980
+
1981
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:124
1982
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:209
1983
+ msgid "Failed to create product options"
1984
+ msgstr "상품 옵션 생성 실패"
1985
+
1986
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:112
1987
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:174
1988
+ msgid "Failed to create product variant"
1989
+ msgstr "상품 변형 생성 실패"
1990
+
1991
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:111
1992
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:119
1993
+ msgid "Failed to create promotion"
1994
+ msgstr "프로모션 생성 실패"
1995
+
1996
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:71
1997
+ msgid "Failed to create role"
1998
+ msgstr "역할 생성 실패"
1999
+
2000
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:65
2001
+ msgid "Failed to create seller"
2002
+ msgstr "판매자 생성 실패"
2003
+
2004
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
2005
+ msgid "Failed to create stock location"
2006
+ msgstr "재고 위치 생성 실패"
2007
+
2008
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:78
2009
+ msgid "Failed to create tax category"
2010
+ msgstr "세금 카테고리 생성 실패"
2011
+
2012
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:79
2013
+ msgid "Failed to create tax rate"
2014
+ msgstr "세율 생성 실패"
2015
+
2016
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:69
2017
+ msgid "Failed to create zone"
2018
+ msgstr "지역 생성 실패"
2019
+
2020
+ #: src/lib/components/data-table/use-generated-columns.tsx:295
2021
+ #: src/lib/components/data-table/use-generated-columns.tsx:301
2022
+ msgid "Failed to delete"
2023
+ msgstr "삭제 실패"
2024
+
2025
+ #: src/app/common/delete-bulk-action.tsx:115
2026
+ msgid "Failed to delete {failed} {entityName}"
2027
+ msgstr "{failed}개 {entityName} 삭제 실패"
2028
+
2029
+ #: src/app/common/delete-bulk-action.tsx:114
2030
+ msgid "Failed to delete {failed} {entityName}: {allErrors}"
2031
+ msgstr "{failed}개 {entityName} 삭제 실패: {allErrors}"
2032
+
2033
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:48
2034
+ msgid "Failed to delete address"
2035
+ msgstr "주소 삭제 실패"
2036
+
2037
+ #: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:28
2038
+ msgid "Failed to delete assets: {message}"
2039
+ msgstr "에셋 삭제 실패: {message}"
2040
+
2041
+ #: src/lib/components/data-table/views-sheet.tsx:87
2042
+ msgid "Failed to delete global view"
2043
+ msgstr "전역 뷰 삭제 실패"
2044
+
2045
+ #: src/lib/components/data-table/views-sheet.tsx:87
2046
+ msgid "Failed to delete view"
2047
+ msgstr "뷰 삭제 실패"
2048
+
2049
+ #: src/lib/components/data-table/views-sheet.tsx:100
2050
+ msgid "Failed to duplicate global view"
2051
+ msgstr "전역 뷰 복제 실패"
2052
+
2053
+ #: src/lib/components/data-table/views-sheet.tsx:100
2054
+ msgid "Failed to duplicate view"
2055
+ msgstr "뷰 복제 실패"
2056
+
2057
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:79
2058
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:85
2059
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:187
2060
+ msgid "Failed to fulfill order"
2061
+ msgstr "주문 이행 실패"
2062
+
2063
+ #: src/lib/components/layout/manage-languages-dialog.tsx:290
2064
+ msgid "Failed to load global settings"
2065
+ msgstr "전역 설정 로딩 실패"
2066
+
2067
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:136
2068
+ msgid "Failed to modify order"
2069
+ msgstr "주문 수정 실패"
2070
+
2071
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:290
2072
+ msgid "Failed to move collections"
2073
+ msgstr "컬렉션 이동 실패"
2074
+
2075
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:139
2076
+ msgid "Failed to remove customer from group"
2077
+ msgstr "그룹에서 고객 제거 실패"
2078
+
2079
+ #: src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx:73
2080
+ msgid "Failed to remove facet from channel: {message}"
2081
+ msgstr "채널에서 속성 제거 실패: {message}"
2082
+
2083
+ #: src/lib/components/data-table/views-sheet.tsx:68
2084
+ msgid "Failed to rename global view"
2085
+ msgstr "전역 뷰 이름 변경 실패"
2086
+
2087
+ #: src/lib/components/data-table/views-sheet.tsx:68
2088
+ msgid "Failed to rename view"
2089
+ msgstr "뷰 이름 변경 실패"
2090
+
2091
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:48
2092
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:52
2093
+ msgid "Failed to settle payment"
2094
+ msgstr "결제 정산 실패"
2095
+
2096
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:94
2097
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:98
2098
+ msgid "Failed to settle refund"
2099
+ msgstr "환불 정산 실패"
2100
+
2101
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:112
2102
+ msgid "Failed to transition order to state"
2103
+ msgstr "주문 상태 전환 실패"
2104
+
2105
+ #: src/app/routes/_authenticated/_customers/components/customer-address-card.tsx:60
2106
+ msgid "Failed to update address"
2107
+ msgstr "주소 업데이트 실패"
2108
+
2109
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:74
2110
+ msgid "Failed to update asset"
2111
+ msgstr "에셋 업데이트 실패"
2112
+
2113
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:92
2114
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:98
2115
+ msgid "Failed to update channel"
2116
+ msgstr "채널 업데이트 실패"
2117
+
2118
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:102
2119
+ msgid "Failed to update collection"
2120
+ msgstr "컬렉션 업데이트 실패"
2121
+
2122
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:71
2123
+ msgid "Failed to update country"
2124
+ msgstr "국가 업데이트 실패"
2125
+
2126
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:100
2127
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:106
2128
+ msgid "Failed to update customer"
2129
+ msgstr "고객 업데이트 실패"
2130
+
2131
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:76
2132
+ msgid "Failed to update customer group"
2133
+ msgstr "고객 그룹 업데이트 실패"
2134
+
2135
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:86
2136
+ msgid "Failed to update facet"
2137
+ msgstr "속성 업데이트 실패"
2138
+
2139
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:94
2140
+ msgid "Failed to update facet value"
2141
+ msgstr "속성 값 업데이트 실패"
2142
+
2143
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:42
2144
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:46
2145
+ msgid "Failed to update fulfillment state"
2146
+ msgstr "이행 상태 업데이트 실패"
2147
+
2148
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:76
2149
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:82
2150
+ msgid "Failed to update global settings"
2151
+ msgstr "전역 설정 업데이트 실패"
2152
+
2153
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:89
2154
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:91
2155
+ msgid "Failed to update order"
2156
+ msgstr "주문 업데이트 실패"
2157
+
2158
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:110
2159
+ msgid "Failed to update payment method"
2160
+ msgstr "결제 방법 업데이트 실패"
2161
+
2162
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:63
2163
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:67
2164
+ msgid "Failed to update payment state"
2165
+ msgstr "결제 상태 업데이트 실패"
2166
+
2167
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:95
2168
+ msgid "Failed to update product"
2169
+ msgstr "상품 업데이트 실패"
2170
+
2171
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:112
2172
+ msgid "Failed to update product variant"
2173
+ msgstr "상품 변형 업데이트 실패"
2174
+
2175
+ #: src/app/routes/_authenticated/_profile/profile.tsx:65
2176
+ msgid "Failed to update profile"
2177
+ msgstr "프로필 업데이트 실패"
2178
+
2179
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:111
2180
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:119
2181
+ msgid "Failed to update promotion"
2182
+ msgstr "프로모션 업데이트 실패"
2183
+
2184
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:71
2185
+ msgid "Failed to update role"
2186
+ msgstr "역할 업데이트 실패"
2187
+
2188
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:65
2189
+ msgid "Failed to update seller"
2190
+ msgstr "판매자 업데이트 실패"
2191
+
2192
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
2193
+ msgid "Failed to update stock location"
2194
+ msgstr "재고 위치 업데이트 실패"
2195
+
2196
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:78
2197
+ msgid "Failed to update tax category"
2198
+ msgstr "세금 카테고리 업데이트 실패"
2199
+
2200
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:79
2201
+ msgid "Failed to update tax rate"
2202
+ msgstr "세율 업데이트 실패"
2203
+
2204
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:69
2205
+ msgid "Failed to update zone"
2206
+ msgstr "지역 업데이트 실패"
2207
+
2208
+ #: src/lib/components/data-table/filters/data-table-boolean-filter.tsx:53
2209
+ msgid "False"
2210
+ msgstr "거짓"
2211
+
2212
+ #: src/lib/components/data-table/data-table-filter-dialog.tsx:34
2213
+ msgid "Filter by {columnId}"
2214
+ msgstr "{columnId}로 필터"
2215
+
2216
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:366
2217
+ msgid "Filter by collection name"
2218
+ msgstr "컬렉션 이름으로 필터"
2219
+
2220
+ #: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:104
2221
+ msgid "Filter by tags"
2222
+ msgstr "태그로 필터"
2223
+
2224
+ #: src/lib/components/data-table/data-table.tsx:217
2225
+ msgid "Filter..."
2226
+ msgstr "필터..."
2227
+
2228
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:172
2229
+ msgid "Filters"
2230
+ msgstr "필터"
2231
+
2232
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:126
2233
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:173
2234
+ #: src/app/routes/_authenticated/_profile/profile.tsx:92
2235
+ msgid "First name"
2236
+ msgstr "이름"
2237
+
2238
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:152
2239
+ msgid "Focal Point"
2240
+ msgstr "초점"
2241
+
2242
+ #. placeholder {0}: testResult.length
2243
+ #. placeholder {1}: testResult.length !== 1 ? 's' : ''
2244
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-result.tsx:62
2245
+ msgid "Found {0} eligible shipping method{1}"
2246
+ msgstr "{0}개의 적합한 배송 방법을 찾았습니다"
2247
+
2248
+ #. placeholder {0}: entry.data.from
2249
+ #. placeholder {1}: entry.data.to
2250
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:11
2251
+ msgid "From {0} to {1}"
2252
+ msgstr "{0}에서 {1}까지"
2253
+
2254
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:219
2255
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:225
2256
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:310
2257
+ msgid "Fulfill order"
2258
+ msgstr "주문 이행"
2259
+
2260
+ #. placeholder {0}: fulfillment.lines.reduce((acc, line) => acc + line.quantity, 0)
2261
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:121
2262
+ msgid "Fulfilled items ({0})"
2263
+ msgstr "이행된 항목({0})"
2264
+
2265
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:308
2266
+ msgid "Fulfilling..."
2267
+ msgstr "이행 중..."
2268
+
2269
+ #. placeholder {0}: entry.data.fulfillmentId
2270
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:63
2271
+ msgid "Fulfillment #{0} created"
2272
+ msgstr "이행 #{0}이(가) 생성되었습니다"
2273
+
2274
+ #. placeholder {0}: entry.data.fulfillmentId
2275
+ #. placeholder {1}: entry.data.from
2276
+ #. placeholder {2}: entry.data.to
2277
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:50
2278
+ msgid "Fulfillment #{0} from {1} to {2}"
2279
+ msgstr "{1}에서 {2}로의 이행 #{0}"
2280
+
2281
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:94
2282
+ msgid "Fulfillment created"
2283
+ msgstr "이행이 생성되었습니다"
2284
+
2285
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:277
2286
+ msgid "Fulfillment details"
2287
+ msgstr "이행 세부정보"
2288
+
2289
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:289
2290
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:165
2291
+ msgid "Fulfillment handler"
2292
+ msgstr "이행 처리기"
2293
+
2294
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:105
2295
+ msgid "Fulfillment ID"
2296
+ msgstr "이행 ID"
2297
+
2298
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:39
2299
+ msgid "Fulfillment state updated successfully"
2300
+ msgstr "이행 상태가 업데이트되었습니다"
2301
+
2302
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:92
2303
+ msgid "Fulfillment transitioned"
2304
+ msgstr "이행이 전환되었습니다"
2305
+
2306
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:108
2307
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:158
2308
+ #: src/lib/components/shared/customer-address-form.tsx:99
2309
+ msgid "Full Name"
2310
+ msgstr "전체 이름"
2311
+
2312
+ #: src/lib/components/shared/custom-fields-form.tsx:100
2313
+ msgid "General"
2314
+ msgstr "일반"
2315
+
2316
+ #: src/lib/components/data-input/slug-input.tsx:279
2317
+ #: src/lib/components/data-input/slug-input.tsx:281
2318
+ msgid "Generate slug automatically"
2319
+ msgstr "슬러그 자동 생성"
2320
+
2321
+ #: src/lib/components/layout/manage-languages-dialog.tsx:270
2322
+ msgid "Global Languages"
2323
+ msgstr "전역 언어"
2324
+
2325
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:129
2326
+ msgid "Global out of stock threshold"
2327
+ msgstr "전역 품절 임계값"
2328
+
2329
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:41
2330
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:91
2331
+ msgid "Global Settings"
2332
+ msgstr "전역 설정"
2333
+
2334
+ #: src/lib/components/data-table/views-sheet.tsx:108
2335
+ msgid "Global view converted to personal view successfully"
2336
+ msgstr "전역 뷰가 개인 뷰로 변환되었습니다"
2337
+
2338
+ #: src/lib/components/data-table/views-sheet.tsx:83
2339
+ msgid "Global view deleted successfully"
2340
+ msgstr "전역 뷰가 삭제되었습니다"
2341
+
2342
+ #: src/lib/components/data-table/views-sheet.tsx:96
2343
+ msgid "Global view duplicated successfully"
2344
+ msgstr "전역 뷰가 복제되었습니다"
2345
+
2346
+ #: src/lib/components/data-table/views-sheet.tsx:63
2347
+ msgid "Global view renamed successfully"
2348
+ msgstr "전역 뷰 이름이 변경되었습니다"
2349
+
2350
+ #: src/lib/components/data-table/human-readable-operator.tsx:40
2351
+ msgid "greater than"
2352
+ msgstr "보다 큼"
2353
+
2354
+ #: src/lib/components/data-table/human-readable-operator.tsx:43
2355
+ msgid "greater than or equal"
2356
+ msgstr "이상"
2357
+
2358
+ #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:82
2359
+ msgid "Gross price: <0/>"
2360
+ msgstr "총 가격: <0/>"
2361
+
2362
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:76
2363
+ msgid "Heading 1"
2364
+ msgstr "제목 1"
2365
+
2366
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:77
2367
+ msgid "Heading 2"
2368
+ msgstr "제목 2"
2369
+
2370
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:78
2371
+ msgid "Heading 3"
2372
+ msgstr "제목 3"
2373
+
2374
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:79
2375
+ msgid "Heading 4"
2376
+ msgstr "제목 4"
2377
+
2378
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:80
2379
+ msgid "Heading 5"
2380
+ msgstr "제목 5"
2381
+
2382
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:81
2383
+ msgid "Heading 6"
2384
+ msgstr "제목 6"
2385
+
2386
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:43
2387
+ msgid "Health checks"
2388
+ msgstr "헬스체크"
2389
+
2390
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:13
2391
+ msgid "Healthchecks"
2392
+ msgstr "헬스체크"
2393
+
2394
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:191
2395
+ msgid "Height"
2396
+ msgstr "높이"
2397
+
2398
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:107
2399
+ msgid "ID"
2400
+ msgstr "ID"
2401
+
2402
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:65
2403
+ msgid "Identifier"
2404
+ msgstr "식별자"
2405
+
2406
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:178
2407
+ msgid "If enabled, the filters will be inherited from the parent collection and combined with the filters set on this collection."
2408
+ msgstr "활성화하면 필터가 상위 컬렉션에서 상속되어 이 컬렉션에 설정된 필터와 결합됩니다."
2409
+
2410
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:33
2411
+ msgid "Image"
2412
+ msgstr "이미지"
2413
+
2414
+ #: src/lib/components/data-table/human-readable-operator.tsx:36
2415
+ msgid "in"
2416
+ msgstr "포함"
2417
+
2418
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:176
2419
+ msgid "Inherit filters"
2420
+ msgstr "필터 상속"
2421
+
2422
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:250
2423
+ msgid "Inherit from global settings"
2424
+ msgstr "전역 설정에서 상속"
2425
+
2426
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:106
2427
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:208
2428
+ msgid "Insert image"
2429
+ msgstr "이미지 삽입"
2430
+
2431
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:84
2432
+ msgid "Insert link"
2433
+ msgstr "링크 삽입"
2434
+
2435
+ #: src/lib/components/data-table/human-readable-operator.tsx:30
2436
+ msgid "is after"
2437
+ msgstr "이후"
2438
+
2439
+ #: src/lib/components/data-table/human-readable-operator.tsx:28
2440
+ msgid "is before"
2441
+ msgstr "이전"
2442
+
2443
+ #: src/lib/components/data-table/human-readable-operator.tsx:32
2444
+ msgid "is between"
2445
+ msgstr "사이"
2446
+
2447
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:115
2448
+ msgid "Is default tax category"
2449
+ msgstr "기본 세금 카테고리"
2450
+
2451
+ #: src/lib/components/data-table/human-readable-operator.tsx:24
2452
+ msgid "is equal to"
2453
+ msgstr "같음"
2454
+
2455
+ #: src/lib/components/data-table/human-readable-operator.tsx:40
2456
+ msgid "is greater than"
2457
+ msgstr "보다 큼"
2458
+
2459
+ #: src/lib/components/data-table/human-readable-operator.tsx:45
2460
+ msgid "is greater than or equal to"
2461
+ msgstr "이상"
2462
+
2463
+ #: src/lib/components/data-table/human-readable-operator.tsx:36
2464
+ msgid "is in"
2465
+ msgstr "포함"
2466
+
2467
+ #: src/lib/components/data-table/human-readable-operator.tsx:48
2468
+ msgid "is less than"
2469
+ msgstr "보다 작음"
2470
+
2471
+ #: src/lib/components/data-table/human-readable-operator.tsx:53
2472
+ msgid "is less than or equal to"
2473
+ msgstr "이하"
2474
+
2475
+ #: src/lib/components/data-table/human-readable-operator.tsx:26
2476
+ msgid "is not equal to"
2477
+ msgstr "같지 않음"
2478
+
2479
+ #: src/lib/components/data-table/human-readable-operator.tsx:38
2480
+ msgid "is not in"
2481
+ msgstr "포함하지 않음"
2482
+
2483
+ #: src/lib/components/data-table/human-readable-operator.tsx:34
2484
+ msgid "is null"
2485
+ msgstr "NULL"
2486
+
2487
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:105
2488
+ msgid "Item added to order"
2489
+ msgstr "주문에 항목이 추가되었습니다"
2490
+
2491
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:33
2492
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:97
2493
+ msgid "Job Queue"
2494
+ msgstr "작업 큐"
2495
+
2496
+ #: src/lib/components/layout/nav-user.tsx:112
2497
+ msgid "Language"
2498
+ msgstr "언어"
2499
+
2500
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:133
2501
+ msgid "Last Executed"
2502
+ msgstr "마지막 실행"
2503
+
2504
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:132
2505
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:179
2506
+ #: src/app/routes/_authenticated/_profile/profile.tsx:98
2507
+ msgid "Last name"
2508
+ msgstr "성"
2509
+
2510
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:169
2511
+ msgid "Last Result"
2512
+ msgstr "마지막 결과"
2513
+
2514
+ #. placeholder {0}: formatRelative(dataUpdatedAt, new Date())
2515
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:58
2516
+ msgid "Last updated {0}"
2517
+ msgstr "마지막 업데이트 {0}"
2518
+
2519
+ #: src/lib/components/data-table/human-readable-operator.tsx:48
2520
+ msgid "less than"
2521
+ msgstr "보다 작음"
2522
+
2523
+ #: src/lib/components/data-table/human-readable-operator.tsx:51
2524
+ msgid "less than or equal"
2525
+ msgstr "이하"
2526
+
2527
+ #: src/lib/components/layout/nav-user.tsx:127
2528
+ msgctxt "theme"
2529
+ msgid "Light"
2530
+ msgstr "라이트"
2531
+
2532
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:90
2533
+ msgid "Link href"
2534
+ msgstr "링크 URL"
2535
+
2536
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:115
2537
+ msgid "Link target"
2538
+ msgstr "링크 대상"
2539
+
2540
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:103
2541
+ msgid "Link title"
2542
+ msgstr "링크 제목"
2543
+
2544
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx:73
2545
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:75
2546
+ msgid "Load more"
2547
+ msgstr "더 보기"
2548
+
2549
+ #: src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx:63
2550
+ msgid "Loading addresses..."
2551
+ msgstr "주소 로딩 중..."
2552
+
2553
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:376
2554
+ msgid "Loading collections..."
2555
+ msgstr "컬렉션 로딩 중..."
2556
+
2557
+ #: src/lib/components/layout/manage-languages-dialog.tsx:284
2558
+ msgid "Loading global settings..."
2559
+ msgstr "전역 설정 로딩 중..."
2560
+
2561
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:158
2562
+ msgid "Loading preview…"
2563
+ msgstr "미리보기 로딩 중..."
2564
+
2565
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:91
2566
+ msgid "Loading tags..."
2567
+ msgstr "태그 로딩 중..."
2568
+
2569
+ #: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:124
2570
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:82
2571
+ #: src/lib/components/data-input/relation-selector.tsx:427
2572
+ #: src/lib/components/shared/country-selector.tsx:88
2573
+ #: src/lib/components/shared/customer-selector.tsx:90
2574
+ #: src/lib/components/shared/facet-value-selector.tsx:275
2575
+ #: src/lib/components/shared/seller-selector.tsx:92
2576
+ msgid "Loading..."
2577
+ msgstr "로딩 중..."
2578
+
2579
+ #: src/lib/components/layout/language-dialog.tsx:60
2580
+ msgid "Locale"
2581
+ msgstr "로케일"
2582
+
2583
+ #: src/lib/components/layout/nav-user.tsx:165
2584
+ msgid "Log out"
2585
+ msgstr "로그아웃"
2586
+
2587
+ #: src/lib/components/data-table/views-sheet.tsx:263
2588
+ msgid "Make Global"
2589
+ msgstr "전역으로 만들기"
2590
+
2591
+ #: src/lib/components/data-table/views-sheet.tsx:130
2592
+ msgid "Manage global saved views that are visible to all users"
2593
+ msgstr "모든 사용자에게 표시되는 전역 저장 뷰 관리"
2594
+
2595
+ #: src/lib/components/data-table/manage-global-views-button.tsx:20
2596
+ msgid "Manage global views"
2597
+ msgstr "전역 뷰 관리"
2598
+
2599
+ #: src/lib/components/data-table/views-sheet.tsx:125
2600
+ msgid "Manage Global Views"
2601
+ msgstr "전역 뷰 관리"
2602
+
2603
+ #: src/lib/components/layout/channel-switcher.tsx:184
2604
+ #: src/lib/components/layout/manage-languages-dialog.tsx:258
2605
+ msgid "Manage Languages"
2606
+ msgstr "언어 관리"
2607
+
2608
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:215
2609
+ msgid "Manage tags"
2610
+ msgstr "태그 관리"
2611
+
2612
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:192
2613
+ msgid "Manage Tags"
2614
+ msgstr "태그 관리"
2615
+
2616
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:252
2617
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:173
2618
+ msgid "Manage variants"
2619
+ msgstr "변형 관리"
2620
+
2621
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:56
2622
+ msgid "Manage Variants"
2623
+ msgstr "변형 관리"
2624
+
2625
+ #: src/lib/components/data-table/views-sheet.tsx:132
2626
+ msgid "Manage your personal saved views for this table"
2627
+ msgstr "이 테이블의 개인 저장 뷰 관리"
2628
+
2629
+ #: src/lib/components/data-table/human-readable-operator.tsx:60
2630
+ msgid "matches regex"
2631
+ msgstr "정규식 일치"
2632
+
2633
+ #: src/lib/components/layout/language-dialog.tsx:96
2634
+ msgid "Medium date"
2635
+ msgstr "중간 날짜"
2636
+
2637
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:245
2638
+ msgid "Metadata"
2639
+ msgstr "메타데이터"
2640
+
2641
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:106
2642
+ msgid "Method"
2643
+ msgstr "메서드"
2644
+
2645
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:166
2646
+ #: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:75
2647
+ msgid "Modify"
2648
+ msgstr "수정"
2649
+
2650
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:392
2651
+ msgid "Modify order"
2652
+ msgstr "주문 수정"
2653
+
2654
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:83
2655
+ msgid "Monitored Resources"
2656
+ msgstr "모니터링 중인 리소스"
2657
+
2658
+ #: src/lib/components/data-table/global-views-bar.tsx:76
2659
+ msgid "More views"
2660
+ msgstr "더 많은 뷰"
2661
+
2662
+ #: src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx:112
2663
+ msgid "Move"
2664
+ msgstr "이동"
2665
+
2666
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:336
2667
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:423
2668
+ msgid "Move Collections"
2669
+ msgstr "컬렉션 이동"
2670
+
2671
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:107
2672
+ msgid "Move to the top level"
2673
+ msgstr "최상위 레벨로 이동"
2674
+
2675
+ #. placeholder {0}: collectionsToMove.length
2676
+ #. placeholder {1}: collectionsToMove.length === 1 ? '' : 's'
2677
+ #. placeholder {2}: selectedCollectionId === topLevelCollectionId ? 'top level' : collectionNameCache.current.get(selectedCollectionId) || 'selected collection'
2678
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:75
2679
+ msgid "Moving {0} collection{1} into {2}"
2680
+ msgstr "{0}개 컬렉션을 {2}로 이동 중"
2681
+
2682
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:421
2683
+ msgid "Moving..."
2684
+ msgstr "이동 중..."
2685
+
2686
+ #: src/lib/components/data-table/my-views-button.tsx:35
2687
+ msgid "My saved views"
2688
+ msgstr "저장한 뷰"
2689
+
2690
+ #: src/lib/components/data-table/views-sheet.tsx:125
2691
+ msgid "My Saved Views"
2692
+ msgstr "저장한 뷰"
2693
+
2694
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:36
2695
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:146
2696
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:108
2697
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:107
2698
+ #: src/app/routes/_authenticated/_customers/customers.tsx:55
2699
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
2700
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:134
2701
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:124
2702
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:151
2703
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:328
2704
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:303
2705
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:153
2706
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:185
2707
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:157
2708
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:96
2709
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:143
2710
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
2711
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:109
2712
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:116
2713
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:96
2714
+ msgid "Name"
2715
+ msgstr "이름"
2716
+
2717
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:140
2718
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:150
2719
+ msgid "Never"
2720
+ msgstr "없음"
2721
+
2722
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:40
2723
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:106
2724
+ msgid "New administrator"
2725
+ msgstr "새 관리자"
2726
+
2727
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:39
2728
+ msgid "New asset"
2729
+ msgstr "새 에셋"
2730
+
2731
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:41
2732
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:113
2733
+ msgid "New channel"
2734
+ msgstr "새 채널"
2735
+
2736
+ #: src/app/routes/_authenticated/_channels/channels.tsx:74
2737
+ msgid "New Channel"
2738
+ msgstr "새 채널"
2739
+
2740
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:46
2741
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:116
2742
+ msgid "New collection"
2743
+ msgstr "새 컬렉션"
2744
+
2745
+ #: src/app/routes/_authenticated/_collections/collections.tsx:242
2746
+ msgid "New Collection"
2747
+ msgstr "새 컬렉션"
2748
+
2749
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:35
2750
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:79
2751
+ msgid "New country"
2752
+ msgstr "새 국가"
2753
+
2754
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:59
2755
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:147
2756
+ msgid "New customer"
2757
+ msgstr "새 고객"
2758
+
2759
+ #: src/app/routes/_authenticated/_customers/customers.tsx:82
2760
+ msgid "New Customer"
2761
+ msgstr "새 고객"
2762
+
2763
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:38
2764
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:87
2765
+ msgid "New customer group"
2766
+ msgstr "새 고객 그룹"
2767
+
2768
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups.tsx:65
2769
+ msgid "New Customer Group"
2770
+ msgstr "새 고객 그룹"
2771
+
2772
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:166
2773
+ msgid "New email:"
2774
+ msgstr "새 이메일:"
2775
+
2776
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:38
2777
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:94
2778
+ msgid "New facet"
2779
+ msgstr "새 속성"
2780
+
2781
+ #: src/app/routes/_authenticated/_facets/facets.tsx:130
2782
+ msgid "New Facet"
2783
+ msgstr "새 속성"
2784
+
2785
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:41
2786
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:103
2787
+ msgid "New facet value"
2788
+ msgstr "새 속성 값"
2789
+
2790
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:253
2791
+ msgid "New facet values to add:"
2792
+ msgstr "추가할 새 속성 값:"
2793
+
2794
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:86
2795
+ msgid "New option"
2796
+ msgstr "새 옵션"
2797
+
2798
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:43
2799
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:121
2800
+ msgid "New payment method"
2801
+ msgstr "새 결제 방법"
2802
+
2803
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:77
2804
+ msgid "New Payment Method"
2805
+ msgstr "새 결제 방법"
2806
+
2807
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:46
2808
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:103
2809
+ msgid "New product"
2810
+ msgstr "새 상품"
2811
+
2812
+ #: src/app/routes/_authenticated/_products/products.tsx:92
2813
+ msgid "New Product"
2814
+ msgstr "새 상품"
2815
+
2816
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:154
2817
+ msgid "New product option"
2818
+ msgstr "새 상품 옵션"
2819
+
2820
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:133
2821
+ msgid "New product option group"
2822
+ msgstr "새 상품 옵션 그룹"
2823
+
2824
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:125
2825
+ msgid "New product variant"
2826
+ msgstr "새 상품 변형"
2827
+
2828
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:44
2829
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:127
2830
+ msgid "New promotion"
2831
+ msgstr "새 프로모션"
2832
+
2833
+ #: src/app/routes/_authenticated/_promotions/promotions.tsx:75
2834
+ msgid "New Promotion"
2835
+ msgstr "새 프로모션"
2836
+
2837
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:35
2838
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:79
2839
+ msgid "New role"
2840
+ msgstr "새 역할"
2841
+
2842
+ #: src/app/routes/_authenticated/_roles/roles.tsx:92
2843
+ msgid "New Role"
2844
+ msgstr "새 역할"
2845
+
2846
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:32
2847
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:73
2848
+ msgid "New seller"
2849
+ msgstr "새 판매자"
2850
+
2851
+ #: src/app/routes/_authenticated/_sellers/sellers.tsx:49
2852
+ msgid "New Seller"
2853
+ msgstr "새 판매자"
2854
+
2855
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:44
2856
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:120
2857
+ msgid "New shipping method"
2858
+ msgstr "새 배송 방법"
2859
+
2860
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:65
2861
+ msgid "New Shipping Method"
2862
+ msgstr "새 배송 방법"
2863
+
2864
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:39
2865
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:90
2866
+ msgid "New stock location"
2867
+ msgstr "새 재고 위치"
2868
+
2869
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations.tsx:58
2870
+ msgid "New Stock Location"
2871
+ msgstr "새 재고 위치"
2872
+
2873
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:39
2874
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:89
2875
+ msgid "New tax category"
2876
+ msgstr "새 세금 카테고리"
2877
+
2878
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:62
2879
+ msgid "New Tax Category"
2880
+ msgstr "새 세금 카테고리"
2881
+
2882
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:38
2883
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:87
2884
+ msgid "New tax rate"
2885
+ msgstr "새 세율"
2886
+
2887
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:103
2888
+ msgid "New Tax Rate"
2889
+ msgstr "새 세율"
2890
+
2891
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:129
2892
+ msgid "New window"
2893
+ msgstr "새 창"
2894
+
2895
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:35
2896
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:77
2897
+ msgid "New zone"
2898
+ msgstr "새 지역"
2899
+
2900
+ #: src/app/routes/_authenticated/_zones/zones.tsx:56
2901
+ msgid "New Zone"
2902
+ msgstr "새 지역"
2903
+
2904
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:145
2905
+ msgid "Next Execution"
2906
+ msgstr "다음 실행"
2907
+
2908
+ #: src/lib/components/data-table/data-table-bulk-actions.tsx:92
2909
+ #: src/lib/components/shared/asset/asset-bulk-actions.tsx:102
2910
+ msgid "No actions available"
2911
+ msgstr "사용 가능한 작업이 없습니다"
2912
+
2913
+ #: src/app/routes/_authenticated/_orders/components/order-address.tsx:30
2914
+ msgid "No address"
2915
+ msgstr "주소 없음"
2916
+
2917
+ #: src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx:67
2918
+ msgid "No addresses found"
2919
+ msgstr "주소를 찾을 수 없습니다"
2920
+
2921
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:513
2922
+ msgid "No billing address"
2923
+ msgstr "청구지 주소 없음"
2924
+
2925
+ #: src/lib/components/shared/country-selector.tsx:88
2926
+ msgid "No countries found"
2927
+ msgstr "국가를 찾을 수 없습니다"
2928
+
2929
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:252
2930
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:460
2931
+ msgid "No customer"
2932
+ msgstr "고객 없음"
2933
+
2934
+ #: src/lib/components/shared/customer-selector.tsx:90
2935
+ msgid "No customers found"
2936
+ msgstr "고객을 찾을 수 없습니다"
2937
+
2938
+ #: src/app/common/duplicate-entity-dialog.tsx:99
2939
+ msgid "No duplicator found with code \"{duplicatorCode}\" for {entityName}s"
2940
+ msgstr "{entityName}에 대한 코드 \"{duplicatorCode}\"의 복제 도구를 찾을 수 없습니다"
2941
+
2942
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-result.tsx:52
2943
+ msgid "No eligible shipping methods found for this order."
2944
+ msgstr "이 주문에 적합한 배송 방법을 찾을 수 없습니다."
2945
+
2946
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:235
2947
+ msgid "No facet values"
2948
+ msgstr "속성 값 없음"
2949
+
2950
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:297
2951
+ msgid "No fulfillments"
2952
+ msgstr "이행 없음"
2953
+
2954
+ #: src/lib/components/layout/manage-languages-dialog.tsx:354
2955
+ msgid "No global languages configured"
2956
+ msgstr "전역 언어가 구성되지 않았습니다"
2957
+
2958
+ #: src/lib/components/data-table/views-sheet.tsx:141
2959
+ msgid "No global views have been created yet."
2960
+ msgstr "아직 전역 뷰가 생성되지 않았습니다."
2961
+
2962
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:90
2963
+ msgid "No items found"
2964
+ msgstr "항목을 찾을 수 없습니다"
2965
+
2966
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:331
2967
+ msgid "No items selected"
2968
+ msgstr "선택한 항목 없음"
2969
+
2970
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:217
2971
+ msgid "No modifications made"
2972
+ msgstr "수정 없음"
2973
+
2974
+ #: src/lib/components/data-input/relation-selector.tsx:458
2975
+ #: src/lib/components/shared/facet-value-selector.tsx:314
2976
+ msgid "No more items"
2977
+ msgstr "더 이상 항목 없음"
2978
+
2979
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:259
2980
+ msgid "No option groups defined yet. Add option groups to create different variants of your product (e.g., Size, Color, Material)"
2981
+ msgstr "아직 옵션 그룹이 정의되지 않았습니다. 상품의 다양한 변형을 만들려면 옵션 그룹을 추가하세요(예: 사이즈, 색상, 소재)"
2982
+
2983
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:336
2984
+ msgid "No payment or refund is required for these changes."
2985
+ msgstr "이 변경사항에는 결제 또는 환불이 필요하지 않습니다."
2986
+
2987
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:333
2988
+ msgid "No payment or refund required"
2989
+ msgstr "결제 또는 환불 불필요"
2990
+
2991
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:141
2992
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:184
2993
+ msgid "No result yet"
2994
+ msgstr "아직 결과 없음"
2995
+
2996
+ #: src/lib/components/data-table/data-table.tsx:338
2997
+ msgid "No results"
2998
+ msgstr "결과 없음"
2999
+
3000
+ #: src/lib/components/data-input/relation-selector.tsx:430
3001
+ #: src/lib/components/shared/facet-value-selector.tsx:277
3002
+ msgid "No results found"
3003
+ msgstr "결과를 찾을 수 없습니다"
3004
+
3005
+ #: src/lib/components/shared/seller-selector.tsx:92
3006
+ msgid "No sellers found"
3007
+ msgstr "판매자를 찾을 수 없습니다"
3008
+
3009
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:487
3010
+ msgid "No shipping address"
3011
+ msgstr "배송지 주소 없음"
3012
+
3013
+ #: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:59
3014
+ msgid "No shipping methods available"
3015
+ msgstr "사용 가능한 배송 방법 없음"
3016
+
3017
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:171
3018
+ msgid "No stock locations available on current channel"
3019
+ msgstr "현재 채널에 사용 가능한 재고 위치가 없습니다"
3020
+
3021
+ #: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:128
3022
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:166
3023
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:99
3024
+ msgid "No tags found"
3025
+ msgstr "태그를 찾을 수 없습니다"
3026
+
3027
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:111
3028
+ msgid "No tags selected"
3029
+ msgstr "선택한 태그 없음"
3030
+
3031
+ #. placeholder {0}: formatLanguageName(contentLanguage)
3032
+ #: src/lib/components/shared/translatable-form-field.tsx:62
3033
+ msgid "No translation found for {0}"
3034
+ msgstr "{0}의 번역을 찾을 수 없습니다"
3035
+
3036
+ #: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:75
3037
+ msgid "Normal"
3038
+ msgstr "일반"
3039
+
3040
+ #: src/lib/components/data-table/human-readable-operator.tsx:38
3041
+ msgid "not in"
3042
+ msgstr "포함하지 않음"
3043
+
3044
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:163
3045
+ msgid "Not Running"
3046
+ msgstr "실행 중 아님"
3047
+
3048
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:158
3049
+ msgid "Not set"
3050
+ msgstr "설정되지 않음"
3051
+
3052
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:43
3053
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:69
3054
+ msgid "Note added"
3055
+ msgstr "메모가 추가되었습니다"
3056
+
3057
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:21
3058
+ msgid "Note is private"
3059
+ msgstr "메모는 비공개입니다"
3060
+
3061
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:70
3062
+ msgid "Off"
3063
+ msgstr "끄기"
3064
+
3065
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:158
3066
+ msgid "Old email:"
3067
+ msgstr "기존 이메일:"
3068
+
3069
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:269
3070
+ msgid "Option"
3071
+ msgstr "옵션"
3072
+
3073
+ #. placeholder {0}: groupIndex + 1
3074
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:368
3075
+ msgid "Option group {0}"
3076
+ msgstr "옵션 그룹 {0}"
3077
+
3078
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:267
3079
+ msgid "Option group name"
3080
+ msgstr "옵션 그룹 이름"
3081
+
3082
+ #: src/app/routes/_authenticated/_products/components/option-groups-editor.tsx:81
3083
+ msgid "Option Group Name"
3084
+ msgstr "옵션 그룹 이름"
3085
+
3086
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:190
3087
+ msgid "Option group removed"
3088
+ msgstr "옵션 그룹이 제거되었습니다"
3089
+
3090
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:255
3091
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:63
3092
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:81
3093
+ msgid "Option Groups"
3094
+ msgstr "옵션 그룹"
3095
+
3096
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:288
3097
+ msgid "Option name"
3098
+ msgstr "옵션 이름"
3099
+
3100
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:142
3101
+ msgid "Option value name"
3102
+ msgstr "옵션 값 이름"
3103
+
3104
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:275
3105
+ msgid "Option values"
3106
+ msgstr "옵션 값"
3107
+
3108
+ #: src/app/routes/_authenticated/_products/components/option-groups-editor.tsx:90
3109
+ msgid "Option Values"
3110
+ msgstr "옵션 값"
3111
+
3112
+ #: src/lib/components/data-input/combination-mode-input.tsx:56
3113
+ msgid "OR"
3114
+ msgstr "OR"
3115
+
3116
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:94
3117
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:78
3118
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:100
3119
+ msgid "Order cancelled"
3120
+ msgstr "주문이 취소되었습니다"
3121
+
3122
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:90
3123
+ msgid "Order delivered"
3124
+ msgstr "주문이 배송되었습니다"
3125
+
3126
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:75
3127
+ msgid "Order fulfilled"
3128
+ msgstr "주문이 이행되었습니다"
3129
+
3130
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:230
3131
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:30
3132
+ msgid "Order history"
3133
+ msgstr "주문 이력"
3134
+
3135
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:137
3136
+ msgid "Order line removed"
3137
+ msgstr "주문 항목이 제거되었습니다"
3138
+
3139
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:121
3140
+ msgid "Order line updated"
3141
+ msgstr "주문 항목이 업데이트되었습니다"
3142
+
3143
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:241
3144
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:402
3145
+ msgid "Order lines"
3146
+ msgstr "주문 항목"
3147
+
3148
+ #. placeholder {0}: entry.data.modificationId
3149
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:74
3150
+ msgid "Order modification #{0}"
3151
+ msgstr "주문 수정 #{0}"
3152
+
3153
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:96
3154
+ msgid "Order modified"
3155
+ msgstr "주문이 수정되었습니다"
3156
+
3157
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx:56
3158
+ msgid "Order not found"
3159
+ msgstr "주문을 찾을 수 없습니다"
3160
+
3161
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:72
3162
+ msgid "Order placed"
3163
+ msgstr "주문이 확정되었습니다"
3164
+
3165
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:81
3166
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:87
3167
+ msgid "Order shipped"
3168
+ msgstr "주문이 발송되었습니다"
3169
+
3170
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:83
3171
+ msgid "Order transitioned"
3172
+ msgstr "주문이 전환되었습니다"
3173
+
3174
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:246
3175
+ #: src/app/routes/_authenticated/_orders/orders.tsx:21
3176
+ #: src/app/routes/_authenticated/_orders/orders.tsx:37
3177
+ #: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:45
3178
+ #: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:59
3179
+ #: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:73
3180
+ #: src/app/routes/_authenticated/_orders/utils/order-detail-loaders.tsx:122
3181
+ msgid "Orders"
3182
+ msgstr "주문"
3183
+
3184
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:265
3185
+ msgid "Out-of-stock threshold"
3186
+ msgstr "품절 임계값"
3187
+
3188
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:144
3189
+ #: src/app/routes/_authenticated/_profile/profile.tsx:110
3190
+ #: src/lib/components/login/login-form.tsx:128
3191
+ msgid "Password"
3192
+ msgstr "비밀번호"
3193
+
3194
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:59
3195
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:128
3196
+ msgid "Password reset requested"
3197
+ msgstr "비밀번호 재설정이 요청되었습니다"
3198
+
3199
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:61
3200
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:138
3201
+ msgid "Password reset verified"
3202
+ msgstr "비밀번호 재설정이 확인되었습니다"
3203
+
3204
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:57
3205
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:118
3206
+ msgid "Password updated"
3207
+ msgstr "비밀번호가 업데이트되었습니다"
3208
+
3209
+ #. placeholder {0}: entry.data.paymentId
3210
+ #. placeholder {1}: entry.data.to
3211
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:24
3212
+ msgid "Payment #{0} transitioned to {1}"
3213
+ msgstr "결제 #{0}이(가) {1}(으)로 전환되었습니다"
3214
+
3215
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:57
3216
+ msgid "Payment authorized"
3217
+ msgstr "결제가 승인되었습니다"
3218
+
3219
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:75
3220
+ msgid "Payment cancelled successfully"
3221
+ msgstr "결제가 취소되었습니다"
3222
+
3223
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:218
3224
+ msgid "Payment details"
3225
+ msgstr "결제 세부정보"
3226
+
3227
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:172
3228
+ msgid "Payment eligibility checker"
3229
+ msgstr "결제 적격성 확인"
3230
+
3231
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:60
3232
+ msgid "Payment failed"
3233
+ msgstr "결제 실패"
3234
+
3235
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:191
3236
+ msgid "Payment metadata"
3237
+ msgstr "결제 메타데이터"
3238
+
3239
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:146
3240
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:168
3241
+ msgid "Payment method"
3242
+ msgstr "결제 방법"
3243
+
3244
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:147
3245
+ msgid "Payment method is required"
3246
+ msgstr "결제 방법은 필수입니다"
3247
+
3248
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:42
3249
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:19
3250
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:29
3251
+ msgid "Payment Methods"
3252
+ msgstr "결제 방법"
3253
+
3254
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:54
3255
+ msgid "Payment settled"
3256
+ msgstr "결제가 완료되었습니다"
3257
+
3258
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:45
3259
+ msgid "Payment settled successfully"
3260
+ msgstr "결제가 정산되었습니다"
3261
+
3262
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:60
3263
+ msgid "Payment state updated successfully"
3264
+ msgstr "결제 상태가 업데이트되었습니다"
3265
+
3266
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:62
3267
+ msgid "Payment transitioned"
3268
+ msgstr "결제가 전환되었습니다"
3269
+
3270
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:202
3271
+ msgid "Per customer usage limit"
3272
+ msgstr "고객당 사용 제한"
3273
+
3274
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:133
3275
+ msgid "Permissions"
3276
+ msgstr "권한"
3277
+
3278
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:191
3279
+ msgid "Phone number"
3280
+ msgstr "전화번호"
3281
+
3282
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:272
3283
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:240
3284
+ #: src/lib/components/shared/customer-address-form.tsx:263
3285
+ msgid "Phone Number"
3286
+ msgstr "전화번호"
3287
+
3288
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx:58
3289
+ msgid "Please add products and complete the shipping address to run the test."
3290
+ msgstr "테스트를 실행하려면 상품을 추가하고 배송지 주소를 완성하세요."
3291
+
3292
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:308
3293
+ msgid "Please select a target collection"
3294
+ msgstr "대상 컬렉션을 선택하세요"
3295
+
3296
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:222
3297
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:207
3298
+ #: src/lib/components/shared/customer-address-form.tsx:213
3299
+ msgid "Postal Code"
3300
+ msgstr "우편번호"
3301
+
3302
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:439
3303
+ msgid "Preview changes"
3304
+ msgstr "변경사항 미리보기"
3305
+
3306
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:149
3307
+ msgid "Preview order modifications"
3308
+ msgstr "주문 수정사항 미리보기"
3309
+
3310
+ #: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:49
3311
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:185
3312
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:340
3313
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:209
3314
+ #: src/lib/components/layout/language-dialog.tsx:108
3315
+ msgid "Price"
3316
+ msgstr "가격"
3317
+
3318
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:170
3319
+ msgid "Price and tax"
3320
+ msgstr "가격 및 세금"
3321
+
3322
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:142
3323
+ msgid "Price conversion factor"
3324
+ msgstr "가격 변환 계수"
3325
+
3326
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:234
3327
+ msgid "Prices include tax for default tax zone"
3328
+ msgstr "가격에 기본 세금 지역의 세금이 포함됩니다"
3329
+
3330
+ #: src/app/routes/_authenticated/_facets/facets.tsx:82
3331
+ msgid "private"
3332
+ msgstr "비공개"
3333
+
3334
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:134
3335
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:112
3336
+ msgid "Private"
3337
+ msgstr "비공개"
3338
+
3339
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:135
3340
+ msgid "Private collections are not visible in the shop"
3341
+ msgstr "비공개 컬렉션은 상점에 표시되지 않습니다"
3342
+
3343
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:113
3344
+ msgid "Private facets are not visible in the shop"
3345
+ msgstr "비공개 속성은 상점에 표시되지 않습니다"
3346
+
3347
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:41
3348
+ msgid "Product"
3349
+ msgstr "상품"
3350
+
3351
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:156
3352
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:133
3353
+ msgid "Product name"
3354
+ msgstr "상품명"
3355
+
3356
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:173
3357
+ msgid "Product Option Group"
3358
+ msgstr "상품 옵션 그룹"
3359
+
3360
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:291
3361
+ msgid "Product options"
3362
+ msgstr "상품 옵션"
3363
+
3364
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:191
3365
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:174
3366
+ msgid "Product Options"
3367
+ msgstr "상품 옵션"
3368
+
3369
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:54
3370
+ #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:18
3371
+ #: src/app/routes/_authenticated/_product-variants/product-variants.tsx:26
3372
+ msgid "Product Variants"
3373
+ msgstr "상품 변형"
3374
+
3375
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:49
3376
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:54
3377
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:45
3378
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:61
3379
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:79
3380
+ #: src/app/routes/_authenticated/_products/products.tsx:23
3381
+ #: src/app/routes/_authenticated/_products/products.tsx:46
3382
+ msgid "Products"
3383
+ msgstr "상품"
3384
+
3385
+ #: src/app/routes/_authenticated/_profile/profile.tsx:30
3386
+ #: src/app/routes/_authenticated/_profile/profile.tsx:74
3387
+ #: src/lib/components/layout/nav-user.tsx:106
3388
+ msgid "Profile"
3389
+ msgstr "프로필"
3390
+
3391
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:43
3392
+ #: src/app/routes/_authenticated/_promotions/promotions.tsx:20
3393
+ #: src/app/routes/_authenticated/_promotions/promotions.tsx:29
3394
+ msgid "Promotions"
3395
+ msgstr "프로모션"
3396
+
3397
+ #: src/app/routes/_authenticated/_facets/facets.tsx:82
3398
+ msgid "public"
3399
+ msgstr "공개"
3400
+
3401
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:265
3402
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:77
3403
+ msgid "Quantity"
3404
+ msgstr "수량"
3405
+
3406
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:211
3407
+ msgid "Queue"
3408
+ msgstr "큐"
3409
+
3410
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:122
3411
+ msgid "Rate"
3412
+ msgstr "요율"
3413
+
3414
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:233
3415
+ msgid "Reason"
3416
+ msgstr "사유"
3417
+
3418
+ #: src/app/routes/_authenticated/_products/products.tsx:85
3419
+ msgid "Rebuild search index"
3420
+ msgstr "검색 인덱스 재구성"
3421
+
3422
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:47
3423
+ msgid "Refresh"
3424
+ msgstr "새로고침"
3425
+
3426
+ #: src/lib/components/data-table/refresh-button.tsx:45
3427
+ msgid "Refresh data"
3428
+ msgstr "데이터 새로고침"
3429
+
3430
+ #. placeholder {0}: entry.data.refundId
3431
+ #. placeholder {1}: entry.data.to
3432
+ #: src/app/routes/_authenticated/_orders/components/order-history/default-order-history-components.tsx:37
3433
+ msgid "Refund #{0} transitioned to {1}"
3434
+ msgstr "환불 #{0}이(가) {1}(으)로 전환되었습니다"
3435
+
3436
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:229
3437
+ msgid "Refund from this method"
3438
+ msgstr "이 방법에서 환불"
3439
+
3440
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:215
3441
+ msgid "Refund ID"
3442
+ msgstr "환불 ID"
3443
+
3444
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:170
3445
+ msgid "Refund required"
3446
+ msgstr "환불 필요"
3447
+
3448
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:65
3449
+ msgid "Refund settled"
3450
+ msgstr "환불이 정산되었습니다"
3451
+
3452
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:90
3453
+ msgid "Refund settled successfully"
3454
+ msgstr "환불이 정산되었습니다"
3455
+
3456
+ #: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:67
3457
+ msgid "Refund transitioned"
3458
+ msgstr "환불이 전환되었습니다"
3459
+
3460
+ #. placeholder {0}: payment.refunds.length
3461
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:208
3462
+ msgid "Refunds ({0})"
3463
+ msgstr "환불({0})"
3464
+
3465
+ #: src/lib/components/data-input/slug-input.tsx:265
3466
+ #: src/lib/components/data-input/slug-input.tsx:266
3467
+ msgid "Regenerate slug from source field"
3468
+ msgstr "원본 필드에서 슬러그 재생성"
3469
+
3470
+ #: src/app/routes/_authenticated/_zones/zones.tsx:36
3471
+ msgid "Regions"
3472
+ msgstr "지역"
3473
+
3474
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:23
3475
+ msgid "Registered"
3476
+ msgstr "등록됨"
3477
+
3478
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:289
3479
+ msgid "Remaining:"
3480
+ msgstr "남은:"
3481
+
3482
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:472
3483
+ msgid "Remove"
3484
+ msgstr "제거"
3485
+
3486
+ #: src/lib/components/shared/remove-from-channel-bulk-action.tsx:81
3487
+ msgid "Remove from current channel"
3488
+ msgstr "현재 채널에서 제거"
3489
+
3490
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:278
3491
+ msgid "Remove group"
3492
+ msgstr "그룹 제거"
3493
+
3494
+ #: src/lib/components/data-input/custom-field-list-input.tsx:85
3495
+ msgid "Remove item"
3496
+ msgstr "항목 제거"
3497
+
3498
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:138
3499
+ msgid "Remove link"
3500
+ msgstr "링크 제거"
3501
+
3502
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:199
3503
+ msgid "Removed coupon codes"
3504
+ msgstr "쿠폰 코드가 제거되었습니다"
3505
+
3506
+ #: src/app/routes/_authenticated/_customers/components/customer-history/customer-history-utils.tsx:49
3507
+ msgid "Removed from group"
3508
+ msgstr "그룹에서 제거되었습니다"
3509
+
3510
+ #. placeholder {0}: removedLines.length
3511
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:175
3512
+ msgid "Removing {0} item(s)"
3513
+ msgstr "{0}개 항목 제거 중"
3514
+
3515
+ #: src/lib/components/data-table/views-sheet.tsx:240
3516
+ msgid "Rename"
3517
+ msgstr "이름 변경"
3518
+
3519
+ #: src/lib/components/data-table/data-table-view-options.tsx:123
3520
+ msgid "Reset"
3521
+ msgstr "재설정"
3522
+
3523
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:152
3524
+ msgid "Review the changes before applying them to the order."
3525
+ msgstr "주문에 적용하기 전에 변경사항을 검토하세요."
3526
+
3527
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:150
3528
+ #: src/app/routes/_authenticated/_administrators/administrators.tsx:46
3529
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:34
3530
+ #: src/app/routes/_authenticated/_roles/roles.tsx:19
3531
+ #: src/app/routes/_authenticated/_roles/roles.tsx:28
3532
+ msgid "Roles"
3533
+ msgstr "역할"
3534
+
3535
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:210
3536
+ msgid "Run"
3537
+ msgstr "실행"
3538
+
3539
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx:30
3540
+ msgid "Run Test"
3541
+ msgstr "테스트 실행"
3542
+
3543
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:155
3544
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:159
3545
+ msgid "Running"
3546
+ msgstr "실행 중"
3547
+
3548
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:126
3549
+ msgid "Same window"
3550
+ msgstr "같은 창"
3551
+
3552
+ #: src/lib/components/layout/language-dialog.tsx:79
3553
+ msgid "Sample Formatting"
3554
+ msgstr "샘플 서식"
3555
+
3556
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:213
3557
+ #: src/lib/components/data-table/views-sheet.tsx:210
3558
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:54
3559
+ msgid "Save"
3560
+ msgstr "저장"
3561
+
3562
+ #: src/lib/components/data-table/views-sheet.tsx:144
3563
+ msgid "Save a view as \"Global\" to make it available to all users."
3564
+ msgstr "모든 사용자가 사용할 수 있도록 뷰를 \"전역\"으로 저장하세요."
3565
+
3566
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:338
3567
+ #: src/lib/components/shared/customer-address-form.tsx:329
3568
+ msgid "Save Address"
3569
+ msgstr "주소 저장"
3570
+
3571
+ #: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:122
3572
+ msgid "Save changes"
3573
+ msgstr "변경사항 저장"
3574
+
3575
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:206
3576
+ #: src/lib/components/layout/manage-languages-dialog.tsx:399
3577
+ msgid "Save Changes"
3578
+ msgstr "변경사항 저장"
3579
+
3580
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:121
3581
+ msgid "Save option group"
3582
+ msgstr "옵션 그룹 저장"
3583
+
3584
+ #: src/app/routes/_authenticated/_assets/components/manage-tags-dialog.tsx:206
3585
+ #: src/lib/components/layout/manage-languages-dialog.tsx:399
3586
+ msgid "Saving..."
3587
+ msgstr "저장 중..."
3588
+
3589
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:130
3590
+ msgid "Schedule"
3591
+ msgstr "일정"
3592
+
3593
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:127
3594
+ msgid "Schedule Pattern"
3595
+ msgstr "일정 패턴"
3596
+
3597
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:90
3598
+ msgid "Scheduled task could not be executed"
3599
+ msgstr "예약된 작업을 실행할 수 없습니다"
3600
+
3601
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:87
3602
+ msgid "Scheduled task will be executed"
3603
+ msgstr "예약된 작업이 실행됩니다"
3604
+
3605
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:29
3606
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:232
3607
+ msgid "Scheduled Tasks"
3608
+ msgstr "예약된 작업"
3609
+
3610
+ #: src/app/routes/_authenticated/_products/components/product-option-select.tsx:66
3611
+ msgid "Search {name}..."
3612
+ msgstr "{name} 검색..."
3613
+
3614
+ #: src/lib/components/shared/channel-selector.tsx:48
3615
+ msgid "Search channels..."
3616
+ msgstr "채널 검색..."
3617
+
3618
+ #: src/lib/components/shared/currency-selector.tsx:30
3619
+ msgid "Search currencies..."
3620
+ msgstr "통화 검색..."
3621
+
3622
+ #: src/app/routes/_authenticated/_products/products.tsx:34
3623
+ msgid "Search index rebuild could not be started"
3624
+ msgstr "검색 인덱스 재구성을 시작할 수 없습니다"
3625
+
3626
+ #: src/app/routes/_authenticated/_products/products.tsx:31
3627
+ msgid "Search index rebuild started"
3628
+ msgstr "검색 인덱스 재구성이 시작되었습니다"
3629
+
3630
+ #: src/lib/components/shared/language-selector.tsx:45
3631
+ msgid "Search languages..."
3632
+ msgstr "언어 검색..."
3633
+
3634
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:107
3635
+ msgid "Search payment methods..."
3636
+ msgstr "결제 방법 검색..."
3637
+
3638
+ #: src/lib/components/shared/role-selector.tsx:53
3639
+ msgid "Search roles..."
3640
+ msgstr "역할 검색..."
3641
+
3642
+ #. placeholder {0}: entityName.toLowerCase()
3643
+ #. placeholder {0}: group.name
3644
+ #: src/app/routes/_authenticated/_products/components/product-option-select.tsx:58
3645
+ #: src/lib/components/data-input/default-relation-input.tsx:616
3646
+ msgid "Select {0}"
3647
+ msgstr "{0} 선택"
3648
+
3649
+ #. placeholder {0}: selectedItems.length
3650
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:367
3651
+ msgid "Select {0} Items"
3652
+ msgstr "{0}개 항목 선택"
3653
+
3654
+ #. placeholder {0}: entityName.toLowerCase()
3655
+ #: src/lib/components/data-input/default-relation-input.tsx:603
3656
+ msgid "Select {0}s"
3657
+ msgstr "{0} 선택"
3658
+
3659
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:107
3660
+ #: src/lib/components/shared/channel-selector.tsx:47
3661
+ msgid "Select a channel"
3662
+ msgstr "채널 선택"
3663
+
3664
+ #. placeholder {0}: entityIds.length
3665
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:95
3666
+ msgid "Select a channel to assign {0} {entityType} to"
3667
+ msgstr "{0}개 {entityType}을(를) 할당할 채널 선택"
3668
+
3669
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:249
3670
+ #: src/lib/components/shared/customer-address-form.tsx:240
3671
+ msgid "Select a country"
3672
+ msgstr "국가 선택"
3673
+
3674
+ #: src/lib/components/shared/currency-selector.tsx:29
3675
+ msgid "Select a currency"
3676
+ msgstr "통화 선택"
3677
+
3678
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:83
3679
+ msgid "Select a destination collection"
3680
+ msgstr "대상 컬렉션 선택"
3681
+
3682
+ #: src/lib/components/shared/language-selector.tsx:44
3683
+ msgid "Select a language"
3684
+ msgstr "언어 선택"
3685
+
3686
+ #: src/lib/components/shared/role-selector.tsx:52
3687
+ msgid "Select a role"
3688
+ msgstr "역할 선택"
3689
+
3690
+ #. placeholder {0}: collectionsToMove.length === 1 ? 'this collection' : `${collectionsToMove.length} collections`
3691
+ #: src/app/routes/_authenticated/_collections/components/move-collections-dialog.tsx:339
3692
+ msgid "Select a target collection to move {0} to."
3693
+ msgstr "{0}을(를) 이동할 대상 컬렉션을 선택하세요."
3694
+
3695
+ #: src/lib/components/shared/tax-category-selector.tsx:50
3696
+ msgid "Select a tax category"
3697
+ msgstr "세금 카테고리 선택"
3698
+
3699
+ #: src/lib/components/shared/zone-selector.tsx:50
3700
+ msgid "Select a zone"
3701
+ msgstr "지역 선택"
3702
+
3703
+ #: src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx:51
3704
+ msgid "Select address"
3705
+ msgstr "주소 선택"
3706
+
3707
+ #: src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx:58
3708
+ msgid "Select an address"
3709
+ msgstr "주소 선택"
3710
+
3711
+ #: src/lib/components/data-input/select-with-options.tsx:81
3712
+ msgid "Select an option"
3713
+ msgstr "옵션 선택"
3714
+
3715
+ #: src/lib/components/layout/manage-languages-dialog.tsx:296
3716
+ msgid "Select Available Languages"
3717
+ msgstr "사용 가능한 언어 선택"
3718
+
3719
+ #: src/lib/components/shared/country-selector.tsx:73
3720
+ msgid "Select country"
3721
+ msgstr "국가 선택"
3722
+
3723
+ #: src/lib/components/shared/customer-selector.tsx:78
3724
+ msgid "Select customer"
3725
+ msgstr "고객 선택"
3726
+
3727
+ #: src/lib/components/layout/language-dialog.tsx:36
3728
+ msgid "Select display language"
3729
+ msgstr "표시 언어 선택"
3730
+
3731
+ #: src/lib/components/layout/manage-languages-dialog.tsx:358
3732
+ msgid "Select from globally available languages for this channel"
3733
+ msgstr "이 채널에서 전역적으로 사용 가능한 언어 중 선택"
3734
+
3735
+ #: src/lib/components/data-input/relation-selector.tsx:410
3736
+ msgid "Select item"
3737
+ msgstr "항목 선택"
3738
+
3739
+ #: src/lib/components/data-input/relation-selector.tsx:407
3740
+ msgid "Select items"
3741
+ msgstr "항목 선택"
3742
+
3743
+ #: src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx:104
3744
+ msgid "Select next state"
3745
+ msgstr "다음 상태 선택"
3746
+
3747
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:228
3748
+ msgid "Select quantities to fulfill and configure the fulfillment handler"
3749
+ msgstr "이행할 수량을 선택하고 이행 처리기를 구성하세요"
3750
+
3751
+ #: src/lib/components/shared/seller-selector.tsx:76
3752
+ msgid "Select seller"
3753
+ msgstr "판매자 선택"
3754
+
3755
+ #: src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx:108
3756
+ msgid "Select the next state for the order"
3757
+ msgstr "주문의 다음 상태 선택"
3758
+
3759
+ #. placeholder {0}: productData.product.variants[0].name
3760
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:328
3761
+ msgid "Select which options should apply to the existing variant \"{0}\""
3762
+ msgstr "기존 변형 \"{0}\"에 적용할 옵션 선택"
3763
+
3764
+ #: src/lib/components/data-input/product-multi-selector-input.tsx:316
3765
+ msgid "Selected Items"
3766
+ msgstr "선택한 항목"
3767
+
3768
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:156
3769
+ msgid "Seller"
3770
+ msgstr "판매자"
3771
+
3772
+ #: src/app/routes/_authenticated/_orders/orders_.$aggregateOrderId_.seller-orders.$sellerOrderId.tsx:36
3773
+ msgid "Seller order"
3774
+ msgstr "판매자 주문"
3775
+
3776
+ #: src/app/routes/_authenticated/_orders/orders_.$id.tsx:23
3777
+ msgid "Seller orders"
3778
+ msgstr "판매자 주문"
3779
+
3780
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:31
3781
+ #: src/app/routes/_authenticated/_sellers/sellers.tsx:14
3782
+ #: src/app/routes/_authenticated/_sellers/sellers.tsx:23
3783
+ msgid "Sellers"
3784
+ msgstr "판매자"
3785
+
3786
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:383
3787
+ msgid "Set custom fields"
3788
+ msgstr "사용자 정의 필드 설정"
3789
+
3790
+ #: src/lib/components/shared/asset/asset-focal-point-editor.tsx:97
3791
+ msgid "Set Focal Point"
3792
+ msgstr "초점 설정"
3793
+
3794
+ #: src/lib/components/shared/rich-text-editor/link-dialog.tsx:145
3795
+ msgid "Set link"
3796
+ msgstr "링크 설정"
3797
+
3798
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:113
3799
+ msgid "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
3800
+ msgstr "모든 채널에서 사용 가능한 언어를 설정합니다. 개별 채널은 이러한 언어의 하위 집합을 지원할 수 있습니다."
3801
+
3802
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:131
3803
+ 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."
3804
+ msgstr "이 변형이 품절로 간주되는 재고 수준을 설정합니다. 음수 값을 사용하면 예약 주문이 지원됩니다. 상품 변형으로 재정의할 수 있습니다."
3805
+
3806
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:267
3807
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:285
3808
+ msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
3809
+ msgstr "이 변형이 품절로 간주되는 재고 수준을 설정합니다. 음수 값을 사용하면 예약 주문이 지원됩니다."
3810
+
3811
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:142
3812
+ msgid "Settle payment"
3813
+ msgstr "결제 정산"
3814
+
3815
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:264
3816
+ #: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:49
3817
+ #: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:74
3818
+ msgid "Settle refund"
3819
+ msgstr "환불 정산"
3820
+
3821
+ #: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:62
3822
+ #: src/app/routes/_authenticated/_orders/orders.tsx:83
3823
+ msgid "Shipping"
3824
+ msgstr "배송"
3825
+
3826
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:259
3827
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:467
3828
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:403
3829
+ msgid "Shipping address"
3830
+ msgstr "배송지 주소"
3831
+
3832
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:142
3833
+ msgid "Shipping Address"
3834
+ msgstr "배송지 주소"
3835
+
3836
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:109
3837
+ msgid "Shipping address changed"
3838
+ msgstr "배송지 주소가 변경되었습니다"
3839
+
3840
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:166
3841
+ msgid "Shipping address set for order"
3842
+ msgstr "주문의 배송 주소가 설정됨"
3843
+
3844
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:182
3845
+ msgid "Shipping address unset for order"
3846
+ msgstr "주문의 배송 주소가 해제됨"
3847
+
3848
+ #: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:123
3849
+ msgid "Shipping method changed"
3850
+ msgstr "배송 방법이 변경되었습니다"
3851
+
3852
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx:58
3853
+ msgid "Shipping method is eligible for this order"
3854
+ msgstr "이 배송 방법은 이 주문에 적합합니다"
3855
+
3856
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx:76
3857
+ msgid "Shipping method is not eligible for this order"
3858
+ msgstr "이 배송 방법은 이 주문에 적합하지 않습니다"
3859
+
3860
+ #: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:201
3861
+ msgid "Shipping method set for order"
3862
+ msgstr "주문의 배송 방법이 설정됨"
3863
+
3864
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:43
3865
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:19
3866
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:28
3867
+ msgid "Shipping Methods"
3868
+ msgstr "배송 방법"
3869
+
3870
+ #: src/lib/components/layout/language-dialog.tsx:102
3871
+ msgid "Short date"
3872
+ msgstr "짧은 날짜"
3873
+
3874
+ #. placeholder {0}: filteredTags.length
3875
+ #: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:167
3876
+ msgid "Showing all {0} results"
3877
+ msgstr "{0}개 결과를 모두 표시 중"
3878
+
3879
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:163
3880
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:334
3881
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:195
3882
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:206
3883
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:306
3884
+ msgid "SKU"
3885
+ msgstr "SKU"
3886
+
3887
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:152
3888
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:139
3889
+ msgid "Slug"
3890
+ msgstr "슬러그"
3891
+
3892
+ #: src/lib/components/data-input/slug-input.tsx:237
3893
+ msgid "Slug is set"
3894
+ msgstr "슬러그가 설정되었습니다"
3895
+
3896
+ #: src/lib/components/data-input/slug-input.tsx:238
3897
+ msgid "Slug will be generated automatically..."
3898
+ msgstr "슬러그가 자동으로 생성됩니다..."
3899
+
3900
+ #: src/app/routes/_authenticated/_system/healthchecks.tsx:74
3901
+ msgid "Some resources are down"
3902
+ msgstr "일부 리소스가 다운되었습니다"
3903
+
3904
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:138
3905
+ msgid "Source"
3906
+ msgstr "소스"
3907
+
3908
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:174
3909
+ msgid "Starts at"
3910
+ msgstr "시작 일시"
3911
+
3912
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:108
3913
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:217
3914
+ #: src/app/routes/_authenticated/_orders/orders.tsx:99
3915
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:222
3916
+ msgid "State"
3917
+ msgstr "상태"
3918
+
3919
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:201
3920
+ msgid "State / Province"
3921
+ msgstr "시/도"
3922
+
3923
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:201
3924
+ #: src/lib/components/shared/customer-address-form.tsx:192
3925
+ msgid "State/Province"
3926
+ msgstr "시/도"
3927
+
3928
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:252
3929
+ #: src/app/routes/_authenticated/_customers/customers.tsx:45
3930
+ msgid "Status"
3931
+ msgstr "상태"
3932
+
3933
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:201
3934
+ msgid "Stock"
3935
+ msgstr "재고"
3936
+
3937
+ #: src/lib/components/shared/stock-level-label.tsx:18
3938
+ msgid "Stock allocated"
3939
+ msgstr "재고 할당됨"
3940
+
3941
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:208
3942
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:353
3943
+ msgid "Stock level"
3944
+ msgstr "재고 수준"
3945
+
3946
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:233
3947
+ msgid "Stock levels"
3948
+ msgstr "재고 수준"
3949
+
3950
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:38
3951
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations.tsx:18
3952
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations.tsx:25
3953
+ msgid "Stock Locations"
3954
+ msgstr "재고 위치"
3955
+
3956
+ #: src/lib/components/shared/stock-level-label.tsx:18
3957
+ msgid "Stock on hand"
3958
+ msgstr "보유 재고"
3959
+
3960
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:212
3961
+ msgid "Stock on Hand"
3962
+ msgstr "보유 재고"
3963
+
3964
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:146
3965
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:174
3966
+ #: src/lib/components/shared/customer-address-form.tsx:137
3967
+ msgid "Street Address"
3968
+ msgstr "도로명 주소"
3969
+
3970
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:181
3971
+ msgid "Street Address 2"
3972
+ msgstr "도로명 주소 2"
3973
+
3974
+ #: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:50
3975
+ msgid "Sub total"
3976
+ msgstr "소계"
3977
+
3978
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:219
3979
+ msgid "Subtotal"
3980
+ msgstr "소계"
3981
+
3982
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:97
3983
+ msgid "Successfully added option value"
3984
+ msgstr "옵션 값이 추가되었습니다"
3985
+
3986
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:49
3987
+ msgid "Successfully added payment to order"
3988
+ msgstr "주문에 결제가 추가되었습니다"
3989
+
3990
+ #: src/lib/components/shared/assign-to-channel-dialog.tsx:68
3991
+ msgid "Successfully assigned {entityIdsLength} {entityType} to channel"
3992
+ msgstr "{entityIdsLength}개 {entityType}이(가) 채널에 할당되었습니다"
3993
+
3994
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:85
3995
+ msgid "Successfully created channel"
3996
+ msgstr "채널이 생성되었습니다"
3997
+
3998
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:94
3999
+ msgid "Successfully created collection"
4000
+ msgstr "컬렉션이 생성되었습니다"
4001
+
4002
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:64
4003
+ msgid "Successfully created country"
4004
+ msgstr "국가가 생성되었습니다"
4005
+
4006
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:93
4007
+ msgid "Successfully created customer"
4008
+ msgstr "고객이 생성되었습니다"
4009
+
4010
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:66
4011
+ msgid "Successfully created customer group"
4012
+ msgstr "고객 그룹이 생성되었습니다"
4013
+
4014
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:79
4015
+ msgid "Successfully created facet"
4016
+ msgstr "속성이 생성되었습니다"
4017
+
4018
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:85
4019
+ msgid "Successfully created facet value"
4020
+ msgstr "속성 값이 생성되었습니다"
4021
+
4022
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:82
4023
+ msgid "Successfully created option group"
4024
+ msgstr "옵션 그룹이 생성되었습니다"
4025
+
4026
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:100
4027
+ msgid "Successfully created payment method"
4028
+ msgstr "결제 방법이 생성되었습니다"
4029
+
4030
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:87
4031
+ msgid "Successfully created product"
4032
+ msgstr "상품이 생성되었습니다"
4033
+
4034
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:119
4035
+ msgid "Successfully created product options"
4036
+ msgstr "상품 옵션이 생성되었습니다"
4037
+
4038
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:102
4039
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:169
4040
+ msgid "Successfully created product variant"
4041
+ msgstr "상품 변형이 생성되었습니다"
4042
+
4043
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:103
4044
+ msgid "Successfully created promotion"
4045
+ msgstr "프로모션이 생성되었습니다"
4046
+
4047
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:64
4048
+ msgid "Successfully created role"
4049
+ msgstr "역할이 생성되었습니다"
4050
+
4051
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:58
4052
+ msgid "Successfully created seller"
4053
+ msgstr "판매자가 생성되었습니다"
4054
+
4055
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:69
4056
+ msgid "Successfully created stock location"
4057
+ msgstr "재고 위치가 생성되었습니다"
4058
+
4059
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:68
4060
+ msgid "Successfully created tax category"
4061
+ msgstr "세금 카테고리가 생성되었습니다"
4062
+
4063
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:71
4064
+ msgid "Successfully created tax rate"
4065
+ msgstr "세율이 생성되었습니다"
4066
+
4067
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:62
4068
+ msgid "Successfully created zone"
4069
+ msgstr "지역이 생성되었습니다"
4070
+
4071
+ #: src/app/common/duplicate-bulk-action.tsx:97
4072
+ msgid "Successfully duplicated {count} {entityName}"
4073
+ msgstr "{count}개 {entityName}이(가) 복제되었습니다"
4074
+
4075
+ #: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:76
4076
+ msgid "Successfully fulfilled order"
4077
+ msgstr "주문이 이행되었습니다"
4078
+
4079
+ #: src/lib/components/shared/remove-from-channel-bulk-action.tsx:52
4080
+ msgid "Successfully removed {selectionLength} {entityType} from channel"
4081
+ msgstr "채널에서 {selectionLength}개 {entityType}이(가) 제거되었습니다"
4082
+
4083
+ #: src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx:80
4084
+ msgid "Successfully removed {successCount} facets from channel"
4085
+ msgstr "채널에서 {successCount}개 속성이 제거되었습니다"
4086
+
4087
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:70
4088
+ msgid "Successfully updated asset"
4089
+ msgstr "에셋이 업데이트되었습니다"
4090
+
4091
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:85
4092
+ msgid "Successfully updated channel"
4093
+ msgstr "채널이 업데이트되었습니다"
4094
+
4095
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:94
4096
+ msgid "Successfully updated collection"
4097
+ msgstr "컬렉션이 업데이트되었습니다"
4098
+
4099
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:64
4100
+ msgid "Successfully updated country"
4101
+ msgstr "국가가 업데이트되었습니다"
4102
+
4103
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:93
4104
+ msgid "Successfully updated customer"
4105
+ msgstr "고객이 업데이트되었습니다"
4106
+
4107
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:67
4108
+ msgid "Successfully updated customer group"
4109
+ msgstr "고객 그룹이 업데이트되었습니다"
4110
+
4111
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:79
4112
+ msgid "Successfully updated facet"
4113
+ msgstr "속성이 업데이트되었습니다"
4114
+
4115
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:85
4116
+ msgid "Successfully updated facet value"
4117
+ msgstr "속성 값이 업데이트되었습니다"
4118
+
4119
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:75
4120
+ msgid "Successfully updated facet values for {entityIdsLength} {entityType}"
4121
+ msgstr "{entityIdsLength}개 {entityType}의 속성 값이 업데이트되었습니다"
4122
+
4123
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:70
4124
+ msgid "Successfully updated global settings"
4125
+ msgstr "전역 설정이 업데이트되었습니다"
4126
+
4127
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:85
4128
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:87
4129
+ msgid "Successfully updated order"
4130
+ msgstr "주문이 업데이트되었습니다"
4131
+
4132
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:101
4133
+ msgid "Successfully updated payment method"
4134
+ msgstr "결제 방법이 업데이트되었습니다"
4135
+
4136
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:87
4137
+ msgid "Successfully updated product"
4138
+ msgstr "상품이 업데이트되었습니다"
4139
+
4140
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:103
4141
+ msgid "Successfully updated product variant"
4142
+ msgstr "상품 변형이 업데이트되었습니다"
4143
+
4144
+ #: src/app/routes/_authenticated/_profile/profile.tsx:61
4145
+ msgid "Successfully updated profile"
4146
+ msgstr "프로필이 업데이트되었습니다"
4147
+
4148
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:103
4149
+ msgid "Successfully updated promotion"
4150
+ msgstr "프로모션이 업데이트되었습니다"
4151
+
4152
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:64
4153
+ msgid "Successfully updated role"
4154
+ msgstr "역할이 업데이트되었습니다"
4155
+
4156
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:58
4157
+ msgid "Successfully updated seller"
4158
+ msgstr "판매자가 업데이트되었습니다"
4159
+
4160
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:70
4161
+ msgid "Successfully updated stock location"
4162
+ msgstr "재고 위치가 업데이트되었습니다"
4163
+
4164
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:69
4165
+ msgid "Successfully updated tax category"
4166
+ msgstr "세금 카테고리가 업데이트되었습니다"
4167
+
4168
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:71
4169
+ msgid "Successfully updated tax rate"
4170
+ msgstr "세율이 업데이트되었습니다"
4171
+
4172
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:62
4173
+ msgid "Successfully updated zone"
4174
+ msgstr "지역이 업데이트되었습니다"
4175
+
4176
+ #: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:420
4177
+ msgid "Summary of modifications"
4178
+ msgstr "수정 요약"
4179
+
4180
+ #: src/lib/components/shared/role-code-label.tsx:6
4181
+ msgid "Super Admin"
4182
+ msgstr "최고 관리자"
4183
+
4184
+ #: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:20
4185
+ msgid "Surcharge"
4186
+ msgstr "추가 요금"
4187
+
4188
+ #: src/lib/components/layout/nav-user.tsx:135
4189
+ msgctxt "theme"
4190
+ msgid "System"
4191
+ msgstr "시스템"
4192
+
4193
+ #: src/app/routes/_authenticated/_assets/components/asset-tags-editor.tsx:104
4194
+ msgid "Tags"
4195
+ msgstr "태그"
4196
+
4197
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:20
4198
+ msgid "Tax base"
4199
+ msgstr "과세 기준"
4200
+
4201
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:38
4202
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:15
4203
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:24
4204
+ msgid "Tax Categories"
4205
+ msgstr "세금 카테고리"
4206
+
4207
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:175
4208
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:136
4209
+ msgid "Tax category"
4210
+ msgstr "세금 카테고리"
4211
+
4212
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:17
4213
+ msgid "Tax rate"
4214
+ msgstr "세율"
4215
+
4216
+ #: src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx:79
4217
+ msgid "Tax rate: {taxRate}%"
4218
+ msgstr "세율: {taxRate}%"
4219
+
4220
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:37
4221
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:18
4222
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:28
4223
+ msgid "Tax Rates"
4224
+ msgstr "세율"
4225
+
4226
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:202
4227
+ msgid "Tax summary"
4228
+ msgstr "세금 요약"
4229
+
4230
+ #: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:23
4231
+ msgid "Tax total"
4232
+ msgstr "세금 합계"
4233
+
4234
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-sheet.tsx:23
4235
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-shipping-method-sheet.tsx:33
4236
+ msgid "Test"
4237
+ msgstr "테스트"
4238
+
4239
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx:68
4240
+ msgid "Test data has been updated. Click \"Run Test\" to see updated results."
4241
+ msgstr "테스트 데이터가 업데이트되었습니다. \"테스트 실행\"을 클릭하여 업데이트된 결과를 확인하세요."
4242
+
4243
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:163
4244
+ msgid "Test Order"
4245
+ msgstr "테스트 주문"
4246
+
4247
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx:39
4248
+ msgid "Test Results"
4249
+ msgstr "테스트 결과"
4250
+
4251
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-shipping-method-sheet.tsx:39
4252
+ msgid "Test Shipping Method"
4253
+ msgstr "배송 방법 테스트"
4254
+
4255
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-sheet.tsx:29
4256
+ msgid "Test shipping methods"
4257
+ msgstr "배송 방법 테스트"
4258
+
4259
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-shipping-method-sheet.tsx:42
4260
+ msgid "Test this shipping method by simulating an order to see if it's eligible and what the shipping cost would be."
4261
+ msgstr "주문을 시뮬레이션하여 이 배송 방법이 적합한지, 배송 비용이 얼마인지 테스트하세요."
4262
+
4263
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-sheet.tsx:32
4264
+ msgid "Test your shipping methods by simulating a new order."
4265
+ msgstr "새 주문을 시뮬레이션하여 배송 방법을 테스트하세요."
4266
+
4267
+ #: src/app/routes/_authenticated/_shipping-methods/components/shipping-method-test-result-wrapper.tsx:31
4268
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx:46
4269
+ msgid "Testing shipping method..."
4270
+ msgstr "배송 방법 테스트 중..."
4271
+
4272
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-shipping-methods-result.tsx:56
4273
+ msgid "Testing shipping methods..."
4274
+ msgstr "배송 방법 테스트 중..."
4275
+
4276
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:114
4277
+ msgid "The data that has been passed to the job"
4278
+ msgstr "작업에 전달된 데이터"
4279
+
4280
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:132
4281
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:175
4282
+ msgid "The result of the job"
4283
+ msgstr "작업 결과"
4284
+
4285
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:117
4286
+ msgid "The selected permissions will be applied to the these channels."
4287
+ msgstr "선택한 권한이 이 채널에 적용됩니다."
4288
+
4289
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:147
4290
+ msgid "The token is used to specify the channel when making API requests."
4291
+ msgstr "토큰은 API 요청 시 채널을 지정하는 데 사용됩니다."
4292
+
4293
+ #: src/lib/components/layout/nav-user.tsx:118
4294
+ msgid "Theme"
4295
+ msgstr "테마"
4296
+
4297
+ #: src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx:39
4298
+ msgid "These are the customers in the <0>{customerGroupName}</0> customer group."
4299
+ msgstr "<0>{customerGroupName}</0> 고객 그룹의 고객입니다."
4300
+
4301
+ #: src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx:35
4302
+ msgid "These are the facet values for the <0>{facetName}</0> facet."
4303
+ msgstr "<0>{facetName}</0> 속성의 속성 값입니다."
4304
+
4305
+ #: src/lib/components/layout/manage-languages-dialog.tsx:311
4306
+ msgid "These languages will be available for all channels to use"
4307
+ msgstr "이 언어는 모든 채널에서 사용할 수 있습니다"
4308
+
4309
+ #: src/app/routes/_authenticated/_roles/roles.tsx:54
4310
+ msgid "This is a default Role and cannot be modified"
4311
+ msgstr "이것은 기본 역할이며 수정할 수 없습니다"
4312
+
4313
+ #: src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx:39
4314
+ msgid "This is the contents of the <0>{collectionName}</0> collection."
4315
+ msgstr "<0>{collectionName}</0> 컬렉션의 내용입니다."
4316
+
4317
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:254
4318
+ msgid "This product has existing variants but no option groups defined. You need to add option groups before creating new variants."
4319
+ msgstr "이 상품에는 기존 변형이 있지만 옵션 그룹이 정의되어 있지 않습니다. 새 변형을 생성하기 전에 옵션 그룹을 추가해야 합니다."
4320
+
4321
+ #: src/app/routes/_authenticated/_shipping-methods/components/test-single-method-result.tsx:79
4322
+ msgid "This shipping method's eligibility checker conditions are not met for the current order and shipping address."
4323
+ msgstr "이 배송 방법의 적격성 확인 조건이 현재 주문 및 배송지 주소에 충족되지 않습니다."
4324
+
4325
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:166
4326
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:154
4327
+ msgid "Title"
4328
+ msgstr "제목"
4329
+
4330
+ #: src/app/routes/_authenticated/_roles/components/permissions-table-grid.tsx:95
4331
+ #: src/app/routes/_authenticated/_roles/components/permissions-table-grid.tsx:180
4332
+ msgid "Toggle all"
4333
+ msgstr "모두 토글"
4334
+
4335
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:158
4336
+ msgid "Toggle header column"
4337
+ msgstr "헤더 열 토글"
4338
+
4339
+ #: src/lib/components/shared/rich-text-editor/table-edit-icons.tsx:210
4340
+ msgid "Toggle header row"
4341
+ msgstr "헤더 행 토글"
4342
+
4343
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:145
4344
+ msgid "Token"
4345
+ msgstr "토큰"
4346
+
4347
+ #: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:74
4348
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:111
4349
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:228
4350
+ msgid "Total"
4351
+ msgstr "합계"
4352
+
4353
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:275
4354
+ msgid "Total refund:"
4355
+ msgstr "총 환불:"
4356
+
4357
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:253
4358
+ msgid "Track"
4359
+ msgstr "추적"
4360
+
4361
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:148
4362
+ msgid "Track inventory by default"
4363
+ msgstr "기본적으로 재고 추적"
4364
+
4365
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:112
4366
+ msgid "Tracking code"
4367
+ msgstr "추적 코드"
4368
+
4369
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:160
4370
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:178
4371
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:239
4372
+ #: src/app/routes/_authenticated/_orders/components/settle-refund-dialog.tsx:58
4373
+ msgid "Transaction ID"
4374
+ msgstr "거래 ID"
4375
+
4376
+ #: src/app/routes/_authenticated/_orders/components/add-manual-payment-dialog.tsx:161
4377
+ msgid "Transaction ID is required"
4378
+ msgstr "거래 ID는 필수입니다"
4379
+
4380
+ #. placeholder {0}: getTranslatedFulfillmentState(state)
4381
+ #. placeholder {0}: getTranslatedOrderState(state)
4382
+ #. placeholder {0}: getTranslatedPaymentState(state)
4383
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:92
4384
+ #: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:107
4385
+ #: src/app/routes/_authenticated/_orders/components/payment-details.tsx:154
4386
+ msgid "Transition to {0}"
4387
+ msgstr "{0}(으)로 전환"
4388
+
4389
+ #: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:84
4390
+ msgid "Transition to {suggestedState}"
4391
+ msgstr "{suggestedState}(으)로 전환"
4392
+
4393
+ #: src/app/routes/_authenticated/_orders/components/use-transition-order-to-state.tsx:131
4394
+ msgid "Transition to selected state"
4395
+ msgstr "선택한 상태로 전환"
4396
+
4397
+ #: src/lib/components/data-table/filters/data-table-boolean-filter.tsx:50
4398
+ msgid "True"
4399
+ msgstr "참"
4400
+
4401
+ #: src/lib/components/shared/facet-value-selector.tsx:273
4402
+ msgid "Type at least 2 characters to search..."
4403
+ msgstr "검색하려면 최소 2자를 입력하세요..."
4404
+
4405
+ #: src/app/routes/_authenticated/_orders/components/order-table.tsx:54
4406
+ msgid "Unit price"
4407
+ msgstr "단가"
4408
+
4409
+ #: src/app/routes/_authenticated/_orders/components/order-modification-preview-dialog.tsx:102
4410
+ #: src/app/routes/_authenticated/_products/components/add-option-group-dialog.tsx:87
4411
+ #: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:175
4412
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:125
4413
+ #: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:210
4414
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:104
4415
+ msgid "Unknown error"
4416
+ msgstr "알 수 없는 오류"
4417
+
4418
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:28
4419
+ msgid "Unverified"
4420
+ msgstr "미확인"
4421
+
4422
+ #: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:115
4423
+ #: src/app/routes/_authenticated/_assets/assets_.$id.tsx:101
4424
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
4425
+ #: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
4426
+ #: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
4427
+ #: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:96
4428
+ #: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
4429
+ #: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
4430
+ #: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
4431
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:100
4432
+ #: src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx:46
4433
+ #: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
4434
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:134
4435
+ #: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:276
4436
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:111
4437
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:142
4438
+ #: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:163
4439
+ #: src/app/routes/_authenticated/_profile/profile.tsx:82
4440
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:135
4441
+ #: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
4442
+ #: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
4443
+ #: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:132
4444
+ #: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
4445
+ #: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
4446
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
4447
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:85
4448
+ #: src/lib/framework/page/detail-page.tsx:205
4449
+ msgid "Update"
4450
+ msgstr "업데이트"
4451
+
4452
+ #: src/lib/components/shared/history-timeline/history-note-editor.tsx:47
4453
+ msgid "Update the note content or visibility"
4454
+ msgstr "메모 내용 또는 공개 설정 업데이트"
4455
+
4456
+ #: src/lib/framework/layout-engine/page-layout.tsx:407
4457
+ msgid "Updated"
4458
+ msgstr "업데이트 일시"
4459
+
4460
+ #: src/lib/components/shared/asset/asset-gallery.tsx:355
4461
+ msgid "Upload"
4462
+ msgstr "업로드"
4463
+
4464
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:214
4465
+ msgid "Usage limit"
4466
+ msgstr "사용 제한"
4467
+
4468
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:322
4469
+ #: src/lib/components/shared/customer-address-form.tsx:313
4470
+ msgid "Use as the default billing address"
4471
+ msgstr "기본 청구지 주소로 사용"
4472
+
4473
+ #: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:302
4474
+ #: src/lib/components/shared/customer-address-form.tsx:293
4475
+ msgid "Use as the default shipping address"
4476
+ msgstr "기본 배송지 주소로 사용"
4477
+
4478
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:283
4479
+ msgid "Use global out-of-stock threshold"
4480
+ msgstr "전역 품절 임계값 사용"
4481
+
4482
+ #: src/lib/components/login/login-form.tsx:112
4483
+ msgid "Username"
4484
+ msgstr "사용자명"
4485
+
4486
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:17
4487
+ msgid "Using external authentication strategy: {strategy}"
4488
+ msgstr "외부 인증 전략 사용: {strategy}"
4489
+
4490
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:13
4491
+ msgid "Using native authentication strategy"
4492
+ msgstr "기본 인증 전략 사용"
4493
+
4494
+ #: src/app/routes/_authenticated/_facets/facets.tsx:88
4495
+ msgid "Values"
4496
+ msgstr "값"
4497
+
4498
+ #: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:202
4499
+ msgid "Variant"
4500
+ msgstr "변형"
4501
+
4502
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:182
4503
+ msgid "Variant deleted successfully"
4504
+ msgstr "변형이 삭제되었습니다"
4505
+
4506
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:174
4507
+ msgid "Variant updated successfully"
4508
+ msgstr "변형이 업데이트되었습니다"
4509
+
4510
+ #: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:297
4511
+ msgid "Variants"
4512
+ msgstr "변형"
4513
+
4514
+ #: src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx:18
4515
+ msgid "Verified"
4516
+ msgstr "확인됨"
4517
+
4518
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:33
4519
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:86
4520
+ msgid "View changes"
4521
+ msgstr "변경사항 보기"
4522
+
4523
+ #: src/lib/components/data-table/views-sheet.tsx:118
4524
+ msgid "View converted to global successfully"
4525
+ msgstr "뷰가 전역으로 변환되었습니다"
4526
+
4527
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:117
4528
+ msgid "View data"
4529
+ msgstr "데이터 보기"
4530
+
4531
+ #: src/lib/components/data-table/views-sheet.tsx:83
4532
+ msgid "View deleted successfully"
4533
+ msgstr "뷰가 삭제되었습니다"
4534
+
4535
+ #: src/app/routes/_authenticated/_customers/components/customer-history/default-customer-history-components.tsx:152
4536
+ msgid "View details"
4537
+ msgstr "세부정보 보기"
4538
+
4539
+ #: src/lib/components/data-table/views-sheet.tsx:97
4540
+ msgid "View duplicated successfully"
4541
+ msgstr "뷰가 복제되었습니다"
4542
+
4543
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:113
4544
+ msgid "View job data"
4545
+ msgstr "작업 데이터 보기"
4546
+
4547
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:131
4548
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:174
4549
+ msgid "View job result"
4550
+ msgstr "작업 결과 보기"
4551
+
4552
+ #: src/lib/components/data-table/views-sheet.tsx:63
4553
+ msgid "View renamed successfully"
4554
+ msgstr "뷰 이름이 변경되었습니다"
4555
+
4556
+ #: src/app/routes/_authenticated/_system/job-queue.tsx:135
4557
+ #: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:178
4558
+ msgid "View result"
4559
+ msgstr "결과 보기"
4560
+
4561
+ #: src/app/routes/_authenticated/_facets/facets.tsx:53
4562
+ msgid "View values"
4563
+ msgstr "값 보기"
4564
+
4565
+ #: src/app/routes/_authenticated/_facets/facets.tsx:77
4566
+ msgid "Visibility"
4567
+ msgstr "공개 설정"
4568
+
4569
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
4570
+ msgid "Visible to admins only"
4571
+ msgstr "관리자만 볼 수 있음"
4572
+
4573
+ #: src/lib/components/shared/history-timeline/history-note-checkbox.tsx:24
4574
+ msgid "Visible to customer"
4575
+ msgstr "고객에게 표시"
4576
+
4577
+ #: src/lib/components/login/login-form.tsx:89
4578
+ msgid "Welcome back!"
4579
+ msgstr "환영합니다"
4580
+
4581
+ #: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:145
4582
+ #: src/app/routes/_authenticated/_products/products_.$id.tsx:122
4583
+ msgid "When enabled, a product is available in the shop"
4584
+ msgstr "활성화하면 상품이 상점에서 사용 가능합니다"
4585
+
4586
+ #: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:146
4587
+ msgid "When enabled, a promotion is available in the shop"
4588
+ msgstr "활성화하면 프로모션이 상점에서 사용 가능합니다"
4589
+
4590
+ #: src/app/routes/_authenticated/_channels/channels_.$id.tsx:236
4591
+ msgid "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
4592
+ msgstr "이 옵션을 활성화하면 상품 카탈로그에 입력된 가격에 기본 세금 지역의 세금이 포함됩니다."
4593
+
4594
+ #: src/app/routes/_authenticated/_global-settings/global-settings.tsx:150
4595
+ msgid "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
4596
+ msgstr "추적 시 상품 변형 재고 수준이 판매 시 자동으로 조정됩니다. 이 설정은 개별 상품 변형으로 재정의할 수 있습니다."
4597
+
4598
+ #: src/lib/components/shared/rich-text-editor/image-dialog.tsx:179
4599
+ msgid "Width"
4600
+ msgstr "너비"
4601
+
4602
+ #: src/lib/components/data-table/data-table-bulk-actions.tsx:77
4603
+ #: src/lib/components/shared/asset/asset-bulk-actions.tsx:87
4604
+ msgid "With selected..."
4605
+ msgstr "선택한 항목으로..."
4606
+
4607
+ #: src/lib/components/layout/manage-languages-dialog.tsx:333
4608
+ msgid "You don't have permission to view channel settings"
4609
+ msgstr "채널 설정을 볼 수 있는 권한이 없습니다"
4610
+
4611
+ #: src/lib/components/layout/manage-languages-dialog.tsx:279
4612
+ msgid "You don't have permission to view global language settings"
4613
+ msgstr "전역 언어 설정을 볼 수 있는 권한이 없습니다"
4614
+
4615
+ #: src/lib/components/data-table/views-sheet.tsx:152
4616
+ msgid "You haven't saved any views yet."
4617
+ msgstr "아직 저장한 뷰가 없습니다."
4618
+
4619
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:144
4620
+ #: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:64
4621
+ msgid "Zone"
4622
+ msgstr "지역"
4623
+
4624
+ #: src/app/routes/_authenticated/_zones/zones_.$id.tsx:34
4625
+ #: src/app/routes/_authenticated/_zones/zones.tsx:15
4626
+ #: src/app/routes/_authenticated/_zones/zones.tsx:25
4627
+ msgid "Zones"
4628
+ msgstr "지역"