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/en/katello.po CHANGED
@@ -143,9 +143,6 @@ msgstr ""
143
143
  msgid "%s is unreachable. %s"
144
144
  msgstr ""
145
145
 
146
- msgid "%s must be an array."
147
- msgstr ""
148
-
149
146
  msgid "%{errata} (%{total} other errata)"
150
147
  msgstr ""
151
148
 
@@ -380,15 +377,12 @@ msgstr ""
380
377
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
381
378
  msgstr ""
382
379
 
383
- msgid "A Pool and its Subscription cannot belong to different organizations"
380
+ msgid "A Pool and its Subscription cannot belong to different organizations."
384
381
  msgstr ""
385
382
 
386
383
  msgid "A backend service [ %s ] is unreachable"
387
384
  msgstr ""
388
385
 
389
- msgid "A content view can be added by using the \"Create content view\" button below."
390
- msgstr ""
391
-
392
386
  msgid "A content_type must be provided."
393
387
  msgstr ""
394
388
 
@@ -455,9 +449,6 @@ msgstr ""
455
449
  msgid "Action unauthorized to be performed in this organization."
456
450
  msgstr ""
457
451
 
458
- msgid "Action unauthorized to be performed on selected hosts."
459
- msgstr ""
460
-
461
452
  msgid "Action with sub plans"
462
453
  msgstr ""
463
454
 
@@ -509,6 +500,9 @@ msgstr ""
509
500
  msgid "Add Subscriptions"
510
501
  msgstr ""
511
502
 
503
+ msgid "Add Subscriptions using the Add Subscriptions button."
504
+ msgstr ""
505
+
512
506
  msgid "Add a subscription to a host"
513
507
  msgstr ""
514
508
 
@@ -518,6 +512,9 @@ msgstr ""
518
512
  msgid "Add components to the content view"
519
513
  msgstr ""
520
514
 
515
+ msgid "Add content"
516
+ msgstr ""
517
+
521
518
  msgid "Add content view"
522
519
  msgstr ""
523
520
 
@@ -560,12 +557,18 @@ msgstr ""
560
557
  msgid "Add repositories"
561
558
  msgstr ""
562
559
 
560
+ msgid "Add repositories with package groups to content view to select them here."
561
+ msgstr ""
562
+
563
563
  msgid "Add rule"
564
564
  msgstr ""
565
565
 
566
566
  msgid "Add source"
567
567
  msgstr ""
568
568
 
569
+ msgid "Add subscriptions"
570
+ msgstr ""
571
+
569
572
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
570
573
  msgstr ""
571
574
 
@@ -575,12 +578,6 @@ msgstr ""
575
578
  msgid "Add to a host collection"
576
579
  msgstr ""
577
580
 
578
- msgid "Add to this filter using the 'Add Deb rule' button."
579
- msgstr ""
580
-
581
- msgid "Add to this filter using the 'Add filter rule' button."
582
- msgstr ""
583
-
584
581
  msgid "Add-ons"
585
582
  msgstr ""
586
583
 
@@ -704,15 +701,12 @@ msgstr ""
704
701
  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."
705
702
  msgstr ""
706
703
 
707
- msgid "An alternate content source can be added by using the \"Add source\" button below."
704
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
708
705
  msgstr ""
709
706
 
710
707
  msgid "An environment is missing a prior"
711
708
  msgstr ""
712
709
 
713
- msgid "An error occurred during content removal. Could not find repository with id: %s"
714
- msgstr ""
715
-
716
710
  msgid ""
717
711
  "An error occurred during the sync \n"
718
712
  "%{error_message}"
@@ -908,12 +902,6 @@ msgstr ""
908
902
  msgid "Autopublish"
909
903
  msgstr ""
910
904
 
911
- msgid "Autosearch"
912
- msgstr ""
913
-
914
- msgid "Autosearch delay"
915
- msgstr ""
916
-
917
905
  msgid "Available"
918
906
  msgstr ""
919
907
 
@@ -1049,24 +1037,12 @@ msgstr ""
1049
1037
  msgid "Calculate Applicable Errata based on a particular Environment"
1050
1038
  msgstr ""
1051
1039
 
1052
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1053
- msgstr ""
1054
-
1055
1040
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1056
1041
  msgstr ""
1057
1042
 
1058
- msgid "Can not add product %s because it is disabled."
1059
- msgstr ""
1060
-
1061
- msgid "Can only destroy on Yum Repositories."
1062
- msgstr ""
1063
-
1064
1043
  msgid "Can only remove content from within the Default Content View"
1065
1044
  msgstr ""
1066
1045
 
1067
- msgid "Can only upload to Yum Repositories."
1068
- msgstr ""
1069
-
1070
1046
  msgid "Can't update the '%s' environment"
1071
1047
  msgstr ""
1072
1048
 
@@ -1124,9 +1100,15 @@ msgstr ""
1124
1100
  msgid "Cannot add generated content view versions to composite content view"
