katello 4.8.4 → 4.9.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (481) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +40 -4
  3. data/app/assets/javascripts/katello/locale/bn/katello.js +1 -0
  4. data/app/assets/javascripts/katello/locale/cs/katello.js +1 -0
  5. data/app/assets/javascripts/katello/locale/de/katello.js +1 -0
  6. data/app/assets/javascripts/katello/locale/en/katello.js +1 -0
  7. data/app/assets/javascripts/katello/locale/es/katello.js +1 -0
  8. data/app/assets/javascripts/katello/locale/fr/katello.js +1 -0
  9. data/app/assets/javascripts/katello/locale/gu/katello.js +1 -0
  10. data/app/assets/javascripts/katello/locale/hi/katello.js +1 -0
  11. data/app/assets/javascripts/katello/locale/it/katello.js +1 -0
  12. data/app/assets/javascripts/katello/locale/ja/katello.js +1 -0
  13. data/app/assets/javascripts/katello/locale/ka/katello.js +1 -0
  14. data/app/assets/javascripts/katello/locale/kn/katello.js +1 -0
  15. data/app/assets/javascripts/katello/locale/ko/katello.js +1 -0
  16. data/app/assets/javascripts/katello/locale/locale/katello.js +1 -0
  17. data/app/assets/javascripts/katello/locale/mr/katello.js +1 -0
  18. data/app/assets/javascripts/katello/locale/or/katello.js +1 -0
  19. data/app/assets/javascripts/katello/locale/pa/katello.js +1 -0
  20. data/app/assets/javascripts/katello/locale/pt/katello.js +1 -0
  21. data/app/assets/javascripts/katello/locale/pt_BR/katello.js +1 -0
  22. data/app/assets/javascripts/katello/locale/ru/katello.js +1 -0
  23. data/app/assets/javascripts/katello/locale/ta/katello.js +1 -0
  24. data/app/assets/javascripts/katello/locale/te/katello.js +1 -0
  25. data/app/assets/javascripts/katello/locale/zh_CN/katello.js +1 -0
  26. data/app/assets/javascripts/katello/locale/zh_TW/katello.js +1 -0
  27. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -0
  28. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  29. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -0
  30. data/app/controllers/katello/api/v2/content_views_controller.rb +22 -12
  31. data/app/controllers/katello/api/v2/environments_controller.rb +5 -1
  32. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +1 -1
  33. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -2
  34. data/app/controllers/katello/api/v2/organizations_controller.rb +11 -0
  35. data/app/controllers/katello/api/v2/repositories_controller.rb +4 -3
  36. data/app/controllers/katello/api/v2/repository_sets_controller.rb +13 -4
  37. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  38. data/app/controllers/katello/concerns/api/api_controller.rb +2 -2
  39. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +1 -1
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -4
  41. data/app/lib/actions/candlepin/product/content_add.rb +13 -1
  42. data/app/lib/actions/candlepin/product/content_update.rb +2 -1
  43. data/app/lib/actions/katello/agent_action.rb +3 -4
  44. data/app/lib/actions/katello/bulk_agent_action.rb +1 -4
  45. data/app/lib/actions/katello/content_view/publish.rb +1 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -0
  47. data/app/lib/actions/katello/host/update_content_view.rb +2 -4
  48. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  49. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  50. data/app/lib/actions/katello/product/content_create.rb +2 -2
  51. data/app/lib/actions/katello/repository/destroy.rb +15 -7
  52. data/app/lib/actions/katello/repository/update.rb +23 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +2 -0
  54. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +5 -12
  55. data/app/lib/katello/concerns/base_template_scope_extensions.rb +34 -2
  56. data/app/lib/katello/event_daemon/runner.rb +8 -4
  57. data/app/lib/katello/repo_discovery.rb +3 -1
  58. data/app/lib/katello/resources/cdn/katello_cdn.rb +4 -8
  59. data/app/lib/katello/util/default_enablement_migrator.rb +183 -0
  60. data/app/models/katello/activation_key.rb +4 -0
  61. data/app/models/katello/alternate_content_source.rb +13 -8
  62. data/app/models/katello/candlepin/repository_mapper.rb +0 -1
  63. data/app/models/katello/concerns/content_view_filter_rule_common.rb +42 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +9 -40
  65. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -23
  66. data/app/models/katello/content.rb +9 -0
  67. data/app/models/katello/content_view.rb +99 -4
  68. data/app/models/katello/content_view_environment_content_facet.rb +12 -0
  69. data/app/models/katello/content_view_filter.rb +5 -1
  70. data/app/models/katello/content_view_package_filter_rule.rb +0 -1
  71. data/app/models/katello/content_view_repository.rb +0 -1
  72. data/app/models/katello/content_view_version.rb +26 -0
  73. data/app/models/katello/docker_meta_tag.rb +4 -0
  74. data/app/models/katello/host/content_facet.rb +2 -0
  75. data/app/models/katello/kt_environment.rb +13 -3
  76. data/app/models/katello/ping.rb +1 -1
  77. data/app/models/katello/product.rb +1 -1
  78. data/app/models/katello/product_content.rb +13 -15
  79. data/app/models/katello/root_repository.rb +21 -2
  80. data/app/models/katello/sync_plan.rb +2 -6
  81. data/app/presenters/katello/host_package_presenter.rb +5 -3
  82. data/app/services/katello/product_content_finder.rb +6 -1
  83. data/app/services/katello/pulp3/alternate_content_source.rb +5 -0
  84. data/app/services/katello/pulp3/module_stream.rb +2 -12
  85. data/app/services/katello/pulp3/repository/yum.rb +3 -0
  86. data/app/views/foreman/job_templates/install_errata.erb +4 -4
  87. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +4 -7
  88. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +5 -6
  89. data/app/views/katello/api/v2/activation_keys/base.json.rabl +6 -0
  90. data/app/views/katello/api/v2/common/destroy.json.rabl +2 -1
  91. data/app/views/katello/api/v2/content_credentials/show.json.rabl +1 -1
  92. data/app/views/katello/api/v2/content_facet/base.json.rabl +10 -9
  93. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +6 -0
  94. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +11 -1
  95. data/app/views/katello/api/v2/content_views/base.json.rabl +3 -0
  96. data/app/views/katello/api/v2/docker_tags/_base.json.rabl +4 -0
  97. data/app/views/katello/api/v2/environments/show.json.rabl +10 -0
  98. data/app/views/katello/api/v2/host_subscriptions/show.json.rabl +1 -0
  99. data/app/views/katello/api/v2/repositories/index.json.rabl +6 -0
  100. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/repository_sets/show.json.rabl +8 -2
  102. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +22 -15
  103. data/app/views/smart_proxies/_disk_usage.html.erb +2 -0
  104. data/ca/redhat-uep.pem +53 -53
  105. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +0 -1
  106. data/db/migrate/20230328180352_add_applied_filters_to_katello_content_view_versions.rb +5 -0
  107. data/db/migrate/20230503190626_add_metadata_expire_to_root.rb +5 -0
  108. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +4 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +16 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +4 -3
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +15 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html +1 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -2
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +10 -4
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +2 -2
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +2 -0
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -0
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -0
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +2 -0
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +2 -4
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +0 -1
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +0 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +4 -2
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +12 -3
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tag-repositories.controller.js +43 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +7 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +0 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +0 -7
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html +60 -0
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +0 -8
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +10 -0
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +0 -4
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +4 -2
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +5 -4
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html +2 -2
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html +2 -2
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +7 -0
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js +4 -2
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-hosts.controller.js +4 -2
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html +4 -3
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +4 -3
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +590 -175
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn.po +5157 -0
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn_IN.po +5157 -0
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ca.po +5157 -0
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/cs_CZ.po +5204 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_AT.po +5153 -0
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_DE.po +5159 -0
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/el.po +5157 -0
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_GB.po +5158 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_US.po +5153 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/et_EE.po +5153 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gl.po +5157 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gu.po +5157 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/he_IL.po +5191 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/hi.po +5157 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/id.po +5136 -0
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +5303 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +34 -14
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/kn.po +5157 -0
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ml_IN.po +5153 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/mr.po +5157 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/nl_NL.po +5161 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/or.po +5157 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pa.po +5157 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl.po +5192 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl_PL.po +5187 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt.po +5174 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro.po +5170 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro_RO.po +5170 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +5279 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sl.po +5191 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sv_SE.po +5158 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta.po +5157 -0
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta_IN.po +5157 -0
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/te.po +5157 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/tr.po +5157 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi.po +5136 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi_VN.po +5136 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh.po +5136 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +38 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +8 -2
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +12 -3
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +13 -4
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +12 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +6 -0
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +0 -4
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +6 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +20 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +1 -1
  212. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/activation_keys.scss +13 -0
  213. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +1 -0
  214. data/lib/katello/engine.rb +0 -7
  215. data/lib/katello/plugin.rb +18 -15
  216. data/lib/katello/tasks/upgrades/4.9/update_custom_products_enablement.rake +11 -0
  217. data/lib/katello/version.rb +1 -1
  218. data/locale/action_names.rb +1 -2
  219. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  220. data/locale/bn/katello.po +215 -183
  221. data/locale/bn_IN/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/bn_IN/katello.po +8901 -0
  223. data/locale/ca/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ca/katello.po +8900 -0
  225. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  226. data/locale/cs/katello.po +216 -185
  227. data/locale/cs_CZ/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/cs_CZ/katello.po +8906 -0
  229. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  230. data/locale/de/katello.po +223 -191
  231. data/locale/de_AT/LC_MESSAGES/katello.mo +0 -0
  232. data/locale/de_AT/katello.po +8897 -0
  233. data/locale/de_DE/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/de_DE/katello.po +8906 -0
  235. data/locale/el/LC_MESSAGES/katello.mo +0 -0
  236. data/locale/el/katello.po +8900 -0
  237. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  238. data/locale/en/katello.po +215 -183
  239. data/locale/en_GB/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/en_GB/katello.po +8902 -0
  241. data/locale/en_US/LC_MESSAGES/katello.mo +0 -0
  242. data/locale/en_US/katello.po +8897 -0
  243. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/es/katello.po +218 -187
  245. data/locale/et_EE/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/et_EE/katello.po +8897 -0
  247. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  248. data/locale/fr/katello.po +233 -204
  249. data/locale/gl/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/gl/katello.po +8900 -0
  251. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/gu/katello.po +215 -183
  253. data/locale/he_IL/LC_MESSAGES/katello.mo +0 -0
  254. data/locale/he_IL/katello.po +8902 -0
  255. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/hi/katello.po +215 -183
  257. data/locale/id/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/id/katello.po +8896 -0
  259. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  260. data/locale/it/katello.po +216 -185
  261. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/ja/katello.po +233 -202
  263. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  264. data/locale/ka/katello.po +223 -191
  265. data/locale/katello.pot +1844 -1796
  266. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  267. data/locale/kn/katello.po +215 -183
  268. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  269. data/locale/ko/katello.po +216 -183
  270. data/locale/ml_IN/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/ml_IN/katello.po +8897 -0
  272. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  273. data/locale/mr/katello.po +215 -183
  274. data/locale/nl_NL/LC_MESSAGES/katello.mo +0 -0
  275. data/locale/nl_NL/katello.po +8907 -0
  276. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/or/katello.po +215 -183
  278. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  279. data/locale/pa/katello.po +215 -183
  280. data/locale/pl/LC_MESSAGES/katello.mo +0 -0
  281. data/locale/pl/katello.po +8903 -0
  282. data/locale/pl_PL/LC_MESSAGES/katello.mo +0 -0
  283. data/locale/pl_PL/katello.po +8899 -0
  284. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  285. data/locale/pt/katello.po +215 -183
  286. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  287. data/locale/pt_BR/katello.po +218 -187
  288. data/locale/ro/LC_MESSAGES/katello.mo +0 -0
  289. data/locale/ro/katello.po +8897 -0
  290. data/locale/ro_RO/LC_MESSAGES/katello.mo +0 -0
  291. data/locale/ro_RO/katello.po +8898 -0
  292. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  293. data/locale/ru/katello.po +216 -184
  294. data/locale/sl/LC_MESSAGES/katello.mo +0 -0
  295. data/locale/sl/katello.po +8901 -0
  296. data/locale/sv_SE/LC_MESSAGES/katello.mo +0 -0
  297. data/locale/sv_SE/katello.po +8903 -0
  298. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  299. data/locale/ta/katello.po +215 -183
  300. data/locale/ta_IN/LC_MESSAGES/katello.mo +0 -0
  301. data/locale/ta_IN/katello.po +8901 -0
  302. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  303. data/locale/te/katello.po +215 -183
  304. data/locale/tr/LC_MESSAGES/katello.mo +0 -0
  305. data/locale/tr/katello.po +8900 -0
  306. data/locale/vi/LC_MESSAGES/katello.mo +0 -0
  307. data/locale/vi/katello.po +8896 -0
  308. data/locale/vi_VN/LC_MESSAGES/katello.mo +0 -0
  309. data/locale/vi_VN/katello.po +8897 -0
  310. data/locale/zh/LC_MESSAGES/katello.mo +0 -0
  311. data/locale/zh/katello.po +8896 -0
  312. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  313. data/locale/zh_CN/katello.po +233 -202
  314. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  315. data/locale/zh_TW/katello.po +216 -183
  316. data/package.json +1 -0
  317. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +1 -0
  318. data/webpack/components/Bookmark/AddBookmarkModal.js +8 -2
  319. data/webpack/components/Content/ContentTable.js +1 -0
  320. data/webpack/components/Content/Details/ContentDetailInfo.js +1 -1
  321. data/webpack/components/Content/Details/ContentDetails.js +3 -3
  322. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetailInfo.test.js.snap +1 -0
  323. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +4 -0
  324. data/webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap +1 -0
  325. data/webpack/components/RoutedTabs/index.js +1 -1
  326. data/webpack/components/SelectOrg/SetOrganization.js +7 -1
  327. data/webpack/components/Table/EmptyStateMessage.js +8 -3
  328. data/webpack/components/Table/MainTable.js +8 -2
  329. data/webpack/components/TooltipButton/TooltipButton.js +2 -2
  330. data/webpack/components/TooltipButton/__snapshots__/TooltipButton.test.js.snap +3 -0
  331. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +2 -0
  332. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +81 -24
  333. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.scss +3 -0
  334. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +10 -3
  335. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +8 -0
  336. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -2
  337. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +3 -1
  338. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  339. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +0 -4
  340. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErratumExpansionDetail.js +2 -2
  341. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -5
  342. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +20 -0
  343. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  344. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +16 -0
  345. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +54 -8
  346. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +1 -0
  347. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +8 -1
  348. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  349. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  350. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  351. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +2 -1
  352. data/webpack/components/extensions/RegistrationCommands/fields/Force.js +1 -0
  353. data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +1 -0
  354. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -0
  355. data/webpack/components/extensions/about/index.js +2 -2
  356. data/webpack/components/pf3Table/components/Table.js +1 -0
  357. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +6 -1
  358. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +15 -2
  359. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +6 -1
  360. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +4 -1
  361. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -0
  362. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +1 -0
  363. data/webpack/scenes/Content/Details/ContentDetails.js +4 -2
  364. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  365. data/webpack/scenes/Content/GenericContentPage.js +1 -1
  366. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  367. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -0
  368. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +26 -13
  369. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +27 -13
  370. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +8 -4
  371. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -2
  372. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  373. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +25 -24
  374. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -1
  375. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +19 -3
  376. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +6 -0
  377. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
  379. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +15 -2
  380. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +5 -1
  381. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +13 -9
  382. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +19 -6
  383. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +5 -1
  384. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +50 -51
  385. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +45 -44
  386. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +45 -44
  387. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +13 -8
  388. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +4 -3
  389. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +5 -2
  390. data/webpack/scenes/ContentViews/Details/Filters/FilterRuleConstants.js +6 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +3 -2
  392. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +10 -2
  393. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +5 -1
  394. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +7 -0
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +37 -24
  396. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -3
  397. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -1
  398. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +78 -8
  399. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +27 -8
  400. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailNoReposAdded.fixtures.json +13 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +1 -1
  402. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +16 -16
  403. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +16 -16
  404. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +6 -3
  405. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +10 -5
  406. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +9 -2
  407. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +1 -0
  408. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +2 -1
  409. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +2 -1
  410. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +2 -1
  411. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +12 -6
  412. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +2 -1
  413. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +2 -1
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +25 -4
  415. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +4 -2
  416. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +26 -13
  417. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +30 -17
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +6 -3
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  422. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +8 -1
  423. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -1
  424. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +55 -6
  425. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +6 -3
  426. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +2 -1
  427. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +8 -4
  428. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +1 -1
  429. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +4 -2
  430. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  431. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +4 -2
  432. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +30 -3
  433. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +24 -2
  434. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +4 -0
  435. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +2 -2
  436. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -3
  437. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +2 -1
  438. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +2 -1
  439. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +3 -2
  440. data/webpack/scenes/ContentViews/components/ContentViewSelect/helpers.js +32 -0
  441. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +52 -42
  442. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  443. data/webpack/scenes/ContentViews/components/FiltersAppliedIcon.js +17 -0
  444. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.js +45 -0
  445. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.scss +9 -0
  446. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  447. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +49 -22
  448. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +7 -1
  449. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +1 -0
  450. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +2 -0
  451. data/webpack/scenes/Hosts/ChangeContentSource/index.js +2 -0
  452. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +1 -0
  453. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +1 -0
  454. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  455. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +2 -0
  456. data/webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js +6 -1
  457. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  458. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -0
  459. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +1 -0
  460. data/webpack/scenes/RedHatRepositories/helpers.js +2 -0
  461. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -1
  462. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  463. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +4 -4
  464. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap +1 -0
  465. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +2 -0
  466. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +4 -0
  467. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +2 -1
  468. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +5 -4
  469. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +1 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +1 -1
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -1
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -0
  473. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +1 -0
  474. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +1 -1
  475. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +5 -6
  476. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +60 -5
  477. data/webpack/utils/useKatelloDocUrl.js +18 -0
  478. metadata +163 -22
  479. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  480. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  481. data/webpack/components/extensions/HostDetails/common/KatelloAgentDeprecationAlert.js +0 -23
