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/pt/katello.po CHANGED
@@ -8,7 +8,7 @@
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: katello 2.5.0\n"
11
+ "Project-Id-Version: katello 2.4.0-RC1\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
13
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
14
14
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2017\n"
@@ -17,7 +17,8 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Language: pt\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
21
+ "0 == 0 ? 1 : 2;\n"
21
22
 
22
23
  msgid ""
23
24
  "\n"
@@ -36,12 +37,21 @@ msgstr ""
36
37
  msgid " Content view updated"
37
38
  msgstr ""
38
39
 
40
+ msgid " DEBs"
41
+ msgstr ""
42
+
39
43
  msgid " Either select the latest content view or the content view version. Cannot set both."
40
44
  msgstr ""
41
45
 
42
46
  msgid " RPMs"
43
47
  msgstr ""
44
48
 
49
+ msgid " The base path can be a web address or a filesystem location."
50
+ msgstr ""
51
+
52
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
53
+ msgstr ""
54
+
45
55
  msgid " View task details "
46
56
  msgstr ""
47
57
 
@@ -57,10 +67,10 @@ msgstr ""
57
67
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
58
68
  msgstr ""
59
69
 
60
- msgid " content view is used in listed component content views. For more information, "
70
+ msgid " content view is used in listed composite content views."
61
71
  msgstr ""
62
72
 
63
- msgid " content view is used in listed composite content views."
73
+ msgid " content view is used in listed content views. For more information, "
64
74
  msgstr ""
65
75
 
66
76
  msgid " environment cannot be set to an environment already on its path"
@@ -72,9 +82,18 @@ msgstr ""
72
82
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
73
83
  msgstr ""
74
84
 
85
+ msgid " or any step on the left."
86
+ msgstr ""
87
+
88
+ msgid " to manage and promote content views, or select a different environment."
89
+ msgstr ""
90
+
75
91
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
76
92
  msgstr ""
77
93
 
94
+ msgid "${option}"
95
+ msgstr ""
96
+
78
97
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
79
98
  msgstr ""
80
99
 
@@ -110,6 +129,9 @@ msgstr ""
110
129
  msgid "%s ago"
111
130
  msgstr ""
112
131
 
132
+ msgid "%s guests"
133
+ msgstr ""
134
+
113
135
  msgid "%s has already been deleted"
114
136
  msgstr ""
115
137
 
@@ -317,9 +339,30 @@ msgstr ""
317
339
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
318
340
  msgstr ""
319
341
 
342
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
343
+ msgstr ""
344
+
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
352
+ msgstr ""
353
+
354
+ 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. "
355
+ msgstr ""
356
+
357
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
358
+ msgstr ""
359
+
320
360
  msgid "(Orphaned)"
321
361
  msgstr ""
322
362
 
363
+ msgid "(unset)"
364
+ msgstr ""
365
+
323
366
  msgid ", and"
324
367
  msgstr ""
325
368
 
@@ -347,7 +390,7 @@ msgstr ""
347
390
  msgid "A backend service [ %s ] is unreachable"
348
391
  msgstr ""
349
392
 
350
- msgid "A content view can be added by using the \"Create content view\" button above."
393
+ msgid "A content view can be added by using the \"Create content view\" button below."
351
394
  msgstr ""
352
395
 
353
396
  msgid "A content_type must be provided."
@@ -368,6 +411,12 @@ msgstr ""
368
411
  msgid "A post-promotion summary of hosts with installable errata"
369
412
  msgstr ""
370
413
 
414
+ msgid "A remote execution job is in progress"
415
+ msgstr ""
416
+
417
+ msgid "A remote execution job is in progress."
418
+ msgstr ""
419
+
371
420
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
372
421
  msgstr ""
373
422
 
@@ -455,6 +504,9 @@ msgstr ""
455
504
  msgid "Add Bookmark"
456
505
  msgstr ""
457
506
 
507
+ msgid "Add DEB rule"
508
+ msgstr ""
509
+
458
510
  msgid "Add RPM rule"
459
511
  msgstr ""
460
512
 
@@ -464,13 +516,13 @@ msgstr ""
464
516
  msgid "Add a subscription to a host"
465
517
  msgstr ""
466
518
 
467
- msgid "Add component"
519
+ msgid "Add an alternate content source"
468
520
  msgstr ""
469
521
 
470
- msgid "Add component content views"
522
+ msgid "Add components to the content view"
471
523
  msgstr ""
472
524
 
473
- msgid "Add components to the content view"
525
+ msgid "Add content view"
474
526
  msgstr ""
475
527
 
476
528
  msgid "Add content views"
@@ -485,9 +537,6 @@ msgstr ""
485
537
  msgid "Add filter rule"
486
538
  msgstr ""
487
539
 
488
- msgid "Add filters using the 'Add filter' button above."
489
- msgstr ""
490
-
491
540
  msgid "Add host to collections"
492
541
  msgstr ""
493
542
 
@@ -527,12 +576,18 @@ msgstr ""
527
576
  msgid "Add subscriptions to one or more hosts"
528
577
  msgstr ""
529
578
 
530
- msgid "Add to this filter using the 'Add RPM rule' button."
579
+ msgid "Add to a host collection"
580
+ msgstr ""
581
+
582
+ msgid "Add to this filter using the 'Add Deb rule' button."
531
583
  msgstr ""
532
584
 
533
585
  msgid "Add to this filter using the 'Add filter rule' button."
534
586
  msgstr ""
535
587
 
588
+ msgid "Add-ons"
589
+ msgstr ""
590
+
536
591
  msgid "Added"
537
592
  msgstr ""
538
593
 
@@ -551,6 +606,9 @@ msgstr ""
551
606
  msgid "Addons"
552
607
  msgstr ""
553
608
 
609
+ msgid "Affected Repositories"
610
+ msgstr ""
611
+
554
612
  msgid "Affected repositories"
555
613
  msgstr ""
556
614
 
@@ -581,6 +639,9 @@ msgstr ""
581
639
  msgid "All subpaths must have a slash at the end and none at the front"
582
640
  msgstr ""
583
641
 
642
+ msgid "All up to date"
643
+ msgstr ""
644
+
584
645
  msgid "All versions"
585
646
  msgstr ""
586
647
 
@@ -590,6 +651,9 @@ msgstr ""
590
651
  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)"
591
652
  msgstr ""
592
653
 
654
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
655
+ msgstr ""
656
+
593
657
  msgid "Allow deleting repositories in published content views"
594
658
  msgstr ""
595
659
 
@@ -599,6 +663,9 @@ msgstr ""
599
663
  msgid "Allow hosts to re-register themselves only when they are in build mode"
600
664
  msgstr ""
601
665
 
666
+ msgid "Allow multiple content views"
667
+ msgstr ""
668
+
602
669
  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."
603
670
  msgstr ""
604
671
 
@@ -608,6 +675,9 @@ msgstr ""
608
675
  msgid "Alter a host's host collections"
609
676
  msgstr ""
610
677
 
678
+ msgid "Alternate Content Source HTTP Proxy"
679
+ msgstr ""
680
+
611
681
  msgid "Alternate Content Sources"
612
682
  msgstr ""
613
683
 
@@ -620,7 +690,13 @@ msgstr ""
620
690
  msgid "Alternate content source deleted"
621
691
  msgstr ""
622
692
 
623
- msgid "Alternate content sources"
693
+ msgid "Alternate content source edited"
694
+ msgstr ""
695
+
696
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
697
+ msgstr ""
698
+
699
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
624
700
  msgstr ""
625
701
 
626
702
  msgid "Always Use Latest (currently %{version})"
@@ -632,7 +708,7 @@ msgstr ""
632
708
  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."
633
709
  msgstr ""
634
710
 
635
- msgid "An alternate content source can be added by using the \"Add source\" button above."
711
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
636
712
  msgstr ""
637
713
 
638
714
  msgid "An environment is missing a prior"
@@ -657,9 +733,6 @@ msgstr ""
657
733
  msgid "Ansible Collection"
658
734
  msgstr ""
659
735
 
660
- msgid "Ansible Collection Details"
661
- msgstr ""
662
-
663
736
  msgid "Ansible Collections"
664
737
  msgstr ""
665
738
 
@@ -672,9 +745,15 @@ msgstr ""
672
745
  msgid "Applicability Batch Size"
673
746
  msgstr ""
674
747
 
748
+ msgid "Applicable"
749
+ msgstr ""
750
+
675
751
  msgid "Applicable Content Hosts"
676
752
  msgstr ""
677
753
 
754
+ msgid "Applicable errata apply to at least one package installed on the host."
755
+ msgstr ""
756
+
678
757
  msgid "Application"
679
758
  msgstr ""
680
759
 
@@ -708,6 +787,9 @@ msgstr ""
708
787
  msgid "Architecture of content in the repository"
709
788
  msgstr ""
710
789
 
790
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
791
+ msgstr ""
792
+
711
793
  msgid "Architecture(s)"
712
794
  msgstr ""
713
795
 
@@ -812,6 +894,9 @@ msgstr ""
812
894
  msgid "Auth URL requires Auth token be set."
813
895
  msgstr ""
814
896
 
897
+ msgid "Authentication type"
898
+ msgstr ""
899
+
815
900
  msgid "Author"
816
901
  msgstr ""
817
902
 
@@ -833,6 +918,9 @@ msgstr ""
833
918
  msgid "Autosearch delay"
834
919
  msgstr ""
835
920
 
921
+ msgid "Available"
922
+ msgstr ""
923
+
836
924
  msgid "Available Entitlements"
837
925
  msgstr ""
838
926
 
@@ -842,9 +930,15 @@ msgstr ""
842
930
  msgid "Available Schema Versions"
843
931
  msgstr ""
844
932
 
933
+ msgid "Back"
934
+ msgstr ""
935
+
845
936
  msgid "Backend System Status"
846
937
  msgstr ""
847
938
 
939
+ msgid "Base URL"
940
+ msgstr ""
941
+
848
942
  msgid "Base URL for finding alternate content"
849
943
  msgstr ""
850
944
 
@@ -890,6 +984,9 @@ msgstr ""
890
984
  msgid "Bookmarks marked as public are available to all users"
891
985
  msgstr ""
892
986
 
987
+ msgid "Both"
988
+ msgstr ""
989
+
893
990
  msgid "Both major and minor parameters have to be used to override a CV version"
894
991
  msgstr ""
895
992
 
@@ -902,6 +999,12 @@ msgstr ""
902
999
  msgid "Bugs"
903
1000
  msgstr ""
