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