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
@@ -4,10 +4,6 @@ msgstr ""
4
4
  "Content-Transfer-Encoding: 8bit\n"
5
5
  "Project-Id-Version: \n"
6
6
 
7
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
8
- msgid "- Date and Type"
9
- msgstr ""
10
-
11
7
  #: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
12
8
  msgid "-- select an interval --"
13
9
  msgstr ""
@@ -16,40 +12,14 @@ msgstr ""
16
12
  msgid "(future)"
17
13
  msgstr ""
18
14
 
19
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
20
- msgid "(Not all Activation Keys editable )"
21
- msgstr ""
22
-
23
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
24
- msgid "(Not all Content Hosts editable )"
25
- msgstr ""
26
-
27
15
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
28
16
  msgid "{{ 'Add Selected' | translate }}"
29
17
  msgstr ""
30
18
 
31
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
32
- msgid "{{ componentContentView.repositories.length || 0 }} Repositories"
33
- msgstr ""
34
-
35
19
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
36
20
  msgid "{{ contentCredential.name }}"
37
21
  msgstr ""
38
22
 
39
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
40
- msgid "{{ contentView.name }}"
41
- msgstr ""
42
-
43
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
44
- msgid ""
45
- "{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n"
46
- " Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted."
47
- msgstr ""
48
-
49
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
50
- msgid "{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories"
51
- msgstr ""
52
-
53
23
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
54
24
  msgid "{{ deb.hosts_applicable_count }} Host(s)"
55
25
  msgstr ""
@@ -82,10 +52,6 @@ msgstr ""
82
52
  msgid "{{ file.name }}"
83
53
  msgstr ""
84
54
 
85
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
86
- msgid "{{ filter.inclusion | filterType }} Tag"
87
- msgstr ""
88
-
89
55
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
90
56
  msgid "{{ host.name }}"
91
57
  msgstr ""
@@ -134,44 +100,22 @@ msgstr ""
134
100
  msgid "{{ repository.content_counts.ansible_collection || 0 }} Ansible Collections"
135
101
  msgstr ""
136
102
 
137
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
138
- msgid "{{ repository.content_counts.deb }} deb Packages"
139
- msgstr ""
140
-
141
103
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
142
104
  msgid "{{ repository.content_counts.deb || 0 }} deb Packages"
143
105
  msgstr ""
144
106
 
145
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
146
- msgid "{{ repository.content_counts.docker_manifest }} Container Image Manifests"
147
- msgstr ""
148
-
149
107
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
150
108
  msgid "{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests"
151
109
  msgstr ""
152
110
 
153
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
154
- msgid "{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists"
155
- msgstr ""
156
-
157
111
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
158
112
  msgid "{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists"
159
113
  msgstr ""
160
114
 
161
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
162
- msgid "{{ repository.content_counts.docker_tag }} Container Image Tags"
163
- msgstr ""
164
-
165
115
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
166
116
  msgid "{{ repository.content_counts.docker_tag || 0 }} Container Image Tags"
167
117
  msgstr ""
168
118
 
169
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
170
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
171
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
172
- msgid "{{ repository.content_counts.erratum }} Errata"
173
- msgstr ""
174
-
175
119
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
176
120
  msgid "{{ repository.content_counts.erratum || 0 }} Errata"
177
121
  msgstr ""
@@ -180,21 +124,10 @@ msgstr ""
180
124
  msgid "{{ repository.content_counts.file || 0 }} Files"
181
125
  msgstr ""
182
126
 
183
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
184
- msgid "{{ repository.content_counts.module_stream || 0 }} Module Streams"
185
- msgstr ""
186
-
187
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
188
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
189
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
190
- msgid "{{ repository.content_counts.rpm }} Packages"
191
- msgstr ""
192
-
193
127
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
194
128
  msgid "{{ repository.content_counts.rpm || 0 }} Packages"
195
129
  msgstr ""
196
130
 
197
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
198
131
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
199
132
  msgid "{{ repository.content_counts.srpm }} Source RPMs"
200
133
  msgstr ""
@@ -211,58 +144,10 @@ msgstr ""
211
144
  msgid "{{ repository.name }}"
212
145
  msgstr ""
213
146
 
214
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
215
- msgid "{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}"
216
- msgstr ""
217
-
218
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
219
- msgid "{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}"
220
- msgstr ""
221
-
222
147
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
223
148
  msgid "{{ type.display }}"
224
149
  msgstr ""
225
150
 
226
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
227
- msgid "{{ version.deb_count }} deb Packages"
228
- msgstr ""
229
-
230
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
231
- msgid "{{ version.docker_manifest_count }} Container Image Manifests"
232
- msgstr ""
233
-
234
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
235
- msgid "{{ version.docker_manifest_list_count }} Container Image Manifest Lists"
236
- msgstr ""
237
-
238
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
239
- msgid "{{ version.docker_tag_count }} Container Image Tags"
240
- msgstr ""
241
-
242
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
243
- msgid "{{ version.errata_counts.total }} Errata"
244
- msgstr ""
245
-
246
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
247
- msgid "{{ version.file_count }} Files"
248
- msgstr ""
249
-
250
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
251
- msgid "{{ version.module_stream_count }} Module Streams"
252
- msgstr ""
253
-
254
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
255
- msgid "{{ version.package_count }} Packages"
256
- msgstr ""
257
-
258
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
259
- msgid "{{ version.srpm_count }} Source RPMs"
260
- msgstr ""
261
-
262
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
263
- msgid "{{contentView.errors['messages'][0]}}"
264
- msgstr ""
265
-
266
151
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html
267
152
  msgid "{{header}}"
268
153
  msgstr ""
@@ -301,10 +186,6 @@ msgstr ""
301
186
  msgid "<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>"
302
187
  msgstr ""
303
188
 
304
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
305
- msgid "<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>"
306
- msgstr ""
307
-
308
189
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
309
190
  msgid "<b>Additive:</b> new content available during sync will be added to the repository, and no content will be removed."
310
191
  msgstr ""
@@ -353,27 +234,12 @@ msgstr ""
353
234
  msgid "<b>Updated</b>"
354
235
  msgstr ""
355
236
 
356
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
357
- msgid ""
358
- "<i class=\"fa fa-star\"></i>\n"
359
- " Starred environments are suggested for promotion."
360
- msgstr ""
361
-
362
237
  #: app/assets/javascripts/bastion_katello/common/views/registration.html
363
238
  msgid ""
364
239
  "<i class=\"fa fa-warning inline-icon\"></i>\n"
365
240
  " This Host is not currently registered with subscription-manager. Use the <a href=\"/hosts/register\">Register Host</a> workflow to complete registration."
366
241
  msgstr ""
367
242
 
368
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
369
- msgid ""
370
- "<span translate=\"\">\n"
371
- " If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n"
372
- " </span>\n"
373
- " <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n"
374
- " <span translate=\"\">to manage them individually.</span>"
375
- msgstr ""
376
-
377
243
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
378
244
  msgid "1 Content Host"
379
245
  msgid_plural "{{ host.subscription_facet_attributes.virtual_guests.length }} Content Hosts"
@@ -406,20 +272,6 @@ msgstr ""
406
272
  msgid "A comma-separated list of container image tags to include when syncing."
407
273
  msgstr ""
408
274
 
409
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
410
- msgid "A composite view contains other content views."
411
- msgstr ""
412
-
413
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
414
- msgid ""
415
- "A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n"
416
- " It can be promoted to other environments from the Versions tab of this Content View."
417
- msgstr ""
418
-
419
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
420
- msgid "A newer version is available: {{ contentViewComponent.content_view.latest_version }}"
421
- msgstr ""
422
-
423
275
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
424
276
  msgid "A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>"
425
277
  msgstr ""
@@ -429,10 +281,6 @@ msgstr ""
429
281
  msgid "Account"
430
282
  msgstr ""
431
283
 
432
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
433
- msgid "Action"
434
- msgstr ""
435
-
436
284
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
437
285
  msgid "Action Type"
438
286
  msgstr ""
@@ -440,8 +288,6 @@ msgstr ""
440
288
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
441
289
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
442
290
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
443
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
444
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
445
291
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
446
292
  msgid "Actions"
447
293
  msgstr ""
@@ -469,14 +315,9 @@ msgid "Activation Key:"
469
315
  msgstr ""
470
316
 
471
317
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
472
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
473
318
  msgid "Activation Keys"
474
319
  msgstr ""
475
320
 
476
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
477
- msgid "Activation Keys using Version {{ version.version }}"
478
- msgstr ""
479
-
480
321
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
481
322
  msgid "Active Tasks"
482
323
  msgstr ""
@@ -485,15 +326,6 @@ msgstr ""
485
326
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
486
327
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections.html
487
328
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
488
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html
489
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
490
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
491
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
492
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
493
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
494
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
495
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
496
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
497
329
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts.html
498
330
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
499
331
  msgid "Add"
@@ -503,38 +335,14 @@ msgstr ""
503
335
  msgid "Add Content Hosts to:"
504
336
  msgstr ""
505
337
 
506
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
507
- msgid "Add Content Views"
508
- msgstr ""
509
-
510
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
511
- msgid "Add Content Views to {{ contentView.name }}"
512
- msgstr ""
513
-
514
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
515
- msgid "Add Errata"
516
- msgstr ""
517
-
518
338
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
519
339
  msgid "Add hosts to the host collection to see available actions."
520
340
  msgstr ""
521
341
 
522
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
523
- msgid "Add Module Stream"
524
- msgstr ""
525
-
526
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
527
- msgid "Add New Container Image Tag Filter"
528
- msgstr ""
529
-
530
342
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
531
343
  msgid "Add New Environment"
532
344
  msgstr ""
533
345
 
534
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
535
- msgid "Add New Yum Filter"
536
- msgstr ""
537
-
538
346
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
539
347
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
540
348
  msgid "Add ons"
@@ -544,23 +352,6 @@ msgstr ""
544
352
  msgid "Add ons:"
545
353
  msgstr ""
546
354
 
547
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
548
- msgid "Add Package Group"
549
- msgstr ""
550
-
551
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
552
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
553
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
554
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
555
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
556
- msgid "Add Repositories"
557
- msgstr ""
558
-
559
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
560
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
561
- msgid "Add Rule"
562
- msgstr ""
563
-
564
355
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
565
356
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
566
357
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -571,14 +362,6 @@ msgstr ""
571
362
  msgid "Add Selected"