1125
1101
  msgstr ""
1126
1102
 
1103
+ msgid "Cannot add product %s because it is disabled."
1104
+ msgstr ""
1105
+
1127
1106
  msgid "Cannot add repositories to a composite content view"
1128
1107
  msgstr ""
1129
1108
 
1109
+ msgid "Cannot associate a Red Hat provider with a custom product"
1110
+ msgstr ""
1111
+
1130
1112
  msgid "Cannot associate a component to a non composite content view"
1131
1113
  msgstr ""
1132
1114
 
@@ -1178,7 +1160,10 @@ msgstr ""
1178
1160
  msgid "Cannot import a custom subscription from a redhat product."
1179
1161
  msgstr ""
1180
1162
 
1181
- msgid "Cannot pass content units without content unit type"
1163
+ 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."
1164
+ msgstr ""
1165
+
1166
+ 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."
1182
1167
  msgstr ""
1183
1168
 
1184
1169
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1250,6 +1235,9 @@ msgstr ""
1250
1235
  msgid "Change host content source"
1251
1236
  msgstr ""
1252
1237
 
1238
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1239
+ msgstr ""
1240
+
1253
1241
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1254
1242
  msgstr ""
1255
1243
 
@@ -1292,6 +1280,9 @@ msgstr ""
1292
1280
  msgid "Click here to go to the tasks page for the task."
1293
1281
  msgstr ""
1294
1282
 
1283
+ msgid "Click to see repositories available to add."
1284
+ msgstr ""
1285
+
1295
1286
  msgid "Click {update} below to save changes."
1296
1287
  msgstr ""
1297
1288
 
@@ -1571,6 +1562,9 @@ msgstr ""
1571
1562
  msgid "Content view details"
1572
1563
  msgstr ""
1573
1564
 
1565
+ 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."
1566
+ msgstr ""
1567
+
1574
1568
  msgid "Content view environments and activation key must all belong to the same organization"
1575
1569
  msgstr ""
1576
1570
 
@@ -1790,9 +1784,6 @@ msgstr ""
1790
1784
  msgid "Create Import History"
1791
1785
  msgstr ""
1792
1786
 
1793
- msgid "Create Package Group"
1794
- msgstr ""
1795
-
1796
1787
  msgid "Create Repositories"
1797
1788
  msgstr ""
1798
1789
 
@@ -1817,9 +1808,6 @@ msgstr ""
1817
1808
  msgid "Create a host collection"
1818
1809
  msgstr ""
1819
1810
 
1820
- msgid "Create a package group"
1821
- msgstr ""
1822
-
1823
1811
  msgid "Create a product"
1824
1812
  msgstr ""
1825
1813
 
@@ -1853,6 +1841,9 @@ msgstr ""
1853
1841
  msgid "Create host collection"
1854
1842
  msgstr ""
1855
1843
 
1844
+ msgid "Create new activation key"
1845
+ msgstr ""
1846
+
1856
1847
  msgid "Create organization"
1857
1848
  msgstr ""
1858
1849
 
@@ -1985,6 +1976,12 @@ msgstr ""
1985
1976
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1986
1977
  msgstr ""
1987
1978
 
1979
+ msgid "Default export format"
1980
+ msgstr ""
1981
+
1982
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1983
+ msgstr ""
1984
+
1988
1985
  msgid "Default finish template for new Operating Systems created from synced content"
1989
1986
  msgstr ""
1990
1987
 
@@ -2060,9 +2057,6 @@ msgstr ""
2060
2057
  msgid "Delete Manifest"
2061
2058
  msgstr ""
2062
2059
 
2063
- msgid "Delete Package Group"
2064
- msgstr ""
2065
-
2066
2060
  msgid "Delete Product"
2067
2061
  msgstr ""
2068
2062
 
@@ -2078,9 +2072,6 @@ msgstr ""
2078
2072
  msgid "Delete a filter rule"
2079
2073
  msgstr ""
2080
2074
 
2081
- msgid "Delete a package group"
2082
- msgstr ""
2083
-
2084
2075
  msgid "Delete all subscriptions attached to activation keys."
2085
2076
  msgstr ""
2086
2077
 
@@ -2444,6 +2435,12 @@ msgstr ""
2444
2435
  msgid "Errata Install scheduled by %s"
2445
2436
  msgstr ""
2446
2437
 
2438
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2439
+ msgstr ""
2440
+
2441
+ msgid "Errata and package information will be updated immediately."
2442
+ msgstr ""
2443
+
2447
2444
  msgid "Errata id of the erratum (RHSA-2012:108)"
2448
2445
  msgstr ""
2449
2446
 
@@ -2546,9 +2543,7 @@ msgstr ""
2546
2543
  msgid "Export as CSV"
2547
2544
  msgstr ""
2548
2545
 
2549
- msgid ""
2550
- "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"
2551
- " Defaults to importable."
2546
+ 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."
2552
2547
  msgstr ""