@@ -0,0 +1 @@
1
+ locales['katello'] = locales['katello'] || {}; locales['katello']['ko'] = {"domain":"katello","locale_data":{"katello":{"":{"Project-Id-Version":"katello 2.4.0-RC1","Report-Msgid-Bugs-To":"","PO-Revision-Date":"2017-12-19 20:14+0000","Last-Translator":"진선재, 2022","Language-Team":"Korean (https://www.transifex.com/foreman/teams/114/ko/)","MIME-Version":"1.0","Content-Type":"text/plain; charset=UTF-8","Content-Transfer-Encoding":"8bit","Language":"ko","Plural-Forms":"nplurals=1; plural=0;","lang":"ko","domain":"katello","plural_forms":"nplurals=1; plural=0;"},"\\n* Product = '%{product}', Repository = '%{repository}'":[""]," %{errata_count} Errata":[""]," %{modulemd_count} Module Stream(s)":[""]," %{package_count} Package(s)":[""]," Content view updated":[""]," DEBs":[""]," Either select the latest content view or the content view version. Cannot set both.":[""]," RPMs":[""]," The base path can be a web address or a filesystem location.":[""]," The base path must be a web address pointing to the root RHUI content directory.":[""]," View task details ":[""]," ago":[""]," ago.":[""]," and":[""]," are out of the environment path order. The recommended practice is to promote to the next environment in the path.":[""]," content view is used in listed composite content views.":[""]," content view is used in listed content views. For more information, ":[""]," environment cannot be set to an environment already on its path":["환경은 이미 경로에 있는 환경에 설정할 수 없음 "]," found.":[""]," is out of the environment path order. The recommended practice is to promote to the next environment in the path.":[""]," or any step on the left.":[""]," to manage and promote content views, or select a different environment.":[""],"${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}":[""],"${option}":[""],"${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in ":[""],"${pluralize(hostResponse.length, 'host')} will be moved to content view ${selectedCVNameForHosts} in ":[""],"${pluralize(versionCount, 'content view version')} in the environments below will be removed when content view is deleted":[""],"${selectedContentType}":[""],"${selectedContentType} will appear here when created.":[""],"%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?":[""],"%s Available":["%s 사용 가능"],"%s Errata":["%s 에라타 "],"%s Host":["",""],"%s Used":["%s 사용됨"],"%s ago":["%s 전 "],"%s guests":[""],"%s has already been deleted":[""],"%s is not a valid package name":["%s은(는) 유효한 패키지 이름이 아닙니다 "],"%s is not a valid path":[""],"%s is required":[""],"%s is unreachable. %s":[""],"%{errata} (%{total} other errata)":["%{errata} (%{total} 기타 에라타)"],"%{errata} (%{total} other errata) install canceled":["%{errata} (%{total} 기타 에라타) 설치 취소됨 "],"%{errata} (%{total} other errata) install failed":["%{errata} (%{total} 기타 에라타) 설치 실패함"],"%{errata} (%{total} other errata) install timed out":["%{errata} (%{total} 기타 에라타) 설치 시간 초과 "],"%{errata} (%{total} other errata) installed":["%{errata} (%{total} 기타 에라타) 설치됨 "],"%{errata} erratum install canceled":["%{errata} 에라타 설치 취소됨 "],"%{errata} erratum install failed":["%{errata} 에라타 설치 실패함 "],"%{errata} erratum install timed out":["%{errata} 에라타 설치 시간 초과 "],"%{errata} erratum installed":["%{errata} 에라타 설치됨 "],"%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content.":[""],"%{group} (%{total} other package groups)":["%{group} (%{total} 기타 패키지 그룹)"],"%{group} (%{total} other package groups) install canceled":["%{group} (%{total} 기타 패키지 그룹) 설치 취소됨 "],"%{group} (%{total} other package groups) install failed":["%{group} (%{total} 기타 패키지 그룹) 설치 실패함 "],"%{group} (%{total} other package groups) install timed out":["%{group} (%{total} 기타 패키지 그룹) 설치 시간 초과 "],"%{group} (%{total} other package groups) installed":["%{group} (%{total} 기타 패키지 그룹) 설치됨 "],"%{group} (%{total} other package groups) remove canceled":["%{group} (%{total} 기타 패키지 그룹) 삭제 취소됨 "],"%{group} (%{total} other package groups) remove failed":["%{group} (%{total} 기타 패키지 그룹) 삭제 실패함 "],"%{group} (%{total} other package groups) remove timed out":["%{group} (%{total} 기타 패키지 그룹) 삭제 시간 초과 "],"%{group} (%{total} other package groups) removed":["%{group} (%{total} 기타 패키지 그룹) 삭제됨 "],"%{group} (%{total} other package groups) update canceled":["%{group} (%{total} 기타 패키지 그룹) 업데이트 취소됨"],"%{group} (%{total} other package groups) update failed":["%{group} (%{total} 기타 패키지 그룹) 업데이트 실패함 "],"%{group} (%{total} other package groups) update timed out":["%{group} (%{total} 기타 패키지 그룹) 업데이트 시간 초과 "],"%{group} (%{total} other package groups) updated":["%{group} (%{total} 기타 패키지 그룹) 업데이트됨 "],"%{group} package group install canceled":["%{group} 패키지 그룹 설치 취소됨 "],"%{group} package group install failed":["%{group} 패키지 그룹 설치 실패함 "],"%{group} package group install timed out":["%{group} 패키지 그룹 설치 시간 초과 "],"%{group} package group installed":["%{group} 패키지 그룹 설치됨 "],"%{group} package group remove canceled":["%{group} 패키지 그룹 삭제 취소됨 "],"%{group} package group remove failed":["%{group} 패키지 그룹 삭제 실패함 "],"%{group} package group remove timed out":["%{group} 패키지 그룹 삭제 시간 초과 "],"%{group} package group removed":["%{group} 패키지 그룹 삭제됨 "],"%{group} package group update canceled":["%{group} 패키지 그룹 업데이트 취소됨 "],"%{group} package group update failed":["%{group} 패키지 그룹 업데이트 실패함 "],"%{group} package group update timed out":["%{group} 패키지 그룹 업데이트 시간 초과 "],"%{group} package group updated":["%{group} 패키지 그룹 업데이트됨 "],"%{package} (%{total} other packages)":["%{package} (%{total} 기타 패키지)"],"%{package} (%{total} other packages) install canceled":["%{package} (%{total} 기타 패키지) 설치 취소됨 "],"%{package} (%{total} other packages) install failed":["%{package} (%{total} 기타 패키지) 설치 실패함 "],"%{package} (%{total} other packages) install timed out":["%{package} (%{total} 기타 패키지) 설치 시간 초과 "],"%{package} (%{total} other packages) installed":["%{package} (%{total} 기타 패키지) 설치됨 "],"%{package} (%{total} other packages) remove canceled":["%{package} (%{total} 기타 패키지) 삭제 취소됨 "],"%{package} (%{total} other packages) remove failed":["%{package} (%{total} 기타 패키지) 삭제 실패함 "],"%{package} (%{total} other packages) remove timed out":["%{package} (%{total} 기타 패키지) 삭제 시간 초과 "],"%{package} (%{total} other packages) removed":["%{package} (%{total} 기타 패키지) 삭제됨 "],"%{package} (%{total} other packages) update canceled":["%{package} (%{total} 기타 패키지) 업데이트 취소됨 "],"%{package} (%{total} other packages) update failed":["%{package} (%{total} 기타 패키지) 업데이트 실패함 "],"%{package} (%{total} other packages) update timed out":["%{package} (%{total} 기타 패키지) 업데이트 시간 초과 "],"%{package} (%{total} other packages) updated":["%{package} (%{total} 기타 패키지) 업데이트됨 "],"%{package} package install canceled":["%{package} 패키지 설치 취소됨 "],"%{package} package install timed out":["%{package} 패키지 설치 시간 초과 "],"%{package} package remove canceled":["%{package} 패키지 삭제 취소됨 "],"%{package} package remove failed":["%{package} 패키지 삭제 실패함 "],"%{package} package remove timed out":["%{package} 패키지 삭제 시간 초과 "],"%{package} package removed":["%{package} 패키지 삭제됨 "],"%{package} package update canceled":["%{package} 패키지 업데이트 취소됨 "],"%{package} package update failed":["%{package} 패키지 업데이트 실패함 "],"%{package} package update timed out":["%{package} 패키지 업데이트 시간 초과 "],"%{package} package updated":["%{package} 패키지 업데이트됨 "],"%{sla}":["%{sla}"],"%{subject}'s disk is %{percentage} full. Since this proxy is running Pulp, it needs disk space to publish content views. Please ensure the disk does not get full.":[""],"%{unused_substitutions} cannot be specified for %{content_name} as that information is not substitutable in %{content_url} ":[""],"%{used} of %{total}":["%{used}(총: %{total})"],"%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!":[""],"'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. ":[""],"'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. ":[""],"'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. ":[""],"'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. ":[""],"'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. ":[""],"'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. ":[""],"(Orphaned)":["(종속된 패키지가 없음)"],"(unset)":[""],", and":[""],", must be unique to major and version id version.":[""],": '%s' is a built-in environment":[": '%s'는 내장된 환경입니다 "],":a_resource identifier":[":a_resource 식별자 "],"<b>PROMOTION</b> SUMMARY":["<b>승격</b> 요약"],"<b>SYNC</b> SUMMARY":["<b>동기화</b> 요약"],"A CV version already exists with the same major and minor version (%{major}.%{minor})":[""],"A Pool and its Subscription cannot belong to different organizations.":[""],"A backend service [ %s ] is unreachable":["백엔드 서비스 [ %s ]를 사용할 수 없음 "],"A content_type must be provided.":["content_type을 지정해야 합니다. "],"A large number of errata are unapplied in this content view, so only the first 100 are shown.":["다수의 에라타가 이 컨텐츠 뷰에 적용되지 않아 처음 100 항목만 표시합니다. "],"A large number of errata were synced for this repository, so only the first 100 are shown.":["다수의 에라타가 이 리포지터리에 대해 동기화되어 있어 처음 100 항목만 표시합니다."],"A list of subscriptions expiring soon":[""],"A new version of ":[""],"A post-promotion summary of hosts with installable errata":["설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "],"A remote execution job is in progress":[""],"A remote execution job is in progress.":[""],"A service level for auto-healing process, e.g. SELF-SUPPORT":["auto-healing 프로세스의 서비스 레벨. 예: SELF-SUPPORT"],"A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running.":[""],"A summary of available and applicable errata for your hosts":["호스트에 사용 가능하고 적용 가능한 에라타 요약 "],"A summary of new errata after a repository is synchronized":["리포지터리를 동기화한 후 새 에라타 요약 "],"ANY":[""],"About page":[""],"Abstract":[""],"Abstract async task":["비동기 작업 개요"],"Accept action timeout":[""],"Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'.":[""],"Account Number":["계정 번호 "],"Action":["동작 "],"Action not allowed for the default smart proxy.":[""],"Action unauthorized to be performed in this organization.":[""],"Action with sub plans":["하위 계획이 있는 작업"],"Activation Keys":["활성키 "],"Activation key":[""],"Activation key ID":["활성키 ID"],"Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead.":[""],"Activation key(s) for Subscription Manager.":[""],"Activation keys":[""],"Activation keys and subscriptions can be managed":["활성키 및 서브스크립션을 관리할 수 있습니다 "],"Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys.":[""],"Activation keys: ":[""],"Active Subscriptions":["활성 서브스크립션"],"Active only":["활성화된 경우에만 "],"Add":["추가 "],"Add Bookmark":["북마크 추가 "],"Add DEB rule":[""],"Add RPM rule":[""],"Add Subscriptions":[""],"Add Subscriptions using the Add Subscriptions button.":[""],"Add a subscription to a host":["호스트에 서브스크립션 추가"],"Add an alternate content source":[""],"Add components to the content view":[""],"Add content":[""],"Add content view":[""],"Add content views":[""],"Add custom cron logic for sync plan":[""],"Add errata":[""],"Add filter rule":[""],"Add host to collections":[""],"Add host to host collections":[""],"Add host to the host collection":["호스트 컬렉션에 호스트 추가"],"Add lifecycle environments to the smart proxy":[""],"Add new bookmark":[""],"Add one or more host collections to one or more hosts":["하나 이상의 호스트에 하나 이상의 호스트 컬렉션 추가"],"Add ons":["추가 기능"],"Add products to sync plan":["동기화 계획에 제품 추가 "],"Add repositories":[""],"Add repositories with package groups to content view to select them here.":[""],"Add rule":[""],"Add source":[""],"Add subscriptions":[""],"Add subscriptions consumed by a manifest from Red Hat Subscription Management":[""],"Add subscriptions to one or more hosts":[""],"Add to a host collection":[""],"Add-ons":[""],"Added":[""],"Added %s":[""],"Added Content:":["추가된 컨텐츠: "],"Added component to content view":[""],"Additional content":[""],"Addons":[""],"Affected Repositories":[""],"Affected repositories":[""],"After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently.":["증분 업데이트를 생성한 후 지정한 호스트에 변경 내용을 적용합니다. 현재 에라타만 지원됩니다."],"Agent action":[""],"All":["모두"],"All Media":[""],"All Repositories":["전체 리포지터리 "],"All available architectures for this repo are enabled.":[""],"All errata applied":["적용된 모든 에라타"],"All errata up-to-date":[""],"All subpaths must have a slash at the end and none at the front":[""],"All up to date":[""],"All versions":[""],"All versions will be removed from these environments":[""],"Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)":[""],"Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'.":[""],"Allow deleting repositories in published content views":[""],"Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode.":[""],"Allow hosts to re-register themselves only when they are in build mode":[""],"Allow multiple content views":[""],"Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host.":[""],"Also include the latest upgradable package version for each host package":[""],"Alter a host's host collections":[""],"Alternate Content Source HTTP Proxy":[""],"Alternate Content Sources":["대체 콘텐츠 소스"],"Alternate content source ${name} created":[""],"Alternate content source ID":[""],"Alternate content source deleted":[""],"Alternate content source edited":[""],"Alternate content sources define new locations to download content from at repository or smart proxy sync time.":[""],"Alternate content sources use the HTTP proxy of their assigned smart proxy for communication.":[""],"Always Use Latest (currently %{version})":[""],"Always update to latest version":[""],"Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required.":[""],"An alternate content source can be added by using the \\\"Add source\\\" button below.":[""],"An environment is missing a prior":[""],"An error occurred during the sync \\n%{error_message}":["동기화하는 도중 오류가 발생했습니다. \\n%{error_message}"],"An error occurred during upload \\n%{error_message}":[""],"Another component already includes content view with ID %s":[""],"Ansible Collection":[""],"Ansible Collections":["권한 컬렉션"],"Ansible collection":[""],"Ansible collections":[""],"Applicability Batch Size":[""],"Applicable":["적용 가능 "],"Applicable Content Hosts":["적용 가능한 콘텐츠 호스트"],"Applicable errata apply to at least one package installed on the host.":[""],"Application":["애플리케이션 "],"Apply":["적용"],"Apply Erratum":[""],"Apply to all repositories in the CV":[""],"Apply to subset of repositories":[""],"Apply via Katello agent":[""],"Apply via customized remote execution":[""],"Apply via remote execution":[""],"Arch":["아키텍처 "],"Architecture":["아키텍처 "],"Architecture of content in the repository":[""],"Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host.":[""],"Architecture(s)":["아키텍처 "],"Are you sure you want to delete %(entitlementCount)s subscription(s)? This action will remove the subscription(s) and refresh your manifest. All systems using these subscription(s) will lose them and also may lose access to updates and Errata.":[""],"Are you sure you want to delete the manifest?":[""],"Array of Content override parameters":[""],"Array of Content override parameters to be added in bulk":[""],"Array of Pools to be updated. Only pools originating upstream are accepted.":[""],"Array of Trace IDs":[""],"Array of components to add":[""],"Array of content view component IDs to remove. Identifier of the component association":[""],"Array of host ids":["호스트 ID의 배열"],"Array of local pool IDs. Only pools originating upstream are accepted.":[""],"Array of pools to add":[""],"Array of subscriptions to add":["추가할 서브스크립션 어레이 "],"Array of subscriptions to remove":["삭제할 서브스크립션 배열"],"Array of uploads to import":[""],"Artifact Id and relative path are needed to create content":[""],"Artifacts":[""],"Assign system purpose attributes on one or more hosts":[""],"Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}":["%{taxonomy_single}이 없는 %{count} 호스트를 %{taxonomy_name}에 할당합니다 "],"Assign the environment and content view to one or more hosts":[""],"Assign the release version to one or more hosts":[""],"Associated location IDs":[""],"Associated version":[""],"Associations":["연결 "],"At least one Content View Version must be specified":["최소 하나의 컨텐츠 뷰 버전을 지정해야 합니다 "],"At least one activation key must be provided":["최소 하나의 활성키가 필요합니다. "],"At least one activation key must have a lifecycle environment and content view assigned to it":["최소 하나의 활성키가 라이프 사이클 환경에 필요하며, 콘텐츠 뷰를 이에 할당해야 합니다 "],"At least one organization must exist.":["최소 하나의 조직이 존재해야 합니다. "],"Atleast one errata type needs to be selected.":[""],"Attach a subscription":["서브스크립션 첨부 "],"Attach subscriptions":["서브스크립션 연결"],"Attach subscriptions to %s":["%s에 서브스크립션 연결"],"Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin":[""],"Auth URL requires Auth token be set.":[""],"Authentication type":[""],"Author":["작성자"],"Auto Publish - Triggered by '%s'":[""],"Auto attach subscriptions":["서브스크립션 자동 첨부"],"Auto publish":[""],"Autopublish":[""],"Available":[""],"Available Entitlements":[""],"Available Repositories":[""],"Available Schema Versions":["사용 가능한 스키마 버전"],"Back":["뒤로 "],"Backend System Status":["백엔드 시스템 상태 "],"Base URL":[""],"Base URL for finding alternate content":[""],"Base URL to perform repo discovery on":[""],"Basearch to disable":["비활성화할 Basearch "],"Basearch to enable":["활성화할 Basearch "],"Basic authentication password":[""],"Basic authentication username":[""],"Batch size to sync repositories in.":[""],"Before removing versions you must move activation keys to an environment where the associated version is not in use.":[""],"Before removing versions you must move hosts to an environment where the associated version is not in use. ":[""],"Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host.":[""],"Beta":["베타 "],"Bind an entitlement to an allocation":[""],"Bind entitlements to an allocation":[""],"Bookmark this search":["이 검색을 북마크 "],"Bookmarks marked as public are available to all users":[""],"Both":[""],"Both major and minor parameters have to be used to override a CV version":[""],"Bug Fix":["버그 수정"],"Bugfix":["버그 수정 "],"Bugs":[""],"Bulk alternate content source delete has started.":[""],"Bulk alternate content source refresh has started.":[""],"Bulk generate applicability for host %s":[""],"Bulk generate applicability for hosts":[""],"Bulk remove versions from a content view and reassign systems and keys":[""],"CDN Configuration":[""],"CDN Configuration for Red Hat Content":[""],"CDN Configuration updated.":[""],"CDN SSL version":[""],"CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page.":[""],"CDN configuration type. One of %s.":[""],"CDN loading error: %s not found":["CDN 로딩 중 오류 발생: %s을 찾을 수 없음 "],"CDN loading error: access denied to %s":["CDN 로딩 중 오류 발생: %s로 액세스 거부됨 "],"CDN loading error: access forbidden to %s":["CDN 로딩 중 오류 발생: %s로 액세스 금지됨 "],"CVE identifier":["CVE 식별자 "],"CVEs":["CVE"],"Calculate Applicable Errata based on a particular Content View":["특정 컨텐츠 뷰를 기반으로 적용 가능한 에라타 계산 "],"Calculate Applicable Errata based on a particular Environment":["특정 환경을 기반으로 적용 가능한 에라타 계산 "],"Can communicate with the Red Hat Portal for subscriptions.":[""],"Can only remove content from within the Default Content View":["기본값 컨테츠 뷰에 있는 컨텐츠만 삭제할 수 있습니다 "],"Can't update the '%s' environment":["'%s' 환경을 업데이트할 수 없음 "],"Cancel":["취소 "],"Cancel repository discovery":["리포지터리 검색 취소 "],"Cancel running smart proxy synchronization":[""],"Canceled":["취소함"],"Cancelled.":["취소되었습니다."],"Candlepin":[""],"Candlepin Event":["Candlepin 이벤트 "],"Candlepin ID of pool to add":[""],"Candlepin consumer %s has already been removed":[""],"Candlepin is not running properly":[""],"Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet.":[""],"Cannot add %s repositories to a content view.":["컨텐츠 뷰에 %s 리포지터리를 추가할 수 없습니다. "],"Cannot add a repository from an Organization other than %s.":["%s 이외의 조직에서 리포지터리를 추가할 수 없습니다. "],"Cannot add component versions to a non-composite content view":["비-복합적인 컨텐츠 뷰에 구성 요소 버전을 추가할 수 있습니다 "],"Cannot add composite versions to a composite content view":["복합적인 컨텐츠 뷰에 복합 버전을 추가할 수 없습니다 "],"Cannot add composite versions to another composite content view":["다른 복합적인 컨텐츠 뷰에 복합 버전을 추가할 수 없습니다 "],"Cannot add default content view to composite content view":["복합적인 컨텐츠 뷰에 기본 컨텐츠 뷰를 추가할 수 없습니다 "],"Cannot add generated content view versions to composite content view":[""],"Cannot add product %s because it is disabled.":[""],"Cannot add repositories to a composite content view":["복합적인 컨텐츠 뷰에 리포지터리를 추가할 수 없습니다 "],"Cannot associate a Red Hat provider with a custom product":[""],"Cannot associate a component to a non composite content view":[""],"Cannot calculate name for custom repos":[""],"Cannot clone into the Default Content View":[""],"Cannot delete '%{view}' due to associated %{dependent}: %{names}.":["연결된 %{dependent}로 인해 '%{view}'를 삭제할 수 없습니다: %{names}"],"Cannot delete Red Hat product: %{product}":[""],"Cannot delete from %s, view does not exist there.":["%s에서 삭제할 수 없습니다, 보기는 여기에 존재하지 않습니다."],"Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}":[""],"Cannot delete provider with attached products":["할당된 제품을 갖는 공급자를 삭제할 수 없습니다 "],"Cannot delete redhat product content":[""],"Cannot delete the default Location for subscribed hosts. If you no longer want this Location, change the default Location for subscribed hosts under Administer > Settings, tab Content.":[""],"Cannot delete the last Location.":[""],"Cannot delete version while it is in environment %s":["%s 환경에 있는 버전을 삭제할 수 없습니다"],"Cannot delete version while it is in environments: %s":["환경에 있는 버전을 삭제할 수 없습니다: %s"],"Cannot delete version while it is in use by composite content views: %s":["복합 컨텐츠 뷰에 사용 중인 동안에는 버전을 삭제할 수 없습니다: %s"],"Cannot delete view while it exists in environments":["뷰가 환경에서 있어 삭제할 수 없습니다 "],"Cannot import a composite content view":[""],"Cannot import a custom subscription from a redhat product.":[""],"Cannot incrementally export from a filtered and a non-filtered content view version. The exported content view version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}.'. Please do a full export.":[""],"Cannot incrementally export from a incrementally exported version and a regular version or vice-versa. The exported Content View Version '%{content_view} %{current}' cannot be incrementally exported from version '%{from}.' Please do a full export.":[""],"Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}":["복합 컨텐츠 뷰 버전 (%{name} 버전 버전 %{version}에서 증분 업데이트를 수행할 수 없습니다"],"Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}":[""],"Cannot promote environment out of sequence. Use force to bypass restriction.":["순서에 없는 환경을 승격할 수 없습니다. 강제를 사용하여 제한을 무시합니다. "],"Cannot publish a composite with rpm filenames":[""],"Cannot publish a link repository if multiple component clones are specified":[""],"Cannot publish default content view":["기본 컨텐츠 뷰를 공개할 수 없습니다 "],"Cannot register a system to the '%s' environment":["'%s' 환경에 시스템을 등록할 수 없음 "],"Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}.":["연결된 %{dependent}로 인해 환경 '%{env}'에서 '%{view}'을(를) 삭제할 수 없습니다: %{names}"],"Cannot remove content from a non-custom repository":["비-사용자 지정 리포지터리에서 컨텐츠를 삭제할 수 없습니다 "],"Cannot remove content view from environment. Content view '%{view}' is not in lifecycle environment '%{env}'.":["환경에서 컨텐츠 뷰를 삭제할 수 없습니다. 컨텐츠 뷰 '%{view}'는 라이프 사이클 환경 '%{env}'에 없습니다. "],"Cannot set attribute %{attr} for content type %{type}":[""],"Cannot set auto publish to a non-composite content view":[""],"Cannot skip metadata check on non-yum/deb repositories.":[""],"Cannot specify components for non-composite views":["비-복합적 뷰의 구성 요소를 지정할 수 없습니다"],"Cannot specify content for composite views":["복합적 뷰의 컨텐츠를 지정할 수 없습니다 "],"Cannot sync file:// repositories with the On Demand Download Policy":[""],"Cannot upload Ansible collections.":[""],"Cannot upload Container Image content.":[""],"Cannot validate contents on non-yum/deb repositories.":[""],"Capacity":["용량 "],"Change Content Source":[""],"Change content source":[""],"Change host content source":[""],"Check audited changes and proceed only if content or filters have changed since last publish":[""],"Check if a connection can be made to Red Hat Subscription Management.":[""],"Check if the specified organization has Simple Content Access enabled":[""],"Check if the specified organization is eligible for Simple Content Access":[""],"Check services before actions":[""],"Checksum":["체크섬 "],"Checksum is a required parameter.":[""],"Checksum of file to upload":[""],"Checksum of the repository, currently 'sha1' & 'sha256' are supported":[""],"Checksum type cannot be set for yum repositories with on demand download policy.":[""],"Choose content credentials if required for this RHUI source.":[""],"Clear any previous registration and run subscription-manager with --force.":[""],"Clear filters":[""],"Clear search":[""],"Click here to go to the tasks page for the task.":[""],"Click to see repositories available to add.":[""],"Click {update} below to save changes.":[""],"Clone":["복제(Clone)"],"Close":["종료 "],"Collapse All":["모두 축소"],"Combined Profile Update":[""],"Combined Profile Update for %s":[""],"Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front.":[""],"Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \\\"-source\\\"":[""],"Comma-separated list of tags to sync for Container Image repository (Deprecated)":[""],"Comma-separated list of tags to sync for a container image repository":[""],"Compare":[""],"Component":["구성 요소 "],"Component Content View":[""],"Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' ":[""],"Components":["구성 요소"],"Composite":["복합 "],"Composite Content View":[""],"Composite Content View '%{subject}' failed auto-publish":[""],"Composite content view":["복합적인 컨텐츠 뷰 "],"Composite content views":[""],"Compute resource IDs":["컴퓨터 리소스 ID "],"Confirm Deletion":[""],"Confirm delete manifest":[""],"Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific.":[""],"Consisting of multiple content views":[""],"Consists of content views":[""],"Consists of repositories":[""],"Consumed":["사용됨 "],"Container Image Manifest":["컨테이너 이미지 매니페스트"],"Container Image Repositories are not protected at this time. They need to be published via http to be available to containers.":[""],"Container Image Tag":[""],"Container Image Tags":["컨테이너 이미지 태그"],"Container Image repo '%{repo}' is present in multiple component content views.":[""],"Container Images":[""],"Container image tag":[""],"Container image tags":[""],"Container manifest lists":[""],"Container manifests":[""],"Container tags":[""],"Content":["컨텐츠"],"Content Count":[""],"Content Credential ID":[""],"Content Credential numeric identifier":[""],"Content Credential to use for SSL CA. Relevant only for 'upstream_server' type.":[""],"Content Credentials":["컨텐츠 인증 정보"],"Content Details":[""],"Content Download URL":["컨텐츠 다운로드 URL"],"Content Facet for host with id %s is non-existent. Skipping applicability calculation.":[""],"Content Hosts":["컨텐츠 호스트 "],"Content Source":["컨텐츠 소스 "],"Content Sync":["컨텐츠 동기화"],"Content Types":[""],"Content View":["컨텐츠 보기 "],"Content View %{view}: Versions: %{versions}":[""],"Content View Details":[""],"Content View Filter id":["컨텐츠 보기 개요"],"Content View Filter identifier":[""],"Content View ID":["컨텐츠 뷰 ID"],"Content View Name":["컨텐츠 뷰 이름 "],"Content View Version %{id} not in all specified environments %{envs}":["컨텐츠 뷰 버전 %{id}이 모든 지정된 환경 %{envs}에 없습니다 "],"Content View Version Ids to perform an incremental update on. May contain composites as well as one or more components to update.":["증분 업데이트를 수행하기 위한 컨텐츠 뷰 버전 ID입니다. 복합 및 업데이트할 하나 이상의 구성 요소가 포함될 수 있습니다."],"Content View Version identifier":[""],"Content View Version not set":[""],"Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. ":[""],"Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' ":[""],"Content View id":[""],"Content View label not provided.":[""],"Content Views":["컨텐츠 보기 "],"Content cannot be imported into a Composite Content View. ":[""],"Content credential":[""],"Content credentials":[""],"Content facet for host %s has more than one content view. Use #content_views instead.":[""],"Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead.":[""],"Content files to upload. Can be a single file or array of files.":["업로드할 컨텐츠 파일입니다. 단일 파일 또는 파일 어레이를 지정할 수 있습니다."],"Content host must be unregistered before performing this action.":[""],"Content hosts":[""],"Content imported by %{user} into content view '%{name}'":[""],"Content not uploaded to pulp":[""],"Content override search parameters":[""],"Content source":[""],"Content source ID":[""],"Content source was not set for host '%{host}'":[""],"Content type":[""],"Content type %{content_type_string} does not belong to an enabled repo type.":[""],"Content type %{content_type} is incompatible with repositories of type %{repo_type}":[""],"Content view":[""],"Content view ${name} created":[""],"Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys.":[""],"Content view '%{view}' is not in environment '%{env}'":["컨텐츠 보기 '%{view}'가 환경 '%{env}'에 있지 않습니다 "],"Content view '%{view}' is not in lifecycle environment '%{env}'.":["컨텐츠 뷰 '%{view}'가 라이프사이클 환경 '%{env}'에 없습니다. "],"Content view ID":[""],"Content view and environment not set for registration.":[""],"Content view details":[""],"Content view does not need a publish since there are no audited changes since the last publish. Pass check_needs_publish parameter as false if you don't want to check if content view needs a publish.":[""],"Content view environments and activation key must all belong to the same organization":[""],"Content view environments must have both a content view and an environment":[""],"Content view has repository label '%s' which is not specified in repos_units parameter.":[""],"Content view identifier":["컨텐츠 뷰 ID "],"Content view label":["컨텐츠 뷰 레이블 "],"Content view must be specified":[""],"Content view name":[""],"Content view not provided in the metadata":[""],"Content view numeric identifier":["숫자로된 컨텐츠 뷰 ID "],"Content view version export history identifier":[""],"Content view version identifier":["컨텐츠 뷰 버전 ID "],"Content view version import history identifier":[""],"Content views":[""],"Content will be synced from the alternate content source first, then the original source if the ACS is not reachable.":[""],"Content_Host_Status":[""],"Contents of requirement yaml file to sync from URL":[""],"Context":["컨텍스트"],"Contract":["계약 "],"Contract Number":["계약 번호 "],"Copied to clipboard":[""],"Copy":[""],"Copy an activation key":["활성키 복사 "],"Copy content view":[""],"Copy to clipboard":[""],"Copy version units to library":[""],"Cores per socket":["소켓당 코어 수 "],"Cores: %s":["코어: %s"],"Could not delete organization '%s'.":["조직 '%s'을 삭제할 수 없음. "],"Could not find %{content} with id '%{id}' in repository.":["리포지터리에서 id '%{id}'를 갖는 %{content}을(를) 찾을 수 없습니다. "],"Could not find %{count} errata. Only found: %{found}":["%{count}개 에라타를 찾을 수 없습니다. 다음 항목만 검색되었습니다: %{found}"],"Could not find %{name} resource with id %{id}. %{perms_message}":[""],"Could not find %{name} resources with ids %{ids}":[""],"Could not find Environment with ids: %s":["다음의 ID를 갖는 환경을 찾을 수 없습니다: %s"],"Could not find Lifecycle Environment with id '%{id}'.":["id '%{id}'인 라이프 사이클 환경을 찾을 수 없습니다."],"Could not find a host with id %s":[""],"Could not find a smart proxy with pulp feature.":[""],"Could not find all specified errata ids: %s":["다음에 지정된 모든 에라타 ID를 찾을 수 없습니다: %s"],"Could not find environments for promotion":[""],"Could not remove the lifecycle environment from the smart proxy":[""],"Couldn't establish a connection to %s":[""],"Couldn't find %{content_type} with id '%{id}'":[""],"Couldn't find %{type} Filter with id %{id}":["ID %{id}인 %{type} 필터를 찾을 수 없습니다 "],"Couldn't find ContentViewFilter with id=%s":[" id=%s인 컨텐츠 뷰 필터를 찾을 수 없습니다 "],"Couldn't find Organization '%s'.":["조직 '%s'을 찾을 수 없습니다."],"Couldn't find activation key '%s'":["활성키 '%s'를 찾을 수 없음 "],"Couldn't find activation key content view id '%s'":["활성키 컨텐츠 뷰 ID '%s'를 찾을 수 없습니다 "],"Couldn't find activation key environment '%s'":["활성키 환경 '%s'을(를) 찾을 수 없습니다 "],"Couldn't find consumer '%s'":["컨슈머 '%s'을(를) 찾을 수 없습니다 "],"Couldn't find content host content view id '%s'":["컨텐츠 호스트 컨텐츠 뷰 ID '%s'를 찾을 수 없습니다 "],"Couldn't find content host environment '%s'":["컨텐츠 호스트 환경 '%s'을 찾을 수 없습니다 "],"Couldn't find content view '%s'":["컨텐츠 보기 '%s'를 찾을 수 없음 "],"Couldn't find content view version '%s'":["컨텐츠 뷰 버전 '%s'을 찾을 수 없습니다 "],"Couldn't find content view versions '%s'":["컨텐츠 뷰 버전 '%s'을 찾을 수 없습니다 "],"Couldn't find content view with id: '%s'":[""],"Couldn't find environment '%s'":["환경 '%s'을 찾을 수 없음 "],"Couldn't find errata ids '%s'":["에라타 ID '%s'을/를 찾을 수 없음 "],"Couldn't find host collection '%s'":["호스트 컬렉션 '%s'을 찾을 수 없습니다 "],"Couldn't find host with host id '%s'":["호스트 ID가 '%s'인 호스트를 찾을 수 없습니다."],"Couldn't find organization '%s'":["조직 '%s'을 찾을 수 없음 "],"Couldn't find prior-environment '%s'":["이전 환경 '%s'을 찾을 수 없습니다 "],"Couldn't find product with id '%s'":["ID '%s'인 제품을 찾을 수 없음 "],"Couldn't find products with id '%s'":[""],"Couldn't find repository '%s'":["리포지터리 '%s'를 찾을 수 없음 "],"Couldn't find smart proxies with id '%s'":[""],"Couldn't find smart proxies with name '%s'":[""],"Couldn't find specified content view and lifecycle environment.":[""],"Couldn't find subject of synchronization":["동기화 제목을 찾을 수 없음 "],"Count":["개수"],"Create":["생성 "],"Create ACS":[""],"Create Alternate Content Source":[""],"Create Export History":[""],"Create Import History":[""],"Create Repositories":[""],"Create Syncable Export History":[""],"Create a Content Credential":[""],"Create a content view":["컨텐츠 뷰 생성 "],"Create a custom product":[""],"Create a custom repository":["사용자 정의 리포지터리 생성 "],"Create a filter rule. The parameters included should be based upon the filter type.":["필터 규칙을 생성합니다. 포함된 매개 변수는 필터 유형에 기반해야 합니다. "],"Create a host collection":["호스트 컬렉션 생성 "],"Create a product":["제품 생성 "],"Create a sync plan":["동기화 계획 생성 "],"Create an activation key":["활성키 생성 "],"Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization.":[""],"Create an environment":["환경 생성 "],"Create an environment in an organization":["조직에 있는 환경 생성 "],"Create an upload request":["업로드 요청 생성 "],"Create content credentials with the generated SSL certificate and key.":[""],"Create content view":[""],"Create filter":[""],"Create host collection":[""],"Create new activation key":[""],"Create organization":["조직 생성 "],"Create package filter rule":[""],"Create rule":[""],"Credentials":[""],"Critical":["중요함"],"Cron expression is not valid!":[""],"Current organization does not have a manifest imported.":[""],"Current organization is not set.":[""],"Current organization not set.":[""],"Custom":[""],"Custom CDN":[""],"Custom Content Repositories":["사용자 정의 컨텐츠 리포지터리 "],"Custom cron expression only needs to be set for interval value of custom cron":[""],"Custom repositories cannot be disabled.":["사용자 정의 리포지터리를 비활성화할 수 없습니다. "],"Customize with Rex":[""],"DEB name":[""],"DEB package updates":[""],"Database connection":["데이터베이스 연결"],"Date":["날짜 "],"Date format is incorrect.":["날짜 형식이 잘못되었습니다. "],"Days Remaining":[""],"Days from Now":[""],"Deb":[""],"Deb Package":[""],"Deb Packages":["Deb 패키지"],"Deb name":[""],"Deb package identifiers to filter content by":[""],"Deb packages":[""],"Debug Certificate":["디버그 인증서 "],"Debug RPM":[""],"Default Custom Repository download policy":[""],"Default HTTP Proxy":[""],"Default HTTP proxy for syncing content":[""],"Default Location where new subscribed hosts will put upon registration":[""],"Default PXEGrub template for new Operating Systems created from synced content":[""],"Default PXEGrub2 template for new Operating Systems created from synced content":[""],"Default PXELinux template for new Operating Systems created from synced content":[""],"Default Red Hat Repository download policy":[""],"Default Smart Proxy download policy":[""],"Default System SLA":["기본값 시스템 SLA"],"Default content view versions cannot be promoted":["기본값 컨텐츠 뷰 버전은 승격할 수 없습니다 "],"Default download policy for Smart Proxy syncs (either 'inherit', immediate', or 'on_demand')":[""],"Default download policy for custom repositories (either 'immediate' or 'on_demand')":[""],"Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')":[""],"Default export format":[""],"Default export format for content-exports(either 'syncable' or 'importable')":[""],"Default finish template for new Operating Systems created from synced content":[""],"Default iPXE template for new Operating Systems created from synced content":[""],"Default kexec template for new Operating Systems created from synced content":[""],"Default location for subscribed hosts":[""],"Default partitioning table for new Operating Systems created from synced content":[""],"Default provisioning template for Operating Systems created from synced content":[""],"Default provisioning template for new Atomic Operating Systems created from synced content":[""],"Default synced OS Atomic template":[""],"Default synced OS PXEGrub template":[""],"Default synced OS PXEGrub2 template":[""],"Default synced OS PXELinux template":[""],"Default synced OS finish template":[""],"Default synced OS iPXE template":[""],"Default synced OS kexec template":[""],"Default synced OS partition table":[""],"Default synced OS provisioning template":[""],"Default synced OS user-data":[""],"Default user data for new Operating Systems created from synced content":[""],"Define RHUI repository paths with guided steps.":[""],"Define repositories structured under a common web or filesystem path.":[""],"Delete":["삭제 "],"Delete Activation Key":["활성키 삭제 "],"Delete Host upon unregister":[""],"Delete Lifecycle Environment":["라이프사이클 환경 삭제 "],"Delete Manifest":["매니페스트 삭제 "],"Delete Product":["제품 삭제 "],"Delete Upstream Subscription":[""],"Delete Version":[""],"Delete a content view":["컨텐츠 뷰 삭제 "],"Delete a filter rule":["필터 규칙 삭제 "],"Delete all subscriptions attached to activation keys.":[""],"Delete all subscriptions that are attached to running hosts.":[""],"Delete an organization":["조직 삭제 "],"Delete an upload request":["업로드 요청 삭제 "],"Delete content view":[""],"Delete manifest from Red Hat provider":["Red Hat 공급자에서 매니페스트 삭제 "],"Delete multiple filters from a content view":[""],"Delete version":[""],"Delete versions":[""],"Deleted consumer '%s'":["컨슈머 '%s'을(를) 삭제했습니다 "],"Deleted from ":[""],"Deleted from %{environment}":["%{environment}에서 삭제되었습니다 "],"Deleting content view : ":[""],"Deleting manifest in '%{subject}' failed.":[""],"Deleting version {versionList}":[""],"Deleting versions: {versionList}":[""],"Description":["설명 "],"Description for the alternate content source":[""],"Description for the content view":["컨텐츠 뷰 설명 "],"Description for the new published content view version":["새로 공개된 컨텐츠 뷰 버전 설명 "],"Description of the repository":[""],"Designate this Content View for importing from upstream servers only. Defaults to false":[""],"Desired quantity of the pool":[""],"Destination Server name":[""],"Destroy":["삭제 "],"Destroy Alternate Content Source":[""],"Destroy Content Host":["컨텐츠 호스트 삭제 "],"Destroy Content Host %s":[""],"Destroy a Content Credential":[""],"Destroy a custom repository":["사용자 정의 리포지터리 삭제 "],"Destroy a host collection":["호스트 컬렉션 삭제 "],"Destroy a product":["제품 삭제 "],"Destroy a sync plan":["동기화 계획 삭제 "],"Destroy an activation key":["활성키 삭제 "],"Destroy an alternate content source.":[""],"Destroy an environment":["환경 삭제 "],"Destroy an environment in an organization":["조직에서 환경 삭제 "],"Destroy one or more alternate content sources":[""],"Destroy one or more hosts":["하나 이상의 호스트 삭제"],"Destroy one or more products":["하나 이상의 제품 삭제 "],"Destroy one or more repositories":["하나 이상의 리포지터리 삭제 "],"Details":["상세 정보 "],"Determining settings for ${name}":[""],"Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite.":[""],"Directory containing the exported Content View Version":[""],"Disable":["비활성화 "],"Disable Red Hat Insights.":[""],"Disable Simple Content Access":[""],"Disable a repository from the set":[""],"Disable module stream":[""],"Disable simple content access for a manifest":[""],"Disabled":["사용 안함"],"Disabling Simple Content Access failed for '%{subject}'.":[""],"Discover":["검색"],"Discover Repositories":["리포지터리 검색 "],"Distribute archived content view versions":[""],"Do not include this array of content views":["컨텐츠 뷰의 어레이를 포함하지 않습니다 "],"Do not wait for the ImportUpload action to finish. Default: false":[""],"Do not wait for the update action to finish. Default: true":[""],"Domain IDs":["도메인 ID"],"Download Policy of the capsule, must be one of %s":[""],"Download a debug certificate":["디버그 인증서 다운로드 "],"Download rate limit":[""],"Duplicate artifact detected":[""],"Duration":["기간 "],"ERRATA ADVISORY":["에라타 권고"],"Edit":["편집 "],"Edit RPM rule":[""],"Edit URL and subpaths":[""],"Edit content view assignment":[""],"Edit credentials":[""],"Edit details":[""],"Edit filter rule":[""],"Edit package filter rule":[""],"Edit products":[""],"Edit rule":[""],"Edit smart proxies":[""],"Edit system purpose attributes":[""],"Editing Entitlements":[""],"Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified":["'content_view_id' 및 'environment_id' 매개 변수를 모두 지정하거나 또는 모두 지정하지 않거나 합니다"],"Either environments or versions must be specified.":["환경 또는 버전 중 하나를 지정해야 합니다. "],"Either organization ID or environment ID needs to be specified":["조직 ID 또는 환경 ID를 지정해야 함 "],"Either packages or groups must be provided":["패키지 또는 그룹을 지정해야 합니다."],"Either set the content view with the latest flag or set the content view version":[""],"Either set the latest content view or the content view version. Cannot set both":[""],"Empty content view versions":[""],"Enable":["활성화 "],"Enable Red Hat repositories":[""],"Enable Simple Content Access":[""],"Enable Tracer":[""],"Enable Traces":["추적 사용"],"Enable a repository from the set":["세트에서 리포지터리 활성화 "],"Enable repository sets":[""],"Enable simple content access for a manifest":[""],"Enable/Disable auto publish of composite view":[""],"Enabled":["활성화됨 "],"Enabled Repositories":["활성화된 리포지터리 "],"Enabling Simple Content Access failed for '%{subject}'.":[""],"Enabling will install the katello-host-tools-tracer package on the host.":[""],"End Date":["종료 날짜 "],"End date":[""],"Ends":["종료"],"Enhancement":["기능 강화"],"Enter a name":[""],"Enter a name for your source.":[""],"Enter a valid date: MM/DD/YYYY":[""],"Enter basic authentication information or choose content credentials if required for this source.":[""],"Enter in the base path and any subpaths that should be searched for alternate content.":[""],"Entitlements":[""],"Environment":["환경 "],"Environment IDs":["환경 ID"],"Environment cannot be in its own promotion path":["환경은 자체 승격 경로에 존재할 수 없음 "],"Environment identifier":[""],"Environments":["환경 "],"Epoch":[""],"Equal to":[""],"Errata":["에라타 "],"Errata - by date range":[""],"Errata ID":["에라타 ID"],"Errata Install":["에라타 설치 "],"Errata Install scheduled by %s":["%s에 의해 스케줄된 에라타 설치 "],"Errata and package information will be updated at the next host check-in or package action.":[""],"Errata and package information will be updated immediately.":[""],"Errata id of the erratum (RHSA-2012:108)":["에라타의 에라타 ID (RHSA-2012:108)"],"Errata mail":["에라타 메일"],"Errata to exclusively include in the action":[""],"Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well.":[""],"Errata type":[""],"Erratum":["에라타"],"Erratum Install Canceled":["에라타 설치 취소 "],"Erratum Install Complete":["에라타 설치 완료 "],"Erratum Install Failed":["에라타 설치를 실패했습니다"],"Erratum Install Timed Out":["에라타 설치 시간 초과 "],"Error":["오류 "],"Error connecting to Pulp service":["Pulp 서비스에 연결하는 도중 오류가 발생했습니다."],"Error connecting. Got: %s":["연결하는 도중 오류가 발생했습니다. 오류 메시지: %s"],"Error loading content views":[""],"Error refreshing status for %s: ":[""],"Error retrieving Pulp storage":["Pulp 스토리지를 가져오는 도중 오류가 발생하였습니다."],"Exceeds available quantity":[""],"Exclude":["제외 "],"Exclude all RPMs not associated to any errata":[""],"Exclude all module streams not associated to any errata":[""],"Exclude filter":[""],"Excluded":[""],"Excluded errata":[""],"Excludes":[""],"Exit":[""],"Expand All":["모두 확장 "],"Expire soon days":[""],"Export":["내보내기 "],"Export CSV":[""],"Export Library":[""],"Export Repository":[""],"Export Sync":[""],"Export Types":[""],"Export as CSV":[""],"Export formats.Choose syncable if the exported content needs to be in a yum format. This option is only available for %{syncable_repos} repositories. Choose importable if the importing server uses the same version and exported content needs to be one of %{importable_repos} repositories.":[""],"Export history identifier used for incremental export. If not provided the most recent export history will be used.":[""],"Exported content view":["내보낸 컨텐츠 뷰"],"Exported version":["내보낸 버전"],"Facts successfully updated.":["정보가 성공적으로 업데이트되었습니다. "],"Failed":["실패 "],"Failed to delete %{host}: %{errors}":[""],"Failed to delete latest content view version of Content View '%{subject}'.":[""],"Failed to find %{content} with id '%{id}'.":["id '%{id}'인 %{content} 검색에 실패했습니다. "],"Fails if any of the repositories belonging to this organization are unexportable. False by default.":[""],"Fails if any of the repositories belonging to this version are unexportable. False by default.":[""],"Fetch applicable errata for one or more hosts.":[""],"Fetch available module streams for hosts.":[""],"Fetch installable errata for one or more hosts.":[""],"Fetch pxe files":[""],"Fetch traces for one or more hosts":[""],"Fetching content credentials":[""],"Field to sort the results on":["결과를 정렬할 필드 "],"File":["파일"],"File contents":[""],"Filename":["파일 이름"],"Files":["파일"],"Filter by Product":[""],"Filter by type":[""],"Filter composite versions whose publish was triggered by the specified component version":[""],"Filter created":["필터가 생성되었습니다 "],"Filter deleted":["필터가 삭제되었습니다 "],"Filter edited":[""],"Filter only composite content views":["복합 컨텐츠 뷰만 필터링"],"Filter out composite content views":["복합적인 컨텐츠 뷰 필터링 "],"Filter out default content views":["기본값 컨텐츠 뷰 필터링 "],"Filter products by host id":["호스트 ID별로 제품 필터링"],"Filter products by name":["이름에 따라 제품을 필터링 "],"Filter products by organization":["조직에 따라 제품을 필터링 "],"Filter products by subscription":["서브스크립션에 따라 제품을 필터링 "],"Filter products by sync plan id":["동기화 계획 ID를 기준으로 제품 필터링"],"Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \\\"Indexed?\\\" types here: /katello/api/repositories/repository_types":[""],"Filter rule added":[""],"Filter rule edited":[""],"Filter rule removed":[""],"Filter rules added":[""],"Filter rules deleted":[""],"Filter versions by environment":["환경에 따라 버전을 필터링 "],"Filter versions by version number":["버전 번호에 따라 버전을 필터링 "],"Filter versions that are components in the specified composite version":["지정된 복합 버전에 있는 구성 요소인 버전을 필터링 "],"Filtered index content":["필터링된 인덱스 컨텐츠"],"Filters":["필터 "],"Filters deleted":[""],"Find the relative path for each RHUI repository and combine them in a comma-separated list.":[""],"Finish":[""],"Finish action timeout":[""],"Finished":["완료"],"Force":[""],"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\\\\n On Demand download policy) are skipped.":[""],"Force a sync and validate the checksums of all content. Only used with yum repositories.":[""],"Force content view promotion and bypass lifecycle environment restriction":[""],"Force delete the repository by removing it from all content view versions":[""],"Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy":[""],"Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy.":[""],"Force promotion":[""],"Force regenerate applicability.":[""],"Force sync even if no upstream changes are detected. Non-yum repositories are skipped.":[""],"Force sync even if no upstream changes are detected. Only used with yum or deb repositories.":[""],"Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem.":[""],"Forces a republish of the version's repositories' metadata":[""],"Full description":[""],"Fully entitled":["모든 권한이 부여됨"],"GPG Key URL":["GPG 키 URL"],"Generate RHUI certificates for the desired repositories as necessary.":[""],"Generate and Download":["생성 및 다운로드 "],"Generate errata status from directly-installable content":[""],"Generate host applicability":[""],"Generate repository applicability":[""],"Generated":[""],"Generated content views cannot be assigned to hosts or activation keys":[""],"Generated content views cannot be directly published. They can updated only via export.":[""],"Get all content available, not just that provided by subscriptions":[""],"Get all content available, not just that provided by subscriptions.":[""],"Get content and overrides for the host":["호스트에 대한 컨텐츠 및 덮어쓰기 가져오기"],"Get current smart proxy synchronization status":[""],"Get info about a repository set":["리포지터리 세트 정보 가져오기 "],"Get list of available repositories for the repository set":[""],"Get status of repo synchronisation for given product":["주어진 제품에 대한 리포지터리 동기화 상태 가져오기 "],"Get status of synchronisation for given repository":["주어진 리포지터리에 대한 동기화 상태 가져오기 "],"Given a set of hosts and errata, lists the content view versions and environments that need updating.":["특정 호스트 및 에라타에 대해 업데이트해야 하는 컨텐츠 뷰 버전과 환경을 나열합니다."],"Given criteria doesn't match any DEBs. Try changing your rule.":[""],"Given criteria doesn't match any RPMs. Try changing your rule.":[""],"Given criteria doesn't match any activation keys. Try changing your rule.":[""],"Given criteria doesn't match any hosts. Try changing your rule.":[""],"Go to job details":[""],"Go to task page":[""],"Greater than":[""],"Guests of":["게스트 "],"HTTP Proxies":[""],"HTTP Proxy identifier to associated":[""],"HW properties":[""],"Has to be > 0":[""],"Helper":["도움말"],"Hide affected activation keys":[""],"Hide affected hosts":[""],"Hide description":[""],"History":["기록 "],"History will appear here when the content view is published or promoted.":[""],"Host":["호스트 "],"Host %s has not been registered with subscription-manager.":["%s 호스트가 subscription-manager에 등록되지 않았습니다."],"Host %{name} cannot be assigned release version %{release_version}.":[""],"Host '%{name}' does not belong to an organization":["'%{name}' 호스트가 조직에 속해 있지 않습니다."],"Host Can Re-Register Only In Build":[""],"Host Collection name":["호스트 컬렉션 이름 "],"Host Collections":["호스트 컬렉션 "],"Host Duplicate DMI UUIDs":[""],"Host Errata Advisory":["호스트 에라타 권고"],"Host ID":["호스트 ID"],"Host Profile Assume":[""],"Host Profile Can Change In Build":[""],"Host Subscription Status":[""],"Host Tasks Workers Pool Size":[""],"Host collection":[""],"Host collection '%{name}' exceeds maximum usage limit of '%{limit}'":["호스트 컬렉션 '%{name}' 은 '%{limit}'의 최대 사용 한도를 초과합니다 "],"Host collection is empty.":["호스트 컬렉션이 비어 있습니다. "],"Host collections":[""],"Host collections updated":[""],"Host configurations are not updated yet":[""],"Host content and subscription details":["호스트 컨텐츠 및 서브스크립션 정보 "],"Host content view and environment updated":[""],"Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration.":[""],"Host did not finish content action in %s seconds. The task has been cancelled.":["호스트가 %s초 이내에 컨텐츠 작업을 끝내지 않았습니다. 태스크가 취소되었습니다."],"Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?":["호스트가 %s초 이내에 응답하지 않았습니다. 태스크가 취소되었습니다. 호스트에 katello-agent가 설치되어 있고 goferd가 실행 중입니까?"],"Host errata advisory":[""],"Host group IDs":["호스트 그룹 ID"],"Host has not been registered with subscription-manager":["호스트가 subscription-manager에 등록되지 않았습니다."],"Host has not been registered with subscription-manager.":[""],"Host id to list applicable deb packages for":[""],"Host id to list applicable errata for":[""],"Host id to list applicable packages for":[""],"Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance":[""],"Host with ID %s already exists in the host collection.":[""],"Host with ID %s does not exist in the host collection.":[""],"Host with ID %s not found.":[""],"Hosts":["호스트"],"Hosts to update":[""],"Hosts with Installable Errata":["설치 가능한 에라타를 갖는 호스트 "],"Hosts: ":[""],"How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load.":[""],"How to order the sorted results (e.g. ASC for ascending)":["정렬된 결고를 정렬하는 방법 (예: 오름차순의 ASC) "],"Hypervisors":["하이퍼바이저"],"Hypervisors update":["하이퍼바이저 업데이트"],"ID of a HTTP Proxy":[""],"ID of a content view to show repositories in":["리포지터리에 표시할 컨텐츠 뷰 ID "],"ID of a content view version to show repositories in":["리포지터리를 표시한 컨텐츠 뷰 버전 ID"],"ID of a product to list repository sets from":["리포지터리 세트를 나열하기 위한 제품 ID "],"ID of a product to show repositories of":["리포지터리에 표시할 제품 ID "],"ID of an environment to show repositories in":["리포지터리에 표시할 환경 ID "],"ID of an organization to show repositories in":["리포지터리에 표시할 조직 ID "],"ID of the Organization":[""],"ID of the activation key":["활성키 ID"],"ID of the environment":["환경 ID "],"ID of the host":["호스트의 ID"],"ID of the host collection":["호스트 컬렉션 ID "],"ID of the organization":["조직 ID "],"ID of the product containing the repository set":["리포지터리 세트가 들어있는 제품 ID "],"ID of the repository set":["리포지터리 세트 ID "],"ID of the repository set to disable":[""],"ID of the repository set to enable":["활성화할 리포지터리 세트 ID "],"ID of the repository within the set to disable":[""],"ID of the sync plan":["동기화 계획 ID "],"ID: %s doesn't exist ":["ID: %s이 존재하지 않습니다 "],"IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type.":[""],"Id of a deb package to find repositories that contain the deb":[""],"Id of a file to find repositories that contain the file":[""],"Id of a rpm package to find repositories that contain the rpm":[""],"Id of an ansible collection to find repositories that contain the ansible collection":[""],"Id of an erratum to find repositories that contain the erratum":["해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"],"Id of the HTTP proxy to use with alternate content sources":[""],"Id of the content host":["컨텐츠 호스트 ID"],"Id of the content view to limit the synchronization on":[""],"Id of the environment to limit the synchronization on":["동기화의 제한 범위로 설정할 환경의 ID"],"Id of the host":["호스트의 ID"],"Id of the host collection":["호스트 컬렉션 ID "],"Id of the lifecycle environment":["라이프사이클 환경의 ID"],"Id of the organization to get the status for":["상태를 가져올 조직의 ID"],"Id of the organization to limit environments on":["환경을 제한할 조직의 ID"],"Id of the repository to limit the synchronization on":[""],"Id of the smart proxy":[""],"Idenifier of the SSL CA Cert":[""],"Identifier of the GPG key":["GPG 키 ID"],"Identifier of the SSL Client Cert":[""],"Identifier of the SSL Client Key":[""],"Identifier of the content credential containing the SSL CA Cert":[""],"Identifier of the content credential containing the SSL Client Cert":[""],"Identifier of the content credential containing the SSL Client Key":[""],"Identifiers for Lifecycle Environment":[""],"Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s":[""],"Ids of smart proxies to associate":[""],"If SSL should be verified for the upstream URL":[""],"If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts.":[""],"If specified, remove the first instance of a subscription with matching id and quantity":["지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."],"If the smart proxies' assigned HTTP proxies should be used":[""],"If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment.":[""],"If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching":[""],"If this is enabled, remote execution is used instead of katello-agent for remote actions":[""],"If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions.":[""],"If this is enabled, repositories of content view versions without environments (\\\"archived\\\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'.":[""],"If true, only errata that can be installed without an incremental update will affect the host's errata status.":[""],"If true, only return repository sets that are associated with an active subscriptions":[""],"If true, only return repository sets that have been enabled. Defaults to false":[""],"If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied.":[""],"If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true":[""],"If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment":[""],"If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually.":[""],"Ignorable content can be only set for Yum repositories.":[""],"Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy.":[""],"Ignore errors":[""],"Ignore subscription manager errors":[""],"Ignore subscription-manager errors for `subscription-manager register` command":[""],"Ignore subscriptions that are unavailable to the specified host":["지정한 호스트에 사용할 수 없는 서브스크립션 무시"],"Ignored hosts":[""],"Immediate":["즉시"],"Import":["불러오기"],"Import Content View Version":[""],"Import Default Content View":[""],"Import Manifest":["매니페스트 가져오기 "],"Import New Manifest":[""],"Import Puppet classes":["Puppet 클래스 가져오기"],"Import Repository":[""],"Import Types":[""],"Import a Manifest":[""],"Import a Manifest to Begin":[""],"Import a Manifest to manage your Entitlements.":[""],"Import a Manifest using the manifest tab above.":[""],"Import a content view version":[""],"Import a content view version to the library":[""],"Import a repository":[""],"Import facts":["팩트 불러오기"],"Import only":[""],"Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view.":[""],"Import uploads into a repository":["리포지터리에 업로드 가져오기 "],"Import-only can not be changed after creation":[""],"Import-only content views can not be published directly":[""],"Import/Export":[""],"Important":["중요"],"Importing manifest into '%{subject}' failed.":[""],"In Progress":["진행 중 "],"In progress":[""],"Include":["포함 "],"Include all RPMs not associated to any errata":[""],"Include all module streams not associated to any errata":[""],"Include content views generated by imports/exports. Defaults to false":[""],"Include filter":[""],"Included":[""],"Included errata":[""],"Includes":[""],"Includes associated content view filter ids in response":[""],"Inclusion type":[""],"Incremental Update":["증분 업데이트 "],"Incremental Update incomplete.":["증분 업데이트가 완료되지 않았습니다. "],"Incremental Update of Content View Version(s) ":[""],"Incremental Update of %{content_view_count} Content View Version(s) ":[""],"Incremental update":[""],"Incremental update requires at least one content unit":[""],"Incremental update specified for composite %{name} version %{version}, but no components updated.":["복합 %{name} v버전 %{version}에 대해 증분 업데이트가 지정되었지만 구성 요소가 업데이트되지 않았습니다."],"Index content":["컨텐츠 인덱싱"],"Index errata":["에라타 인덱스"],"Index module streams":[""],"Index package groups":["패키지 그룹 인덱싱"],"Informable Type must be one of the following [ %{list} ]":["정보 유형은 다음 중 하나이어야 합니다 [ %{list} ]"],"Inherit from Repository":[""],"Initiate a sync of the products attached to the sync plan":["동기화 계획에 연결된 제품 동기화 시작"],"Install":["설치 "],"Install Applicable Errata":["적용 가능한 에라타 설치 "],"Install Applicable Errata on %s":["%s에 적용 가능한 에라타 설치"],"Install content on one or more hosts using katello-agent. %s":[""],"Install errata using scoped search query":[""],"Install errata via Katello interface":["Katello 인터페이스를 통해 에라타 설치"],"Install erratum":["에라타 설치"],"Install erratum for %s":[""],"Install package":["패키지 설치 "],"Install package for %s":[""],"Install package group":["패키지 그룹 설치 "],"Install package group via Katello interface":["Katello 인터페이스를 통해 패키지 그룹 설치"],"Install package via Katello interface":["Katello 인터페이스를 통해 패키지 설치"],"Install packages":[""],"Install packages remotely using katello-agent. %s":[""],"Install packages via Katello interface":[""],"Install via customized remote execution":[""],"Install via katello-agent":[""],"Install via remote execution":[""],"Installable":["설치 가능 "],"Installable errata are applicable errata that are available in the host\\\\'s content view and lifecycle environment.":[""],"Installable updates":[""],"Installation of errata requested: %{errata}":[""],"Installation of package group(s) requested: %{groups}":[""],"Installation of package(s) requested: %{packages}":[""],"Installation status":[""],"Installed":["설치됨 "],"Installed Packages":["설치된 패키지 "],"Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed.":[""],"Installed products":[""],"Installed profile":[""],"Installed version":[""],"Installing Erratum...":["에라타 설치 중..."],"Installing Package Group...":["패키지 그룹 설치 중..."],"Installing Package...":["패키지 설치 중..."],"Instance update":[""],"Instance-based":["인스턴스 기반 "],"Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported.":["지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 호스트 컬렉션만 반환합니다. 값 '호스트'가 지원됩니다."],"Interpret specified object to return only Products that can be associated with specified object. Only 'sync_plan' is supported.":["지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 제품만 반환합니다. 'sync_plan'만 지원됩니다."],"Interval cannot be nil":[""],"Interval not set correctly":[""],"Invalid":["유효하지 않음 "],"Invalid association of the content view id. Content View must match the content view version being saved":[""],"Invalid content label: %s":["잘못된 컨텐츠 레이블: %s"],"Invalid content type %s":["잘못된 컨텐츠 유형 %s"],"Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}":["잘못된 컨텐츠 유형 '%{content_type}'이(가) 지정되었습니다. 컨텐츠 유형은 %{content_types} 중 하나가 될 수 있습니다."],"Invalid date range. The erratum filter rule start date must come before the end date":["잘못된 날짜 범위입니다. 에라타 필터 규칙 시작일은 종료일 이전에 와야 합니다."],"Invalid erratum filter rule specified, 'errata_id' cannot be specified in the same tuple as 'start_date', 'end_date' or 'types'":["잘못된 에라타 필터 규칙이 지정되었습니다. 'errata_id'는 'start_date', 'end_date', 'types'과 동일한 튜플로 지정할 수 없습니다"],"Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'":["잘못된 에라타 필터 규칙이 지정되었습니다. 최소 다음 중 하나를 지정해야 합니다: 'errata_id', 'start_date', 'end_date', 'types'"],"Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}":["잘못된 에라타 유형 %{invalid_types}이 지정되었습니다. 에라타 유형은 %{valid_types} 중 하나가 될 수 있습니다"],"Invalid event_type %s":[""],"Invalid export format provided. Format must be one of %s ":[""],"Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'":["잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_version' 또는 'max_version'과 동일한 튜플로 지정할 수 없습니다 "],"Invalid mirroring policy for repository type %{type}, only %{policies} are valid.":[""],"Invalid parameters sent in the request for this operation. Please contact a system administrator.":["잘못된 매개 변수가 이 작업에 대한 요청에 전송되었습니다. 시스템 관리자에게 문의하십시오. "],"Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator.":["잘못된 매개 변수가 전송되었습니다. 주소를 잘못 입력하신것 같습니다. 문제가 계속 발생하면 관리자에게 문의하십시오. "],"Invalid params provided - content_type must be one of %s":["잘못된 매개 변수를 입력했습니다. - content_type은 %s 중 하나여야 합니다."],"Invalid params provided - date_type must be one of %s":["잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."],"Invalid params provided - with_content must be one of %s":[""],"Invalid path provided. Content can be only imported from file system. ":[""],"Invalid release version: [%s]":[""],"Invalid repository in the metadata %{repo} error=%{error}":[""],"Invalid value specified for Container Image repositories.":[""],"Invalid value specified for ignorable content.":[""],"Invalid value specified for ignorable content. Permissible values %s":[""],"Issued":["발행됨 "],"Issued from":[""],"Job '${description}' completed":[""],"Job '${description}' has started.":[""],"Katello ID of local pool to update":[""],"Katello: Install Errata":["Katello: 에라타 설치"],"Katello: Install Package":["Katello: 패키지 설치"],"Katello: Install Package Group":["Katello: 패키지 그룹 설치"],"Katello: Install errata by search query":[""],"Katello: Install packages by search query":[""],"Katello: Module Stream Actions":[""],"Katello: Remove Package":["Katello: 패키지 삭제"],"Katello: Remove Package Group":["Katello: 패키지 그룹 삭제"],"Katello: Remove Packages by search query":[""],"Katello: Resolve Traces":[""],"Katello: Service Restart":[""],"Katello: Update Package":["Katello: 패키지 업데이트"],"Katello: Update Package Group":["Katello: 패키지 그룹 업데이트"],"Katello: Update Packages by search query":[""],"Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)":[""],"Kickstart":[""],"Kickstart repositories can only be assigned to hosts in the Red Hat family":[""],"Kickstart repository ID":[""],"Kickstart repository was not set for host '%{host}'":[""],"Label":["레이블 "],"Label of the content":["컨텐츠 레이블 "],"Label of the content view":[""],"Last check-in:":[""],"Last checkin":[""],"Last published":[""],"Last refresh":[""],"Last refresh :":[""],"Last task":[""],"Latest (automatically updates)":[""],"Latest Errata":["최신 에라타"],"Latest version":[""],"Learn more about adding Subscription Manifests":[""],"Legacy content host UI":[""],"Less than":[""],"Library":["라이브러리"],"Library lifecycle environments may not be deleted.":["라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "],"Library repository id to restrict comparisons to":["비교를 제한하기 위한 라이브러리 리포지터리 ID "],"Lifecycle":[""],"Lifecycle Environment":["라이프사이클 환경 "],"Lifecycle Environment %s has associated Activation Keys. Please change or remove the associated Activation Keys before trying to delete this lifecycle environment.":["라이프 사이클 환경 %s에는 연결된 활성키가 있습니다. 라이프 사이클 환경을 삭제하기 전 연결된 활성키를 변경 또는 삭제합니다."],"Lifecycle Environment %s has associated Hosts. Please unregister or move the associated Hosts before trying to delete this lifecycle environment.":[""],"Lifecycle Environment ID":[""],"Lifecycle Environment Label":[""],"Lifecycle Environments":["라이프사이클 환경 "],"Lifecycle environment":[""],"Lifecycle environment '%{environment}' is not attached to this capsule.":["라이프 사이클 환경 '%{environment}'이 capsule에 할당되어 있지 않습니다. "],"Lifecycle environment ID":[""],"Lifecycle environment for the host.":[""],"Lifecycle environment must be specified":[""],"Lifecycle environment was not attached to the smart proxy; therefore, no changes were made.":[""],"Lifecycle environment: {lce}":[""],"Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy.":[""],"Limit content to Red Hat / custom":[""],"Limit content to enabled / disabled / overridden":[""],"Limit content to just that available in the activation key's content view version":[""],"Limit content to just that available in the host's content view version":[""],"Limit content to just that available in the host's or activation key's content view version and lifecycle environment.":[""],"Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types":[""],"Limit to environment":["환경에 대한 제한"],"Limits":["제한 "],"List %s":[""],"List :resource":[""],"List :resource_id":[":resource_id 나열 "],"List Content Credentials":[""],"List a host's subscriptions":["호스트의 서브스크립션 나열"],"List activation keys":["활성키 목록 나열 "],"List all :resource_id":["모두 나열 :resource_id "],"List all organizations":["전체 조직 나열"],"List alternate content sources.":[""],"List an activation key's subscriptions":["활성키의 서브스크립션 목록 나열"],"List available releases in the organization":[""],"List available subscriptions from Red Hat Subscription Management":[""],"List components attached to this content view":[""],"List content view versions":["컨텐츠 뷰 버전 목록 나열 "],"List content views":["컨텐츠 뷰 목록 나열 "],"List deb packages":[""],"List deb packages installed on the host":[""],"List environment paths":["환경 경로 목록 나열 "],"List environments in an organization":["조직에 있는 환경 목록 나열 "],"List errata":["에라타 나열 "],"List errata available for the content host":["컨텐츠 호스트에서 사용 가능한 에라타 나열 "],"List export histories":[""],"List filter rules":["필터 규칙 목록 나열 "],"List host collections":["호스트 컬렉션 목록 나열 "],"List host collections in an activation key":["활성키에 있는 호스트 컬렉션을 나열 "],"List host collections the activation key does not belong to":[""],"List host collections within an organization":["조직의 호스트 컬렉션을 나열 "],"List import histories":[""],"List module streams available to the host":[""],"List of Errata ids":["에라타 ID 목록 "],"List of Errata ids to install. Will be removed in %s":[""],"List of Products for sync plan":["동기화 계획의 제품 나열"],"List of alternate content source IDs":[""],"List of component content view version ids for composite views":["복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "],"List of content (e.g. package names, package group names (Deprecated) or errata ids)":[""],"List of content (e.g. package or package group names)":["컨텐츠 목록 (예: 패키지 또는 패키지 그룹 이름) "],"List of content units to ignore while syncing a yum repository. Must be subset of %s":[""],"List of enabled repo urls for the repo (Only first is used.)":["리포지터리의 활성화된 리포지터리 URL 목록 (첫 번째것만 사용됨)"],"List of enabled repositories":["활성화된 리포지터리 목록 "],"List of errata ids to exclude and not run an action on, (ex: RHSA-2019:1168)":[""],"List of errata ids to perform an action on, (ex: RHSA-2019:1168)":[""],"List of host collection IDs to associate with activation key":["활성키에 연결할 호스트 컬렉션 ID 목록 "],"List of host collection IDs to disassociate from the activation key":["활성키에서 연결 해제하기 위한 호스트 컬렉션 ID 목록 "],"List of host collection ids":["호스트 컬렉션 ID 목록 "],"List of host collection ids to update":["업데이트할 호스트 컬렉션 ID 목록"],"List of host id to list available module streams for":[""],"List of host ids to exclude and not run an action on":["제외하여 실행하지 않을 호스트 ID 나열"],"List of host ids to perform an action on":["작업을 수행할 호스트 ID 나열"],"List of host ids to replace the hosts in host collection":["호스트 컬렉션의 호스트를 대체할 호스트 ID의 목록입니다."],"List of hypervisor guest uuids":[""],"List of package group names (Deprecated)":[""],"List of package names":["패키지 이름 목록 "],"List of product ids":["제품 ID 목록 "],"List of product ids to add to the sync plan":["동기화 계획에 추가하기 위한 제품 ID 목록 "],"List of product ids to remove from the sync plan":["동기화 계획에서 삭제하기 위한 제품 ID 목록 "],"List of products in an organization":["조직에서 제품 목록 "],"List of products installed on the host":[""],"List of repositories belonging to a product in an environment":[""],"List of repositories for a content view":["컨텐츠 뷰의 리포지터리 목록 "],"List of repositories for a docker meta tag":[""],"List of repositories for a product":[""],"List of repositories in an organization":[""],"List of repository ids":["리포지터리 ID 목록 "],"List of resources types that will be automatically associated":[""],"List of subscription products in a subscription":["서브스크립션에 있는 서브스크립션 제품 목록 "],"List of subscription products in an activation key":["활성키에 있는 서브스크립션 제품 목록 "],"List of versions to exclude and not run an action on":[""],"List of versions to perform an action on":[""],"List organization subscriptions":["조직 서브스크립션 목록 나열 "],"List packages":["패키지 목록 나열 "],"List packages installed on the host":["호스트에 설치된 패키지 나열"],"List products":["제품 나열 "],"List repositories in the environment":[""],"List repository sets for a product.":["제품의 리포지터리 세트를 나열합니다."],"List repository sets.":[""],"List services that need restarting on the host":[""],"List srpms":[""],"List subscriptions":[""],"List sync plans":["동기화 계획 나열 "],"List the lifecycle environments attached to the smart proxy":[""],"List the lifecycle environments not attached to the smart proxy":[""],"Loading":["로딩 중 "],"Loading versions":[""],"Loading...":["로딩..."],"Low":[""],"Make copy of a content view":["컨텐츠 뷰 사본 작성 "],"Make copy of a host collection":["호스트 컬렉션 사본 작성 "],"Make sure all the component content views are published before publishing/promoting the composite content view. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag.":[""],"Manage Manifest":["매니페스트 관리 "],"Manifest":[""],"Manifest History":["매니페스트 기록 "],"Manifest deleted":[""],"Manifest imported":[""],"Manifest in '%{subject}' deleted.":[""],"Manifest in '%{subject}' failed to refresh.":[""],"Manifest in '%{subject}' imported.":[""],"Manifest in '%{subject}' refreshed.":[""],"Manifest refresh timeout":[""],"Manifest refreshed":[""],"Manual":["수동"],"Manual authentication":[""],"Mark Content Host Statuses as Unknown for %s":[""],"Matched":[""],"Matching content":[""],"Max %(maxQuantity)s":[""],"Max Hosts (%{limit}) reached for activation key '%{name}'":[""],"Maximum download rate when syncing a repository (requests per second). Use 0 for no limit.":[""],"Maximum number of content hosts exceeded for host collection(s): %s":["호스트 컬렉션에 대해 최대 컨텐츠 호스트 수를 초과했습니다: %s"],"Maximum number of hosts in the host collection":["호스트 컬렉션에 포함된 호스트의 최대 수"],"Maximum version":[""],"May not add a type or date range rule to a filter that has existing rules.":["유형 또는 데이터 범위 규칙을 기존 규칙이 있는 필터에 추가할 수 없습니다. "],"May not add an id rule to a filter that has an existing type or date range rule.":["기존 유형 또는 데이터 범위 규칙이 있는 필터에 id 규칙을 추가할 수 없습니다. "],"Media Selection":[""],"Medium IDs":[""],"Message":["메세지 "],"Messaging connection":["메시징 연결"],"Metadata republishing must be forced because it is a dangerous operation.":[""],"Metadata taken from the upstream export history for this Content View Version":[""],"Minimum version":[""],"Mismatched":[""],"Missing activation key!":[""],"Missing arguments %{substitutions} for %{content_url}":["%{content_url}에 대한 %{substitutions} 인수 누락"],"Model":["모델 "],"Moderate":["중간 수준"],"Modular":["모듈식의"],"Module Stream":[""],"Module Stream Details":[""],"Module Streams":["모듈 스트림"],"Module stream":[""],"Module streams":[""],"Module streams will appear here after enabling Red Hat repositories or creating custom products.":[""],"Multi-entitlement":["멀티 인타이틀먼트 "],"N/A":["해당 없음 "],"NA":["해당 없음 "],"NOTE: Content view version '%{content_view} %{current}' does not have any exportable repositories. At least one repository with any of the following types is required to be able to export: '%{exportable_types}'.":[""],"NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead.":[""],"NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type.":[""],"NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type.":[""],"NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \\n %{repos}":[""],"NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \\n %{repos}":[""],"NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \\n %{repos}":[""],"NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export.":[""],"Name":["이름 "],"Name and label of default content view should not be changed":[""],"Name is a required parameter.":[""],"Name of new activation key":["새 활성키 이름 "],"Name of the Content Credential":[""],"Name of the alternate content source":[""],"Name of the content view":["컨텐츠 뷰 이름 "],"Name of the host":[""],"Name of the repository":[""],"Name of the upstream docker repository":[""],"Name source":[""],"Names of smart proxies to associate":[""],"Needs to only be set for docker tags":[""],"Needs to only be set for file repositories or docker tags":[""],"Nest":["중첩 "],"Network Sync":[""],"Never":["사용 안 함"],"Never Synced":["동기화하지 않음 "],"New Errata":["새 에라타 "],"New content view name":["새 컨텐츠 뷰 이름 "],"New host collection name":["새 호스트 컬렉션 이름 "],"New name cannot be blank":["새 이름은 빈 칸으로 비워둘 수 없습니다"],"New name for the content view":["새 컨텐츠 뷰 이름 "],"New version is available: Version ${latestVersion}":[""],"Newly published":[""],"No":["아니오 "],"No Activation Keys selected":[""],"No Activation keys to select":[""],"No Content View":["컨텐츠 보기가 없습니다 "],"No Content found":[""],"No Lifecycle environment to select":[""],"No Manifest Uploaded":[""],"No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available.":[""],"No Service Level Preference":["서비스 레벨 설정이 없음 "],"No URL found for a container registry. Please check the configuration.":[""],"No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}":["컨텐츠 뷰 %{component}의 버전이 복합 컨텐츠 뷰 %{composite} 버전 %{version}의 구성 요소로 존재하지 않습니다 "],"No action is needed because there are no applicable errata for this host.":[""],"No action required":[""],"No applicable errata":[""],"No applicable errata for %s, skipping":[""],"No applications to restart":[""],"No artifacts to show":[""],"No content":[""],"No content added.":[""],"No content has been provided.":["제공된 컨텐츠가 없습니다. "],"No content ids provided":["컨텐츠 ID를 지정하지 않았습니다."],"No content in selected versions.":[""],"No content view history events found.":["컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "],"No content views available":[""],"No content views available for the selected environment":[""],"No content views to add yet":[""],"No content views yet":[""],"No content_view_version_ids provided":["content_view_version_ids가 지정되어 있지 않습니다 "],"No description":[""],"No description provided":[""],"No enabled repositories match your search criteria.":[""],"No environment":[""],"No environments":[""],"No errata filter rules yet":[""],"No errata matching given search query":[""],"No errata to add yet":[""],"No errors":["오류 없음 "],"No existing export history was found to perform an incremental export. A full export must be performed":[""],"No file uploaded":["업로드된 파일이 없음 "],"No filters yet":[""],"No history yet":[""],"No host collections":[""],"No host collections found.":["호스트 컬렉션을 찾을 수 없습니다. "],"No host collections yet":[""],"No hosts found":[""],"No hosts have been specified.":["호스트를 지정하지 않았습니다."],"No hosts matched search, or action unauthorized for selected hosts.":[""],"No hosts registered with subscription-manager found in selection.":[""],"No hosts were specified":[""],"No installed packages and/or enabled repositories have been reported by %s.":[""],"No items have been specified.":[""],"No manifest file uploaded":["업로드된 매니페스트 파일이 없음 "],"No manifest found. Import a manifest with the appropriate subscriptions before importing content.":[""],"No matching ":[""],"No matching ${name} found.":[""],"No matching ${selectedContentType} found":[""],"No matching DEB found.":[""],"No matching RPM found.":[""],"No matching activation keys found.":[""],"No matching alternate content sources found":[""],"No matching content views found":[""],"No matching errata found":[""],"No matching filter rules found.":[""],"No matching filters found":[""],"No matching history record found":[""],"No matching host collections found":[""],"No matching hosts found.":[""],"No matching packages found":[""],"No matching repositories found":[""],"No matching repository sets found":[""],"No matching traces found":[""],"No matching version found":[""],"No module stream filter rules yet":[""],"No module streams to add yet.":[""],"No new packages installed":["설치된 새 패키지가 없음 "],"No package groups yet":[""],"No packages":[""],"No packages available to install":[""],"No packages available to install on this host. Please check the host\\\\'s content view and lifecycle environment.":[""],"No packages removed":["삭제된 패키지가 없음 "],"No packages updated":["업데이트된 패키지가 없음 "],"No pool IDs were provided.":[""],"No pools available":[""],"No pools were provided.":[""],"No processes require restarting":[""],"No products are enabled.":[""],"No profiles to show":[""],"No pulp workers running.":["실행 중인 pulp worker가 없습니다."],"No pulpcore content apps are running at %s.":[""],"No pulpcore workers are running at %s.":[""],"No recently synced products":["최근에 동기화된 제품 없음"],"No recurring logic tied to the sync plan.":[""],"No repositories added yet":[""],"No repositories available to add":[""],"No repositories available.":[""],"No repositories enabled.":[""],"No repositories selected.":[""],"No repositories to show":[""],"No repository sets match your search criteria.":[""],"No repository sets to show.":[""],"No rules yet":[""],"No services defined, is this class extended?":["정의된 서비스가 없습니다. 확장된 클래스입니까?"],"No start time currently available.":["현재 사용 가능한 시작 시간이 없습니다. "],"No subscriptions match your search criteria.":[""],"No syncable repositories found for selected products and options.":[""],"No uploads param specified. An array of uploads to import is required.":[""],"No versions yet":[""],"Non-security errata applicable":["적용 가능한 비보안 에라타"],"Non-security errata installable":[""],"Non-system event":["비 시스템 이벤트 "],"None":["없음 "],"None provided":[""],"Not a number":[""],"Not added":[""],"Not all necessary pulp workers running at %s.":[""],"Not installed":["설치되지 않음 "],"Not running":[""],"Not specified":[""],"Not yet published":["아직 공개되지 않았습니다 "],"Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:":[""],"Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available.":["알림: 괄호 안의 숫자는 호스트에서 사용할 수 없는 라이브러리 환경에서 적용 가능한 모든 에라타를 반영합니다. 이 컨텐츠를 사용 가능하게 하려면 관련 컨텐츠 뷰로 승격시켜야 합니다. "],"Nothing selected":[""],"Number of CPU(s)":[""],"Number of host applicability calculations to process per task.":[""],"Number of results per page to return":["반환할 페이지 당 결과 수 "],"Number of results per page to return.":[""],"Number to Allocate":[""],"OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host.":[""],"OSTree Branch":["OSTree 분기"],"OSTree Ref":[""],"OSTree Refs":[""],"OSTree ref":[""],"OSTree refs":[""],"Object to show subscriptions available for, either 'host' or 'activation_key'":["사용 가능한 서브스크립션을 표시할 객체입니다. 'host' 또는 'activation_key'로 지정할 수 있습니다."],"On Demand":["주문형"],"On the RHUA Instance, check the available repositories.":[""],"On-disk location for exported repositories":["내보낸 리포지터리의 디스크상 위치"],"On-disk location for pulp 3 exported repositories":[""],"One of parameters [ %s ] required but not specified.":["매개 변수 [ %s ] 중 하나가 필요하지만 지정되어 있지 않습니다."],"One of yum or docker":[""],"One or more hosts not found":[""],"One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them.":[""],"One or more processes require restarting":[""],"Only On Demand repositories may have space reclaimed.":[""],"Only On Demand smart proxies may have space reclaimed.":[""],"Only one Red Hat provider permitted for an Organization":["하나의 조직에 대해 하나의 Red Hat 공급자만을 허용 "],"Only returns id and quantity fields":[""],"Operators":["운영자 "],"Organization":["조직 "],"Organization %s is being deleted.":["조직 %s이 삭제되어 있습니다. "],"Organization ID":["조직 ID"],"Organization ID is required":[""],"Organization Information not provided.":[""],"Organization cannot be blank.":["조직을 빈 칸으로 둘 수 없습니다. "],"Organization id":["조직 ID"],"Organization identifier":["조직 ID"],"Organization label":["조직 레이블 "],"Organization not found":[""],"Organization required":["필요한 조직 "],"Orphaned Content Protection Time":[""],"Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!":[""],"Other":["기타 "],"Other Content Types":[""],"Overridden":[""],"Override content for activation_key":["activation_key의 컨텐츠 덮어쓰기 "],"Override key or name. Note if name is not provided the default name will be 'enabled'":[""],"Override parameter key or name. Note if name is not provided the default name will be 'enabled'":[""],"Override the major version number":[""],"Override the minor version number":[""],"Override to a boolean value or 'default'":[""],"Override to disabled":[""],"Override to enabled":[""],"Override value. Provide a boolean value if name is 'enabled'":[""],"Package":["패키지"],"Package Group":["패키지 그룹 "],"Package Group Install":["패키지 그룹 설치 "],"Package Group Install Canceled":["패키지 그룹 설치 취소 "],"Package Group Install Complete":["패키지 그룹 설치 완료 "],"Package Group Install Failed":["패키지 그룹 설치 실패 "],"Package Group Install Timed Out":["패키지 그룹 설치 시간 초과 "],"Package Group Install scheduled by %s":["%s에 의해 스케줄된 패키지 그룹 설치 "],"Package Group Remove":["패키지 그룹 제거 "],"Package Group Remove Canceled":["패키지 그룹 제거 취소 "],"Package Group Remove Complete":["패키지 그룹 제거 완료 "],"Package Group Remove Failed":["패키지 그룹 제거 실패 "],"Package Group Remove Timed Out":["패키지 그룹 제거 시간 초과 "],"Package Group Remove scheduled by %s":["%s에 의해 스케줄된 패키지 그룹 제거 "],"Package Group Update":["패키지 그룹 업데이트 "],"Package Group Update scheduled by %s":["%s에 의해 스케줄된 패키지 그룹 업데이트 "],"Package Groups":["패키지 그룹 "],"Package Install":["패키지 설치 "],"Package Install Canceled":["패키지 설치 취소 "],"Package Install Complete":["패키지 설치 완료 "],"Package Install Failed":["패키지 설치 실패 "],"Package Install Timed Out":["패키지 설치 시간 초과 "],"Package Install scheduled by %s":["%s에 의해 스케줄된 패키지 설치 "],"Package Profile Update":["패키지 프로파일 업데이트"],"Package Profile Update for %s":["%s에 대한 패키지 프로파일 업데이트"],"Package Remove":["패키지 제거 "],"Package Remove Canceled":["패키지 제거 취소 "],"Package Remove Complete":["패키지 제거 완료 "],"Package Remove Failed":["패키지 제거 실패 "],"Package Remove Timed Out":["패키지 제거 시간 초과 "],"Package Remove scheduled by %s":["%s에 의해 스케줄된 패키지 제거 "],"Package Type":[""],"Package Types":[""],"Package Update":["패키지 업데이트 "],"Package Update Canceled":["패키지 업데이트 취소 "],"Package Update Complete":["패키지 업데이트 완료 "],"Package Update Failed":["패키지 업데이트 실패 "],"Package Update Timed Out":["패키지 업데이트 시간 초과 "],"Package Update scheduled by %s":["%s에 의해 스케줄된 패키지 업데이트 "],"Package group update canceled":["패키지 그룹 업데이트 취소"],"Package group update complete":["패키지 그룹 업데이트 완료"],"Package group update failed":["패키지 그룹 업데이트를 실패"],"Package group update timed out":["패키지 그룹 업데이트 시간 초과 "],"Package groups":[""],"Package identifiers to filter content by":[""],"Package install failed: \\\"%{package}\\\"":["패키지 설치 실패: \\\"%{package}\\\""],"Package installation: \\\"%{package}\\\" ":["패키지 설치: \\\"%{package}\\\""],"Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist.":[""],"Packages":["패키지 "],"Packages must be provided":["패키지가 필요함 "],"Packages will appear here when available.":[""],"Page number, starting at 1":["1 부터 페이지 번호 "],"Partial":["부분"],"Partially entitled":["일부 권한이 부여됨"],"Partition template IDs":["파티션 템플릿 ID"],"Password":["암호 "],"Password for authentication. Relevant only for 'upstream_server' type.":[""],"Password of the upstream authentication token.":[""],"Password of the upstream repository user used for authentication":[""],"Password to access URL":[""],"Path":["경로 "],"Path suffixes for finding alternate content":[""],"Paused":["일시정지 "],"Perform a module stream action via Katello interface":[""],"Perform an Incremental Update on one or more Content View Versions":["하나 이상의 컨텐츠 뷰 버전에서 증분 업데이트를 수행 "],"Performs a full-export of a content view version.":[""],"Performs a full-export of the repositories in library.":[""],"Performs a full-export of the repository in library.":[""],"Performs a incremental-export of the repository in library.":[""],"Performs an incremental-export of a content view version.":[""],"Performs an incremental-export of the repositories in library.":[""],"Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'.":["권한이 거부되었습니다. 사용자 '%{user}'은(는) 조직 '%{org}'에 액세스할 수 있는 권한이 없습니다. "],"Physical":["물리적 "],"Plan numeric identifier":["숫자로된 ID 계획 "],"Please add some repositories.":[""],"Please create some content views.":[""],"Please enter a positive number above zero":[""],"Please enter digits only":[""],"Please limit number to 10 digits":[""],"Please select a content source before assigning a kickstart repository":[""],"Please select a lifecycle environment and a content view to move these activation keys.":[""],"Please select a lifecycle environment and a content view to move this activation key.":[""],"Please select an architecture before assigning a kickstart repository":[""],"Please select an operating system before assigning a kickstart repository":[""],"Please select an organization to view subscription status.":[""],"Please select an organization to view subscription totals.":[""],"Please select one from the list below and you will be redirected.":["다음 목록 중 하나를 선택하면 선택한 곳으로 이동합니다."],"Please wait while the task starts..":[""],"Please wait...":["잠시만 기다려 주십시오..."],"Policy to set for mirroring content. Must be one of %s.":[""],"Prefer registered through proxy for remote execution":[""],"Prefer using a proxy to which a host is registered when using remote execution":[""],"Prevent from further updates":[""],"Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' ":[""],"Problem searching":[""],"Problem searching errata":[""],"Problem searching host collections":[""],"Problem searching module streams":[""],"Problem searching packages":[""],"Problem searching repository sets":[""],"Problem searching traces":[""],"Product":["제품"],"Product Content":["제품 컨텐츠 "],"Product Create":["제품 생성"],"Product ID":["제품 ID"],"Product Name":["제품 이름 "],"Product and Repositories":["제품 및 리포지터리 "],"Product architecture":[""],"Product description":["제품 설명 "],"Product id as listed from a host's installed products, \\\\\\n this is not the same product id as the products api returns":[""],"Product name":["제품 이름 "],"Product name as listed from a host's installed products":[""],"Product the repository belongs to":["리포지터리가 속한 제품 "],"Product version":[""],"Product with ID %s not found in Candlepin. Skipping content import for it.":[""],"Product: '%{product}', Repository: '%{repository}'":[""],"Product: '%{product}', Repository: '%{repo}' ":[""],"Products":["제품 "],"Products updated.":[""],"Profiles":[""],"Promote":["승격 "],"Promote a content view version":["컨텐츠 뷰 버전 승격 "],"Promote errata":[""],"Promote version ${versionNameToPromote}":[""],"Promoted to ":[""],"Promoted to %{environment}":["%{environment}로 승격 "],"Promotion Summary":["승격 요약"],"Promotion Summary for %{content_view}":["%{content_view}에 대한 승격 요약"],"Promotion to Environment":[""],"Provide the required information and click {update} below to save changes.":[""],"Provided Products":["제공되는 제품 "],"Provided pool with id %s has no upstream entitlement":[""],"Provisioning template IDs":["프로비저닝 템플릿 ID "],"Proxies":["프록시 "],"Public":["공개 "],"Public key block in DER encoding or certificate content":[""],"Publish":["공개 "],"Publish Lifecycle Environment Repositories":[""],"Publish a content view":["컨텐츠 뷰 공개 "],"Publish new version":[""],"Publish new version - ":[""],"Published date":[""],"Published new version":["새 버전 공개 "],"Publishing ${name}":[""],"Publishing content view":[""],"Pulp":["Pulp"],"Pulp 3 export destination filepath":[""],"Pulp 3 is not enabled on Smart proxy!":[""],"Pulp bulk load size":[""],"Pulp database connection issue at %s.":[""],"Pulp database connection issue.":["Pulp 데이터베이스 연결 문제가 발생했습니다."],"Pulp disk space notification":[""],"Pulp does not appear to be running at %s.":[""],"Pulp does not appear to be running.":["Pulp가 실행되고 있지 않습니다."],"Pulp export destination filepath":[""],"Pulp message bus connection issue at %s.":[""],"Pulp message bus connection issue.":["Pulp 메시지 버스 연결 문제가 발생했습니다."],"Pulp node":["Pulp 노드"],"Pulp redis connection issue at %s.":[""],"Pulp server version":["Pulp 서버 버전"],"Pulp storage":["Pulp 스토리지"],"Pulp task error":["Pulp 작업 오류 "],"Python Package":[""],"Python Packages":[""],"Python package":[""],"Python packages":[""],"Python packages to exclude from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0.":[""],"Python packages to include from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0. Leave empty to include every package.":[""],"Quantity":["수량 "],"Quantity must not be above ${pool.available}":[""],"Quantity of entitlements to bind":[""],"Quantity of specified subscription to remove":[""],"Quantity of this subscription to add":["추가할 서브스크립션 수 "],"Quantity of this subscriptions to add":["추가할 서브스크립션 수 "],"Quantity to Allocate":[""],"RAM":[""],"RAM: %s GB":["RAM: %sGB"],"RH Repos":[""],"RHUI":[""],"RPM":["RPM"],"RPM Package Groups":[""],"RPM Packages":[""],"RPM name":[""],"RPM package groups":[""],"RPM package updates":[""],"RPM packages":[""],"RPMs":["RPM"],"Range":["범위 "],"Realm IDs":["영역 ID "],"Reassign affected activation key":[""],"Reassign affected activation keys":[""],"Reassign affected host":[""],"Reassign affected hosts":[""],"Reboot required":[""],"Recalculate":[""],"Recently Expired Subscriptions":["최근에 만료된 서브스크립션"],"Reclaim Space":["공간 회수"],"Reclaim space from On Demand repositories":[""],"Reclaim space from all On Demand repositories on a smart proxy":[""],"Reclaim space from an On Demand repository":[""],"Recommended Repositories":[""],"Red Hat":[""],"Red Hat CDN":[""],"Red Hat CDN URL":["Red Hat CDN URL"],"Red Hat Repositories":["Red Hat 리포지터리 "],"Red Hat Repositories page":["Red Hat 리포지터리 페이지 "],"Red Hat content will be consumed from an {type}.":[""],"Red Hat content will be consumed from the {type}.":[""],"Red Hat content will be consumed from {type}.":[""],"Red Hat content will be enabled and consumed via the {type} process.":[""],"Red Hat products cannot be manipulated.":["Red Hat 제품을 조작할 수 없습니다. "],"Red Hat provider can not be deleted":["Red Hat 공급자는 삭제할 수 없음 "],"Red Hat repositories cannot be manipulated.":["Red Hat 리포지터리를 조작할 수 없습니다. "],"Refresh":["새로고침 "],"Refresh Alternate Content Source":[""],"Refresh Content Host Statuses for %s":[""],"Refresh Manifest":["매니페스트 새로 고침 "],"Refresh alternate content sources":[""],"Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source.":[""],"Refresh previously imported manifest for Red Hat provider":["Red Hat 공급자에 대해 이전에 가져온 매니페스트를 새로 고침 "],"Refresh source":[""],"Refresh_Content_Host_Status":[""],"Register a host with subscription and information":[""],"Register host '%s' before attaching subscriptions":[""],"Registered":["등록됨 "],"Registered by":[""],"Registered on":[""],"Registering to multiple environments is not enabled.":[""],"Registration details":[""],"Registry name pattern results in duplicate container image names for these repositories: %s.":[""],"Registry name pattern results in invalid container image name of member repository '%{name}'":[""],"Registry name pattern will result in invalid container image name of member repositories":[""],"Reindex subscriptions":["서브스크립션 다시 인덱싱"],"Related composite content views":[""],"Related composite content views: ":[""],"Related content views":[""],"Related content views will appear here when created.":[""],"Related content views: ":[""],"Release":["릴리즈 "],"Release version":[""],"Release version for this Host to use (7Server, 7.1, etc)":[""],"Release version of the content host":["컨텐츠 호스트의 릴리즈 버전 "],"Releasever to disable":["비활성화할 Releasever "],"Releasever to enable":["활성화할 Releasever "],"Reload data":["데이터 다시 불러오기 "],"Remote action:":["원격 작업:"],"Remote execution job '${description}' failed.":[""],"Removal of package group(s) requested: %{groups}":[""],"Removal of package(s) requested: %{packages}":[""],"Remove":["삭제 "],"Remove Content":["컨텐츠 삭제 "],"Remove Version":["버전 삭제 "],"Remove Versions and Associations":["버전 및 연결 삭제 "],"Remove a content view from an environment":["환경에서 컨텐츠 뷰 삭제 "],"Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument.":[""],"Remove components from the content view":[""],"Remove content on one or more hosts using katello-agent. %s":[""],"Remove content view version":["컨텐츠 뷰 버전 삭제 "],"Remove from Environment":["환경에서 삭제 "],"Remove from environment":[""],"Remove from environments":[""],"Remove host from collections":[""],"Remove host from host collections":[""],"Remove hosts from the host collection":["호스트 컬렉션에서 호스트 삭제"],"Remove lifecycle environments from the smart proxy":[""],"Remove module stream":[""],"Remove one or more host collections from one or more hosts":["하나 이상의 호스트에서 하나 이상의 호스트 컬렉션 삭제"],"Remove one or more subscriptions from an upstream manifest":[""],"Remove package":["패키지 삭제 "],"Remove package for %s":[""],"Remove package group":["패키지 그룹 삭제 "],"Remove package group via Katello interface":["Katello 인터페이스를 통해 패키지 그룹 삭제"],"Remove package via Katello interface":["Katello 인터페이스를 통해 패키지 삭제"],"Remove packages via Katello interface":[""],"Remove products from sync plan":["동기화 계획에서 제품 삭제 "],"Remove subscriptions":["서브스크립션 삭제"],"Remove subscriptions from %s":["%s에서 서브스크립션 삭제"],"Remove subscriptions from one or more hosts":[""],"Remove versions and/or environments from a content view and reassign systems and keys":["컨텐츠 뷰에서 버전 및 환경 삭제 후 시스템 및 키 다시 지정 "],"Remove versions from environments":[""],"Removed component from content view":[""],"Removed components from content view":[""],"Removing Package Group...":["패키지 그룹 삭제 중..."],"Removing Package...":["패키지 삭제 중..."],"Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}":[""],"Removing this version from all environments will not delete the version. Version will still be available for later promotion.":[""],"Repo Type":["리포지터리 유형 "],"Repositories":["리포지터리 "],"Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected).":[""],"Repositories from published Content Views are not allowed.":["공개된 컨텐츠 뷰에서 리포지터리는 허용되지 않습니다. "],"Repository":["리포지터리 "],"Repository %s cannot be deleted since it has already been included in a published Content View.":["리포지터리 %s는 공개된 컨텐츠 뷰에 이미 포함되어 있으므로 삭제할 수 없습니다. "],"Repository '%(repoName)s' has been disabled.":[""],"Repository '%(repoName)s' has been enabled.":[""],"Repository Id associated with the kickstart repo used for provisioning":[""],"Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it.":["게시된 컨텐츠 뷰에 이미 포함되었기 때문에 리포지터리를 삭제할 수 없습니다. 삭제하기 전에 이 리포지터리가 포함된 모든 컨텐츠 뷰 버전을 먼저 삭제하십시오."],"Repository cannot be disabled since it has already been promoted.":["리포지터리는 이미 승격되었기 때문에 이를 비활성화할 수 없습니다. "],"Repository has already been cloned to %{cv_name} in environment %{to_env}":["리포지터리가 이미 환경 %{to_env}에 있는 %{cv_name}에 복제되어 있습니다 "],"Repository id":["리포지터리 ID"],"Repository identifier":["리포지터리 ID"],"Repository label '%s' is not associated with content view.":[""],"Repository not found":["리포지터리를 찾을 수 없음 "],"Repository path":[""],"Repository set disabled":[""],"Repository set enabled":[""],"Repository set name to search on":["검색할 리포지터리 세트 이름 "],"Repository set reset to default":[""],"Repository sets":[""],"Repository sets are not available for custom products.":["리포지터리 세트는 사용자 정의 제품에서 사용할 수 없습니다."],"Repository sets disabled":[""],"Repository sets enabled":[""],"Repository sets reset to default":[""],"Repository sets will appear here after enabling Red Hat repositories or creating custom products.":[""],"Repository sets will appear here when the host\\\\'s content view and environment has available content.":[""],"Repository type":[""],"Republish Repositories of %{name} %{version}":[""],"Republish Version Repositories":[""],"Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys.":[""],"Requirements is not valid yaml.":[""],"Requirements yaml should be a key-value pair structure.":[""],"Requirements yaml should have a 'collections' key":[""],"Requires Virt-Who":[""],"Reset":["재설정"],"Reset filters":[""],"Reset module stream":[""],"Reset to default":["기본값으로 다시 설정 "],"Reset to the default state":[""],"Resolve traces":[""],"Resolve traces for one or more hosts":[""],"Resolve traces via Katello interface":[""],"Resource":["리소스"],"Restart Services via Katello interface":[""],"Restart app":[""],"Restart via customized remote execution":[""],"Restart via remote execution":[""],"Restrict composite content view promotion":[""],"Result":["결과 "],"Retrieve a single errata for a host":["호스트에 대한 단일 에라타를 가져옵니다."],"Return Red Hat (non-custom) products only":[""],"Return content that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported.":[""],"Return custom products only":[""],"Return deb packages that are applicable to one or more hosts (defaults to true if host_id is specified)":[""],"Return deb packages that are upgradable on one or more hosts":[""],"Return deb packages that can be added to the specified object. Only the value 'content_view_version' is supported.":[""],"Return enabled products only":[""],"Return errata that are applicable to one or more hosts (defaults to true if host_id is specified)":[""],"Return errata that are applicable to this host. Defaults to false)":[""],"Return errata that are upgradable on one or more hosts":[""],"Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported.":[""],"Return name and stream information only)":[""],"Return only errata of a particular severity (None, Low, Moderate, Important, Critical)":[""],"Return only errata of a particular type (security, bugfix, enhancement)":[""],"Return only packages of a particular status (upgradable or up-to-date)":[""],"Return only subscriptions which can be attached to the upstream allocation":[""],"Return only the latest version of each package":[""],"Return only the upstream pools which map to the given Katello pool IDs":[""],"Return packages that are applicable to one or more hosts (defaults to true if host_id is specified)":[""],"Return packages that are upgradable on one or more hosts":[""],"Return packages that can be added to the specified object. Only the value 'content_view_version' is supported.":[""],"Return same, different or all results":[""],"Return subscriptions that match installed products of the specified host":["지정한 호스트의 설치된 제품과 일치하는 서브스크립션 반환"],"Return subscriptions which do not overlap with a currently-attached subscription":["현재 연결된 서브스크립션과 중복되지 않는 서브스크립션 반환"],"Return the content of a Content Credential, used directly by yum":[""],"Return the content of a repo gpg key, used directly by yum":["yum에 직접 사용되는 리포지터리 gpg 키의 컨텐츠를 반환 "],"Return the enabled content types":[""],"Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported":[""],"Review affected environment":[""],"Review affected environments":[""],"Review details":[""],"Review the information below and click ":[""],"Review your currently selected changes for ":[""],"Role":["역할 "],"Role of host":[""],"Roles":["역할 "],"Rules to be added":[""],"Run Sync Plan:":[""],"Running":["실행 중 "],"SKU":[""],"SLA":[""],"SRPM details":[""],"SSL CA Content Credential":[""],"SSL CA certificate":[""],"SSL client certificate":[""],"SSL client key":[""],"SSL version used to communicate with the CDN":[""],"SUBSCRIPTIONS EXPIRING SOON":[""],"Save":["저장"],"Saving alternate content source...":[""],"Schedule errata for installation using katello-agent. %s":[""],"Schema Version 1":["스키마 버전 1"],"Schema Version 2":["스키마 버전 2"],"Search":["검색 "],"Search Query":[""],"Search available packages":[""],"Search host collections":[""],"Search pattern (defaults to '*')":[""],"Search string":["검색 문자열"],"Search string for erratum to perform an action on":[""],"Search string for host to perform an action on":["작업을 수행할 호스트의 검색 문자열"],"Search string for hosts to perform an action on":[""],"Search string for versions to perform an action on":[""],"Security":["보안 "],"Security errata applicable":["적용 가능한 보안 에라타"],"Security errata installable":[""],"Select":["선택 "],"Select ...":[""],"Select All":["모두 선택 "],"Select Content View":["컨텐츠 뷰 선택 "],"Select None":["선택하지 않음 "],"Select Organization":["조직 선택 "],"Select Value":[""],"Select a CA certificate":[""],"Select a client certificate":[""],"Select a client key":[""],"Select a content source first":[""],"Select a content view":[""],"Select a lifecycle environment and a content view to move these hosts.":[""],"Select a lifecycle environment and a content view to move this host.":[""],"Select a lifecycle environment from the available promotion paths to promote new version.":[""],"Select a provider to install katello-host-tools-tracer":[""],"Select a source":[""],"Select add-ons":[""],"Select all":[""],"Select all rows":[""],"Select an Organization":["조직 선택 "],"Select an environment":[""],"Select an environment first":[""],"Select an option":[""],"Select an organization":[""],"Select available version of ${cvName} to use":[""],"Select available version of content views to use":[""],"Select content view":[""],"Select environment":["환경 선택 "],"Select host collection(s) to associate with host {hostName}.":[""],"Select host collection(s) to remove from host {hostName}.":[""],"Select hosts to assign to %s":["%s에 할당할 호스트 선택 "],"Select lifecycle environment":[""],"Select none":[""],"Select one":[""],"Select packages to install to the host {hostName}.":[""],"Select page":[""],"Select products":[""],"Select products to associate to this source.":[""],"Select row":[""],"Select smart proxies to be used with this source.":[""],"Select smart proxy":[""],"Select source type":[""],"Select system purpose attributes for host {hostName}.":[""],"Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media.":[""],"Selected environment ":[""],"Selected environments ":[""],"Sending a list of included IDs is not allowed when all items are being selected.":[""],"Service Level %s":["서비스 레벨 %s"],"Service Level (SLA)":["서비스 레벨 (SLA)"],"Service level":[""],"Service level of host":[""],"Service level to be used for autoheal":[""],"Set content overrides for the host":["호스트에 대한 컨텐츠 덮어쓰기 설정"],"Set content overrides to one or more hosts":[""],"Set true to override to enabled; Set false to override to disabled.'":[""],"Set true to remove an override and reset it to 'default'":[""],"Sets the system add-ons":[""],"Sets the system purpose usage":[""],"Sets whether the Host will autoheal subscriptions upon checkin":[""],"Setting 'default_location_subscribed_hosts' is not set to a valid location.":[""],"Severity":["중요도"],"Severity must be one of: %s":[""],"Show %s":[""],"Show :a_resource":[":a_resource 표시 "],"Show a Content Credential":[""],"Show a content view":["컨텐츠 뷰 표시 "],"Show a content view component":[""],"Show a content view's history":["컨텐츠 뷰의 기록 표시 "],"Show a host collection":["호스트 컬렉션 표시 "],"Show a product":["제품 표시 "],"Show a repository":[""],"Show a subscription":["서브스크립션 표시 "],"Show a sync plan":["동기화 계획 표시 "],"Show affected activation keys":[""],"Show affected hosts":[""],"Show all":[""],"Show all repository sets":[""],"Show an activation key":["활성 키 표시 "],"Show an alternate content source.":[""],"Show an environment":["환경 표시 "],"Show content available for an activation key":["활성키에 사용 가능한 컨텐츠 표시 "],"Show content view version":["컨텐츠 뷰 버전 표시 "],"Show filter rule info":["필터 규칙 정보 표시 "],"Show full description":[""],"Show hosts associated to an activation key":[""],"Show organization":["조직 표시 "],"Show release versions available for an activation key":["활성키에 사용 가능한 릴리즈 버전 표시 "],"Show releases available for the content host":["컨텐츠 호스트에 사용 가능한 릴리즈 표시 "],"Show repositories":[""],"Show repositories enabled on the host that are known to Katello":[""],"Show the available repository types":["사용 가능한 리포지터리 유형 표시"],"Shows status of Katello system and it's subcomponents":[""],"Shows version information":["버전 정보 표시"],"Simple Content Access":[""],"Simple Content Access has been disabled by the upstream organization administrator.":[""],"Simple Content Access has been disabled for '%{subject}'.":[""],"Simple Content Access has been enabled for '%{subject}'.":[""],"Simplified":[""],"Single content view consisting of e.g. repositories":[""],"Size of file to upload":[""],"Skip metadata check on each repository on the smart proxy":[""],"Skipped pulp_auth check after failed pulp check":["실패한 pulp 검사 후 pulp_auth 검사를 건너뛰었습니다."],"Smart proxies":["스마트 프록시 "],"Smart proxy IDs":["스마트 프록시 ID "],"Smart proxy content source not found!":[""],"Sockets":["소켓 "],"Sockets: %s":["소켓: %s"],"Solution":["솔루션 "],"Solve RPM dependencies by default on Content View publish, defaults to false":[""],"Solve dependencies":[""],"Some hosts are not registered as content hosts and will be ignored.":[""],"Some of your inputs contain errors. Please update them and save your changes again.":[""],"Some services are not properly started. See the About page for more information.":[""],"Something went wrong while adding a bookmark: ${getBookmarkErrorMsgs(error.response)}":[""],"Something went wrong while adding a filter rule! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while adding filter rules! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while editing the filter! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while editing version details. ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while fetching ${lowerCase(pluralLabel)}! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while fetching files! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting module streams! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while getting the data. See the logs for more information":[""],"Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while loading the Smart Proxy. See the logs for more information":[""],"Something went wrong while loading the content views. See the logs for more information":[""],"Something went wrong while refreshing alternate content sources: ":[""],"Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving package groups! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}":[""],"Something went wrong while updating the content source. See the logs for more information":[""],"Something went wrong! Please check server logs!":[""],"Sort field and order, eg. 'id DESC'":[""],"Source RPM":["소스 RPM"],"Source RPMs":["소스 RPM "],"Source type":[""],"Specify an export chunk size less than 1_000_000 GB":[""],"Specify the list of units in each repo":[""],"Split the exported content into archives no greater than the specified size in gigabytes.":[""],"Stacking ID":["스태킹 ID"],"Start Date":["시작 날짜 "],"Start Date and Time can't be blank":["시작 날짜 및 시간을 비워둘 수 없음 "],"Start Time":["시작 시간 "],"Start date":[""],"Starts":["시작 "],"State":["상태 "],"Status":["상태 "],"Status must be one of: %s":[""],"Storage":["스토리지"],"Stream":["스트림"],"Streamed":[""],"Streams based on the host based on the installation status":[""],"Streams based on the host based on their status":[""],"Submit":["보내기"],"Subnet IDs":["서브넷 ID "],"Subpaths":[""],"Subscription":["서브스크립션 "],"Subscription Details":["서브스크립션 정보 "],"Subscription ID":["서브스크립션 ID"],"Subscription Info":["서브스크립션 정보 "],"Subscription Manifest":["서브스크립션 매니페스트"],"Subscription Manifest validity check":[""],"Subscription Name":[""],"Subscription Pool id":["서브스크립션 풀 ID"],"Subscription Pool uuid":["서브스크립션 풀 uuid"],"Subscription Status":["서브스크립션 상태 "],"Subscription UUID":["서브스크립션 UUID"],"Subscription connection enabled":[""],"Subscription expiration notification":[""],"Subscription id is nil.":["서브스크립션 ID가 nil입니다."],"Subscription identifier":["서브스크립션 id"],"Subscription manager name registration fact":[""],"Subscription manager name registration fact strict matching":[""],"Subscription manifest file":["서브스크립션 매니페스트 파일 "],"Subscription not found":[""],"Subscription status":[""],"Subscription was not persisted - %{error_message}":[""],"Subscriptions":["서브스크립션 "],"Subscriptions Expiring in 120 Days":["120일 후 서브스크립션 만료"],"Subscriptions expiring soon":[""],"Subscriptions have been saved and are being updated. ":[""],"Subscriptions information based on selected activation keys:":["선택한 활성키에 기반하는 서브스크립션 정보: "],"Subscriptions service":[""],"Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}].":[""],"Success":["성공 "],"Successfully added %s Host(s).":["%s개의 호스트를 추가했습니다."],"Successfully added %{count} content host(s) to host collection %{host_collection}.":["호스트 컬렉션 %{host_collection}에 %{count} 컨텐츠 호스트를 성공적으로 추가했습니다. "],"Successfully changed sync plan for %s product(s)":["%s 제품의 동기화 계획을 성공적으로 변경했습니다 "],"Successfully initiated removal of %s product(s)":["%s 제품의 삭제를 성공적으로 시작했습니다 "],"Successfully refreshed.":[""],"Successfully removed %s Host(s).":["%s개의 호스트를 삭제했습니다."],"Successfully removed %{count} content host(s) from host collection %{host_collection}.":["호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "],"Successfully synced capsule.":[""],"Successfully synchronized.":[""],"Summary":["요약 "],"Support Type":["지원 유형 "],"Supported Content Types":[""],"Sync Canceled":["동기화 취소 "],"Sync Connect Timeout":[""],"Sync Content View on Smart Proxy(ies)":[""],"Sync Incomplete":["동기화가 완료되지 않았습니다 "],"Sync Overview":["동기화 개요 "],"Sync Plan":["동기화 계획 "],"Sync Plan: ":[""],"Sync Plans":["동기화 계획 "],"Sync Repository on Smart Proxy(ies)":[""],"Sync Smart Proxies after content view promotion":[""],"Sync Sock Connect Timeout":[""],"Sync Sock Read Timeout":[""],"Sync Status":["동기화 상태 "],"Sync Summary":["동기화 요약"],"Sync Summary for %s":["%s에 대한 동기화 요약"],"Sync Total Timeout":[""],"Sync a repository":["리포지터리 동기화 "],"Sync all repositories for a product":["제품의 모든 리포지터리 동기화"],"Sync capsule":[""],"Sync complete.":["동기화가 완료되었습니다. "],"Sync errata":[""],"Sync one or more products":["하나 이상의 제품 동기화 "],"Sync plan identifier to attach":["첨부할 동기화 계획 ID "],"Sync smart proxy content directly from upstream repositories by selecting the desired products.":[""],"Sync state":[""],"Syncable export":[""],"Synced ":[""],"Synced Content":[""],"Synced to smart proxy":[""],"Synchronize":["동기화 "],"Synchronize Now":["지금 동기화 "],"Synchronize repository":["리포지터리 동기화 "],"Synchronize smart proxy":[""],"Synchronize the content to the smart proxy":[""],"Synchronize: Skip Metadata Check":[""],"Synchronize: Validate Content":[""],"Syncing Complete.":["동기화를 완료했습니다."],"Synopsis":[""],"System Purpose":["시스템 목적"],"System Status":["시스템 상태 "],"System purpose":[""],"System purpose attributes updated":[""],"System purpose enables you to set the system\\\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console.":[""],"Tag name":[""],"Tags":["태그"],"Task":["작업"],"Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}":[""],"Task ${task.humanized.action} has started.":[""],"Task canceled":["태스크 취소됨 "],"Task detail":[""],"Temporary":["임시"],"The '%s' environment cannot contain a changeset!":["'%s' 환경에 변경 집합을 포함할 수 없습니다! "],"The Alternate Content Source type":[""],"The URL to receive a session token from, e.g. used with Automation Hub.":["세션 토큰을 수신할 URL, 예: Automation Hub에서 사용."],"The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag.":[""],"The actual file contents":["실제 파일 컨텐츠 "],"The content type for the Alternate Content Source":[""],"The current organization cannot be deleted. Please switch to a different organization before deleting.":["현재 조직을 삭제할 수 없습니다. 삭제하기 전 다른 조직으로 전환하십시오. "],"The default content view cannot be edited, published, or deleted.":["기본 컨텐츠 뷰는 편집, 공개, 삭제할 수 없습니다."],"The default content view cannot be promoted":["기본값 컨텐츠 뷰는 승격할 수 없습니다 "],"The default dependency solving value for new content views.":[""],"The description for the content view version":[""],"The description for the content view version promotion":[""],"The description for the new generated Content View Versions":["새로 생성된 컨텐츠 뷰 버전 설명 "],"The email notification will include subscriptions expiring in this number of days or fewer.":[""],"The erratum filter rule end date is in an invalid format or type.":["에라타 필터 규칙 종료 날짜가 잘못된 형식 또는 유형으로 되어 있습니다."],"The erratum filter rule start date is in an invalid format or type.":["에라타 필터 규칙 시작 날짜가 잘못된 형식 또는 유형으로 되어있습니다."],"The erratum type must be an array. Invalid value provided":["에라타 유형은 어레이여야 합니다. 잘못된 값이 지정되었습니다 "],"The field to sort the data by. Defaults to the created date.":[""],"The following hosts have errata that apply to them: ":["다음 호스트에는 이에 적용되는 에라타가 있습니다: "],"The following repositories provided in the import metadata have an incorrect content type or provider type. Make sure the export and import repositories are of the same type before importing\\n %{repos}":[""],"The id of the content source":[""],"The id of the content view":[""],"The id of the host to alter":["변경할 호스트의 ID"],"The id of the lifecycle environment":[""],"The ids of the hosts to alter. Hosts not managed by Katello are ignored":[""],"The list of environments to promote the specified Content View Version to (replacing the older version)":[""],"The manifest doesn't exist on console.redhat.com. Please create and import a new manifest.":[""],"The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest.":[""],"The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file.":[""],"The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool.":[""],"The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded.":[""],"The maximum number of seconds that Pulp can take to download a file, not counting connection time.":[""],"The maximum number of versions of each package to keep.":["보관할 각 패키지의 최대 버전 수입니다."],"The number of days remaining in a subscription before you will be reminded about renewing it.":[""],"The number of items fetched from a single paged Pulp API call.":[""],"The offset in the file where the content starts":["컨텐츠가 시작하는 파일의 오프셋 "],"The order to sort the results in. ['asc', 'desc'] Defaults to 'desc'.":[""],"The organization's manifest does not contain the subscriptions required to enable the following repositories.\\n %{repos}":[""],"The page you are attempting to access requires selecting a specific organization.":["액세스하려는 페이지에서 특정 조직을 선택해야 합니다."],"The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest.":[""],"The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source.":[""],"The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts.":["%{content_view}의 %{environment}으로의 승격이 완료되었습니다. %{count}개의 에라타를 호스트에서 사용할 수 있습니다. "],"The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts.":["%{content_view}의 <b>%{environment}</b>으로의 승격이 완료되었습니다. %{count}개의 필요한 에라타를 호스트에 설치할 수 있습니다. "],"The repository is already enabled":["리포지터리가 이미 활성화되어 있습니다 "],"The repository's publication is missing. Please run a 'complete sync' on %s.":[""],"The request did not contain any repository information.":[""],"The requested resource does not belong to the specified Organization":[""],"The requested resource does not belong to the specified organization":[""],"The requested traces were not found for this host":[""],"The selected kickstart repository is not part of the assigned content view, lifecycle environment, content source, operating system, and architecture":[""],"The selected/Inherited Content View is not available for this Lifecycle Environment":[""],"The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled":[""],"The subscription cannot be found upstream":[""],"The subscription is no longer available":[""],"The synchronization of \\\"%s\\\" has completed. Below is a summary of new errata.":["\\\"%s\\\"의 동기화가 완료되었습니다. 다음은 새 에라타 요약입니다. "],"The token key to use for authentication.":["인증에 사용할 토큰 키입니다."],"The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types":[""],"The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types":[""],"The type of content. The following types are supported: 'package' and 'package_group.":["컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package' 및 'package_group."],"The type of content. The following types are supported: 'package', 'package_group' and 'errata'.":["컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package', 'package_group', 'errata'."],"There are no Manifests to display":[""],"There are no Subscriptions to display":[""],"There are no errata that need to be applied to registered content hosts.":["등록된 컨텐츠 호스트에 적용해야 하는 에라타가 없습니다. "],"There are no host collections available to add.":[""],"There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}.":["활성화된 제품 또는 리포지터리가 없습니다. %{custom} 또는 %{redhat}을(를) 통해 활성화합니다."],"There are {numberOfActivationKeys} activation keys that need to be reassigned.":[""],"There are {numberOfHosts} hosts that need to be reassigned.":[""],"There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters.":["환경이나 버전이 지정되어 있지 않거나 잘못된 환경/버전이 지정되어 있습니다. environment_ids 및 content_view_version_ids 매개 변수를 확인하십시오. "],"There is no Manifest History to display.":[""],"There is no downloaded content to clean.":[""],"There is no such HTTP proxy":[""],"There is nothing to see here":[""],"There is {numberOfActivationKeys} activation key that needs to be reassigned.":[""],"There is {numberOfHosts} host that needs to be reassigned.":[""],"There was a problem retrieving Activation Key data from the server.":[""],"There was an error retrieving data from the server. Check your connection and try again.":[""],"There was an issue with the backend service %s: ":["백엔드 서비스 %s에 문제가 있습니다: "],"There's no running synchronization for this smart proxy.":[""],"This Content View must be set to Import-only before performing an import":[""],"This Host is not currently registered with subscription-manager.":[""],"This Organization's subscription manifest has expired. Please import a new manifest.":[""],"This action doesn't support package groups":["이 작업은 패키지 그룹을 지원하지 않습니다."],"This action should only be taken in extreme circumstances or for debugging purposes.":[""],"This action uses katello-agent, which is currently disabled. Use remote execution instead.":[""],"This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \\\"%{name}\\\" before deleting.":[""],"This certificate allows a user to view the repositories in any environment from a browser.":["이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."],"This content view does not have any versions associated.":[""],"This content view version doesn't have a history.":[""],"This content view will be automatically updated to the latest version.":[""],"This content view will be deleted. Changes will be effective after clicking Delete.":[""],"This erratum is not installable because it is not in this host's content view and lifecycle environment.":[""],"This host does not have any Module streams.":[""],"This host does not have any packages.":[""],"This host has errata that are applicable, but not installable. Adjust your filters and try again.":[""],"This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled.":[""],"This host's organization is in Simple Content Access mode. Auto-attach is disabled":[""],"This is disabled because a manifest task is in progress":[""],"This is disabled because a manifest-related task is in progress.":[""],"This is disabled because no connection could be made to the upstream Manifest.":[""],"This is disabled because no manifest exists":[""],"This is disabled because no manifest has been uploaded.":[""],"This is disabled because no subscriptions are selected.":[""],"This is not a linked repository":[""],"This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}.":[""],"This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version.":[""],"This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use.":[""],"This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true.":[""],"This service is available for unauthenticated users":["서비스는 인증되지 않은 사용자가 사용할 수 있습니다 "],"This service is only available for authenticated users":["이 서비스는 인증된 사용자만 사용할 수 있습니다 "],"This shows repositories that are used in a typical setup.":[""],"This subscription is not relevant to the current organization.":[""],"This version has not been promoted to any environments.":[""],"This version is not promoted to any environments.":[""],"This version will be removed from:":["이 버전은 다음에서 삭제됩니다: "],"This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied.":[""],"Time in minutes to consider orphan content as orphaned.":[""],"Time in seconds to wait for a host to finish a katello-agent action":[""],"Time in seconds to wait for a host to pick up a katello-agent action":[""],"Timeout when refreshing a manifest (in seconds)":[""],"Timestamp":[""],"Title":["제목"],"To get started, add a filter rule to this filter":[""],"To get started, add this host to a host collection.":[""],"To include or exclude specific content from the content view, create a filter. Without filters, the content view includes everything from the added repositories.":[""],"To update the selected host configuration, update hosts manually in the next section.":[""],"To update the selected host configuration, {link}, or update hosts manually in the next section.":[""],"Toggling Simple Content Access will refresh your manifest.":[""],"Total steps: ":[""],"Tracer":[""],"Tracer helps administrators identify applications that need to be restarted after a system is patched.":["추적기는 관리자가 시스템에 패치를 적용한 후 다시 시작해야 하는 응용프로그램을 식별하는 데 도움이 됩니다."],"Tracer profile uploaded successfully":[""],"Traces":["추적"],"Traces are being enabled":[""],"Traces are not enabled":[""],"Traces help administrators identify applications that need to be restarted after a system is patched.":[""],"Traces may be enabled by a user with the appropriate permissions.":[""],"Traces may be listed here after {pkgLink}.":[""],"Traces not available":[""],"Traces that require logout cannot be restarted remotely":[""],"Traces will be shown here to a user with the appropriate permissions.":[""],"Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy.":[""],"Trigger an auto-attach of subscriptions":["서브스크립션 자동 첨부 트리거"],"Trigger an auto-attach of subscriptions on one or more hosts":[""],"Try changing your search criteria.":[""],"Try changing your search query.":[""],"Try changing your search settings.":[""],"Trying to cancel the synchronization...":["동기화를 취소하는 중..."],"Type":["유형 "],"Type must be one of: %s":[""],"Type of content":[""],"Type of content: \\\"cert\\\", \\\"gpg_key\\\"":[""],"Type of repository. Available types endpoint: /katello/api/repositories/repository_types":[""],"URL":["URL"],"URL and paths":[""],"URL and subpaths":[""],"URL needs to have a trailing /":[""],"URL of a PyPI content source such as https://pypi.org.":[""],"URL of an OSTree repository.":[""],"UUID":["UUID"],"UUID of the consumer":[""],"UUID of the content host":["컨텐츠 호스트의 UUID "],"UUID of the system":["시스템의 UUID "],"UUID to use for registered host, random uuid is generated if not provided":[""],"UUIDs of the virtual guests from the host's hypervisor":[""],"Unable to connect":["연결할 수 없음"],"Unable to connect. Got: %s":["연결할 수 없습니다. 오류 메시지: %s"],"Unable to create ContentViewEnvironment. Check the logs for more information.":[""],"Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist.":[""],"Unable to detect pulp storage":["pulp 스토리지를 감지할 수 없습니다."],"Unable to detect puppet path":[""],"Unable to find product '%s' in organization '%s'":[""],"Unable to get users":[""],"Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. ":[""],"Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment.":[""],"Unable to incrementally export. Do a Full Export on the repository content.":[""],"Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id.":["activation_keys를 재할당할 수 없습니다. activation_key_content_view_id 및 activation_key_environment_id를 확인하십시오. "],"Unable to reassign activation_keys. Please provide key_content_view_id and key_environment_id.":["activation_keys를 재할당할 수 없습니다. key_content_view_id 및 key_environment_id를 지정하십시오. "],"Unable to reassign content hosts. Please provide system_content_view_id and system_environment_id.":["컨텐츠 호스트를 재할당할 수 없습니다. system_content_view_id 및 system_environment_id를 지정하십시오. "],"Unable to reassign systems. Please check system_content_view_id and system_environment_id.":["시스템을 재할당할 수 없습니다. system_content_view_id 및 system_environment_id를 확인하십시오. "],"Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist.":[""],"Unable to send errata e-mail notification: %{error}":["에라타 이메일 통지를 보낼 수 없습니다: %{error}"],"Unable to sync repo. This repository does not have a feed url.":["리포지터리를 동기화할 수 없습니다. 이 리포지터리에는 피드 URL이 없습니다."],"Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url.":["리포지터리를 동기화할 수 없습니다. 동기화할 권한이 없거나 선택한 리포지터리에 피드 URL이 없을 수 있습니다. "],"Unable to update the repository list":[""],"Unable to update the user-repository mapping":[""],"Unapplied Errata":["적용되지 않은 에라타 "],"Unattach a subscription":["서브스크립션 할당 해제 "],"Unentitled":["인타이틀먼트가 없음"],"Unfiltered params array: %s.":[""],"Uninstall and reset":[""],"Uninstall packages remotely using katello-agent. %s":[""],"Unknown":["알 수 없음 "],"Unknown Action":[""],"Unknown errata status":["알 수 없는 에라타 상태"],"Unknown or Unregistered":[""],"Unknown subscription status":["알 수 없는 서브스크립션 상태"],"Unknown traces status":[""],"Unlimited":["제한 없음 "],"Unregister host %s before assigning an organization":[""],"Unregister the host as a subscription consumer":[""],"Unspecified":[""],"Unsubscribed Hypervisor":[""],"Unsubscribed hypervisor":[""],"Unsupported CDN resource":[""],"Unsupported URL protocol %s.":["지원되지 않는 URL 프로토콜 %s입니다."],"Unsupported event type %{type}. Supported: %{types}":[""],"Up-to date":[""],"Update":["업데이트"],"Update Alternate Content Source":[""],"Update CDN Configuration":[""],"Update Content Overrides":[""],"Update Content Overrides to %s":[""],"Update Upstream Subscription":[""],"Update a Content Credential":[""],"Update a component associated with the content view":[""],"Update a content view":["컨텐츠 뷰 업데이트 "],"Update a content view version":[""],"Update a filter rule. The parameters included should be based upon the filter type.":["필터 규칙을 업데이트합니다. 포함된 매개 변수는 필터 유형에 기반해야 합니다. "],"Update a host collection":["호스트 컬렉션 업데이트 "],"Update a repository":["리포지터리 업데이트 "],"Update a sync plan":["동기화 계획 업데이트 "],"Update an activation key":["활성키 업데이트 "],"Update an alternate content source.":[""],"Update an environment":["환경 업데이트 "],"Update an environment in an organization":["조직에 있는 환경 업데이트 "],"Update content on one or more hosts using katello-agent. %s":[""],"Update content urls":[""],"Update for host":["호스트에 대한 업데이트"],"Update for host %s":["%s 호스트에 대한 업데이트"],"Update http proxy":[""],"Update http proxy details":[""],"Update installed packages, enabled repos, module inventory":[""],"Update of all packages requested":[""],"Update of package(s) requested: %{packages}":[""],"Update organization":["조직 업데이트 "],"Update package":["패키지 업데이트 "],"Update package for %s":[""],"Update package group via Katello interface":["Katello 인터페이스를 통해 패키지 그룹 업데이트"],"Update package via Katello interface":["Katello 인터페이스를 통해 패키지 업데이트"],"Update packages remotely using katello-agent. %s":[""],"Update packages via Katello interface":[""],"Update redhat repository":[""],"Update release version for host":[""],"Update release version for host %s":[""],"Update services requiring restart":[""],"Update the CDN configuration":[""],"Update the HTTP proxy configuration on the repositories of one or more products.":[""],"Update the content source for specified hosts and generate the reconfiguration script":[""],"Update the host immediately via remote execution":[""],"Update the information about enabled repositories":["활성화된 리포지터리에 대한 정보 업데이트 "],"Update the quantity of one or more subscriptions on an upstream allocation":[""],"Update version":[""],"Updated":["업데이트 일시 "],"Updated component details":[""],"Updated from":[""],"Updates":["업데이트 "],"Updates a product":["제품 업데이트 "],"Updates all packages on the host(s)":[""],"Updating Package...":["패키지 업데이트 중..."],"Updating System Purpose for host":[""],"Updating System Purpose for host %s":[""],"Updating package group...":["패키지 그룹 업데이트 중..."],"Updating repository authentication configuration":[""],"Upgradable":["업그레이드 가능"],"Upgradable to":[""],"Upgrade":[""],"Upgrade via customized remote execution":[""],"Upgrade via remote execution":[""],"Upload Content Credential contents":[""],"Upload a chunk of the file's content":["필터의 내용 청크를 업로드 "],"Upload a subscription manifest":["서브스크립션 매니페스트 업로드 "],"Upload content into the repository":["컨텐츠를 리포지터리에 업로드 "],"Upload into":["업로드 "],"Upload profiles without Dynflow":[""],"Upload request id":["요청 ID 업로드 "],"Upstream Candlepin":[""],"Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type.":[""],"Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type.":[""],"Upstream Name cannot be blank when Repository URL is provided.":[""],"Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type.":[""],"Upstream identity certificate not available":["업스트림 ID 인증서를 사용할 수 없습니다 "],"Upstream organization %s does not provide this content path":[""],"Upstream organization %{org_label} does not have a content view with the label %{cv_label}":[""],"Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}":[""],"Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type.":[""],"Upstream password requires upstream username be set.":[""],"Upstream username and password may only be set on custom repositories.":[""],"Upstream username and upstream password cannot be blank for ULN repositories":[""],"Upstream username requires upstream password be set.":[""],"Usage":[""],"Usage Type":["사용 유형"],"Usage of host":[""],"Usage type":[""],"Use HTTP Proxies":[""],"Use HTTP proxies":[""],"Use remote execution by default":[""],"Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10":[""],"User":["사용자 "],"User '%s' did not specify an organization ID and does not have a default organization.":["사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "],"User '%{user}' does not belong to Organization '%{organization}'.":["사용자 '%{user}'는 조직 '%{organization}'에 속해 있지 않습니다. "],"User IDs":["사용자 ID"],"User must be logged in.":["사용자는 로그인해야 합니다. "],"Username":["사용자 이름 "],"Username for authentication. Relevant only for 'upstream_server' type.":[""],"Username of the upstream repository user used for authentication":[""],"Username to access URL":[""],"Username, Password, Organization Label, and SSL CA Content Credential must be provided together.":[""],"Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server.":[""],"Valid":["유효 "],"Value must either be a boolean or 'default' for 'enabled'":[""],"Verify SSL":["SSL 확인 "],"Verify checksum":[""],"Verify checksum for one or more products":[""],"Verify checksum of repository contents":[""],"Version":["버전 "],"Version ":[""],"Version ${item.version}":[""],"Version ${version.version}":[""],"Version ${versionNameToRemove} will be deleted from all environments. It will no longer be available for promotion.":[""],"Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion.":[""],"Version ${versionOne}":[""],"Version ${versionTwo}":[""],"Version details updated.":[""],"Version in use":[""],"Versions":["버전 "],"Versions ":[""],"Versions to compare":[""],"Versions to exclusively include in the action":[""],"Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well.":[""],"Versions will appear here when the content view is published.":[""],"View %{view} has not been promoted to %{env}":["보기 %{view}가 %{env}에 승격되었습니다"],"View Subscription Usage":[""],"View a report of the affected hosts":[""],"View applicable errata":[""],"View by":[""],"View documentation":[""],"View matching content":[""],"View tasks ":[""],"View the Content Views page":[""],"View the job":[""],"Virtual":["가상 "],"Virtual guests":[""],"Virtual host":[""],"Waiting to start.":[""],"Warning":["경고 "],"When \\\"Releases/Distributions\\\" is set, \\\"Upstream URL\\\" must also be set!":[""],"When \\\"Upstream URL\\\" is set, \\\"Releases/Distributions\\\" must also be set!":[""],"When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories.":[""],"When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')":[""],"When set to 'True' repository types that are creatable will be returned":["'True'로 설정할 경우 생성 가능한 리포지터리 유형이 반환됩니다."],"When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted.":[""],"Whether Simple Content Access should be enabled for the organization.":[""],"Whether or not the host collection may have unlimited hosts":["호스트 컬렉션에 호스트가 무제한 포함되는지 여부"],"Whether or not to auto sync the Smart Proxies after a content view promotion.":[""],"Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions.":["일부 작업을 수행하기 전에 pulp 및 candlepin와 같은 백엔드 서비스의 상태를 확인할지 여부입니다."],"Whether or not to regenerate the repository on disk. Default: true":[""],"Whether or not to show all results":["모든 결과를 표시할 지에 대한 여부 "],"Whether or not to sync an external capsule after upload. Default: true":[""],"Whether to include available content attribute in results":["사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"],"Whether to turn on Simple Content Access for the organization.":[""],"Workers":["Worker"],"Wrong content type submitted.":[""],"Yay empty state":[""],"Yes":["예 "],"You are not allowed to promote to Environments %s":["환경 %s에 승격할 수 없습니다 "],"You are not allowed to publish Content View %s":["컨텐츠 뷰 %s을(를) 공개할 수 없습니다 "],"You can check sync status for repositories only in the library lifecycle environment.'":["라이브러리에 있는 라이프 사이클 환경에서만 리포지터리의 동기화 상태를 확인할 수 있습니다. "],"You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'.":["호스트 컬렉션 '%{host_collection}'에 %{max_hosts}개보다 많은 호스트를 연결할 수 없습니다."],"You cannot set an organization's parent. This feature is disabled.":["조직의 부모를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "],"You cannot set an organization's parent_id. This feature is disabled.":["조직의 parent_id를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "],"You currently don't have any ${selectedContentType}.":[""],"You currently don't have any alternate content sources.":[""],"You currently don't have any repositories associated with this content.":[""],"You currently don't have any repositories to add to this filter.":[""],"You currently don\\\\'t have any related content views.":[""],"You currently have no content views to display":[""],"You do not have permissions to delete %s":["%s을(를) 삭제할 권한이 없습니다 "],"You have not set a default organization on the user %s.":["사용자 %s에 디폴트 조직이 설정되어 있지 않습니다. "],"You have subscriptions expiring within %s days":[""],"You have unsaved changes. Do you want to exit without saving your changes?":[""],"You were not allowed to add %s":["%s을(를) 추가할 수 없습니다 "],"You were not allowed to change sync plan for %s":["%s의 동기화 계획을 변경할 수 없습니다 "],"You were not allowed to delete %s":["%s을(를) 삭제할 수 없습니다 "],"You were not allowed to sync %s":["%s을(를) 동기화할 수 없습니다 "],"You're making changes to %(entitlementCount)s entitlement(s)":[""],"Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs.":[""],"Your search returned no matching ":[""],"Your search returned no matching ${name}.":[""],"Your search returned no matching DEBs.":[""],"Your search returned no matching Module streams.":[""],"Your search returned no matching RPMs.":[""],"Your search returned no matching activation keys.":[""],"Your search returned no matching hosts.":[""],"Yum":[""],"a content unit":[""],"a custom CDN URL":[""],"a deb package":[""],"a docker manifest":["Docker 매니페스트"],"a docker manifest list":[""],"a docker tag":["Docker 태그"],"a file":[""],"a future release":[""],"a module stream":[""],"a package":["패키지 "],"a package group":["패키지 그룹 "],"actions not found":[""],"activation key identifier":["활성키 ID "],"activation key name to filter by":["필터링할 활성키 이름 "],"activation keys":["활성키 "],"add all module streams without errata to the included/excluded list. (module stream filter only)":[""],"add all packages without errata to the included/excluded list. (package filter only)":["모든 패키지를 에라타 없이 포함/제외된 목록에 추가합니다(패키지 필터만 해당)."],"all environments":[""],"all packages":["모든 패키지 "],"all packages update":["모든 패키지 업데이트 "],"all packages update failed":["모든 패키지 업데이트 실패 "],"allow unauthenticed pull of container images":[""],"already belongs to the content view":[""],"already taken":["이미 사용되고 있습니다 "],"an ansible collection":[""],"an erratum":["에라타"],"an organization":["조직 "],"are only allowed for Yum repositories.":[""],"attempted to sync without a feed URL":["피드 URL 없이 동기화를 시도했습니다."],"auto attach subscriptions upon registration":["등록 시 서브스크립션을 자동으로 첨부 "],"base url to perform repo discovery on":["리포지터리 검색을 실행하기 위한 기본 url "],"bug fix":[""],"bug fixes":[""],"bulk add filter rules":[""],"bulk delete filter rules":[""],"can the activation key have unlimited hosts":[""],"can't be blank":["빈 칸으로 두지 마십시오. "],"cannot add filter to generated content views":[""],"cannot add filter to import-only view":[""],"cannot be a binary file.":["바이너리 파일을 지정할 수 없습니다. "],"cannot be blank":["빈 칸으로 비워 둘 수 없습니다 "],"cannot be blank when Repository URL is provided.":[""],"cannot be changed.":["변경할 수 없습니다."],"cannot be deleted if it has been promoted.":["이미 승격되어 있을 경우 이를 삭제할 수 없습니다. "],"cannot be less than one":["하나 미만을 지정할 수 없음 "],"cannot be lower than current usage count (%s)":["현재 사용량 (%s) 보다 높아야 합니다 "],"cannot be nil":["nil이 될 수 없습니다 "],"cannot be set because unlimited hosts is set":[""],"cannot be set for non-yum repositories.":["비yum 리포지터리에 대해 설정할 수 없습니다."],"cannot contain characters other than ascii alpha numerals, '_', '-'. ":["ASCII 영숫자, '_', '-' 이외의 문자를 포함할 수 없습니다."],"cannot contain commas":[""],"cannot contain filters if composite view":["복합적인 뷰의 경우 필터를 포함할 수 없습니다 "],"cannot contain filters whose repositories do not belong to this content view":["컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할 수 없습니다 "],"cannot contain more than %s characters":["%s 자 이상을 포함시킬 수 없습니다 "],"checking %s task status":[""],"checking Pulp task status":["Pulp 태스크 상태를 확인하는 중"],"click here":[""],"composite content view identifier":[""],"composite content view numeric identifier":[""],"content release version":["컨텐츠 릴리즈 버전 "],"content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')":[""],"content view Dependency Solving Default":[""],"content view component ID. Identifier of the component association":[""],"content view filter identifier":["컨텐츠 뷰 필터 ID "],"content view filter rule identifier":[""],"content view id":["컨텐츠 뷰 ID"],"content view identifier":["컨텐츠 뷰 ID "],"content view identifier of the component who's latest version is desired":[""],"content view node publish":["컨텐츠 뷰 노드 공개 "],"content view numeric identifier":["숫자로된 컨텐츠 뷰 ID "],"content view publish":["컨텐츠 뷰 공개 "],"content view refresh":["컨텐츠 뷰 새로 고침 "],"content view to reassign orphaned activation keys to":["분리된 활성키를 재할당하기 위해 컨텐츠 보기 "],"content view to reassign orphaned systems to":["분리된 시스템을 재할당하기 위해 컨텐츠 보기 "],"content view version identifier":["컨텐츠 뷰 버전 ID "],"content view version identifiers to be deleted":["삭제할 컨텐츠 뷰 버전 ID "],"content view versions to compare":["비교할 컨텐츠 뷰 버전 "],"create a custom product":[""],"create a filter for a content view":["컨텐츠 뷰의 필터 생성"],"deb, package, package group, or docker tag names":[""],"deb_ids is not an array":[""],"delete a filter":["필터 삭제"],"delete the content view with all the versions and environments":[""],"description":["설명 "],"description of the environment":["환경 설명 "],"description of the filter":["필터 설명 "],"description of the repository":[""],"disk":[""],"download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')":[""],"enables or disables synchronization":["동기화 활성화 또는 비활성화 "],"enhancement":[""],"enhancements":[""],"environment":["환경 "],"environment id":["환경 ID "],"environment identifier":["환경 ID"],"environment numeric identifier":["숫자로된 환경 ID "],"environment numeric identifiers to be removed":["제거할 숫자로된 환경 ID "],"environment to reassign orphaned activation keys to":["분리된 활성키를 재할당하기 위한 환경 "],"environment to reassign orphaned systems to":["분리된 시스템을 할당하기 위한 환경 "],"environments":["환경 "],"errata_id of the content view filter rule":[""],"errata_ids is a required parameter":[""],"errata_ids or update_all must be provided":[""],"erratum: IDs or a select all object":["에라타: ID 또는 모든 개체 선택 "],"erratum: end date (YYYY-MM-DD)":["에라타: 종료일 (YYYY-MM-DD)"],"erratum: id":["에라타: ID "],"erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'":["에라타: 에라타의 '발급 날짜' 또는 '업데이트 날짜' 열을 사용하여 검색합니다. 값이 '발급'/'업데이트'되었습니다."],"erratum: start date (YYYY-MM-DD)":["에라타: 시작일 (YYYY-MM-DD) "],"erratum: types (enhancement, bugfix, security)":["에라타: 유형 (확장 기능 , 버그 수정, 보안) "],"filter by interval":["간격에 따라 필터링 "],"filter by name":["이름에 따라 필터링 "],"filter by sync date":["동기화 날짜에 따라 필터링 "],"filter content view filters by name":["이름별로 컨텐츠 뷰 필터링"],"filter identifier":["필터 ID "],"filter identifiers":[""],"filter only environments containing this label":[""],"filter only environments containing this name":["이름이 포함환 환경만 필터링 "],"for repository '%{name}' is not unique and cannot be created in '%{env}'. Its Container Repository Name (%{container_name}) conflicts with an existing repository. Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific.":[""],"force content view promotion and bypass lifecycle environment restriction":["컨텐츠 뷰 승격 강제 및 라이프 사이클 환경 제한을 무시 "],"foreman-tasks service not running or is not ready yet":["foreman-tasks 서비스가 실행 중이 아니거나 아직 준비되지 않았습니다."],"has already been taken":["이미 사용되고 있습니다"],"has already been taken for a product in this organization.":["이 조직의 제품에 대해 이미 사용되고 있습니다."],"has already been taken for this product.":["제품에 대해 이미 사용되고 있습니다. "],"here":["여기 "],"host collection name to filter by":["필터링할 호스트 컬렉션 이름 "],"hosts":["호스트"],"how often synchronization should run":["동기화 실행 빈도 "],"id of a host":["호스트 ID"],"id of host":[""],"id of the gpg key that will be assigned to the new repository":["새 리포지터리에 할당할 GPG 키 ID"],"identifier of the version of the component content view":[""],"ids to filter content by":["컨텐츠 필터링에 사용할 ID"],"if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA":[""],"initiating %s task":[""],"initiating Pulp task":["Pulp 태스크를 시작하는 중"],"installing errata...":["에라타 설치 중..."],"installing erratum...":["에라타 설치 중..."],"installing or updating packages":[""],"installing package group...":["패키지 그룹 설치 중..."],"installing package groups...":["패키지 그룹 설치 중..."],"installing package...":["패키지 설치 중..."],"installing packages...":["패키지 설치 중..."],"interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported.":[""],"invalid container image name":[""],"invalid: Repositories can only require one OS version.":[""],"is already attached to the capsule":["capsule에 이미 할당되어 있습니다 "],"is invalid":["유효하지 않음 "],"is not a valid type. Must be one of the following: %s":[""],"is not allowed for ACS. Must be one of the following: %s":[""],"is not enabled. must be one of the following: %s":[""],"is only allowed for Yum repositories.":[""],"label of the environment":["환경 레이블 "],"label of the repository":[""],"limit to only repositories with this download policy":[""],"list filters":["필터 나열"],"list of packages names":["패키지 이름 목록 "],"list of repository ids":["리포지터리 ID 목록 "],"list of rpm filename strings to include in published version":[""],"max_hosts must be given a value if this host collection is not unlimited.":["무제한 호스트 컬렉션이 아닌 경우 max_hosts에 값을 지정해야 합니다."],"maximum number of registered content hosts":["등록된 최대 컨텐츠 호스트 수 "],"may not be less than the number of hosts associated with the host collection.":["호스트 컬렉션에 연결된 호스트의 수보다 적을 수 없습니다."],"module stream ids":[""],"module streams not found":[""],"must be %{gpg_key} or %{cert}":[""],"must be a positive integer value.":["양의 정수 값이어야 합니다."],"must be one of the following: %s":["다음 중 하나이어야 합니다: %s"],"must be one of: %s":[""],"must be true or false":[""],"must be unique within one organization":["하나의 조직 내에서 고유한 것이어야 함 "],"must contain '%s'":["'%s'을 포함해야 합니다"],"must contain GPG Key":["GPG 키를 포함하고 있어야 합니다 "],"must contain at least %s character":["최소 %s자가 들어 있어야 함 "],"must contain valid Public GPG Key":["유효한 공개 GPG 키를 포함하고 있어야 합니다 "],"must contain valid Public GPG Key":["유효한 공개 GPG 키를 포함하고 있어야 합니다 "],"must not be a negative value.":[""],"must not contain leading or trailing white spaces.":["선행 또는 후행 공백을 포함할 수 없습니다 "],"name":["이름 "],"name of organization":["조직 이름 "],"name of the content view filter rule":[""],"name of the environment":["환경 이름 "],"name of the filter":["필터 이름 "],"name of the organization":["조직 이름 "],"name of the repository":["리포지터리 이름 "],"name of the subscription":[""],"name: %s doesn't exist ":["이름: %s이 존재하지 않습니다 "],"new name for the filter":["새 필터 이름 "],"new name to be given to the environment":["환경에 지정할 새 이름 "],"no":["no"],"no global default":[""],"obtain manifest history for subscriptions":["서브스크립션의 매니페스트 기록 취득 "],"of environment must be unique within one organization":["환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "],"only show the repositories readable by this user with this username":[""],"organization ID":["조직 ID"],"organization identifier":["조직 ID"],"package group: uuid":[""],"package, package group, or docker tag names":[""],"package, package group, or docker tag: name":[""],"package: architecture":[""],"package: maximum version":["패키지: 최대 버전 "],"package: minimum version":["패키지: 최소 버전 "],"package: version":["패키지: 버전 "],"package_ids is not an array":["package_ids는 배열이 아닙니다 "],"package_names_for_job_template: Action must be one of %s":[""],"params 'show_all_for' and 'available_for' must be used independently":[""],"pattern for container image names":[""],"perform an incremental import":["증분 가져오기 수행"],"policies for HTTP proxy for content sync":[""],"policy for HTTP proxy for content sync":[""],"prior environment can only have one child":[""],"product numeric identifier":["숫자로된 제품 ID "],"register_hostname_fact set for %s, but no fact found, or was localhost.":[""],"removing package group...":["패키지 그룹 삭제 중..."],"removing package groups...":["패키지 그룹 삭제 중..."],"removing package...":["패키지 삭제 중..."],"removing packages...":["패키지 삭제 중..."],"repo label":[""],"repository ID":["리포지터리 ID"],"repository id":["리포지터리 id"],"repository identifier":["리포지터리 Id "],"repository source url":["리포지터리 소스 Url"],"root-node of collection contained in responses (default: 'results')":["응답에 포함된 모음의 root 노드 (기본값: 'results')"],"root-node of single-resource responses (optional)":["단일 리소스 응답의 root 노드 (옵션) "],"rule identifier":["규칙 ID "],"run job invocation":[""],"security advisories":[""],"security advisory":[""],"service level":["서비스 레벨 "],"set true if you want to see only library environments":["라이브러리 환경만 확인하려면 true로 설정"],"sha256":[""],"show archived repositories":[""],"show filter info":["필터 정보 표시"],"show repositories in Library and the default content view":["라이브러리 및 기본값 컨텐츠 뷰에서 리포지터리 표시 "],"some executors are not responding, check %{status_url}":["일부 실행자가 응답하지 않습니다. %{status_url}을(를) 확인하십시오."],"source URL is malformed":["소스 URL의 형식이 잘못되었습니다."],"specifies if content should be included or excluded, default: inclusion=false":["컨텐츠 포함 또는 제외 여부를 지정합니다. 기본값: inclusion=false"],"start datetime of synchronization":["동기화 시작 날짜 "],"subscriptions not specified":["서브스크립션을 지정하지 않았습니다."],"sync plan description":["동기화 계획 설명 "],"sync plan name":["동기화 계획 이름 "],"sync plan numeric identifier":["숫자로된 동기화 계획 ID "],"temporarily override feed URL for sync":["동기화를 위한 임시 덮어쓰기 피드 URL"],"the following attributes can not be updated for the Red Hat provider: [ %s ]":["다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수 없습니다 "],"to":[""],"true if the latest version of the component's content view is desired":[""],"true if the latest version of the components content view is desired":[""],"true if this repository can be published via HTTP":["리포지터리가 HTTP를 통해 공개할 수 있는 경우 true"],"type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)":[""],"types of filters":[""],"unknown permission for %s":["%s에 대해 알 수 없는 권한 "],"unlimited":[""],"update a filter":["필터 업데이트"],"updating package group...":["패키지 그룹 업데이트 중..."],"updating package groups...":["패키지 그룹 업데이트 중..."],"updating package...":["패키지 업데이트 중..."],"updating packages...":["패키지 업데이트 중..."],"upstream Foreman server":[""],"url not defined.":["url이 설정되어 있지 않습니다. "],"via customized remote execution":[""],"via remote execution":["원격 실행을 통해"],"view content view tabs.":[""],"waiting for %s to finish the task":[""],"waiting for Pulp to finish the task %s":[""],"waiting for Pulp to start the task %s":[""],"whitespace-separated list of architectures to be synced from deb-archive":[""],"whitespace-separated list of releases to be synced from deb-archive":[""],"whitespace-separated list of repo components to be synced from deb-archive":[""],"with":["대치어:"],"yes":["예"],"{0} items selected":[""],"{enableRedHatRepos} or {createACustomProduct}.":[""],"{numberOfActivationKeys} activation key will be assigned to content view {cvName} in":[""],"{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in":[""],"{numberOfHosts} host will be assigned to content view {cvName} in":[""],"{numberOfHosts} hosts will be assigned to content view {cvName} in":[""],"{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion.":[""],"{versionOrVersions} {versionList} will be removed from the following environments:":[""],"{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion.":[""],"{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion.":[""],"{versionOrVersions} {versionList} will be removed from the {envLabel} environment.":[""]}}};