904
1001
 
1002
+ msgid "Bulk alternate content source delete has started."
1003
+ msgstr ""
1004
+
1005
+ msgid "Bulk alternate content source refresh has started."
1006
+ msgstr ""
1007
+
905
1008
  msgid "Bulk generate applicability for host %s"
906
1009
  msgstr ""
907
1010
 
@@ -986,6 +1089,9 @@ msgstr ""
986
1089
  msgid "Cancelled."
987
1090
  msgstr ""
988
1091
 
1092
+ msgid "Candlepin"
1093
+ msgstr ""
1094
+
989
1095
  msgid "Candlepin Event"
990
1096
  msgstr ""
991
1097
 
@@ -998,6 +1104,9 @@ msgstr ""
998
1104
  msgid "Candlepin is not running properly"
999
1105
  msgstr ""
1000
1106
 
1107
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1108
+ msgstr ""
1109
+
1001
1110
  msgid "Cannot add %s repositories to a content view."
1002
1111
  msgstr ""
1003
1112
 
@@ -1016,6 +1125,9 @@ msgstr ""
1016
1125
  msgid "Cannot add default content view to composite content view"
1017
1126
  msgstr ""
1018
1127
 
1128
+ msgid "Cannot add generated content view versions to composite content view"
1129
+ msgstr ""
1130
+
1019
1131
  msgid "Cannot add repositories to a composite content view"
1020
1132
  msgstr ""
1021
1133
 
@@ -1109,7 +1221,7 @@ msgstr ""
1109
1221
  msgid "Cannot set auto publish to a non-composite content view"
1110
1222
  msgstr ""
1111
1223
 
1112
- msgid "Cannot skip metadata check on non-yum repositories."
1224
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1113
1225
  msgstr ""
1114
1226
 
1115
1227
  msgid "Cannot specify components for non-composite views"
@@ -1145,6 +1257,9 @@ msgstr ""
1145
1257
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1146
1258
  msgstr ""
1147
1259
 
1260
+ msgid "Check if the specified organization has Simple Content Access enabled"
1261
+ msgstr ""
1262
+
1148
1263
  msgid "Check if the specified organization is eligible for Simple Content Access"
1149
1264
  msgstr ""
1150
1265
 
@@ -1166,9 +1281,18 @@ msgstr ""
1166
1281
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1167
1282
  msgstr ""
1168
1283
 
1284
+ msgid "Choose content credentials if required for this RHUI source."
1285
+ msgstr ""
1286
+
1169
1287
  msgid "Clear any previous registration and run subscription-manager with --force."
1170
1288
  msgstr ""
1171
1289
 
1290
+ msgid "Clear filters"
1291
+ msgstr ""
1292
+
1293
+ msgid "Clear search"
1294
+ msgstr ""
1295
+
1172
1296
  msgid "Click here to go to the tasks page for the task."
1173
1297
  msgstr ""
1174
1298
 
@@ -1190,6 +1314,9 @@ msgstr ""
1190
1314
  msgid "Combined Profile Update for %s"
1191
1315
  msgstr ""
1192
1316
 
1317
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1318
+ msgstr ""
1319
+
1193
1320
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1194
1321
  msgstr ""
1195
1322
 
@@ -1199,16 +1326,16 @@ msgstr ""
1199
1326
  msgid "Comma-separated list of tags to sync for a container image repository"
1200
1327
  msgstr ""
1201
1328
 
1202
- msgid "Component"
1329
+ msgid "Compare"
1203
1330
  msgstr ""
1204
1331
 
1205
- msgid "Component Content View"
1332
+ msgid "Component"
1206
1333
  msgstr ""
1207
1334
 
1208
- msgid "Component content view"
1335
+ msgid "Component Content View"
1209
1336
  msgstr ""
1210
1337
 
1211
- msgid "Component content views"
1338
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1212
1339
  msgstr ""
1213
1340
 
1214
1341
  msgid "Components"
@@ -1241,7 +1368,7 @@ msgstr ""
1241
1368
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1242
1369
  msgstr ""
1243
1370
 
1244
- msgid "Consisting of multiple component content views"
1371
+ msgid "Consisting of multiple content views"
1245
1372
  msgstr ""
1246
1373
 
1247
1374
  msgid "Consists of content views"
@@ -1361,7 +1488,7 @@ msgstr ""
1361
1488
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1362
1489
  msgstr ""
1363
1490
 
1364
- msgid "Content View and Environment not set for registration."
1491
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1365
1492
  msgstr ""
1366
1493
 
1367
1494
  msgid "Content View id"
@@ -1373,6 +1500,21 @@ msgstr ""
1373
1500
  msgid "Content Views"
1374
1501
  msgstr ""
1375
1502
 
1503
+ msgid "Content cannot be imported into a Composite Content View. "
1504
+ msgstr ""
1505
+
1506
+ msgid "Content credential"
1507
+ msgstr ""
1508
+
1509
+ msgid "Content credentials"
1510
+ msgstr ""
1511
+
1512
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1513
+ msgstr ""
1514
+
1515
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1516
+ msgstr ""
1517
+
1376
1518
  msgid "Content files to upload. Can be a single file or array of files."
1377
1519
  msgstr ""
1378
1520
 
@@ -1391,10 +1533,10 @@ msgstr ""
1391
1533
  msgid "Content override search parameters"
1392
1534
  msgstr ""
1393
1535
 
1394
- msgid "Content source ID"
1536
+ msgid "Content source"
1395
1537
  msgstr ""
1396
1538
 
1397
- msgid "Content source successfully updated."
1539
+ msgid "Content source ID"
1398
1540
  msgstr ""
1399
1541
 
1400
1542
  msgid "Content source was not set for host '%{host}'"
@@ -1415,6 +1557,9 @@ msgstr ""
1415
1557
  msgid "Content view ${name} created"
1416
1558
  msgstr ""
1417
1559
 
1560
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1561
+ msgstr ""
1562
+
1418
1563
  msgid "Content view '%{view}' is not in environment '%{env}'"
1419
1564
  msgstr ""
1420
1565
 
@@ -1424,9 +1569,18 @@ msgstr ""
1424
1569
  msgid "Content view ID"
1425
1570
  msgstr ""
1426
1571
 
1572
+ msgid "Content view and environment not set for registration."
1573
+ msgstr ""
1574
+
1427
1575
  msgid "Content view details"
1428
1576
  msgstr ""
1429
1577
 
1578
+ msgid "Content view environments and activation key must all belong to the same organization"
1579
+ msgstr ""
1580
+
1581
+ msgid "Content view environments must have both a content view and an environment"
1582
+ msgstr ""
1583
+
1430
1584
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1431
1585
  msgstr ""
1432
1586
 
@@ -1436,6 +1590,9 @@ msgstr ""
1436
1590
  msgid "Content view label"
1437
1591
  msgstr ""
1438
1592
 
1593
+ msgid "Content view must be specified"
1594
+ msgstr ""
1595
+
1439
1596
  msgid "Content view name"
1440
1597
  msgstr ""
1441
1598
 
@@ -1457,6 +1614,9 @@ msgstr ""
1457
1614
  msgid "Content views"
1458
1615
  msgstr ""
1459
1616
 
1617
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1618
+ msgstr ""
1619
+
1460
1620
  msgid "Content_Host_Status"
1461
1621
  msgstr ""
1462
1622
 
@@ -1490,6 +1650,9 @@ msgstr ""
1490
1650
  msgid "Copy version units to library"
1491
1651
  msgstr ""
1492
1652
 
1653
+ msgid "Cores per socket"
1654
+ msgstr ""
1655
+
1493
1656
  msgid "Cores: %s"
1494
1657
  msgstr ""
1495
1658
 
@@ -1595,13 +1758,19 @@ msgstr ""
1595
1758
  msgid "Couldn't find product with id '%s'"
1596
1759
  msgstr ""
1597
1760
 
1761
+ msgid "Couldn't find products with id '%s'"
1762
+ msgstr ""
1763
+
1598
1764
  msgid "Couldn't find repository '%s'"
1599
1765
  msgstr ""
1600
1766
 
1601
1767
  msgid "Couldn't find smart proxies with id '%s'"
1602
1768
  msgstr ""
1603
1769
 
1604
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1770
+ msgid "Couldn't find smart proxies with name '%s'"
1771
+ msgstr ""
1772
+
1773
+ msgid "Couldn't find specified content view and lifecycle environment."
1605
1774
  msgstr ""
1606
1775
 
1607
1776
  msgid "Couldn't find subject of synchronization"
@@ -1613,6 +1782,9 @@ msgstr ""
1613
1782
  msgid "Create"
1614
1783
  msgstr ""
1615
1784
 
1785
+ msgid "Create ACS"
1786
+ msgstr ""
1787
+
1616
1788
  msgid "Create Alternate Content Source"
1617
1789
  msgstr ""
1618
1790
 
@@ -1628,12 +1800,18 @@ msgstr ""
1628
1800
  msgid "Create Repositories"
1629
1801
  msgstr ""
1630
1802
 
1803
+ msgid "Create Syncable Export History"
1804
+ msgstr ""
1805
+
1631
1806
  msgid "Create a Content Credential"
1632
1807
  msgstr ""
1633
1808
 
1634
1809
  msgid "Create a content view"
1635
1810
  msgstr ""
1636
1811
 
1812
+ msgid "Create a custom product"
1813
+ msgstr ""
1814
+
1637
1815
  msgid "Create a custom repository"
1638
1816
  msgstr ""
1639
1817
 
@@ -1652,10 +1830,10 @@ msgstr ""
1652
1830
  msgid "Create a sync plan"
1653
1831
  msgstr ""
1654
1832
 
1655
- msgid "Create an ACS"
1833
+ msgid "Create an activation key"
1656
1834
  msgstr ""
1657
1835
 
1658
- msgid "Create an activation key"
1836
+ 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."
1659
1837
  msgstr ""
1660
1838
 
1661
1839
  msgid "Create an environment"
@@ -1667,22 +1845,37 @@ msgstr ""
1667
1845
  msgid "Create an upload request"
1668
1846
  msgstr ""
1669
1847
 
1848
+ msgid "Create content credentials with the generated SSL certificate and key."
1849
+ msgstr ""
1850
+
1670
1851
  msgid "Create content view"
1671
1852
  msgstr ""
1672
1853
 
1673
1854
  msgid "Create filter"
1674
1855
  msgstr ""
1675
1856
 
1857
+ msgid "Create host collection"
1858
+ msgstr ""
1859
+
1676
1860
  msgid "Create organization"
