katello 4.8.4 → 4.9.0.rc1

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

Potentially problematic release.


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

Files changed (481) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +40 -4
  3. data/app/assets/javascripts/katello/locale/bn/katello.js +1 -0
  4. data/app/assets/javascripts/katello/locale/cs/katello.js +1 -0
  5. data/app/assets/javascripts/katello/locale/de/katello.js +1 -0
  6. data/app/assets/javascripts/katello/locale/en/katello.js +1 -0
  7. data/app/assets/javascripts/katello/locale/es/katello.js +1 -0
  8. data/app/assets/javascripts/katello/locale/fr/katello.js +1 -0
  9. data/app/assets/javascripts/katello/locale/gu/katello.js +1 -0
  10. data/app/assets/javascripts/katello/locale/hi/katello.js +1 -0
  11. data/app/assets/javascripts/katello/locale/it/katello.js +1 -0
  12. data/app/assets/javascripts/katello/locale/ja/katello.js +1 -0
  13. data/app/assets/javascripts/katello/locale/ka/katello.js +1 -0
  14. data/app/assets/javascripts/katello/locale/kn/katello.js +1 -0
  15. data/app/assets/javascripts/katello/locale/ko/katello.js +1 -0
  16. data/app/assets/javascripts/katello/locale/locale/katello.js +1 -0
  17. data/app/assets/javascripts/katello/locale/mr/katello.js +1 -0
  18. data/app/assets/javascripts/katello/locale/or/katello.js +1 -0
  19. data/app/assets/javascripts/katello/locale/pa/katello.js +1 -0
  20. data/app/assets/javascripts/katello/locale/pt/katello.js +1 -0
  21. data/app/assets/javascripts/katello/locale/pt_BR/katello.js +1 -0
  22. data/app/assets/javascripts/katello/locale/ru/katello.js +1 -0
  23. data/app/assets/javascripts/katello/locale/ta/katello.js +1 -0
  24. data/app/assets/javascripts/katello/locale/te/katello.js +1 -0
  25. data/app/assets/javascripts/katello/locale/zh_CN/katello.js +1 -0
  26. data/app/assets/javascripts/katello/locale/zh_TW/katello.js +1 -0
  27. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -0
  28. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  29. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -0
  30. data/app/controllers/katello/api/v2/content_views_controller.rb +22 -12
  31. data/app/controllers/katello/api/v2/environments_controller.rb +5 -1
  32. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +1 -1
  33. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -2
  34. data/app/controllers/katello/api/v2/organizations_controller.rb +11 -0
  35. data/app/controllers/katello/api/v2/repositories_controller.rb +4 -3
  36. data/app/controllers/katello/api/v2/repository_sets_controller.rb +13 -4
  37. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  38. data/app/controllers/katello/concerns/api/api_controller.rb +2 -2
  39. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +1 -1
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -4
  41. data/app/lib/actions/candlepin/product/content_add.rb +13 -1
  42. data/app/lib/actions/candlepin/product/content_update.rb +2 -1
  43. data/app/lib/actions/katello/agent_action.rb +3 -4
  44. data/app/lib/actions/katello/bulk_agent_action.rb +1 -4
  45. data/app/lib/actions/katello/content_view/publish.rb +1 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -0
  47. data/app/lib/actions/katello/host/update_content_view.rb +2 -4
  48. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  49. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  50. data/app/lib/actions/katello/product/content_create.rb +2 -2
  51. data/app/lib/actions/katello/repository/destroy.rb +15 -7
  52. data/app/lib/actions/katello/repository/update.rb +23 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +2 -0
  54. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +5 -12
  55. data/app/lib/katello/concerns/base_template_scope_extensions.rb +34 -2
  56. data/app/lib/katello/event_daemon/runner.rb +8 -4
  57. data/app/lib/katello/repo_discovery.rb +3 -1
  58. data/app/lib/katello/resources/cdn/katello_cdn.rb +4 -8
  59. data/app/lib/katello/util/default_enablement_migrator.rb +183 -0
  60. data/app/models/katello/activation_key.rb +4 -0
  61. data/app/models/katello/alternate_content_source.rb +13 -8
  62. data/app/models/katello/candlepin/repository_mapper.rb +0 -1
  63. data/app/models/katello/concerns/content_view_filter_rule_common.rb +42 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +9 -40
  65. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -23
  66. data/app/models/katello/content.rb +9 -0
  67. data/app/models/katello/content_view.rb +99 -4
  68. data/app/models/katello/content_view_environment_content_facet.rb +12 -0
  69. data/app/models/katello/content_view_filter.rb +5 -1
  70. data/app/models/katello/content_view_package_filter_rule.rb +0 -1
  71. data/app/models/katello/content_view_repository.rb +0 -1
  72. data/app/models/katello/content_view_version.rb +26 -0
  73. data/app/models/katello/docker_meta_tag.rb +4 -0
  74. data/app/models/katello/host/content_facet.rb +2 -0
  75. data/app/models/katello/kt_environment.rb +13 -3
  76. data/app/models/katello/ping.rb +1 -1
  77. data/app/models/katello/product.rb +1 -1
  78. data/app/models/katello/product_content.rb +13 -15
  79. data/app/models/katello/root_repository.rb +21 -2
  80. data/app/models/katello/sync_plan.rb +2 -6
  81. data/app/presenters/katello/host_package_presenter.rb +5 -3
  82. data/app/services/katello/product_content_finder.rb +6 -1
  83. data/app/services/katello/pulp3/alternate_content_source.rb +5 -0
  84. data/app/services/katello/pulp3/module_stream.rb +2 -12
  85. data/app/services/katello/pulp3/repository/yum.rb +3 -0
  86. data/app/views/foreman/job_templates/install_errata.erb +4 -4
  87. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +4 -7
  88. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +5 -6
  89. data/app/views/katello/api/v2/activation_keys/base.json.rabl +6 -0
  90. data/app/views/katello/api/v2/common/destroy.json.rabl +2 -1
  91. data/app/views/katello/api/v2/content_credentials/show.json.rabl +1 -1
  92. data/app/views/katello/api/v2/content_facet/base.json.rabl +10 -9
  93. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +6 -0
  94. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +11 -1
  95. data/app/views/katello/api/v2/content_views/base.json.rabl +3 -0
  96. data/app/views/katello/api/v2/docker_tags/_base.json.rabl +4 -0
  97. data/app/views/katello/api/v2/environments/show.json.rabl +10 -0
  98. data/app/views/katello/api/v2/host_subscriptions/show.json.rabl +1 -0
  99. data/app/views/katello/api/v2/repositories/index.json.rabl +6 -0
  100. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/repository_sets/show.json.rabl +8 -2
  102. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +22 -15
  103. data/app/views/smart_proxies/_disk_usage.html.erb +2 -0
  104. data/ca/redhat-uep.pem +53 -53
  105. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +0 -1
  106. data/db/migrate/20230328180352_add_applied_filters_to_katello_content_view_versions.rb +5 -0
  107. data/db/migrate/20230503190626_add_metadata_expire_to_root.rb +5 -0
  108. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +4 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +16 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +4 -3
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +15 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html +1 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -2
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +10 -4
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +2 -2
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +2 -0
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -0
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -0
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +2 -0
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +2 -4
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +0 -1
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +0 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +4 -2
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +12 -3
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tag-repositories.controller.js +43 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +7 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +0 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +0 -7
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html +60 -0
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +0 -8
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +10 -0
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +0 -4
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +4 -2
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +5 -4
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html +2 -2
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html +2 -2
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +7 -0
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js +4 -2
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-hosts.controller.js +4 -2
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html +4 -3
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +4 -3
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +590 -175
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn.po +5157 -0
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn_IN.po +5157 -0
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ca.po +5157 -0
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/cs_CZ.po +5204 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_AT.po +5153 -0
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_DE.po +5159 -0
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/el.po +5157 -0
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_GB.po +5158 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_US.po +5153 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/et_EE.po +5153 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gl.po +5157 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gu.po +5157 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/he_IL.po +5191 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/hi.po +5157 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/id.po +5136 -0
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +5303 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +34 -14
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/kn.po +5157 -0
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ml_IN.po +5153 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/mr.po +5157 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/nl_NL.po +5161 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/or.po +5157 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pa.po +5157 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl.po +5192 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl_PL.po +5187 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt.po +5174 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro.po +5170 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro_RO.po +5170 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +5279 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sl.po +5191 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sv_SE.po +5158 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta.po +5157 -0
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta_IN.po +5157 -0
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/te.po +5157 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/tr.po +5157 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi.po +5136 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi_VN.po +5136 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh.po +5136 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +38 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +8 -2
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +12 -3
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +13 -4
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +12 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +6 -0
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +0 -4
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +6 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +20 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +1 -1
  212. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/activation_keys.scss +13 -0
  213. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +1 -0
  214. data/lib/katello/engine.rb +0 -7
  215. data/lib/katello/plugin.rb +18 -15
  216. data/lib/katello/tasks/upgrades/4.9/update_custom_products_enablement.rake +11 -0
  217. data/lib/katello/version.rb +1 -1
  218. data/locale/action_names.rb +1 -2
  219. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  220. data/locale/bn/katello.po +215 -183
  221. data/locale/bn_IN/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/bn_IN/katello.po +8901 -0
  223. data/locale/ca/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ca/katello.po +8900 -0
  225. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  226. data/locale/cs/katello.po +216 -185
  227. data/locale/cs_CZ/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/cs_CZ/katello.po +8906 -0
  229. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  230. data/locale/de/katello.po +223 -191
  231. data/locale/de_AT/LC_MESSAGES/katello.mo +0 -0
  232. data/locale/de_AT/katello.po +8897 -0
  233. data/locale/de_DE/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/de_DE/katello.po +8906 -0
  235. data/locale/el/LC_MESSAGES/katello.mo +0 -0
  236. data/locale/el/katello.po +8900 -0
  237. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  238. data/locale/en/katello.po +215 -183
  239. data/locale/en_GB/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/en_GB/katello.po +8902 -0
  241. data/locale/en_US/LC_MESSAGES/katello.mo +0 -0
  242. data/locale/en_US/katello.po +8897 -0
  243. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/es/katello.po +218 -187
  245. data/locale/et_EE/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/et_EE/katello.po +8897 -0
  247. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  248. data/locale/fr/katello.po +233 -204
  249. data/locale/gl/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/gl/katello.po +8900 -0
  251. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/gu/katello.po +215 -183
  253. data/locale/he_IL/LC_MESSAGES/katello.mo +0 -0
  254. data/locale/he_IL/katello.po +8902 -0
  255. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/hi/katello.po +215 -183
  257. data/locale/id/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/id/katello.po +8896 -0
  259. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  260. data/locale/it/katello.po +216 -185
  261. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/ja/katello.po +233 -202
  263. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  264. data/locale/ka/katello.po +223 -191
  265. data/locale/katello.pot +1844 -1796
  266. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  267. data/locale/kn/katello.po +215 -183
  268. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  269. data/locale/ko/katello.po +216 -183
  270. data/locale/ml_IN/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/ml_IN/katello.po +8897 -0
  272. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  273. data/locale/mr/katello.po +215 -183
  274. data/locale/nl_NL/LC_MESSAGES/katello.mo +0 -0
  275. data/locale/nl_NL/katello.po +8907 -0
  276. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/or/katello.po +215 -183
  278. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  279. data/locale/pa/katello.po +215 -183
  280. data/locale/pl/LC_MESSAGES/katello.mo +0 -0
  281. data/locale/pl/katello.po +8903 -0
  282. data/locale/pl_PL/LC_MESSAGES/katello.mo +0 -0
  283. data/locale/pl_PL/katello.po +8899 -0
  284. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  285. data/locale/pt/katello.po +215 -183
  286. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  287. data/locale/pt_BR/katello.po +218 -187
  288. data/locale/ro/LC_MESSAGES/katello.mo +0 -0
  289. data/locale/ro/katello.po +8897 -0
  290. data/locale/ro_RO/LC_MESSAGES/katello.mo +0 -0
  291. data/locale/ro_RO/katello.po +8898 -0
  292. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  293. data/locale/ru/katello.po +216 -184
  294. data/locale/sl/LC_MESSAGES/katello.mo +0 -0
  295. data/locale/sl/katello.po +8901 -0
  296. data/locale/sv_SE/LC_MESSAGES/katello.mo +0 -0
  297. data/locale/sv_SE/katello.po +8903 -0
  298. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  299. data/locale/ta/katello.po +215 -183
  300. data/locale/ta_IN/LC_MESSAGES/katello.mo +0 -0
  301. data/locale/ta_IN/katello.po +8901 -0
  302. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  303. data/locale/te/katello.po +215 -183
  304. data/locale/tr/LC_MESSAGES/katello.mo +0 -0
  305. data/locale/tr/katello.po +8900 -0
  306. data/locale/vi/LC_MESSAGES/katello.mo +0 -0
  307. data/locale/vi/katello.po +8896 -0
  308. data/locale/vi_VN/LC_MESSAGES/katello.mo +0 -0
  309. data/locale/vi_VN/katello.po +8897 -0
  310. data/locale/zh/LC_MESSAGES/katello.mo +0 -0
  311. data/locale/zh/katello.po +8896 -0
  312. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  313. data/locale/zh_CN/katello.po +233 -202
  314. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  315. data/locale/zh_TW/katello.po +216 -183
  316. data/package.json +1 -0
  317. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +1 -0
  318. data/webpack/components/Bookmark/AddBookmarkModal.js +8 -2
  319. data/webpack/components/Content/ContentTable.js +1 -0
  320. data/webpack/components/Content/Details/ContentDetailInfo.js +1 -1
  321. data/webpack/components/Content/Details/ContentDetails.js +3 -3
  322. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetailInfo.test.js.snap +1 -0
  323. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +4 -0
  324. data/webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap +1 -0
  325. data/webpack/components/RoutedTabs/index.js +1 -1
  326. data/webpack/components/SelectOrg/SetOrganization.js +7 -1
  327. data/webpack/components/Table/EmptyStateMessage.js +8 -3
  328. data/webpack/components/Table/MainTable.js +8 -2
  329. data/webpack/components/TooltipButton/TooltipButton.js +2 -2
  330. data/webpack/components/TooltipButton/__snapshots__/TooltipButton.test.js.snap +3 -0
  331. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +2 -0
  332. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +81 -24
  333. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.scss +3 -0
  334. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +10 -3
  335. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +8 -0
  336. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -2
  337. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +3 -1
  338. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  339. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +0 -4
  340. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErratumExpansionDetail.js +2 -2
  341. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -5
  342. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +20 -0
  343. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  344. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +16 -0
  345. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +54 -8
  346. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +1 -0
  347. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +8 -1
  348. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  349. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  350. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  351. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +2 -1
  352. data/webpack/components/extensions/RegistrationCommands/fields/Force.js +1 -0
  353. data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +1 -0
  354. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -0
  355. data/webpack/components/extensions/about/index.js +2 -2
  356. data/webpack/components/pf3Table/components/Table.js +1 -0
  357. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +6 -1
  358. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +15 -2
  359. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +6 -1
  360. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +4 -1
  361. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -0
  362. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +1 -0
  363. data/webpack/scenes/Content/Details/ContentDetails.js +4 -2
  364. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  365. data/webpack/scenes/Content/GenericContentPage.js +1 -1
  366. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  367. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -0
  368. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +26 -13
  369. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +27 -13
  370. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +8 -4
  371. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -2
  372. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  373. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +25 -24
  374. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -1
  375. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +19 -3
  376. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +6 -0
  377. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
  379. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +15 -2
  380. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +5 -1
  381. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +13 -9
  382. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +19 -6
  383. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +5 -1
  384. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +50 -51
  385. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +45 -44
  386. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +45 -44
  387. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +13 -8
  388. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +4 -3
  389. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +5 -2
  390. data/webpack/scenes/ContentViews/Details/Filters/FilterRuleConstants.js +6 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +3 -2
  392. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +10 -2
  393. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +5 -1
  394. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +7 -0
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +37 -24
  396. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -3
  397. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -1
  398. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +78 -8
  399. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +27 -8
  400. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailNoReposAdded.fixtures.json +13 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +1 -1
  402. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +16 -16
  403. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +16 -16
  404. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +6 -3
  405. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +10 -5
  406. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +9 -2
  407. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +1 -0
  408. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +2 -1
  409. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +2 -1
  410. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +2 -1
  411. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +12 -6
  412. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +2 -1
  413. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +2 -1
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +25 -4
  415. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +4 -2
  416. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +26 -13
  417. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +30 -17
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +6 -3
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  422. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +8 -1
  423. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -1
  424. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +55 -6
  425. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +6 -3
  426. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +2 -1
  427. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +8 -4
  428. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +1 -1
  429. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +4 -2
  430. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  431. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +4 -2
  432. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +30 -3
  433. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +24 -2
  434. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +4 -0
  435. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +2 -2
  436. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -3
  437. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +2 -1
  438. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +2 -1
  439. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +3 -2
  440. data/webpack/scenes/ContentViews/components/ContentViewSelect/helpers.js +32 -0
  441. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +52 -42
  442. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  443. data/webpack/scenes/ContentViews/components/FiltersAppliedIcon.js +17 -0
  444. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.js +45 -0
  445. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.scss +9 -0
  446. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  447. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +49 -22
  448. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +7 -1
  449. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +1 -0
  450. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +2 -0
  451. data/webpack/scenes/Hosts/ChangeContentSource/index.js +2 -0
  452. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +1 -0
  453. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +1 -0
  454. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  455. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +2 -0
  456. data/webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js +6 -1
  457. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  458. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -0
  459. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +1 -0
  460. data/webpack/scenes/RedHatRepositories/helpers.js +2 -0
  461. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -1
  462. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  463. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +4 -4
  464. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap +1 -0
  465. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +2 -0
  466. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +4 -0
  467. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +2 -1
  468. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +5 -4
  469. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +1 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +1 -1
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -1
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -0
  473. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +1 -0
  474. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +1 -1
  475. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +5 -6
  476. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +60 -5
  477. data/webpack/utils/useKatelloDocUrl.js +18 -0
  478. metadata +163 -22
  479. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  480. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  481. data/webpack/components/extensions/HostDetails/common/KatelloAgentDeprecationAlert.js +0 -23
