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/mr/katello.po CHANGED
@@ -146,9 +146,6 @@ msgstr ""
146
146
  msgid "%s is unreachable. %s"
147
147
  msgstr ""
148
148
 
149
- msgid "%s must be an array."
150
- msgstr ""
151
-
152
149
  msgid "%{errata} (%{total} other errata)"
153
150
  msgstr ""
154
151
 
@@ -383,15 +380,12 @@ msgstr ""
383
380
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
384
381
  msgstr ""
385
382
 
386
- msgid "A Pool and its Subscription cannot belong to different organizations"
383
+ msgid "A Pool and its Subscription cannot belong to different organizations."
387
384
  msgstr ""
388
385
 
389
386
  msgid "A backend service [ %s ] is unreachable"
390
387
  msgstr ""
391
388
 
392
- msgid "A content view can be added by using the \"Create content view\" button below."
393
- msgstr ""
394
-
395
389
  msgid "A content_type must be provided."
396
390
  msgstr ""
397
391
 
@@ -458,9 +452,6 @@ msgstr ""
458
452
  msgid "Action unauthorized to be performed in this organization."
459
453
  msgstr ""
460
454
 
461
- msgid "Action unauthorized to be performed on selected hosts."
462
- msgstr ""
463
-
464
455
  msgid "Action with sub plans"
465
456
  msgstr ""
466
457
 
@@ -512,6 +503,9 @@ msgstr ""
512
503
  msgid "Add Subscriptions"
513
504
  msgstr ""
514
505
 
506
+ msgid "Add Subscriptions using the Add Subscriptions button."
507
+ msgstr ""
508
+
515
509
  msgid "Add a subscription to a host"
516
510
  msgstr ""
517
511
 
@@ -521,6 +515,9 @@ msgstr ""
521
515
  msgid "Add components to the content view"
522
516
  msgstr ""
523
517
 
518
+ msgid "Add content"
519
+ msgstr ""
520
+
524
521
  msgid "Add content view"
525
522
  msgstr ""
526
523
 
@@ -563,12 +560,18 @@ msgstr ""
563
560
  msgid "Add repositories"
564
561
  msgstr ""
565
562
 
563
+ msgid "Add repositories with package groups to content view to select them here."
564
+ msgstr ""
565
+
566
566
  msgid "Add rule"
567
567
  msgstr ""
568
568
 
569
569
  msgid "Add source"
570
570
  msgstr ""
571
571
 
572
+ msgid "Add subscriptions"
573
+ msgstr ""
574
+
572
575
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
573
576
  msgstr ""
574
577
 
@@ -578,12 +581,6 @@ msgstr ""
578
581
  msgid "Add to a host collection"
579
582
  msgstr ""
580
583
 
581
- msgid "Add to this filter using the 'Add Deb rule' button."
582
- msgstr ""
583
-
584
- msgid "Add to this filter using the 'Add filter rule' button."
585
- msgstr ""
586
-
587
584
  msgid "Add-ons"
588
585
  msgstr ""
589
586
 
@@ -707,15 +704,12 @@ msgstr ""
707
704
  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."
708
705
  msgstr ""
709
706
 
710
- msgid "An alternate content source can be added by using the \"Add source\" button below."
707
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
711
708
  msgstr ""
712
709
 
713
710
  msgid "An environment is missing a prior"
714
711
  msgstr ""
715
712
 
716
- msgid "An error occurred during content removal. Could not find repository with id: %s"
717
- msgstr ""
718
-
719
713
  msgid ""
720
714
  "An error occurred during the sync \n"
721
715
  "%{error_message}"
@@ -911,12 +905,6 @@ msgstr ""
911
905
  msgid "Autopublish"
912
906
  msgstr ""
913
907
 
914
- msgid "Autosearch"
915
- msgstr ""
916
-
917
- msgid "Autosearch delay"
918
- msgstr ""
919
-
920
908
  msgid "Available"
921
909
  msgstr ""
922
910
 
@@ -1052,24 +1040,12 @@ msgstr ""
1052
1040
  msgid "Calculate Applicable Errata based on a particular Environment"
1053
1041
  msgstr ""
1054
1042
 
1055
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1056
- msgstr ""
1057
-
1058
1043
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1059
1044
  msgstr ""
1060
1045
 
1061
- msgid "Can not add product %s because it is disabled."
1062
- msgstr ""
1063
-
1064
- msgid "Can only destroy on Yum Repositories."
1065
- msgstr ""
1066
-
1067
1046
  msgid "Can only remove content from within the Default Content View"
1068
1047
  msgstr ""
1069
1048
 
1070
- msgid "Can only upload to Yum Repositories."
1071
- msgstr ""
1072
-
1073
1049
  msgid "Can't update the '%s' environment"
1074
1050
  msgstr ""
1075
1051
 
@@ -1127,9 +1103,15 @@ msgstr ""
1127
1103
  msgid "Cannot add generated content view versions to composite content view"