1677
1861
  msgstr ""
1678
1862
 
1863
+ msgid "Create package filter rule"
1864
+ msgstr ""
1865
+
1866
+ msgid "Create rule"
1867
+ msgstr ""
1868
+
1869
+ msgid "Credentials"
1870
+ msgstr ""
1871
+
1679
1872
  msgid "Critical"
1680
1873
  msgstr ""
1681
1874
 
1682
1875
  msgid "Cron expression is not valid!"
1683
1876
  msgstr ""
1684
1877
 
1685
- msgid "Current organization has no manifest imported."
1878
+ msgid "Current organization does not have a manifest imported."
1686
1879
  msgstr ""
1687
1880
 
1688
1881
  msgid "Current organization is not set."
@@ -1691,6 +1884,12 @@ msgstr ""
1691
1884
  msgid "Current organization not set."
1692
1885
  msgstr ""
1693
1886
 
1887
+ msgid "Custom"
1888
+ msgstr ""
1889
+
1890
+ msgid "Custom CDN"
1891
+ msgstr ""
1892
+
1694
1893
  msgid "Custom Content Repositories"
1695
1894
  msgstr ""
1696
1895
 
@@ -1703,6 +1902,12 @@ msgstr ""
1703
1902
  msgid "Customize with Rex"
1704
1903
  msgstr ""
1705
1904
 
1905
+ msgid "DEB name"
1906
+ msgstr ""
1907
+
1908
+ msgid "DEB package updates"
1909
+ msgstr ""
1910
+
1706
1911
  msgid "Database connection"
1707
1912
  msgstr ""
1708
1913
 
@@ -1718,12 +1923,18 @@ msgstr ""
1718
1923
  msgid "Days from Now"
1719
1924
  msgstr ""
1720
1925
 
1926
+ msgid "Deb"
1927
+ msgstr ""
1928
+
1721
1929
  msgid "Deb Package"
1722
1930
  msgstr ""
1723
1931
 
1724
1932
  msgid "Deb Packages"
1725
1933
  msgstr ""
1726
1934
 
1935
+ msgid "Deb name"
1936
+ msgstr ""
1937
+
1727
1938
  msgid "Deb package identifiers to filter content by"
1728
1939
  msgstr ""
1729
1940
 
@@ -1832,6 +2043,12 @@ msgstr ""
1832
2043
  msgid "Default user data for new Operating Systems created from synced content"
1833
2044
  msgstr ""
1834
2045
 
2046
+ msgid "Define RHUI repository paths with guided steps."
2047
+ msgstr ""
2048
+
2049
+ msgid "Define repositories structured under a common web or filesystem path."
2050
+ msgstr ""
2051
+
1835
2052
  msgid "Delete"
1836
2053
  msgstr ""
1837
2054
 
@@ -1970,7 +2187,7 @@ msgstr ""
1970
2187
  msgid "Destroy an activation key"
1971
2188
  msgstr ""
1972
2189
 
1973
- msgid "Destroy an alternate content source"
2190
+ msgid "Destroy an alternate content source."
1974
2191
  msgstr ""
1975
2192
 
1976
2193
  msgid "Destroy an environment"
@@ -1979,6 +2196,9 @@ msgstr ""
1979
2196
  msgid "Destroy an environment in an organization"
1980
2197
  msgstr ""
1981
2198
 
2199
+ msgid "Destroy one or more alternate content sources"
2200
+ msgstr ""
2201
+
1982
2202
  msgid "Destroy one or more hosts"
1983
2203
  msgstr ""
1984
2204
 
@@ -2030,6 +2250,9 @@ msgstr ""
2030
2250
  msgid "Discover Repositories"
2031
2251
  msgstr ""
2032
2252
 
2253
+ msgid "Distribute archived content view versions"
2254
+ msgstr ""
2255
+
2033
2256
  msgid "Do not include this array of content views"
2034
2257
  msgstr ""
2035
2258
 
@@ -2066,15 +2289,36 @@ msgstr ""
2066
2289
  msgid "Edit RPM rule"
2067
2290
  msgstr ""
2068
2291
 
2292
+ msgid "Edit URL and subpaths"
2293
+ msgstr ""
2294
+
2069
2295
  msgid "Edit content view assignment"
2070
2296
  msgstr ""
2071
2297
 
2298
+ msgid "Edit credentials"
2299
+ msgstr ""
2300
+
2301
+ msgid "Edit details"
2302
+ msgstr ""
2303
+
2072
2304
  msgid "Edit filter rule"
2073
2305
  msgstr ""
2074
2306
 
2307
+ msgid "Edit package filter rule"
2308
+ msgstr ""
2309
+
2310
+ msgid "Edit products"
2311
+ msgstr ""
2312
+
2075
2313
  msgid "Edit rule"
2076
2314
  msgstr ""
2077
2315
 
2316
+ msgid "Edit smart proxies"
2317
+ msgstr ""
2318
+
2319
+ msgid "Edit system purpose attributes"
2320
+ msgstr ""
2321
+
2078
2322
  msgid "Editing Entitlements"
2079
2323
  msgstr ""
2080
2324
 
@@ -2096,9 +2340,15 @@ msgstr ""
2096
2340
  msgid "Either set the latest content view or the content view version. Cannot set both"
2097
2341
  msgstr ""
2098
2342
 
2343
+ msgid "Empty content view versions"
2344
+ msgstr ""
2345
+
2099
2346
  msgid "Enable"
2100
2347
  msgstr ""
2101
2348
 
2349
+ msgid "Enable Red Hat repositories"
2350
+ msgstr ""
2351
+
2102
2352
  msgid "Enable Simple Content Access"
2103
2353
  msgstr ""
2104
2354
 
@@ -2111,6 +2361,9 @@ msgstr ""
2111
2361
  msgid "Enable a repository from the set"
2112
2362
  msgstr ""
2113
2363
 
2364
+ msgid "Enable repository sets"
2365
+ msgstr ""
2366
+
2114
2367
  msgid "Enable simple content access for a manifest"
2115
2368
  msgstr ""
2116
2369
 
@@ -2144,9 +2397,18 @@ msgstr ""
2144
2397
  msgid "Enter a name"
2145
2398
  msgstr ""
2146
2399
 
2400
+ msgid "Enter a name for your source."
2401
+ msgstr ""
2402
+
2147
2403
  msgid "Enter a valid date: MM/DD/YYYY"
2148
2404
  msgstr ""
2149
2405
 
2406
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2407
+ msgstr ""
2408
+
2409
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2410
+ msgstr ""
2411
+
2150
2412
  msgid "Entitlements"
2151
2413
  msgstr ""
2152
2414
 
@@ -2240,10 +2502,10 @@ msgstr ""
2240
2502
  msgid "Exclude"
2241
2503
  msgstr ""
2242
2504
 
2243
- msgid "Exclude all Module Streams with no errata."
2505
+ msgid "Exclude all RPMs not associated to any errata"
2244
2506
  msgstr ""
2245
2507
 
2246
- msgid "Exclude all RPMs with no errata."
2508
+ msgid "Exclude all module streams not associated to any errata"
2247
2509
  msgstr ""
2248
2510
 
2249
2511
  msgid "Exclude filter"
@@ -2288,6 +2550,11 @@ msgstr ""
2288
2550
  msgid "Export as CSV"
2289
2551
  msgstr ""
2290
2552
 
2553
+ msgid ""
2554
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2555
+ " Defaults to importable."
2556
+ msgstr ""
2557
+
2291
2558
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2292
2559
  msgstr ""
2293
2560
 
@@ -2338,6 +2605,9 @@ msgstr ""
2338
2605
  msgid "Fetch traces for one or more hosts"
2339
2606
  msgstr ""
2340
2607
 
2608
+ msgid "Fetching content credentials"
2609
+ msgstr ""
2610
+
2341
2611
  msgid "Field to sort the results on"
2342
2612
  msgstr ""
2343
2613
 
@@ -2395,6 +2665,9 @@ msgstr ""
2395
2665
  msgid "Filter products by sync plan id"
2396
2666
  msgstr ""
2397
2667
 
2668
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2669
+ msgstr ""
2670
+
2398
2671
  msgid "Filter rule added"
2399
2672
  msgstr ""
2400
2673
 
@@ -2428,6 +2701,12 @@ msgstr ""
2428
2701
  msgid "Filters deleted"
2429
2702
  msgstr ""
2430
2703
 
2704
+ msgid "Filters will appear here when the filter is created."
2705
+ msgstr ""
2706
+
2707
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2708
+ msgstr ""
2709
+
2431
2710
  msgid "Finish"
2432
2711
  msgstr ""
2433
2712
 
@@ -2469,7 +2748,7 @@ msgstr ""
2469
2748
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2470
2749
  msgstr ""
2471
2750
 
2472
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2751
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2473
2752
  msgstr ""
2474
2753
 
2475
2754
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2487,6 +2766,9 @@ msgstr ""
2487
2766
  msgid "GPG Key URL"
2488
2767
  msgstr ""
2489
2768
 
2769
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2770
+ msgstr ""
2771
+
2490
2772
  msgid "Generate and Download"
2491
2773
  msgstr ""
2492
2774
 
@@ -2499,7 +2781,7 @@ msgstr ""
2499
2781
  msgid "Generated"
2500
2782
  msgstr ""
2501
2783
 
2502
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2784
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2503
2785
  msgstr ""
2504
2786
 
2505
2787
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2532,6 +2814,9 @@ msgstr ""
2532
2814
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2533
2815
  msgstr ""
2534
2816
 
2817
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2818
+ msgstr ""
2819
+
2535
2820
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2536
2821
  msgstr ""
2537
2822
 
@@ -2562,6 +2847,9 @@ msgstr ""
2562
2847
  msgid "HTTP Proxy identifier to associated"
2563
2848
  msgstr ""
2564
2849
 
2850
+ msgid "HW properties"
2851
+ msgstr ""
2852
+
2565
2853
  msgid "Has to be > 0"
2566
2854
  msgstr ""
2567
2855
 
@@ -2640,6 +2928,9 @@ msgstr ""
2640
2928
  msgid "Host collections updated"
2641
2929
  msgstr ""
2642
2930
 
2931
+ msgid "Host configurations are not updated yet"
2932
+ msgstr ""
2933
+
2643
2934
  msgid "Host content and subscription details"
2644
2935
  msgstr ""
2645
2936
 
@@ -2691,6 +2982,9 @@ msgstr ""
2691
2982
  msgid "Hosts"
2692
2983
  msgstr ""