data/locale/ko/katello.po CHANGED
@@ -148,9 +148,6 @@ msgstr ""
148
148
  msgid "%s is unreachable. %s"
149
149
  msgstr ""
150
150
 
151
- msgid "%s must be an array."
152
- msgstr ""
153
-
154
151
  msgid "%{errata} (%{total} other errata)"
155
152
  msgstr "%{errata} (%{total} 기타 에라타)"
156
153
 
@@ -385,15 +382,12 @@ msgstr "<b>동기화</b> 요약"
385
382
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
386
383
  msgstr ""
387
384
 
388
- msgid "A Pool and its Subscription cannot belong to different organizations"
385
+ msgid "A Pool and its Subscription cannot belong to different organizations."
389
386
  msgstr ""
390
387
 
391
388
  msgid "A backend service [ %s ] is unreachable"
392
389
  msgstr "백엔드 서비스 [ %s ]를 사용할 수 없음 "
393
390
 
394
- msgid "A content view can be added by using the \"Create content view\" button below."
395
- msgstr ""
396
-
397
391
  msgid "A content_type must be provided."
398
392
  msgstr "content_type을 지정해야 합니다. "
399
393
 
@@ -460,9 +454,6 @@ msgstr ""
460
454
  msgid "Action unauthorized to be performed in this organization."