2553
2548
 
2554
2549
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2572,11 +2567,6 @@ msgstr ""
2572
2567
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2573
2568
  msgstr ""
2574
2569
 
2575
- msgid "Failed to download %s package."
2576
- msgid_plural "Failed to download %s packages."
2577
- msgstr[0] ""
2578
- msgstr[1] ""
2579
-
2580
2570
  msgid "Failed to find %{content} with id '%{id}'."
2581
2571
  msgstr ""
2582
2572
 
@@ -2697,7 +2687,10 @@ msgstr ""
2697
2687
  msgid "Filters deleted"
2698
2688
  msgstr ""
2699
2689
 
2700
- msgid "Filters will appear here when the filter is created."
2690
+ msgid "Filters were applied to this version."
2691
+ msgstr ""
2692
+
2693
+ msgid "Filters will be applied to this content view version."
2701
2694
  msgstr ""
2702
2695
 
2703
2696
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2712,9 +2705,6 @@ msgstr ""
2712
2705
  msgid "Finished"
2713
2706
  msgstr ""
2714
2707
 
2715
- msgid "For pages that support it, automatically perform search while typing in search input."
2716
- msgstr ""
2717
-
2718
2708
  msgid "Force"
2719
2709
  msgstr ""
2720
2710
 
@@ -2726,6 +2716,9 @@ msgstr ""
2726
2716
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2727
2717
  msgstr ""
2728
2718
 
2719
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2720
+ msgstr ""
2721
+
2729
2722
  msgid "Force delete the repository by removing it from all content view versions"
2730
2723
  msgstr ""
2731
2724
 
@@ -2768,6 +2761,9 @@ msgstr ""
2768
2761
  msgid "Generate and Download"
2769
2762
  msgstr ""
2770
2763
 
2764
+ msgid "Generate errata status from directly-installable content"
2765
+ msgstr ""
2766
+
2771
2767
  msgid "Generate host applicability"
2772
2768
  msgstr ""
2773
2769
 
@@ -2831,9 +2827,6 @@ msgstr ""
2831
2827
  msgid "Greater than"
2832
2828
  msgstr ""
2833
2829
 
2834
- msgid "Group %{id} already created."
2835
- msgstr ""
2836
-
2837
2830
  msgid "Guests of"
2838
2831
  msgstr ""
2839
2832
 
@@ -2873,6 +2866,9 @@ msgstr ""
2873
2866
  msgid "Host %s has not been registered with subscription-manager."
2874
2867
  msgstr ""
2875
2868
 
2869
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2870
+ msgstr ""
2871
+
2876
2872
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2877
2873
  msgstr ""
2878
2874
 
@@ -3140,9 +3136,6 @@ msgstr ""
3140
3136
  msgid "Ids of smart proxies to associate"
3141
3137
  msgstr ""
3142
3138
 
3143
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3144
- msgstr ""
3145
-
3146
3139
  msgid "If SSL should be verified for the upstream URL"
3147
3140
  msgstr ""
3148
3141
 
@@ -3170,13 +3163,16 @@ msgstr ""
3170
3163
  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/...'."
3171
3164
  msgstr ""
3172
3165
 
3166
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3167
+ msgstr ""
3168
+
3173
3169
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3174
3170
  msgstr ""
3175
3171
 
3176
3172
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3177
3173
  msgstr ""
3178
3174
 
3179
- msgid "If true, return custom repository sets along with redhat repos"
3175
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3180
3176
  msgstr ""
3181
3177
 
3182
3178
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3209,6 +3205,9 @@ msgstr ""
3209
3205
  msgid "Ignored hosts"
3210
3206
  msgstr ""
3211
3207
 
3208
+ msgid "Image"
3209
+ msgstr ""
3210
+
3212
3211
  msgid "Immediate"
3213
3212
  msgstr ""
3214
3213
 
@@ -3422,10 +3421,7 @@ msgstr ""
3422
3421
  msgid "Installable"
3423
3422
  msgstr ""
3424
3423
 
3425
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3426
- msgstr ""
3427
-
3428
- msgid "Installable errata from content view"
3424
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3429
3425
  msgstr ""
3430
3426
 
3431
3427
  msgid "Installable updates"
@@ -3566,7 +3562,7 @@ msgstr ""
3566
3562
  msgid "Issued from"
3567
3563
  msgstr ""
3568
3564
 
3569
- msgid "Items will appear here when a filter rule is added."
3565
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3570
3566
  msgstr ""
3571
3567
 
3572
3568
  msgid "Job '${description}' completed"
@@ -3734,6 +3730,9 @@ msgstr ""
3734
3730
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3735
3731
  msgstr ""
3736
3732
 
3733
+ msgid "Limit content to Red Hat / custom"
3734
+ msgstr ""
3735
+
3737
3736
  msgid "Limit content to enabled / disabled / overridden"
3738
3737
  msgstr ""
3739
3738
 