2693
2984
 
2985
+ msgid "Hosts to update"
2986
+ msgstr ""
2987
+
2694
2988
  msgid "Hosts with Installable Errata"
2695
2989
  msgstr ""
2696
2990
 
@@ -2769,7 +3063,7 @@ msgstr ""
2769
3063
  msgid "ID: %s doesn't exist "
2770
3064
  msgstr ""
2771
3065
 
2772
- msgid "Id"
3066
+ 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."
2773
3067
  msgstr ""
2774
3068
 
2775
3069
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2787,6 +3081,9 @@ msgstr ""
2787
3081
  msgid "Id of an erratum to find repositories that contain the erratum"
2788
3082
  msgstr ""
2789
3083
 
3084
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3085
+ msgstr ""
3086
+
2790
3087
  msgid "Id of the content host"
2791
3088
  msgstr ""
2792
3089
 
@@ -2859,6 +3156,9 @@ msgstr ""
2859
3156
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2860
3157
  msgstr ""
2861
3158
 
3159
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3160
+ msgstr ""
3161
+
2862
3162
  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."
2863
3163
  msgstr ""
2864
3164
 
@@ -2871,6 +3171,9 @@ msgstr ""
2871
3171
  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."
2872
3172
  msgstr ""
2873
3173
 
3174
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3175
+ msgstr ""
3176
+
2874
3177
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2875
3178
  msgstr ""
2876
3179
 
@@ -2892,6 +3195,9 @@ msgstr ""
2892
3195
  msgid "Ignorable content can be only set for Yum repositories."
2893
3196
  msgstr ""
2894
3197
 
3198
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3199
+ msgstr ""
3200
+
2895
3201
  msgid "Ignore errors"
2896
3202
  msgstr ""
2897
3203
 
@@ -2904,6 +3210,9 @@ msgstr ""
2904
3210
  msgid "Ignore subscriptions that are unavailable to the specified host"
2905
3211
  msgstr ""
2906
3212
 
3213
+ msgid "Ignored hosts"
3214
+ msgstr ""
3215
+
2907
3216
  msgid "Immediate"
2908
3217
  msgstr ""
2909
3218
 
@@ -2988,10 +3297,10 @@ msgstr ""
2988
3297
  msgid "Include"
2989
3298
  msgstr ""
2990
3299
 
2991
- msgid "Include all Module Streams with no errata."
3300
+ msgid "Include all RPMs not associated to any errata"
2992
3301
  msgstr ""
2993
3302
 
2994
- msgid "Include all RPMs with no errata."
3303
+ msgid "Include all module streams not associated to any errata"
2995
3304
  msgstr ""
2996
3305
 
2997
3306
  msgid "Include content views generated by imports/exports. Defaults to false"
@@ -3117,12 +3426,15 @@ msgstr ""
3117
3426
  msgid "Installable"
3118
3427
  msgstr ""
3119
3428
 
3120
- msgid "Installable errata"
3429
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3121
3430
  msgstr ""
3122
3431
 
3123
3432
  msgid "Installable errata from content view"
3124
3433
  msgstr ""
3125
3434
 
3435
+ msgid "Installable updates"
3436
+ msgstr ""
3437
+
3126
3438
  msgid "Installation of errata requested: %{errata}"
3127
3439
  msgstr ""
3128
3440
 
@@ -3135,6 +3447,9 @@ msgstr ""
3135
3447
  msgid "Installation status"
3136
3448
  msgstr ""
3137
3449
 
3450
+ msgid "Installed"
3451
+ msgstr ""
3452
+
3138
3453
  msgid "Installed Packages"
3139
3454
  msgstr ""
3140
3455
 
@@ -3180,9 +3495,6 @@ msgstr ""
3180
3495
  msgid "Invalid"
3181
3496
  msgstr ""
3182
3497
 
3183
- msgid "Invalid SSL CA certificate given for CDN"
3184
- msgstr ""
3185
-
3186
3498
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3187
3499
  msgstr ""
3188
3500
 
@@ -3210,6 +3522,9 @@ msgstr ""
3210
3522
  msgid "Invalid event_type %s"
3211
3523
  msgstr ""
3212
3524
 
3525
+ msgid "Invalid export format provided. Format must be one of %s "
3526
+ msgstr ""
3527
+
3213
3528
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3214
3529
  msgstr ""
3215
3530
 
@@ -3228,6 +3543,15 @@ msgstr ""
3228
3543
  msgid "Invalid params provided - date_type must be one of %s"
3229
3544
  msgstr ""
3230
3545
 
3546
+ msgid "Invalid params provided - with_content must be one of %s"
3547
+ msgstr ""
3548
+
3549
+ msgid "Invalid path provided. Content can be only imported from file system. "
3550
+ msgstr ""
3551
+
3552
+ msgid "Invalid release version: [%s]"
3553
+ msgstr ""
3554
+
3231
3555
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3232
3556
  msgstr ""
3233
3557
 
@@ -3246,7 +3570,13 @@ msgstr ""
3246
3570
  msgid "Issued from"
3247
3571
  msgstr ""
3248
3572
 
3249
- msgid "Job ${description} has started."
3573
+ msgid "Items will appear here when a filter rule is added."
3574
+ msgstr ""
3575
+
3576
+ msgid "Job '${description}' completed"
3577
+ msgstr ""
3578
+
3579
+ msgid "Job '${description}' has started."
3250
3580
  msgstr ""
3251
3581
 
3252
3582
  msgid "Katello ID of local pool to update"
@@ -3318,9 +3648,21 @@ msgstr ""
3318
3648
  msgid "Label of the content view"
3319
3649
  msgstr ""
3320
3650
 
3651
+ msgid "Last check-in:"
3652
+ msgstr ""
3653
+
3654
+ msgid "Last checkin"
3655
+ msgstr ""
3656
+
3321
3657
  msgid "Last published"
3322
3658
  msgstr ""
3323
3659
 
3660
+ msgid "Last refresh"
3661
+ msgstr ""
3662
+
3663
+ msgid "Last refresh :"
3664
+ msgstr ""
3665
+
3324
3666
  msgid "Last task"
3325
3667
  msgstr ""
3326
3668
 
@@ -3336,6 +3678,9 @@ msgstr ""
3336
3678
  msgid "Learn more about adding Subscription Manifests"
3337
3679
  msgstr ""
3338
3680
 
3681
+ msgid "Legacy content host UI"
3682
+ msgstr ""
3683
+
3339
3684
  msgid "Less than"
3340
3685
  msgstr ""
3341
3686
 
@@ -3381,6 +3726,9 @@ msgstr ""
3381
3726
  msgid "Lifecycle environment for the host."
3382
3727
  msgstr ""
3383
3728
 
3729
+ msgid "Lifecycle environment must be specified"
3730
+ msgstr ""
3731
+
3384
3732
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3385
3733
  msgstr ""
3386
3734
 
@@ -3402,6 +3750,9 @@ msgstr ""
3402
3750
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3403
3751
  msgstr ""
3404
3752
 
3753
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3754
+ msgstr ""
3755
+
3405
3756
  msgid "Limit to environment"
3406
3757
  msgstr ""
3407
3758
 
@@ -3432,6 +3783,9 @@ msgstr ""
3432
3783
  msgid "List all organizations"
3433
3784
  msgstr ""
3434
3785
 
3786
+ msgid "List alternate content sources."
3787
+ msgstr ""
3788
+
3435
3789
  msgid "List an activation key's subscriptions"
3436
3790
  msgstr ""
3437
3791
 
@@ -3501,7 +3855,7 @@ msgstr ""
3501
3855
  msgid "List of Products for sync plan"
3502
3856
  msgstr ""
3503
3857
 
3504
- msgid "List of alternate_content_sources"
3858
+ msgid "List of alternate content source IDs"
3505
3859
  msgstr ""
3506
3860
 
3507
3861
  msgid "List of component content view version ids for composite views"
@@ -3594,6 +3948,9 @@ msgstr ""
3594
3948
  msgid "List of repository ids"
3595
3949
  msgstr ""
3596
3950
 
3951
+ msgid "List of resources types that will be automatically associated"
3952
+ msgstr ""
3953
+
3597
3954
  msgid "List of subscription products in a subscription"
3598
3955
  msgstr ""
3599
3956
 
@@ -3699,6 +4056,12 @@ msgstr ""
3699
4056
  msgid "Manifest refreshed"
3700
4057
  msgstr ""
3701
4058
 
4059
+ msgid "Manual"
4060
+ msgstr ""
4061
+
4062
+ msgid "Manual authentication"
4063
+ msgstr ""
4064
+
3702
4065
  msgid "Mark Content Host Statuses as Unknown for %s"
3703
4066
  msgstr ""
3704
4067
 
@@ -3762,6 +4125,9 @@ msgstr ""
3762
4125
  msgid "Missing arguments %{substitutions} for %{content_url}"
3763
4126
  msgstr ""
3764
4127
 
4128
+ msgid "Model"
4129
+ msgstr ""
4130
+
3765
4131
  msgid "Moderate"
3766
4132
  msgstr ""
3767
4133
 
@@ -3783,7 +4149,7 @@ msgstr ""
3783
4149
  msgid "Module streams"
3784
4150
  msgstr ""
3785
4151
 
3786
- msgid "Module streams will appear here when available."
4152
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3787
4153
  msgstr ""
3788
4154
 
3789
4155
  msgid "Multi-entitlement"
@@ -3801,11 +4167,19 @@ msgstr ""
3801
4167
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3802
4168
  msgstr ""
3803
4169
 
4170
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4171
+ msgstr ""
4172
+
3804
4173
  msgid ""
3805
4174
  "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"
3806
4175
  " %{repos}"
3807
4176
  msgstr ""
3808
4177
 
4178
+ msgid ""
4179
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4180
+ " %{repos}"
4181
+ msgstr ""
4182
+
3809
4183
  msgid ""
3810
4184
  "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"
3811
4185
  " %{repos}"
@@ -3817,6 +4191,9 @@ msgstr ""
3817
4191
  msgid "Name"
3818
4192
  msgstr ""
3819
4193
 
4194
+ msgid "Name and label of default content view should not be changed"
4195
+ msgstr ""
4196
+
3820
4197
  msgid "Name is a required parameter."
3821
4198
  msgstr ""
3822
4199
 
@@ -3841,6 +4218,12 @@ msgstr ""
3841
4218
  msgid "Name of the upstream docker repository"
3842
4219
  msgstr ""
3843
4220
 