461
455
  msgstr ""
462
456
 
463
- msgid "Action unauthorized to be performed on selected hosts."
464
- msgstr "선택한 호스트에서 수행할 권한이 없는 작업입니다."
465
-
466
457
  msgid "Action with sub plans"
467
458
  msgstr "하위 계획이 있는 작업"
468
459
 
@@ -514,6 +505,9 @@ msgstr ""
514
505
  msgid "Add Subscriptions"
515
506
  msgstr ""
516
507
 
508
+ msgid "Add Subscriptions using the Add Subscriptions button."
509
+ msgstr ""
510
+
517
511
  msgid "Add a subscription to a host"
518
512
  msgstr "호스트에 서브스크립션 추가"
519
513
 
@@ -523,6 +517,9 @@ msgstr ""
523
517
  msgid "Add components to the content view"
524
518
  msgstr ""
525
519
 
520
+ msgid "Add content"
521
+ msgstr ""
522
+
526
523
  msgid "Add content view"
527
524
  msgstr ""
528
525
 
@@ -565,12 +562,18 @@ msgstr "동기화 계획에 제품 추가 "
565
562
  msgid "Add repositories"
566
563
  msgstr ""
567
564
 
565
+ msgid "Add repositories with package groups to content view to select them here."
566
+ msgstr ""
567
+
568
568
  msgid "Add rule"
569
569
  msgstr ""
570
570
 
571
571
  msgid "Add source"
572
572
  msgstr ""
573
573
 
574
+ msgid "Add subscriptions"
575
+ msgstr ""
576
+
574
577
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
575
578
  msgstr ""
576
579
 
@@ -580,12 +583,6 @@ msgstr ""
580
583
  msgid "Add to a host collection"
581
584
  msgstr ""
582
585
 
583
- msgid "Add to this filter using the 'Add Deb rule' button."
584
- msgstr ""
585
-
586
- msgid "Add to this filter using the 'Add filter rule' button."
587
- msgstr ""
588
-
589
586
  msgid "Add-ons"
590
587
  msgstr ""
591
588
 
@@ -709,15 +706,12 @@ msgstr ""
709
706
  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."
710
707
  msgstr ""
711
708
 
712
- msgid "An alternate content source can be added by using the \"Add source\" button below."
709
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
713
710
  msgstr ""
714
711
 
715
712
  msgid "An environment is missing a prior"
716
713
  msgstr ""
717
714
 
718
- msgid "An error occurred during content removal. Could not find repository with id: %s"
719
- msgstr ""
720
-
721
715
  msgid ""
722
716
  "An error occurred during the sync \n"
723
717
  "%{error_message}"
@@ -914,12 +908,6 @@ msgstr ""
914
908
  msgid "Autopublish"
915
909
  msgstr ""
916
910
 
917
- msgid "Autosearch"
918
- msgstr ""
919
-
920
- msgid "Autosearch delay"
921
- msgstr ""
922
-
923
911
  msgid "Available"
924
912
  msgstr ""
925
913
 
@@ -1055,24 +1043,12 @@ msgstr "특정 컨텐츠 뷰를 기반으로 적용 가능한 에라타 계산 "
1055
1043
  msgid "Calculate Applicable Errata based on a particular Environment"
1056
1044
  msgstr "특정 환경을 기반으로 적용 가능한 에라타 계산 "
1057
1045
 
1058
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1059
- msgstr ""
1060
-
1061
1046
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1062
1047
  msgstr ""
1063
1048
 
1064
- msgid "Can not add product %s because it is disabled."
1065
- msgstr ""
1066
-
1067
- msgid "Can only destroy on Yum Repositories."
1068
- msgstr ""
1069
-
1070
1049
  msgid "Can only remove content from within the Default Content View"