1128
1104
  msgstr ""
1129
1105
 
1106
+ msgid "Cannot add product %s because it is disabled."
1107
+ msgstr ""
1108
+
1130
1109
  msgid "Cannot add repositories to a composite content view"
1131
1110
  msgstr ""
1132
1111
 
1112
+ msgid "Cannot associate a Red Hat provider with a custom product"
1113
+ msgstr ""
1114
+
1133
1115
  msgid "Cannot associate a component to a non composite content view"
1134
1116
  msgstr ""
1135
1117
 
@@ -1181,7 +1163,10 @@ msgstr ""
1181
1163
  msgid "Cannot import a custom subscription from a redhat product."
1182
1164
  msgstr ""
1183
1165
 
1184
- msgid "Cannot pass content units without content unit type"
1166
+ 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."
1167
+ msgstr ""
1168
+
1169
+ 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."
1185
1170
  msgstr ""
1186
1171
 
1187
1172
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1253,6 +1238,9 @@ msgstr ""
1253
1238
  msgid "Change host content source"
1254
1239
  msgstr ""
1255
1240
 
1241
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1242
+ msgstr ""
1243
+
1256
1244
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1257
1245
  msgstr ""
1258
1246
 
@@ -1295,6 +1283,9 @@ msgstr ""
1295
1283
  msgid "Click here to go to the tasks page for the task."
1296
1284
  msgstr ""
1297
1285
 
1286
+ msgid "Click to see repositories available to add."
1287
+ msgstr ""
1288
+
1298
1289
  msgid "Click {update} below to save changes."
1299
1290
  msgstr ""
1300
1291
 
@@ -1574,6 +1565,9 @@ msgstr ""
1574
1565
  msgid "Content view details"
1575
1566
  msgstr ""
1576
1567
 
1568
+ 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."
1569
+ msgstr ""
1570
+
1577
1571
  msgid "Content view environments and activation key must all belong to the same organization"
1578
1572
  msgstr ""
1579
1573
 
@@ -1793,9 +1787,6 @@ msgstr ""
1793
1787
  msgid "Create Import History"
1794
1788
  msgstr ""
1795
1789
 
1796
- msgid "Create Package Group"
1797
- msgstr ""
1798
-
1799
1790
  msgid "Create Repositories"
1800
1791
  msgstr ""
1801
1792
 
@@ -1820,9 +1811,6 @@ msgstr ""
1820
1811
  msgid "Create a host collection"
1821
1812
  msgstr ""
1822
1813
 
1823
- msgid "Create a package group"
1824
- msgstr ""
1825
-
1826
1814
  msgid "Create a product"
1827
1815
  msgstr ""
1828
1816
 
@@ -1856,6 +1844,9 @@ msgstr ""
1856
1844
  msgid "Create host collection"
1857
1845
  msgstr ""
1858
1846
 
1847
+ msgid "Create new activation key"
1848
+ msgstr ""
1849
+
1859
1850
  msgid "Create organization"
1860
1851
  msgstr ""
1861
1852
 
@@ -1988,6 +1979,12 @@ msgstr ""
1988
1979
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1989
1980
  msgstr ""
1990
1981
 
1982
+ msgid "Default export format"
1983
+ msgstr ""
1984
+
1985
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1986
+ msgstr ""
1987
+
1991
1988
  msgid "Default finish template for new Operating Systems created from synced content"
1992
1989
  msgstr ""
1993
1990
 
@@ -2063,9 +2060,6 @@ msgstr ""
2063
2060
  msgid "Delete Manifest"
2064
2061
  msgstr ""
2065
2062
 
2066
- msgid "Delete Package Group"
2067
- msgstr ""
2068
-
2069
2063
  msgid "Delete Product"
2070
2064
  msgstr ""
2071
2065
 
@@ -2081,9 +2075,6 @@ msgstr ""
2081
2075
  msgid "Delete a filter rule"
2082
2076
  msgstr ""
2083
2077
 
2084
- msgid "Delete a package group"
2085
- msgstr ""
2086
-
2087
2078
  msgid "Delete all subscriptions attached to activation keys."
2088
2079
  msgstr ""
2089
2080
 
@@ -2447,6 +2438,12 @@ msgstr ""
2447
2438
  msgid "Errata Install scheduled by %s"
2448
2439
  msgstr ""
2449
2440
 
2441
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2442
+ msgstr ""
2443
+
2444
+ msgid "Errata and package information will be updated immediately."
2445
+ msgstr ""
2446
+
2450
2447
  msgid "Errata id of the erratum (RHSA-2012:108)"
2451
2448
  msgstr ""
2452
2449
 
@@ -2549,9 +2546,7 @@ msgstr ""
2549
2546
  msgid "Export as CSV"
2550
2547
  msgstr ""
2551
2548
 
2552
- msgid ""
2553
- "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"
2554
- " Defaults to importable."
2549
+ 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."
2555
2550
  msgstr ""