4221
+ msgid "Name source"
4222
+ msgstr ""
4223
+
4224
+ msgid "Names of smart proxies to associate"
4225
+ msgstr ""
4226
+
3844
4227
  msgid "Needs to only be set for docker tags"
3845
4228
  msgstr ""
3846
4229
 
@@ -3853,6 +4236,9 @@ msgstr ""
3853
4236
  msgid "Network Sync"
3854
4237
  msgstr ""
3855
4238
 
4239
+ msgid "Never"
4240
+ msgstr ""
4241
+
3856
4242
  msgid "Never Synced"
3857
4243
  msgstr ""
3858
4244
 
@@ -3949,6 +4335,9 @@ msgstr ""
3949
4335
  msgid "No content ids provided"
3950
4336
  msgstr ""
3951
4337
 
4338
+ msgid "No content in selected versions."
4339
+ msgstr ""
4340
+
3952
4341
  msgid "No content view history events found."
3953
4342
  msgstr ""
3954
4343
 
@@ -4000,13 +4389,19 @@ msgstr ""
4000
4389
  msgid "No host collections found."
4001
4390
  msgstr ""
4002
4391
 
4392
+ msgid "No host collections yet"
4393
+ msgstr ""
4394
+
4395
+ msgid "No hosts found"
4396
+ msgstr ""
4397
+
4003
4398
  msgid "No hosts have been specified."
4004
4399
  msgstr ""
4005
4400
 
4006
4401
  msgid "No hosts registered with subscription-manager found in selection."
4007
4402
  msgstr ""
4008
4403
 
4009
- msgid "No hosts with content source found!"
4404
+ msgid "No hosts were specified"
4010
4405
  msgstr ""
4011
4406
 
4012
4407
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4024,9 +4419,15 @@ msgstr ""
4024
4419
  msgid "No matching "
4025
4420
  msgstr ""
4026
4421
 
4422
+ msgid "No matching ${name} found."
4423
+ msgstr ""
4424
+
4027
4425
  msgid "No matching ${selectedContentType} found"
4028
4426
  msgstr ""
4029
4427
 
4428
+ msgid "No matching DEB found."
4429
+ msgstr ""
4430
+
4030
4431
  msgid "No matching RPM found."
4031
4432
  msgstr ""
4032
4433
 
@@ -4111,6 +4512,9 @@ msgstr ""
4111
4512
  msgid "No products are enabled."
4112
4513
  msgstr ""
4113
4514
 
4515
+ msgid "No profiles to show"
4516
+ msgstr ""
4517
+
4114
4518
  msgid "No pulp workers running."
4115
4519
  msgstr ""
4116
4520
 
@@ -4186,6 +4590,9 @@ msgstr ""
4186
4590
  msgid "Not all necessary pulp workers running at %s."
4187
4591
  msgstr ""
4188
4592
 
4593
+ msgid "Not installed"
4594
+ msgstr ""
4595
+
4189
4596
  msgid "Not running"
4190
4597
  msgstr ""
4191
4598
 
@@ -4204,6 +4611,9 @@ msgstr ""
4204
4611
  msgid "Nothing selected"
4205
4612
  msgstr ""
4206
4613
 
4614
+ msgid "Number of CPU(s)"
4615
+ msgstr ""
4616
+
4207
4617
  msgid "Number of host applicability calculations to process per task."
4208
4618
  msgstr ""
4209
4619
 
@@ -4216,6 +4626,9 @@ msgstr ""
4216
4626
  msgid "Number to Allocate"
4217
4627
  msgstr ""
4218
4628
 
4629
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4630
+ msgstr ""
4631
+
4219
4632
  msgid "OSTree Branch"
4220
4633
  msgstr ""
4221
4634
 
@@ -4237,6 +4650,9 @@ msgstr ""
4237
4650
  msgid "On Demand"
4238
4651
  msgstr ""
4239
4652
 
4653
+ msgid "On the RHUA Instance, check the available repositories."
4654
+ msgstr ""
4655
+
4240
4656
  msgid "On-disk location for exported repositories"
4241
4657
  msgstr ""
4242
4658
 
@@ -4312,6 +4728,9 @@ msgstr ""
4312
4728
  msgid "Orphaned Content Protection Time"
4313
4729
  msgstr ""
4314
4730
 
4731
+ 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!"
4732
+ msgstr ""
4733
+
4315
4734
  msgid "Other"
4316
4735
  msgstr ""
4317
4736
 
@@ -4531,12 +4950,6 @@ msgstr ""
4531
4950
  msgid "Path"
4532
4951
  msgstr ""
4533
4952
 
4534
- msgid "Path for ssl cert used for pulp server auth"
4535
- msgstr ""
4536
-
4537
- msgid "Path for ssl key used for pulp server auth"
4538
- msgstr ""
4539
-
4540
4953
  msgid "Path suffixes for finding alternate content"
4541
4954
  msgstr ""
4542
4955
 
@@ -4621,6 +5034,9 @@ msgstr ""
4621
5034
  msgid "Please wait while the task starts.."
4622
5035
  msgstr ""
4623
5036
 
5037
+ msgid "Please wait..."
5038
+ msgstr ""
5039
+
4624
5040
  msgid "Policy to set for mirroring content. Must be one of %s."
4625
5041
  msgstr ""
4626
5042
 
@@ -4710,9 +5126,18 @@ msgstr ""
4710
5126
  msgid "Product: '%{product}', Repository: '%{repository}'"
4711
5127
  msgstr ""
4712
5128
 
5129
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5130
+ msgstr ""
5131
+
4713
5132
  msgid "Products"
4714
5133
  msgstr ""
4715
5134
 
5135
+ msgid "Products updated."
5136
+ msgstr ""
5137
+
5138
+ msgid "Profiles"
5139
+ msgstr ""
5140
+
4716
5141
  msgid "Promote"
4717
5142
  msgstr ""
4718
5143
 
@@ -4797,18 +5222,9 @@ msgstr ""
4797
5222
  msgid "Pulp 3 is not enabled on Smart proxy!"
4798
5223
  msgstr ""
4799
5224
 
4800
- msgid "Pulp Docker registry port"
4801
- msgstr ""
4802
-
4803
5225
  msgid "Pulp bulk load size"
4804
5226
  msgstr ""
4805
5227
 
4806
- msgid "Pulp client cert"
4807
- msgstr ""
4808
-
4809
- msgid "Pulp client key"
4810
- msgstr ""
4811
-
4812
5228
  msgid "Pulp database connection issue at %s."
4813
5229
  msgstr ""
4814
5230
 
@@ -4887,12 +5303,18 @@ msgstr ""
4887
5303
  msgid "Quantity to Allocate"
4888
5304
  msgstr ""
4889
5305
 
5306
+ msgid "RAM"
5307
+ msgstr ""
5308
+
4890
5309
  msgid "RAM: %s GB"
4891
5310
  msgstr ""
4892
5311
 
4893
5312
  msgid "RH Repos"
4894
5313
  msgstr ""
4895
5314
 
5315
+ msgid "RHUI"
5316
+ msgstr ""
5317
+
4896
5318
  msgid "RPM"
4897
5319
  msgstr ""
4898
5320
 
@@ -4905,6 +5327,12 @@ msgstr ""
4905
5327
  msgid "RPM name"
4906
5328
  msgstr ""
4907
5329
 
5330
+ msgid "RPM package groups"
5331
+ msgstr ""
5332
+
5333
+ msgid "RPM package updates"
5334
+ msgstr ""
5335
+
4908
5336
  msgid "RPM packages"
4909
5337
  msgstr ""
4910
5338
 
@@ -4971,6 +5399,9 @@ msgstr ""
4971
5399
  msgid "Red Hat content will be consumed from the {type}."
4972
5400
  msgstr ""
4973
5401
 
5402
+ msgid "Red Hat content will be consumed from {type}."
5403
+ msgstr ""
5404
+
4974
5405
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4975
5406
  msgstr ""
4976
5407
 
@@ -4986,15 +5417,27 @@ msgstr ""
4986
5417
  msgid "Refresh"
4987
5418
  msgstr ""
4988
5419
 
5420
+ msgid "Refresh Alternate Content Source"
5421
+ msgstr ""
5422
+
4989
5423
  msgid "Refresh Content Host Statuses for %s"
4990
5424
  msgstr ""
4991
5425
 
4992
5426
  msgid "Refresh Manifest"
4993
5427
  msgstr ""
4994
5428
 
5429
+ msgid "Refresh alternate content sources"
5430
+ msgstr ""
5431
+
5432
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5433
+ msgstr ""
5434
+
4995
5435
  msgid "Refresh previously imported manifest for Red Hat provider"
4996
5436
  msgstr ""
4997
5437
 
5438
+ msgid "Refresh source"
5439
+ msgstr ""
5440
+
4998
5441
  msgid "Refresh_Content_Host_Status"
4999
5442
  msgstr ""
5000
5443
 
@@ -5004,13 +5447,16 @@ msgstr ""
5004
5447
  msgid "Register host '%s' before attaching subscriptions"
5005
5448
  msgstr ""
5006
5449
 
5450
+ msgid "Registered"
5451
+ msgstr ""
5452
+
5007
5453
  msgid "Registered by"
5008
5454
  msgstr ""
5009
5455
 
5010
5456
  msgid "Registered on"
5011
5457
  msgstr ""
5012
5458
 
5013
- msgid "Registered through"
5459
+ msgid "Registering to multiple environments is not enabled."
5014
5460
  msgstr ""
5015
5461
 
5016
5462
  msgid "Registration details"
@@ -5028,24 +5474,27 @@ msgstr ""
5028
5474
  msgid "Reindex subscriptions"
5029
5475
  msgstr ""
5030
5476
 
5031
- msgid "Related component content views"
5477
+ msgid "Related composite content views"
5032
5478
  msgstr ""
5033
5479
 
5034
- msgid "Related component cvs: "
5480
+ msgid "Related composite content views: "
5035
5481
  msgstr ""
5036
5482
 
5037
- msgid "Related composite content views"
5483
+ msgid "Related content views"
5038
5484
  msgstr ""
5039
5485
 
5040
- msgid "Related composite cvs: "
5486
+ msgid "Related content views will appear here when created."
5041
5487
  msgstr ""
5042
5488
 
5043
- msgid "Related content views will appear here when created."
5489
+ msgid "Related content views: "
5044
5490
  msgstr ""
5045
5491
 
5046
5492
  msgid "Release"
5047
5493
  msgstr ""
5048
5494
 