1071
1050
  msgstr "기본값 컨테츠 뷰에 있는 컨텐츠만 삭제할 수 있습니다 "
1072
1051
 
1073
- msgid "Can only upload to Yum Repositories."
1074
- msgstr ""
1075
-
1076
1052
  msgid "Can't update the '%s' environment"
1077
1053
  msgstr "'%s' 환경을 업데이트할 수 없음 "
1078
1054
 
@@ -1130,9 +1106,15 @@ msgstr "복합적인 컨텐츠 뷰에 기본 컨텐츠 뷰를 추가할 수 없
1130
1106
  msgid "Cannot add generated content view versions to composite content view"
1131
1107
  msgstr ""
1132
1108
 
1109
+ msgid "Cannot add product %s because it is disabled."
1110
+ msgstr ""
1111
+
1133
1112
  msgid "Cannot add repositories to a composite content view"
1134
1113
  msgstr "복합적인 컨텐츠 뷰에 리포지터리를 추가할 수 없습니다 "
1135
1114
 
1115
+ msgid "Cannot associate a Red Hat provider with a custom product"
1116
+ msgstr ""
1117
+
1136
1118
  msgid "Cannot associate a component to a non composite content view"
1137
1119
  msgstr ""
1138
1120
 
@@ -1184,7 +1166,10 @@ msgstr ""
1184
1166
  msgid "Cannot import a custom subscription from a redhat product."
1185
1167
  msgstr ""
1186
1168
 
1187
- msgid "Cannot pass content units without content unit type"
1169
+ msgid "Cannot incrementally export from a filtered and a non-filtered content view version. The exported content view version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}.'. Please do a full export."
1170
+ msgstr ""
1171
+
1172
+ msgid "Cannot incrementally export from a incrementally exported version and a regular version or vice-versa. The exported Content View Version '%{content_view} %{current}' cannot be incrementally exported from version '%{from}.' Please do a full export."
1188
1173
  msgstr ""
1189
1174
 
1190
1175
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1256,6 +1241,9 @@ msgstr ""
1256
1241
  msgid "Change host content source"
1257
1242
  msgstr ""
1258
1243
 
1244
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1245
+ msgstr ""
1246
+
1259
1247
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1260
1248
  msgstr ""
1261
1249
 
@@ -1298,6 +1286,9 @@ msgstr ""
1298
1286
  msgid "Click here to go to the tasks page for the task."
1299
1287
  msgstr ""
1300
1288
 
1289
+ msgid "Click to see repositories available to add."
1290
+ msgstr ""
1291
+
1301
1292
  msgid "Click {update} below to save changes."
1302
1293
  msgstr ""
1303
1294
 
@@ -1577,6 +1568,9 @@ msgstr ""
1577
1568
  msgid "Content view details"
1578
1569
  msgstr ""
1579
1570
 
1571
+ msgid "Content view does not need a publish since there are no audited changes since the last publish. Pass check_needs_publish parameter as false if you don't want to check if content view needs a publish."
1572
+ msgstr ""
1573
+
1580
1574
  msgid "Content view environments and activation key must all belong to the same organization"
1581
1575
  msgstr ""
1582
1576
 
@@ -1796,9 +1790,6 @@ msgstr ""
1796
1790
  msgid "Create Import History"
1797
1791
  msgstr ""
1798
1792
 
1799
- msgid "Create Package Group"
1800
- msgstr ""
1801
-
1802
1793
  msgid "Create Repositories"
1803
1794
  msgstr ""
1804
1795
 
@@ -1823,9 +1814,6 @@ msgstr "필터 규칙을 생성합니다. 포함된 매개 변수는 필터 유
1823
1814
  msgid "Create a host collection"
1824
1815
  msgstr "호스트 컬렉션 생성 "
1825
1816
 
1826
- msgid "Create a package group"
1827
- msgstr ""
1828
-
1829
1817
  msgid "Create a product"
1830
1818
  msgstr "제품 생성 "
1831
1819
 
@@ -1859,6 +1847,9 @@ msgstr ""
1859
1847
  msgid "Create host collection"
1860
1848
  msgstr ""
1861
1849
 
1850
+ msgid "Create new activation key"
1851
+ msgstr ""
1852
+
1862
1853
  msgid "Create organization"
1863
1854
  msgstr "조직 생성 "
1864
1855
 
@@ -1991,6 +1982,12 @@ msgstr ""
1991
1982
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1992
1983
  msgstr ""
1993
1984
 
1985
+ msgid "Default export format"
1986
+ msgstr ""
1987
+
1988
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1989
+ msgstr ""
1990
+
1994
1991
  msgid "Default finish template for new Operating Systems created from synced content"
1995
1992
  msgstr ""
1996
1993
 
@@ -2066,9 +2063,6 @@ msgstr "라이프사이클 환경 삭제 "
2066
2063
  msgid "Delete Manifest"
2067
2064
  msgstr "매니페스트 삭제 "
2068
2065
 
2069
- msgid "Delete Package Group"
2070
- msgstr ""
2071
-
2072
2066
  msgid "Delete Product"
2073
2067
  msgstr "제품 삭제 "
2074
2068
 
@@ -2084,9 +2078,6 @@ msgstr "컨텐츠 뷰 삭제 "
2084
2078
  msgid "Delete a filter rule"
2085
2079
  msgstr "필터 규칙 삭제 "
2086
2080
 
2087
- msgid "Delete a package group"
2088
- msgstr ""
2089
-
2090
2081
  msgid "Delete all subscriptions attached to activation keys."
2091
2082
  msgstr ""
2092
2083
 
@@ -2450,6 +2441,12 @@ msgstr "에라타 설치 "
2450
2441
  msgid "Errata Install scheduled by %s"
2451
2442
  msgstr "%s에 의해 스케줄된 에라타 설치 "
2452
2443
 
2444
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2445
+ msgstr ""
2446
+
2447
+ msgid "Errata and package information will be updated immediately."
2448
+ msgstr ""
2449
+
2453
2450
  msgid "Errata id of the erratum (RHSA-2012:108)"
2454
2451
  msgstr "에라타의 에라타 ID (RHSA-2012:108)"
2455
2452
 
@@ -2552,9 +2549,7 @@ msgstr ""
2552
2549
  msgid "Export as CSV"
2553
2550
  msgstr ""
2554
2551
 
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."
2552
+ msgid "Export formats.Choose syncable if the exported content needs to be in a yum format. This option is only available for %{syncable_repos} repositories. Choose importable if the importing server uses the same version and exported content needs to be one of %{importable_repos} repositories."
2558
2553
  msgstr ""
2559
2554
 
2560
2555
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2578,10 +2573,6 @@ msgstr ""
2578
2573
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2579
2574
  msgstr ""
2580
2575
 
2581
- msgid "Failed to download %s package."
2582
- msgid_plural "Failed to download %s packages."
2583
- msgstr[0] "%s 패키지 다운로드에 실패했습니다 "
2584
-
2585
2576
  msgid "Failed to find %{content} with id '%{id}'."
2586
2577
  msgstr "id '%{id}'인 %{content} 검색에 실패했습니다. "
2587
2578
 
@@ -2702,7 +2693,10 @@ msgstr "필터 "
2702
2693
  msgid "Filters deleted"
2703
2694
  msgstr ""
2704
2695
 
2705
- msgid "Filters will appear here when the filter is created."
2696
+ msgid "Filters were applied to this version."
2697
+ msgstr ""
2698
+
2699
+ msgid "Filters will be applied to this content view version."
2706
2700
  msgstr ""
2707
2701
 
2708
2702
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2717,9 +2711,6 @@ msgstr ""
2717
2711
  msgid "Finished"
2718
2712
  msgstr "완료"
2719
2713
 
2720
- msgid "For pages that support it, automatically perform search while typing in search input."
2721
- msgstr ""
2722
-
2723
2714
  msgid "Force"