2556
2551
 
2557
2552
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2575,11 +2570,6 @@ msgstr ""
2575
2570
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2576
2571
  msgstr ""
2577
2572
 
2578
- msgid "Failed to download %s package."
2579
- msgid_plural "Failed to download %s packages."
2580
- msgstr[0] ""
2581
- msgstr[1] ""
2582
-
2583
2573
  msgid "Failed to find %{content} with id '%{id}'."
2584
2574
  msgstr ""
2585
2575
 
@@ -2700,7 +2690,10 @@ msgstr "फिल्टर्स्"
2700
2690
  msgid "Filters deleted"
2701
2691
  msgstr ""
2702
2692
 
2703
- msgid "Filters will appear here when the filter is created."
2693
+ msgid "Filters were applied to this version."
2694
+ msgstr ""
2695
+
2696
+ msgid "Filters will be applied to this content view version."
2704
2697
  msgstr ""
2705
2698
 
2706
2699
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2715,9 +2708,6 @@ msgstr ""
2715
2708
  msgid "Finished"
2716
2709
  msgstr ""
2717
2710
 
2718
- msgid "For pages that support it, automatically perform search while typing in search input."
2719
- msgstr ""
2720
-
2721
2711
  msgid "Force"
2722
2712
  msgstr ""
2723
2713
 
@@ -2729,6 +2719,9 @@ msgstr ""
2729
2719
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2730
2720
  msgstr ""
2731
2721
 
2722
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2723
+ msgstr ""
2724
+
2732
2725
  msgid "Force delete the repository by removing it from all content view versions"
2733
2726
  msgstr ""
2734
2727
 
@@ -2771,6 +2764,9 @@ msgstr ""
2771
2764
  msgid "Generate and Download"
2772
2765
  msgstr ""
2773
2766
 
2767
+ msgid "Generate errata status from directly-installable content"
2768
+ msgstr ""
2769
+
2774
2770
  msgid "Generate host applicability"
2775
2771
  msgstr ""
2776
2772
 
@@ -2834,9 +2830,6 @@ msgstr ""
2834
2830
  msgid "Greater than"
2835
2831
  msgstr ""
2836
2832
 
2837
- msgid "Group %{id} already created."
2838
- msgstr ""
2839
-
2840
2833
  msgid "Guests of"
2841
2834
  msgstr ""
2842
2835
 
@@ -2876,6 +2869,9 @@ msgstr "यजमान"
2876
2869
  msgid "Host %s has not been registered with subscription-manager."
2877
2870
  msgstr ""
2878
2871
 
2872
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2873
+ msgstr ""
2874
+
2879
2875
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2880
2876
  msgstr ""
2881
2877
 
@@ -3143,9 +3139,6 @@ msgstr ""
3143
3139
  msgid "Ids of smart proxies to associate"
3144
3140
  msgstr ""
3145
3141
 
3146
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3147
- msgstr ""
3148
-
3149
3142
  msgid "If SSL should be verified for the upstream URL"
3150
3143
  msgstr ""
3151
3144
 
@@ -3173,13 +3166,16 @@ msgstr ""
3173
3166
  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/...'."
3174
3167
  msgstr ""
3175
3168
 
3169
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3170
+ msgstr ""
3171
+
3176
3172
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3177
3173
  msgstr ""
3178
3174
 
3179
3175
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3180
3176
  msgstr ""
3181
3177
 
3182
- msgid "If true, return custom repository sets along with redhat repos"
3178
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3183
3179
  msgstr ""
3184
3180
 
3185
3181
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3212,6 +3208,9 @@ msgstr ""
3212
3208
  msgid "Ignored hosts"
3213
3209
  msgstr ""
3214
3210
 
3211
+ msgid "Image"
3212
+ msgstr ""
3213
+
3215
3214
  msgid "Immediate"
3216
3215
  msgstr ""
3217
3216
 
@@ -3425,10 +3424,7 @@ msgstr ""
3425
3424
  msgid "Installable"
3426
3425
  msgstr ""
3427
3426
 
3428
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3429
- msgstr ""
3430
-
3431
- msgid "Installable errata from content view"
3427
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3432
3428
  msgstr ""
3433
3429
 
3434
3430
  msgid "Installable updates"
@@ -3569,7 +3565,7 @@ msgstr ""
3569
3565
  msgid "Issued from"
3570
3566
  msgstr ""
3571
3567
 
3572
- msgid "Items will appear here when a filter rule is added."
3568
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3573
3569
  msgstr ""
3574
3570
 
3575
3571
  msgid "Job '${description}' completed"
@@ -3737,6 +3733,9 @@ msgstr ""
3737
3733
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3738
3734
  msgstr ""
3739
3735
 
3736
+ msgid "Limit content to Red Hat / custom"
3737
+ msgstr ""
3738
+
3740
3739
  msgid "Limit content to enabled / disabled / overridden"
3741
3740
  msgstr ""
3742
3741
 