5495
+ msgid "Release version"
5496
+ msgstr ""
5497
+
5049
5498
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5050
5499
  msgstr ""
5051
5500
 
@@ -5064,6 +5513,9 @@ msgstr ""
5064
5513
  msgid "Remote action:"
5065
5514
  msgstr ""
5066
5515
 
5516
+ msgid "Remote execution job '${description}' failed."
5517
+ msgstr ""
5518
+
5067
5519
  msgid "Removal of package group(s) requested: %{groups}"
5068
5520
  msgstr ""
5069
5521
 
@@ -5124,7 +5576,7 @@ msgstr ""
5124
5576
  msgid "Remove one or more host collections from one or more hosts"
5125
5577
  msgstr ""
5126
5578
 
5127
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5579
+ msgid "Remove one or more subscriptions from an upstream manifest"
5128
5580
  msgstr ""
5129
5581
 
5130
5582
  msgid "Remove package"
@@ -5175,6 +5627,9 @@ msgstr ""
5175
5627
  msgid "Removing Package..."
5176
5628
  msgstr ""
5177
5629
 
5630
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5631
+ msgstr ""
5632
+
5178
5633
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5179
5634
  msgstr ""
5180
5635
 
@@ -5259,7 +5714,7 @@ msgstr ""
5259
5714
  msgid "Repository sets reset to default"
5260
5715
  msgstr ""
5261
5716
 
5262
- msgid "Repository sets will appear here when available."
5717
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5263
5718
  msgstr ""
5264
5719
 
5265
5720
  msgid "Republish Repositories of %{name} %{version}"
@@ -5394,6 +5849,9 @@ msgstr ""
5394
5849
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5395
5850
  msgstr ""
5396
5851
 
5852
+ msgid "Return same, different or all results"
5853
+ msgstr ""
5854
+
5397
5855
  msgid "Return subscriptions that match installed products of the specified host"
5398
5856
  msgstr ""
5399
5857
 
@@ -5421,6 +5879,9 @@ msgstr ""
5421
5879
  msgid "Review details"
5422
5880
  msgstr ""
5423
5881
 
5882
+ msgid "Review the information below and click "
5883
+ msgstr ""
5884
+
5424
5885
  msgid "Review your currently selected changes for "
5425
5886
  msgstr ""
5426
5887
 
@@ -5439,21 +5900,30 @@ msgstr ""
5439
5900
  msgid "Run Sync Plan:"
5440
5901
  msgstr ""
5441
5902
 
5442
- msgid "Run job invocation"
5443
- msgstr ""
5444
-
5445
5903
  msgid "Running"
5446
5904
  msgstr ""
5447
5905
 
5448
5906
  msgid "SKU"
5449
5907
  msgstr ""
5450
5908
 
5909
+ msgid "SLA"
5910
+ msgstr ""
5911
+
5451
5912
  msgid "SRPM details"
5452
5913
  msgstr ""
5453
5914
 
5454
5915
  msgid "SSL CA Content Credential"
5455
5916
  msgstr ""
5456
5917
 
5918
+ msgid "SSL CA certificate"
5919
+ msgstr ""
5920
+
5921
+ msgid "SSL client certificate"
5922
+ msgstr ""
5923
+
5924
+ msgid "SSL client key"
5925
+ msgstr ""
5926
+
5457
5927
  msgid "SSL version used to communicate with the CDN"
5458
5928
  msgstr ""
5459
5929
 
@@ -5463,6 +5933,9 @@ msgstr ""
5463
5933
  msgid "Save"
5464
5934
  msgstr ""
5465
5935
 
5936
+ msgid "Saving alternate content source..."
5937
+ msgstr ""
5938
+
5466
5939
  msgid "Schedule errata for installation using katello-agent. %s"
5467
5940
  msgstr ""
5468
5941
 
@@ -5532,6 +6005,15 @@ msgstr ""
5532
6005
  msgid "Select Value"
5533
6006
  msgstr ""
5534
6007
 
6008
+ msgid "Select a CA certificate"
6009
+ msgstr ""
6010
+
6011
+ msgid "Select a client certificate"
6012
+ msgstr ""
6013
+
6014
+ msgid "Select a client key"
6015
+ msgstr ""
6016
+
5535
6017
  msgid "Select a content view"
5536
6018
  msgstr ""
5537
6019
 
@@ -5547,6 +6029,9 @@ msgstr ""
5547
6029
  msgid "Select a provider to install katello-host-tools-tracer"
5548
6030
  msgstr ""
5549
6031
 
6032
+ msgid "Select add-ons"
6033
+ msgstr ""
6034
+
5550
6035
  msgid "Select all"
5551
6036
  msgstr ""
5552
6037
 
@@ -5562,13 +6047,16 @@ msgstr ""
5562
6047
  msgid "Select an environment above"
5563
6048
  msgstr ""
5564
6049
 
6050
+ msgid "Select an option"
6051
+ msgstr ""
6052
+
5565
6053
  msgid "Select an organization"
5566
6054
  msgstr ""
5567
6055
 
5568
6056
  msgid "Select available version of ${cvName} to use"
5569
6057
  msgstr ""
5570
6058
 
5571
- msgid "Select available version of components to use"
6059
+ msgid "Select available version of content views to use"
5572
6060
  msgstr ""
5573
6061
 
5574
6062
  msgid "Select content view"
@@ -5601,9 +6089,27 @@ msgstr ""
5601
6089
  msgid "Select page"
5602
6090
  msgstr ""
5603
6091
 
6092
+ msgid "Select products"
6093
+ msgstr ""
6094
+
6095
+ msgid "Select products to associate to this source."
6096
+ msgstr ""
6097
+
5604
6098
  msgid "Select row"
5605
6099
  msgstr ""
5606
6100
 
6101
+ msgid "Select smart proxies to be used with this source."
6102
+ msgstr ""
6103
+
6104
+ msgid "Select smart proxy"
6105
+ msgstr ""
6106
+
6107
+ msgid "Select source type"
6108
+ msgstr ""
6109
+
6110
+ msgid "Select system purpose attributes for host {hostName}."
6111
+ msgstr ""
6112
+
5607
6113
  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."
5608
6114
  msgstr ""
5609
6115
 
@@ -5706,7 +6212,7 @@ msgstr ""
5706
6212
  msgid "Show an activation key"
5707
6213
  msgstr ""
5708
6214
 
5709
- msgid "Show an alternate content source"
6215
+ msgid "Show an alternate content source."
5710
6216
  msgstr ""
5711
6217
 
5712
6218
  msgid "Show an environment"
@@ -5733,6 +6239,9 @@ msgstr ""
5733
6239
  msgid "Show releases available for the content host"
5734
6240
  msgstr ""
5735
6241
 
6242
+ msgid "Show repositories enabled on the host that are known to Katello"
6243
+ msgstr ""
6244
+
5736
6245
  msgid "Show the available repository types"
5737
6246
  msgstr ""
5738
6247
 
@@ -5754,6 +6263,9 @@ msgstr ""
5754
6263
  msgid "Simple Content Access has been enabled for '%{subject}'."
5755
6264
  msgstr ""
5756
6265
 
6266
+ msgid "Simplified"
6267
+ msgstr ""
6268
+
5757
6269
  msgid "Single content view consisting of e.g. repositories"
5758
6270
  msgstr ""
5759
6271
 
@@ -5766,12 +6278,18 @@ msgstr ""
5766
6278
  msgid "Skipped pulp_auth check after failed pulp check"
5767
6279
  msgstr ""
5768
6280
 
6281
+ msgid "Smart proxies"
6282
+ msgstr ""
6283
+
5769
6284
  msgid "Smart proxy IDs"
5770
6285
  msgstr ""
5771
6286
 
5772
6287
  msgid "Smart proxy content source not found!"
5773
6288
  msgstr ""
5774
6289
 
6290
+ msgid "Sockets"
6291
+ msgstr ""
6292
+
5775
6293
  msgid "Sockets: %s"
5776
6294
  msgstr ""
5777
6295
 
@@ -5784,7 +6302,7 @@ msgstr ""
5784
6302
  msgid "Solve dependencies"
5785
6303
  msgstr ""
5786
6304
 
5787
- msgid "Some hosts are ignored!"
6305
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5788
6306
  msgstr ""
5789
6307
 
5790
6308
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5808,13 +6326,13 @@ msgstr ""
5808
6326
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5809
6327
  msgstr ""
5810
6328
 
5811
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6329
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5812
6330
  msgstr ""
5813
6331
 
5814
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6332
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5815
6333
  msgstr ""
5816
6334
 
5817
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6335
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5818
6336
  msgstr ""
5819
6337
 
5820
6338
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5862,9 +6380,15 @@ msgstr ""
5862
6380
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5863
6381
  msgstr ""
5864
6382
 
6383
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6384
+ msgstr ""
6385
+
5865
6386
  msgid "Something went wrong while loading the content views. See the logs for more information"
5866
6387
  msgstr ""
5867
6388
 
6389
+ msgid "Something went wrong while refreshing alternate content sources: "
6390
+ msgstr ""
6391
+
5868
6392
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5869
6393
  msgstr ""
5870
6394
 
@@ -5877,6 +6401,9 @@ msgstr ""
5877
6401
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5878
6402
  msgstr ""
5879
6403
 
6404
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6405
+ msgstr ""
6406
+
5880
6407
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5881
6408
  msgstr ""
5882
6409
 
@@ -5895,9 +6422,33 @@ msgstr ""
5895
6422
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5896
6423
  msgstr ""
5897
6424
 
6425
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6426
+ msgstr ""
6427
+
6428
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6429
+ msgstr ""
6430
+
6431
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6432
+ msgstr ""
6433
+
6434
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6435
+ msgstr ""
6436
+
5898
6437
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5899
6438
  msgstr ""
5900
6439
 
6440
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6441
+ msgstr ""
6442
+
6443
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6444
+ msgstr ""
6445
+
6446
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6447
+ msgstr ""
6448
+
6449
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6450
+ msgstr ""
6451
+
5901
6452
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5902
6453
  msgstr ""
5903
6454
 
@@ -5916,6 +6467,9 @@ msgstr ""
5916
6467
  msgid "Source RPMs"
5917
6468
  msgstr ""
5918
6469
 
6470
+ msgid "Source type"
6471
+ msgstr ""
6472
+
5919
6473
  msgid "Specify an export chunk size less than 1_000_000 GB"
5920
6474
  msgstr ""
5921
6475
 
@@ -5973,10 +6527,10 @@ msgstr ""
5973
6527
  msgid "Subnet IDs"