2724
2715
  msgstr ""
2725
2716
 
@@ -2731,6 +2722,9 @@ msgstr ""
2731
2722
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2732
2723
  msgstr ""
2733
2724
 
2725
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2726
+ msgstr ""
2727
+
2734
2728
  msgid "Force delete the repository by removing it from all content view versions"
2735
2729
  msgstr ""
2736
2730
 
@@ -2773,6 +2767,9 @@ msgstr ""
2773
2767
  msgid "Generate and Download"
2774
2768
  msgstr "생성 및 다운로드 "
2775
2769
 
2770
+ msgid "Generate errata status from directly-installable content"
2771
+ msgstr ""
2772
+
2776
2773
  msgid "Generate host applicability"
2777
2774
  msgstr ""
2778
2775
 
@@ -2836,9 +2833,6 @@ msgstr ""
2836
2833
  msgid "Greater than"
2837
2834
  msgstr ""
2838
2835
 
2839
- msgid "Group %{id} already created."
2840
- msgstr "%{id} 그룹이 이미 생성되었습니다."
2841
-
2842
2836
  msgid "Guests of"
2843
2837
  msgstr "게스트 "
2844
2838
 
@@ -2878,6 +2872,9 @@ msgstr "호스트 "
2878
2872
  msgid "Host %s has not been registered with subscription-manager."
2879
2873
  msgstr "%s 호스트가 subscription-manager에 등록되지 않았습니다."
2880
2874
 
2875
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2876
+ msgstr ""
2877
+
2881
2878
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2882
2879
  msgstr ""
2883
2880
 
@@ -3145,9 +3142,6 @@ msgstr ""
3145
3142
  msgid "Ids of smart proxies to associate"
3146
3143
  msgstr ""
3147
3144
 
3148
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3149
- msgstr ""
3150
-
3151
3145
  msgid "If SSL should be verified for the upstream URL"
3152
3146
  msgstr ""
3153
3147
 
@@ -3175,13 +3169,16 @@ msgstr ""
3175
3169
  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
3170
  msgstr ""
3177
3171
 
3172
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3173
+ msgstr ""
3174
+
3178
3175
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3179
3176
  msgstr ""
3180
3177
 
3181
3178
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3182
3179
  msgstr ""
3183
3180
 
3184
- msgid "If true, return custom repository sets along with redhat repos"
3181
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3185
3182
  msgstr ""
3186
3183
 
3187
3184
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3214,6 +3211,9 @@ msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
3214
3211
  msgid "Ignored hosts"
3215
3212
  msgstr ""
3216
3213
 
3214
+ msgid "Image"
3215
+ msgstr ""
3216
+
3217
3217
  msgid "Immediate"
3218
3218
  msgstr "즉시"
3219
3219
 
@@ -3427,10 +3427,7 @@ msgstr ""
3427
3427
  msgid "Installable"
3428
3428
  msgstr "설치 가능 "
3429
3429
 
3430
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3431
- msgstr ""
3432
-
3433
- msgid "Installable errata from content view"
3430
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3434
3431
  msgstr ""
3435
3432
 
3436
3433
  msgid "Installable updates"
@@ -3571,7 +3568,7 @@ msgstr "발행됨 "
3571
3568
  msgid "Issued from"
3572
3569
  msgstr ""
3573
3570
 
3574
- msgid "Items will appear here when a filter rule is added."
3571
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3575
3572
  msgstr ""
3576
3573
 
3577
3574
  msgid "Job '${description}' completed"
@@ -3739,6 +3736,9 @@ msgstr ""
3739
3736
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3740
3737
  msgstr ""
3741
3738
 
3739
+ msgid "Limit content to Red Hat / custom"
3740
+ msgstr ""
3741
+
3742
3742
  msgid "Limit content to enabled / disabled / overridden"
3743
3743
  msgstr ""
3744
3744
 
@@ -4156,21 +4156,24 @@ msgstr ""
4156
4156
  msgid "Multi-entitlement"
4157
4157
  msgstr "멀티 인타이틀먼트 "
4158
4158
 
4159
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4160
- msgstr ""
4161
-
4162
4159
  msgid "N/A"
4163
4160
  msgstr "해당 없음 "
4164
4161
 
4165
4162
  msgid "NA"
4166
4163
  msgstr "해당 없음 "
4167
4164
 
4165
+ msgid "NOTE: Content view version '%{content_view} %{current}' does not have any exportable repositories. At least one repository with any of the following types is required to be able to export: '%{exportable_types}'."
4166
+ msgstr ""
4167
+
4168
4168
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4169
4169
  msgstr ""
4170
4170
 
4171
4171
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4172
4172
  msgstr ""
4173
4173
 
4174
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4175
+ msgstr ""
4176
+
4174
4177
  msgid ""
4175
4178
  "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"
4176
4179
  " %{repos}"
@@ -4246,12 +4249,6 @@ msgstr "동기화하지 않음 "
4246
4249
  msgid "New Errata"
4247
4250
  msgstr "새 에라타 "
4248
4251
 
4249
- msgid "New Files: %s"
4250
- msgstr ""
4251
-
4252
- msgid "New blobs: %{count}."
4253
- msgstr "새로운 BLOB: %{count}개."
4254
-
4255
4252
  msgid "New content view name"
4256
4253
  msgstr "새 컨텐츠 뷰 이름 "
4257
4254
 
@@ -4264,15 +4261,15 @@ msgstr "새 이름은 빈 칸으로 비워둘 수 없습니다"
4264
4261
  msgid "New name for the content view"
4265
4262
  msgstr "새 컨텐츠 뷰 이름 "
4266
4263
 
4267
- msgid "New packages: %{count} (%{size})."
4268
- msgstr "새 패키지: %{count} (%{size})."
4269
-
4270
4264
  msgid "New version is available: Version ${latestVersion}"
4271
4265
  msgstr ""
4272
4266
 
4273
4267
  msgid "Newly published"
4274
4268
  msgstr ""
4275
4269
 
4270
+ msgid "Newly published version will be the same as the previous version."
4271
+ msgstr ""
4272
+
4276
4273
  msgid "No"
4277
4274
  msgstr "아니오 "
4278
4275
 
@@ -4324,6 +4321,12 @@ msgstr ""
4324
4321
  msgid "No artifacts to show"
4325
4322
  msgstr ""
4326
4323
 
4324
+ msgid "No available component content view updates"
4325
+ msgstr ""
4326
+
4327
+ msgid "No available repository or filter updates"
4328
+ msgstr ""
4329
+
4327
4330
  msgid "No content"
4328
4331
  msgstr ""
4329
4332
 
@@ -4348,7 +4351,10 @@ msgstr ""
4348
4351
  msgid "No content views available for the selected environment"
4349
4352
  msgstr ""
4350
4353
 
4351
- msgid "No content views belong to ${label}"
4354
+ msgid "No content views to add yet"
4355
+ msgstr ""
4356
+
4357
+ msgid "No content views yet"
4352
4358
  msgstr ""
4353
4359
 
4354
4360
  msgid "No content_view_version_ids provided"
@@ -4369,10 +4375,13 @@ msgstr ""
4369
4375
  msgid "No environments"
4370
4376
  msgstr ""
4371
4377
 
4372
- msgid "No errata available for this content view."
4378
+ msgid "No errata filter rules yet"
4373
4379
  msgstr ""
4374
4380
 
4375
- msgid "No errata available to add to this filter."
4381
+ msgid "No errata matching given search query"
4382
+ msgstr ""
4383
+
4384
+ msgid "No errata to add yet"
4376
4385
  msgstr ""
4377
4386
 
4378
4387
  msgid "No errors"
@@ -4384,6 +4393,12 @@ msgstr ""
4384
4393
  msgid "No file uploaded"
4385
4394
  msgstr "업로드된 파일이 없음 "
4386
4395
 