@@ -4151,21 +4150,24 @@ msgstr ""
4151
4150
  msgid "Multi-entitlement"
4152
4151
  msgstr ""
4153
4152
 
4154
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4155
- msgstr ""
4156
-
4157
4153
  msgid "N/A"
4158
4154
  msgstr ""
4159
4155
 
4160
4156
  msgid "NA"
4161
4157
  msgstr ""
4162
4158
 
4159
+ 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}'."
4160
+ msgstr ""
4161
+
4163
4162
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4164
4163
  msgstr ""
4165
4164
 
4166
4165
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4167
4166
  msgstr ""
4168
4167
 
4168
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4169
+ msgstr ""
4170
+
4169
4171
  msgid ""
4170
4172
  "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"
4171
4173
  " %{repos}"
@@ -4241,12 +4243,6 @@ msgstr ""
4241
4243
  msgid "New Errata"
4242
4244
  msgstr ""
4243
4245
 
4244
- msgid "New Files: %s"
4245
- msgstr ""
4246
-
4247
- msgid "New blobs: %{count}."
4248
- msgstr ""
4249
-
4250
4246
  msgid "New content view name"
4251
4247
  msgstr ""
4252
4248
 
@@ -4259,15 +4255,15 @@ msgstr ""
4259
4255
  msgid "New name for the content view"
4260
4256
  msgstr ""
4261
4257
 
4262
- msgid "New packages: %{count} (%{size})."
4263
- msgstr ""
4264
-
4265
4258
  msgid "New version is available: Version ${latestVersion}"
4266
4259
  msgstr ""
4267
4260
 
4268
4261
  msgid "Newly published"
4269
4262
  msgstr ""
4270
4263
 
4264
+ msgid "Newly published version will be the same as the previous version."
4265
+ msgstr ""
4266
+
4271
4267
  msgid "No"
4272
4268
  msgstr ""
4273
4269
 
@@ -4319,6 +4315,12 @@ msgstr ""
4319
4315
  msgid "No artifacts to show"
4320
4316
  msgstr ""
4321
4317
 
4318
+ msgid "No available component content view updates"
4319
+ msgstr ""
4320
+
4321
+ msgid "No available repository or filter updates"
4322
+ msgstr ""
4323
+
4322
4324
  msgid "No content"
4323
4325
  msgstr ""
4324
4326
 
@@ -4343,7 +4345,10 @@ msgstr ""
4343
4345
  msgid "No content views available for the selected environment"
4344
4346
  msgstr ""
4345
4347
 
4346
- msgid "No content views belong to ${label}"
4348
+ msgid "No content views to add yet"
4349
+ msgstr ""
4350
+
4351
+ msgid "No content views yet"
4347
4352
  msgstr ""
4348
4353
 
4349
4354
  msgid "No content_view_version_ids provided"
@@ -4364,10 +4369,13 @@ msgstr ""
4364
4369
  msgid "No environments"
4365
4370
  msgstr ""
4366
4371
 
4367
- msgid "No errata available for this content view."
4372
+ msgid "No errata filter rules yet"
4373
+ msgstr ""
4374
+
4375
+ msgid "No errata matching given search query"
4368
4376
  msgstr ""
4369
4377
 
4370
- msgid "No errata available to add to this filter."
4378
+ msgid "No errata to add yet"
4371
4379
  msgstr ""
4372
4380
 
4373
4381
  msgid "No errors"
@@ -4379,6 +4387,12 @@ msgstr ""
4379
4387
  msgid "No file uploaded"
4380
4388
  msgstr ""
4381
4389
 
4390
+ msgid "No filters yet"
4391
+ msgstr ""
4392
+
4393
+ msgid "No history yet"
4394
+ msgstr ""
4395
+
4382
4396
  msgid "No host collections"
4383
4397
  msgstr ""
4384
4398
 
@@ -4394,6 +4408,9 @@ msgstr ""
4394
4408
  msgid "No hosts have been specified."
4395
4409
  msgstr ""
4396
4410
 
4411
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4412
+ msgstr ""
4413
+
4397
4414
  msgid "No hosts registered with subscription-manager found in selection."
4398
4415
  msgstr ""
4399
4416
 
@@ -4463,19 +4480,22 @@ msgstr ""
4463
4480
  msgid "No matching repository sets found"
4464
4481
  msgstr ""
4465
4482
 
4466
- msgid "No matching rules found."
4467
- msgstr ""
4468
-
4469
4483
  msgid "No matching traces found"
4470
4484
  msgstr ""
4471
4485
 
4472
4486
  msgid "No matching version found"
4473
4487
  msgstr ""
4474
4488
 
4489
+ msgid "No module stream filter rules yet"
4490
+ msgstr ""
4491
+
4492
+ msgid "No module streams to add yet."
4493
+ msgstr ""
4494
+
4475
4495
  msgid "No new packages installed"
4476
4496
  msgstr ""
4477
4497
 