572
363
  msgstr ""
573
364
 
574
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
575
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
576
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
577
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
578
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
579
- msgid "add some repositories."
580
- msgstr ""
581
-
582
365
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
583
366
  msgid "Add Subscriptions for Activation Key:"
584
367
  msgstr ""
@@ -621,28 +404,10 @@ msgstr ""
621
404
  msgid "Advisory"
622
405
  msgstr ""
623
406
 
624
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
625
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
626
- msgid "Affected Activation Keys"
627
- msgstr ""
628
-
629
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
630
- msgid "Affected Content Hosts"
631
- msgstr ""
632
-
633
407
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
634
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
635
408
  msgid "Affected Hosts"
636
409
  msgstr ""
637
410
 
638
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html
639
- msgid "Affected Repositories"
640
- msgstr ""
641
-
642
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
643
- msgid "Affected repositories have been updated."
644
- msgstr ""
645
-
646
411
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
647
412
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
648
413
  msgid "All Content Views"
@@ -653,27 +418,19 @@ msgstr ""
653
418
  msgid "All Lifecycle Environments"
654
419
  msgstr ""
655
420
 
656
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js
657
- msgid "All Products"
658
- msgstr ""
659
-
660
- #: app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js
661
421
  #: app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js
662
422
  #: app/assets/javascripts/bastion_katello/errata/errata.controller.js
663
423
  #: app/assets/javascripts/bastion_katello/packages/packages.controller.js
664
424
  msgid "All Repositories"
665
425
  msgstr ""
666
426
 
667
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
668
- msgid "All Versions"
669
- msgstr ""
670
-
671
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
672
- msgid "Always Use Latest (Currently %s)"
427
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
428
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
429
+ msgid "Alternate Content Sources"
673
430
  msgstr ""
674
431
 
675
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
676
- msgid "Always Use Latest (Currently no versions)"
432
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
433
+ msgid "Alternate Content Sources for"
677
434
  msgstr ""
678
435
 
679
436
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
@@ -717,11 +474,6 @@ msgstr ""
717
474
  msgid "An error occurred saving the Environment:"
718
475
  msgstr ""
719
476
 
720
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
721
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
722
- msgid "An error occurred saving the Filter:"
723
- msgstr ""
724
-
725
477
  #: app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
726
478
  msgid "An error occurred saving the Host Collection:"
727
479
  msgstr ""
@@ -742,10 +494,6 @@ msgstr ""
742
494
  msgid "An error occurred trying to auto-attach subscriptions. Please check your log for further information."
743
495
  msgstr ""
744
496
 
745
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
746
- msgid "An error occurred updating the Content View:"
747
- msgstr ""
748
-
749
497
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-sync-plan-modal.controller.js
750
498
  msgid "An error occurred updating the sync plan:"
751
499
  msgstr ""
@@ -778,7 +526,6 @@ msgstr ""
778
526
  msgid "Applicable"
779
527
  msgstr ""
780
528
 
781
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
782
529
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
783
530
  msgid "Applicable Content Hosts"
784
531
  msgstr ""
@@ -791,11 +538,6 @@ msgstr ""
791
538
  msgid "Applicable Errata"
792
539
  msgstr ""
793
540
 
794
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
795
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
796
- msgid "Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\"."
797
- msgstr ""
798
-
799
541
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
800
542
  msgid "Applicable Packages"
801
543
  msgstr ""
@@ -876,13 +618,6 @@ msgstr ""
876
618
  msgid "Apt Actions"
877
619
  msgstr ""
878
620
 
879
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
880
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
881
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
882
- msgid "Apt Repositories"
883
- msgstr ""
884
-
885
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
886
621
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
887
622
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
888
623
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
@@ -892,8 +627,6 @@ msgstr ""
892
627
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html
893
628
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
894
629
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
895
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
896
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
897
630
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
898
631
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
899
632
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html
@@ -907,10 +640,6 @@ msgstr ""
907
640
  msgid "Architectures"
908
641
  msgstr ""
909
642
 
910
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
911
- msgid "Archived Copy"
912
- msgstr ""
913
-
914
643
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
915
644
  msgid "Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?"
916
645
  msgstr ""
@@ -959,10 +688,6 @@ msgstr ""
959
688
  msgid "Are you sure you want to remove Content Credential {{ contentCredential.name }}?"
960
689
  msgstr ""
961
690
 
962
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
963
- msgid "Are you sure you want to remove Content View \"{{ contentView.name }}\"?"
964
- msgstr ""
965
-
966
691
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
967
692
  msgid "Are you sure you want to remove environment {{ environment.name }}?"
968
693
  msgstr ""
@@ -1056,12 +781,6 @@ msgstr ""
1056
781
  msgid "Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?"
1057
782
  msgstr ""
1058
783
 
1059
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1060
- msgid "As part of this deletion, 1 Content View Version will be deleted."
1061
- msgid_plural " As part of this deletion, {{ versions.length }} Content View Versions will be deleted."
1062
- msgstr[0] ""
1063
- msgstr[1] ""
1064
-
1065
784
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1066
785
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
1067
786
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
@@ -1107,11 +826,6 @@ msgstr ""
1107
826
  msgid "Author"
1108
827
  msgstr ""
1109
828
 
1110
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1111
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1112
- msgid "Auto Publish"
1113
- msgstr ""
1114
-
1115
829
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
1116
830
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
1117
831
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
@@ -1127,10 +841,6 @@ msgstr ""
1127
841
  msgid "Automatic"
1128
842
  msgstr ""
1129
843
 
1130
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1131
- msgid "Available Content Views for Composite Content View:"
1132
- msgstr ""
1133
-
1134
844
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1135
845
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
1136
846
  msgid "Available Module Streams"
@@ -1141,12 +851,6 @@ msgstr ""
1141
851
  msgid "Available Schema Versions"
1142
852
  msgstr ""
1143
853
 
1144
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1145
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1146
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1147
- msgid "Back"
1148
- msgstr ""
1149
-
1150
854
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
1151
855
  msgid "Back To Errata List"
1152
856
  msgstr ""
@@ -1177,10 +881,6 @@ msgstr ""
1177
881
  msgid "Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the"
1178
882
  msgstr ""
1179
883
 
1180
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1181
- msgid "Between versions {{ rule.min_version }} and {{ rule.max_version }}"
1182
- msgstr ""
1183
-
1184
884
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1185
885
  msgid "BIOS UUID"
1186
886
  msgstr ""
@@ -1191,7 +891,6 @@ msgstr ""
1191
891
 
1192
892
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
1193
893
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1194
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
1195
894
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
1196
895
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
1197
896
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -1202,10 +901,6 @@ msgstr ""
1202
901
  msgid "Bug Fix Advisory"
1203
902
  msgstr ""
1204
903
 
1205
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1206
- msgid "Bugfix"
1207
- msgstr ""
1208
-
1209
904
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
1210
905
  msgid "Build Host"
1211
906
  msgstr ""
@@ -1221,12 +916,6 @@ msgstr ""
1221
916
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1222
917
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1223
918
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1224
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1225
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1226
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1227
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1228
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1229
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1230
919
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1231
920
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
1232
921
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync.html
@@ -1297,6 +986,10 @@ msgstr ""
1297
986
  msgid "Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host."
1298
987
  msgstr ""
1299
988
 
989
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
990
+ msgid "Changing download policy to \"On Demand\" will also clear the checksum type if set. The repository will use the upstream checksum type to verify downloads."
991
+ msgstr ""
992
+
1300
993
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1301
994
  msgid ""
1302
995
  "Changing the Content View will not affect the Content Host until its next checkin.\n"
@@ -1321,10 +1014,6 @@ msgstr ""
1321
1014
  msgid "Checksum Type"
1322
1015
  msgstr ""
1323
1016
 
1324
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1325
- msgid "Choose a lifecycle environment from the available promotion paths."
1326
- msgstr ""
1327
-
1328
1017
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1329
1018
  msgid "Choose one of the registry options to discover containers. To examine a private registry choose \"Custom\" and provide the url for the private registry."
1330
1019
  msgstr ""
@@ -1347,7 +1036,6 @@ msgstr ""
1347
1036
  msgid "Click to view task"
1348
1037
  msgstr ""
1349
1038
 
1350
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
1351
1039
  #: app/assets/javascripts/bastion_katello/errata/views/errata-task-details.html
1352
1040
  msgid "Close"
1353
1041
  msgstr ""
@@ -1372,11 +1060,6 @@ msgstr ""
1372
1060
  msgid "Completely deletes the host including VM and disks, and removes all reporting, provisioning, and configuration information."
1373
1061
  msgstr ""
1374
1062
 
1375
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1376
- msgid "Completely remove version?"
1377
- msgstr ""
1378
-
1379
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1380
1063
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1381
1064
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1382
1065
  msgid "Components"
@@ -1386,35 +1069,18 @@ msgstr ""
1386
1069
  msgid "Components:"
1387
1070
  msgstr ""
1388
1071
 
1389
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1390
- msgid "Composite"
1391
- msgstr ""
1392
-
1393
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1394
1072
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
1395
1073
  msgid "Composite View"
1396
1074
  msgstr ""
1397
1075
 
1398
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1399
- msgid "Composite View?"
1400
- msgstr ""
1401
-
1402
1076
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1403
1077
  msgid "Confirm"
1404
1078
  msgstr ""
1405
1079
 
1406
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1407
- msgid "Confirm Remove"
1408
- msgstr ""
1409
-
1410
1080
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1411
1081
  msgid "Confirm services restart"
1412
1082
  msgstr ""
1413
1083
 
1414
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1415
- msgid "Confirm Version Removal: Version {{ version.version }}"
1416
- msgstr ""
1417
-
1418
1084
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
1419
1085
  msgid "Container Image Manifest"
1420
1086
  msgstr ""
@@ -1434,42 +1100,17 @@ msgid ""
1434
1100
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1435
1101
  msgstr ""
1436
1102
 
1437
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
1438
- msgid "Container Image Name"
1439
- msgstr ""
1440
-
1441
1103
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1442
1104
  msgid "Container Image Registry"
1443
1105
  msgstr ""
1444
1106
 
1445
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
1446
- msgid "Container Image Tag"
1447
- msgstr ""
1448
-
1449
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
1450
- msgid "Container Image Tag Filter:"
1451
- msgstr ""
1452
-
1453
1107
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
1454
1108
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1455
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
1456
1109
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
1457
1110
  msgid "Container Image Tags"