@@ -4154,21 +4153,24 @@ msgstr ""
4154
4153
  msgid "Multi-entitlement"
4155
4154
  msgstr ""
4156
4155
 
4157
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4158
- msgstr ""
4159
-
4160
4156
  msgid "N/A"
4161
4157
  msgstr "लागू नाही"
4162
4158
 
4163
4159
  msgid "NA"
4164
4160
  msgstr ""
4165
4161
 
4162
+ 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}'."
4163
+ msgstr ""
4164
+
4166
4165
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4167
4166
  msgstr ""
4168
4167
 
4169
4168
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4170
4169
  msgstr ""
4171
4170
 
4171
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4172
+ msgstr ""
4173
+
4172
4174
  msgid ""
4173
4175
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
4174
4176
  " %{repos}"
@@ -4244,12 +4246,6 @@ msgstr ""
4244
4246
  msgid "New Errata"
4245
4247
  msgstr ""
4246
4248
 
4247
- msgid "New Files: %s"
4248
- msgstr ""
4249
-
4250
- msgid "New blobs: %{count}."
4251
- msgstr ""
4252
-
4253
4249
  msgid "New content view name"
4254
4250
  msgstr ""
4255
4251
 
@@ -4262,15 +4258,15 @@ msgstr ""
4262
4258
  msgid "New name for the content view"
4263
4259
  msgstr ""
4264
4260
 
4265
- msgid "New packages: %{count} (%{size})."
4266
- msgstr ""
4267
-
4268
4261
  msgid "New version is available: Version ${latestVersion}"
4269
4262
  msgstr ""
4270
4263
 
4271
4264
  msgid "Newly published"
4272
4265
  msgstr ""
4273
4266
 
4267
+ msgid "Newly published version will be the same as the previous version."
4268
+ msgstr ""
4269
+
4274
4270
  msgid "No"
4275
4271
  msgstr ""
4276
4272
 
@@ -4322,6 +4318,12 @@ msgstr ""
4322
4318
  msgid "No artifacts to show"
4323
4319
  msgstr ""
4324
4320
 
4321
+ msgid "No available component content view updates"
4322
+ msgstr ""
4323
+
4324
+ msgid "No available repository or filter updates"
4325
+ msgstr ""
4326
+
4325
4327
  msgid "No content"
4326
4328
  msgstr ""
4327
4329
 
@@ -4346,7 +4348,10 @@ msgstr ""
4346
4348
  msgid "No content views available for the selected environment"
4347
4349
  msgstr ""
4348
4350
 
4349
- msgid "No content views belong to ${label}"
4351
+ msgid "No content views to add yet"
4352
+ msgstr ""
4353
+
4354
+ msgid "No content views yet"
4350
4355
  msgstr ""
4351
4356
 
4352
4357
  msgid "No content_view_version_ids provided"
@@ -4367,10 +4372,13 @@ msgstr ""
4367
4372
  msgid "No environments"
4368
4373
  msgstr ""
4369
4374
 
4370
- msgid "No errata available for this content view."
4375
+ msgid "No errata filter rules yet"
4376
+ msgstr ""
4377
+
4378
+ msgid "No errata matching given search query"
4371
4379
  msgstr ""
4372
4380
 
4373
- msgid "No errata available to add to this filter."
4381
+ msgid "No errata to add yet"
4374
4382
  msgstr ""
4375
4383
 
4376
4384
  msgid "No errors"
@@ -4382,6 +4390,12 @@ msgstr ""
4382
4390
  msgid "No file uploaded"
4383
4391
  msgstr ""
4384
4392
 
4393
+ msgid "No filters yet"
4394
+ msgstr ""
4395
+
4396
+ msgid "No history yet"
4397
+ msgstr ""
4398
+
4385
4399
  msgid "No host collections"
4386
4400
  msgstr ""
4387
4401
 
@@ -4397,6 +4411,9 @@ msgstr ""
4397
4411
  msgid "No hosts have been specified."
4398
4412
  msgstr ""
4399
4413
 
4414
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4415
+ msgstr ""
4416
+
4400
4417
  msgid "No hosts registered with subscription-manager found in selection."
4401
4418
  msgstr ""
4402
4419
 
@@ -4466,19 +4483,22 @@ msgstr ""
4466
4483
  msgid "No matching repository sets found"
4467
4484
  msgstr ""
4468
4485
 
4469
- msgid "No matching rules found."
4470
- msgstr ""
4471
-
4472
4486
  msgid "No matching traces found"
4473
4487
  msgstr ""
4474
4488
 
4475
4489
  msgid "No matching version found"
4476
4490
  msgstr ""
4477
4491
 
4492
+ msgid "No module stream filter rules yet"
4493
+ msgstr ""
4494
+
4495
+ msgid "No module streams to add yet."
4496
+ msgstr ""
4497
+
4478
4498
  msgid "No new packages installed"
4479
4499
  msgstr ""
4480
4500
 