4478
- msgid "No new packages."
4498
+ msgid "No package groups yet"
4479
4499
  msgstr ""
4480
4500
 
4481
4501
  msgid "No packages"
@@ -4484,7 +4504,7 @@ msgstr ""
4484
4504
  msgid "No packages available to install"
4485
4505
  msgstr ""
4486
4506
 
4487
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4507
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4488
4508
  msgstr ""
4489
4509
 
4490
4510
  msgid "No packages removed"
@@ -4526,6 +4546,12 @@ msgstr ""
4526
4546
  msgid "No recurring logic tied to the sync plan."
4527
4547
  msgstr ""
4528
4548
 
4549
+ msgid "No repositories added yet"
4550
+ msgstr ""
4551
+
4552
+ msgid "No repositories available to add"
4553
+ msgstr ""
4554
+
4529
4555
  msgid "No repositories available."
4530
4556
  msgstr ""
4531
4557
 
@@ -4544,7 +4570,7 @@ msgstr ""
4544
4570
  msgid "No repository sets to show."
4545
4571
  msgstr ""
4546
4572
 
4547
- msgid "No rules have been added to this filter."
4573
+ msgid "No rules yet"
4548
4574
  msgstr ""
4549
4575
 
4550
4576
  msgid "No services defined, is this class extended?"
@@ -4562,6 +4588,9 @@ msgstr ""
4562
4588
  msgid "No uploads param specified. An array of uploads to import is required."
4563
4589
  msgstr ""
4564
4590
 
4591
+ msgid "No versions yet"
4592
+ msgstr ""
4593
+
4565
4594
  msgid "Non-security errata applicable"
4566
4595
  msgstr ""
4567
4596
 
@@ -4667,9 +4696,6 @@ msgstr ""
4667
4696
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4668
4697
  msgstr ""
4669
4698
 
4670
- msgid "One or more packages failed to sync properly."
4671
- msgstr ""
4672
-
4673
4699
  msgid "One or more processes require restarting"
4674
4700
  msgstr ""
4675
4701
 
@@ -4952,9 +4978,6 @@ msgstr ""
4952
4978
  msgid "Paused"
4953
4979
  msgstr ""
4954
4980
 
4955
- msgid "Pending"
4956
- msgstr ""
4957
-
4958
4981
  msgid "Perform a module stream action via Katello interface"
4959
4982
  msgstr ""
4960
4983
 
@@ -4988,10 +5011,10 @@ msgstr ""
4988
5011
  msgid "Plan numeric identifier"
4989
5012
  msgstr ""
4990
5013
 
4991
- msgid "Please add some content views."
5014
+ msgid "Please add some repositories."
4992
5015
  msgstr ""
4993
5016
 
4994
- msgid "Please add some repositories."
5017
+ msgid "Please create some content views."
4995
5018
  msgstr ""
4996
5019
 
4997
5020
  msgid "Please enter a positive number above zero"
@@ -5069,12 +5092,6 @@ msgstr ""
5069
5092
  msgid "Problem searching traces"
5070
5093
  msgstr ""
5071
5094
 
5072
- msgid "Processing metadata"
5073
- msgstr ""
5074
-
5075
- msgid "Processing metadata."
5076
- msgstr ""
5077
-
5078
5095
  msgid "Product"
5079
5096
  msgstr ""
5080
5097
 
@@ -5087,9 +5104,6 @@ msgstr ""
5087
5104
  msgid "Product ID"
5088
5105
  msgstr ""
5089
5106
 
5090
- msgid "Product Name"
5091
- msgstr ""
5092
-
5093
5107
  msgid "Product and Repositories"
5094
5108
  msgstr ""
5095
5109
 
@@ -5377,6 +5391,9 @@ msgstr ""
5377
5391
  msgid "Recommended Repositories"
5378
5392
  msgstr ""
5379
5393
 
5394
+ msgid "Red Hat"
5395
+ msgstr ""
5396
+
5380
5397
  msgid "Red Hat CDN"
5381
5398
  msgstr ""
5382
5399
 
@@ -5632,6 +5649,9 @@ msgstr ""
5632
5649
  msgid "Repo Type"
5633
5650
  msgstr ""
5634
5651
 
5652
+ msgid "Report"
5653
+ msgstr ""
5654
+
5635
5655
  msgid "Repositories"
5636
5656
  msgstr ""
5637
5657
 
@@ -5674,9 +5694,6 @@ msgstr ""
5674
5694
  msgid "Repository label '%s' is not associated with content view."
5675
5695
  msgstr ""
5676
5696
 
5677
- msgid "Repository metadata publish"
5678
- msgstr ""
5679
-
5680
5697
  msgid "Repository not found"
5681
5698
  msgstr ""
5682
5699
 
@@ -5713,6 +5730,12 @@ msgstr ""
5713
5730
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5714
5731
  msgstr ""
5715
5732
 