5974
6528
  msgstr ""
5975
6529
 
5976
- msgid "Subscription"
6530
+ msgid "Subpaths"
5977
6531
  msgstr ""
5978
6532
 
5979
- msgid "Subscription Allocation"
6533
+ msgid "Subscription"
5980
6534
  msgstr ""
5981
6535
 
5982
6536
  msgid "Subscription Details"
@@ -6009,9 +6563,6 @@ msgstr ""
6009
6563
  msgid "Subscription UUID"
6010
6564
  msgstr ""
6011
6565
 
6012
- msgid "Subscription Watch"
6013
- msgstr ""
6014
-
6015
6566
  msgid "Subscription connection enabled"
6016
6567
  msgstr ""
6017
6568
 
@@ -6036,6 +6587,9 @@ msgstr ""
6036
6587
  msgid "Subscription not found"
6037
6588
  msgstr ""
6038
6589
 
6590
+ msgid "Subscription status"
6591
+ msgstr ""
6592
+
6039
6593
  msgid "Subscription was not persisted - %{error_message}"
6040
6594
  msgstr ""
6041
6595
 
@@ -6054,6 +6608,9 @@ msgstr ""
6054
6608
  msgid "Subscriptions information based on selected activation keys:"
6055
6609
  msgstr ""
6056
6610
 
6611
+ msgid "Subscriptions service"
6612
+ msgstr ""
6613
+
6057
6614
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6058
6615
  msgstr ""
6059
6616
 
@@ -6072,12 +6629,18 @@ msgstr ""
6072
6629
  msgid "Successfully initiated removal of %s product(s)"
6073
6630
  msgstr ""
6074
6631
 
6632
+ msgid "Successfully refreshed."
6633
+ msgstr ""
6634
+
6075
6635
  msgid "Successfully removed %s Host(s)."
6076
6636
  msgstr ""
6077
6637
 
6078
6638
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6079
6639
  msgstr ""
6080
6640
 
6641
+ msgid "Successfully synced capsule."
6642
+ msgstr ""
6643
+
6081
6644
  msgid "Successfully synchronized."
6082
6645
  msgstr ""
6083
6646
 
@@ -6159,9 +6722,15 @@ msgstr ""
6159
6722
  msgid "Sync plan identifier to attach"
6160
6723
  msgstr ""
6161
6724
 
6725
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6726
+ msgstr ""
6727
+
6162
6728
  msgid "Sync state"
6163
6729
  msgstr ""
6164
6730
 
6731
+ msgid "Syncable export"
6732
+ msgstr ""
6733
+
6165
6734
  msgid "Synced "
6166
6735
  msgstr ""
6167
6736
 
@@ -6210,6 +6779,12 @@ msgstr ""
6210
6779
  msgid "System purpose"
6211
6780
  msgstr ""
6212
6781
 
6782
+ msgid "System purpose attributes updated"
6783
+ msgstr ""
6784
+
6785
+ msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6786
+ msgstr ""
6787
+
6213
6788
  msgid "Tag name"
6214
6789
  msgstr ""
6215
6790
 
@@ -6240,9 +6815,6 @@ msgstr ""
6240
6815
  msgid "The Alternate Content Source type"
6241
6816
  msgstr ""
6242
6817
 
6243
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6244
- msgstr ""
6245
-
6246
6818
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6247
6819
  msgstr ""
6248
6820
 
@@ -6294,9 +6866,6 @@ msgstr ""
6294
6866
  msgid "The field to sort the data by. Defaults to the created date."
6295
6867
  msgstr ""
6296
6868
 
6297
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6298
- msgstr ""
6299
-
6300
6869
  msgid "The following hosts have errata that apply to them: "
6301
6870
  msgstr ""
6302
6871
 
@@ -6323,6 +6892,9 @@ msgstr ""
6323
6892
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6324
6893
  msgstr ""
6325
6894
 
6895
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6896
+ msgstr ""
6897
+
6326
6898
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6327
6899
  msgstr ""
6328
6900
 
@@ -6364,7 +6936,7 @@ msgstr ""
6364
6936
  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."
6365
6937
  msgstr ""
6366
6938
 
6367
- msgid "The port used by Pulp Crane to provide Docker Registries"
6939
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6368
6940
  msgstr ""
6369
6941
 
6370
6942
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6376,6 +6948,9 @@ msgstr ""
6376
6948
  msgid "The repository is already enabled"
6377
6949
  msgstr ""
6378
6950
 
6951
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6952
+ msgstr ""
6953
+
6379
6954
  msgid "The request did not contain any repository information."
6380
6955
  msgstr ""
6381
6956
 
@@ -6409,13 +6984,19 @@ msgstr ""
6409
6984
  msgid "The token key to use for authentication."
6410
6985
  msgstr ""
6411
6986
 
6987
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6988
+ msgstr ""
6989
+
6990
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6991
+ msgstr ""
6992
+
6412
6993
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6413
6994
  msgstr ""
6414
6995
 
6415
6996
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6416
6997
  msgstr ""
6417
6998
 
6418
- msgid "There are no Subscription Allocations to display"
6999
+ msgid "There are no Manifests to display"
6419
7000
  msgstr ""
6420
7001
 
6421
7002
  msgid "There are no Subscriptions to display"
@@ -6442,6 +7023,9 @@ msgstr ""
6442
7023
  msgid "There is no Manifest History to display."
6443
7024
  msgstr ""
6444
7025
 
7026
+ msgid "There is no downloaded content to clean."
7027
+ msgstr ""
7028
+
6445
7029
  msgid "There is no such HTTP proxy"
6446
7030
  msgstr ""
6447
7031
 
@@ -6484,6 +7068,9 @@ msgstr ""
6484
7068
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6485
7069
  msgstr ""
6486
7070
 
7071
+ 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."
7072
+ msgstr ""
7073
+
6487
7074
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6488
7075
  msgstr ""
6489
7076
 
@@ -6508,7 +7095,7 @@ msgstr ""
6508
7095
  msgid "This host does not have any packages."
6509
7096
  msgstr ""
6510
7097
 
6511
- msgid "This host has errata that are applicable, but not installable."
7098
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6512
7099
  msgstr ""
6513
7100
 
6514
7101
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6517,13 +7104,13 @@ msgstr ""
6517
7104
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6518
7105
  msgstr ""
6519
7106
 
6520
- msgid "This is disabled because a manifest related task is in progress."
7107
+ msgid "This is disabled because a manifest task is in progress"
6521
7108
  msgstr ""
6522
7109
 
6523
- msgid "This is disabled because a manifest task is in progress"
7110
+ msgid "This is disabled because a manifest-related task is in progress."
6524
7111
  msgstr ""
6525
7112
 
6526
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7113
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6527
7114
  msgstr ""
6528
7115
 
6529
7116
  msgid "This is disabled because no manifest exists"
@@ -6538,10 +7125,10 @@ msgstr ""
6538
7125
  msgid "This is not a linked repository"
6539
7126
  msgstr ""
6540
7127
 
6541
- 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}."
7128
+ 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}."
6542
7129
  msgstr ""
6543
7130
 
6544
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7131
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6545
7132
  msgstr ""
6546
7133
 
6547
7134
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6592,12 +7179,24 @@ msgstr ""
6592
7179
  msgid "Title"
6593
7180
  msgstr ""
6594
7181
 
7182
+ msgid "To get started, add this host to a host collection."
7183
+ msgstr ""
7184
+
7185
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7186
+ msgstr ""
7187
+
7188
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7189
+ msgstr ""
7190
+
6595
7191
  msgid "Toggling Simple Content Access will refresh your manifest."
6596
7192
  msgstr ""
6597
7193
 
6598
7194
  msgid "Total steps: "
6599
7195
  msgstr ""
6600
7196
 
7197
+ msgid "Tracer"
7198
+ msgstr ""
7199
+
6601
7200
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6602
7201
  msgstr ""
6603
7202
 
@@ -6607,18 +7206,33 @@ msgstr ""
6607
7206
  msgid "Traces"
6608
7207
  msgstr ""
6609
7208
 
7209
+ msgid "Traces are being enabled"
7210
+ msgstr ""
7211
+
6610
7212
  msgid "Traces are not enabled"
6611
7213
  msgstr ""
6612
7214
 
6613
7215
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6614
7216
  msgstr ""
6615
7217
 
7218
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7219
+ msgstr ""
7220
+
6616
7221
  msgid "Traces may be listed here after {pkgLink}."
6617
7222
  msgstr ""
6618
7223
 
7224
+ msgid "Traces not available"
7225
+ msgstr ""
7226
+
6619
7227
  msgid "Traces that require logout cannot be restarted remotely"
6620
7228
  msgstr ""
6621
7229
 
7230
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7231
+ msgstr ""
7232
+
7233
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7234
+ msgstr ""
7235
+
6622
7236
  msgid "Trigger an auto-attach of subscriptions"
6623
7237
  msgstr ""
6624
7238
 
@@ -6649,9 +7263,18 @@ msgstr ""
6649
7263
  msgid "Type of content: \"cert\", \"gpg_key\""
6650
7264
  msgstr ""
6651
7265
 
7266
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7267
+ msgstr ""
7268
+
6652
7269
  msgid "URL"
6653
7270
  msgstr ""
6654
7271
 
7272
+ msgid "URL and paths"
7273
+ msgstr ""
7274
+
7275
+ msgid "URL and subpaths"
7276
+ msgstr ""
7277
+
6655
7278
  msgid "URL needs to have a trailing /"
6656
7279
  msgstr ""
6657
7280
 
@@ -6685,6 +7308,12 @@ msgstr ""
6685
7308
  msgid "Unable to connect. Got: %s"
6686
7309
  msgstr ""
6687
7310
 
7311
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7312
+ msgstr ""
7313
+
7314
+ 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."
7315
+ msgstr ""
7316
+
6688
7317
  msgid "Unable to detect pulp storage"
6689
7318
  msgstr ""
6690
7319
 
@@ -6718,6 +7347,9 @@ msgstr ""
6718
7347
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6719
7348
  msgstr ""
6720
7349
 
7350
+ 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."
7351
+ msgstr ""
7352
+
6721
7353
  msgid "Unable to send errata e-mail notification: %{error}"
6722
7354
  msgstr ""
6723
7355
 
@@ -6847,7 +7479,7 @@ msgstr ""
6847
7479
  msgid "Update an activation key"
6848
7480
  msgstr ""
6849
7481
 
6850
- msgid "Update an alternate content source"
7482
+ msgid "Update an alternate content source."
6851
7483
  msgstr ""