4481
- msgid "No new packages."
4501
+ msgid "No package groups yet"
4482
4502
  msgstr ""
4483
4503
 
4484
4504
  msgid "No packages"
@@ -4487,7 +4507,7 @@ msgstr ""
4487
4507
  msgid "No packages available to install"
4488
4508
  msgstr ""
4489
4509
 
4490
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4510
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4491
4511
  msgstr ""
4492
4512
 
4493
4513
  msgid "No packages removed"
@@ -4529,6 +4549,12 @@ msgstr ""
4529
4549
  msgid "No recurring logic tied to the sync plan."
4530
4550
  msgstr ""
4531
4551
 
4552
+ msgid "No repositories added yet"
4553
+ msgstr ""
4554
+
4555
+ msgid "No repositories available to add"
4556
+ msgstr ""
4557
+
4532
4558
  msgid "No repositories available."
4533
4559
  msgstr ""
4534
4560
 
@@ -4547,7 +4573,7 @@ msgstr ""
4547
4573
  msgid "No repository sets to show."
4548
4574
  msgstr ""
4549
4575
 
4550
- msgid "No rules have been added to this filter."
4576
+ msgid "No rules yet"
4551
4577
  msgstr ""
4552
4578
 
4553
4579
  msgid "No services defined, is this class extended?"
@@ -4565,6 +4591,9 @@ msgstr ""
4565
4591
  msgid "No uploads param specified. An array of uploads to import is required."
4566
4592
  msgstr ""
4567
4593
 
4594
+ msgid "No versions yet"
4595
+ msgstr ""
4596
+
4568
4597
  msgid "Non-security errata applicable"
4569
4598
  msgstr ""
4570
4599
 
@@ -4670,9 +4699,6 @@ msgstr ""
4670
4699
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4671
4700
  msgstr ""
4672
4701
 
4673
- msgid "One or more packages failed to sync properly."
4674
- msgstr ""
4675
-
4676
4702
  msgid "One or more processes require restarting"
4677
4703
  msgstr ""
4678
4704
 
@@ -4955,9 +4981,6 @@ msgstr ""
4955
4981
  msgid "Paused"
4956
4982
  msgstr ""
4957
4983
 
4958
- msgid "Pending"
4959
- msgstr "उर्वरित"
4960
-
4961
4984
  msgid "Perform a module stream action via Katello interface"
4962
4985
  msgstr ""
4963
4986
 
@@ -4991,10 +5014,10 @@ msgstr ""
4991
5014
  msgid "Plan numeric identifier"
4992
5015
  msgstr ""
4993
5016
 
4994
- msgid "Please add some content views."
5017
+ msgid "Please add some repositories."
4995
5018
  msgstr ""
4996
5019
 
4997
- msgid "Please add some repositories."
5020
+ msgid "Please create some content views."
4998
5021
  msgstr ""
4999
5022
 
5000
5023
  msgid "Please enter a positive number above zero"
@@ -5072,12 +5095,6 @@ msgstr ""
5072
5095
  msgid "Problem searching traces"
5073
5096
  msgstr ""
5074
5097
 
5075
- msgid "Processing metadata"
5076
- msgstr ""
5077
-
5078
- msgid "Processing metadata."
5079
- msgstr ""
5080
-
5081
5098
  msgid "Product"
5082
5099
  msgstr ""
5083
5100
 
@@ -5090,9 +5107,6 @@ msgstr ""
5090
5107
  msgid "Product ID"
5091
5108
  msgstr ""
5092
5109
 
5093
- msgid "Product Name"
5094
- msgstr ""
5095
-
5096
5110
  msgid "Product and Repositories"
5097
5111
  msgstr ""
5098
5112
 
@@ -5380,6 +5394,9 @@ msgstr ""
5380
5394
  msgid "Recommended Repositories"
5381
5395
  msgstr ""
5382
5396
 
5397
+ msgid "Red Hat"
5398
+ msgstr ""
5399
+
5383
5400
  msgid "Red Hat CDN"
5384
5401
  msgstr ""
5385
5402
 
@@ -5635,6 +5652,9 @@ msgstr ""
5635
5652
  msgid "Repo Type"
5636
5653
  msgstr ""
5637
5654
 
5655
+ msgid "Report"
5656
+ msgstr ""
5657
+
5638
5658
  msgid "Repositories"
5639
5659
  msgstr ""
5640
5660
 
@@ -5677,9 +5697,6 @@ msgstr ""
5677
5697
  msgid "Repository label '%s' is not associated with content view."
5678
5698
  msgstr ""
5679
5699
 
5680
- msgid "Repository metadata publish"
5681
- msgstr ""
5682
-
5683
5700
  msgid "Repository not found"
5684
5701
  msgstr ""
5685
5702
 
@@ -5716,6 +5733,12 @@ msgstr ""
5716
5733
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5717
5734
  msgstr ""
5718
5735
 