5733
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5734
+ msgstr ""
5735
+
5736
+ msgid "Repository type"
5737
+ msgstr ""
5738
+
5716
5739
  msgid "Republish Repositories of %{name} %{version}"
5717
5740
  msgstr ""
5718
5741
 
@@ -6010,6 +6033,9 @@ msgstr ""
6010
6033
  msgid "Select a client key"
6011
6034
  msgstr ""
6012
6035
 
6036
+ msgid "Select a content source first"
6037
+ msgstr ""
6038
+
6013
6039
  msgid "Select a content view"
6014
6040
  msgstr ""
6015
6041
 
@@ -6025,6 +6051,9 @@ msgstr ""
6025
6051
  msgid "Select a provider to install katello-host-tools-tracer"
6026
6052
  msgstr ""
6027
6053
 
6054
+ msgid "Select a source"
6055
+ msgstr ""
6056
+
6028
6057
  msgid "Select add-ons"
6029
6058
  msgstr ""
6030
6059
 
@@ -6040,7 +6069,7 @@ msgstr ""
6040
6069
  msgid "Select an environment"
6041
6070
  msgstr ""
6042
6071
 
6043
- msgid "Select an environment above"
6072
+ msgid "Select an environment first"
6044
6073
  msgstr ""
6045
6074
 
6046
6075
  msgid "Select an option"
@@ -6205,6 +6234,9 @@ msgstr ""
6205
6234
  msgid "Show all"
6206
6235
  msgstr ""
6207
6236
 
6237
+ msgid "Show all repository sets"
6238
+ msgstr ""
6239
+
6208
6240
  msgid "Show an activation key"
6209
6241
  msgstr ""
6210
6242
 
@@ -6226,6 +6258,9 @@ msgstr ""
6226
6258
  msgid "Show full description"
6227
6259
  msgstr ""
6228
6260
 
6261
+ msgid "Show hosts associated to an activation key"
6262
+ msgstr ""
6263
+
6229
6264
  msgid "Show organization"
6230
6265
  msgstr ""
6231
6266
 
@@ -6235,12 +6270,18 @@ msgstr ""
6235
6270
  msgid "Show releases available for the content host"
6236
6271
  msgstr ""
6237
6272
 
6273
+ msgid "Show repositories"
6274
+ msgstr ""
6275
+
6238
6276
  msgid "Show repositories enabled on the host that are known to Katello"
6239
6277
  msgstr ""
6240
6278
 
6241
6279
  msgid "Show the available repository types"
6242
6280
  msgstr ""
6243
6281
 
6282
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6283
+ msgstr ""
6284
+
6244
6285
  msgid "Shows status of Katello system and it's subcomponents"
6245
6286
  msgstr ""
6246
6287
 
@@ -6298,6 +6339,12 @@ msgstr ""
6298
6339
  msgid "Solve dependencies"
6299
6340
  msgstr ""
6300
6341
 
6342
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6343
+ msgstr ""
6344
+
6345
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6346
+ msgstr ""
6347
+
6301
6348
  msgid "Some hosts are not registered as content hosts and will be ignored."
6302
6349
  msgstr ""
6303
6350
 
@@ -6742,9 +6789,6 @@ msgstr ""
6742
6789
  msgid "Synchronize Now"
6743
6790
  msgstr ""
6744
6791
 
6745
- msgid "Synchronize capsule content"
6746
- msgstr ""
6747
-
6748
6792
  msgid "Synchronize repository"
6749
6793
  msgstr ""
6750
6794
 
@@ -6778,7 +6822,7 @@ msgstr ""
6778
6822
  msgid "System purpose attributes updated"
6779
6823
  msgstr ""
6780
6824
 
6781
- 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."
6825
+ 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."
6782
6826
  msgstr ""
6783
6827
 
6784
6828
  msgid "Tag name"
@@ -6856,9 +6900,6 @@ msgstr ""
6856
6900
  msgid "The erratum type must be an array. Invalid value provided"
6857
6901
  msgstr ""
6858
6902
 
6859
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6860
- msgstr ""
6861
-
6862
6903
  msgid "The field to sort the data by. Defaults to the created date."
6863
6904
  msgstr ""
6864
6905
 
@@ -7166,6 +7207,9 @@ msgstr ""
7166
7207
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7167
7208
  msgstr ""
7168
7209
 
7210
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7211
+ msgstr ""
7212
+
7169
7213
  msgid "Timeout when refreshing a manifest (in seconds)"
7170
7214
  msgstr ""
7171
7215
 
@@ -7175,9 +7219,21 @@ msgstr ""
7175
7219
  msgid "Title"
7176
7220
  msgstr ""
7177
7221
 
7222
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7223
+ msgstr ""
7224
+
7225
+ msgid "To enable them, add the environment to the host's content source, or "
7226
+ msgstr ""
7227
+
7228
+ msgid "To get started, add a filter rule to this filter"
7229
+ msgstr ""
7230
+
7178
7231
  msgid "To get started, add this host to a host collection."
7179
7232
  msgstr ""
