katello 4.5.1 → 4.8.0.rc2

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

Potentially problematic release.


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

Files changed (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/en/katello.po CHANGED
@@ -5,7 +5,7 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: katello 2.5.0\n"
8
+ "Project-Id-Version: katello 2.4.0-RC1\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "PO-Revision-Date: 2011-01-06 19:28-0700\n"
11
11
  "Last-Translator: Jason E. Rist <jrist@redhat.com>\n"
@@ -33,12 +33,21 @@ msgstr ""
33
33
  msgid " Content view updated"
34
34
  msgstr ""
35
35
 
36
+ msgid " DEBs"
37
+ msgstr ""
38
+
36
39
  msgid " Either select the latest content view or the content view version. Cannot set both."
37
40
  msgstr ""
38
41
 
39
42
  msgid " RPMs"
40
43
  msgstr ""
41
44
 
45
+ msgid " The base path can be a web address or a filesystem location."
46
+ msgstr ""
47
+
48
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
49
+ msgstr ""
50
+
42
51
  msgid " View task details "
43
52
  msgstr ""
44
53
 
@@ -54,10 +63,10 @@ msgstr ""
54
63
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
55
64
  msgstr ""
56
65
 
57
- msgid " content view is used in listed component content views. For more information, "
66
+ msgid " content view is used in listed composite content views."
58
67
  msgstr ""
59
68
 
60
- msgid " content view is used in listed composite content views."
69
+ msgid " content view is used in listed content views. For more information, "
61
70
  msgstr ""
62
71
 
63
72
  msgid " environment cannot be set to an environment already on its path"
@@ -69,9 +78,18 @@ msgstr ""
69
78
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
70
79
  msgstr ""
71
80
 
81
+ msgid " or any step on the left."
82
+ msgstr ""
83
+
84
+ msgid " to manage and promote content views, or select a different environment."
85
+ msgstr ""
86
+
72
87
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
73
88
  msgstr ""
74
89
 
90
+ msgid "${option}"
91
+ msgstr ""
92
+
75
93
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
76
94
  msgstr ""
77
95
 
@@ -107,6 +125,9 @@ msgstr ""
107
125
  msgid "%s ago"
108
126
  msgstr ""
109
127
 
128
+ msgid "%s guests"
129
+ msgstr ""
130
+
110
131
  msgid "%s has already been deleted"
111
132
  msgstr ""
112
133
 
@@ -314,9 +335,30 @@ msgstr ""
314
335
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
315
336
  msgstr ""
316
337
 
338
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
339
+ msgstr ""
340
+
341
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
342
+ msgstr ""
343
+
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
345
+ msgstr ""
346
+
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
354
+ msgstr ""
355
+
317
356
  msgid "(Orphaned)"
318
357
  msgstr ""
319
358
 
359
+ msgid "(unset)"
360
+ msgstr ""
361
+
320
362
  msgid ", and"
321
363
  msgstr ""
322
364
 
@@ -344,7 +386,7 @@ msgstr ""
344
386
  msgid "A backend service [ %s ] is unreachable"
345
387
  msgstr ""
346
388
 
347
- msgid "A content view can be added by using the \"Create content view\" button above."
389
+ msgid "A content view can be added by using the \"Create content view\" button below."
348
390
  msgstr ""
349
391
 
350
392
  msgid "A content_type must be provided."
@@ -365,6 +407,12 @@ msgstr ""
365
407
  msgid "A post-promotion summary of hosts with installable errata"
366
408
  msgstr ""
367
409
 
410
+ msgid "A remote execution job is in progress"
411
+ msgstr ""
412
+
413
+ msgid "A remote execution job is in progress."
414
+ msgstr ""
415
+
368
416
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
369
417
  msgstr ""
370
418
 
@@ -452,6 +500,9 @@ msgstr ""
452
500
  msgid "Add Bookmark"
453
501
  msgstr ""
454
502
 
503
+ msgid "Add DEB rule"
504
+ msgstr ""
505
+
455
506
  msgid "Add RPM rule"
456
507
  msgstr ""
457
508
 
@@ -461,13 +512,13 @@ msgstr ""
461
512
  msgid "Add a subscription to a host"
462
513
  msgstr ""
463
514
 
464
- msgid "Add component"
515
+ msgid "Add an alternate content source"
465
516
  msgstr ""
466
517
 
467
- msgid "Add component content views"
518
+ msgid "Add components to the content view"
468
519
  msgstr ""
469
520
 
470
- msgid "Add components to the content view"
521
+ msgid "Add content view"
471
522
  msgstr ""
472
523
 
473
524
  msgid "Add content views"
@@ -482,9 +533,6 @@ msgstr ""
482
533
  msgid "Add filter rule"
483
534
  msgstr ""
484
535
 
485
- msgid "Add filters using the 'Add filter' button above."
486
- msgstr ""
487
-
488
536
  msgid "Add host to collections"
489
537
  msgstr ""
490
538
 
@@ -524,12 +572,18 @@ msgstr ""
524
572
  msgid "Add subscriptions to one or more hosts"
525
573
  msgstr ""
526
574
 
527
- msgid "Add to this filter using the 'Add RPM rule' button."
575
+ msgid "Add to a host collection"
576
+ msgstr ""
577
+
578
+ msgid "Add to this filter using the 'Add Deb rule' button."
528
579
  msgstr ""
529
580
 
530
581
  msgid "Add to this filter using the 'Add filter rule' button."
531
582
  msgstr ""
532
583
 
584
+ msgid "Add-ons"
585
+ msgstr ""
586
+
533
587
  msgid "Added"
534
588
  msgstr ""
535
589
 
@@ -548,6 +602,9 @@ msgstr ""
548
602
  msgid "Addons"
549
603
  msgstr ""
550
604
 
605
+ msgid "Affected Repositories"
606
+ msgstr ""
607
+
551
608
  msgid "Affected repositories"
552
609
  msgstr ""
553
610
 
@@ -578,6 +635,9 @@ msgstr ""
578
635
  msgid "All subpaths must have a slash at the end and none at the front"
579
636
  msgstr ""
580
637
 
638
+ msgid "All up to date"
639
+ msgstr ""
640
+
581
641
  msgid "All versions"
582
642
  msgstr ""
583
643
 
@@ -587,6 +647,9 @@ msgstr ""
587
647
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
588
648
  msgstr ""
589
649
 
650
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
651
+ msgstr ""
652
+
590
653
  msgid "Allow deleting repositories in published content views"
591
654
  msgstr ""
592
655
 
@@ -596,6 +659,9 @@ msgstr ""
596
659
  msgid "Allow hosts to re-register themselves only when they are in build mode"
597
660
  msgstr ""
598
661
 
662
+ msgid "Allow multiple content views"
663
+ msgstr ""
664
+
599
665
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
600
666
  msgstr ""
601
667
 
@@ -605,6 +671,9 @@ msgstr ""
605
671
  msgid "Alter a host's host collections"
606
672
  msgstr ""
607
673
 
674
+ msgid "Alternate Content Source HTTP Proxy"
675
+ msgstr ""
676
+
608
677
  msgid "Alternate Content Sources"
609
678
  msgstr ""
610
679
 
@@ -617,7 +686,13 @@ msgstr ""
617
686
  msgid "Alternate content source deleted"
618
687
  msgstr ""
619
688
 
620
- msgid "Alternate content sources"
689
+ msgid "Alternate content source edited"
690
+ msgstr ""
691
+
692
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
693
+ msgstr ""
694
+
695
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
621
696
  msgstr ""
622
697
 
623
698
  msgid "Always Use Latest (currently %{version})"
@@ -629,7 +704,7 @@ msgstr ""
629
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."
630
705
  msgstr ""
631
706
 
632
- msgid "An alternate content source can be added by using the \"Add source\" button above."
707
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
633
708
  msgstr ""
634
709
 
635
710
  msgid "An environment is missing a prior"
@@ -654,9 +729,6 @@ msgstr ""
654
729
  msgid "Ansible Collection"
655
730
  msgstr ""
656
731
 
657
- msgid "Ansible Collection Details"
658
- msgstr ""
659
-
660
732
  msgid "Ansible Collections"
661
733
  msgstr ""
662
734
 
@@ -669,9 +741,15 @@ msgstr ""
669
741
  msgid "Applicability Batch Size"
670
742
  msgstr ""
671
743
 
744
+ msgid "Applicable"
745
+ msgstr ""
746
+
672
747
  msgid "Applicable Content Hosts"
673
748
  msgstr ""
674
749
 
750
+ msgid "Applicable errata apply to at least one package installed on the host."
751
+ msgstr ""
752
+
675
753
  msgid "Application"
676
754
  msgstr ""
677
755
 
@@ -705,6 +783,9 @@ msgstr ""
705
783
  msgid "Architecture of content in the repository"
706
784
  msgstr ""
707
785
 
786
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
787
+ msgstr ""
788
+
708
789
  msgid "Architecture(s)"
709
790
  msgstr ""
710
791
 
@@ -809,6 +890,9 @@ msgstr ""
809
890
  msgid "Auth URL requires Auth token be set."
810
891
  msgstr ""
811
892
 
893
+ msgid "Authentication type"
894
+ msgstr ""
895
+
812
896
  msgid "Author"
813
897
  msgstr ""
814
898
 
@@ -830,6 +914,9 @@ msgstr ""
830
914
  msgid "Autosearch delay"
831
915
  msgstr ""
832
916
 
917
+ msgid "Available"
918
+ msgstr ""
919
+
833
920
  msgid "Available Entitlements"
834
921
  msgstr ""
835
922
 
@@ -839,9 +926,15 @@ msgstr ""
839
926
  msgid "Available Schema Versions"
840
927
  msgstr ""
841
928
 
929
+ msgid "Back"
930
+ msgstr ""
931
+
842
932
  msgid "Backend System Status"
843
933
  msgstr ""
844
934
 
935
+ msgid "Base URL"
936
+ msgstr ""
937
+
845
938
  msgid "Base URL for finding alternate content"
846
939
  msgstr ""
847
940
 
@@ -887,6 +980,9 @@ msgstr ""
887
980
  msgid "Bookmarks marked as public are available to all users"
888
981
  msgstr ""
889
982
 
983
+ msgid "Both"
984
+ msgstr ""
985
+
890
986
  msgid "Both major and minor parameters have to be used to override a CV version"
891
987
  msgstr ""
892
988
 
@@ -899,6 +995,12 @@ msgstr ""
899
995
  msgid "Bugs"
900
996
  msgstr ""
901
997
 
998
+ msgid "Bulk alternate content source delete has started."
999
+ msgstr ""
1000
+
1001
+ msgid "Bulk alternate content source refresh has started."
1002
+ msgstr ""
1003
+
902
1004
  msgid "Bulk generate applicability for host %s"
903
1005
  msgstr ""
904
1006
 
@@ -983,6 +1085,9 @@ msgstr ""
983
1085
  msgid "Cancelled."
984
1086
  msgstr ""
985
1087
 
1088
+ msgid "Candlepin"
1089
+ msgstr ""
1090
+
986
1091
  msgid "Candlepin Event"
987
1092
  msgstr ""
988
1093
 
@@ -995,6 +1100,9 @@ msgstr ""
995
1100
  msgid "Candlepin is not running properly"
996
1101
  msgstr ""
997
1102
 
1103
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1104
+ msgstr ""
1105
+
998
1106
  msgid "Cannot add %s repositories to a content view."
999
1107
  msgstr ""
1000
1108
 
@@ -1013,6 +1121,9 @@ msgstr ""
1013
1121
  msgid "Cannot add default content view to composite content view"
1014
1122
  msgstr ""
1015
1123
 
1124
+ msgid "Cannot add generated content view versions to composite content view"
1125
+ msgstr ""
1126
+
1016
1127
  msgid "Cannot add repositories to a composite content view"
1017
1128
  msgstr ""
1018
1129
 
@@ -1106,7 +1217,7 @@ msgstr ""
1106
1217
  msgid "Cannot set auto publish to a non-composite content view"
1107
1218
  msgstr ""
1108
1219
 
1109
- msgid "Cannot skip metadata check on non-yum repositories."
1220
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1110
1221
  msgstr ""
1111
1222
 
1112
1223
  msgid "Cannot specify components for non-composite views"
@@ -1142,6 +1253,9 @@ msgstr ""
1142
1253
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1143
1254
  msgstr ""
1144
1255
 
1256
+ msgid "Check if the specified organization has Simple Content Access enabled"
1257
+ msgstr ""
1258
+
1145
1259
  msgid "Check if the specified organization is eligible for Simple Content Access"
1146
1260
  msgstr ""
1147
1261
 
@@ -1163,9 +1277,18 @@ msgstr ""
1163
1277
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1164
1278
  msgstr ""
1165
1279
 
1280
+ msgid "Choose content credentials if required for this RHUI source."
1281
+ msgstr ""
1282
+
1166
1283
  msgid "Clear any previous registration and run subscription-manager with --force."
1167
1284
  msgstr ""
1168
1285
 
1286
+ msgid "Clear filters"
1287
+ msgstr ""
1288
+
1289
+ msgid "Clear search"
1290
+ msgstr ""
1291
+
1169
1292
  msgid "Click here to go to the tasks page for the task."
1170
1293
  msgstr ""
1171
1294
 
@@ -1187,6 +1310,9 @@ msgstr ""
1187
1310
  msgid "Combined Profile Update for %s"
1188
1311
  msgstr ""
1189
1312
 
1313
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1314
+ msgstr ""
1315
+
1190
1316
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1191
1317
  msgstr ""
1192
1318
 
@@ -1196,16 +1322,16 @@ msgstr ""
1196
1322
  msgid "Comma-separated list of tags to sync for a container image repository"
1197
1323
  msgstr ""
1198
1324
 
1199
- msgid "Component"
1325
+ msgid "Compare"
1200
1326
  msgstr ""
1201
1327
 
1202
- msgid "Component Content View"
1328
+ msgid "Component"
1203
1329
  msgstr ""
1204
1330
 
1205
- msgid "Component content view"
1331
+ msgid "Component Content View"
1206
1332
  msgstr ""
1207
1333
 
1208
- msgid "Component content views"
1334
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1209
1335
  msgstr ""
1210
1336
 
1211
1337
  msgid "Components"
@@ -1238,7 +1364,7 @@ msgstr ""
1238
1364
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1239
1365
  msgstr ""
1240
1366
 
1241
- msgid "Consisting of multiple component content views"
1367
+ msgid "Consisting of multiple content views"
1242
1368
  msgstr ""
1243
1369
 
1244
1370
  msgid "Consists of content views"
@@ -1358,7 +1484,7 @@ msgstr ""
1358
1484
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1359
1485
  msgstr ""
1360
1486
 
1361
- msgid "Content View and Environment not set for registration."
1487
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1362
1488
  msgstr ""
1363
1489
 
1364
1490
  msgid "Content View id"
@@ -1370,6 +1496,21 @@ msgstr ""
1370
1496
  msgid "Content Views"
1371
1497
  msgstr ""
1372
1498
 
1499
+ msgid "Content cannot be imported into a Composite Content View. "
1500
+ msgstr ""
1501
+
1502
+ msgid "Content credential"
1503
+ msgstr ""
1504
+
1505
+ msgid "Content credentials"
1506
+ msgstr ""
1507
+
1508
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1509
+ msgstr ""
1510
+
1511
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1512
+ msgstr ""
1513
+
1373
1514
  msgid "Content files to upload. Can be a single file or array of files."
1374
1515
  msgstr ""
1375
1516
 
@@ -1388,10 +1529,10 @@ msgstr ""
1388
1529
  msgid "Content override search parameters"
1389
1530
  msgstr ""
1390
1531
 
1391
- msgid "Content source ID"
1532
+ msgid "Content source"
1392
1533
  msgstr ""
1393
1534
 
1394
- msgid "Content source successfully updated."
1535
+ msgid "Content source ID"
1395
1536
  msgstr ""
1396
1537
 
1397
1538
  msgid "Content source was not set for host '%{host}'"
@@ -1412,6 +1553,9 @@ msgstr ""
1412
1553
  msgid "Content view ${name} created"
1413
1554
  msgstr ""
1414
1555
 
1556
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1557
+ msgstr ""
1558
+
1415
1559
  msgid "Content view '%{view}' is not in environment '%{env}'"
1416
1560
  msgstr ""
1417
1561
 
@@ -1421,9 +1565,18 @@ msgstr ""
1421
1565
  msgid "Content view ID"
1422
1566
  msgstr ""
1423
1567
 
1568
+ msgid "Content view and environment not set for registration."
1569
+ msgstr ""
1570
+
1424
1571
  msgid "Content view details"
1425
1572
  msgstr ""
1426
1573
 
1574
+ msgid "Content view environments and activation key must all belong to the same organization"
1575
+ msgstr ""
1576
+
1577
+ msgid "Content view environments must have both a content view and an environment"
1578
+ msgstr ""
1579
+
1427
1580
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1428
1581
  msgstr ""
1429
1582
 
@@ -1433,6 +1586,9 @@ msgstr ""
1433
1586
  msgid "Content view label"
1434
1587
  msgstr ""
1435
1588
 
1589
+ msgid "Content view must be specified"
1590
+ msgstr ""
1591
+
1436
1592
  msgid "Content view name"
1437
1593
  msgstr ""
1438
1594
 
@@ -1454,6 +1610,9 @@ msgstr ""
1454
1610
  msgid "Content views"
1455
1611
  msgstr ""
1456
1612
 
1613
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1614
+ msgstr ""
1615
+
1457
1616
  msgid "Content_Host_Status"
1458
1617
  msgstr ""
1459
1618
 
@@ -1487,6 +1646,9 @@ msgstr ""
1487
1646
  msgid "Copy version units to library"
1488
1647
  msgstr ""
1489
1648
 
1649
+ msgid "Cores per socket"
1650
+ msgstr ""
1651
+
1490
1652
  msgid "Cores: %s"
1491
1653
  msgstr ""
1492
1654
 
@@ -1592,13 +1754,19 @@ msgstr ""
1592
1754
  msgid "Couldn't find product with id '%s'"
1593
1755
  msgstr ""
1594
1756
 
1757
+ msgid "Couldn't find products with id '%s'"
1758
+ msgstr ""
1759
+
1595
1760
  msgid "Couldn't find repository '%s'"
1596
1761
  msgstr ""
1597
1762
 
1598
1763
  msgid "Couldn't find smart proxies with id '%s'"
1599
1764
  msgstr ""
1600
1765
 
1601
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1766
+ msgid "Couldn't find smart proxies with name '%s'"
1767
+ msgstr ""
1768
+
1769
+ msgid "Couldn't find specified content view and lifecycle environment."
1602
1770
  msgstr ""
1603
1771
 
1604
1772
  msgid "Couldn't find subject of synchronization"
@@ -1610,6 +1778,9 @@ msgstr ""
1610
1778
  msgid "Create"
1611
1779
  msgstr ""
1612
1780
 
1781
+ msgid "Create ACS"
1782
+ msgstr ""
1783
+
1613
1784
  msgid "Create Alternate Content Source"
1614
1785
  msgstr ""
1615
1786
 
@@ -1625,12 +1796,18 @@ msgstr ""
1625
1796
  msgid "Create Repositories"
1626
1797
  msgstr ""
1627
1798
 
1799
+ msgid "Create Syncable Export History"
1800
+ msgstr ""
1801
+
1628
1802
  msgid "Create a Content Credential"
1629
1803
  msgstr ""
1630
1804
 
1631
1805
  msgid "Create a content view"
1632
1806
  msgstr ""
1633
1807
 
1808
+ msgid "Create a custom product"
1809
+ msgstr ""
1810
+
1634
1811
  msgid "Create a custom repository"
1635
1812
  msgstr ""
1636
1813
 
@@ -1649,10 +1826,10 @@ msgstr ""
1649
1826
  msgid "Create a sync plan"
1650
1827
  msgstr ""
1651
1828
 
1652
- msgid "Create an ACS"
1829
+ msgid "Create an activation key"
1653
1830
  msgstr ""
1654
1831
 
1655
- msgid "Create an activation key"
1832
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1656
1833
  msgstr ""
1657
1834
 
1658
1835
  msgid "Create an environment"
@@ -1664,22 +1841,37 @@ msgstr ""
1664
1841
  msgid "Create an upload request"
1665
1842
  msgstr ""
1666
1843
 
1844
+ msgid "Create content credentials with the generated SSL certificate and key."
1845
+ msgstr ""
1846
+
1667
1847
  msgid "Create content view"
1668
1848
  msgstr ""
1669
1849
 
1670
1850
  msgid "Create filter"
1671
1851
  msgstr ""
1672
1852
 
1853
+ msgid "Create host collection"
1854
+ msgstr ""
1855
+
1673
1856
  msgid "Create organization"
1674
1857
  msgstr ""
1675
1858
 
1859
+ msgid "Create package filter rule"
1860
+ msgstr ""
1861
+
1862
+ msgid "Create rule"
1863
+ msgstr ""
1864
+
1865
+ msgid "Credentials"
1866
+ msgstr ""
1867
+
1676
1868
  msgid "Critical"
1677
1869
  msgstr ""
1678
1870
 
1679
1871
  msgid "Cron expression is not valid!"
1680
1872
  msgstr ""
1681
1873
 
1682
- msgid "Current organization has no manifest imported."
1874
+ msgid "Current organization does not have a manifest imported."
1683
1875
  msgstr ""
1684
1876
 
1685
1877
  msgid "Current organization is not set."
@@ -1688,6 +1880,12 @@ msgstr ""
1688
1880
  msgid "Current organization not set."
1689
1881
  msgstr ""
1690
1882
 
1883
+ msgid "Custom"
1884
+ msgstr ""
1885
+
1886
+ msgid "Custom CDN"
1887
+ msgstr ""
1888
+
1691
1889
  msgid "Custom Content Repositories"
1692
1890
  msgstr ""
1693
1891
 
@@ -1700,6 +1898,12 @@ msgstr ""
1700
1898
  msgid "Customize with Rex"
1701
1899
  msgstr ""
1702
1900
 
1901
+ msgid "DEB name"
1902
+ msgstr ""
1903
+
1904
+ msgid "DEB package updates"
1905
+ msgstr ""
1906
+
1703
1907
  msgid "Database connection"
1704
1908
  msgstr ""
1705
1909
 
@@ -1715,12 +1919,18 @@ msgstr ""
1715
1919
  msgid "Days from Now"
1716
1920
  msgstr ""
1717
1921
 
1922
+ msgid "Deb"
1923
+ msgstr ""
1924
+
1718
1925
  msgid "Deb Package"
1719
1926
  msgstr ""
1720
1927
 
1721
1928
  msgid "Deb Packages"
1722
1929
  msgstr ""
1723
1930
 
1931
+ msgid "Deb name"
1932
+ msgstr ""
1933
+
1724
1934
  msgid "Deb package identifiers to filter content by"
1725
1935
  msgstr ""
1726
1936
 
@@ -1829,6 +2039,12 @@ msgstr ""
1829
2039
  msgid "Default user data for new Operating Systems created from synced content"
1830
2040
  msgstr ""
1831
2041
 
2042
+ msgid "Define RHUI repository paths with guided steps."
2043
+ msgstr ""
2044
+
2045
+ msgid "Define repositories structured under a common web or filesystem path."
2046
+ msgstr ""
2047
+
1832
2048
  msgid "Delete"
1833
2049
  msgstr ""
1834
2050
 
@@ -1967,7 +2183,7 @@ msgstr ""
1967
2183
  msgid "Destroy an activation key"
1968
2184
  msgstr ""
1969
2185
 
1970
- msgid "Destroy an alternate content source"
2186
+ msgid "Destroy an alternate content source."
1971
2187
  msgstr ""
1972
2188
 
1973
2189
  msgid "Destroy an environment"
@@ -1976,6 +2192,9 @@ msgstr ""
1976
2192
  msgid "Destroy an environment in an organization"
1977
2193
  msgstr ""
1978
2194
 
2195
+ msgid "Destroy one or more alternate content sources"
2196
+ msgstr ""
2197
+
1979
2198
  msgid "Destroy one or more hosts"
1980
2199
  msgstr ""
1981
2200
 
@@ -2027,6 +2246,9 @@ msgstr ""
2027
2246
  msgid "Discover Repositories"
2028
2247
  msgstr ""
2029
2248
 
2249
+ msgid "Distribute archived content view versions"
2250
+ msgstr ""
2251
+
2030
2252
  msgid "Do not include this array of content views"
2031
2253
  msgstr ""
2032
2254
 
@@ -2063,15 +2285,36 @@ msgstr ""
2063
2285
  msgid "Edit RPM rule"
2064
2286
  msgstr ""
2065
2287
 
2288
+ msgid "Edit URL and subpaths"
2289
+ msgstr ""
2290
+
2066
2291
  msgid "Edit content view assignment"
2067
2292
  msgstr ""
2068
2293
 
2294
+ msgid "Edit credentials"
2295
+ msgstr ""
2296
+
2297
+ msgid "Edit details"
2298
+ msgstr ""
2299
+
2069
2300
  msgid "Edit filter rule"
2070
2301
  msgstr ""
2071
2302
 
2303
+ msgid "Edit package filter rule"
2304
+ msgstr ""
2305
+
2306
+ msgid "Edit products"
2307
+ msgstr ""
2308
+
2072
2309
  msgid "Edit rule"
2073
2310
  msgstr ""
2074
2311
 
2312
+ msgid "Edit smart proxies"
2313
+ msgstr ""
2314
+
2315
+ msgid "Edit system purpose attributes"
2316
+ msgstr ""
2317
+
2075
2318
  msgid "Editing Entitlements"
2076
2319
  msgstr ""
2077
2320
 
@@ -2093,9 +2336,15 @@ msgstr ""
2093
2336
  msgid "Either set the latest content view or the content view version. Cannot set both"
2094
2337
  msgstr ""
2095
2338
 
2339
+ msgid "Empty content view versions"
2340
+ msgstr ""
2341
+
2096
2342
  msgid "Enable"
2097
2343
  msgstr ""
2098
2344
 
2345
+ msgid "Enable Red Hat repositories"
2346
+ msgstr ""
2347
+
2099
2348
  msgid "Enable Simple Content Access"
2100
2349
  msgstr ""
2101
2350
 
@@ -2108,6 +2357,9 @@ msgstr ""
2108
2357
  msgid "Enable a repository from the set"
2109
2358
  msgstr ""
2110
2359
 
2360
+ msgid "Enable repository sets"
2361
+ msgstr ""
2362
+
2111
2363
  msgid "Enable simple content access for a manifest"
2112
2364
  msgstr ""
2113
2365
 
@@ -2141,9 +2393,18 @@ msgstr ""
2141
2393
  msgid "Enter a name"
2142
2394
  msgstr ""
2143
2395
 
2396
+ msgid "Enter a name for your source."
2397
+ msgstr ""
2398
+
2144
2399
  msgid "Enter a valid date: MM/DD/YYYY"
2145
2400
  msgstr ""
2146
2401
 
2402
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2403
+ msgstr ""
2404
+
2405
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2406
+ msgstr ""
2407
+
2147
2408
  msgid "Entitlements"
2148
2409
  msgstr ""
2149
2410
 
@@ -2237,10 +2498,10 @@ msgstr ""
2237
2498
  msgid "Exclude"
2238
2499
  msgstr ""
2239
2500
 
2240
- msgid "Exclude all Module Streams with no errata."
2501
+ msgid "Exclude all RPMs not associated to any errata"
2241
2502
  msgstr ""
2242
2503
 
2243
- msgid "Exclude all RPMs with no errata."
2504
+ msgid "Exclude all module streams not associated to any errata"
2244
2505
  msgstr ""
2245
2506
 
2246
2507
  msgid "Exclude filter"
@@ -2285,6 +2546,11 @@ msgstr ""
2285
2546
  msgid "Export as CSV"
2286
2547
  msgstr ""
2287
2548
 
2549
+ msgid ""
2550
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2551
+ " Defaults to importable."
2552
+ msgstr ""
2553
+
2288
2554
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2289
2555
  msgstr ""
2290
2556
 
@@ -2335,6 +2601,9 @@ msgstr ""
2335
2601
  msgid "Fetch traces for one or more hosts"
2336
2602
  msgstr ""
2337
2603
 
2604
+ msgid "Fetching content credentials"
2605
+ msgstr ""
2606
+
2338
2607
  msgid "Field to sort the results on"
2339
2608
  msgstr ""
2340
2609
 
@@ -2392,6 +2661,9 @@ msgstr ""
2392
2661
  msgid "Filter products by sync plan id"
2393
2662
  msgstr ""
2394
2663
 
2664
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2665
+ msgstr ""
2666
+
2395
2667
  msgid "Filter rule added"
2396
2668
  msgstr ""
2397
2669
 
@@ -2425,6 +2697,12 @@ msgstr ""
2425
2697
  msgid "Filters deleted"
2426
2698
  msgstr ""
2427
2699
 
2700
+ msgid "Filters will appear here when the filter is created."
2701
+ msgstr ""
2702
+
2703
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2704
+ msgstr ""
2705
+
2428
2706
  msgid "Finish"
2429
2707
  msgstr ""
2430
2708
 
@@ -2466,7 +2744,7 @@ msgstr ""
2466
2744
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2467
2745
  msgstr ""
2468
2746
 
2469
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2747
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2470
2748
  msgstr ""
2471
2749
 
2472
2750
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2484,6 +2762,9 @@ msgstr ""
2484
2762
  msgid "GPG Key URL"
2485
2763
  msgstr ""
2486
2764
 
2765
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2766
+ msgstr ""
2767
+
2487
2768
  msgid "Generate and Download"
2488
2769
  msgstr ""
2489
2770
 
@@ -2496,7 +2777,7 @@ msgstr ""
2496
2777
  msgid "Generated"
2497
2778
  msgstr ""
2498
2779
 
2499
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2780
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2500
2781
  msgstr ""
2501
2782
 
2502
2783
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2529,6 +2810,9 @@ msgstr ""
2529
2810
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2530
2811
  msgstr ""
2531
2812
 
2813
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2814
+ msgstr ""
2815
+
2532
2816
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2533
2817
  msgstr ""
2534
2818
 
@@ -2559,6 +2843,9 @@ msgstr ""
2559
2843
  msgid "HTTP Proxy identifier to associated"
2560
2844
  msgstr ""
2561
2845
 
2846
+ msgid "HW properties"
2847
+ msgstr ""
2848
+
2562
2849
  msgid "Has to be > 0"
2563
2850
  msgstr ""
2564
2851
 
@@ -2637,6 +2924,9 @@ msgstr ""
2637
2924
  msgid "Host collections updated"
2638
2925
  msgstr ""
2639
2926
 
2927
+ msgid "Host configurations are not updated yet"
2928
+ msgstr ""
2929
+
2640
2930
  msgid "Host content and subscription details"
2641
2931
  msgstr ""
2642
2932
 
@@ -2688,6 +2978,9 @@ msgstr ""
2688
2978
  msgid "Hosts"
2689
2979
  msgstr ""
2690
2980
 
2981
+ msgid "Hosts to update"
2982
+ msgstr ""
2983
+
2691
2984
  msgid "Hosts with Installable Errata"
2692
2985
  msgstr ""
2693
2986
 
@@ -2766,7 +3059,7 @@ msgstr ""
2766
3059
  msgid "ID: %s doesn't exist "
2767
3060
  msgstr ""
2768
3061
 
2769
- msgid "Id"
3062
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
2770
3063
  msgstr ""
2771
3064
 
2772
3065
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2784,6 +3077,9 @@ msgstr ""
2784
3077
  msgid "Id of an erratum to find repositories that contain the erratum"
2785
3078
  msgstr ""
2786
3079
 
3080
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3081
+ msgstr ""
3082
+
2787
3083
  msgid "Id of the content host"
2788
3084
  msgstr ""
2789
3085
 
@@ -2856,6 +3152,9 @@ msgstr ""
2856
3152
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2857
3153
  msgstr ""
2858
3154
 
3155
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3156
+ msgstr ""
3157
+
2859
3158
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2860
3159
  msgstr ""
2861
3160
 
@@ -2868,6 +3167,9 @@ msgstr ""
2868
3167
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2869
3168
  msgstr ""
2870
3169
 
3170
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3171
+ msgstr ""
3172
+
2871
3173
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2872
3174
  msgstr ""
2873
3175
 
@@ -2889,6 +3191,9 @@ msgstr ""
2889
3191
  msgid "Ignorable content can be only set for Yum repositories."
2890
3192
  msgstr ""
2891
3193
 
3194
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3195
+ msgstr ""
3196
+
2892
3197
  msgid "Ignore errors"
2893
3198
  msgstr ""
2894
3199
 
@@ -2901,6 +3206,9 @@ msgstr ""
2901
3206
  msgid "Ignore subscriptions that are unavailable to the specified host"
2902
3207
  msgstr ""
2903
3208
 
3209
+ msgid "Ignored hosts"
3210
+ msgstr ""
3211
+
2904
3212
  msgid "Immediate"
2905
3213
  msgstr ""
2906
3214
 
@@ -2985,10 +3293,10 @@ msgstr ""
2985
3293
  msgid "Include"
2986
3294
  msgstr ""
2987
3295
 
2988
- msgid "Include all Module Streams with no errata."
3296
+ msgid "Include all RPMs not associated to any errata"
2989
3297
  msgstr ""
2990
3298
 
2991
- msgid "Include all RPMs with no errata."
3299
+ msgid "Include all module streams not associated to any errata"
2992
3300
  msgstr ""
2993
3301
 
2994
3302
  msgid "Include content views generated by imports/exports. Defaults to false"
@@ -3114,12 +3422,15 @@ msgstr ""
3114
3422
  msgid "Installable"
3115
3423
  msgstr ""
3116
3424
 
3117
- msgid "Installable errata"
3425
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3118
3426
  msgstr ""
3119
3427
 
3120
3428
  msgid "Installable errata from content view"
3121
3429
  msgstr ""
3122
3430
 
3431
+ msgid "Installable updates"
3432
+ msgstr ""
3433
+
3123
3434
  msgid "Installation of errata requested: %{errata}"
3124
3435
  msgstr ""
3125
3436
 
@@ -3132,6 +3443,9 @@ msgstr ""
3132
3443
  msgid "Installation status"
3133
3444
  msgstr ""
3134
3445
 
3446
+ msgid "Installed"
3447
+ msgstr ""
3448
+
3135
3449
  msgid "Installed Packages"
3136
3450
  msgstr ""
3137
3451
 
@@ -3177,9 +3491,6 @@ msgstr ""
3177
3491
  msgid "Invalid"
3178
3492
  msgstr ""
3179
3493
 
3180
- msgid "Invalid SSL CA certificate given for CDN"
3181
- msgstr ""
3182
-
3183
3494
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3184
3495
  msgstr ""
3185
3496
 
@@ -3207,6 +3518,9 @@ msgstr ""
3207
3518
  msgid "Invalid event_type %s"
3208
3519
  msgstr ""
3209
3520
 
3521
+ msgid "Invalid export format provided. Format must be one of %s "
3522
+ msgstr ""
3523
+
3210
3524
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3211
3525
  msgstr ""
3212
3526
 
@@ -3225,6 +3539,15 @@ msgstr ""
3225
3539
  msgid "Invalid params provided - date_type must be one of %s"
3226
3540
  msgstr ""
3227
3541
 
3542
+ msgid "Invalid params provided - with_content must be one of %s"
3543
+ msgstr ""
3544
+
3545
+ msgid "Invalid path provided. Content can be only imported from file system. "
3546
+ msgstr ""
3547
+
3548
+ msgid "Invalid release version: [%s]"
3549
+ msgstr ""
3550
+
3228
3551
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3229
3552
  msgstr ""
3230
3553
 
@@ -3243,7 +3566,13 @@ msgstr ""
3243
3566
  msgid "Issued from"
3244
3567
  msgstr ""
3245
3568
 
3246
- msgid "Job ${description} has started."
3569
+ msgid "Items will appear here when a filter rule is added."
3570
+ msgstr ""
3571
+
3572
+ msgid "Job '${description}' completed"
3573
+ msgstr ""
3574
+
3575
+ msgid "Job '${description}' has started."
3247
3576
  msgstr ""
3248
3577
 
3249
3578
  msgid "Katello ID of local pool to update"
@@ -3315,9 +3644,21 @@ msgstr ""
3315
3644
  msgid "Label of the content view"
3316
3645
  msgstr ""
3317
3646
 
3647
+ msgid "Last check-in:"
3648
+ msgstr ""
3649
+
3650
+ msgid "Last checkin"
3651
+ msgstr ""
3652
+
3318
3653
  msgid "Last published"
3319
3654
  msgstr ""
3320
3655
 
3656
+ msgid "Last refresh"
3657
+ msgstr ""
3658
+
3659
+ msgid "Last refresh :"
3660
+ msgstr ""
3661
+
3321
3662
  msgid "Last task"
3322
3663
  msgstr ""
3323
3664
 
@@ -3333,6 +3674,9 @@ msgstr ""
3333
3674
  msgid "Learn more about adding Subscription Manifests"
3334
3675
  msgstr ""
3335
3676
 
3677
+ msgid "Legacy content host UI"
3678
+ msgstr ""
3679
+
3336
3680
  msgid "Less than"
3337
3681
  msgstr ""
3338
3682
 
@@ -3378,6 +3722,9 @@ msgstr ""
3378
3722
  msgid "Lifecycle environment for the host."
3379
3723
  msgstr ""
3380
3724
 
3725
+ msgid "Lifecycle environment must be specified"
3726
+ msgstr ""
3727
+
3381
3728
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3382
3729
  msgstr ""
3383
3730
 
@@ -3399,6 +3746,9 @@ msgstr ""
3399
3746
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3400
3747
  msgstr ""
3401
3748
 
3749
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3750
+ msgstr ""
3751
+
3402
3752
  msgid "Limit to environment"
3403
3753
  msgstr ""
3404
3754
 
@@ -3429,6 +3779,9 @@ msgstr ""
3429
3779
  msgid "List all organizations"
3430
3780
  msgstr ""
3431
3781
 
3782
+ msgid "List alternate content sources."
3783
+ msgstr ""
3784
+
3432
3785
  msgid "List an activation key's subscriptions"
3433
3786
  msgstr ""
3434
3787
 
@@ -3498,7 +3851,7 @@ msgstr ""
3498
3851
  msgid "List of Products for sync plan"
3499
3852
  msgstr ""
3500
3853
 
3501
- msgid "List of alternate_content_sources"
3854
+ msgid "List of alternate content source IDs"
3502
3855
  msgstr ""
3503
3856
 
3504
3857
  msgid "List of component content view version ids for composite views"
@@ -3591,6 +3944,9 @@ msgstr ""
3591
3944
  msgid "List of repository ids"
3592
3945
  msgstr ""
3593
3946
 
3947
+ msgid "List of resources types that will be automatically associated"
3948
+ msgstr ""
3949
+
3594
3950
  msgid "List of subscription products in a subscription"
3595
3951
  msgstr ""
3596
3952
 
@@ -3696,6 +4052,12 @@ msgstr ""
3696
4052
  msgid "Manifest refreshed"
3697
4053
  msgstr ""
3698
4054
 
4055
+ msgid "Manual"
4056
+ msgstr ""
4057
+
4058
+ msgid "Manual authentication"
4059
+ msgstr ""
4060
+
3699
4061
  msgid "Mark Content Host Statuses as Unknown for %s"
3700
4062
  msgstr ""
3701
4063
 
@@ -3759,6 +4121,9 @@ msgstr ""
3759
4121
  msgid "Missing arguments %{substitutions} for %{content_url}"
3760
4122
  msgstr ""
3761
4123
 
4124
+ msgid "Model"
4125
+ msgstr ""
4126
+
3762
4127
  msgid "Moderate"
3763
4128
  msgstr ""
3764
4129
 
@@ -3780,7 +4145,7 @@ msgstr ""
3780
4145
  msgid "Module streams"
3781
4146
  msgstr ""
3782
4147
 
3783
- msgid "Module streams will appear here when available."
4148
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3784
4149
  msgstr ""
3785
4150
 
3786
4151
  msgid "Multi-entitlement"
@@ -3798,11 +4163,19 @@ msgstr ""
3798
4163
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3799
4164
  msgstr ""
3800
4165
 
4166
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4167
+ msgstr ""
4168
+
3801
4169
  msgid ""
3802
4170
  "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"
3803
4171
  " %{repos}"
3804
4172
  msgstr ""
3805
4173
 
4174
+ msgid ""
4175
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4176
+ " %{repos}"
4177
+ msgstr ""
4178
+
3806
4179
  msgid ""
3807
4180
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3808
4181
  " %{repos}"
@@ -3814,6 +4187,9 @@ msgstr ""
3814
4187
  msgid "Name"
3815
4188
  msgstr ""
3816
4189
 
4190
+ msgid "Name and label of default content view should not be changed"
4191
+ msgstr ""
4192
+
3817
4193
  msgid "Name is a required parameter."
3818
4194
  msgstr ""
3819
4195
 
@@ -3838,6 +4214,12 @@ msgstr ""
3838
4214
  msgid "Name of the upstream docker repository"
3839
4215
  msgstr ""
3840
4216
 
4217
+ msgid "Name source"
4218
+ msgstr ""
4219
+
4220
+ msgid "Names of smart proxies to associate"
4221
+ msgstr ""
4222
+
3841
4223
  msgid "Needs to only be set for docker tags"
3842
4224
  msgstr ""
3843
4225
 
@@ -3850,6 +4232,9 @@ msgstr ""
3850
4232
  msgid "Network Sync"
3851
4233
  msgstr ""
3852
4234
 
4235
+ msgid "Never"
4236
+ msgstr ""
4237
+
3853
4238
  msgid "Never Synced"
3854
4239
  msgstr ""
3855
4240
 
@@ -3946,6 +4331,9 @@ msgstr ""
3946
4331
  msgid "No content ids provided"
3947
4332
  msgstr ""
3948
4333
 
4334
+ msgid "No content in selected versions."
4335
+ msgstr ""
4336
+
3949
4337
  msgid "No content view history events found."
3950
4338
  msgstr ""
3951
4339
 
@@ -3997,13 +4385,19 @@ msgstr ""
3997
4385
  msgid "No host collections found."
3998
4386
  msgstr ""
3999
4387
 
4388
+ msgid "No host collections yet"
4389
+ msgstr ""
4390
+
4391
+ msgid "No hosts found"
4392
+ msgstr ""
4393
+
4000
4394
  msgid "No hosts have been specified."
4001
4395
  msgstr ""
4002
4396
 
4003
4397
  msgid "No hosts registered with subscription-manager found in selection."
4004
4398
  msgstr ""
4005
4399
 
4006
- msgid "No hosts with content source found!"
4400
+ msgid "No hosts were specified"
4007
4401
  msgstr ""
4008
4402
 
4009
4403
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4021,9 +4415,15 @@ msgstr ""
4021
4415
  msgid "No matching "
4022
4416
  msgstr ""
4023
4417
 
4418
+ msgid "No matching ${name} found."
4419
+ msgstr ""
4420
+
4024
4421
  msgid "No matching ${selectedContentType} found"
4025
4422
  msgstr ""
4026
4423
 
4424
+ msgid "No matching DEB found."
4425
+ msgstr ""
4426
+
4027
4427
  msgid "No matching RPM found."
4028
4428
  msgstr ""
4029
4429
 
@@ -4108,6 +4508,9 @@ msgstr ""
4108
4508
  msgid "No products are enabled."
4109
4509
  msgstr ""
4110
4510
 
4511
+ msgid "No profiles to show"
4512
+ msgstr ""
4513
+
4111
4514
  msgid "No pulp workers running."
4112
4515
  msgstr ""
4113
4516
 
@@ -4183,6 +4586,9 @@ msgstr ""
4183
4586
  msgid "Not all necessary pulp workers running at %s."
4184
4587
  msgstr ""
4185
4588
 
4589
+ msgid "Not installed"
4590
+ msgstr ""
4591
+
4186
4592
  msgid "Not running"
4187
4593
  msgstr ""
4188
4594
 
@@ -4201,6 +4607,9 @@ msgstr ""
4201
4607
  msgid "Nothing selected"
4202
4608
  msgstr ""
4203
4609
 
4610
+ msgid "Number of CPU(s)"
4611
+ msgstr ""
4612
+
4204
4613
  msgid "Number of host applicability calculations to process per task."
4205
4614
  msgstr ""
4206
4615
 
@@ -4213,6 +4622,9 @@ msgstr ""
4213
4622
  msgid "Number to Allocate"
4214
4623
  msgstr ""
4215
4624
 
4625
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4626
+ msgstr ""
4627
+
4216
4628
  msgid "OSTree Branch"
4217
4629
  msgstr ""
4218
4630
 
@@ -4234,6 +4646,9 @@ msgstr ""
4234
4646
  msgid "On Demand"
4235
4647
  msgstr ""
4236
4648
 
4649
+ msgid "On the RHUA Instance, check the available repositories."
4650
+ msgstr ""
4651
+
4237
4652
  msgid "On-disk location for exported repositories"
4238
4653
  msgstr ""
4239
4654
 
@@ -4309,6 +4724,9 @@ msgstr ""
4309
4724
  msgid "Orphaned Content Protection Time"
4310
4725
  msgstr ""
4311
4726
 
4727
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4728
+ msgstr ""
4729
+
4312
4730
  msgid "Other"
4313
4731
  msgstr ""
4314
4732
 
@@ -4528,12 +4946,6 @@ msgstr ""
4528
4946
  msgid "Path"
4529
4947
  msgstr ""
4530
4948
 
4531
- msgid "Path for ssl cert used for pulp server auth"
4532
- msgstr ""
4533
-
4534
- msgid "Path for ssl key used for pulp server auth"
4535
- msgstr ""
4536
-
4537
4949
  msgid "Path suffixes for finding alternate content"
4538
4950
  msgstr ""
4539
4951
 
@@ -4618,6 +5030,9 @@ msgstr ""
4618
5030
  msgid "Please wait while the task starts.."
4619
5031
  msgstr ""
4620
5032
 
5033
+ msgid "Please wait..."
5034
+ msgstr ""
5035
+
4621
5036
  msgid "Policy to set for mirroring content. Must be one of %s."
4622
5037
  msgstr ""
4623
5038
 
@@ -4707,9 +5122,18 @@ msgstr ""
4707
5122
  msgid "Product: '%{product}', Repository: '%{repository}'"
4708
5123
  msgstr ""
4709
5124
 
5125
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5126
+ msgstr ""
5127
+
4710
5128
  msgid "Products"
4711
5129
  msgstr ""
4712
5130
 
5131
+ msgid "Products updated."
5132
+ msgstr ""
5133
+
5134
+ msgid "Profiles"
5135
+ msgstr ""
5136
+
4713
5137
  msgid "Promote"
4714
5138
  msgstr ""
4715
5139
 
@@ -4794,18 +5218,9 @@ msgstr ""
4794
5218
  msgid "Pulp 3 is not enabled on Smart proxy!"
4795
5219
  msgstr ""
4796
5220
 
4797
- msgid "Pulp Docker registry port"
4798
- msgstr ""
4799
-
4800
5221
  msgid "Pulp bulk load size"
4801
5222
  msgstr ""
4802
5223
 
4803
- msgid "Pulp client cert"
4804
- msgstr ""
4805
-
4806
- msgid "Pulp client key"
4807
- msgstr ""
4808
-
4809
5224
  msgid "Pulp database connection issue at %s."
4810
5225
  msgstr ""
4811
5226
 
@@ -4884,12 +5299,18 @@ msgstr ""
4884
5299
  msgid "Quantity to Allocate"
4885
5300
  msgstr ""
4886
5301
 
5302
+ msgid "RAM"
5303
+ msgstr ""
5304
+
4887
5305
  msgid "RAM: %s GB"
4888
5306
  msgstr ""
4889
5307
 
4890
5308
  msgid "RH Repos"
4891
5309
  msgstr ""
4892
5310
 
5311
+ msgid "RHUI"
5312
+ msgstr ""
5313
+
4893
5314
  msgid "RPM"
4894
5315
  msgstr ""
4895
5316
 
@@ -4902,6 +5323,12 @@ msgstr ""
4902
5323
  msgid "RPM name"
4903
5324
  msgstr ""
4904
5325
 
5326
+ msgid "RPM package groups"
5327
+ msgstr ""
5328
+
5329
+ msgid "RPM package updates"
5330
+ msgstr ""
5331
+
4905
5332
  msgid "RPM packages"
4906
5333
  msgstr ""
4907
5334
 
@@ -4968,6 +5395,9 @@ msgstr ""
4968
5395
  msgid "Red Hat content will be consumed from the {type}."
4969
5396
  msgstr ""
4970
5397
 
5398
+ msgid "Red Hat content will be consumed from {type}."
5399
+ msgstr ""
5400
+
4971
5401
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4972
5402
  msgstr ""
4973
5403
 
@@ -4983,15 +5413,27 @@ msgstr ""
4983
5413
  msgid "Refresh"
4984
5414
  msgstr ""
4985
5415
 
5416
+ msgid "Refresh Alternate Content Source"
5417
+ msgstr ""
5418
+
4986
5419
  msgid "Refresh Content Host Statuses for %s"
4987
5420
  msgstr ""
4988
5421
 
4989
5422
  msgid "Refresh Manifest"
4990
5423
  msgstr ""
4991
5424
 
5425
+ msgid "Refresh alternate content sources"
5426
+ msgstr ""
5427
+
5428
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5429
+ msgstr ""
5430
+
4992
5431
  msgid "Refresh previously imported manifest for Red Hat provider"
4993
5432
  msgstr ""
4994
5433
 
5434
+ msgid "Refresh source"
5435
+ msgstr ""
5436
+
4995
5437
  msgid "Refresh_Content_Host_Status"
4996
5438
  msgstr ""
4997
5439
 
@@ -5001,13 +5443,16 @@ msgstr ""
5001
5443
  msgid "Register host '%s' before attaching subscriptions"
5002
5444
  msgstr ""
5003
5445
 
5446
+ msgid "Registered"
5447
+ msgstr ""
5448
+
5004
5449
  msgid "Registered by"
5005
5450
  msgstr ""
5006
5451
 
5007
5452
  msgid "Registered on"
5008
5453
  msgstr ""
5009
5454
 
5010
- msgid "Registered through"
5455
+ msgid "Registering to multiple environments is not enabled."
5011
5456
  msgstr ""
5012
5457
 
5013
5458
  msgid "Registration details"
@@ -5025,24 +5470,27 @@ msgstr ""
5025
5470
  msgid "Reindex subscriptions"
5026
5471
  msgstr ""
5027
5472
 
5028
- msgid "Related component content views"
5473
+ msgid "Related composite content views"
5029
5474
  msgstr ""
5030
5475
 
5031
- msgid "Related component cvs: "
5476
+ msgid "Related composite content views: "
5032
5477
  msgstr ""
5033
5478
 
5034
- msgid "Related composite content views"
5479
+ msgid "Related content views"
5035
5480
  msgstr ""
5036
5481
 
5037
- msgid "Related composite cvs: "
5482
+ msgid "Related content views will appear here when created."
5038
5483
  msgstr ""
5039
5484
 
5040
- msgid "Related content views will appear here when created."
5485
+ msgid "Related content views: "
5041
5486
  msgstr ""
5042
5487
 
5043
5488
  msgid "Release"
5044
5489
  msgstr ""
5045
5490
 
5491
+ msgid "Release version"
5492
+ msgstr ""
5493
+
5046
5494
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5047
5495
  msgstr ""
5048
5496
 
@@ -5061,6 +5509,9 @@ msgstr ""
5061
5509
  msgid "Remote action:"
5062
5510
  msgstr ""
5063
5511
 
5512
+ msgid "Remote execution job '${description}' failed."
5513
+ msgstr ""
5514
+
5064
5515
  msgid "Removal of package group(s) requested: %{groups}"
5065
5516
  msgstr ""
5066
5517
 
@@ -5121,7 +5572,7 @@ msgstr ""
5121
5572
  msgid "Remove one or more host collections from one or more hosts"
5122
5573
  msgstr ""
5123
5574
 
5124
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5575
+ msgid "Remove one or more subscriptions from an upstream manifest"
5125
5576
  msgstr ""
5126
5577
 
5127
5578
  msgid "Remove package"
@@ -5172,6 +5623,9 @@ msgstr ""
5172
5623
  msgid "Removing Package..."
5173
5624
  msgstr ""
5174
5625
 
5626
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5627
+ msgstr ""
5628
+
5175
5629
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5176
5630
  msgstr ""
5177
5631
 
@@ -5256,7 +5710,7 @@ msgstr ""
5256
5710
  msgid "Repository sets reset to default"
5257
5711
  msgstr ""
5258
5712
 
5259
- msgid "Repository sets will appear here when available."
5713
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5260
5714
  msgstr ""
5261
5715
 
5262
5716
  msgid "Republish Repositories of %{name} %{version}"
@@ -5391,6 +5845,9 @@ msgstr ""
5391
5845
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5392
5846
  msgstr ""
5393
5847
 
5848
+ msgid "Return same, different or all results"
5849
+ msgstr ""
5850
+
5394
5851
  msgid "Return subscriptions that match installed products of the specified host"
5395
5852
  msgstr ""
5396
5853
 
@@ -5418,6 +5875,9 @@ msgstr ""
5418
5875
  msgid "Review details"
5419
5876
  msgstr ""
5420
5877
 
5878
+ msgid "Review the information below and click "
5879
+ msgstr ""
5880
+
5421
5881
  msgid "Review your currently selected changes for "
5422
5882
  msgstr ""
5423
5883
 
@@ -5436,21 +5896,30 @@ msgstr ""
5436
5896
  msgid "Run Sync Plan:"
5437
5897
  msgstr ""
5438
5898
 
5439
- msgid "Run job invocation"
5440
- msgstr ""
5441
-
5442
5899
  msgid "Running"
5443
5900
  msgstr ""
5444
5901
 
5445
5902
  msgid "SKU"
5446
5903
  msgstr ""
5447
5904
 
5905
+ msgid "SLA"
5906
+ msgstr ""
5907
+
5448
5908
  msgid "SRPM details"
5449
5909
  msgstr ""
5450
5910
 
5451
5911
  msgid "SSL CA Content Credential"
5452
5912
  msgstr ""
5453
5913
 
5914
+ msgid "SSL CA certificate"
5915
+ msgstr ""
5916
+
5917
+ msgid "SSL client certificate"
5918
+ msgstr ""
5919
+
5920
+ msgid "SSL client key"
5921
+ msgstr ""
5922
+
5454
5923
  msgid "SSL version used to communicate with the CDN"
5455
5924
  msgstr ""
5456
5925
 
@@ -5460,6 +5929,9 @@ msgstr ""
5460
5929
  msgid "Save"
5461
5930
  msgstr ""
5462
5931
 
5932
+ msgid "Saving alternate content source..."
5933
+ msgstr ""
5934
+
5463
5935
  msgid "Schedule errata for installation using katello-agent. %s"
5464
5936
  msgstr ""
5465
5937
 
@@ -5529,6 +6001,15 @@ msgstr ""
5529
6001
  msgid "Select Value"
5530
6002
  msgstr ""
5531
6003
 
6004
+ msgid "Select a CA certificate"
6005
+ msgstr ""
6006
+
6007
+ msgid "Select a client certificate"
6008
+ msgstr ""
6009
+
6010
+ msgid "Select a client key"
6011
+ msgstr ""
6012
+
5532
6013
  msgid "Select a content view"
5533
6014
  msgstr ""
5534
6015
 
@@ -5544,6 +6025,9 @@ msgstr ""
5544
6025
  msgid "Select a provider to install katello-host-tools-tracer"
5545
6026
  msgstr ""
5546
6027
 
6028
+ msgid "Select add-ons"
6029
+ msgstr ""
6030
+
5547
6031
  msgid "Select all"
5548
6032
  msgstr ""
5549
6033
 
@@ -5559,13 +6043,16 @@ msgstr ""
5559
6043
  msgid "Select an environment above"
5560
6044
  msgstr ""
5561
6045
 
6046
+ msgid "Select an option"
6047
+ msgstr ""
6048
+
5562
6049
  msgid "Select an organization"
5563
6050
  msgstr ""
5564
6051
 
5565
6052
  msgid "Select available version of ${cvName} to use"
5566
6053
  msgstr ""
5567
6054
 
5568
- msgid "Select available version of components to use"
6055
+ msgid "Select available version of content views to use"
5569
6056
  msgstr ""
5570
6057
 
5571
6058
  msgid "Select content view"
@@ -5598,9 +6085,27 @@ msgstr ""
5598
6085
  msgid "Select page"
5599
6086
  msgstr ""
5600
6087
 
6088
+ msgid "Select products"
6089
+ msgstr ""
6090
+
6091
+ msgid "Select products to associate to this source."
6092
+ msgstr ""
6093
+
5601
6094
  msgid "Select row"
5602
6095
  msgstr ""
5603
6096
 
6097
+ msgid "Select smart proxies to be used with this source."
6098
+ msgstr ""
6099
+
6100
+ msgid "Select smart proxy"
6101
+ msgstr ""
6102
+
6103
+ msgid "Select source type"
6104
+ msgstr ""
6105
+
6106
+ msgid "Select system purpose attributes for host {hostName}."
6107
+ msgstr ""
6108
+
5604
6109
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5605
6110
  msgstr ""
5606
6111
 
@@ -5703,7 +6208,7 @@ msgstr ""
5703
6208
  msgid "Show an activation key"
5704
6209
  msgstr ""
5705
6210
 
5706
- msgid "Show an alternate content source"
6211
+ msgid "Show an alternate content source."
5707
6212
  msgstr ""
5708
6213
 
5709
6214
  msgid "Show an environment"
@@ -5730,6 +6235,9 @@ msgstr ""
5730
6235
  msgid "Show releases available for the content host"
5731
6236
  msgstr ""
5732
6237
 
6238
+ msgid "Show repositories enabled on the host that are known to Katello"
6239
+ msgstr ""
6240
+
5733
6241
  msgid "Show the available repository types"
5734
6242
  msgstr ""
5735
6243
 
@@ -5751,6 +6259,9 @@ msgstr ""
5751
6259
  msgid "Simple Content Access has been enabled for '%{subject}'."
5752
6260
  msgstr ""
5753
6261
 
6262
+ msgid "Simplified"
6263
+ msgstr ""
6264
+
5754
6265
  msgid "Single content view consisting of e.g. repositories"
5755
6266
  msgstr ""
5756
6267
 
@@ -5763,12 +6274,18 @@ msgstr ""
5763
6274
  msgid "Skipped pulp_auth check after failed pulp check"
5764
6275
  msgstr ""
5765
6276
 
6277
+ msgid "Smart proxies"
6278
+ msgstr ""
6279
+
5766
6280
  msgid "Smart proxy IDs"
5767
6281
  msgstr ""
5768
6282
 
5769
6283
  msgid "Smart proxy content source not found!"
5770
6284
  msgstr ""
5771
6285
 
6286
+ msgid "Sockets"
6287
+ msgstr ""
6288
+
5772
6289
  msgid "Sockets: %s"
5773
6290
  msgstr ""
5774
6291
 
@@ -5781,7 +6298,7 @@ msgstr ""
5781
6298
  msgid "Solve dependencies"
5782
6299
  msgstr ""
5783
6300
 
5784
- msgid "Some hosts are ignored!"
6301
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5785
6302
  msgstr ""
5786
6303
 
5787
6304
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5805,13 +6322,13 @@ msgstr ""
5805
6322
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5806
6323
  msgstr ""
5807
6324
 
5808
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6325
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5809
6326
  msgstr ""
5810
6327
 
5811
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6328
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5812
6329
  msgstr ""
5813
6330
 
5814
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6331
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5815
6332
  msgstr ""
5816
6333
 
5817
6334
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5859,9 +6376,15 @@ msgstr ""
5859
6376
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5860
6377
  msgstr ""
5861
6378
 
6379
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6380
+ msgstr ""
6381
+
5862
6382
  msgid "Something went wrong while loading the content views. See the logs for more information"
5863
6383
  msgstr ""
5864
6384
 
6385
+ msgid "Something went wrong while refreshing alternate content sources: "
6386
+ msgstr ""
6387
+
5865
6388
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5866
6389
  msgstr ""
5867
6390
 
@@ -5874,6 +6397,9 @@ msgstr ""
5874
6397
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5875
6398
  msgstr ""
5876
6399
 
6400
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6401
+ msgstr ""
6402
+
5877
6403
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5878
6404
  msgstr ""
5879
6405
 
@@ -5892,9 +6418,33 @@ msgstr ""
5892
6418
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5893
6419
  msgstr ""
5894
6420
 
6421
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6422
+ msgstr ""
6423
+
6424
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6425
+ msgstr ""
6426
+
6427
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6430
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
5895
6433
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5896
6434
  msgstr ""
5897
6435
 
6436
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6437
+ msgstr ""
6438
+
6439
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6440
+ msgstr ""
6441
+
6442
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6443
+ msgstr ""
6444
+
6445
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6446
+ msgstr ""
6447
+
5898
6448
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5899
6449
  msgstr ""
5900
6450
 
@@ -5913,6 +6463,9 @@ msgstr ""
5913
6463
  msgid "Source RPMs"
5914
6464
  msgstr ""
5915
6465
 
6466
+ msgid "Source type"
6467
+ msgstr ""
6468
+
5916
6469
  msgid "Specify an export chunk size less than 1_000_000 GB"
5917
6470
  msgstr ""
5918
6471
 
@@ -5970,10 +6523,10 @@ msgstr ""
5970
6523
  msgid "Subnet IDs"
5971
6524
  msgstr ""
5972
6525
 
5973
- msgid "Subscription"
6526
+ msgid "Subpaths"
5974
6527
  msgstr ""
5975
6528
 
5976
- msgid "Subscription Allocation"
6529
+ msgid "Subscription"
5977
6530
  msgstr ""
5978
6531
 
5979
6532
  msgid "Subscription Details"
@@ -6006,9 +6559,6 @@ msgstr ""
6006
6559
  msgid "Subscription UUID"
6007
6560
  msgstr ""
6008
6561
 
6009
- msgid "Subscription Watch"
6010
- msgstr ""
6011
-
6012
6562
  msgid "Subscription connection enabled"
6013
6563
  msgstr ""
6014
6564
 
@@ -6033,6 +6583,9 @@ msgstr ""
6033
6583
  msgid "Subscription not found"
6034
6584
  msgstr ""
6035
6585
 
6586
+ msgid "Subscription status"
6587
+ msgstr ""
6588
+
6036
6589
  msgid "Subscription was not persisted - %{error_message}"
6037
6590
  msgstr ""
6038
6591
 
@@ -6051,6 +6604,9 @@ msgstr ""
6051
6604
  msgid "Subscriptions information based on selected activation keys:"
6052
6605
  msgstr ""
6053
6606
 
6607
+ msgid "Subscriptions service"
6608
+ msgstr ""
6609
+
6054
6610
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6055
6611
  msgstr ""
6056
6612
 
@@ -6069,12 +6625,18 @@ msgstr ""
6069
6625
  msgid "Successfully initiated removal of %s product(s)"
6070
6626
  msgstr ""
6071
6627
 
6628
+ msgid "Successfully refreshed."
6629
+ msgstr ""
6630
+
6072
6631
  msgid "Successfully removed %s Host(s)."
6073
6632
  msgstr ""
6074
6633
 
6075
6634
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6076
6635
  msgstr ""
6077
6636
 
6637
+ msgid "Successfully synced capsule."
6638
+ msgstr ""
6639
+
6078
6640
  msgid "Successfully synchronized."
6079
6641
  msgstr ""
6080
6642
 
@@ -6156,9 +6718,15 @@ msgstr ""
6156
6718
  msgid "Sync plan identifier to attach"
6157
6719
  msgstr ""
6158
6720
 
6721
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6722
+ msgstr ""
6723
+
6159
6724
  msgid "Sync state"
6160
6725
  msgstr ""
6161
6726
 
6727
+ msgid "Syncable export"
6728
+ msgstr ""
6729
+
6162
6730
  msgid "Synced "
6163
6731
  msgstr ""
6164
6732
 
@@ -6207,6 +6775,12 @@ msgstr ""
6207
6775
  msgid "System purpose"
6208
6776
  msgstr ""
6209
6777
 
6778
+ msgid "System purpose attributes updated"
6779
+ msgstr ""
6780
+
6781
+ msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6782
+ msgstr ""
6783
+
6210
6784
  msgid "Tag name"
6211
6785
  msgstr ""
6212
6786
 
@@ -6237,9 +6811,6 @@ msgstr ""
6237
6811
  msgid "The Alternate Content Source type"
6238
6812
  msgstr ""
6239
6813
 
6240
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6241
- msgstr ""
6242
-
6243
6814
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6244
6815
  msgstr ""
6245
6816
 
@@ -6291,9 +6862,6 @@ msgstr ""
6291
6862
  msgid "The field to sort the data by. Defaults to the created date."
6292
6863
  msgstr ""
6293
6864
 
6294
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6295
- msgstr ""
6296
-
6297
6865
  msgid "The following hosts have errata that apply to them: "
6298
6866
  msgstr ""
6299
6867
 
@@ -6320,6 +6888,9 @@ msgstr ""
6320
6888
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6321
6889
  msgstr ""
6322
6890
 
6891
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6892
+ msgstr ""
6893
+
6323
6894
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6324
6895
  msgstr ""
6325
6896
 
@@ -6361,7 +6932,7 @@ msgstr ""
6361
6932
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6362
6933
  msgstr ""
6363
6934
 
6364
- msgid "The port used by Pulp Crane to provide Docker Registries"
6935
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6365
6936
  msgstr ""
6366
6937
 
6367
6938
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6373,6 +6944,9 @@ msgstr ""
6373
6944
  msgid "The repository is already enabled"
6374
6945
  msgstr ""
6375
6946
 
6947
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6948
+ msgstr ""
6949
+
6376
6950
  msgid "The request did not contain any repository information."
6377
6951
  msgstr ""
6378
6952
 
@@ -6406,13 +6980,19 @@ msgstr ""
6406
6980
  msgid "The token key to use for authentication."
6407
6981
  msgstr ""
6408
6982
 
6983
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6984
+ msgstr ""
6985
+
6986
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6987
+ msgstr ""
6988
+
6409
6989
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6410
6990
  msgstr ""
6411
6991
 
6412
6992
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6413
6993
  msgstr ""
6414
6994
 
6415
- msgid "There are no Subscription Allocations to display"
6995
+ msgid "There are no Manifests to display"
6416
6996
  msgstr ""
6417
6997
 
6418
6998
  msgid "There are no Subscriptions to display"
@@ -6439,6 +7019,9 @@ msgstr ""
6439
7019
  msgid "There is no Manifest History to display."
6440
7020
  msgstr ""
6441
7021
 
7022
+ msgid "There is no downloaded content to clean."
7023
+ msgstr ""
7024
+
6442
7025
  msgid "There is no such HTTP proxy"
6443
7026
  msgstr ""
6444
7027
 
@@ -6481,6 +7064,9 @@ msgstr ""
6481
7064
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6482
7065
  msgstr ""
6483
7066
 
7067
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7068
+ msgstr ""
7069
+
6484
7070
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6485
7071
  msgstr ""
6486
7072
 
@@ -6505,7 +7091,7 @@ msgstr ""
6505
7091
  msgid "This host does not have any packages."
6506
7092
  msgstr ""
6507
7093
 
6508
- msgid "This host has errata that are applicable, but not installable."
7094
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6509
7095
  msgstr ""
6510
7096
 
6511
7097
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6514,13 +7100,13 @@ msgstr ""
6514
7100
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6515
7101
  msgstr ""
6516
7102
 
6517
- msgid "This is disabled because a manifest related task is in progress."
7103
+ msgid "This is disabled because a manifest task is in progress"
6518
7104
  msgstr ""
6519
7105
 
6520
- msgid "This is disabled because a manifest task is in progress"
7106
+ msgid "This is disabled because a manifest-related task is in progress."
6521
7107
  msgstr ""
6522
7108
 
6523
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7109
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6524
7110
  msgstr ""
6525
7111
 
6526
7112
  msgid "This is disabled because no manifest exists"
@@ -6535,10 +7121,10 @@ msgstr ""
6535
7121
  msgid "This is not a linked repository"
6536
7122
  msgstr ""
6537
7123
 
6538
- msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
7124
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
6539
7125
  msgstr ""
6540
7126
 
6541
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7127
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6542
7128
  msgstr ""
6543
7129
 
6544
7130
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6589,12 +7175,24 @@ msgstr ""
6589
7175
  msgid "Title"
6590
7176
  msgstr ""
6591
7177
 
7178
+ msgid "To get started, add this host to a host collection."
7179
+ msgstr ""
7180
+
7181
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7182
+ msgstr ""
7183
+
7184
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7185
+ msgstr ""
7186
+
6592
7187
  msgid "Toggling Simple Content Access will refresh your manifest."
6593
7188
  msgstr ""
6594
7189
 
6595
7190
  msgid "Total steps: "
6596
7191
  msgstr ""
6597
7192
 
7193
+ msgid "Tracer"
7194
+ msgstr ""
7195
+
6598
7196
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6599
7197
  msgstr ""
6600
7198
 
@@ -6604,18 +7202,33 @@ msgstr ""
6604
7202
  msgid "Traces"
6605
7203
  msgstr ""
6606
7204
 
7205
+ msgid "Traces are being enabled"
7206
+ msgstr ""
7207
+
6607
7208
  msgid "Traces are not enabled"
6608
7209
  msgstr ""
6609
7210
 
6610
7211
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6611
7212
  msgstr ""
6612
7213
 
7214
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7215
+ msgstr ""
7216
+
6613
7217
  msgid "Traces may be listed here after {pkgLink}."
6614
7218
  msgstr ""
6615
7219
 
7220
+ msgid "Traces not available"
7221
+ msgstr ""
7222
+
6616
7223
  msgid "Traces that require logout cannot be restarted remotely"
6617
7224
  msgstr ""
6618
7225
 
7226
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7227
+ msgstr ""
7228
+
7229
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7230
+ msgstr ""
7231
+
6619
7232
  msgid "Trigger an auto-attach of subscriptions"
6620
7233
  msgstr ""
6621
7234
 
@@ -6646,9 +7259,18 @@ msgstr ""
6646
7259
  msgid "Type of content: \"cert\", \"gpg_key\""
6647
7260
  msgstr ""
6648
7261
 
7262
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7263
+ msgstr ""
7264
+
6649
7265
  msgid "URL"
6650
7266
  msgstr ""
6651
7267
 
7268
+ msgid "URL and paths"
7269
+ msgstr ""
7270
+
7271
+ msgid "URL and subpaths"
7272
+ msgstr ""
7273
+
6652
7274
  msgid "URL needs to have a trailing /"
6653
7275
  msgstr ""
6654
7276
 
@@ -6682,6 +7304,12 @@ msgstr ""
6682
7304
  msgid "Unable to connect. Got: %s"
6683
7305
  msgstr ""
6684
7306
 
7307
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7308
+ msgstr ""
7309
+
7310
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7311
+ msgstr ""
7312
+
6685
7313
  msgid "Unable to detect pulp storage"
6686
7314
  msgstr ""
6687
7315
 
@@ -6715,6 +7343,9 @@ msgstr ""
6715
7343
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6716
7344
  msgstr ""
6717
7345
 
7346
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7347
+ msgstr ""
7348
+
6718
7349
  msgid "Unable to send errata e-mail notification: %{error}"
6719
7350
  msgstr ""
6720
7351
 
@@ -6844,7 +7475,7 @@ msgstr ""
6844
7475
  msgid "Update an activation key"
6845
7476
  msgstr ""
6846
7477
 
6847
- msgid "Update an alternate content source"
7478
+ msgid "Update an alternate content source."
6848
7479
  msgstr ""
6849
7480
 
6850
7481
  msgid "Update an environment"
@@ -7000,6 +7631,9 @@ msgstr ""
7000
7631
  msgid "Upload request id"
7001
7632
  msgstr ""
7002
7633
 
7634
+ msgid "Upstream Candlepin"
7635
+ msgstr ""
7636
+
7003
7637
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7004
7638
  msgstr ""
7005
7639
 
@@ -7048,6 +7682,15 @@ msgstr ""
7048
7682
  msgid "Usage of host"
7049
7683
  msgstr ""
7050
7684
 
7685
+ msgid "Usage type"
7686
+ msgstr ""
7687
+
7688
+ msgid "Use HTTP Proxies"
7689
+ msgstr ""
7690
+
7691
+ msgid "Use HTTP proxies"
7692
+ msgstr ""
7693
+
7051
7694
  msgid "Use remote execution by default"
7052
7695
  msgstr ""
7053
7696
 
@@ -7093,6 +7736,9 @@ msgstr ""
7093
7736
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7094
7737
  msgstr ""
7095
7738
 
7739
+ msgid "Verify SSL"
7740
+ msgstr ""
7741
+
7096
7742
  msgid "Verify checksum"
7097
7743
  msgstr ""
7098
7744
 
@@ -7120,6 +7766,12 @@ msgstr ""
7120
7766
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7121
7767
  msgstr ""
7122
7768
 
7769
+ msgid "Version ${versionOne}"
7770
+ msgstr ""
7771
+
7772
+ msgid "Version ${versionTwo}"
7773
+ msgstr ""
7774
+
7123
7775
  msgid "Version details updated."
7124
7776
  msgstr ""
7125
7777
 
@@ -7132,6 +7784,9 @@ msgstr ""
7132
7784
  msgid "Versions "
7133
7785
  msgstr ""
7134
7786
 
7787
+ msgid "Versions to compare"
7788
+ msgstr ""
7789
+
7135
7790
  msgid "Versions to exclusively include in the action"
7136
7791
  msgstr ""
7137
7792
 
@@ -7144,28 +7799,43 @@ msgstr ""
7144
7799
  msgid "View %{view} has not been promoted to %{env}"
7145
7800
  msgstr ""
7146
7801
 
7802
+ msgid "View Subscription Usage"
7803
+ msgstr ""
7804
+
7147
7805
  msgid "View a report of the affected hosts"
7148
7806
  msgstr ""
7149
7807
 
7808
+ msgid "View applicable errata"
7809
+ msgstr ""
7810
+
7811
+ msgid "View by"
7812
+ msgstr ""
7813
+
7150
7814
  msgid "View matching content"
7151
7815
  msgstr ""
7152
7816
 
7153
7817
  msgid "View tasks "
7154
7818
  msgstr ""
7155
7819
 
7156
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7820
+ msgid "View the Content Views page"
7821
+ msgstr ""
7822
+
7823
+ msgid "View the job"
7157
7824
  msgstr ""
7158
7825
 
7159
7826
  msgid "Virtual"
7160
7827
  msgstr ""
7161
7828
 
7162
- msgid "Waiting to start."
7829
+ msgid "Virtual guests"
7163
7830
  msgstr ""
7164
7831
 
7165
- msgid "Warning"
7832
+ msgid "Virtual host"
7166
7833
  msgstr ""
7167
7834
 
7168
- msgid "What's next?"
7835
+ msgid "Waiting to start."
7836
+ msgstr ""
7837
+
7838
+ msgid "Warning"
7169
7839
  msgstr ""
7170
7840
 
7171
7841
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -7207,6 +7877,9 @@ msgstr ""
7207
7877
  msgid "Whether to include available content attribute in results"
7208
7878
  msgstr ""
7209
7879
 
7880
+ msgid "Whether to turn on Simple Content Access for the organization."
7881
+ msgstr ""
7882
+
7210
7883
  msgid "Workers"
7211
7884
  msgstr ""
7212
7885
 
@@ -7279,9 +7952,6 @@ msgstr ""
7279
7952
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7280
7953
  msgstr ""
7281
7954
 
7282
- msgid "You may want to check the host's content view and lifecycle environment."
7283
- msgstr ""
7284
-
7285
7955
  msgid "You were not allowed to add %s"
7286
7956
  msgstr ""
7287
7957
 
@@ -7303,6 +7973,12 @@ msgstr ""
7303
7973
  msgid "Your search returned no matching "
7304
7974
  msgstr ""
7305
7975
 
7976
+ msgid "Your search returned no matching ${name}."
7977
+ msgstr ""
7978
+
7979
+ msgid "Your search returned no matching DEBs."
7980
+ msgstr ""
7981
+
7306
7982
  msgid "Your search returned no matching Module streams."
7307
7983
  msgstr ""
7308
7984
 
@@ -7315,12 +7991,18 @@ msgstr ""
7315
7991
  msgid "Your search returned no matching hosts."
7316
7992
  msgstr ""
7317
7993
 
7994
+ msgid "Yum"
7995
+ msgstr ""
7996
+
7318
7997
  msgid "Yum Metadata: %s"
7319
7998
  msgstr ""
7320
7999
 
7321
8000
  msgid "a content unit"
7322
8001
  msgstr ""
7323
8002
 
8003
+ msgid "a custom CDN URL"
8004
+ msgstr ""
8005
+
7324
8006
  msgid "a deb package"
7325
8007
  msgstr ""
7326
8008
 
@@ -7408,6 +8090,12 @@ msgstr ""
7408
8090
  msgid "base url to perform repo discovery on"
7409
8091
  msgstr ""
7410
8092
 
8093
+ msgid "bug fix"
8094
+ msgstr ""
8095
+
8096
+ msgid "bug fixes"
8097
+ msgstr ""
8098
+
7411
8099
  msgid "bulk add filter rules"
7412
8100
  msgstr ""
7413
8101
 
@@ -7471,7 +8159,7 @@ msgstr ""
7471
8159
  msgid "cannot contain more than %s characters"
7472
8160
  msgstr ""
7473
8161
 
7474
- msgid "checking Candlepin task status"
8162
+ msgid "checking %s task status"
7475
8163
  msgstr ""
7476
8164
 
7477
8165
  msgid "checking Pulp task status"
@@ -7492,9 +8180,6 @@ msgstr ""
7492
8180
  msgid "content release version"
7493
8181
  msgstr ""
7494
8182
 
7495
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7496
- msgstr ""
7497
-
7498
8183
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7499
8184
  msgstr ""
7500
8185
 
@@ -7549,7 +8234,7 @@ msgstr ""
7549
8234
  msgid "create a filter for a content view"
7550
8235
  msgstr ""
7551
8236
 
7552
- msgid "deb Packages"
8237
+ msgid "deb, package, package group, or docker tag names"
7553
8238
  msgstr ""
7554
8239
 
7555
8240
  msgid "deb_ids is not an array"
@@ -7576,12 +8261,21 @@ msgstr ""
7576
8261
  msgid "description of the repository"
7577
8262
  msgstr ""
7578
8263
 
8264
+ msgid "disk"
8265
+ msgstr ""
8266
+
7579
8267
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7580
8268
  msgstr ""
7581
8269
 
7582
8270
  msgid "enables or disables synchronization"
7583
8271
  msgstr ""
7584
8272
 
8273
+ msgid "enhancement"
8274
+ msgstr ""
8275
+
8276
+ msgid "enhancements"
8277
+ msgstr ""
8278
+
7585
8279
  msgid "environment"
7586
8280
  msgstr ""
7587
8281
 
@@ -7705,7 +8399,7 @@ msgstr ""
7705
8399
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7706
8400
  msgstr ""
7707
8401
 
7708
- msgid "initiating Candlepin task"
8402
+ msgid "initiating %s task"
7709
8403
  msgstr ""
7710
8404
 
7711
8405
  msgid "initiating Pulp task"
@@ -7765,9 +8459,6 @@ msgstr ""
7765
8459
  msgid "label of the repository"
7766
8460
  msgstr ""
7767
8461
 
7768
- msgid "limit to only repositories of this type"
7769
- msgstr ""
7770
-
7771
8462
  msgid "limit to only repositories with this download policy"
7772
8463
  msgstr ""
7773
8464
 
@@ -7885,9 +8576,6 @@ msgstr ""
7885
8576
  msgid "of environment must be unique within one organization"
7886
8577
  msgstr ""
7887
8578
 
7888
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7889
- msgstr ""
7890
-
7891
8579
  msgid "only show the repositories readable by this user with this username"
7892
8580
  msgstr ""
7893
8581
 
@@ -7999,6 +8687,15 @@ msgstr ""
7999
8687
  msgid "rule identifier"
8000
8688
  msgstr ""
8001
8689
 
8690
+ msgid "run job invocation"
8691
+ msgstr ""
8692
+
8693
+ msgid "security advisories"
8694
+ msgstr ""
8695
+
8696
+ msgid "security advisory"
8697
+ msgstr ""
8698
+
8002
8699
  msgid "service level"
8003
8700
  msgstr ""
8004
8701
 
@@ -8053,9 +8750,6 @@ msgstr ""
8053
8750
  msgid "to"
8054
8751
  msgstr ""
8055
8752
 
8056
- msgid "to update configuration on all hosts, or"
8057
- msgstr ""
8058
-
8059
8753
  msgid "true if the latest version of the component's content view is desired"
8060
8754
  msgstr ""
8061
8755
 
@@ -8068,10 +8762,7 @@ msgstr ""
8068
8762
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8069
8763
  msgstr ""
8070
8764
 
8071
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8072
- msgstr ""
8073
-
8074
- msgid "type of repo"
8765
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8075
8766
  msgstr ""
8076
8767
 
8077
8768
  msgid "types of filters"
@@ -8086,9 +8777,6 @@ msgstr ""
8086
8777
  msgid "update a filter"
8087
8778
  msgstr ""
8088
8779
 
8089
- msgid "update configuration on the hosts manually:"
8090
- msgstr ""
8091
-
8092
8780
  msgid "updating package group..."
8093
8781
  msgstr ""
8094
8782
 
@@ -8116,7 +8804,7 @@ msgstr ""
8116
8804
  msgid "view content view tabs."
8117
8805
  msgstr ""
8118
8806
 
8119
- msgid "waiting for Candlepin to finish the task"
8807
+ msgid "waiting for %s to finish the task"
8120
8808
  msgstr ""
8121
8809
 
8122
8810
  msgid "waiting for Pulp to finish the task"