5736
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5737
+ msgstr ""
5738
+
5739
+ msgid "Repository type"
5740
+ msgstr ""
5741
+
5719
5742
  msgid "Republish Repositories of %{name} %{version}"
5720
5743
  msgstr ""
5721
5744
 
@@ -6013,6 +6036,9 @@ msgstr ""
6013
6036
  msgid "Select a client key"
6014
6037
  msgstr ""
6015
6038
 
6039
+ msgid "Select a content source first"
6040
+ msgstr ""
6041
+
6016
6042
  msgid "Select a content view"
6017
6043
  msgstr ""
6018
6044
 
@@ -6028,6 +6054,9 @@ msgstr ""
6028
6054
  msgid "Select a provider to install katello-host-tools-tracer"
6029
6055
  msgstr ""
6030
6056
 
6057
+ msgid "Select a source"
6058
+ msgstr ""
6059
+
6031
6060
  msgid "Select add-ons"
6032
6061
  msgstr ""
6033
6062
 
@@ -6043,7 +6072,7 @@ msgstr ""
6043
6072
  msgid "Select an environment"
6044
6073
  msgstr ""
6045
6074
 
6046
- msgid "Select an environment above"
6075
+ msgid "Select an environment first"
6047
6076
  msgstr ""
6048
6077
 
6049
6078
  msgid "Select an option"
@@ -6208,6 +6237,9 @@ msgstr ""
6208
6237
  msgid "Show all"
6209
6238
  msgstr ""
6210
6239
 
6240
+ msgid "Show all repository sets"
6241
+ msgstr ""
6242
+
6211
6243
  msgid "Show an activation key"
6212
6244
  msgstr ""
6213
6245
 
@@ -6229,6 +6261,9 @@ msgstr ""
6229
6261
  msgid "Show full description"
6230
6262
  msgstr ""
6231
6263
 
6264
+ msgid "Show hosts associated to an activation key"
6265
+ msgstr ""
6266
+
6232
6267
  msgid "Show organization"
6233
6268
  msgstr ""
6234
6269
 
@@ -6238,12 +6273,18 @@ msgstr ""
6238
6273
  msgid "Show releases available for the content host"
6239
6274
  msgstr ""
6240
6275
 
6276
+ msgid "Show repositories"
6277
+ msgstr ""
6278
+
6241
6279
  msgid "Show repositories enabled on the host that are known to Katello"
6242
6280
  msgstr ""
6243
6281
 
6244
6282
  msgid "Show the available repository types"
6245
6283
  msgstr ""
6246
6284
 
6285
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6286
+ msgstr ""
6287
+
6247
6288
  msgid "Shows status of Katello system and it's subcomponents"
6248
6289
  msgstr ""
6249
6290
 
@@ -6301,6 +6342,12 @@ msgstr ""
6301
6342
  msgid "Solve dependencies"
6302
6343
  msgstr ""
6303
6344
 
6345
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6346
+ msgstr ""
6347
+
6348
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6349
+ msgstr ""
6350
+
6304
6351
  msgid "Some hosts are not registered as content hosts and will be ignored."
6305
6352
  msgstr ""
6306
6353
 
@@ -6745,9 +6792,6 @@ msgstr ""
6745
6792
  msgid "Synchronize Now"
6746
6793
  msgstr ""
6747
6794
 
6748
- msgid "Synchronize capsule content"
6749
- msgstr ""
6750
-
6751
6795
  msgid "Synchronize repository"
6752
6796
  msgstr ""
6753
6797
 
@@ -6781,7 +6825,7 @@ msgstr ""
6781
6825
  msgid "System purpose attributes updated"
6782
6826
  msgstr ""
6783
6827
 
6784
- 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."
6828
+ 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."
6785
6829
  msgstr ""
6786
6830
 
6787
6831
  msgid "Tag name"
@@ -6859,9 +6903,6 @@ msgstr ""
6859
6903
  msgid "The erratum type must be an array. Invalid value provided"
6860
6904
  msgstr ""
6861
6905
 
6862
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6863
- msgstr ""
6864
-
6865
6906
  msgid "The field to sort the data by. Defaults to the created date."
6866
6907
  msgstr ""
6867
6908
 
@@ -7169,6 +7210,9 @@ msgstr ""
7169
7210
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7170
7211
  msgstr ""
7171
7212
 
7213
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7214
+ msgstr ""
7215
+
7172
7216
  msgid "Timeout when refreshing a manifest (in seconds)"
7173
7217
  msgstr ""
7174
7218
 
@@ -7178,9 +7222,21 @@ msgstr ""
7178
7222
  msgid "Title"
7179
7223
  msgstr ""
7180
7224
 
7225
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7226
+ msgstr ""
7227
+
7228
+ msgid "To enable them, add the environment to the host's content source, or "
7229
+ msgstr ""
7230
+
7231
+ msgid "To get started, add a filter rule to this filter"
7232
+ msgstr ""
7233
+
7181
7234
  msgid "To get started, add this host to a host collection."