4396
+ msgid "No filters yet"
4397
+ msgstr ""
4398
+
4399
+ msgid "No history yet"
4400
+ msgstr ""
4401
+
4387
4402
  msgid "No host collections"
4388
4403
  msgstr ""
4389
4404
 
@@ -4399,6 +4414,9 @@ msgstr ""
4399
4414
  msgid "No hosts have been specified."
4400
4415
  msgstr "호스트를 지정하지 않았습니다."
4401
4416
 
4417
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4418
+ msgstr ""
4419
+
4402
4420
  msgid "No hosts registered with subscription-manager found in selection."
4403
4421
  msgstr ""
4404
4422
 
@@ -4468,20 +4486,23 @@ msgstr ""
4468
4486
  msgid "No matching repository sets found"
4469
4487
  msgstr ""
4470
4488
 
4471
- msgid "No matching rules found."
4472
- msgstr ""
4473
-
4474
4489
  msgid "No matching traces found"
4475
4490
  msgstr ""
4476
4491
 
4477
4492
  msgid "No matching version found"
4478
4493
  msgstr ""
4479
4494
 
4495
+ msgid "No module stream filter rules yet"
4496
+ msgstr ""
4497
+
4498
+ msgid "No module streams to add yet."
4499
+ msgstr ""
4500
+
4480
4501
  msgid "No new packages installed"
4481
4502
  msgstr "설치된 새 패키지가 없음 "
4482
4503
 
4483
- msgid "No new packages."
4484
- msgstr "새 패키지가 없습니다. "
4504
+ msgid "No package groups yet"
4505
+ msgstr ""
4485
4506
 
4486
4507
  msgid "No packages"
4487
4508
  msgstr ""
@@ -4489,7 +4510,7 @@ msgstr ""
4489
4510
  msgid "No packages available to install"
4490
4511
  msgstr ""
4491
4512
 
4492
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4513
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4493
4514
  msgstr ""
4494
4515
 
4495
4516
  msgid "No packages removed"
@@ -4531,6 +4552,12 @@ msgstr "최근에 동기화된 제품 없음"
4531
4552
  msgid "No recurring logic tied to the sync plan."
4532
4553
  msgstr ""
4533
4554
 
4555
+ msgid "No repositories added yet"
4556
+ msgstr ""
4557
+
4558
+ msgid "No repositories available to add"
4559
+ msgstr ""
4560
+
4534
4561
  msgid "No repositories available."
4535
4562
  msgstr ""
4536
4563
 
@@ -4549,7 +4576,7 @@ msgstr ""
4549
4576
  msgid "No repository sets to show."
4550
4577
  msgstr ""
4551
4578
 
4552
- msgid "No rules have been added to this filter."
4579
+ msgid "No rules yet"
4553
4580
  msgstr ""
4554
4581
 
4555
4582
  msgid "No services defined, is this class extended?"
@@ -4567,6 +4594,9 @@ msgstr ""
4567
4594
  msgid "No uploads param specified. An array of uploads to import is required."
4568
4595
  msgstr ""
4569
4596
 
4597
+ msgid "No versions yet"
4598
+ msgstr ""
4599
+
4570
4600
  msgid "Non-security errata applicable"
4571
4601
  msgstr "적용 가능한 비보안 에라타"
4572
4602
 
@@ -4672,9 +4702,6 @@ msgstr ""
4672
4702
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4673
4703
  msgstr ""
4674
4704
 
4675
- msgid "One or more packages failed to sync properly."
4676
- msgstr "하나 이상의 패키지가 올바르게 동기화되지 않았습니다. "
4677
-
4678
4705
  msgid "One or more processes require restarting"
4679
4706
  msgstr ""
4680
4707
 
@@ -4957,9 +4984,6 @@ msgstr ""
4957
4984
  msgid "Paused"
4958
4985
  msgstr "일시정지 "
4959
4986
 
4960
- msgid "Pending"
4961
- msgstr "보류 중 "
4962
-
4963
4987
  msgid "Perform a module stream action via Katello interface"
4964
4988
  msgstr ""
4965
4989
 
@@ -4993,10 +5017,10 @@ msgstr "물리적 "
4993
5017
  msgid "Plan numeric identifier"
4994
5018
  msgstr "숫자로된 ID 계획 "
4995
5019
 
4996
- msgid "Please add some content views."
5020
+ msgid "Please add some repositories."
4997
5021
  msgstr ""
4998
5022
 
4999
- msgid "Please add some repositories."
5023
+ msgid "Please create some content views."
5000
5024
  msgstr ""
5001
5025
 
5002
5026
  msgid "Please enter a positive number above zero"
@@ -5074,12 +5098,6 @@ msgstr ""
5074
5098
  msgid "Problem searching traces"
5075
5099
  msgstr ""
5076
5100
 
5077
- msgid "Processing metadata"
5078
- msgstr "메타데이터 처리 중 "
5079
-
5080
- msgid "Processing metadata."
5081
- msgstr "메타데이터를 처리하고 있습니다. "
5082
-
5083
5101
  msgid "Product"
5084
5102
  msgstr "제품"
5085
5103
 
@@ -5092,9 +5110,6 @@ msgstr "제품 생성"
5092
5110
  msgid "Product ID"
5093
5111
  msgstr "제품 ID"
5094
5112
 
5095
- msgid "Product Name"
5096
- msgstr "제품 이름 "
5097
-
5098
5113
  msgid "Product and Repositories"
5099
5114
  msgstr "제품 및 리포지터리 "
5100
5115
 
@@ -5382,6 +5397,9 @@ msgstr ""
5382
5397
  msgid "Recommended Repositories"
5383
5398
  msgstr ""
5384
5399
 
5400
+ msgid "Red Hat"
5401
+ msgstr ""
5402
+
5385
5403
  msgid "Red Hat CDN"
5386
5404
  msgstr ""
5387
5405
 
@@ -5637,6 +5655,9 @@ msgstr ""
5637
5655
  msgid "Repo Type"
5638
5656
  msgstr "리포지터리 유형 "
5639
5657
 
5658
+ msgid "Report"
5659
+ msgstr ""
5660
+
5640
5661
  msgid "Repositories"
5641
5662
  msgstr "리포지터리 "
5642
5663
 
@@ -5679,9 +5700,6 @@ msgstr "리포지터리 ID"
5679
5700
  msgid "Repository label '%s' is not associated with content view."
5680
5701
  msgstr ""
5681
5702
 
5682
- msgid "Repository metadata publish"
5683
- msgstr "리포지터리 메타데이터 공개 "
5684
-
5685
5703
  msgid "Repository not found"
5686
5704
  msgstr "리포지터리를 찾을 수 없음 "
5687
5705
 
@@ -5718,6 +5736,12 @@ msgstr ""
5718
5736
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5719
5737
  msgstr ""
5720
5738
 
5739
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5740
+ msgstr ""
5741
+
5742
+ msgid "Repository type"
5743
+ msgstr ""
5744
+
5721
5745
  msgid "Republish Repositories of %{name} %{version}"
5722
5746
  msgstr ""
5723
5747
 
@@ -6015,6 +6039,9 @@ msgstr ""
6015
6039
  msgid "Select a client key"
6016
6040
  msgstr ""
6017
6041
 
6042
+ msgid "Select a content source first"
6043
+ msgstr ""
6044
+
6018
6045
  msgid "Select a content view"
6019
6046
  msgstr ""
6020
6047
 
@@ -6030,6 +6057,9 @@ msgstr ""
6030
6057
  msgid "Select a provider to install katello-host-tools-tracer"
6031
6058
  msgstr ""
6032
6059
 
6060
+ msgid "Select a source"
6061
+ msgstr ""
6062
+
6033
6063
  msgid "Select add-ons"
6034
6064
  msgstr ""
6035
6065
 
@@ -6045,7 +6075,7 @@ msgstr "조직 선택 "
6045
6075
  msgid "Select an environment"