1458
1111
  msgstr ""
1459
1112
 
1460
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1461
- msgid "Container Images"
1462
- msgstr ""
1463
-
1464
1113
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
1465
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1466
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1467
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
1468
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
1469
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
1470
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1471
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
1472
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
1473
1114
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
1474
1115
  msgid "Content"
1475
1116
  msgstr ""
@@ -1545,7 +1186,6 @@ msgstr ""
1545
1186
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1546
1187
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
1547
1188
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
1548
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1549
1189
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1550
1190
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
1551
1191
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
@@ -1562,10 +1202,6 @@ msgstr ""
1562
1202
  msgid "Content Hosts for:"
1563
1203
  msgstr ""
1564
1204
 
1565
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1566
- msgid "Content Hosts using Version {{ version.version }}"
1567
- msgstr ""
1568
-
1569
1205
  #: app/assets/javascripts/bastion_katello/products/details/repositories/mirroring-policy.service.js
1570
1206
  msgid "Content Only"
1571
1207
  msgstr ""
@@ -1576,8 +1212,6 @@ msgid ""
1576
1212
  " </a>"
1577
1213
  msgstr ""
1578
1214
 
1579
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1580
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1581
1215
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1582
1216
  msgid "Content Type"
1583
1217
  msgstr ""
@@ -1601,31 +1235,14 @@ msgstr ""
1601
1235
  msgid "Content View"
1602
1236
  msgstr ""
1603
1237
 
1604
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
1605
- msgid "Content View Name"
1606
- msgstr ""
1607
-
1608
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
1609
- msgid "Content View updated."
1610
- msgstr ""
1611
-
1612
1238
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
1613
1239
  msgid "Content View Version"
1614
1240
  msgstr ""
1615
1241
 
1616
- #: app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js
1617
- msgid "Content View version updated"
1618
- msgstr ""
1619
-
1620
1242
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1621
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1622
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1623
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1624
1243
  msgid "Content View:"
1625
1244
  msgstr ""
1626
1245
 
1627
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1628
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1629
1246
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
1630
1247
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1631
1248
  #: app/assets/javascripts/bastion_katello/files/details/views/file.html
@@ -1637,14 +1254,6 @@ msgstr ""
1637
1254
  msgid "Content Views <div>{{ library.counts.content_views || 0 }}</div>"
1638
1255
  msgstr ""
1639
1256
 
1640
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1641
- msgid "Content Views for {{ contentView.name }}"
1642
- msgstr ""
1643
-
1644
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1645
- msgid "Content Views for Composite Content View:"
1646
- msgstr ""
1647
-
1648
1257
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
1649
1258
  msgid "Content Views for Deb:"
1650
1259
  msgstr ""
@@ -1661,7 +1270,6 @@ msgstr ""
1661
1270
  msgid "Content Views that contain this File"
1662
1271
  msgstr ""
1663
1272
 
1664
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
1665
1273
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
1666
1274
  msgid "Context"
1667
1275
  msgstr ""
@@ -1675,14 +1283,6 @@ msgstr ""
1675
1283
  msgid "Copy Activation Key"
1676
1284
  msgstr ""
1677
1285
 
1678
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1679
- msgid "Copy Content View"
1680
- msgstr ""
1681
-
1682
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1683
- msgid "Copy Content View:"
1684
- msgstr ""
1685
-
1686
1286
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
1687
1287
  msgid "Copy Host Collection"
1688
1288
  msgstr ""
@@ -1692,7 +1292,6 @@ msgid "Cores per Socket"
1692
1292
  msgstr ""
1693
1293
 
1694
1294
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-copy.html
1695
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1696
1295
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
1697
1296
  msgid "Create"
1698
1297
  msgstr ""
@@ -1701,19 +1300,10 @@ msgstr ""
1701
1300
  msgid "Create a copy of {{ activationKey.name }}"
1702
1301
  msgstr ""
1703
1302
 
1704
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1705
- msgid "Create a copy of {{ contentView.name }}"
1706
- msgstr ""
1707
-
1708
1303
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
1709
1304
  msgid "Create a copy of {{ hostCollection.name }}"
1710
1305
  msgstr ""
1711
1306
 
1712
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
1713
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1714
- msgid "Create a rule using the add button above."
1715
- msgstr ""
1716
-
1717
1307
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
1718
1308
  msgid "Create Activation Key"
1719
1309
  msgstr ""
@@ -1723,10 +1313,6 @@ msgstr ""
1723
1313
  msgid "Create Content Credential"
1724
1314
  msgstr ""
1725
1315
 
1726
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1727
- msgid "Create Content View"
1728
- msgstr ""
1729
-
1730
1316
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
1731
1317
  msgid "Create Discovered Repositories"
1732
1318
  msgstr ""
@@ -1740,14 +1326,6 @@ msgstr ""
1740
1326
  msgid "Create Host Collection"
1741
1327
  msgstr ""
1742
1328
 
1743
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1744
- msgid "Create new view"
1745
- msgstr ""
1746
-
1747
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1748
- msgid "Create New View"
1749
- msgstr ""
1750
-
1751
1329
  #: app/assets/javascripts/bastion_katello/products/new/views/product-new.html
1752
1330
  #: app/assets/javascripts/bastion_katello/products/views/products.html
1753
1331
  msgid "Create Product"
@@ -1767,10 +1345,6 @@ msgstr ""
1767
1345
  msgid "Create Sync Plan"
1768
1346
  msgstr ""
1769
1347
 
1770
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1771
- msgid "Create view from existing views"
1772
- msgstr ""
1773
-
1774
1348
  #: app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js
1775
1349
  msgid "Creating repository..."
1776
1350
  msgstr ""
@@ -1826,16 +1400,11 @@ msgstr ""
1826
1400
  msgid "Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
1827
1401
  msgstr ""
1828
1402
 
1829
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1830
1403
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
1831
1404
  #: app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
1832
1405
  msgid "Date"
1833
1406
  msgstr ""
1834
1407
 
1835
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1836
- msgid "Date Type"
1837
- msgstr ""
1838
-
1839
1408
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
1840
1409
  msgid "deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1841
1410
  msgstr ""
@@ -1849,7 +1418,6 @@ msgid "deb Packages"
1849
1418
  msgstr ""
1850
1419
 
1851
1420
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1852
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1853
1421
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
1854
1422
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
1855
1423
  msgid "Deb Packages"
@@ -1892,26 +1460,6 @@ msgstr ""
1892
1460
  msgid "Delete Hosts"
1893
1461
  msgstr ""
1894
1462
 
1895
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1896
- msgid "Delete Version {{ version.version }}"
1897
- msgstr ""
1898
-
1899
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
1900
- msgid "Deleted from %s"
1901
- msgstr ""
1902
-
1903
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1904
- msgid "Deleting from %count environments."
1905
- msgstr ""
1906
-
1907
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1908
- msgid "Deleting from 1 environment."
1909
- msgstr ""
1910
-
1911
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1912
- msgid "Deletion from %s"
1913
- msgstr ""
1914
-
1915
1463
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
1916
1464
  msgid "Delta RPM"
1917
1465
  msgstr ""
@@ -1926,19 +1474,6 @@ msgstr ""
1926
1474
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
1927
1475
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
1928
1476
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1929
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1930
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1931
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
1932
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1933
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1934
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
1935
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1936
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1937
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1938
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
1939
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1940
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1941
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
1942
1477
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1943
1478
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1944
1479
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
@@ -1958,22 +1493,11 @@ msgstr ""
1958
1493
  msgid "Description"
1959
1494
  msgstr ""
1960
1495
 
1961
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1962
- msgid "Designate whether this Content View is for importing from an upstream server. Import-only Content Views can not be published directly."
1963
- msgstr ""
1964
-
1965
1496
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1966
1497
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
1967
1498
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1968
1499
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1969
1500
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
1970
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
1971
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
1972
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
1973
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
1974
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
1975
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1976
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1977
1501
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
1978
1502
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html
1979
1503
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
@@ -1987,10 +1511,6 @@ msgstr ""
1987
1511
  msgid "Details"
1988
1512
  msgstr ""
1989
1513
 
1990
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1991
- msgid "Details for {{ contentView.name }}"
1992
- msgstr ""
1993
-
1994
1514
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
1995
1515
  msgid "Details for Activation Key:"
1996
1516
  msgstr ""
@@ -1999,10 +1519,6 @@ msgstr ""
1999
1519
  msgid "Details for Container Image Tag:"
2000
1520
  msgstr ""
2001
1521
 
2002
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2003
- msgid "Details for Content View:"
2004
- msgstr ""
2005
-
2006
1522
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
2007
1523
  msgid "Details for Product:"
2008
1524
  msgstr ""
@@ -2064,12 +1580,8 @@ msgid ""
2064
1580
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
2065
1581
  msgstr ""
2066
1582
 
2067
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2068
- msgid "Docker Repositories"
2069
- msgstr ""
2070
-
2071
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2072
- msgid "Docker Repository Selection"
1583
+ #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1584
+ msgid "Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>"
2073
1585
  msgstr ""
2074
1586
 
2075
1587
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
@@ -2088,15 +1600,6 @@ msgstr ""
2088
1600
  msgid "Download Policy"
2089
1601
  msgstr ""
2090
1602
 
2091
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
2092
- msgid "Duplicate repositories between the selected Content View Versions will merge, resulting in a Composite Content View with all packages that exist among the duplicates."
2093
- msgstr ""
2094
-
2095
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
2096
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2097
- msgid "Edit"
2098
- msgstr ""
2099
-
2100
1603
  #: app/assets/javascripts/bastion_katello/common/module-stream-actions.service.js
2101
1604
  msgid "Enable"
2102
1605
  msgstr ""
@@ -2115,14 +1618,8 @@ msgstr ""
2115
1618
  msgid "Enabled (overridden)"
2116
1619
  msgstr ""
2117
1620
 
2118
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2119
- msgid "End Date"
2120
- msgstr ""
2121
-
2122
1621
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2123
1622
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2124
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2125
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
2126
1623
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
2127
1624
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
2128
1625
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -2141,8 +1638,6 @@ msgstr ""
2141
1638
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
2142
1639
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
2143
1640
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
2144
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
2145
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
2146
1641
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
2147
1642
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
2148
1643
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
@@ -2161,26 +1656,13 @@ msgstr ""
2161
1656
  msgid "Environment will also be removed from the following published content views!"
