katello 4.5.1 → 4.8.0.rc2

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 (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/ko/katello.po CHANGED
@@ -6,13 +6,14 @@
6
6
  # Translators:
7
7
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
8
8
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
9
+ # 진선재, 2022
9
10
  #
10
11
  msgid ""
11
12
  msgstr ""
12
- "Project-Id-Version: katello 2.5.0\n"
13
+ "Project-Id-Version: katello 2.4.0-RC1\n"
13
14
  "Report-Msgid-Bugs-To: \n"
14
15
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
15
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
16
+ "Last-Translator: 진선재, 2022\n"
16
17
  "Language-Team: Korean (https://www.transifex.com/foreman/teams/114/ko/)\n"
17
18
  "MIME-Version: 1.0\n"
18
19
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,12 +38,21 @@ msgstr ""
37
38
  msgid " Content view updated"
38
39
  msgstr ""
39
40
 
41
+ msgid " DEBs"
42
+ msgstr ""
43
+
40
44
  msgid " Either select the latest content view or the content view version. Cannot set both."
41
45
  msgstr ""
42
46
 
43
47
  msgid " RPMs"
44
48
  msgstr ""
45
49
 
50
+ msgid " The base path can be a web address or a filesystem location."
51
+ msgstr ""
52
+
53
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
54
+ msgstr ""
55
+
46
56
  msgid " View task details "
47
57
  msgstr ""
48
58
 
@@ -58,10 +68,10 @@ msgstr ""
58
68
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
59
69
  msgstr ""
60
70
 
61
- msgid " content view is used in listed component content views. For more information, "
71
+ msgid " content view is used in listed composite content views."
62
72
  msgstr ""
63
73
 
64
- msgid " content view is used in listed composite content views."
74
+ msgid " content view is used in listed content views. For more information, "
65
75
  msgstr ""
66
76
 
67
77
  msgid " environment cannot be set to an environment already on its path"
@@ -73,9 +83,18 @@ msgstr ""
73
83
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
74
84
  msgstr ""
75
85
 
86
+ msgid " or any step on the left."
87
+ msgstr ""
88
+
89
+ msgid " to manage and promote content views, or select a different environment."
90
+ msgstr ""
91
+
76
92
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
77
93
  msgstr ""
78
94
 
95
+ msgid "${option}"
96
+ msgstr ""
97
+
79
98
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
80
99
  msgstr ""
81
100
 
@@ -111,6 +130,9 @@ msgstr "%s 사용됨"
111
130
  msgid "%s ago"
112
131
  msgstr "%s 전 "
113
132
 
133
+ msgid "%s guests"
134
+ msgstr ""
135
+
114
136
  msgid "%s has already been deleted"
115
137
  msgstr ""
116
138
 
@@ -318,9 +340,30 @@ msgstr "%{used}(총: %{total})"
318
340
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
319
341
  msgstr ""
320
342
 
343
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
344
+ msgstr ""
345
+
346
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
347
+ msgstr ""
348
+
349
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
350
+ msgstr ""
351
+
352
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
353
+ msgstr ""
354
+
355
+ msgid "'%{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. "
356
+ msgstr ""
357
+
358
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
359
+ msgstr ""
360
+
321
361
  msgid "(Orphaned)"
322
362
  msgstr "(종속된 패키지가 없음)"
323
363
 
364
+ msgid "(unset)"
365
+ msgstr ""
366
+
324
367
  msgid ", and"
325
368
  msgstr ""
326
369
 
@@ -348,7 +391,7 @@ msgstr ""
348
391
  msgid "A backend service [ %s ] is unreachable"
349
392
  msgstr "백엔드 서비스 [ %s ]를 사용할 수 없음 "
350
393
 
351
- msgid "A content view can be added by using the \"Create content view\" button above."
394
+ msgid "A content view can be added by using the \"Create content view\" button below."
352
395
  msgstr ""
353
396
 
354
397
  msgid "A content_type must be provided."
@@ -369,6 +412,12 @@ msgstr ""
369
412
  msgid "A post-promotion summary of hosts with installable errata"
370
413
  msgstr "설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "
371
414
 
415
+ msgid "A remote execution job is in progress"
416
+ msgstr ""
417
+
418
+ msgid "A remote execution job is in progress."
419
+ msgstr ""
420
+
372
421
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
373
422
  msgstr "auto-healing 프로세스의 서비스 레벨. 예: SELF-SUPPORT"
374
423
 
@@ -456,6 +505,9 @@ msgstr "추가 "
456
505
  msgid "Add Bookmark"
457
506
  msgstr "북마크 추가 "
458
507
 
508
+ msgid "Add DEB rule"
509
+ msgstr ""
510
+
459
511
  msgid "Add RPM rule"
460
512
  msgstr ""
461
513
 
@@ -465,13 +517,13 @@ msgstr ""
465
517
  msgid "Add a subscription to a host"
466
518
  msgstr "호스트에 서브스크립션 추가"
467
519
 
468
- msgid "Add component"
520
+ msgid "Add an alternate content source"
469
521
  msgstr ""
470
522
 
471
- msgid "Add component content views"
523
+ msgid "Add components to the content view"
472
524
  msgstr ""
473
525
 
474
- msgid "Add components to the content view"
526
+ msgid "Add content view"
475
527
  msgstr ""
476
528
 
477
529
  msgid "Add content views"
@@ -486,9 +538,6 @@ msgstr ""
486
538
  msgid "Add filter rule"
487
539
  msgstr ""
488
540
 
489
- msgid "Add filters using the 'Add filter' button above."
490
- msgstr ""
491
-
492
541
  msgid "Add host to collections"
493
542
  msgstr ""
494
543
 
@@ -508,7 +557,7 @@ msgid "Add one or more host collections to one or more hosts"
508
557
  msgstr "하나 이상의 호스트에 하나 이상의 호스트 컬렉션 추가"
509
558
 
510
559
  msgid "Add ons"
511
- msgstr ""
560
+ msgstr "추가 기능"
512
561
 
513
562
  msgid "Add products to sync plan"
514
563
  msgstr "동기화 계획에 제품 추가 "
@@ -528,12 +577,18 @@ msgstr ""
528
577
  msgid "Add subscriptions to one or more hosts"
529
578
  msgstr ""
530
579
 
531
- msgid "Add to this filter using the 'Add RPM rule' button."
580
+ msgid "Add to a host collection"
581
+ msgstr ""
582
+
583
+ msgid "Add to this filter using the 'Add Deb rule' button."
532
584
  msgstr ""
533
585
 
534
586
  msgid "Add to this filter using the 'Add filter rule' button."
535
587
  msgstr ""
536
588
 
589
+ msgid "Add-ons"
590
+ msgstr ""
591
+
537
592
  msgid "Added"
538
593
  msgstr ""
539
594
 
@@ -552,6 +607,9 @@ msgstr ""
552
607
  msgid "Addons"
553
608
  msgstr ""
554
609
 
610
+ msgid "Affected Repositories"
611
+ msgstr ""
612
+
555
613
  msgid "Affected repositories"
556
614
  msgstr ""
557
615
 
@@ -582,6 +640,9 @@ msgstr ""
582
640
  msgid "All subpaths must have a slash at the end and none at the front"
583
641
  msgstr ""
584
642
 
643
+ msgid "All up to date"
644
+ msgstr ""
645
+
585
646
  msgid "All versions"
586
647
  msgstr ""
587
648
 
@@ -591,6 +652,9 @@ msgstr ""
591
652
  msgid "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)"
592
653
  msgstr ""
593
654
 
655
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
656
+ msgstr ""
657
+
594
658
  msgid "Allow deleting repositories in published content views"
595
659
  msgstr ""
596
660
 
@@ -600,6 +664,9 @@ msgstr ""
600
664
  msgid "Allow hosts to re-register themselves only when they are in build mode"
601
665
  msgstr ""
602
666
 
667
+ msgid "Allow multiple content views"
668
+ msgstr ""
669
+
603
670
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
604
671
  msgstr ""
605
672
 
@@ -609,9 +676,12 @@ msgstr ""
609
676
  msgid "Alter a host's host collections"
610
677
  msgstr ""
611
678
 
612
- msgid "Alternate Content Sources"
679
+ msgid "Alternate Content Source HTTP Proxy"
613
680
  msgstr ""
614
681
 
682
+ msgid "Alternate Content Sources"
683
+ msgstr "대체 콘텐츠 소스"
684
+
615
685
  msgid "Alternate content source ${name} created"
616
686
  msgstr ""
617
687
 
@@ -621,7 +691,13 @@ msgstr ""
621
691
  msgid "Alternate content source deleted"
622
692
  msgstr ""
623
693
 
624
- msgid "Alternate content sources"
694
+ msgid "Alternate content source edited"
695
+ msgstr ""
696
+
697
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
698
+ msgstr ""
699
+
700
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
625
701
  msgstr ""
626
702
 
627
703
  msgid "Always Use Latest (currently %{version})"
@@ -633,7 +709,7 @@ msgstr ""
633
709
  msgid "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."
634
710
  msgstr ""
635
711
 
636
- msgid "An alternate content source can be added by using the \"Add source\" button above."
712
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
637
713
  msgstr ""
638
714
 
639
715
  msgid "An environment is missing a prior"
@@ -660,11 +736,8 @@ msgstr ""
660
736
  msgid "Ansible Collection"
661
737
  msgstr ""
662
738
 
663
- msgid "Ansible Collection Details"
664
- msgstr ""
665
-
666
739
  msgid "Ansible Collections"
667
- msgstr ""
740
+ msgstr "권한 컬렉션"
668
741
 
669
742
  msgid "Ansible collection"
670
743
  msgstr ""
@@ -675,7 +748,13 @@ msgstr ""
675
748
  msgid "Applicability Batch Size"
676
749
  msgstr ""
677
750
 
751
+ msgid "Applicable"
752
+ msgstr "적용 가능 "
753
+
678
754
  msgid "Applicable Content Hosts"
755
+ msgstr "적용 가능한 콘텐츠 호스트"
756
+
757
+ msgid "Applicable errata apply to at least one package installed on the host."
679
758
  msgstr ""
680
759
 
681
760
  msgid "Application"
@@ -711,6 +790,9 @@ msgstr "아키텍처 "
711
790
  msgid "Architecture of content in the repository"
712
791
  msgstr ""
713
792
 
793
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
794
+ msgstr ""
795
+
714
796
  msgid "Architecture(s)"
715
797
  msgstr "아키텍처 "
716
798
 
@@ -814,6 +896,9 @@ msgstr ""
814
896
  msgid "Auth URL requires Auth token be set."
815
897
  msgstr ""
816
898
 
899
+ msgid "Authentication type"
900
+ msgstr ""
901
+
817
902
  msgid "Author"
818
903
  msgstr "작성자"
819
904
 
@@ -835,6 +920,9 @@ msgstr ""
835
920
  msgid "Autosearch delay"
836
921
  msgstr ""
837
922
 
923
+ msgid "Available"
924
+ msgstr ""
925
+
838
926
  msgid "Available Entitlements"
839
927
  msgstr ""
840
928
 
@@ -842,11 +930,17 @@ msgid "Available Repositories"
842
930
  msgstr ""
843
931
 
844
932
  msgid "Available Schema Versions"
845
- msgstr ""
933
+ msgstr "사용 가능한 스키마 버전"
934
+
935
+ msgid "Back"
936
+ msgstr "뒤로 "
846
937
 
847
938
  msgid "Backend System Status"
848
939
  msgstr "백엔드 시스템 상태 "
849
940
 
941
+ msgid "Base URL"
942
+ msgstr ""
943
+
850
944
  msgid "Base URL for finding alternate content"
851
945
  msgstr ""
852
946
 
@@ -892,6 +986,9 @@ msgstr "이 검색을 북마크 "
892
986
  msgid "Bookmarks marked as public are available to all users"
893
987
  msgstr ""
894
988
 
989
+ msgid "Both"
990
+ msgstr ""
991
+
895
992
  msgid "Both major and minor parameters have to be used to override a CV version"
896
993
  msgstr ""
897
994
 
@@ -904,6 +1001,12 @@ msgstr "버그 수정 "
904
1001
  msgid "Bugs"
905
1002
  msgstr ""
906
1003
 
1004
+ msgid "Bulk alternate content source delete has started."
1005
+ msgstr ""
1006
+
1007
+ msgid "Bulk alternate content source refresh has started."
1008
+ msgstr ""
1009
+
907
1010
  msgid "Bulk generate applicability for host %s"
908
1011
  msgstr ""
909
1012
 
@@ -988,6 +1091,9 @@ msgstr "취소함"
988
1091
  msgid "Cancelled."
989
1092
  msgstr "취소되었습니다."
990
1093
 
1094
+ msgid "Candlepin"
1095
+ msgstr ""
1096
+
991
1097
  msgid "Candlepin Event"
992
1098
  msgstr "Candlepin 이벤트 "
993
1099
 
@@ -1000,6 +1106,9 @@ msgstr ""
1000
1106
  msgid "Candlepin is not running properly"
1001
1107
  msgstr ""
1002
1108
 
1109
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1110
+ msgstr ""
1111
+
1003
1112
  msgid "Cannot add %s repositories to a content view."
1004
1113
  msgstr "컨텐츠 뷰에 %s 리포지터리를 추가할 수 없습니다. "
1005
1114
 
@@ -1018,6 +1127,9 @@ msgstr "다른 복합적인 컨텐츠 뷰에 복합 버전을 추가할 수 없
1018
1127
  msgid "Cannot add default content view to composite content view"
1019
1128
  msgstr "복합적인 컨텐츠 뷰에 기본 컨텐츠 뷰를 추가할 수 없습니다 "
1020
1129
 
1130
+ msgid "Cannot add generated content view versions to composite content view"
1131
+ msgstr ""
1132
+
1021
1133
  msgid "Cannot add repositories to a composite content view"
1022
1134
  msgstr "복합적인 컨텐츠 뷰에 리포지터리를 추가할 수 없습니다 "
1023
1135
 
@@ -1111,7 +1223,7 @@ msgstr ""
1111
1223
  msgid "Cannot set auto publish to a non-composite content view"
1112
1224
  msgstr ""
1113
1225
 
1114
- msgid "Cannot skip metadata check on non-yum repositories."
1226
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1115
1227
  msgstr ""
1116
1228
 
1117
1229
  msgid "Cannot specify components for non-composite views"
@@ -1133,7 +1245,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1133
1245
  msgstr ""
1134
1246
 
1135
1247
  msgid "Capacity"
1136
- msgstr ""
1248
+ msgstr "용량 "
1137
1249
 
1138
1250
  msgid "Change Content Source"
1139
1251
  msgstr ""
@@ -1147,6 +1259,9 @@ msgstr ""
1147
1259
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1148
1260
  msgstr ""
1149
1261
 
1262
+ msgid "Check if the specified organization has Simple Content Access enabled"
1263
+ msgstr ""
1264
+
1150
1265
  msgid "Check if the specified organization is eligible for Simple Content Access"
1151
1266
  msgstr ""
1152
1267
 
@@ -1168,9 +1283,18 @@ msgstr ""
1168
1283
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1169
1284
  msgstr ""
1170
1285
 
1286
+ msgid "Choose content credentials if required for this RHUI source."
1287
+ msgstr ""
1288
+
1171
1289
  msgid "Clear any previous registration and run subscription-manager with --force."
1172
1290
  msgstr ""
1173
1291
 
1292
+ msgid "Clear filters"
1293
+ msgstr ""
1294
+
1295
+ msgid "Clear search"
1296
+ msgstr ""
1297
+
1174
1298
  msgid "Click here to go to the tasks page for the task."
1175
1299
  msgstr ""
1176
1300
 
@@ -1192,6 +1316,9 @@ msgstr ""
1192
1316
  msgid "Combined Profile Update for %s"
1193
1317
  msgstr ""
1194
1318
 
1319
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1320
+ msgstr ""
1321
+
1195
1322
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1196
1323
  msgstr ""
1197
1324
 
@@ -1201,16 +1328,16 @@ msgstr ""
1201
1328
  msgid "Comma-separated list of tags to sync for a container image repository"
1202
1329
  msgstr ""
1203
1330
 
1331
+ msgid "Compare"
1332
+ msgstr ""
1333
+
1204
1334
  msgid "Component"
1205
1335
  msgstr "구성 요소 "
1206
1336
 
1207
1337
  msgid "Component Content View"
1208
1338
  msgstr ""
1209
1339
 
1210
- msgid "Component content view"
1211
- msgstr ""
1212
-
1213
- msgid "Component content views"
1340
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1214
1341
  msgstr ""
1215
1342
 
1216
1343
  msgid "Components"
@@ -1243,7 +1370,7 @@ msgstr ""
1243
1370
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1244
1371
  msgstr ""
1245
1372
 
1246
- msgid "Consisting of multiple component content views"
1373
+ msgid "Consisting of multiple content views"
1247
1374
  msgstr ""
1248
1375
 
1249
1376
  msgid "Consists of content views"
@@ -1256,7 +1383,7 @@ msgid "Consumed"
1256
1383
  msgstr "사용됨 "
1257
1384
 
1258
1385
  msgid "Container Image Manifest"
1259
- msgstr ""
1386
+ msgstr "컨테이너 이미지 매니페스트"
1260
1387
 
1261
1388
  msgid "Container Image Repositories are not protected at this time. They need to be published via http to be available to containers."
1262
1389
  msgstr ""
@@ -1265,7 +1392,7 @@ msgid "Container Image Tag"
1265
1392
  msgstr ""
1266
1393
 
1267
1394
  msgid "Container Image Tags"
1268
- msgstr ""
1395
+ msgstr "컨테이너 이미지 태그"
1269
1396
 
1270
1397
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
1271
1398
  msgstr ""
@@ -1304,7 +1431,7 @@ msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server'
1304
1431
  msgstr ""
1305
1432
 
1306
1433
  msgid "Content Credentials"
1307
- msgstr ""
1434
+ msgstr "컨텐츠 인증 정보"
1308
1435
 
1309
1436
  msgid "Content Details"
1310
1437
  msgstr ""
@@ -1363,8 +1490,8 @@ msgstr ""
1363
1490
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1364
1491
  msgstr ""
1365
1492
 
1366
- msgid "Content View and Environment not set for registration."
1367
- msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
1493
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1494
+ msgstr ""
1368
1495
 
1369
1496
  msgid "Content View id"
1370
1497
  msgstr ""
@@ -1375,6 +1502,21 @@ msgstr ""
1375
1502
  msgid "Content Views"
1376
1503
  msgstr "컨텐츠 보기 "
1377
1504
 
1505
+ msgid "Content cannot be imported into a Composite Content View. "
1506
+ msgstr ""
1507
+
1508
+ msgid "Content credential"
1509
+ msgstr ""
1510
+
1511
+ msgid "Content credentials"
1512
+ msgstr ""
1513
+
1514
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1515
+ msgstr ""
1516
+
1517
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1518
+ msgstr ""
1519
+
1378
1520
  msgid "Content files to upload. Can be a single file or array of files."
1379
1521
  msgstr "업로드할 컨텐츠 파일입니다. 단일 파일 또는 파일 어레이를 지정할 수 있습니다."
1380
1522
 
@@ -1393,10 +1535,10 @@ msgstr ""
1393
1535
  msgid "Content override search parameters"
1394
1536
  msgstr ""
1395
1537
 
1396
- msgid "Content source ID"
1538
+ msgid "Content source"
1397
1539
  msgstr ""
1398
1540
 
1399
- msgid "Content source successfully updated."
1541
+ msgid "Content source ID"
1400
1542
  msgstr ""
1401
1543
 
1402
1544
  msgid "Content source was not set for host '%{host}'"
@@ -1417,6 +1559,9 @@ msgstr ""
1417
1559
  msgid "Content view ${name} created"
1418
1560
  msgstr ""
1419
1561
 
1562
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1563
+ msgstr ""
1564
+
1420
1565
  msgid "Content view '%{view}' is not in environment '%{env}'"
1421
1566
  msgstr "컨텐츠 보기 '%{view}'가 환경 '%{env}'에 있지 않습니다 "
1422
1567
 
@@ -1426,9 +1571,18 @@ msgstr "컨텐츠 뷰 '%{view}'가 라이프사이클 환경 '%{env}'에 없습
1426
1571
  msgid "Content view ID"
1427
1572
  msgstr ""
1428
1573
 
1574
+ msgid "Content view and environment not set for registration."
1575
+ msgstr ""
1576
+
1429
1577
  msgid "Content view details"
1430
1578
  msgstr ""
1431
1579
 
1580
+ msgid "Content view environments and activation key must all belong to the same organization"
1581
+ msgstr ""
1582
+
1583
+ msgid "Content view environments must have both a content view and an environment"
1584
+ msgstr ""
1585
+
1432
1586
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1433
1587
  msgstr ""
1434
1588
 
@@ -1438,6 +1592,9 @@ msgstr "컨텐츠 뷰 ID "
1438
1592
  msgid "Content view label"
1439
1593
  msgstr "컨텐츠 뷰 레이블 "
1440
1594
 
1595
+ msgid "Content view must be specified"
1596
+ msgstr ""
1597
+
1441
1598
  msgid "Content view name"
1442
1599
  msgstr ""
1443
1600
 
@@ -1459,6 +1616,9 @@ msgstr ""
1459
1616
  msgid "Content views"
1460
1617
  msgstr ""
1461
1618
 
1619
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1620
+ msgstr ""
1621
+
1462
1622
  msgid "Content_Host_Status"
1463
1623
  msgstr ""
1464
1624
 
@@ -1466,7 +1626,7 @@ msgid "Contents of requirement yaml file to sync from URL"
1466
1626
  msgstr ""
1467
1627
 
1468
1628
  msgid "Context"
1469
- msgstr ""
1629
+ msgstr "컨텍스트"
1470
1630
 
1471
1631
  msgid "Contract"
1472
1632
  msgstr "계약 "
@@ -1492,6 +1652,9 @@ msgstr ""
1492
1652
  msgid "Copy version units to library"
1493
1653
  msgstr ""
1494
1654
 
1655
+ msgid "Cores per socket"
1656
+ msgstr "소켓당 코어 수 "
1657
+
1495
1658
  msgid "Cores: %s"
1496
1659
  msgstr "코어: %s"
1497
1660
 
@@ -1597,13 +1760,19 @@ msgstr "이전 환경 '%s'을 찾을 수 없습니다 "
1597
1760
  msgid "Couldn't find product with id '%s'"
1598
1761
  msgstr "ID '%s'인 제품을 찾을 수 없음 "
1599
1762
 
1763
+ msgid "Couldn't find products with id '%s'"
1764
+ msgstr ""
1765
+
1600
1766
  msgid "Couldn't find repository '%s'"
1601
1767
  msgstr "리포지터리 '%s'를 찾을 수 없음 "
1602
1768
 
1603
1769
  msgid "Couldn't find smart proxies with id '%s'"
1604
1770
  msgstr ""
1605
1771
 
1606
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1772
+ msgid "Couldn't find smart proxies with name '%s'"
1773
+ msgstr ""
1774
+
1775
+ msgid "Couldn't find specified content view and lifecycle environment."
1607
1776
  msgstr ""
1608
1777
 
1609
1778
  msgid "Couldn't find subject of synchronization"
@@ -1615,6 +1784,9 @@ msgstr "개수"
1615
1784
  msgid "Create"
1616
1785
  msgstr "생성 "
1617
1786
 
1787
+ msgid "Create ACS"
1788
+ msgstr ""
1789
+
1618
1790
  msgid "Create Alternate Content Source"
1619
1791
  msgstr ""
1620
1792
 
@@ -1630,12 +1802,18 @@ msgstr ""
1630
1802
  msgid "Create Repositories"
1631
1803
  msgstr ""
1632
1804
 
1805
+ msgid "Create Syncable Export History"
1806
+ msgstr ""
1807
+
1633
1808
  msgid "Create a Content Credential"
1634
1809
  msgstr ""
1635
1810
 
1636
1811
  msgid "Create a content view"
1637
1812
  msgstr "컨텐츠 뷰 생성 "
1638
1813
 
1814
+ msgid "Create a custom product"
1815
+ msgstr ""
1816
+
1639
1817
  msgid "Create a custom repository"
1640
1818
  msgstr "사용자 정의 리포지터리 생성 "
1641
1819
 
@@ -1654,12 +1832,12 @@ msgstr "제품 생성 "
1654
1832
  msgid "Create a sync plan"
1655
1833
  msgstr "동기화 계획 생성 "
1656
1834
 
1657
- msgid "Create an ACS"
1658
- msgstr ""
1659
-
1660
1835
  msgid "Create an activation key"
1661
1836
  msgstr "활성키 생성 "
1662
1837
 
1838
+ msgid "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."
1839
+ msgstr ""
1840
+
1663
1841
  msgid "Create an environment"
1664
1842
  msgstr "환경 생성 "
1665
1843
 
@@ -1669,22 +1847,37 @@ msgstr "조직에 있는 환경 생성 "
1669
1847
  msgid "Create an upload request"
1670
1848
  msgstr "업로드 요청 생성 "
1671
1849
 
1850
+ msgid "Create content credentials with the generated SSL certificate and key."
1851
+ msgstr ""
1852
+
1672
1853
  msgid "Create content view"
1673
1854
  msgstr ""
1674
1855
 
1675
1856
  msgid "Create filter"
1676
1857
  msgstr ""
1677
1858
 
1859
+ msgid "Create host collection"
1860
+ msgstr ""
1861
+
1678
1862
  msgid "Create organization"
1679
1863
  msgstr "조직 생성 "
1680
1864
 
1865
+ msgid "Create package filter rule"
1866
+ msgstr ""
1867
+
1868
+ msgid "Create rule"
1869
+ msgstr ""
1870
+
1871
+ msgid "Credentials"
1872
+ msgstr ""
1873
+
1681
1874
  msgid "Critical"
1682
1875
  msgstr "중요함"
1683
1876
 
1684
1877
  msgid "Cron expression is not valid!"
1685
1878
  msgstr ""
1686
1879
 
1687
- msgid "Current organization has no manifest imported."
1880
+ msgid "Current organization does not have a manifest imported."
1688
1881
  msgstr ""
1689
1882
 
1690
1883
  msgid "Current organization is not set."
@@ -1693,6 +1886,12 @@ msgstr ""
1693
1886
  msgid "Current organization not set."
1694
1887
  msgstr ""
1695
1888
 
1889
+ msgid "Custom"
1890
+ msgstr ""
1891
+
1892
+ msgid "Custom CDN"
1893
+ msgstr ""
1894
+
1696
1895
  msgid "Custom Content Repositories"
1697
1896
  msgstr "사용자 정의 컨텐츠 리포지터리 "
1698
1897
 
@@ -1705,6 +1904,12 @@ msgstr "사용자 정의 리포지터리를 비활성화할 수 없습니다. "
1705
1904
  msgid "Customize with Rex"
1706
1905
  msgstr ""
1707
1906
 
1907
+ msgid "DEB name"
1908
+ msgstr ""
1909
+
1910
+ msgid "DEB package updates"
1911
+ msgstr ""
1912
+
1708
1913
  msgid "Database connection"
1709
1914
  msgstr "데이터베이스 연결"
1710
1915
 
@@ -1720,10 +1925,16 @@ msgstr ""
1720
1925
  msgid "Days from Now"
1721
1926
  msgstr ""
1722
1927
 
1928
+ msgid "Deb"
1929
+ msgstr ""
1930
+
1723
1931
  msgid "Deb Package"
1724
1932
  msgstr ""
1725
1933
 
1726
1934
  msgid "Deb Packages"
1935
+ msgstr "Deb 패키지"
1936
+
1937
+ msgid "Deb name"
1727
1938
  msgstr ""
1728
1939
 
1729
1940
  msgid "Deb package identifiers to filter content by"
@@ -1834,6 +2045,12 @@ msgstr ""
1834
2045
  msgid "Default user data for new Operating Systems created from synced content"
1835
2046
  msgstr ""
1836
2047
 
2048
+ msgid "Define RHUI repository paths with guided steps."
2049
+ msgstr ""
2050
+
2051
+ msgid "Define repositories structured under a common web or filesystem path."
2052
+ msgstr ""
2053
+
1837
2054
  msgid "Delete"
1838
2055
  msgstr "삭제 "
1839
2056
 
@@ -1972,7 +2189,7 @@ msgstr "동기화 계획 삭제 "
1972
2189
  msgid "Destroy an activation key"
1973
2190
  msgstr "활성키 삭제 "
1974
2191
 
1975
- msgid "Destroy an alternate content source"
2192
+ msgid "Destroy an alternate content source."
1976
2193
  msgstr ""
1977
2194
 
1978
2195
  msgid "Destroy an environment"
@@ -1981,6 +2198,9 @@ msgstr "환경 삭제 "
1981
2198
  msgid "Destroy an environment in an organization"
1982
2199
  msgstr "조직에서 환경 삭제 "
1983
2200
 
2201
+ msgid "Destroy one or more alternate content sources"
2202
+ msgstr ""
2203
+
1984
2204
  msgid "Destroy one or more hosts"
1985
2205
  msgstr "하나 이상의 호스트 삭제"
1986
2206
 
@@ -2032,6 +2252,9 @@ msgstr "검색"
2032
2252
  msgid "Discover Repositories"
2033
2253
  msgstr "리포지터리 검색 "
2034
2254
 
2255
+ msgid "Distribute archived content view versions"
2256
+ msgstr ""
2257
+
2035
2258
  msgid "Do not include this array of content views"
2036
2259
  msgstr "컨텐츠 뷰의 어레이를 포함하지 않습니다 "
2037
2260
 
@@ -2068,15 +2291,36 @@ msgstr "편집 "
2068
2291
  msgid "Edit RPM rule"
2069
2292
  msgstr ""
2070
2293
 
2294
+ msgid "Edit URL and subpaths"
2295
+ msgstr ""
2296
+
2071
2297
  msgid "Edit content view assignment"
2072
2298
  msgstr ""
2073
2299
 
2300
+ msgid "Edit credentials"
2301
+ msgstr ""
2302
+
2303
+ msgid "Edit details"
2304
+ msgstr ""
2305
+
2074
2306
  msgid "Edit filter rule"
2075
2307
  msgstr ""
2076
2308
 
2309
+ msgid "Edit package filter rule"
2310
+ msgstr ""
2311
+
2312
+ msgid "Edit products"
2313
+ msgstr ""
2314
+
2077
2315
  msgid "Edit rule"
2078
2316
  msgstr ""
2079
2317
 
2318
+ msgid "Edit smart proxies"
2319
+ msgstr ""
2320
+
2321
+ msgid "Edit system purpose attributes"
2322
+ msgstr ""
2323
+
2080
2324
  msgid "Editing Entitlements"
2081
2325
  msgstr ""
2082
2326
 
@@ -2098,9 +2342,15 @@ msgstr ""
2098
2342
  msgid "Either set the latest content view or the content view version. Cannot set both"
2099
2343
  msgstr ""
2100
2344
 
2345
+ msgid "Empty content view versions"
2346
+ msgstr ""
2347
+
2101
2348
  msgid "Enable"
2102
2349
  msgstr "활성화 "
2103
2350
 
2351
+ msgid "Enable Red Hat repositories"
2352
+ msgstr ""
2353
+
2104
2354
  msgid "Enable Simple Content Access"
2105
2355
  msgstr ""
2106
2356
 
@@ -2108,11 +2358,14 @@ msgid "Enable Tracer"
2108
2358
  msgstr ""
2109
2359
 
2110
2360
  msgid "Enable Traces"
2111
- msgstr ""
2361
+ msgstr "추적 사용"
2112
2362
 
2113
2363
  msgid "Enable a repository from the set"
2114
2364
  msgstr "세트에서 리포지터리 활성화 "
2115
2365
 
2366
+ msgid "Enable repository sets"
2367
+ msgstr ""
2368
+
2116
2369
  msgid "Enable simple content access for a manifest"
2117
2370
  msgstr ""
2118
2371
 
@@ -2146,9 +2399,18 @@ msgstr "기능 강화"
2146
2399
  msgid "Enter a name"
2147
2400
  msgstr ""
2148
2401
 
2402
+ msgid "Enter a name for your source."
2403
+ msgstr ""
2404
+
2149
2405
  msgid "Enter a valid date: MM/DD/YYYY"
2150
2406
  msgstr ""
2151
2407
 
2408
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2409
+ msgstr ""
2410
+
2411
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2412
+ msgstr ""
2413
+
2152
2414
  msgid "Entitlements"
2153
2415
  msgstr ""
2154
2416
 
@@ -2242,11 +2504,11 @@ msgstr ""
2242
2504
  msgid "Exclude"
2243
2505
  msgstr "제외 "
2244
2506
 
2245
- msgid "Exclude all Module Streams with no errata."
2507
+ msgid "Exclude all RPMs not associated to any errata"
2246
2508
  msgstr ""
2247
2509
 
2248
- msgid "Exclude all RPMs with no errata."
2249
- msgstr "에라타가 없는 RPM을 모두 제외합니다."
2510
+ msgid "Exclude all module streams not associated to any errata"
2511
+ msgstr ""
2250
2512
 
2251
2513
  msgid "Exclude filter"
2252
2514
  msgstr ""
@@ -2290,6 +2552,11 @@ msgstr ""
2290
2552
  msgid "Export as CSV"
2291
2553
  msgstr ""
2292
2554
 
2555
+ msgid ""
2556
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2557
+ " Defaults to importable."
2558
+ msgstr ""
2559
+
2293
2560
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2294
2561
  msgstr ""
2295
2562
 
@@ -2339,6 +2606,9 @@ msgstr ""
2339
2606
  msgid "Fetch traces for one or more hosts"
2340
2607
  msgstr ""
2341
2608
 
2609
+ msgid "Fetching content credentials"
2610
+ msgstr ""
2611
+
2342
2612
  msgid "Field to sort the results on"
2343
2613
  msgstr "결과를 정렬할 필드 "
2344
2614
 
@@ -2396,6 +2666,9 @@ msgstr "서브스크립션에 따라 제품을 필터링 "
2396
2666
  msgid "Filter products by sync plan id"
2397
2667
  msgstr "동기화 계획 ID를 기준으로 제품 필터링"
2398
2668
 
2669
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2670
+ msgstr ""
2671
+
2399
2672
  msgid "Filter rule added"
2400
2673
  msgstr ""
2401
2674
 
@@ -2429,6 +2702,12 @@ msgstr "필터 "
2429
2702
  msgid "Filters deleted"
2430
2703
  msgstr ""
2431
2704
 
2705
+ msgid "Filters will appear here when the filter is created."
2706
+ msgstr ""
2707
+
2708
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2709
+ msgstr ""
2710
+
2432
2711
  msgid "Finish"
2433
2712
  msgstr ""
2434
2713
 
@@ -2470,7 +2749,7 @@ msgstr ""
2470
2749
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2471
2750
  msgstr ""
2472
2751
 
2473
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2752
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2474
2753
  msgstr ""
2475
2754
 
2476
2755
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2488,6 +2767,9 @@ msgstr "모든 권한이 부여됨"
2488
2767
  msgid "GPG Key URL"
2489
2768
  msgstr "GPG 키 URL"
2490
2769
 
2770
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2771
+ msgstr ""
2772
+
2491
2773
  msgid "Generate and Download"
2492
2774
  msgstr "생성 및 다운로드 "
2493
2775
 
@@ -2500,7 +2782,7 @@ msgstr ""
2500
2782
  msgid "Generated"
2501
2783
  msgstr ""
2502
2784
 
2503
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2785
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2504
2786
  msgstr ""
2505
2787
 
2506
2788
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2533,6 +2815,9 @@ msgstr "주어진 리포지터리에 대한 동기화 상태 가져오기 "
2533
2815
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2534
2816
  msgstr "특정 호스트 및 에라타에 대해 업데이트해야 하는 컨텐츠 뷰 버전과 환경을 나열합니다."
2535
2817
 
2818
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2819
+ msgstr ""
2820
+
2536
2821
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2537
2822
  msgstr ""
2538
2823
 
@@ -2563,11 +2848,14 @@ msgstr ""
2563
2848
  msgid "HTTP Proxy identifier to associated"
2564
2849
  msgstr ""
2565
2850
 
2851
+ msgid "HW properties"
2852
+ msgstr ""
2853
+
2566
2854
  msgid "Has to be > 0"
2567
2855
  msgstr ""
2568
2856
 
2569
2857
  msgid "Helper"
2570
- msgstr ""
2858
+ msgstr "도움말"
2571
2859
 
2572
2860
  msgid "Hide affected activation keys"
2573
2861
  msgstr ""
@@ -2641,6 +2929,9 @@ msgstr ""
2641
2929
  msgid "Host collections updated"
2642
2930
  msgstr ""
2643
2931
 
2932
+ msgid "Host configurations are not updated yet"
2933
+ msgstr ""
2934
+
2644
2935
  msgid "Host content and subscription details"
2645
2936
  msgstr "호스트 컨텐츠 및 서브스크립션 정보 "
2646
2937
 
@@ -2692,6 +2983,9 @@ msgstr ""
2692
2983
  msgid "Hosts"
2693
2984
  msgstr "호스트"
2694
2985
 
2986
+ msgid "Hosts to update"
2987
+ msgstr ""
2988
+
2695
2989
  msgid "Hosts with Installable Errata"
2696
2990
  msgstr "설치 가능한 에라타를 갖는 호스트 "
2697
2991
 
@@ -2770,7 +3064,7 @@ msgstr "동기화 계획 ID "
2770
3064
  msgid "ID: %s doesn't exist "
2771
3065
  msgstr "ID: %s이 존재하지 않습니다 "
2772
3066
 
2773
- msgid "Id"
3067
+ msgid "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."
2774
3068
  msgstr ""
2775
3069
 
2776
3070
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2788,6 +3082,9 @@ msgstr ""
2788
3082
  msgid "Id of an erratum to find repositories that contain the erratum"
2789
3083
  msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
2790
3084
 
3085
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3086
+ msgstr ""
3087
+
2791
3088
  msgid "Id of the content host"
2792
3089
  msgstr "컨텐츠 호스트 ID"
2793
3090
 
@@ -2860,6 +3157,9 @@ msgstr ""
2860
3157
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2861
3158
  msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
2862
3159
 
3160
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3161
+ msgstr ""
3162
+
2863
3163
  msgid "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."
2864
3164
  msgstr ""
2865
3165
 
@@ -2872,6 +3172,9 @@ msgstr ""
2872
3172
  msgid "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."
2873
3173
  msgstr ""
2874
3174
 
3175
+ msgid "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/...'."
3176
+ msgstr ""
3177
+
2875
3178
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2876
3179
  msgstr ""
2877
3180
 
@@ -2893,6 +3196,9 @@ msgstr ""
2893
3196
  msgid "Ignorable content can be only set for Yum repositories."
2894
3197
  msgstr ""
2895
3198
 
3199
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3200
+ msgstr ""
3201
+
2896
3202
  msgid "Ignore errors"
2897
3203
  msgstr ""
2898
3204
 
@@ -2905,6 +3211,9 @@ msgstr ""
2905
3211
  msgid "Ignore subscriptions that are unavailable to the specified host"
2906
3212
  msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
2907
3213
 
3214
+ msgid "Ignored hosts"
3215
+ msgstr ""
3216
+
2908
3217
  msgid "Immediate"
2909
3218
  msgstr "즉시"
2910
3219
 
@@ -2989,11 +3298,11 @@ msgstr ""
2989
3298
  msgid "Include"
2990
3299
  msgstr "포함 "
2991
3300
 
2992
- msgid "Include all Module Streams with no errata."
3301
+ msgid "Include all RPMs not associated to any errata"
2993
3302
  msgstr ""
2994
3303
 
2995
- msgid "Include all RPMs with no errata."
2996
- msgstr "에라타가 없는 RPM을 모두 포함합니다."
3304
+ msgid "Include all module streams not associated to any errata"
3305
+ msgstr ""
2997
3306
 
2998
3307
  msgid "Include content views generated by imports/exports. Defaults to false"
2999
3308
  msgstr ""
@@ -3059,7 +3368,7 @@ msgid "Initiate a sync of the products attached to the sync plan"
3059
3368
  msgstr "동기화 계획에 연결된 제품 동기화 시작"
3060
3369
 
3061
3370
  msgid "Install"
3062
- msgstr ""
3371
+ msgstr "설치 "
3063
3372
 
3064
3373
  msgid "Install Applicable Errata"
3065
3374
  msgstr "적용 가능한 에라타 설치 "
@@ -3118,12 +3427,15 @@ msgstr ""
3118
3427
  msgid "Installable"
3119
3428
  msgstr "설치 가능 "
3120
3429
 
3121
- msgid "Installable errata"
3430
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3122
3431
  msgstr ""
3123
3432
 
3124
3433
  msgid "Installable errata from content view"
3125
3434
  msgstr ""
3126
3435
 
3436
+ msgid "Installable updates"
3437
+ msgstr ""
3438
+
3127
3439
  msgid "Installation of errata requested: %{errata}"
3128
3440
  msgstr ""
3129
3441
 
@@ -3136,6 +3448,9 @@ msgstr ""
3136
3448
  msgid "Installation status"
3137
3449
  msgstr ""
3138
3450
 
3451
+ msgid "Installed"
3452
+ msgstr "설치됨 "
3453
+
3139
3454
  msgid "Installed Packages"
3140
3455
  msgstr "설치된 패키지 "
3141
3456
 
@@ -3181,9 +3496,6 @@ msgstr ""
3181
3496
  msgid "Invalid"
3182
3497
  msgstr "유효하지 않음 "
3183
3498
 
3184
- msgid "Invalid SSL CA certificate given for CDN"
3185
- msgstr ""
3186
-
3187
3499
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3188
3500
  msgstr ""
3189
3501
 
@@ -3211,6 +3523,9 @@ msgstr "잘못된 에라타 유형 %{invalid_types}이 지정되었습니다.
3211
3523
  msgid "Invalid event_type %s"
3212
3524
  msgstr ""
3213
3525
 
3526
+ msgid "Invalid export format provided. Format must be one of %s "
3527
+ msgstr ""
3528
+
3214
3529
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3215
3530
  msgstr "잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_version' 또는 'max_version'과 동일한 튜플로 지정할 수 없습니다 "
3216
3531
 
@@ -3229,6 +3544,15 @@ msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중
3229
3544
  msgid "Invalid params provided - date_type must be one of %s"
3230
3545
  msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
3231
3546
 
3547
+ msgid "Invalid params provided - with_content must be one of %s"
3548
+ msgstr ""
3549
+
3550
+ msgid "Invalid path provided. Content can be only imported from file system. "
3551
+ msgstr ""
3552
+
3553
+ msgid "Invalid release version: [%s]"
3554
+ msgstr ""
3555
+
3232
3556
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3233
3557
  msgstr ""
3234
3558
 
@@ -3247,7 +3571,13 @@ msgstr "발행됨 "
3247
3571
  msgid "Issued from"
3248
3572
  msgstr ""
3249
3573
 
3250
- msgid "Job ${description} has started."
3574
+ msgid "Items will appear here when a filter rule is added."
3575
+ msgstr ""
3576
+
3577
+ msgid "Job '${description}' completed"
3578
+ msgstr ""
3579
+
3580
+ msgid "Job '${description}' has started."
3251
3581
  msgstr ""
3252
3582
 
3253
3583
  msgid "Katello ID of local pool to update"
@@ -3319,10 +3649,22 @@ msgstr "컨텐츠 레이블 "
3319
3649
  msgid "Label of the content view"
3320
3650
  msgstr ""
3321
3651
 
3322
- msgid "Last published"
3652
+ msgid "Last check-in:"
3323
3653
  msgstr ""
3324
3654
 
3325
- msgid "Last task"
3655
+ msgid "Last checkin"
3656
+ msgstr ""
3657
+
3658
+ msgid "Last published"
3659
+ msgstr ""
3660
+
3661
+ msgid "Last refresh"
3662
+ msgstr ""
3663
+
3664
+ msgid "Last refresh :"
3665
+ msgstr ""
3666
+
3667
+ msgid "Last task"
3326
3668
  msgstr ""
3327
3669
 
3328
3670
  msgid "Latest (automatically updates)"
@@ -3337,11 +3679,14 @@ msgstr ""
3337
3679
  msgid "Learn more about adding Subscription Manifests"
3338
3680
  msgstr ""
3339
3681
 
3682
+ msgid "Legacy content host UI"
3683
+ msgstr ""
3684
+
3340
3685
  msgid "Less than"
3341
3686
  msgstr ""
3342
3687
 
3343
3688
  msgid "Library"
3344
- msgstr ""
3689
+ msgstr "라이브러리"
3345
3690
 
3346
3691
  msgid "Library lifecycle environments may not be deleted."
3347
3692
  msgstr "라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "
@@ -3382,6 +3727,9 @@ msgstr ""
3382
3727
  msgid "Lifecycle environment for the host."
3383
3728
  msgstr ""
3384
3729
 
3730
+ msgid "Lifecycle environment must be specified"
3731
+ msgstr ""
3732
+
3385
3733
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3386
3734
  msgstr ""
3387
3735
 
@@ -3403,9 +3751,12 @@ msgstr ""
3403
3751
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3404
3752
  msgstr ""
3405
3753
 
3406
- msgid "Limit to environment"
3754
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3407
3755
  msgstr ""
3408
3756
 
3757
+ msgid "Limit to environment"
3758
+ msgstr "환경에 대한 제한"
3759
+
3409
3760
  msgid "Limits"
3410
3761
  msgstr "제한 "
3411
3762
 
@@ -3433,6 +3784,9 @@ msgstr "모두 나열 :resource_id "
3433
3784
  msgid "List all organizations"
3434
3785
  msgstr "전체 조직 나열"
3435
3786
 
3787
+ msgid "List alternate content sources."
3788
+ msgstr ""
3789
+
3436
3790
  msgid "List an activation key's subscriptions"
3437
3791
  msgstr "활성키의 서브스크립션 목록 나열"
3438
3792
 
@@ -3502,7 +3856,7 @@ msgstr ""
3502
3856
  msgid "List of Products for sync plan"
3503
3857
  msgstr "동기화 계획의 제품 나열"
3504
3858
 
3505
- msgid "List of alternate_content_sources"
3859
+ msgid "List of alternate content source IDs"
3506
3860
  msgstr ""
3507
3861
 
3508
3862
  msgid "List of component content view version ids for composite views"
@@ -3595,6 +3949,9 @@ msgstr ""
3595
3949
  msgid "List of repository ids"
3596
3950
  msgstr "리포지터리 ID 목록 "
3597
3951
 
3952
+ msgid "List of resources types that will be automatically associated"
3953
+ msgstr ""
3954
+
3598
3955
  msgid "List of subscription products in a subscription"
3599
3956
  msgstr "서브스크립션에 있는 서브스크립션 제품 목록 "
3600
3957
 
@@ -3653,7 +4010,7 @@ msgid "Loading versions"
3653
4010
  msgstr ""
3654
4011
 
3655
4012
  msgid "Loading..."
3656
- msgstr ""
4013
+ msgstr "로딩..."
3657
4014
 
3658
4015
  msgid "Low"
3659
4016
  msgstr ""
@@ -3700,6 +4057,12 @@ msgstr ""
3700
4057
  msgid "Manifest refreshed"
3701
4058
  msgstr ""
3702
4059
 
4060
+ msgid "Manual"
4061
+ msgstr "수동"
4062
+
4063
+ msgid "Manual authentication"
4064
+ msgstr ""
4065
+
3703
4066
  msgid "Mark Content Host Statuses as Unknown for %s"
3704
4067
  msgstr ""
3705
4068
 
@@ -3763,11 +4126,14 @@ msgstr ""
3763
4126
  msgid "Missing arguments %{substitutions} for %{content_url}"
3764
4127
  msgstr "%{content_url}에 대한 %{substitutions} 인수 누락"
3765
4128
 
4129
+ msgid "Model"
4130
+ msgstr "모델 "
4131
+
3766
4132
  msgid "Moderate"
3767
4133
  msgstr "중간 수준"
3768
4134
 
3769
4135
  msgid "Modular"
3770
- msgstr ""
4136
+ msgstr "모듈식의"
3771
4137
 
3772
4138
  msgid "Module Stream"
3773
4139
  msgstr ""
@@ -3776,7 +4142,7 @@ msgid "Module Stream Details"
3776
4142
  msgstr ""
3777
4143
 
3778
4144
  msgid "Module Streams"
3779
- msgstr ""
4145
+ msgstr "모듈 스트림"
3780
4146
 
3781
4147
  msgid "Module stream"
3782
4148
  msgstr ""
@@ -3784,7 +4150,7 @@ msgstr ""
3784
4150
  msgid "Module streams"
3785
4151
  msgstr ""
3786
4152
 
3787
- msgid "Module streams will appear here when available."
4153
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3788
4154
  msgstr ""
3789
4155
 
3790
4156
  msgid "Multi-entitlement"
@@ -3802,11 +4168,19 @@ msgstr "해당 없음 "
3802
4168
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3803
4169
  msgstr ""
3804
4170
 
4171
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4172
+ msgstr ""
4173
+
3805
4174
  msgid ""
3806
4175
  "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"
3807
4176
  " %{repos}"
3808
4177
  msgstr ""
3809
4178
 
4179
+ msgid ""
4180
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4181
+ " %{repos}"
4182
+ msgstr ""
4183
+
3810
4184
  msgid ""
3811
4185
  "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"
3812
4186
  " %{repos}"
@@ -3818,6 +4192,9 @@ msgstr ""
3818
4192
  msgid "Name"
3819
4193
  msgstr "이름 "
3820
4194
 
4195
+ msgid "Name and label of default content view should not be changed"
4196
+ msgstr ""
4197
+
3821
4198
  msgid "Name is a required parameter."
3822
4199
  msgstr ""
3823
4200
 
@@ -3842,6 +4219,12 @@ msgstr ""
3842
4219
  msgid "Name of the upstream docker repository"
3843
4220
  msgstr ""
3844
4221
 
4222
+ msgid "Name source"
4223
+ msgstr ""
4224
+
4225
+ msgid "Names of smart proxies to associate"
4226
+ msgstr ""
4227
+
3845
4228
  msgid "Needs to only be set for docker tags"
3846
4229
  msgstr ""
3847
4230
 
@@ -3854,6 +4237,9 @@ msgstr "중첩 "
3854
4237
  msgid "Network Sync"
3855
4238
  msgstr ""
3856
4239
 
4240
+ msgid "Never"
4241
+ msgstr "사용 안 함"
4242
+
3857
4243
  msgid "Never Synced"
3858
4244
  msgstr "동기화하지 않음 "
3859
4245
 
@@ -3950,6 +4336,9 @@ msgstr "제공된 컨텐츠가 없습니다. "
3950
4336
  msgid "No content ids provided"
3951
4337
  msgstr "컨텐츠 ID를 지정하지 않았습니다."
3952
4338
 
4339
+ msgid "No content in selected versions."
4340
+ msgstr ""
4341
+
3953
4342
  msgid "No content view history events found."
3954
4343
  msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
3955
4344
 
@@ -4001,13 +4390,19 @@ msgstr ""
4001
4390
  msgid "No host collections found."
4002
4391
  msgstr "호스트 컬렉션을 찾을 수 없습니다. "
4003
4392
 
4393
+ msgid "No host collections yet"
4394
+ msgstr ""
4395
+
4396
+ msgid "No hosts found"
4397
+ msgstr ""
4398
+
4004
4399
  msgid "No hosts have been specified."
4005
4400
  msgstr "호스트를 지정하지 않았습니다."
4006
4401
 
4007
4402
  msgid "No hosts registered with subscription-manager found in selection."
4008
4403
  msgstr ""
4009
4404
 
4010
- msgid "No hosts with content source found!"
4405
+ msgid "No hosts were specified"
4011
4406
  msgstr ""
4012
4407
 
4013
4408
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4025,9 +4420,15 @@ msgstr ""
4025
4420
  msgid "No matching "
4026
4421
  msgstr ""
4027
4422
 
4423
+ msgid "No matching ${name} found."
4424
+ msgstr ""
4425
+
4028
4426
  msgid "No matching ${selectedContentType} found"
4029
4427
  msgstr ""
4030
4428
 
4429
+ msgid "No matching DEB found."
4430
+ msgstr ""
4431
+
4031
4432
  msgid "No matching RPM found."
4032
4433
  msgstr ""
4033
4434
 
@@ -4112,6 +4513,9 @@ msgstr ""
4112
4513
  msgid "No products are enabled."
4113
4514
  msgstr ""
4114
4515
 
4516
+ msgid "No profiles to show"
4517
+ msgstr ""
4518
+
4115
4519
  msgid "No pulp workers running."
4116
4520
  msgstr "실행 중인 pulp worker가 없습니다."
4117
4521
 
@@ -4187,6 +4591,9 @@ msgstr ""
4187
4591
  msgid "Not all necessary pulp workers running at %s."
4188
4592
  msgstr ""
4189
4593
 
4594
+ msgid "Not installed"
4595
+ msgstr "설치되지 않음 "
4596
+
4190
4597
  msgid "Not running"
4191
4598
  msgstr ""
4192
4599
 
@@ -4205,6 +4612,9 @@ msgstr "알림: 괄호 안의 숫자는 호스트에서 사용할 수 없는 라
4205
4612
  msgid "Nothing selected"
4206
4613
  msgstr ""
4207
4614
 
4615
+ msgid "Number of CPU(s)"
4616
+ msgstr ""
4617
+
4208
4618
  msgid "Number of host applicability calculations to process per task."
4209
4619
  msgstr ""
4210
4620
 
@@ -4217,6 +4627,9 @@ msgstr ""
4217
4627
  msgid "Number to Allocate"
4218
4628
  msgstr ""
4219
4629
 
4630
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4631
+ msgstr ""
4632
+
4220
4633
  msgid "OSTree Branch"
4221
4634
  msgstr "OSTree 분기"
4222
4635
 
@@ -4238,6 +4651,9 @@ msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host'
4238
4651
  msgid "On Demand"
4239
4652
  msgstr "주문형"
4240
4653
 
4654
+ msgid "On the RHUA Instance, check the available repositories."
4655
+ msgstr ""
4656
+
4241
4657
  msgid "On-disk location for exported repositories"
4242
4658
  msgstr "내보낸 리포지터리의 디스크상 위치"
4243
4659
 
@@ -4313,6 +4729,9 @@ msgstr "필요한 조직 "
4313
4729
  msgid "Orphaned Content Protection Time"
4314
4730
  msgstr ""
4315
4731
 
4732
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4733
+ msgstr ""
4734
+
4316
4735
  msgid "Other"
4317
4736
  msgstr "기타 "
4318
4737
 
@@ -4532,12 +4951,6 @@ msgstr ""
4532
4951
  msgid "Path"
4533
4952
  msgstr "경로 "
4534
4953
 
4535
- msgid "Path for ssl cert used for pulp server auth"
4536
- msgstr "pulp 서버 인증에 사용되는 ssl 인증서의 경로"
4537
-
4538
- msgid "Path for ssl key used for pulp server auth"
4539
- msgstr "pulp 서버 인증에 사용되는 ssl 키의 경로"
4540
-
4541
4954
  msgid "Path suffixes for finding alternate content"
4542
4955
  msgstr ""
4543
4956
 
@@ -4622,6 +5035,9 @@ msgstr "다음 목록 중 하나를 선택하면 선택한 곳으로 이동합
4622
5035
  msgid "Please wait while the task starts.."
4623
5036
  msgstr ""
4624
5037
 
5038
+ msgid "Please wait..."
5039
+ msgstr "잠시만 기다려 주십시오..."
5040
+
4625
5041
  msgid "Policy to set for mirroring content. Must be one of %s."
4626
5042
  msgstr ""
4627
5043
 
@@ -4711,9 +5127,18 @@ msgstr ""
4711
5127
  msgid "Product: '%{product}', Repository: '%{repository}'"
4712
5128
  msgstr ""
4713
5129
 
5130
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5131
+ msgstr ""
5132
+
4714
5133
  msgid "Products"
4715
5134
  msgstr "제품 "
4716
5135
 
5136
+ msgid "Products updated."
5137
+ msgstr ""
5138
+
5139
+ msgid "Profiles"
5140
+ msgstr ""
5141
+
4717
5142
  msgid "Promote"
4718
5143
  msgstr "승격 "
4719
5144
 
@@ -4798,18 +5223,9 @@ msgstr ""
4798
5223
  msgid "Pulp 3 is not enabled on Smart proxy!"
4799
5224
  msgstr ""
4800
5225
 
4801
- msgid "Pulp Docker registry port"
4802
- msgstr ""
4803
-
4804
5226
  msgid "Pulp bulk load size"
4805
5227
  msgstr ""
4806
5228
 
4807
- msgid "Pulp client cert"
4808
- msgstr ""
4809
-
4810
- msgid "Pulp client key"
4811
- msgstr ""
4812
-
4813
5229
  msgid "Pulp database connection issue at %s."
4814
5230
  msgstr ""
4815
5231
 
@@ -4888,12 +5304,18 @@ msgstr "추가할 서브스크립션 수 "
4888
5304
  msgid "Quantity to Allocate"
4889
5305
  msgstr ""
4890
5306
 
5307
+ msgid "RAM"
5308
+ msgstr ""
5309
+
4891
5310
  msgid "RAM: %s GB"
4892
5311
  msgstr "RAM: %sGB"
4893
5312
 
4894
5313
  msgid "RH Repos"
4895
5314
  msgstr ""
4896
5315
 
5316
+ msgid "RHUI"
5317
+ msgstr ""
5318
+
4897
5319
  msgid "RPM"
4898
5320
  msgstr "RPM"
4899
5321
 
@@ -4906,6 +5328,12 @@ msgstr ""
4906
5328
  msgid "RPM name"
4907
5329
  msgstr ""
4908
5330
 
5331
+ msgid "RPM package groups"
5332
+ msgstr ""
5333
+
5334
+ msgid "RPM package updates"
5335
+ msgstr ""
5336
+
4909
5337
  msgid "RPM packages"
4910
5338
  msgstr ""
4911
5339
 
@@ -4940,7 +5368,7 @@ msgid "Recently Expired Subscriptions"
4940
5368
  msgstr "최근에 만료된 서브스크립션"
4941
5369
 
4942
5370
  msgid "Reclaim Space"
4943
- msgstr ""
5371
+ msgstr "공간 회수"
4944
5372
 
4945
5373
  msgid "Reclaim space from On Demand repositories"
4946
5374
  msgstr ""
@@ -4972,6 +5400,9 @@ msgstr ""
4972
5400
  msgid "Red Hat content will be consumed from the {type}."
4973
5401
  msgstr ""
4974
5402
 
5403
+ msgid "Red Hat content will be consumed from {type}."
5404
+ msgstr ""
5405
+
4975
5406
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4976
5407
  msgstr ""
4977
5408
 
@@ -4987,15 +5418,27 @@ msgstr "Red Hat 리포지터리를 조작할 수 없습니다. "
4987
5418
  msgid "Refresh"
4988
5419
  msgstr "새로고침 "
4989
5420
 
5421
+ msgid "Refresh Alternate Content Source"
5422
+ msgstr ""
5423
+
4990
5424
  msgid "Refresh Content Host Statuses for %s"
4991
5425
  msgstr ""
4992
5426
 
4993
5427
  msgid "Refresh Manifest"
4994
5428
  msgstr "매니페스트 새로 고침 "
4995
5429
 
5430
+ msgid "Refresh alternate content sources"
5431
+ msgstr ""
5432
+
5433
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5434
+ msgstr ""
5435
+
4996
5436
  msgid "Refresh previously imported manifest for Red Hat provider"
4997
5437
  msgstr "Red Hat 공급자에 대해 이전에 가져온 매니페스트를 새로 고침 "
4998
5438
 
5439
+ msgid "Refresh source"
5440
+ msgstr ""
5441
+
4999
5442
  msgid "Refresh_Content_Host_Status"
5000
5443
  msgstr ""
5001
5444
 
@@ -5005,13 +5448,16 @@ msgstr ""
5005
5448
  msgid "Register host '%s' before attaching subscriptions"
5006
5449
  msgstr ""
5007
5450
 
5451
+ msgid "Registered"
5452
+ msgstr "등록됨 "
5453
+
5008
5454
  msgid "Registered by"
5009
5455
  msgstr ""
5010
5456
 
5011
5457
  msgid "Registered on"
5012
5458
  msgstr ""
5013
5459
 
5014
- msgid "Registered through"
5460
+ msgid "Registering to multiple environments is not enabled."
5015
5461
  msgstr ""
5016
5462
 
5017
5463
  msgid "Registration details"
@@ -5029,24 +5475,27 @@ msgstr ""
5029
5475
  msgid "Reindex subscriptions"
5030
5476
  msgstr "서브스크립션 다시 인덱싱"
5031
5477
 
5032
- msgid "Related component content views"
5478
+ msgid "Related composite content views"
5033
5479
  msgstr ""
5034
5480
 
5035
- msgid "Related component cvs: "
5481
+ msgid "Related composite content views: "
5036
5482
  msgstr ""
5037
5483
 
5038
- msgid "Related composite content views"
5484
+ msgid "Related content views"
5039
5485
  msgstr ""
5040
5486
 
5041
- msgid "Related composite cvs: "
5487
+ msgid "Related content views will appear here when created."
5042
5488
  msgstr ""
5043
5489
 
5044
- msgid "Related content views will appear here when created."
5490
+ msgid "Related content views: "
5045
5491
  msgstr ""
5046
5492
 
5047
5493
  msgid "Release"
5048
5494
  msgstr "릴리즈 "
5049
5495
 
5496
+ msgid "Release version"
5497
+ msgstr ""
5498
+
5050
5499
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5051
5500
  msgstr ""
5052
5501
 
@@ -5065,6 +5514,9 @@ msgstr "데이터 다시 불러오기 "
5065
5514
  msgid "Remote action:"
5066
5515
  msgstr "원격 작업:"
5067
5516
 
5517
+ msgid "Remote execution job '${description}' failed."
5518
+ msgstr ""
5519
+
5068
5520
  msgid "Removal of package group(s) requested: %{groups}"
5069
5521
  msgstr ""
5070
5522
 
@@ -5125,7 +5577,7 @@ msgstr ""
5125
5577
  msgid "Remove one or more host collections from one or more hosts"
5126
5578
  msgstr "하나 이상의 호스트에서 하나 이상의 호스트 컬렉션 삭제"
5127
5579
 
5128
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5580
+ msgid "Remove one or more subscriptions from an upstream manifest"
5129
5581
  msgstr ""
5130
5582
 
5131
5583
  msgid "Remove package"
@@ -5176,6 +5628,9 @@ msgstr "패키지 그룹 삭제 중..."
5176
5628
  msgid "Removing Package..."
5177
5629
  msgstr "패키지 삭제 중..."
5178
5630
 
5631
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5632
+ msgstr ""
5633
+
5179
5634
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5180
5635
  msgstr ""
5181
5636
 
@@ -5260,7 +5715,7 @@ msgstr ""
5260
5715
  msgid "Repository sets reset to default"
5261
5716
  msgstr ""
5262
5717
 
5263
- msgid "Repository sets will appear here when available."
5718
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5264
5719
  msgstr ""
5265
5720
 
5266
5721
  msgid "Republish Repositories of %{name} %{version}"
@@ -5285,7 +5740,7 @@ msgid "Requires Virt-Who"
5285
5740
  msgstr ""
5286
5741
 
5287
5742
  msgid "Reset"
5288
- msgstr ""
5743
+ msgstr "재설정"
5289
5744
 
5290
5745
  msgid "Reset filters"
5291
5746
  msgstr ""
@@ -5395,6 +5850,9 @@ msgstr ""
5395
5850
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5396
5851
  msgstr ""
5397
5852
 
5853
+ msgid "Return same, different or all results"
5854
+ msgstr ""
5855
+
5398
5856
  msgid "Return subscriptions that match installed products of the specified host"
5399
5857
  msgstr "지정한 호스트의 설치된 제품과 일치하는 서브스크립션 반환"
5400
5858
 
@@ -5422,6 +5880,9 @@ msgstr ""
5422
5880
  msgid "Review details"
5423
5881
  msgstr ""
5424
5882
 
5883
+ msgid "Review the information below and click "
5884
+ msgstr ""
5885
+
5425
5886
  msgid "Review your currently selected changes for "
5426
5887
  msgstr ""
5427
5888
 
@@ -5440,21 +5901,30 @@ msgstr ""
5440
5901
  msgid "Run Sync Plan:"
5441
5902
  msgstr ""
5442
5903
 
5443
- msgid "Run job invocation"
5444
- msgstr ""
5445
-
5446
5904
  msgid "Running"
5447
5905
  msgstr "실행 중 "
5448
5906
 
5449
5907
  msgid "SKU"
5450
5908
  msgstr ""
5451
5909
 
5910
+ msgid "SLA"
5911
+ msgstr ""
5912
+
5452
5913
  msgid "SRPM details"
5453
5914
  msgstr ""
5454
5915
 
5455
5916
  msgid "SSL CA Content Credential"
5456
5917
  msgstr ""
5457
5918
 
5919
+ msgid "SSL CA certificate"
5920
+ msgstr ""
5921
+
5922
+ msgid "SSL client certificate"
5923
+ msgstr ""
5924
+
5925
+ msgid "SSL client key"
5926
+ msgstr ""
5927
+
5458
5928
  msgid "SSL version used to communicate with the CDN"
5459
5929
  msgstr ""
5460
5930
 
@@ -5464,14 +5934,17 @@ msgstr ""
5464
5934
  msgid "Save"
5465
5935
  msgstr "저장"
5466
5936
 
5937
+ msgid "Saving alternate content source..."
5938
+ msgstr ""
5939
+
5467
5940
  msgid "Schedule errata for installation using katello-agent. %s"
5468
5941
  msgstr ""
5469
5942
 
5470
5943
  msgid "Schema Version 1"
5471
- msgstr ""
5944
+ msgstr "스키마 버전 1"
5472
5945
 
5473
5946
  msgid "Schema Version 2"
5474
- msgstr ""
5947
+ msgstr "스키마 버전 2"
5475
5948
 
5476
5949
  msgid "Search"
5477
5950
  msgstr "검색 "
@@ -5533,6 +6006,15 @@ msgstr "조직 선택 "
5533
6006
  msgid "Select Value"
5534
6007
  msgstr ""
5535
6008
 
6009
+ msgid "Select a CA certificate"
6010
+ msgstr ""
6011
+
6012
+ msgid "Select a client certificate"
6013
+ msgstr ""
6014
+
6015
+ msgid "Select a client key"
6016
+ msgstr ""
6017
+
5536
6018
  msgid "Select a content view"
5537
6019
  msgstr ""
5538
6020
 
@@ -5548,6 +6030,9 @@ msgstr ""
5548
6030
  msgid "Select a provider to install katello-host-tools-tracer"
5549
6031
  msgstr ""
5550
6032
 
6033
+ msgid "Select add-ons"
6034
+ msgstr ""
6035
+
5551
6036
  msgid "Select all"
5552
6037
  msgstr ""
5553
6038
 
@@ -5563,20 +6048,23 @@ msgstr ""
5563
6048
  msgid "Select an environment above"
5564
6049
  msgstr ""
5565
6050
 
6051
+ msgid "Select an option"
6052
+ msgstr ""
6053
+
5566
6054
  msgid "Select an organization"
5567
6055
  msgstr ""
5568
6056
 
5569
6057
  msgid "Select available version of ${cvName} to use"
5570
6058
  msgstr ""
5571
6059
 
5572
- msgid "Select available version of components to use"
6060
+ msgid "Select available version of content views to use"
5573
6061
  msgstr ""
5574
6062
 
5575
6063
  msgid "Select content view"
5576
6064
  msgstr ""
5577
6065
 
5578
6066
  msgid "Select environment"
5579
- msgstr ""
6067
+ msgstr "환경 선택 "
5580
6068
 
5581
6069
  msgid "Select host collection(s) to associate with host {hostName}."
5582
6070
  msgstr ""
@@ -5602,9 +6090,27 @@ msgstr ""
5602
6090
  msgid "Select page"
5603
6091
  msgstr ""
5604
6092
 
6093
+ msgid "Select products"
6094
+ msgstr ""
6095
+
6096
+ msgid "Select products to associate to this source."
6097
+ msgstr ""
6098
+
5605
6099
  msgid "Select row"
5606
6100
  msgstr ""
5607
6101
 
6102
+ msgid "Select smart proxies to be used with this source."
6103
+ msgstr ""
6104
+
6105
+ msgid "Select smart proxy"
6106
+ msgstr ""
6107
+
6108
+ msgid "Select source type"
6109
+ msgstr ""
6110
+
6111
+ msgid "Select system purpose attributes for host {hostName}."
6112
+ msgstr ""
6113
+
5608
6114
  msgid "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."
5609
6115
  msgstr ""
5610
6116
 
@@ -5621,7 +6127,7 @@ msgid "Service Level %s"
5621
6127
  msgstr "서비스 레벨 %s"
5622
6128
 
5623
6129
  msgid "Service Level (SLA)"
5624
- msgstr ""
6130
+ msgstr "서비스 레벨 (SLA)"
5625
6131
 
5626
6132
  msgid "Service level"
5627
6133
  msgstr ""
@@ -5707,7 +6213,7 @@ msgstr ""
5707
6213
  msgid "Show an activation key"
5708
6214
  msgstr "활성 키 표시 "
5709
6215
 
5710
- msgid "Show an alternate content source"
6216
+ msgid "Show an alternate content source."
5711
6217
  msgstr ""
5712
6218
 
5713
6219
  msgid "Show an environment"
@@ -5734,6 +6240,9 @@ msgstr "활성키에 사용 가능한 릴리즈 버전 표시 "
5734
6240
  msgid "Show releases available for the content host"
5735
6241
  msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
5736
6242
 
6243
+ msgid "Show repositories enabled on the host that are known to Katello"
6244
+ msgstr ""
6245
+
5737
6246
  msgid "Show the available repository types"
5738
6247
  msgstr "사용 가능한 리포지터리 유형 표시"
5739
6248
 
@@ -5755,6 +6264,9 @@ msgstr ""
5755
6264
  msgid "Simple Content Access has been enabled for '%{subject}'."
5756
6265
  msgstr ""
5757
6266
 
6267
+ msgid "Simplified"
6268
+ msgstr ""
6269
+
5758
6270
  msgid "Single content view consisting of e.g. repositories"
5759
6271
  msgstr ""
5760
6272
 
@@ -5767,12 +6279,18 @@ msgstr ""
5767
6279
  msgid "Skipped pulp_auth check after failed pulp check"
5768
6280
  msgstr "실패한 pulp 검사 후 pulp_auth 검사를 건너뛰었습니다."
5769
6281
 
6282
+ msgid "Smart proxies"
6283
+ msgstr "스마트 프록시 "
6284
+
5770
6285
  msgid "Smart proxy IDs"
5771
6286
  msgstr "스마트 프록시 ID "
5772
6287
 
5773
6288
  msgid "Smart proxy content source not found!"
5774
6289
  msgstr ""
5775
6290
 
6291
+ msgid "Sockets"
6292
+ msgstr "소켓 "
6293
+
5776
6294
  msgid "Sockets: %s"
5777
6295
  msgstr "소켓: %s"
5778
6296
 
@@ -5785,7 +6303,7 @@ msgstr ""
5785
6303
  msgid "Solve dependencies"
5786
6304
  msgstr ""
5787
6305
 
5788
- msgid "Some hosts are ignored!"
6306
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5789
6307
  msgstr ""
5790
6308
 
5791
6309
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5809,13 +6327,13 @@ msgstr ""
5809
6327
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5810
6328
  msgstr ""
5811
6329
 
5812
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6330
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5813
6331
  msgstr ""
5814
6332
 
5815
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6333
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5816
6334
  msgstr ""
5817
6335
 
5818
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6336
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5819
6337
  msgstr ""
5820
6338
 
5821
6339
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5863,9 +6381,15 @@ msgstr ""
5863
6381
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5864
6382
  msgstr ""
5865
6383
 
6384
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6385
+ msgstr ""
6386
+
5866
6387
  msgid "Something went wrong while loading the content views. See the logs for more information"
5867
6388
  msgstr ""
5868
6389
 
6390
+ msgid "Something went wrong while refreshing alternate content sources: "
6391
+ msgstr ""
6392
+
5869
6393
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5870
6394
  msgstr ""
5871
6395
 
@@ -5878,6 +6402,9 @@ msgstr ""
5878
6402
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5879
6403
  msgstr ""
5880
6404
 
6405
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6406
+ msgstr ""
6407
+
5881
6408
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5882
6409
  msgstr ""
5883
6410
 
@@ -5896,9 +6423,33 @@ msgstr ""
5896
6423
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5897
6424
  msgstr ""
5898
6425
 
6426
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6427
+ msgstr ""
6428
+
6429
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6430
+ msgstr ""
6431
+
6432
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6433
+ msgstr ""
6434
+
6435
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6436
+ msgstr ""
6437
+
5899
6438
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5900
6439
  msgstr ""
5901
6440
 
6441
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6442
+ msgstr ""
6443
+
6444
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6445
+ msgstr ""
6446
+
6447
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6448
+ msgstr ""
6449
+
6450
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6451
+ msgstr ""
6452
+
5902
6453
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5903
6454
  msgstr ""
5904
6455
 
@@ -5917,6 +6468,9 @@ msgstr "소스 RPM"
5917
6468
  msgid "Source RPMs"
5918
6469
  msgstr "소스 RPM "
5919
6470
 
6471
+ msgid "Source type"
6472
+ msgstr ""
6473
+
5920
6474
  msgid "Specify an export chunk size less than 1_000_000 GB"
5921
6475
  msgstr ""
5922
6476
 
@@ -5945,7 +6499,7 @@ msgid "Starts"
5945
6499
  msgstr "시작 "
5946
6500
 
5947
6501
  msgid "State"
5948
- msgstr ""
6502
+ msgstr "상태 "
5949
6503
 
5950
6504
  msgid "Status"
5951
6505
  msgstr "상태 "
@@ -5957,7 +6511,7 @@ msgid "Storage"
5957
6511
  msgstr "스토리지"
5958
6512
 
5959
6513
  msgid "Stream"
5960
- msgstr ""
6514
+ msgstr "스트림"
5961
6515
 
5962
6516
  msgid "Streamed"
5963
6517
  msgstr ""
@@ -5974,12 +6528,12 @@ msgstr "보내기"
5974
6528
  msgid "Subnet IDs"
5975
6529
  msgstr "서브넷 ID "
5976
6530
 
6531
+ msgid "Subpaths"
6532
+ msgstr ""
6533
+
5977
6534
  msgid "Subscription"
5978
6535
  msgstr "서브스크립션 "
5979
6536
 
5980
- msgid "Subscription Allocation"
5981
- msgstr ""
5982
-
5983
6537
  msgid "Subscription Details"
5984
6538
  msgstr "서브스크립션 정보 "
5985
6539
 
@@ -6008,10 +6562,7 @@ msgid "Subscription Status"
6008
6562
  msgstr "서브스크립션 상태 "
6009
6563
 
6010
6564
  msgid "Subscription UUID"
6011
- msgstr ""
6012
-
6013
- msgid "Subscription Watch"
6014
- msgstr ""
6565
+ msgstr "서브스크립션 UUID"
6015
6566
 
6016
6567
  msgid "Subscription connection enabled"
6017
6568
  msgstr ""
@@ -6037,6 +6588,9 @@ msgstr "서브스크립션 매니페스트 파일 "
6037
6588
  msgid "Subscription not found"
6038
6589
  msgstr ""
6039
6590
 
6591
+ msgid "Subscription status"
6592
+ msgstr ""
6593
+
6040
6594
  msgid "Subscription was not persisted - %{error_message}"
6041
6595
  msgstr ""
6042
6596
 
@@ -6055,6 +6609,9 @@ msgstr ""
6055
6609
  msgid "Subscriptions information based on selected activation keys:"
6056
6610
  msgstr "선택한 활성키에 기반하는 서브스크립션 정보: "
6057
6611
 
6612
+ msgid "Subscriptions service"
6613
+ msgstr ""
6614
+
6058
6615
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6059
6616
  msgstr ""
6060
6617
 
@@ -6073,12 +6630,18 @@ msgstr "%s 제품의 동기화 계획을 성공적으로 변경했습니다 "
6073
6630
  msgid "Successfully initiated removal of %s product(s)"
6074
6631
  msgstr "%s 제품의 삭제를 성공적으로 시작했습니다 "
6075
6632
 
6633
+ msgid "Successfully refreshed."
6634
+ msgstr ""
6635
+
6076
6636
  msgid "Successfully removed %s Host(s)."
6077
6637
  msgstr "%s개의 호스트를 삭제했습니다."
6078
6638
 
6079
6639
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6080
6640
  msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "
6081
6641
 
6642
+ msgid "Successfully synced capsule."
6643
+ msgstr ""
6644
+
6082
6645
  msgid "Successfully synchronized."
6083
6646
  msgstr ""
6084
6647
 
@@ -6160,9 +6723,15 @@ msgstr "하나 이상의 제품 동기화 "
6160
6723
  msgid "Sync plan identifier to attach"
6161
6724
  msgstr "첨부할 동기화 계획 ID "
6162
6725
 
6726
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6727
+ msgstr ""
6728
+
6163
6729
  msgid "Sync state"
6164
6730
  msgstr ""
6165
6731
 
6732
+ msgid "Syncable export"
6733
+ msgstr ""
6734
+
6166
6735
  msgid "Synced "
6167
6736
  msgstr ""
6168
6737
 
@@ -6203,7 +6772,7 @@ msgid "Synopsis"
6203
6772
  msgstr ""
6204
6773
 
6205
6774
  msgid "System Purpose"
6206
- msgstr ""
6775
+ msgstr "시스템 목적"
6207
6776
 
6208
6777
  msgid "System Status"
6209
6778
  msgstr "시스템 상태 "
@@ -6211,6 +6780,12 @@ msgstr "시스템 상태 "
6211
6780
  msgid "System purpose"
6212
6781
  msgstr ""
6213
6782
 
6783
+ msgid "System purpose attributes updated"
6784
+ msgstr ""
6785
+
6786
+ msgid "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."
6787
+ msgstr ""
6788
+
6214
6789
  msgid "Tag name"
6215
6790
  msgstr ""
6216
6791
 
@@ -6241,11 +6816,8 @@ msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
6241
6816
  msgid "The Alternate Content Source type"
6242
6817
  msgstr ""
6243
6818
 
6244
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6245
- msgstr ""
6246
-
6247
6819
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6248
- msgstr ""
6820
+ msgstr "세션 토큰을 수신할 URL, 예: Automation Hub에서 사용."
6249
6821
 
6250
6822
  msgid "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."
6251
6823
  msgstr ""
@@ -6295,9 +6867,6 @@ msgstr ""
6295
6867
  msgid "The field to sort the data by. Defaults to the created date."
6296
6868
  msgstr ""
6297
6869
 
6298
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6299
- msgstr ""
6300
-
6301
6870
  msgid "The following hosts have errata that apply to them: "
6302
6871
  msgstr "다음 호스트에는 이에 적용되는 에라타가 있습니다: "
6303
6872
 
@@ -6324,6 +6893,9 @@ msgstr ""
6324
6893
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6325
6894
  msgstr ""
6326
6895
 
6896
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6897
+ msgstr ""
6898
+
6327
6899
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6328
6900
  msgstr ""
6329
6901
 
@@ -6340,7 +6912,7 @@ msgid "The maximum number of seconds that Pulp can take to download a file, not
6340
6912
  msgstr ""
6341
6913
 
6342
6914
  msgid "The maximum number of versions of each package to keep."
6343
- msgstr ""
6915
+ msgstr "보관할 각 패키지의 최대 버전 수입니다."
6344
6916
 
6345
6917
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
6346
6918
  msgstr ""
@@ -6365,7 +6937,7 @@ msgstr "액세스하려는 페이지에서 특정 조직을 선택해야 합니
6365
6937
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6366
6938
  msgstr ""
6367
6939
 
6368
- msgid "The port used by Pulp Crane to provide Docker Registries"
6940
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6369
6941
  msgstr ""
6370
6942
 
6371
6943
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6377,6 +6949,9 @@ msgstr "%{content_view}의 <b>%{environment}</b>으로의 승격이 완료되었
6377
6949
  msgid "The repository is already enabled"
6378
6950
  msgstr "리포지터리가 이미 활성화되어 있습니다 "
6379
6951
 
6952
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6953
+ msgstr ""
6954
+
6380
6955
  msgid "The request did not contain any repository information."
6381
6956
  msgstr ""
6382
6957
 
@@ -6408,6 +6983,12 @@ msgid "The synchronization of \"%s\" has completed. Below is a summary of new e
6408
6983
  msgstr "\"%s\"의 동기화가 완료되었습니다. 다음은 새 에라타 요약입니다. "
6409
6984
 
6410
6985
  msgid "The token key to use for authentication."
6986
+ msgstr "인증에 사용할 토큰 키입니다."
6987
+
6988
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6989
+ msgstr ""
6990
+
6991
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6411
6992
  msgstr ""
6412
6993
 
6413
6994
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
@@ -6416,7 +6997,7 @@ msgstr "컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package'
6416
6997
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6417
6998
  msgstr "컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package', 'package_group', 'errata'."
6418
6999
 
6419
- msgid "There are no Subscription Allocations to display"
7000
+ msgid "There are no Manifests to display"
6420
7001
  msgstr ""
6421
7002
 
6422
7003
  msgid "There are no Subscriptions to display"
@@ -6443,6 +7024,9 @@ msgstr "환경이나 버전이 지정되어 있지 않거나 잘못된 환경/
6443
7024
  msgid "There is no Manifest History to display."
6444
7025
  msgstr ""
6445
7026
 
7027
+ msgid "There is no downloaded content to clean."
7028
+ msgstr ""
7029
+
6446
7030
  msgid "There is no such HTTP proxy"
6447
7031
  msgstr ""
6448
7032
 
@@ -6485,6 +7069,9 @@ msgstr ""
6485
7069
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6486
7070
  msgstr ""
6487
7071
 
7072
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7073
+ msgstr ""
7074
+
6488
7075
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6489
7076
  msgstr "이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."
6490
7077
 
@@ -6509,7 +7096,7 @@ msgstr ""
6509
7096
  msgid "This host does not have any packages."
6510
7097
  msgstr ""
6511
7098
 
6512
- msgid "This host has errata that are applicable, but not installable."
7099
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6513
7100
  msgstr ""
6514
7101
 
6515
7102
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6518,13 +7105,13 @@ msgstr ""
6518
7105
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6519
7106
  msgstr ""
6520
7107
 
6521
- msgid "This is disabled because a manifest related task is in progress."
7108
+ msgid "This is disabled because a manifest task is in progress"
6522
7109
  msgstr ""
6523
7110
 
6524
- msgid "This is disabled because a manifest task is in progress"
7111
+ msgid "This is disabled because a manifest-related task is in progress."
6525
7112
  msgstr ""
6526
7113
 
6527
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7114
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6528
7115
  msgstr ""
6529
7116
 
6530
7117
  msgid "This is disabled because no manifest exists"
@@ -6539,10 +7126,10 @@ msgstr ""
6539
7126
  msgid "This is not a linked repository"
6540
7127
  msgstr ""
6541
7128
 
6542
- msgid "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 at {subscriptionWatch}."
7129
+ msgid "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}."
6543
7130
  msgstr ""
6544
7131
 
6545
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7132
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6546
7133
  msgstr ""
6547
7134
 
6548
7135
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6593,19 +7180,34 @@ msgstr ""
6593
7180
  msgid "Title"
6594
7181
  msgstr "제목"
6595
7182
 
7183
+ msgid "To get started, add this host to a host collection."
7184
+ msgstr ""
7185
+
7186
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7187
+ msgstr ""
7188
+
7189
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7190
+ msgstr ""
7191
+
6596
7192
  msgid "Toggling Simple Content Access will refresh your manifest."
6597
7193
  msgstr ""
6598
7194
 
6599
7195
  msgid "Total steps: "
6600
7196
  msgstr ""
6601
7197
 
6602
- msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
7198
+ msgid "Tracer"
6603
7199
  msgstr ""
6604
7200
 
7201
+ msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
7202
+ msgstr "추적기는 관리자가 시스템에 패치를 적용한 후 다시 시작해야 하는 응용프로그램을 식별하는 데 도움이 됩니다."
7203
+
6605
7204
  msgid "Tracer profile uploaded successfully"
6606
7205
  msgstr ""
6607
7206
 
6608
7207
  msgid "Traces"
7208
+ msgstr "추적"
7209
+
7210
+ msgid "Traces are being enabled"
6609
7211
  msgstr ""
6610
7212
 
6611
7213
  msgid "Traces are not enabled"
@@ -6614,12 +7216,24 @@ msgstr ""
6614
7216
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6615
7217
  msgstr ""
6616
7218
 
7219
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7220
+ msgstr ""
7221
+
6617
7222
  msgid "Traces may be listed here after {pkgLink}."
6618
7223
  msgstr ""
6619
7224
 
7225
+ msgid "Traces not available"
7226
+ msgstr ""
7227
+
6620
7228
  msgid "Traces that require logout cannot be restarted remotely"
6621
7229
  msgstr ""
6622
7230
 
7231
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7232
+ msgstr ""
7233
+
7234
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7235
+ msgstr ""
7236
+
6623
7237
  msgid "Trigger an auto-attach of subscriptions"
6624
7238
  msgstr "서브스크립션 자동 첨부 트리거"
6625
7239
 
@@ -6650,9 +7264,18 @@ msgstr ""
6650
7264
  msgid "Type of content: \"cert\", \"gpg_key\""
6651
7265
  msgstr ""
6652
7266
 
7267
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7268
+ msgstr ""
7269
+
6653
7270
  msgid "URL"
6654
7271
  msgstr "URL"
6655
7272
 
7273
+ msgid "URL and paths"
7274
+ msgstr ""
7275
+
7276
+ msgid "URL and subpaths"
7277
+ msgstr ""
7278
+
6656
7279
  msgid "URL needs to have a trailing /"
6657
7280
  msgstr ""
6658
7281
 
@@ -6686,6 +7309,12 @@ msgstr "연결할 수 없음"
6686
7309
  msgid "Unable to connect. Got: %s"
6687
7310
  msgstr "연결할 수 없습니다. 오류 메시지: %s"
6688
7311
 
7312
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7313
+ msgstr ""
7314
+
7315
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7316
+ msgstr ""
7317
+
6689
7318
  msgid "Unable to detect pulp storage"
6690
7319
  msgstr "pulp 스토리지를 감지할 수 없습니다."
6691
7320
 
@@ -6719,6 +7348,9 @@ msgstr "컨텐츠 호스트를 재할당할 수 없습니다. system_content_vie
6719
7348
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6720
7349
  msgstr "시스템을 재할당할 수 없습니다. system_content_view_id 및 system_environment_id를 확인하십시오. "
6721
7350
 
7351
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7352
+ msgstr ""
7353
+
6722
7354
  msgid "Unable to send errata e-mail notification: %{error}"
6723
7355
  msgstr "에라타 이메일 통지를 보낼 수 없습니다: %{error}"
6724
7356
 
@@ -6848,7 +7480,7 @@ msgstr "동기화 계획 업데이트 "
6848
7480
  msgid "Update an activation key"
6849
7481
  msgstr "활성키 업데이트 "
6850
7482
 
6851
- msgid "Update an alternate content source"
7483
+ msgid "Update an alternate content source."
6852
7484
  msgstr ""
6853
7485
 
6854
7486
  msgid "Update an environment"
@@ -6969,7 +7601,7 @@ msgid "Updating repository authentication configuration"
6969
7601
  msgstr ""
6970
7602
 
6971
7603
  msgid "Upgradable"
6972
- msgstr ""
7604
+ msgstr "업그레이드 가능"
6973
7605
 
6974
7606
  msgid "Upgradable to"
6975
7607
  msgstr ""
@@ -7004,6 +7636,9 @@ msgstr ""
7004
7636
  msgid "Upload request id"
7005
7637
  msgstr "요청 ID 업로드 "
7006
7638
 
7639
+ msgid "Upstream Candlepin"
7640
+ msgstr ""
7641
+
7007
7642
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7008
7643
  msgstr ""
7009
7644
 
@@ -7047,11 +7682,20 @@ msgid "Usage"
7047
7682
  msgstr ""
7048
7683
 
7049
7684
  msgid "Usage Type"
7050
- msgstr ""
7685
+ msgstr "사용 유형"
7051
7686
 
7052
7687
  msgid "Usage of host"
7053
7688
  msgstr ""
7054
7689
 
7690
+ msgid "Usage type"
7691
+ msgstr ""
7692
+
7693
+ msgid "Use HTTP Proxies"
7694
+ msgstr ""
7695
+
7696
+ msgid "Use HTTP proxies"
7697
+ msgstr ""
7698
+
7055
7699
  msgid "Use remote execution by default"
7056
7700
  msgstr ""
7057
7701
 
@@ -7097,6 +7741,9 @@ msgstr "유효 "
7097
7741
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7098
7742
  msgstr ""
7099
7743
 
7744
+ msgid "Verify SSL"
7745
+ msgstr "SSL 확인 "
7746
+
7100
7747
  msgid "Verify checksum"
7101
7748
  msgstr ""
7102
7749
 
@@ -7124,6 +7771,12 @@ msgstr ""
7124
7771
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7125
7772
  msgstr ""
7126
7773
 
7774
+ msgid "Version ${versionOne}"
7775
+ msgstr ""
7776
+
7777
+ msgid "Version ${versionTwo}"
7778
+ msgstr ""
7779
+
7127
7780
  msgid "Version details updated."
7128
7781
  msgstr ""
7129
7782
 
@@ -7136,6 +7789,9 @@ msgstr "버전 "
7136
7789
  msgid "Versions "
7137
7790
  msgstr ""
7138
7791
 
7792
+ msgid "Versions to compare"
7793
+ msgstr ""
7794
+
7139
7795
  msgid "Versions to exclusively include in the action"
7140
7796
  msgstr ""
7141
7797
 
@@ -7148,30 +7804,45 @@ msgstr ""
7148
7804
  msgid "View %{view} has not been promoted to %{env}"
7149
7805
  msgstr "보기 %{view}가 %{env}에 승격되었습니다"
7150
7806
 
7807
+ msgid "View Subscription Usage"
7808
+ msgstr ""
7809
+
7151
7810
  msgid "View a report of the affected hosts"
7152
7811
  msgstr ""
7153
7812
 
7813
+ msgid "View applicable errata"
7814
+ msgstr ""
7815
+
7816
+ msgid "View by"
7817
+ msgstr ""
7818
+
7154
7819
  msgid "View matching content"
7155
7820
  msgstr ""
7156
7821
 
7157
7822
  msgid "View tasks "
7158
7823
  msgstr ""
7159
7824
 
7160
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7825
+ msgid "View the Content Views page"
7826
+ msgstr ""
7827
+
7828
+ msgid "View the job"
7161
7829
  msgstr ""
7162
7830
 
7163
7831
  msgid "Virtual"
7164
7832
  msgstr "가상 "
7165
7833
 
7834
+ msgid "Virtual guests"
7835
+ msgstr ""
7836
+
7837
+ msgid "Virtual host"
7838
+ msgstr ""
7839
+
7166
7840
  msgid "Waiting to start."
7167
7841
  msgstr ""
7168
7842
 
7169
7843
  msgid "Warning"
7170
7844
  msgstr "경고 "
7171
7845
 
7172
- msgid "What's next?"
7173
- msgstr ""
7174
-
7175
7846
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7176
7847
  msgstr ""
7177
7848
 
@@ -7211,6 +7882,9 @@ msgstr ""
7211
7882
  msgid "Whether to include available content attribute in results"
7212
7883
  msgstr "사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"
7213
7884
 
7885
+ msgid "Whether to turn on Simple Content Access for the organization."
7886
+ msgstr ""
7887
+
7214
7888
  msgid "Workers"
7215
7889
  msgstr "Worker"
7216
7890
 
@@ -7283,9 +7957,6 @@ msgstr ""
7283
7957
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7284
7958
  msgstr ""
7285
7959
 
7286
- msgid "You may want to check the host's content view and lifecycle environment."
7287
- msgstr ""
7288
-
7289
7960
  msgid "You were not allowed to add %s"
7290
7961
  msgstr "%s을(를) 추가할 수 없습니다 "
7291
7962
 
@@ -7307,6 +7978,12 @@ msgstr ""
7307
7978
  msgid "Your search returned no matching "
7308
7979
  msgstr ""
7309
7980
 
7981
+ msgid "Your search returned no matching ${name}."
7982
+ msgstr ""
7983
+
7984
+ msgid "Your search returned no matching DEBs."
7985
+ msgstr ""
7986
+
7310
7987
  msgid "Your search returned no matching Module streams."
7311
7988
  msgstr ""
7312
7989
 
@@ -7319,12 +7996,18 @@ msgstr ""
7319
7996
  msgid "Your search returned no matching hosts."
7320
7997
  msgstr ""
7321
7998
 
7999
+ msgid "Yum"
8000
+ msgstr ""
8001
+
7322
8002
  msgid "Yum Metadata: %s"
7323
8003
  msgstr "Yum 메타데이터: %s"
7324
8004
 
7325
8005
  msgid "a content unit"
7326
8006
  msgstr ""
7327
8007
 
8008
+ msgid "a custom CDN URL"
8009
+ msgstr ""
8010
+
7328
8011
  msgid "a deb package"
7329
8012
  msgstr ""
7330
8013
 
@@ -7412,6 +8095,12 @@ msgstr "등록 시 서브스크립션을 자동으로 첨부 "
7412
8095
  msgid "base url to perform repo discovery on"
7413
8096
  msgstr "리포지터리 검색을 실행하기 위한 기본 url "
7414
8097
 
8098
+ msgid "bug fix"
8099
+ msgstr ""
8100
+
8101
+ msgid "bug fixes"
8102
+ msgstr ""
8103
+
7415
8104
  msgid "bulk add filter rules"
7416
8105
  msgstr ""
7417
8106
 
@@ -7475,8 +8164,8 @@ msgstr "컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할
7475
8164
  msgid "cannot contain more than %s characters"
7476
8165
  msgstr "%s 자 이상을 포함시킬 수 없습니다 "
7477
8166
 
7478
- msgid "checking Candlepin task status"
7479
- msgstr "Candlepin 태스크 상태를 확인하는 중"
8167
+ msgid "checking %s task status"
8168
+ msgstr ""
7480
8169
 
7481
8170
  msgid "checking Pulp task status"
7482
8171
  msgstr "Pulp 태스크 상태를 확인하는 중"
@@ -7496,9 +8185,6 @@ msgstr ""
7496
8185
  msgid "content release version"
7497
8186
  msgstr "컨텐츠 릴리즈 버전 "
7498
8187
 
7499
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7500
- msgstr ""
7501
-
7502
8188
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7503
8189
  msgstr ""
7504
8190
 
@@ -7553,7 +8239,7 @@ msgstr "비교할 컨텐츠 뷰 버전 "
7553
8239
  msgid "create a filter for a content view"
7554
8240
  msgstr "컨텐츠 뷰의 필터 생성"
7555
8241
 
7556
- msgid "deb Packages"
8242
+ msgid "deb, package, package group, or docker tag names"
7557
8243
  msgstr ""
7558
8244
 
7559
8245
  msgid "deb_ids is not an array"
@@ -7580,12 +8266,21 @@ msgstr "필터 설명 "
7580
8266
  msgid "description of the repository"
7581
8267
  msgstr ""
7582
8268
 
8269
+ msgid "disk"
8270
+ msgstr ""
8271
+
7583
8272
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7584
8273
  msgstr ""
7585
8274
 
7586
8275
  msgid "enables or disables synchronization"
7587
8276
  msgstr "동기화 활성화 또는 비활성화 "
7588
8277
 
8278
+ msgid "enhancement"
8279
+ msgstr ""
8280
+
8281
+ msgid "enhancements"
8282
+ msgstr ""
8283
+
7589
8284
  msgid "environment"
7590
8285
  msgstr "환경 "
7591
8286
 
@@ -7709,8 +8404,8 @@ msgstr "컨텐츠 필터링에 사용할 ID"
7709
8404
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7710
8405
  msgstr ""
7711
8406
 
7712
- msgid "initiating Candlepin task"
7713
- msgstr "Candlepin 태스크를 시작하는 중"
8407
+ msgid "initiating %s task"
8408
+ msgstr ""
7714
8409
 
7715
8410
  msgid "initiating Pulp task"
7716
8411
  msgstr "Pulp 태스크를 시작하는 중"
@@ -7769,9 +8464,6 @@ msgstr "환경 레이블 "
7769
8464
  msgid "label of the repository"
7770
8465
  msgstr ""
7771
8466
 
7772
- msgid "limit to only repositories of this type"
7773
- msgstr ""
7774
-
7775
8467
  msgid "limit to only repositories with this download policy"
7776
8468
  msgstr ""
7777
8469
 
@@ -7889,9 +8581,6 @@ msgstr "서브스크립션의 매니페스트 기록 취득 "
7889
8581
  msgid "of environment must be unique within one organization"
7890
8582
  msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "
7891
8583
 
7892
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7893
- msgstr ""
7894
-
7895
8584
  msgid "only show the repositories readable by this user with this username"
7896
8585
  msgstr ""
7897
8586
 
@@ -8003,6 +8692,15 @@ msgstr "단일 리소스 응답의 root 노드 (옵션) "
8003
8692
  msgid "rule identifier"
8004
8693
  msgstr "규칙 ID "
8005
8694
 
8695
+ msgid "run job invocation"
8696
+ msgstr ""
8697
+
8698
+ msgid "security advisories"
8699
+ msgstr ""
8700
+
8701
+ msgid "security advisory"
8702
+ msgstr ""
8703
+
8006
8704
  msgid "service level"
8007
8705
  msgstr "서비스 레벨 "
8008
8706
 
@@ -8057,9 +8755,6 @@ msgstr "다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수
8057
8755
  msgid "to"
8058
8756
  msgstr ""
8059
8757
 
8060
- msgid "to update configuration on all hosts, or"
8061
- msgstr ""
8062
-
8063
8758
  msgid "true if the latest version of the component's content view is desired"
8064
8759
  msgstr ""
8065
8760
 
@@ -8072,10 +8767,7 @@ msgstr "리포지터리가 HTTP를 통해 공개할 수 있는 경우 true"
8072
8767
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8073
8768
  msgstr ""
8074
8769
 
8075
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8076
- msgstr ""
8077
-
8078
- msgid "type of repo"
8770
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8079
8771
  msgstr ""
8080
8772
 
8081
8773
  msgid "types of filters"
@@ -8090,9 +8782,6 @@ msgstr ""
8090
8782
  msgid "update a filter"
8091
8783
  msgstr "필터 업데이트"
8092
8784
 
8093
- msgid "update configuration on the hosts manually:"
8094
- msgstr ""
8095
-
8096
8785
  msgid "updating package group..."
8097
8786
  msgstr "패키지 그룹 업데이트 중..."
8098
8787
 
@@ -8120,8 +8809,8 @@ msgstr "원격 실행을 통해"
8120
8809
  msgid "view content view tabs."
8121
8810
  msgstr ""
8122
8811
 
8123
- msgid "waiting for Candlepin to finish the task"
8124
- msgstr "Candlepin이 태스크를 끝내기를 기다리는 중"
8812
+ msgid "waiting for %s to finish the task"
8813
+ msgstr ""
8125
8814
 
8126
8815
  msgid "waiting for Pulp to finish the task"
8127
8816
  msgstr "Pulp가 태스크를 끝내기를 기다리는 중"