7182
7235
  msgstr ""
7183
7236
 
7237
+ 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."
7238
+ msgstr ""
7239
+
7184
7240
  msgid "To update the selected host configuration, update hosts manually in the next section."
7185
7241
  msgstr ""
7186
7242
 
@@ -7367,9 +7423,6 @@ msgstr ""
7367
7423
  msgid "Unapplied Errata"
7368
7424
  msgstr ""
7369
7425
 
7370
- msgid "Unassociate units in repository"
7371
- msgstr ""
7372
-
7373
7426
  msgid "Unattach a subscription"
7374
7427
  msgstr ""
7375
7428
 
@@ -7556,6 +7609,9 @@ msgstr ""
7556
7609
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7557
7610
  msgstr ""
7558
7611
 
7612
+ msgid "Update the host immediately via remote execution"
7613
+ msgstr ""
7614
+
7559
7615
  msgid "Update the information about enabled repositories"
7560
7616
  msgstr ""
7561
7617
 
@@ -7583,6 +7639,12 @@ msgstr ""
7583
7639
  msgid "Updates all packages on the host(s)"
7584
7640
  msgstr ""
7585
7641
 
7642
+ msgid "Updates available: Component content view versions have been updated."
7643
+ msgstr ""
7644
+
7645
+ msgid "Updates available: Repositories and/or filters have changed."
7646
+ msgstr ""
7647
+
7586
7648
  msgid "Updating Package..."
7587
7649
  msgstr ""
7588
7650
 
@@ -7802,6 +7864,9 @@ msgstr ""
7802
7864
  msgid "View %{view} has not been promoted to %{env}"
7803
7865
  msgstr ""
7804
7866
 
7867
+ msgid "View Filters"
7868
+ msgstr ""
7869
+
7805
7870
  msgid "View Subscription Usage"
7806
7871
  msgstr ""
7807
7872
 
@@ -7814,6 +7879,9 @@ msgstr ""
7814
7879
  msgid "View by"
7815
7880
  msgstr ""
7816
7881
 
7882
+ msgid "View documentation"
7883
+ msgstr ""
7884
+
7817
7885
  msgid "View matching content"
7818
7886
  msgstr ""
7819
7887
 
@@ -7859,6 +7927,9 @@ msgstr ""
7859
7927
  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."
7860
7928
  msgstr ""
7861
7929
 
7930
+ msgid "Whether Simple Content Access should be enabled for the organization."
7931
+ msgstr ""
7932
+
7862
7933
  msgid "Whether or not the host collection may have unlimited hosts"
7863
7934
  msgstr ""
7864
7935
 
@@ -7871,6 +7942,9 @@ msgstr ""
7871
7942
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7872
7943
  msgstr ""
7873
7944
 
7945
+ msgid "Whether or not to return filters applied to the content view version"
7946
+ msgstr ""
7947
+
7874
7948
  msgid "Whether or not to show all results"
7875
7949
  msgstr ""
7876
7950
 
@@ -7916,31 +7990,19 @@ msgstr ""
7916
7990
  msgid "You currently don't have any ${selectedContentType}."
7917
7991
  msgstr ""
7918
7992
 
7919
- msgid "You currently don't have any Content views."
7920
- msgstr ""
7921
-
7922
7993
  msgid "You currently don't have any alternate content sources."
7923
7994
  msgstr ""
7924
7995
 
7925
- msgid "You currently don't have any filters for this content view."
7926
- msgstr ""
7927
-
7928
- msgid "You currently don't have any history for this content view."
7996
+ msgid "You currently don't have any related content views."
7929
7997
  msgstr ""
7930
7998
 
7931
7999
  msgid "You currently don't have any repositories associated with this content."
7932
8000
  msgstr ""
7933
8001
 
7934
- msgid "You currently don't have any repositories to add to this content view."
7935
- msgstr ""
7936
-
7937
8002
  msgid "You currently don't have any repositories to add to this filter."
7938
8003
  msgstr ""
7939
8004
 
7940
- msgid "You currently don't have any versions for this content view."
7941
- msgstr ""
7942
-
7943
- msgid "You currently don\\'t have any related content views."
8005
+ msgid "You currently have no content views to display"
7944
8006
  msgstr ""
7945
8007
 
7946
8008
  msgid "You do not have permissions to delete %s"
@@ -7997,9 +8059,6 @@ msgstr ""
7997
8059
  msgid "Yum"
7998
8060
  msgstr ""
7999
8061
 
8000
- msgid "Yum Metadata: %s"
8001
- msgstr ""
8002
-
8003
8062
  msgid "a content unit"
8004
8063
  msgstr ""
8005
8064
 
@@ -8162,6 +8221,9 @@ msgstr ""
8162
8221
  msgid "cannot contain more than %s characters"
8163
8222
  msgstr ""
8164
8223
 
8224
+ msgid "change the host's content source."
8225
+ msgstr ""
8226
+
8165
8227
  msgid "checking %s task status"