2162
1657
  msgstr ""
2163
1658
 
2164
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
2165
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
2166
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
2167
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2168
- msgid "Environments"
2169
- msgstr ""
2170
-
2171
1659
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2172
1660
  msgid "Environments List"
2173
1661
  msgstr ""
2174
1662
 
2175
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2176
- msgid "Equal To"
2177
- msgstr ""
2178
-
2179
1663
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
2180
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2181
1664
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
2182
1665
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2183
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2184
1666
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
2185
1667
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
2186
1668
  msgid "Errata"
@@ -2199,16 +1681,10 @@ msgstr ""
2199
1681
  msgid "Errata Details"
2200
1682
  msgstr ""
2201
1683
 
2202
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2203
- msgid "Errata Filter:"
2204
- msgstr ""
2205
-
2206
1684
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2207
1685
  msgid "Errata for:"
2208
1686
  msgstr ""
2209
1687
 
2210
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2211
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
2212
1688
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
2213
1689
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
2214
1690
  msgid "Errata ID"
@@ -2218,14 +1694,6 @@ msgstr ""
2218
1694
  msgid "Errata Installation"
2219
1695
  msgstr ""
2220
1696
 
2221
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js
2222
- msgid "Errata successfully added."
2223
- msgstr ""
2224
-
2225
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js
2226
- msgid "Errata successfully removed."
2227
- msgstr ""
2228
-
2229
1697
  #: app/assets/javascripts/bastion_katello/errata/views/errata-tasks-list.html
2230
1698
  msgid "Errata Task List"
2231
1699
  msgstr ""
@@ -2234,28 +1702,11 @@ msgstr ""
2234
1702
  msgid "Errata Tasks"
2235
1703
  msgstr ""
2236
1704
 
2237
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2238
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2239
- msgid "Errata Type"
2240
- msgstr ""
2241
-
2242
1705
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
2243
1706
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
2244
1707
  msgid "Errata:"
2245
1708
  msgstr ""
2246
1709
 
2247
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
2248
- msgid "Erratum - by ID"
2249
- msgstr ""
2250
-
2251
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
2252
- msgid "Erratum - Date and Type"
2253
- msgstr ""
2254
-
2255
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2256
- msgid "Erratum Date Range"
2257
- msgstr ""
2258
-
2259
1710
  #: app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
2260
1711
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js
2261
1712
  msgid "Error during upload:"
@@ -2270,19 +1721,6 @@ msgstr ""
2270
1721
  msgid "Event"
2271
1722
  msgstr ""
2272
1723
 
2273
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2274
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2275
- msgid "Exclude"
2276
- msgstr ""
2277
-
2278
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2279
- msgid "Exclude all Module Streams with no errata."
2280
- msgstr ""
2281
-
2282
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2283
- msgid "Exclude all RPMs with no errata."
2284
- msgstr ""
2285
-
2286
1724
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2287
1725
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2288
1726
  msgid "Exclude Tags"
@@ -2301,10 +1739,6 @@ msgstr ""
2301
1739
  msgid "Export"
2302
1740
  msgstr ""
2303
1741
 
2304
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
2305
- msgid "Exported content view"
2306
- msgstr ""
2307
-
2308
1742
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2309
1743
  msgid "Family"
2310
1744
  msgstr ""
@@ -2318,12 +1752,6 @@ msgstr ""
2318
1752
  msgid "File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
2319
1753
  msgstr ""
2320
1754
 
2321
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2322
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2323
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2324
- msgid "File Repositories"
2325
- msgstr ""
2326
-
2327
1755
  #: app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
2328
1756
  msgid "File too large."
2329
1757
  msgstr ""
@@ -2353,9 +1781,6 @@ msgid "Files in package {{ package.nvrea }}"
2353
1781
  msgstr ""
2354
1782
 
2355
1783
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
2356
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
2357
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
2358
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2359
1784
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
2360
1785
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
2361
1786
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
@@ -2367,47 +1792,12 @@ msgstr ""
2367
1792
  msgid "Filter by Status:"
2368
1793
  msgstr ""
2369
1794
 
2370
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
2371
- msgid "Filter information for:"
2372
- msgstr ""
2373
-
2374
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
2375
- msgid "Filter rule successfully removed."
2376
- msgstr ""
2377
-
2378
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
2379
- msgid "Filter rule successfully updated."
2380
- msgstr ""
2381
-
2382
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
2383
- msgid "Filter Saved"
2384
- msgstr ""
2385
-
2386
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2387
- msgid "Filter Updated -"
2388
- msgstr ""
2389
-
2390
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2391
- msgid "Filter:"
2392
- msgstr ""
2393
-
1795
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
2394
1796
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
2395
1797
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
2396
1798
  msgid "Filter..."
2397
1799
  msgstr ""
2398
1800
 
2399
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2400
- msgid "Filters"
2401
- msgstr ""
2402
-
2403
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
2404
- msgid "Filters for Content View:"
2405
- msgstr ""
2406
-
2407
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js
2408
- msgid "Filters successfully removed."
2409
- msgstr ""
2410
-
2411
1801
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
2412
1802
  msgid "Finished At"
2413
1803
  msgstr ""
@@ -2423,10 +1813,6 @@ msgid ""
2423
1813
  " The Immediate option will download all metadata and packages immediately during the sync."
2424
1814
  msgstr ""
2425
1815
 
2426
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
2427
- msgid "Force Promote?"
2428
- msgstr ""
2429
-
2430
1816
  #: app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
2431
1817
  msgid "Global Default"
2432
1818
  msgstr ""
@@ -2445,14 +1831,6 @@ msgstr ""
2445
1831
  msgid "GPG Key"
2446
1832
  msgstr ""
2447
1833
 
2448
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2449
- msgid "Greater Than"
2450
- msgstr ""
2451
-
2452
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2453
- msgid "Greater than version {{ rule.min_version }}"
2454
- msgstr ""
2455
-
2456
1834
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
2457
1835
  msgid "Group"
2458
1836
  msgstr ""
@@ -2479,26 +1857,6 @@ msgstr ""
2479
1857
  msgid "Helper"
2480
1858
  msgstr ""
2481
1859
 
2482
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2483
- msgid "here"
2484
- msgstr ""
2485
-
2486
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2487
- msgid "Hide affected Activation Keys"
2488
- msgstr ""
2489
-
2490
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2491
- msgid "Hide affected Content Hosts"
2492
- msgstr ""
2493
-
2494
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2495
- msgid "History"
2496
- msgstr ""
2497
-
2498
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
2499
- msgid "History for Content View:"
2500
- msgstr ""
2501
-
2502
1860
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
2503
1861
  msgid "Host %s has been deleted."
2504
1862
  msgstr ""
@@ -2596,18 +1954,6 @@ msgstr ""
2596
1954
  msgid "Id"
2597
1955
  msgstr ""
2598
1956
 
2599
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2600
- msgid "If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click"
2601
- msgstr ""
2602
-
2603
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2604
- msgid "If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually."
2605
- msgstr ""
2606
-
2607
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2608
- msgid "If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk."
2609
- msgstr ""
2610
-
2611
1957
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2612
1958
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2613
1959
  msgid "Ignore SRPMs"
@@ -2621,60 +1967,21 @@ msgstr ""
2621
1967
  msgid "Immediate"
2622
1968
  msgstr ""
2623
1969
 
2624
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2625
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
2626
- msgid "Import-only"
2627
- msgstr ""
2628
-
2629
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2630
- msgid "Import-only?"
2631
- msgstr ""
2632
-
2633
1970
  #: app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
2634
1971
  msgid "Important"
2635
1972
  msgstr ""
2636
1973
 
2637
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
2638
- msgid "In order to add a content view to a composite view you must first publish an initial version of the content view."
2639
- msgstr ""
2640
-
2641
1974
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2642
1975
  msgid ""
2643
1976
  "In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n"
2644
1977
  " or ask your admin for a certificate."
2645
1978
  msgstr ""
2646
1979
 
2647
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2648
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2649
- msgid "Include"
2650
- msgstr ""
2651
-
2652
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2653
- msgid "Include all Module Streams with no errata."
2654
- msgstr ""
2655
-
2656
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2657
- msgid "Include all RPMs with no errata."
2658
- msgstr ""
2659
-
2660
1980
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2661
1981
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2662
1982
  msgid "Include Tags"
2663
1983
  msgstr ""
2664
1984
 
2665
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
2666
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2667
- msgid "Inclusion Type"
2668
- msgstr ""
2669
-
2670
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
2671
- msgid "Incremental update"
2672
- msgstr ""
2673
-
2674
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
2675
- msgid "Incremental Update"
2676
- msgstr ""
2677
-
2678
1985
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html
2679
1986
  msgid "Independent Packages"
2680
1987
  msgstr ""
@@ -2761,15 +2068,10 @@ msgstr ""
2761
2068
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
2762
2069
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2763
2070
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
2764
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2765
2071
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
2766
2072
  msgid "Issued"
2767
2073
  msgstr ""
2768
2074
 
2769
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2770
- msgid "Issued On"
2771
- msgstr ""
2772
-
2773
2075
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2774
2076
  msgid "Katello Agent"
2775
2077
  msgstr ""
@@ -2782,8 +2084,6 @@ msgstr ""
2782
2084
  msgid "Katello-agent is deprecated and will be removed in a future release."
2783
2085
  msgstr ""
2784
2086
 
2785
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2786
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
2787
2087
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
2788
2088
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2789
2089
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -2799,7 +2099,6 @@ msgstr ""
2799
2099
  msgid "Last Checkin"
2800
2100
  msgstr ""
2801
2101
 
2802
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2803
2102
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
2804
2103
  msgid "Last Published"
2805
2104
  msgstr ""
@@ -2812,11 +2111,6 @@ msgstr ""
2812
2111
  msgid "Last reclaim space failed:"
2813
2112
  msgstr ""
2814
2113
 
2815
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
2816
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2817
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2818
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
2819
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
2820
2114
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2821
2115
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
2822
2116
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
@@ -2838,22 +2132,6 @@ msgstr ""
2838
2132
  msgid "Last Updated On"
2839
2133
  msgstr ""
2840
2134
 