6046
6076
  msgstr ""
6047
6077
 
6048
- msgid "Select an environment above"
6078
+ msgid "Select an environment first"
6049
6079
  msgstr ""
6050
6080
 
6051
6081
  msgid "Select an option"
@@ -6210,6 +6240,9 @@ msgstr ""
6210
6240
  msgid "Show all"
6211
6241
  msgstr ""
6212
6242
 
6243
+ msgid "Show all repository sets"
6244
+ msgstr ""
6245
+
6213
6246
  msgid "Show an activation key"
6214
6247
  msgstr "활성 키 표시 "
6215
6248
 
@@ -6231,6 +6264,9 @@ msgstr "필터 규칙 정보 표시 "
6231
6264
  msgid "Show full description"
6232
6265
  msgstr ""
6233
6266
 
6267
+ msgid "Show hosts associated to an activation key"
6268
+ msgstr ""
6269
+
6234
6270
  msgid "Show organization"
6235
6271
  msgstr "조직 표시 "
6236
6272
 
@@ -6240,12 +6276,18 @@ msgstr "활성키에 사용 가능한 릴리즈 버전 표시 "
6240
6276
  msgid "Show releases available for the content host"
6241
6277
  msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
6242
6278
 
6279
+ msgid "Show repositories"
6280
+ msgstr ""
6281
+
6243
6282
  msgid "Show repositories enabled on the host that are known to Katello"
6244
6283
  msgstr ""
6245
6284
 
6246
6285
  msgid "Show the available repository types"
6247
6286
  msgstr "사용 가능한 리포지터리 유형 표시"
6248
6287
 
6288
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6289
+ msgstr ""
6290
+
6249
6291
  msgid "Shows status of Katello system and it's subcomponents"
6250
6292
  msgstr ""
6251
6293
 
@@ -6303,6 +6345,12 @@ msgstr ""
6303
6345
  msgid "Solve dependencies"
6304
6346
  msgstr ""
6305
6347
 
6348
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6349
+ msgstr ""
6350
+
6351
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6352
+ msgstr ""
6353
+
6306
6354
  msgid "Some hosts are not registered as content hosts and will be ignored."
6307
6355
  msgstr ""
6308
6356
 
@@ -6747,9 +6795,6 @@ msgstr "동기화 "
6747
6795
  msgid "Synchronize Now"
6748
6796
  msgstr "지금 동기화 "
6749
6797
 
6750
- msgid "Synchronize capsule content"
6751
- msgstr "capsule 컨텐츠 동기화"
6752
-
6753
6798
  msgid "Synchronize repository"
6754
6799
  msgstr "리포지터리 동기화 "
6755
6800
 
@@ -6783,7 +6828,7 @@ msgstr ""
6783
6828
  msgid "System purpose attributes updated"
6784
6829
  msgstr ""
6785
6830
 
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."
6831
+ 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
6832
  msgstr ""
6788
6833
 
6789
6834
  msgid "Tag name"
@@ -6861,9 +6906,6 @@ msgstr "에라타 필터 규칙 시작 날짜가 잘못된 형식 또는 유형
6861
6906
  msgid "The erratum type must be an array. Invalid value provided"
6862
6907
  msgstr "에라타 유형은 어레이여야 합니다. 잘못된 값이 지정되었습니다 "
6863
6908
 
6864
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6865
- msgstr ""
6866
-
6867
6909
  msgid "The field to sort the data by. Defaults to the created date."
6868
6910
  msgstr ""
6869
6911
 
@@ -7171,6 +7213,9 @@ msgstr ""
7171
7213
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7172
7214
  msgstr ""
7173
7215
 
7216
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7217
+ msgstr ""
7218
+
7174
7219
  msgid "Timeout when refreshing a manifest (in seconds)"
7175
7220
  msgstr ""
7176
7221
 
@@ -7180,9 +7225,21 @@ msgstr ""
7180
7225
  msgid "Title"
7181
7226
  msgstr "제목"
7182
7227
 
7228
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7229
+ msgstr ""
7230
+
7231
+ msgid "To enable them, add the environment to the host's content source, or "
7232
+ msgstr ""
7233
+
7234
+ msgid "To get started, add a filter rule to this filter"
7235
+ msgstr ""
7236
+
7183
7237
  msgid "To get started, add this host to a host collection."
7184
7238
  msgstr ""
7185
7239
 
7240
+ msgid "To include or exclude specific content from the content view, create a filter. Without filters, the content view includes everything from the added repositories."
7241
+ msgstr ""
7242
+
7186
7243
  msgid "To update the selected host configuration, update hosts manually in the next section."
7187
7244
  msgstr ""
7188
7245
 
@@ -7369,9 +7426,6 @@ msgstr ""
7369
7426
  msgid "Unapplied Errata"
7370
7427
  msgstr "적용되지 않은 에라타 "
7371
7428
 
7372
- msgid "Unassociate units in repository"
7373
- msgstr ""
7374
-
7375
7429
  msgid "Unattach a subscription"
7376
7430
  msgstr "서브스크립션 할당 해제 "
7377
7431
 
@@ -7558,6 +7612,9 @@ msgstr ""
7558
7612
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7559
7613
  msgstr ""
7560
7614
 
7615
+ msgid "Update the host immediately via remote execution"
7616
+ msgstr ""
7617
+
7561
7618
  msgid "Update the information about enabled repositories"
7562
7619
  msgstr "활성화된 리포지터리에 대한 정보 업데이트 "
7563
7620
 
@@ -7585,6 +7642,12 @@ msgstr "제품 업데이트 "
7585
7642
  msgid "Updates all packages on the host(s)"
7586
7643
  msgstr ""
7587
7644
 
7645
+ msgid "Updates available: Component content view versions have been updated."
7646
+ msgstr ""
7647
+
7648
+ msgid "Updates available: Repositories and/or filters have changed."
7649
+ msgstr ""
7650
+
7588
7651
  msgid "Updating Package..."
7589
7652
  msgstr "패키지 업데이트 중..."
7590
7653
 
@@ -7804,6 +7867,9 @@ msgstr ""
7804
7867
  msgid "View %{view} has not been promoted to %{env}"
7805
7868
  msgstr "보기 %{view}가 %{env}에 승격되었습니다"
7806
7869
 
7870
+ msgid "View Filters"
7871
+ msgstr ""
7872
+
7807
7873
  msgid "View Subscription Usage"
7808
7874
  msgstr ""
7809
7875
 
@@ -7816,6 +7882,9 @@ msgstr ""
7816
7882
  msgid "View by"
7817
7883
  msgstr ""
7818
7884
 
7885
+ msgid "View documentation"
7886
+ msgstr ""
7887
+
7819
7888
  msgid "View matching content"
7820
7889
  msgstr ""
7821
7890
 
@@ -7861,6 +7930,9 @@ msgstr "'True'로 설정할 경우 생성 가능한 리포지터리 유형이
7861
7930
  msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
7862
7931
  msgstr ""
7863
7932
 
7933
+ msgid "Whether Simple Content Access should be enabled for the organization."
7934
+ msgstr ""
7935
+
7864
7936
  msgid "Whether or not the host collection may have unlimited hosts"
7865
7937
  msgstr "호스트 컬렉션에 호스트가 무제한 포함되는지 여부"
7866
7938
 
@@ -7873,6 +7945,9 @@ msgstr "일부 작업을 수행하기 전에 pulp 및 candlepin와 같은 백엔
7873
7945
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7874
7946
  msgstr ""
7875
7947
 
7948
+ msgid "Whether or not to return filters applied to the content view version"
7949
+ msgstr ""
7950
+
7876
7951
  msgid "Whether or not to show all results"
7877
7952
  msgstr "모든 결과를 표시할 지에 대한 여부 "
7878
7953
 