8166
8228
  msgstr ""
8167
8229
 
@@ -8177,9 +8239,6 @@ msgstr ""
8177
8239
  msgid "composite content view numeric identifier"
8178
8240
  msgstr ""
8179
8241
 
8180
- msgid "conditional package names to include in the package group"
8181
- msgstr ""
8182
-
8183
8242
  msgid "content release version"
8184
8243
  msgstr ""
8185
8244
 
@@ -8234,6 +8293,9 @@ msgstr ""
8234
8293
  msgid "content view versions to compare"
8235
8294
  msgstr ""
8236
8295
 
8296
+ msgid "create a custom product"
8297
+ msgstr ""
8298
+
8237
8299
  msgid "create a filter for a content view"
8238
8300
  msgstr ""
8239
8301
 
@@ -8243,9 +8305,6 @@ msgstr ""
8243
8305
  msgid "deb_ids is not an array"
8244
8306
  msgstr ""
8245
8307
 
8246
- msgid "default package names to include in the package group"
8247
- msgstr ""
8248
-
8249
8308
  msgid "delete a filter"
8250
8309
  msgstr ""
8251
8310
 
@@ -8477,9 +8536,6 @@ msgstr ""
8477
8536
  msgid "list of rpm filename strings to include in published version"
8478
8537
  msgstr ""
8479
8538
 
8480
- msgid "mandatory package names to include in the package group"
8481
- msgstr ""
8482
-
8483
8539
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8484
8540
  msgstr ""
8485
8541
 
@@ -8507,6 +8563,9 @@ msgstr ""
8507
8563
  msgid "must be one of: %s"
8508
8564
  msgstr ""
8509
8565
 
8566
+ msgid "must be true or false"
8567
+ msgstr ""
8568
+
8510
8569
  msgid "must be unique within one organization"
8511
8570
  msgstr ""
8512
8571
 
@@ -8534,9 +8593,6 @@ msgstr ""
8534
8593
  msgid "name"
8535
8594
  msgstr ""
8536
8595
 
8537
- msgid "name not defined."
8538
- msgstr ""
8539
-
8540
8596
  msgid "name of organization"
8541
8597
  msgstr ""
8542
8598
 
@@ -8582,21 +8638,12 @@ msgstr ""
8582
8638
  msgid "only show the repositories readable by this user with this username"
8583
8639
  msgstr ""
8584
8640
 
8585
- msgid "optional package names to include in the package group"
8586
- msgstr ""
8587
-
8588
8641
  msgid "organization ID"
8589
8642
  msgstr ""
8590
8643
 
8591
8644
  msgid "organization identifier"
8592
8645
  msgstr ""
8593
8646
 
8594
- msgid "package group description. Defaults to params[:name]"
8595
- msgstr ""
8596
-
8597
- msgid "package group name"
8598
- msgstr ""
8599
-
8600
8647
  msgid "package group: uuid"
8601
8648
  msgstr ""
8602
8649
 
@@ -8675,12 +8722,6 @@ msgstr ""
8675
8722
  msgid "repository source url"
8676
8723
  msgstr ""
8677
8724
 
8678
- msgid "repository_id"
8679
- msgstr ""
8680
-
8681
- msgid "repository_id not defined."
8682
- msgstr ""
8683
-
8684
8725
  msgid "root-node of collection contained in responses (default: 'results')"
8685
8726
  msgstr ""
8686
8727
 
@@ -8702,9 +8743,6 @@ msgstr ""
8702
8743
  msgid "service level"
8703
8744
  msgstr ""
8704
8745
 
8705
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8706
- msgstr ""
8707
-
8708
8746
  msgid "set true if you want to see only library environments"
8709
8747
  msgstr ""
8710
8748
 
@@ -8762,9 +8800,6 @@ msgstr ""
8762
8800
  msgid "true if this repository can be published via HTTP"
8763
8801
  msgstr ""
8764
8802
 
8765
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8766
- msgstr ""
8767
-
8768
8803
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8769
8804
  msgstr ""
8770
8805
 
@@ -8810,15 +8845,9 @@ msgstr ""
8810
8845
  msgid "waiting for %s to finish the task"
8811
8846
  msgstr ""
8812
8847
 
8813
- msgid "waiting for Pulp to finish the task"
8814
- msgstr ""
8815
-
8816
8848
  msgid "waiting for Pulp to finish the task %s"
8817
8849
  msgstr ""
8818
8850
 
8819
- msgid "waiting for Pulp to start the task"
8820
- msgstr ""
8821
-
8822
8851
  msgid "waiting for Pulp to start the task %s"
8823
8852
  msgstr ""
8824
8853
 
@@ -8840,6 +8869,9 @@ msgstr ""
8840
8869
  msgid "{0} items selected"
8841
8870
  msgstr ""
8842
8871
 
8872
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8873
+ msgstr ""
8874
+
8843
8875
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8844
8876
  msgstr ""
8845
8877