2841
- #: app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js
2842
- msgid "Latest (Currently %s)"
2843
- msgstr ""
2844
-
2845
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
2846
- msgid "Latest (Currently no version)"
2847
- msgstr ""
2848
-
2849
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2850
- msgid "Less Than"
2851
- msgstr ""
2852
-
2853
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2854
- msgid "Less than version {{ rule.max_version }}"
2855
- msgstr ""
2856
-
2857
2135
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
2858
2136
  msgid "Library"
2859
2137
  msgstr ""
@@ -2881,7 +2159,6 @@ msgstr ""
2881
2159
 
2882
2160
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2883
2161
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
2884
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2885
2162
  msgid "Lifecycle Environment"
2886
2163
  msgstr ""
2887
2164
 
@@ -2894,8 +2171,6 @@ msgstr ""
2894
2171
  msgid "Lifecycle Environment:"
2895
2172
  msgstr ""
2896
2173
 
2897
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
2898
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2899
2174
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html
2900
2175
  msgid "Lifecycle Environments"
2901
2176
  msgstr ""
@@ -2941,24 +2216,11 @@ msgstr ""
2941
2216
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
2942
2217
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections.html
2943
2218
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
2944
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html
2945
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2946
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
2947
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
2948
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
2949
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2950
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2951
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
2952
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
2953
2219
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts.html
2954
2220
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
2955
2221
  msgid "List/Remove"
2956
2222
  msgstr ""
2957
2223
 
2958
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
2959
- msgid "Loading Environment Paths..."
2960
- msgstr ""
2961
-
2962
2224
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
2963
2225
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2964
2226
  #: app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
@@ -3037,20 +2299,8 @@ msgstr ""
3037
2299
  msgid "Manifest Lists"
3038
2300
  msgstr ""
3039
2301
 
3040
- #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
3041
- msgid "Manifest Type"
3042
- msgstr ""
3043
-
3044
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3045
- msgid "Many Content View actions are disabled while a version task is in progress."
3046
- msgstr ""
3047
-
3048
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
3049
- msgid "Maximum Version"
3050
- msgstr ""
3051
-
3052
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
3053
- msgid "Minimum Version"
2302
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
2303
+ msgid "Manifest Type"
3054
2304
  msgstr ""
3055
2305
 
3056
2306
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -3066,20 +2316,10 @@ msgstr ""
3066
2316
  msgid "Moderate"
3067
2317
  msgstr ""
3068
2318
 
3069
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3070
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
3071
2319
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
3072
2320
  msgid "Modular"
3073
2321
  msgstr ""
3074
2322
 
3075
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3076
- msgid "Module Stream"
3077
- msgstr ""
3078
-
3079
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
3080
- msgid "Module Stream Filter:"
3081
- msgstr ""
3082
-
3083
2323
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
3084
2324
  msgid "Module Stream Management"
3085
2325
  msgstr ""
@@ -3094,19 +2334,9 @@ msgstr ""
3094
2334
  msgid "Module Stream Packages"
3095
2335
  msgstr ""
3096
2336
 
3097
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js
3098
- msgid "Module Stream successfully added."
3099
- msgstr ""
3100
-
3101
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js
3102
- msgid "Module Stream successfully removed."
3103
- msgstr ""
3104
-
3105
2337
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
3106
2338
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
3107
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
3108
2339
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3109
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
3110
2340
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
3111
2341
  msgid "Module Streams"
3112
2342
  msgstr ""
@@ -3123,12 +2353,6 @@ msgstr ""
3123
2353
  msgid "More Details"
3124
2354
  msgstr ""
3125
2355
 
3126
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3127
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3128
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3129
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3130
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3131
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3132
2356
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3133
2357
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
3134
2358
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
@@ -3144,6 +2368,7 @@ msgstr ""
3144
2368
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
3145
2369
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
3146
2370
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
2371
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
3147
2372
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
3148
2373
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
3149
2374
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
@@ -3156,32 +2381,6 @@ msgstr ""
3156
2381
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3157
2382
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html
3158
2383
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
3159
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3160
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3161
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3162
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3163
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3164
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
3165
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3166
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
3167
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
3168
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
3169
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
3170
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3171
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3172
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3173
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
3174
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3175
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3176
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
3177
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
3178
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
3179
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
3180
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
3181
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
3182
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
3183
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
3184
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3185
2384
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
3186
2385
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3187
2386
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
@@ -3260,16 +2459,7 @@ msgstr ""
3260
2459
  msgid "New Environment"
3261
2460
  msgstr ""
3262
2461
 
3263
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
3264
- msgid "New Filter"
3265
- msgstr ""
3266
-
3267
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
3268
- msgid "New Filter for Content View:"
3269
- msgstr ""
3270
-
3271
2462
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-copy.html
3272
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
3273
2463
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
3274
2464
  msgid "New Name:"
3275
2465
  msgstr ""
@@ -3292,9 +2482,6 @@ msgstr ""
3292
2482
  msgid "New sync plan successfully created."
3293
2483
  msgstr ""
3294
2484
 
3295
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3296
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3297
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3298
2485
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
3299
2486
  msgid "Next"
3300
2487
  msgstr ""
@@ -3313,10 +2500,6 @@ msgstr ""
3313
2500
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3314
2501
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
3315
2502
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
3316
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3317
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
3318
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
3319
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3320
2503
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
3321
2504
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
3322
2505
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
@@ -3325,47 +2508,14 @@ msgstr ""
3325
2508
  msgid "No"
3326
2509
  msgstr ""
3327
2510
 
3328
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3329
- msgid "No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment."
3330
- msgstr ""
3331
-
3332
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3333
- msgid "No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment."
3334
- msgstr ""
3335
-
3336
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3337
- msgid "No \"Promote/Remove\" permissions on the Lifecycle Environment."
3338
- msgstr ""
3339
-
3340
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
3341
- msgid "No activation keys are affected."
3342
- msgstr ""
3343
-
3344
2511
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3345
2512
  msgid "No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\"."
3346
2513
  msgstr ""
3347
2514
 
3348
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
3349
- msgid "No Content Hosts are affected."
3350
- msgstr ""
3351
-
3352
2515
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
3353
2516
  msgid "No Content Hosts match this Erratum."
3354
2517
  msgstr ""
3355
2518
 
3356
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3357
- msgid "No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first."
3358
- msgstr ""
3359
-
3360
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3361
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3362
- msgid "No Content Views available, please select another environment."
3363
- msgstr ""
3364
-
3365
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3366
- msgid "No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views."
3367
- msgstr ""
3368
-
3369
2519
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
3370
2520
  msgid "No Content Views contain this Deb"
3371
2521
  msgstr ""
@@ -3378,11 +2528,6 @@ msgstr ""
3378
2528
  msgid "No content views exist for {{selected.environment.name}}"
3379
2529
  msgstr ""
3380
2530
 
3381
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3382
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3383
- msgid "No Content Views match the search."
3384
- msgstr ""
3385
-
3386
2531
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
3387
2532
  msgid "No discovered repositories."
3388
2533
  msgstr ""
@@ -3391,10 +2536,6 @@ msgstr ""
3391
2536
  msgid "No enabled Repository Sets provided through subscriptions."
3392
2537
  msgstr ""
3393
2538
 
3394
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3395
- msgid "No Errata to display"
3396
- msgstr ""
3397
-
3398
2539
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
3399
2540
  msgid "No Host Collections match your search."
3400
2541
  msgstr ""
@@ -3460,10 +2601,6 @@ msgstr ""
3460
2601
  msgid "No restriction"
3461
2602
  msgstr ""
3462
2603
 
3463
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
3464
- msgid "No RPMs were matched"
3465
- msgstr ""
3466
-
3467
2604
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3468
2605
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
3469
2606
  msgid "No sync information available."
@@ -3490,12 +2627,6 @@ msgstr ""
3490
2627
  msgid "Not started"
3491
2628
  msgstr ""
3492
2629
 
3493
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3494
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3495
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3496
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3497
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3498
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3499
2630
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3500
2631
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
3501
2632
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
@@ -3505,12 +2636,6 @@ msgstr ""
3505
2636
  msgid "Not Synced"
3506
2637
  msgstr ""
3507
2638
 
3508
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3509
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3510
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3511
- msgid "Not yet published"
3512
- msgstr ""
3513
-
3514
2639
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3515
2640
  msgid "Number of CPUs"
3516
2641
  msgstr ""
@@ -3531,7 +2656,7 @@ msgid ""
3531
2656
  msgstr ""
3532
2657
 
3533
2658
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
3534
- msgid "One or more RPMs are not showing up in the local repository even though they exist in the upstream repository."
2659
+ msgid "One or more packages are not showing up in the local repository even though they exist in the upstream repository."
3535
2660
  msgstr ""
3536
2661
 
3537
2662
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
@@ -3595,14 +2720,6 @@ msgstr ""
3595
2720
  msgid "OS"
3596
2721
  msgstr ""
3597
2722
 
3598
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3599
- msgid "OSTree Content"
3600
- msgstr ""
3601
-
3602
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3603
- msgid "OSTree Repositories"
3604
- msgstr ""
3605
-
3606
2723
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
3607
2724
  msgid "OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>"
3608
2725
  msgstr ""
@@ -3620,7 +2737,6 @@ msgid "Override to Enabled"
3620
2737
  msgstr ""
3621
2738
 
3622
2739
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3623
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3624
2740
  msgid "Package"
3625
2741
  msgstr ""
3626
2742
 
@@ -3629,32 +2745,11 @@ msgstr ""
3629
2745
  msgid "Package Actions"
3630
2746
  msgstr ""
3631
2747
 
3632
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
3633
- msgid "Package Filter:"
3634
- msgstr ""
3635
-
3636
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3637
- msgid "Package Group"
3638
- msgstr ""
3639
-
3640
2748
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3641
2749
  msgid "Package Group (Deprecated)"
3642
2750
  msgstr ""
3643
2751
 
3644
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
3645
- msgid "Package Group Filter:"
3646
- msgstr ""
3647
-
3648
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js
3649
- msgid "Package Group successfully added."
3650
- msgstr ""
3651
-
3652
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js
3653
- msgid "Package Group successfully removed."
3654
- msgstr ""
3655
-
3656
2752
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3657
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
3658
2753
  msgid "Package Groups"
3659
2754
  msgstr ""
3660
2755
 
@@ -3680,19 +2775,6 @@ msgstr ""
3680
2775
  msgid "Package Remove"
3681
2776
  msgstr ""
3682
2777
 