7180
7233
 
7234
+ 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."
7235
+ msgstr ""
7236
+
7181
7237
  msgid "To update the selected host configuration, update hosts manually in the next section."
7182
7238
  msgstr ""
7183
7239
 
@@ -7364,9 +7420,6 @@ msgstr ""
7364
7420
  msgid "Unapplied Errata"
7365
7421
  msgstr ""
7366
7422
 
7367
- msgid "Unassociate units in repository"
7368
- msgstr ""
7369
-
7370
7423
  msgid "Unattach a subscription"
7371
7424
  msgstr ""
7372
7425
 
@@ -7553,6 +7606,9 @@ msgstr ""
7553
7606
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7554
7607
  msgstr ""
7555
7608
 
7609
+ msgid "Update the host immediately via remote execution"
7610
+ msgstr ""
7611
+
7556
7612
  msgid "Update the information about enabled repositories"
7557
7613
  msgstr ""
7558
7614
 
@@ -7580,6 +7636,12 @@ msgstr ""
7580
7636
  msgid "Updates all packages on the host(s)"
7581
7637
  msgstr ""
7582
7638
 
7639
+ msgid "Updates available: Component content view versions have been updated."
7640
+ msgstr ""
7641
+
7642
+ msgid "Updates available: Repositories and/or filters have changed."
7643
+ msgstr ""
7644
+
7583
7645
  msgid "Updating Package..."
7584
7646
  msgstr ""
7585
7647
 
@@ -7799,6 +7861,9 @@ msgstr ""
7799
7861
  msgid "View %{view} has not been promoted to %{env}"
7800
7862
  msgstr ""
7801
7863
 
7864
+ msgid "View Filters"
7865
+ msgstr ""
7866
+
7802
7867
  msgid "View Subscription Usage"
7803
7868
  msgstr ""
7804
7869
 
@@ -7811,6 +7876,9 @@ msgstr ""
7811
7876
  msgid "View by"
7812
7877
  msgstr ""
7813
7878
 
7879
+ msgid "View documentation"
7880
+ msgstr ""
7881
+
7814
7882
  msgid "View matching content"
7815
7883
  msgstr ""
7816
7884
 
@@ -7856,6 +7924,9 @@ msgstr ""
7856
7924
  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."
7857
7925
  msgstr ""
7858
7926
 
7927
+ msgid "Whether Simple Content Access should be enabled for the organization."
7928
+ msgstr ""
7929
+
7859
7930
  msgid "Whether or not the host collection may have unlimited hosts"
7860
7931
  msgstr ""
7861
7932
 
@@ -7868,6 +7939,9 @@ msgstr ""
7868
7939
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7869
7940
  msgstr ""
7870
7941
 
7942
+ msgid "Whether or not to return filters applied to the content view version"
7943
+ msgstr ""
7944
+
7871
7945
  msgid "Whether or not to show all results"
7872
7946
  msgstr ""
7873
7947
 
@@ -7913,31 +7987,19 @@ msgstr ""
7913
7987
  msgid "You currently don't have any ${selectedContentType}."
7914
7988
  msgstr ""
7915
7989
 
7916
- msgid "You currently don't have any Content views."
7917
- msgstr ""
7918
-
7919
7990
  msgid "You currently don't have any alternate content sources."
7920
7991
  msgstr ""
7921
7992
 
7922
- msgid "You currently don't have any filters for this content view."
7923
- msgstr ""
7924
-
7925
- msgid "You currently don't have any history for this content view."
7993
+ msgid "You currently don't have any related content views."
7926
7994
  msgstr ""
7927
7995
 
7928
7996
  msgid "You currently don't have any repositories associated with this content."
7929
7997
  msgstr ""
7930
7998
 
7931
- msgid "You currently don't have any repositories to add to this content view."
7932
- msgstr ""
7933
-
7934
7999
  msgid "You currently don't have any repositories to add to this filter."
7935
8000
  msgstr ""
7936
8001
 
7937
- msgid "You currently don't have any versions for this content view."
7938
- msgstr ""
7939
-
7940
- msgid "You currently don\\'t have any related content views."
8002
+ msgid "You currently have no content views to display"
7941
8003
  msgstr ""
7942
8004
 
7943
8005
  msgid "You do not have permissions to delete %s"
@@ -7994,9 +8056,6 @@ msgstr ""
7994
8056
  msgid "Yum"
7995
8057
  msgstr ""
7996
8058
 
7997
- msgid "Yum Metadata: %s"
7998
- msgstr ""
7999
-
8000
8059
  msgid "a content unit"
8001
8060
  msgstr ""
8002
8061
 
@@ -8159,6 +8218,9 @@ msgstr ""
8159
8218
  msgid "cannot contain more than %s characters"
8160
8219
  msgstr ""
8161
8220
 
8221
+ msgid "change the host's content source."
8222
+ msgstr ""
8223
+
8162
8224
  msgid "checking %s task status"