@@ -7918,31 +7993,19 @@ msgstr "조직의 parent_id를 설정할 수 없습니다. 이 기능은 비활
7918
7993
  msgid "You currently don't have any ${selectedContentType}."
7919
7994
  msgstr ""
7920
7995
 
7921
- msgid "You currently don't have any Content views."
7922
- msgstr ""
7923
-
7924
7996
  msgid "You currently don't have any alternate content sources."
7925
7997
  msgstr ""
7926
7998
 
7927
- msgid "You currently don't have any filters for this content view."
7928
- msgstr ""
7929
-
7930
- msgid "You currently don't have any history for this content view."
7999
+ msgid "You currently don't have any related content views."
7931
8000
  msgstr ""
7932
8001
 
7933
8002
  msgid "You currently don't have any repositories associated with this content."
7934
8003
  msgstr ""
7935
8004
 
7936
- msgid "You currently don't have any repositories to add to this content view."
7937
- msgstr ""
7938
-
7939
8005
  msgid "You currently don't have any repositories to add to this filter."
7940
8006
  msgstr ""
7941
8007
 
7942
- msgid "You currently don't have any versions for this content view."
7943
- msgstr ""
7944
-
7945
- msgid "You currently don\\'t have any related content views."
8008
+ msgid "You currently have no content views to display"
7946
8009
  msgstr ""
7947
8010
 
7948
8011
  msgid "You do not have permissions to delete %s"
@@ -7999,9 +8062,6 @@ msgstr ""
7999
8062
  msgid "Yum"
8000
8063
  msgstr ""
8001
8064
 
8002
- msgid "Yum Metadata: %s"
8003
- msgstr "Yum 메타데이터: %s"
8004
-
8005
8065
  msgid "a content unit"
8006
8066
  msgstr ""
8007
8067
 
@@ -8164,6 +8224,9 @@ msgstr "컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할
8164
8224
  msgid "cannot contain more than %s characters"
8165
8225
  msgstr "%s 자 이상을 포함시킬 수 없습니다 "
8166
8226
 
8227
+ msgid "change the host's content source."
8228
+ msgstr ""
8229
+
8167
8230
  msgid "checking %s task status"
8168
8231
  msgstr ""
8169
8232
 
@@ -8179,9 +8242,6 @@ msgstr ""
8179
8242
  msgid "composite content view numeric identifier"
8180
8243
  msgstr ""
8181
8244
 
8182
- msgid "conditional package names to include in the package group"
8183
- msgstr ""
8184
-
8185
8245
  msgid "content release version"
8186
8246
  msgstr "컨텐츠 릴리즈 버전 "
8187
8247
 
@@ -8236,6 +8296,9 @@ msgstr "삭제할 컨텐츠 뷰 버전 ID "
8236
8296
  msgid "content view versions to compare"
8237
8297
  msgstr "비교할 컨텐츠 뷰 버전 "
8238
8298
 
8299
+ msgid "create a custom product"
8300
+ msgstr ""
8301
+
8239
8302
  msgid "create a filter for a content view"
8240
8303
  msgstr "컨텐츠 뷰의 필터 생성"
8241
8304
 
@@ -8245,9 +8308,6 @@ msgstr ""
8245
8308
  msgid "deb_ids is not an array"
8246
8309
  msgstr ""
8247
8310
 
8248
- msgid "default package names to include in the package group"
8249
- msgstr ""
8250
-
8251
8311
  msgid "delete a filter"
8252
8312
  msgstr "필터 삭제"
8253
8313
 
@@ -8479,9 +8539,6 @@ msgstr "리포지터리 ID 목록 "
8479
8539
  msgid "list of rpm filename strings to include in published version"
8480
8540
  msgstr ""
8481
8541
 
8482
- msgid "mandatory package names to include in the package group"
8483
- msgstr ""
8484
-
8485
8542
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8486
8543
  msgstr "무제한 호스트 컬렉션이 아닌 경우 max_hosts에 값을 지정해야 합니다."
8487
8544
 
@@ -8509,6 +8566,9 @@ msgstr "다음 중 하나이어야 합니다: %s"
8509
8566
  msgid "must be one of: %s"
8510
8567
  msgstr ""
8511
8568
 
8569
+ msgid "must be true or false"
8570
+ msgstr ""
8571
+
8512
8572
  msgid "must be unique within one organization"
8513
8573
  msgstr "하나의 조직 내에서 고유한 것이어야 함 "
8514
8574
 
@@ -8536,9 +8596,6 @@ msgstr "선행 또는 후행 공백을 포함할 수 없습니다 "
8536
8596
  msgid "name"
8537
8597
  msgstr "이름 "
8538
8598
 
8539
- msgid "name not defined."
8540
- msgstr ""
8541
-
8542
8599
  msgid "name of organization"
8543
8600
  msgstr "조직 이름 "
8544
8601
 
@@ -8584,21 +8641,12 @@ msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합
8584
8641
  msgid "only show the repositories readable by this user with this username"
8585
8642
  msgstr ""
8586
8643
 
8587
- msgid "optional package names to include in the package group"
8588
- msgstr ""
8589
-
8590
8644
  msgid "organization ID"
8591
8645
  msgstr "조직 ID"
8592
8646
 
8593
8647
  msgid "organization identifier"
8594
8648
  msgstr "조직 ID"
8595
8649
 
8596
- msgid "package group description. Defaults to params[:name]"
8597
- msgstr ""
8598
-
8599
- msgid "package group name"
8600
- msgstr ""
8601
-
8602
8650
  msgid "package group: uuid"
8603
8651
  msgstr ""
8604
8652
 
@@ -8677,12 +8725,6 @@ msgstr "리포지터리 Id "
8677
8725
  msgid "repository source url"
8678
8726
  msgstr "리포지터리 소스 Url"
8679
8727
 
8680
- msgid "repository_id"
8681
- msgstr ""
8682
-
8683
- msgid "repository_id not defined."
8684
- msgstr ""
8685
-
8686
8728
  msgid "root-node of collection contained in responses (default: 'results')"
8687
8729
  msgstr "응답에 포함된 모음의 root 노드 (기본값: 'results')"
8688
8730
 
@@ -8704,9 +8746,6 @@ msgstr ""
8704
8746
  msgid "service level"
8705
8747
  msgstr "서비스 레벨 "
8706
8748
 
8707
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8708
- msgstr ""
8709
-
8710
8749
  msgid "set true if you want to see only library environments"
8711
8750
  msgstr "라이브러리 환경만 확인하려면 true로 설정"
8712
8751
 
@@ -8764,9 +8803,6 @@ msgstr ""
8764
8803
  msgid "true if this repository can be published via HTTP"
8765
8804
  msgstr "리포지터리가 HTTP를 통해 공개할 수 있는 경우 true"
8766
8805
 
8767
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8768
- msgstr ""
8769
-
8770
8806
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8771
8807
  msgstr ""
8772
8808
 
@@ -8812,15 +8848,9 @@ msgstr ""
8812
8848
  msgid "waiting for %s to finish the task"
8813
8849
  msgstr ""
8814
8850
 
8815
- msgid "waiting for Pulp to finish the task"
8816
- msgstr "Pulp가 태스크를 끝내기를 기다리는 중"
8817
-
8818
8851
  msgid "waiting for Pulp to finish the task %s"
8819
8852
  msgstr ""
8820
8853
 
8821
- msgid "waiting for Pulp to start the task"
8822
- msgstr "Pulp가 태스크를 시작하기를 기다리는 중"
8823
-
8824
8854
  msgid "waiting for Pulp to start the task %s"
8825
8855
  msgstr ""
8826
8856
 
@@ -8842,6 +8872,9 @@ msgstr "예"
8842
8872
  msgid "{0} items selected"
8843
8873
  msgstr ""
8844
8874
 
8875
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8876
+ msgstr ""
8877
+
8845
8878
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8846
8879
  msgstr ""
8847
8880