3683
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
3684
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3685
- msgid "Package successfully added."
3686
- msgstr ""
3687
-
3688
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3689
- msgid "Package successfully removed."
3690
- msgstr ""
3691
-
3692
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3693
- msgid "Package successfully updated."
3694
- msgstr ""
3695
-
3696
2778
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-actions.html
3697
2779
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
3698
2780
  msgid "Package Update"
@@ -3793,21 +2875,8 @@ msgstr ""
3793
2875
  msgid "Please make sure a Content View is selected."
3794
2876
  msgstr ""
3795
2877
 
3796
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3797
- msgid "Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:"
3798
- msgstr ""
3799
-
3800
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3801
- msgid "Please select a Lifecycle Environment and Content View to move these Content Hosts to:"
3802
- msgstr ""
3803
-
3804
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3805
- msgid "Please select a Lifecycle Environment."
3806
- msgstr ""
3807
-
3808
2878
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
3809
2879
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
3810
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3811
2880
  msgid "Please select an environment."
3812
2881
  msgstr ""
3813
2882
 
@@ -3833,17 +2902,6 @@ msgstr ""
3833
2902
 
3834
2903
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
3835
2904
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3836
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3837
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
3838
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3839
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3840
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3841
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3842
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3843
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
3844
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
3845
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
3846
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
3847
2905
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3848
2906
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
3849
2907
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html
@@ -3856,10 +2914,6 @@ msgstr ""
3856
2914
  msgid "Product"
3857
2915
  msgstr ""
3858
2916
 
3859
- #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
3860
- msgid "Product Count"
3861
- msgstr ""
3862
-
3863
2917
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
3864
2918
  msgid "Product delete operation has been initiated in the background."
3865
2919
  msgstr ""
@@ -3906,6 +2960,7 @@ msgstr ""
3906
2960
 
3907
2961
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
3908
2962
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
2963
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
3909
2964
  #: app/assets/javascripts/bastion_katello/products/views/products.html
3910
2965
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
3911
2966
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
@@ -3924,44 +2979,6 @@ msgstr ""
3924
2979
  msgid "Products not covered"
3925
2980
  msgstr ""
3926
2981
 
3927
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3928
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
3929
- msgid "Promote"
3930
- msgstr ""
3931
-
3932
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3933
- msgid "Promote Content View:"
3934
- msgstr ""
3935
-
3936
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3937
- msgid "Promote Version"
3938
- msgstr ""
3939
-
3940
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3941
- msgid "Promote Version {{ version.version }}"
3942
- msgstr ""
3943
-
3944
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3945
- msgid "Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}"
3946
- msgstr ""
3947
-
3948
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3949
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
3950
- msgid "Promoted to %s"
3951
- msgstr ""
3952
-
3953
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3954
- msgid "Promoting to %count environments."
3955
- msgstr ""
3956
-
3957
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3958
- msgid "Promoting to 1 environment."
3959
- msgstr ""
3960
-
3961
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
3962
- msgid "Promotion History"
3963
- msgstr ""
3964
-
3965
2982
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-dependencies.html
3966
2983
  msgid "Provides"
3967
2984
  msgstr ""
@@ -3974,44 +2991,15 @@ msgstr ""
3974
2991
  msgid "Provisioning Host Details"
3975
2992
  msgstr ""
3976
2993
 
3977
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
3978
- msgid "Publish Content View:"
3979
- msgstr ""
3980
-
3981
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3982
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
3983
- msgid "Publish New Version"
3984
- msgstr ""
3985
-
3986
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3987
- msgid "Publish via HTTPS"
3988
- msgstr ""
3989
-
3990
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3991
- msgid "Published"
3992
- msgstr ""
3993
-
3994
2994
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
3995
2995
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3996
2996
  msgid "Published At"
3997
2997
  msgstr ""
3998
2998
 
3999
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
4000
- msgid "Published new version"
4001
- msgstr ""
4002
-
4003
2999
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4004
3000
  msgid "Published Repository Information"
4005
3001
  msgstr ""
4006
3002
 
4007
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4008
- msgid "Publishing and promoting to %count environments."
4009
- msgstr ""
4010
-
4011
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4012
- msgid "Publishing and promoting to 1 environment."
4013
- msgstr ""
4014
-
4015
3003
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4016
3004
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4017
3005
  msgid "Publishing Settings"
@@ -4033,10 +3021,6 @@ msgstr ""
4033
3021
  msgid "RAM (GB)"
4034
3022
  msgstr ""
4035
3023
 
4036
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4037
- msgid "Range"
4038
- msgstr ""
4039
-
4040
3024
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
4041
3025
  msgid "Reboot Suggested"
4042
3026
  msgstr ""
@@ -4112,7 +3096,6 @@ msgstr ""
4112
3096
  msgid "Registry URL"
4113
3097
  msgstr ""
4114
3098
 
4115
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
4116
3099
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
4117
3100
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
4118
3101
  msgid "Release"
@@ -4139,8 +3122,6 @@ msgstr ""
4139
3122
 
4140
3123
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
4141
3124
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
4142
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4143
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
4144
3125
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
4145
3126
  #: app/assets/javascripts/bastion_katello/products/views/products.html
4146
3127
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
@@ -4148,10 +3129,6 @@ msgstr ""
4148
3129
  msgid "Remove"
4149
3130
  msgstr ""
4150
3131
 
4151
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4152
- msgid "Remove {{ contentView.name }}"
4153
- msgstr ""
4154
-
4155
3132
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
4156
3133
  msgid "Remove {{ table.numSelected }} Container Image manifest?"
4157
3134
  msgid_plural "Remove {{ table.numSelected }} Container Image manifests?"
@@ -4178,15 +3155,6 @@ msgstr ""
4178
3155
  msgid "Remove Content Credential {{ contentCredential.name }}"
4179
3156
  msgstr ""
4180
3157
 
4181
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4182
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
4183
- msgid "Remove Content View"
4184
- msgstr ""
4185
-
4186
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
4187
- msgid "Remove Content Views"
4188
- msgstr ""
4189
-
4190
3158
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html
4191
3159
  msgid "Remove Content?"
4192
3160
  msgid_plural "Remove {{ table.numSelected }} content units?"
@@ -4201,10 +3169,6 @@ msgstr ""
4201
3169
  msgid "Remove environment {{ environment.name }}?"
4202
3170
  msgstr ""
4203
3171
 
4204
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
4205
- msgid "Remove Errata"
4206
- msgstr ""
4207
-
4208
3172
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
4209
3173
  msgid "Remove File?"
4210
3174
  msgid_plural "Remove {{ table.numSelected }} files?"
@@ -4223,14 +3187,6 @@ msgstr ""
4223
3187
  msgid "Remove Host Collection \"{{ hostCollection.name }}\"?"
4224
3188
  msgstr ""
4225
3189
 
4226
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
4227
- msgid "Remove Module Stream"
4228
- msgstr ""
4229
-
4230
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
4231
- msgid "Remove Package Group"
4232
- msgstr ""
4233
-
4234
3190
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
4235
3191
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
4236
3192
  msgid "Remove Package?"
@@ -4257,11 +3213,6 @@ msgid_plural "Remove {{ table.getSelected().length }} products?"
4257
3213
  msgstr[0] ""
4258
3214
  msgstr[1] ""
4259
3215
 
4260
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
4261
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
4262
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
4263
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
4264
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4265
3216
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
4266
3217
  msgid "Remove Repositories"
4267
3218
  msgstr ""
@@ -4280,10 +3231,6 @@ msgid_plural "Remove {{ table.numSelected }} repositories?"
4280
3231
  msgstr[0] ""
4281
3232
  msgstr[1] ""
4282
3233
 
4283
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4284
- msgid "Remove Rule"
4285
- msgstr ""
4286
-
4287
3234
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
4288
3235
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
4289
3236
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -4291,7 +3238,6 @@ msgstr ""
4291
3238
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
4292
3239
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
4293
3240
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
4294
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
4295
3241
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
4296
3242
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
4297
3243
  msgid "Remove Selected"
@@ -4309,21 +3255,6 @@ msgstr ""
4309
3255
  msgid "Remove Sync Plan \"{{ syncPlan.name }}\"?"
4310
3256
  msgstr ""
4311
3257
 
4312
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
4313
- msgid "Remove Tags"
4314
- msgstr ""
4315
-
4316
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4317
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
4318
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
4319
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4320
- msgid "Remove Version"
4321
- msgstr ""
4322
-
4323
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
4324
- msgid "Remove Version Confirmation"
4325
- msgstr ""
4326
-
4327
3258
  #: app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-host-collections.controller.js
4328
3259
  msgid "Removed %x host collections from activation key \"%y\"."
4329
3260
  msgstr ""
@@ -4347,8 +3278,7 @@ msgstr ""
4347
3278
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
4348
3279
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
4349
3280
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
4350
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
4351
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3281
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
4352
3282
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
4353
3283
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
4354
3284
  #: app/assets/javascripts/bastion_katello/packages/details/views/package.html
@@ -4370,14 +3300,6 @@ msgstr ""
4370
3300
  msgid "Repositories for"
4371
3301
  msgstr ""
4372
3302
 
4373
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
4374
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
4375
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
4376
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
4377
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4378
- msgid "Repositories for Content View:"
4379
- msgstr ""
4380
-
4381
3303
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
4382
3304
  msgid "Repositories for Deb:"
4383
3305
  msgstr ""
@@ -4390,10 +3312,6 @@ msgstr ""
4390
3312
  msgid "Repositories for File:"
4391
3313
  msgstr ""
4392
3314
 
4393
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
4394
- msgid "Repositories for Filter:"
4395
- msgstr ""
4396
-
4397
3315
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
4398
3316
  msgid "Repositories for Package:"
4399
3317
  msgstr ""
@@ -4406,9 +3324,6 @@ msgstr ""
4406
3324
  msgid "Repositories to Create"
4407
3325
  msgstr ""
4408
3326
 
4409
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
4410
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
4411
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
4412
3327
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
4413
3328
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
4414
3329
  msgid "Repository"
@@ -4422,10 +3337,6 @@ msgstr ""
4422
3337
  msgid "Repository %s successfully created."
4423
3338
  msgstr ""
4424
3339
 
4425
- #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
4426
- msgid "Repository Count"
4427
- msgstr ""
4428
-
4429
3340
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create-status.html
4430
3341
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
4431
3342
  msgid "Repository created"
