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