8163
8225
  msgstr ""
8164
8226
 
@@ -8174,9 +8236,6 @@ msgstr ""
8174
8236
  msgid "composite content view numeric identifier"
8175
8237
  msgstr ""
8176
8238
 
8177
- msgid "conditional package names to include in the package group"
8178
- msgstr ""
8179
-
8180
8239
  msgid "content release version"
8181
8240
  msgstr ""
8182
8241
 
@@ -8231,6 +8290,9 @@ msgstr ""
8231
8290
  msgid "content view versions to compare"
8232
8291
  msgstr ""
8233
8292
 
8293
+ msgid "create a custom product"
8294
+ msgstr ""
8295
+
8234
8296
  msgid "create a filter for a content view"
8235
8297
  msgstr ""
8236
8298
 
@@ -8240,9 +8302,6 @@ msgstr ""
8240
8302
  msgid "deb_ids is not an array"
8241
8303
  msgstr ""
8242
8304
 
8243
- msgid "default package names to include in the package group"
8244
- msgstr ""
8245
-
8246
8305
  msgid "delete a filter"
8247
8306
  msgstr ""
8248
8307
 
@@ -8474,9 +8533,6 @@ msgstr ""
8474
8533
  msgid "list of rpm filename strings to include in published version"
8475
8534
  msgstr ""
8476
8535
 
8477
- msgid "mandatory package names to include in the package group"
8478
- msgstr ""
8479
-
8480
8536
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8481
8537
  msgstr ""
8482
8538
 
@@ -8504,6 +8560,9 @@ msgstr ""
8504
8560
  msgid "must be one of: %s"
8505
8561
  msgstr ""
8506
8562
 
8563
+ msgid "must be true or false"
8564
+ msgstr ""
8565
+
8507
8566
  msgid "must be unique within one organization"
8508
8567
  msgstr ""
8509
8568
 
@@ -8531,9 +8590,6 @@ msgstr ""
8531
8590
  msgid "name"
8532
8591
  msgstr ""
8533
8592
 
8534
- msgid "name not defined."
8535
- msgstr ""
8536
-
8537
8593
  msgid "name of organization"
8538
8594
  msgstr ""
8539
8595
 
@@ -8579,21 +8635,12 @@ msgstr ""
8579
8635
  msgid "only show the repositories readable by this user with this username"
8580
8636
  msgstr ""
8581
8637
 
8582
- msgid "optional package names to include in the package group"
8583
- msgstr ""
8584
-
8585
8638
  msgid "organization ID"
8586
8639
  msgstr ""
8587
8640
 
8588
8641
  msgid "organization identifier"
8589
8642
  msgstr ""
8590
8643
 
8591
- msgid "package group description. Defaults to params[:name]"
8592
- msgstr ""
8593
-
8594
- msgid "package group name"
8595
- msgstr ""
8596
-
8597
8644
  msgid "package group: uuid"
8598
8645
  msgstr ""
8599
8646
 
@@ -8672,12 +8719,6 @@ msgstr ""
8672
8719
  msgid "repository source url"
8673
8720
  msgstr ""
8674
8721
 
8675
- msgid "repository_id"
8676
- msgstr ""
8677
-
8678
- msgid "repository_id not defined."
8679
- msgstr ""
8680
-
8681
8722
  msgid "root-node of collection contained in responses (default: 'results')"
8682
8723
  msgstr ""
8683
8724
 
@@ -8699,9 +8740,6 @@ msgstr ""
8699
8740
  msgid "service level"
8700
8741
  msgstr ""
8701
8742
 
8702
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8703
- msgstr ""
8704
-
8705
8743
  msgid "set true if you want to see only library environments"
8706
8744
  msgstr ""
8707
8745
 
@@ -8759,9 +8797,6 @@ msgstr ""
8759
8797
  msgid "true if this repository can be published via HTTP"
8760
8798
  msgstr ""
8761
8799
 
8762
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8763
- msgstr ""
8764
-
8765
8800
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8766
8801
  msgstr ""
8767
8802
 
@@ -8807,15 +8842,9 @@ msgstr ""
8807
8842
  msgid "waiting for %s to finish the task"
8808
8843
  msgstr ""
8809
8844
 
8810
- msgid "waiting for Pulp to finish the task"
8811
- msgstr ""
8812
-
8813
8845
  msgid "waiting for Pulp to finish the task %s"
8814
8846
  msgstr ""
8815
8847
 
8816
- msgid "waiting for Pulp to start the task"
8817
- msgstr ""
8818
-
8819
8848
  msgid "waiting for Pulp to start the task %s"
8820
8849
  msgstr ""
8821
8850
 
@@ -8837,6 +8866,9 @@ msgstr ""
8837
8866
  msgid "{0} items selected"
8838
8867
  msgstr ""
8839
8868
 
8869
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8870
+ msgstr ""
8871
+
8840
8872
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8841
8873
  msgstr ""
8842
8874