@@ -4467,10 +3378,6 @@ msgstr ""
4467
3378
  msgid "Repository Saved."
4468
3379
  msgstr ""
4469
3380
 
4470
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4471
- msgid "Repository Selection"
4472
- msgstr ""
4473
-
4474
3381
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
4475
3382
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
4476
3383
  msgid "Repository Sets"
@@ -4576,33 +3483,15 @@ msgstr ""
4576
3483
  msgid "Role:"
4577
3484
  msgstr ""
4578
3485
 
4579
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4580
3486
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4581
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
4582
3487
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
4583
3488
  msgid "RPM"
4584
3489
  msgstr ""
4585
3490
 
4586
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4587
- msgid "RPM Name"
4588
- msgstr ""
4589
-
4590
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
4591
- msgid "rpm Package Groups"
4592
- msgstr ""
4593
-
4594
3491
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4595
3492
  msgid "rpm Package Updates"
4596
3493
  msgstr ""
4597
3494
 
4598
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
4599
- msgid "rpm Packages"
4600
- msgstr ""
4601
-
4602
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
4603
- msgid "RPMs"
4604
- msgstr ""
4605
-
4606
3495
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
4607
3496
  msgid "Run Auto-Attach"
4608
3497
  msgstr ""
@@ -4640,8 +3529,6 @@ msgstr ""
4640
3529
 
4641
3530
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
4642
3531
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4643
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
4644
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
4645
3532
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
4646
3533
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
4647
3534
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -4672,12 +3559,8 @@ msgstr ""
4672
3559
  msgid "Select Content View"
4673
3560
  msgstr ""
4674
3561
 
4675
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4676
- msgid "Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:"
4677
- msgstr ""
4678
-
4679
3562
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html
4680
- msgid "Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced."
3563
+ msgid "Selecting \"Complete Sync\" will cause only yum/deb repositories of the selected product to be synced."
4681
3564
  msgstr ""
4682
3565
 
4683
3566
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
@@ -4688,10 +3571,6 @@ msgstr ""
4688
3571
  msgid "Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification."
4689
3572
  msgstr ""
4690
3573
 
4691
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4692
- msgid "Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option."
4693
- msgstr ""
4694
-
4695
3574
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
4696
3575
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
4697
3576
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
@@ -4714,14 +3593,6 @@ msgstr ""
4714
3593
  msgid "Severity"
4715
3594
  msgstr ""
4716
3595
 
4717
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
4718
- msgid "Show affected Activation Keys"
4719
- msgstr ""
4720
-
4721
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
4722
- msgid "Show affected Content Hosts"
4723
- msgstr ""
4724
-
4725
3596
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
4726
3597
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
4727
3598
  msgid "Show All"
@@ -4732,10 +3603,6 @@ msgstr ""
4732
3603
  msgid "Show all Repository Sets in Organization"
4733
3604
  msgstr ""
4734
3605
 
4735
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4736
- msgid "Show Matching Content"
4737
- msgstr ""
4738
-
4739
3606
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
4740
3607
  msgid "Size"
4741
3608
  msgstr ""
@@ -4761,11 +3628,6 @@ msgstr ""
4761
3628
  msgid "Solution"
4762
3629
  msgstr ""
4763
3630
 
4764
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
4765
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
4766
- msgid "Solve Dependencies"
4767
- msgstr ""
4768
-
4769
3631
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
4770
3632
  msgid ""
4771
3633
  "Some of the Errata shown below may not be installable as they are not in this Content Host's\n"
@@ -4826,7 +3688,6 @@ msgstr ""
4826
3688
  msgid "Standard sync, optimized for speed by bypassing any unneeded steps."
4827
3689
  msgstr ""
4828
3690
 
4829
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
4830
3691
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
4831
3692
  #: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
4832
3693
  msgid "Start Date"
@@ -4858,8 +3719,6 @@ msgstr ""
4858
3719
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html
4859
3720
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
4860
3721
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
4861
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
4862
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
4863
3722
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
4864
3723
  #: app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
4865
3724
  msgid "Status"
@@ -4867,7 +3726,6 @@ msgstr ""
4867
3726
 
4868
3727
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
4869
3728
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
4870
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
4871
3729
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
4872
3730
  msgid "Stream"
4873
3731
  msgstr ""
@@ -4922,38 +3780,10 @@ msgstr ""
4922
3780
  msgid "Successfully added %s subscriptions."
4923
3781
  msgstr ""
4924
3782
 
4925
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4926
- msgid "Successfully deleted %cv version %ver."
4927
- msgstr ""
4928
-
4929
- #: app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
4930
- msgid "Successfully initiated deletion of %cv version %ver."
4931
- msgstr ""
4932
-
4933
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js
4934
- msgid "Successfully initiated promotion of %cv version %ver to %env."
4935
- msgstr ""
4936
-
4937
- #: app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
4938
- msgid "Successfully initiated removal of %cv version %ver."
4939
- msgstr ""
4940
-
4941
3783
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js
4942
3784
  msgid "Successfully initiated restart of services."
4943
3785
  msgstr ""
4944
3786
 
4945
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4946
- msgid "Successfully promoted %cv version %ver to %env"
4947
- msgstr ""
4948
-
4949
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4950
- msgid "Successfully published %cv version %ver and promoted to Library"
4951
- msgstr ""
4952
-
4953
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4954
- msgid "Successfully removed %cv version %ver from environments: %env"
4955
- msgstr ""
4956
-
4957
3787
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js
4958
3788
  msgid "Successfully removed %s items."
4959
3789
  msgstr ""
@@ -4991,7 +3821,6 @@ msgstr ""
4991
3821
  msgid "Successfully uploaded content:"
4992
3822
  msgstr ""
4993
3823
 
4994
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4995
3824
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
4996
3825
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4997
3826
  msgid "Summary"
@@ -5014,7 +3843,7 @@ msgid "Sync Enabled"
5014
3843
  msgstr ""
5015
3844
 
5016
3845
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
5017
- msgid "Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:"
3846
+ msgid "Sync even if the upstream metadata appears to have no change. This option is only relevant for yum/deb repositories and will take longer than an optimized sync. Choose this option if:"
5018
3847
  msgstr ""
5019
3848
 
5020
3849
  #: app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
@@ -5067,17 +3896,11 @@ msgstr ""
5067
3896
  msgid "Sync Settings"
5068
3897
  msgstr ""
5069
3898
 
5070
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5071
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5072
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5073
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5074
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5075
3899
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5076
3900
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
5077
3901
  msgid "Sync State"
5078
3902
  msgstr ""
5079
3903
 
5080
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5081
3904
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5082
3905
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
5083
3906
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
@@ -5106,7 +3929,7 @@ msgid "System Purpose"
5106
3929
  msgstr ""
5107
3930
 
5108
3931
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5109
- msgid "System Purpose allows you to set the system's intended use on your network and improves the accuracy of auto attaching subscriptions."
3932
+ 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."
5110
3933
  msgstr ""
5111
3934
 
5112
3935
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
@@ -5117,8 +3940,6 @@ msgstr ""
5117
3940
  msgid "System Purpose Status"
5118
3941
  msgstr ""
5119
3942
 
5120
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
5121
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
5122
3943
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html
5123
3944
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
5124
3945
  msgid "Tags"
@@ -5129,7 +3950,6 @@ msgid "Task Details"
5129
3950
  msgstr ""
5130
3951
 
5131
3952
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
5132
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
5133
3953
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
5134
3954
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks.html
5135
3955
  msgid "Tasks"
@@ -5165,22 +3985,6 @@ msgid ""
5165
3985
  "&lt;%= organization.label %&gt;/&lt;%= repository.docker_upstream_name %&gt;</pre>"
5166
3986
  msgstr ""
5167
3987
 
5168
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
5169
- msgid "The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use."
5170
- msgstr ""
5171
-
5172
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5173
- msgid "The archive of this Version will be deleted. This Version will not be available once deletion is complete."
5174
- msgstr ""
5175
-
5176
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5177
- msgid "The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment."
5178
- msgstr ""
5179
-
5180
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
5181
- msgid "The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use."
5182
- msgstr ""
5183
-
5184
3988
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
5185
3989
  msgid "The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts."
5186
3990
  msgstr ""
@@ -5257,46 +4061,6 @@ msgstr ""
5257
4061
  msgid "There are {{ packageCount }} total Packages in this organization but none match the above filters."
5258
4062
  msgstr ""
5259
4063
 
5260
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5261
- msgid "There are currently no Apt Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5262
- msgstr ""
5263
-
5264
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5265
- msgid "There are currently no Apt Repositories to add to this Content View,"
5266
- msgstr ""
5267
-
5268
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5269
- msgid "There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5270
- msgstr ""
5271
-
5272
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5273
- msgid "There are currently no Docker Repositories to add to this Content View,"
5274
- msgstr ""
5275
-
5276
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5277
- msgid "There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5278
- msgstr ""
5279
-
5280
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5281
- msgid "There are currently no File Repositories to add to this Content View,"
5282
- msgstr ""
5283
-
5284
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5285
- msgid "There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5286
- msgstr ""
5287
-
5288
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5289
- msgid "There are currently no OSTree Repositories to add to this Content View,"
5290
- msgstr ""
5291
-
5292
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5293
- msgid "There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5294
- msgstr ""
5295
-
5296
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5297
- msgid "There are currently no repositories to add to this Content View,"
5298
- msgstr ""
5299
-
5300
4064
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
5301
4065
  msgid "There are no %(contentType)s that match the criteria."
5302
4066
  msgstr ""
@@ -5349,10 +4113,6 @@ msgstr ""
5349
4113
  msgid "There is currently an Incremental Update task in progress. This update must finish before applying existing updates."
5350
4114
  msgstr ""
5351
4115
 
5352
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5353
- msgid "There is currently no history associated with this Content View."
5354
- msgstr ""
5355
-
5356
4116
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
5357
4117
  msgid "These instructions will be removed in a future release. NEW: To register a content host without following these manual steps, see <a href=\"https://{{ katelloHostname }}/hosts/register\">Register Host</a>"
5358
4118
  msgstr ""
@@ -5379,18 +4139,6 @@ msgstr ""
5379
4139
  msgid "This Container Image Tag is not present in any Lifecycle Environments."
5380
4140
  msgstr ""
5381
4141
 