6852
7484
 
6853
7485
  msgid "Update an environment"
@@ -7003,6 +7635,9 @@ msgstr ""
7003
7635
  msgid "Upload request id"
7004
7636
  msgstr ""
7005
7637
 
7638
+ msgid "Upstream Candlepin"
7639
+ msgstr ""
7640
+
7006
7641
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7007
7642
  msgstr ""
7008
7643
 
@@ -7051,6 +7686,15 @@ msgstr ""
7051
7686
  msgid "Usage of host"
7052
7687
  msgstr ""
7053
7688
 
7689
+ msgid "Usage type"
7690
+ msgstr ""
7691
+
7692
+ msgid "Use HTTP Proxies"
7693
+ msgstr ""
7694
+
7695
+ msgid "Use HTTP proxies"
7696
+ msgstr ""
7697
+
7054
7698
  msgid "Use remote execution by default"
7055
7699
  msgstr ""
7056
7700
 
@@ -7096,6 +7740,9 @@ msgstr ""
7096
7740
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7097
7741
  msgstr ""
7098
7742
 
7743
+ msgid "Verify SSL"
7744
+ msgstr ""
7745
+
7099
7746
  msgid "Verify checksum"
7100
7747
  msgstr ""
7101
7748
 
@@ -7123,6 +7770,12 @@ msgstr ""
7123
7770
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7124
7771
  msgstr ""
7125
7772
 
7773
+ msgid "Version ${versionOne}"
7774
+ msgstr ""
7775
+
7776
+ msgid "Version ${versionTwo}"
7777
+ msgstr ""
7778
+
7126
7779
  msgid "Version details updated."
7127
7780
  msgstr ""
7128
7781
 
@@ -7135,6 +7788,9 @@ msgstr ""
7135
7788
  msgid "Versions "
7136
7789
  msgstr ""
7137
7790
 
7791
+ msgid "Versions to compare"
7792
+ msgstr ""
7793
+
7138
7794
  msgid "Versions to exclusively include in the action"
7139
7795
  msgstr ""
7140
7796
 
@@ -7147,28 +7803,43 @@ msgstr ""
7147
7803
  msgid "View %{view} has not been promoted to %{env}"
7148
7804
  msgstr ""
7149
7805
 
7806
+ msgid "View Subscription Usage"
7807
+ msgstr ""
7808
+
7150
7809
  msgid "View a report of the affected hosts"
7151
7810
  msgstr ""
7152
7811
 
7812
+ msgid "View applicable errata"
7813
+ msgstr ""
7814
+
7815
+ msgid "View by"
7816
+ msgstr ""
7817
+
7153
7818
  msgid "View matching content"
7154
7819
  msgstr ""
7155
7820
 
7156
7821
  msgid "View tasks "
7157
7822
  msgstr ""
7158
7823
 
7159
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7824
+ msgid "View the Content Views page"
7825
+ msgstr ""
7826
+
7827
+ msgid "View the job"
7160
7828
  msgstr ""
7161
7829
 
7162
7830
  msgid "Virtual"
7163
7831
  msgstr ""
7164
7832
 
7165
- msgid "Waiting to start."
7833
+ msgid "Virtual guests"
7166
7834
  msgstr ""
7167
7835
 
7168
- msgid "Warning"
7836
+ msgid "Virtual host"
7169
7837
  msgstr ""
7170
7838
 
7171
- msgid "What's next?"
7839
+ msgid "Waiting to start."
7840
+ msgstr ""
7841
+
7842
+ msgid "Warning"
7172
7843
  msgstr ""
7173
7844
 
7174
7845
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -7210,6 +7881,9 @@ msgstr ""
7210
7881
  msgid "Whether to include available content attribute in results"
7211
7882
  msgstr ""
7212
7883
 
7884
+ msgid "Whether to turn on Simple Content Access for the organization."
7885
+ msgstr ""
7886
+
7213
7887
  msgid "Workers"
7214
7888
  msgstr ""
7215
7889
 
@@ -7282,9 +7956,6 @@ msgstr ""
7282
7956
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7283
7957
  msgstr ""
7284
7958
 
7285
- msgid "You may want to check the host's content view and lifecycle environment."
7286
- msgstr ""
7287
-
7288
7959
  msgid "You were not allowed to add %s"
7289
7960
  msgstr ""
7290
7961
 
@@ -7306,6 +7977,12 @@ msgstr ""
7306
7977
  msgid "Your search returned no matching "
7307
7978
  msgstr ""
7308
7979
 
7980
+ msgid "Your search returned no matching ${name}."
7981
+ msgstr ""
7982
+
7983
+ msgid "Your search returned no matching DEBs."
7984
+ msgstr ""
7985
+
7309
7986
  msgid "Your search returned no matching Module streams."
7310
7987
  msgstr ""
7311
7988
 
@@ -7318,12 +7995,18 @@ msgstr ""
7318
7995
  msgid "Your search returned no matching hosts."
7319
7996
  msgstr ""
7320
7997
 
7998
+ msgid "Yum"
7999
+ msgstr ""
8000
+
7321
8001
  msgid "Yum Metadata: %s"
7322
8002
  msgstr ""
7323
8003
 
7324
8004
  msgid "a content unit"
7325
8005
  msgstr ""
7326
8006
 
8007
+ msgid "a custom CDN URL"
8008
+ msgstr ""
8009
+
7327
8010
  msgid "a deb package"
7328
8011
  msgstr ""
7329
8012
 
@@ -7411,6 +8094,12 @@ msgstr ""
7411
8094
  msgid "base url to perform repo discovery on"
7412
8095
  msgstr ""
7413
8096
 
8097
+ msgid "bug fix"
8098
+ msgstr ""
8099
+
8100
+ msgid "bug fixes"
8101
+ msgstr ""
8102
+
7414
8103
  msgid "bulk add filter rules"
7415
8104
  msgstr ""
7416
8105
 
@@ -7474,7 +8163,7 @@ msgstr ""
7474
8163
  msgid "cannot contain more than %s characters"
7475
8164
  msgstr ""
7476
8165
 
7477
- msgid "checking Candlepin task status"
8166
+ msgid "checking %s task status"
7478
8167
  msgstr ""
7479
8168
 
7480
8169
  msgid "checking Pulp task status"
@@ -7495,9 +8184,6 @@ msgstr ""
7495
8184
  msgid "content release version"
7496
8185
  msgstr ""
7497
8186
 
7498
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7499
- msgstr ""
7500
-
7501
8187
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7502
8188
  msgstr ""
7503
8189
 
@@ -7552,7 +8238,7 @@ msgstr ""
7552
8238
  msgid "create a filter for a content view"
7553
8239
  msgstr ""
7554
8240
 
7555
- msgid "deb Packages"
8241
+ msgid "deb, package, package group, or docker tag names"
7556
8242
  msgstr ""
7557
8243
 
7558
8244
  msgid "deb_ids is not an array"
@@ -7579,12 +8265,21 @@ msgstr ""
7579
8265
  msgid "description of the repository"
7580
8266
  msgstr ""
7581
8267
 
8268
+ msgid "disk"
8269
+ msgstr ""
8270
+
7582
8271
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7583
8272
  msgstr ""
7584
8273
 
7585
8274
  msgid "enables or disables synchronization"
7586
8275
  msgstr ""
7587
8276
 
8277
+ msgid "enhancement"
8278
+ msgstr ""
8279
+
8280
+ msgid "enhancements"
8281
+ msgstr ""
8282
+
7588
8283
  msgid "environment"
7589
8284
  msgstr ""
7590
8285
 
@@ -7708,7 +8403,7 @@ msgstr ""
7708
8403
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7709
8404
  msgstr ""
7710
8405
 
7711
- msgid "initiating Candlepin task"
8406
+ msgid "initiating %s task"
7712
8407
  msgstr ""
7713
8408
 
7714
8409
  msgid "initiating Pulp task"
@@ -7768,9 +8463,6 @@ msgstr ""
7768
8463
  msgid "label of the repository"
7769
8464
  msgstr ""
7770
8465
 
7771
- msgid "limit to only repositories of this type"
7772
- msgstr ""
7773
-
7774
8466
  msgid "limit to only repositories with this download policy"
7775
8467
  msgstr ""
7776
8468
 
@@ -7888,9 +8580,6 @@ msgstr ""
7888
8580
  msgid "of environment must be unique within one organization"
7889
8581
  msgstr ""
7890
8582
 
7891
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7892
- msgstr ""
7893
-
7894
8583
  msgid "only show the repositories readable by this user with this username"
7895
8584
  msgstr ""
7896
8585
 
@@ -8002,6 +8691,15 @@ msgstr ""
8002
8691
  msgid "rule identifier"
8003
8692
  msgstr ""
8004
8693
 
8694
+ msgid "run job invocation"
8695
+ msgstr ""
8696
+
8697
+ msgid "security advisories"
8698
+ msgstr ""
8699
+
8700
+ msgid "security advisory"
8701
+ msgstr ""
8702
+
8005
8703
  msgid "service level"
8006
8704
  msgstr ""
8007
8705
 
@@ -8056,9 +8754,6 @@ msgstr ""
8056
8754
  msgid "to"
8057
8755
  msgstr ""
8058
8756
 
8059
- msgid "to update configuration on all hosts, or"
8060
- msgstr ""
8061
-
8062
8757
  msgid "true if the latest version of the component's content view is desired"
8063
8758
  msgstr ""
8064
8759
 
@@ -8071,10 +8766,7 @@ msgstr ""
8071
8766
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8072
8767
  msgstr ""
8073
8768
 
8074
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8075
- msgstr ""
8076
-
8077
- msgid "type of repo"
8769
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8078
8770
  msgstr ""
8079
8771
 
8080
8772
  msgid "types of filters"
@@ -8089,9 +8781,6 @@ msgstr ""
8089
8781
  msgid "update a filter"
8090
8782
  msgstr ""
8091
8783
 
8092
- msgid "update configuration on the hosts manually:"
8093
- msgstr ""
8094
-
8095
8784
  msgid "updating package group..."
8096
8785
  msgstr ""
8097
8786
 
@@ -8119,7 +8808,7 @@ msgstr ""
8119
8808
  msgid "view content view tabs."
8120
8809
  msgstr ""
8121
8810
 
8122
- msgid "waiting for Candlepin to finish the task"
8811
+ msgid "waiting for %s to finish the task"
8123
8812
  msgstr ""
8124
8813
 
8125
8814
  msgid "waiting for Pulp to finish the task"