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