5382
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5383
- msgid "This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right."
5384
- msgstr ""
5385
-
5386
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5387
- msgid "This filter applies only to a subset of repositories in the content view."
5388
- msgstr ""
5389
-
5390
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5391
- msgid "This filter applies to all repositories in the content view (current and future)."
5392
- msgstr ""
5393
-
5394
4142
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
5395
4143
  msgid ""
5396
4144
  "This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n"
@@ -5402,48 +4150,17 @@ msgid "This organization has Simple Content Access enabled. Hosts are not requi
5402
4150
  msgstr ""
5403
4151
 
5404
4152
  #: app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html
5405
- msgid "This organization is not using <a target=\"_blank\" href=\"https://access.redhat.com/articles/simple-content-access\">Simple Content Access.</a> Legacy subscription management is deprecated and will be removed in a future version."
5406
- msgstr ""
5407
-
5408
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
5409
- msgid "This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below."
5410
- msgstr ""
5411
-
5412
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
5413
- msgid "This Version is not associated with any Lifecycle Environments."
5414
- msgstr ""
5415
-
5416
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5417
- msgid "This version will be removed from:"
5418
- msgstr ""
5419
-
5420
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
5421
- msgid ""
5422
- "This will solve RPM and Module Stream dependencies on every publish of this Content View. Dependency solving significantly increases\n"
5423
- " publish time (publishes can take over three times as long) and filters will be ignored when adding packages to solve\n"
5424
- " dependencies. Also, certain scenarios involving errata may still cause dependency errors."
5425
- msgstr ""
5426
-
5427
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
5428
- msgid ""
5429
- "This will solve RPM and Module Stream dependencies on every publish of this Content View. Dependency solving significantly increases publish time (publishes can take over three times as long) and filters will be ignored when adding packages to solve\n"
5430
- " dependencies. Also, certain scenarios involving errata may still cause dependency errors."
4153
+ msgid "This organization is not using <a target=\"_blank\" href=\"https://access.redhat.com/articles/simple-content-access\">Simple Content Access.</a> Entitlement-based subscription management is deprecated and will be removed in a future version."
5431
4154
  msgstr ""
5432
4155
 
5433
4156
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
5434
4157
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
5435
4158
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5436
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5437
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5438
4159
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5439
4160
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
5440
4161
  msgid "Title"
5441
4162
  msgstr ""
5442
4163
 
5443
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
5444
- msgid "to manage them individually."
5445
- msgstr ""
5446
-
5447
4164
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
5448
4165
  msgid "To register a content host to this server, follow these steps."
5449
4166
  msgstr ""
@@ -5490,8 +4207,6 @@ msgstr ""
5490
4207
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
5491
4208
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5492
4209
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5493
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5494
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5495
4210
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5496
4211
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
5497
4212
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -5501,10 +4216,6 @@ msgstr ""
5501
4216
  msgid "Type"
5502
4217
  msgstr ""
5503
4218
 
5504
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
5505
- msgid "Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}"
5506
- msgstr ""
5507
-
5508
4219
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
5509
4220
  msgid "Unauthenticated Pull"
5510
4221
  msgstr ""
@@ -5570,31 +4281,16 @@ msgstr ""
5570
4281
  msgid "Update Packages"
5571
4282
  msgstr ""
5572
4283
 
5573
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5574
- msgid "Update Repositories"
5575
- msgstr ""
5576
-
5577
4284
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
5578
4285
  msgid "Update Sync Plan"
5579
4286
  msgstr ""
5580
4287
 
5581
4288
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5582
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5583
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
5584
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5585
4289
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5586
4290
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
5587
4291
  msgid "Updated"
5588
4292
  msgstr ""
5589
4293
 
5590
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js
5591
- msgid "Updated errata filter -"
5592
- msgstr ""
5593
-
5594
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
5595
- msgid "Updated On"
5596
- msgstr ""
5597
-
5598
4294
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
5599
4295
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
5600
4296
  msgid "Upgradable"
@@ -5719,12 +4415,12 @@ msgstr ""
5719
4415
  msgid "Use the cancel button on content view selection to revert your lifecycle environment selection."
5720
4416
  msgstr ""
5721
4417
 
4418
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
5722
4419
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
5723
4420
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
5724
4421
  msgid "Used as"
5725
4422
  msgstr ""
5726
4423
 
5727
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5728
4424
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
5729
4425
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
5730
4426
  msgid "User"
@@ -5756,17 +4452,6 @@ msgstr ""
5756
4452
 
5757
4453
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html
5758
4454
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
5759
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
5760
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
5761
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
5762
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
5763
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
5764
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5765
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
5766
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5767
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
5768
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
5769
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
5770
4455
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
5771
4456
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
5772
4457
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
@@ -5786,31 +4471,10 @@ msgstr ""
5786
4471
  msgid "Version {{ cvVersions['version'] }}"
5787
4472
  msgstr ""
5788
4473
 
5789
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
5790
- msgid "Version {{ rule.version }}"
5791
- msgstr ""
5792
-
5793
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
5794
- msgid "Version Deletion"
5795
- msgstr ""
5796
-
5797
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
5798
- msgid "Version Details"
5799
- msgstr ""
5800
-
5801
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
5802
- msgid "Version:"
5803
- msgstr ""
5804
-
5805
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
5806
4474
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
5807
4475
  msgid "Versions"
5808
4476
  msgstr ""
5809
4477
 
5810
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5811
- msgid "Versions for Content View:"
5812
- msgstr ""
5813
-
5814
4478
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
5815
4479
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
5816
4480
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
@@ -5917,14 +4581,9 @@ msgstr ""
5917
4581
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
5918
4582
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
5919
4583
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
5920
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5921
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
5922
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5923
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
5924
4584
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
5925
4585
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
5926
4586
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
5927
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5928
4587
  #: app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js
5929
4588
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
5930
4589
  msgid "Yes"
@@ -5962,6 +4621,10 @@ msgstr ""
5962
4621
  msgid "You currently don't have any Activation Keys, you can add Activation Keys using the button on the right."
5963
4622
  msgstr ""
5964
4623
 
4624
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
4625
+ msgid "You currently don't have any Alternate Content Sources associated with this Content Credential."
4626
+ msgstr ""
4627
+
5965
4628
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
5966
4629
  msgid "You currently don't have any Container Image Tags."
5967
4630
  msgstr ""
@@ -5978,24 +4641,16 @@ msgstr ""
5978
4641
  msgid "You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions."
5979
4642
  msgstr ""
5980
4643
 
5981
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
5982
- msgid "You currently don't have any Content Views. A Content View can be added by using the button on the right."
5983
- msgstr ""
5984
-
5985
4644
  #: app/assets/javascripts/bastion_katello/files/views/files.html
5986
4645
  msgid "You currently don't have any Files."
5987
4646
  msgstr ""
5988
4647
 
5989
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
5990
- msgid "You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right."
5991
- msgstr ""
5992
-
5993
4648
  #: app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
5994
4649
  msgid "You currently don't have any Host Collections, you can add Host Collections using the button on the right."
5995
4650
  msgstr ""
5996
4651
 
5997
4652
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
5998
- msgid "You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab."
4653
+ msgid "You currently don't have any Hosts in this Host Collection, you can add Content Hosts after selecting the 'Add' tab."
5999
4654
  msgstr ""
6000
4655
 
6001
4656
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
@@ -6039,10 +4694,6 @@ msgstr ""
6039
4694
  msgid "You do not have any Installed Products"
6040
4695
  msgstr ""
6041
4696
 
6042
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
6043
- msgid "You have selected more than one component Content View Version with the same repository resulting in slower publishing:"
6044
- msgstr ""
6045
-
6046
4697
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
6047
4698
  msgid "You must select a content view in order to save your environment."
6048
4699
  msgstr ""
@@ -6063,10 +4714,6 @@ msgstr ""
6063
4714
  msgid "You must select at least one Errata to apply."
6064
4715
  msgstr ""
6065
4716
 
6066
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
6067
- msgid "You must select at least one repository."
6068
- msgstr ""
6069
-
6070
4717
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
6071
4718
  msgid "Your search returned zero %(contentType)s that match the criteria."
6072
4719
  msgstr ""
@@ -6090,16 +4737,11 @@ msgstr ""
6090
4737
  msgid "Your search returned zero Content Hosts."
6091
4738
  msgstr ""
6092
4739
 
6093
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
6094
- msgid "Your search returned zero Content View."
6095
- msgstr ""
6096
-
6097
4740
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
6098
4741
  #: app/assets/javascripts/bastion_katello/files/details/views/file-content-views.html
6099
4742
  msgid "Your search returned zero Content Views"
6100
4743
  msgstr ""
6101
4744
 
6102
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
6103
4745
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
6104
4746
  msgid "Your search returned zero Content Views."
6105
4747
  msgstr ""
@@ -6114,7 +4756,6 @@ msgstr ""
6114
4756
 
6115
4757
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
6116
4758
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
6117
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
6118
4759
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
6119
4760
  msgid "Your search returned zero Errata."
6120
4761
  msgstr ""
@@ -6127,10 +4768,6 @@ msgstr ""
6127
4768
  msgid "Your search returned zero Files."
6128
4769
  msgstr ""
6129
4770
 
6130
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
6131
- msgid "Your search returned zero Filters."
6132
- msgstr ""
6133
-
6134
4771
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
6135
4772
  #: app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
6136
4773
  msgid "Your search returned zero Host Collections."
@@ -6186,10 +4823,6 @@ msgstr ""
6186
4823
  msgid "Your search returned zero results."
6187
4824
  msgstr ""
6188
4825
 
6189
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
6190
- msgid "Your search returned zero RPMs"
6191
- msgstr ""
6192
-
6193
4826
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
6194
4827
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
6195
4828
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
@@ -6205,10 +4838,6 @@ msgstr ""
6205
4838
  msgid "Your search returned zero Traces."
6206
4839
  msgstr ""
6207
4840
 
6208
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
6209
- msgid "Yum Content"
6210
- msgstr ""
6211
-
6212
4841
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6213
4842
  msgid "Yum Metadata Checksum"
6214
4843
  msgstr ""
@@ -6217,10 +4846,6 @@ msgstr ""
6217
4846
  msgid "Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
6218
4847
  msgstr ""
6219
4848
 
6220
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
6221
- msgid "Yum Repositories"
6222
- msgstr ""
6223
-
6224
4849
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
6225
4850
  msgid "Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>"
6226
4851
  msgstr ""