katello 4.5.1 → 4.8.0.rc2

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

Potentially problematic release.


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

Files changed (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/cs/katello.po CHANGED
@@ -7,7 +7,7 @@
7
7
  # <lzap@seznam.cz>, 2013.
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: katello 2.5.0\n"
10
+ "Project-Id-Version: katello 2.4.0-RC1\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "PO-Revision-Date: 2013-01-22 13:28+0000\n"
13
13
  "Last-Translator: lzap <lzap@seznam.cz>\n"
@@ -35,12 +35,21 @@ msgstr ""
35
35
  msgid " Content view updated"
36
36
  msgstr ""
37
37
 
38
+ msgid " DEBs"
39
+ msgstr ""
40
+
38
41
  msgid " Either select the latest content view or the content view version. Cannot set both."
39
42
  msgstr ""
40
43
 
41
44
  msgid " RPMs"
42
45
  msgstr ""
43
46
 
47
+ msgid " The base path can be a web address or a filesystem location."
48
+ msgstr ""
49
+
50
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
51
+ msgstr ""
52
+
44
53
  msgid " View task details "
45
54
  msgstr ""
46
55
 
@@ -56,10 +65,10 @@ msgstr ""
56
65
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
57
66
  msgstr ""
58
67
 
59
- msgid " content view is used in listed component content views. For more information, "
68
+ msgid " content view is used in listed composite content views."
60
69
  msgstr ""
61
70
 
62
- msgid " content view is used in listed composite content views."
71
+ msgid " content view is used in listed content views. For more information, "
63
72
  msgstr ""
64
73
 
65
74
  msgid " environment cannot be set to an environment already on its path"
@@ -71,9 +80,18 @@ msgstr ""
71
80
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
72
81
  msgstr ""
73
82
 
83
+ msgid " or any step on the left."
84
+ msgstr ""
85
+
86
+ msgid " to manage and promote content views, or select a different environment."
87
+ msgstr ""
88
+
74
89
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
75
90
  msgstr ""
76
91
 
92
+ msgid "${option}"
93
+ msgstr ""
94
+
77
95
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
78
96
  msgstr ""
79
97
 
@@ -110,6 +128,9 @@ msgstr ""
110
128
  msgid "%s ago"
111
129
  msgstr "před %s"
112
130
 
131
+ msgid "%s guests"
132
+ msgstr ""
133
+
113
134
  msgid "%s has already been deleted"
114
135
  msgstr ""
115
136
 
@@ -337,9 +358,30 @@ msgstr ""
337
358
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
338
359
  msgstr ""
339
360
 
361
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
362
+ msgstr ""
363
+
364
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
365
+ msgstr ""
366
+
367
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
368
+ msgstr ""
369
+
370
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
371
+ msgstr ""
372
+
373
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
374
+ msgstr ""
375
+
376
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
377
+ msgstr ""
378
+
340
379
  msgid "(Orphaned)"
341
380
  msgstr ""
342
381
 
382
+ msgid "(unset)"
383
+ msgstr ""
384
+
343
385
  msgid ", and"
344
386
  msgstr ""
345
387
 
@@ -368,7 +410,7 @@ msgstr ""
368
410
  msgid "A backend service [ %s ] is unreachable"
369
411
  msgstr ""
370
412
 
371
- msgid "A content view can be added by using the \"Create content view\" button above."
413
+ msgid "A content view can be added by using the \"Create content view\" button below."
372
414
  msgstr ""
373
415
 
374
416
  #, fuzzy
@@ -390,6 +432,12 @@ msgstr ""
390
432
  msgid "A post-promotion summary of hosts with installable errata"
391
433
  msgstr ""
392
434
 
435
+ msgid "A remote execution job is in progress"
436
+ msgstr ""
437
+
438
+ msgid "A remote execution job is in progress."
439
+ msgstr ""
440
+
393
441
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
394
442
  msgstr ""
395
443
 
@@ -479,6 +527,9 @@ msgstr ""
479
527
  msgid "Add Bookmark"
480
528
  msgstr ""
481
529
 
530
+ msgid "Add DEB rule"
531
+ msgstr ""
532
+
482
533
  msgid "Add RPM rule"
483
534
  msgstr ""
484
535
 
@@ -488,13 +539,13 @@ msgstr ""
488
539
  msgid "Add a subscription to a host"
489
540
  msgstr ""
490
541
 
491
- msgid "Add component"
542
+ msgid "Add an alternate content source"
492
543
  msgstr ""
493
544
 
494
- msgid "Add component content views"
545
+ msgid "Add components to the content view"
495
546
  msgstr ""
496
547
 
497
- msgid "Add components to the content view"
548
+ msgid "Add content view"
498
549
  msgstr ""
499
550
 
500
551
  msgid "Add content views"
@@ -509,9 +560,6 @@ msgstr ""
509
560
  msgid "Add filter rule"
510
561
  msgstr ""
511
562
 
512
- msgid "Add filters using the 'Add filter' button above."
513
- msgstr ""
514
-
515
563
  msgid "Add host to collections"
516
564
  msgstr ""
517
565
 
@@ -551,12 +599,18 @@ msgstr ""
551
599
  msgid "Add subscriptions to one or more hosts"
552
600
  msgstr ""
553
601
 
554
- msgid "Add to this filter using the 'Add RPM rule' button."
602
+ msgid "Add to a host collection"
603
+ msgstr ""
604
+
605
+ msgid "Add to this filter using the 'Add Deb rule' button."
555
606
  msgstr ""
556
607
 
557
608
  msgid "Add to this filter using the 'Add filter rule' button."
558
609
  msgstr ""
559
610
 
611
+ msgid "Add-ons"
612
+ msgstr ""
613
+
560
614
  msgid "Added"
561
615
  msgstr ""
562
616
 
@@ -575,6 +629,9 @@ msgstr ""
575
629
  msgid "Addons"
576
630
  msgstr ""
577
631
 
632
+ msgid "Affected Repositories"
633
+ msgstr ""
634
+
578
635
  msgid "Affected repositories"
579
636
  msgstr ""
580
637
 
@@ -605,6 +662,9 @@ msgstr ""
605
662
  msgid "All subpaths must have a slash at the end and none at the front"
606
663
  msgstr ""
607
664
 
665
+ msgid "All up to date"
666
+ msgstr ""
667
+
608
668
  msgid "All versions"
609
669
  msgstr ""
610
670
 
@@ -614,6 +674,9 @@ msgstr ""
614
674
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
615
675
  msgstr ""
616
676
 
677
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
678
+ msgstr ""
679
+
617
680
  msgid "Allow deleting repositories in published content views"
618
681
  msgstr ""
619
682
 
@@ -623,6 +686,9 @@ msgstr ""
623
686
  msgid "Allow hosts to re-register themselves only when they are in build mode"
624
687
  msgstr ""
625
688
 
689
+ msgid "Allow multiple content views"
690
+ msgstr ""
691
+
626
692
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
627
693
  msgstr ""
628
694
 
@@ -632,6 +698,9 @@ msgstr ""
632
698
  msgid "Alter a host's host collections"
633
699
  msgstr ""
634
700
 
701
+ msgid "Alternate Content Source HTTP Proxy"
702
+ msgstr ""
703
+
635
704
  msgid "Alternate Content Sources"
636
705
  msgstr ""
637
706
 
@@ -644,7 +713,13 @@ msgstr ""
644
713
  msgid "Alternate content source deleted"
645
714
  msgstr ""
646
715
 
647
- msgid "Alternate content sources"
716
+ msgid "Alternate content source edited"
717
+ msgstr ""
718
+
719
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
720
+ msgstr ""
721
+
722
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
648
723
  msgstr ""
649
724
 
650
725
  msgid "Always Use Latest (currently %{version})"
@@ -656,7 +731,7 @@ msgstr ""
656
731
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
657
732
  msgstr ""
658
733
 
659
- msgid "An alternate content source can be added by using the \"Add source\" button above."
734
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
660
735
  msgstr ""
661
736
 
662
737
  msgid "An environment is missing a prior"
@@ -681,9 +756,6 @@ msgstr ""
681
756
  msgid "Ansible Collection"
682
757
  msgstr ""
683
758
 
684
- msgid "Ansible Collection Details"
685
- msgstr ""
686
-
687
759
  msgid "Ansible Collections"
688
760
  msgstr ""
689
761
 
@@ -696,9 +768,15 @@ msgstr ""
696
768
  msgid "Applicability Batch Size"
697
769
  msgstr ""
698
770
 
771
+ msgid "Applicable"
772
+ msgstr ""
773
+
699
774
  msgid "Applicable Content Hosts"
700
775
  msgstr ""
701
776
 
777
+ msgid "Applicable errata apply to at least one package installed on the host."
778
+ msgstr ""
779
+
702
780
  msgid "Application"
703
781
  msgstr ""
704
782
 
@@ -732,6 +810,9 @@ msgstr ""
732
810
  msgid "Architecture of content in the repository"
733
811
  msgstr ""
734
812
 
813
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
814
+ msgstr ""
815
+
735
816
  msgid "Architecture(s)"
736
817
  msgstr ""
737
818
 
@@ -838,6 +919,9 @@ msgstr ""
838
919
  msgid "Auth URL requires Auth token be set."
839
920
  msgstr ""
840
921
 
922
+ msgid "Authentication type"
923
+ msgstr ""
924
+
841
925
  msgid "Author"
842
926
  msgstr ""
843
927
 
@@ -860,6 +944,9 @@ msgstr ""
860
944
  msgid "Autosearch delay"
861
945
  msgstr ""
862
946
 
947
+ msgid "Available"
948
+ msgstr ""
949
+
863
950
  msgid "Available Entitlements"
864
951
  msgstr ""
865
952
 
@@ -869,10 +956,16 @@ msgstr ""
869
956
  msgid "Available Schema Versions"
870
957
  msgstr ""
871
958
 
959
+ msgid "Back"
960
+ msgstr ""
961
+
872
962
  #, fuzzy
873
963
  msgid "Backend System Status"
874
964
  msgstr "Systém"
875
965
 
966
+ msgid "Base URL"
967
+ msgstr ""
968
+
876
969
  msgid "Base URL for finding alternate content"
877
970
  msgstr ""
878
971
 
@@ -918,6 +1011,9 @@ msgstr ""
918
1011
  msgid "Bookmarks marked as public are available to all users"
919
1012
  msgstr ""
920
1013
 
1014
+ msgid "Both"
1015
+ msgstr ""
1016
+
921
1017
  msgid "Both major and minor parameters have to be used to override a CV version"
922
1018
  msgstr ""
923
1019
 
@@ -930,6 +1026,12 @@ msgstr ""
930
1026
  msgid "Bugs"
931
1027
  msgstr ""
932
1028
 
1029
+ msgid "Bulk alternate content source delete has started."
1030
+ msgstr ""
1031
+
1032
+ msgid "Bulk alternate content source refresh has started."
1033
+ msgstr ""
1034
+
933
1035
  msgid "Bulk generate applicability for host %s"
934
1036
  msgstr ""
935
1037
 
@@ -1019,6 +1121,9 @@ msgstr "Stornováno."
1019
1121
  msgid "Cancelled."
1020
1122
  msgstr "Stornováno."
1021
1123
 
1124
+ msgid "Candlepin"
1125
+ msgstr ""
1126
+
1022
1127
  msgid "Candlepin Event"
1023
1128
  msgstr ""
1024
1129
 
@@ -1031,6 +1136,9 @@ msgstr ""
1031
1136
  msgid "Candlepin is not running properly"
1032
1137
  msgstr ""
1033
1138
 
1139
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1140
+ msgstr ""
1141
+
1034
1142
  msgid "Cannot add %s repositories to a content view."
1035
1143
  msgstr ""
1036
1144
 
@@ -1049,6 +1157,9 @@ msgstr ""
1049
1157
  msgid "Cannot add default content view to composite content view"
1050
1158
  msgstr ""
1051
1159
 
1160
+ msgid "Cannot add generated content view versions to composite content view"
1161
+ msgstr ""
1162
+
1052
1163
  msgid "Cannot add repositories to a composite content view"
1053
1164
  msgstr ""
1054
1165
 
@@ -1142,7 +1253,7 @@ msgstr ""
1142
1253
  msgid "Cannot set auto publish to a non-composite content view"
1143
1254
  msgstr ""
1144
1255
 
1145
- msgid "Cannot skip metadata check on non-yum repositories."
1256
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1146
1257
  msgstr ""
1147
1258
 
1148
1259
  msgid "Cannot specify components for non-composite views"
@@ -1178,6 +1289,9 @@ msgstr ""
1178
1289
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1179
1290
  msgstr ""
1180
1291
 
1292
+ msgid "Check if the specified organization has Simple Content Access enabled"
1293
+ msgstr ""
1294
+
1181
1295
  msgid "Check if the specified organization is eligible for Simple Content Access"
1182
1296
  msgstr ""
1183
1297
 
@@ -1199,9 +1313,18 @@ msgstr ""
1199
1313
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1200
1314
  msgstr ""
1201
1315
 
1316
+ msgid "Choose content credentials if required for this RHUI source."
1317
+ msgstr ""
1318
+
1202
1319
  msgid "Clear any previous registration and run subscription-manager with --force."
1203
1320
  msgstr ""
1204
1321
 
1322
+ msgid "Clear filters"
1323
+ msgstr ""
1324
+
1325
+ msgid "Clear search"
1326
+ msgstr ""
1327
+
1205
1328
  msgid "Click here to go to the tasks page for the task."
1206
1329
  msgstr ""
1207
1330
 
@@ -1223,6 +1346,9 @@ msgstr ""
1223
1346
  msgid "Combined Profile Update for %s"
1224
1347
  msgstr ""
1225
1348
 
1349
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1350
+ msgstr ""
1351
+
1226
1352
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1227
1353
  msgstr ""
1228
1354
 
@@ -1232,16 +1358,16 @@ msgstr ""
1232
1358
  msgid "Comma-separated list of tags to sync for a container image repository"
1233
1359
  msgstr ""
1234
1360
 
1235
- msgid "Component"
1361
+ msgid "Compare"
1236
1362
  msgstr ""
1237
1363
 
1238
- msgid "Component Content View"
1364
+ msgid "Component"
1239
1365
  msgstr ""
1240
1366
 
1241
- msgid "Component content view"
1367
+ msgid "Component Content View"
1242
1368
  msgstr ""
1243
1369
 
1244
- msgid "Component content views"
1370
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1245
1371
  msgstr ""
1246
1372
 
1247
1373
  msgid "Components"
@@ -1275,7 +1401,7 @@ msgstr ""
1275
1401
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1276
1402
  msgstr ""
1277
1403
 
1278
- msgid "Consisting of multiple component content views"
1404
+ msgid "Consisting of multiple content views"
1279
1405
  msgstr ""
1280
1406
 
1281
1407
  msgid "Consists of content views"
@@ -1400,7 +1526,7 @@ msgstr ""
1400
1526
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1401
1527
  msgstr ""
1402
1528
 
1403
- msgid "Content View and Environment not set for registration."
1529
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1404
1530
  msgstr ""
1405
1531
 
1406
1532
  msgid "Content View id"
@@ -1413,6 +1539,21 @@ msgstr ""
1413
1539
  msgid "Content Views"
1414
1540
  msgstr "Vyhledat obsah"
1415
1541
 
1542
+ msgid "Content cannot be imported into a Composite Content View. "
1543
+ msgstr ""
1544
+
1545
+ msgid "Content credential"
1546
+ msgstr ""
1547
+
1548
+ msgid "Content credentials"
1549
+ msgstr ""
1550
+
1551
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1552
+ msgstr ""
1553
+
1554
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1555
+ msgstr ""
1556
+
1416
1557
  msgid "Content files to upload. Can be a single file or array of files."
1417
1558
  msgstr ""
1418
1559
 
@@ -1431,10 +1572,10 @@ msgstr ""
1431
1572
  msgid "Content override search parameters"
1432
1573
  msgstr ""
1433
1574
 
1434
- msgid "Content source ID"
1575
+ msgid "Content source"
1435
1576
  msgstr ""
1436
1577
 
1437
- msgid "Content source successfully updated."
1578
+ msgid "Content source ID"
1438
1579
  msgstr ""
1439
1580
 
1440
1581
  msgid "Content source was not set for host '%{host}'"
@@ -1455,6 +1596,9 @@ msgstr ""
1455
1596
  msgid "Content view ${name} created"
1456
1597
  msgstr ""
1457
1598
 
1599
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1600
+ msgstr ""
1601
+
1458
1602
  msgid "Content view '%{view}' is not in environment '%{env}'"
1459
1603
  msgstr ""
1460
1604
 
@@ -1464,9 +1608,18 @@ msgstr ""
1464
1608
  msgid "Content view ID"
1465
1609
  msgstr ""
1466
1610
 
1611
+ msgid "Content view and environment not set for registration."
1612
+ msgstr ""
1613
+
1467
1614
  msgid "Content view details"
1468
1615
  msgstr ""
1469
1616
 
1617
+ msgid "Content view environments and activation key must all belong to the same organization"
1618
+ msgstr ""
1619
+
1620
+ msgid "Content view environments must have both a content view and an environment"
1621
+ msgstr ""
1622
+
1470
1623
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1471
1624
  msgstr ""
1472
1625
 
@@ -1478,6 +1631,9 @@ msgstr "Vyhledat obsah"
1478
1631
  msgid "Content view label"
1479
1632
  msgstr "Vyhledat obsah"
1480
1633
 
1634
+ msgid "Content view must be specified"
1635
+ msgstr ""
1636
+
1481
1637
  msgid "Content view name"
1482
1638
  msgstr ""
1483
1639
 
@@ -1499,6 +1655,9 @@ msgstr ""
1499
1655
  msgid "Content views"
1500
1656
  msgstr ""
1501
1657
 
1658
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1659
+ msgstr ""
1660
+
1502
1661
  msgid "Content_Host_Status"
1503
1662
  msgstr ""
1504
1663
 
@@ -1533,6 +1692,9 @@ msgstr ""
1533
1692
  msgid "Copy version units to library"
1534
1693
  msgstr ""
1535
1694
 
1695
+ msgid "Cores per socket"
1696
+ msgstr ""
1697
+
1536
1698
  msgid "Cores: %s"
1537
1699
  msgstr ""
1538
1700
 
@@ -1644,13 +1806,19 @@ msgstr ""
1644
1806
  msgid "Couldn't find product with id '%s'"
1645
1807
  msgstr ""
1646
1808
 
1809
+ msgid "Couldn't find products with id '%s'"
1810
+ msgstr ""
1811
+
1647
1812
  msgid "Couldn't find repository '%s'"
1648
1813
  msgstr ""
1649
1814
 
1650
1815
  msgid "Couldn't find smart proxies with id '%s'"
1651
1816
  msgstr ""
1652
1817
 
1653
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1818
+ msgid "Couldn't find smart proxies with name '%s'"
1819
+ msgstr ""
1820
+
1821
+ msgid "Couldn't find specified content view and lifecycle environment."
1654
1822
  msgstr ""
1655
1823
 
1656
1824
  msgid "Couldn't find subject of synchronization"
@@ -1662,6 +1830,9 @@ msgstr ""
1662
1830
  msgid "Create"
1663
1831
  msgstr ""
1664
1832
 
1833
+ msgid "Create ACS"
1834
+ msgstr ""
1835
+
1665
1836
  msgid "Create Alternate Content Source"
1666
1837
  msgstr ""
1667
1838
 
@@ -1677,6 +1848,9 @@ msgstr ""
1677
1848
  msgid "Create Repositories"
1678
1849
  msgstr ""
1679
1850
 
1851
+ msgid "Create Syncable Export History"
1852
+ msgstr ""
1853
+
1680
1854
  msgid "Create a Content Credential"
1681
1855
  msgstr ""
1682
1856
 
@@ -1684,6 +1858,9 @@ msgstr ""
1684
1858
  msgid "Create a content view"
1685
1859
  msgstr "Vyhledat obsah"
1686
1860
 
1861
+ msgid "Create a custom product"
1862
+ msgstr ""
1863
+
1687
1864
  msgid "Create a custom repository"
1688
1865
  msgstr ""
1689
1866
 
@@ -1703,13 +1880,13 @@ msgstr "Smazat poskytovatele"
1703
1880
  msgid "Create a sync plan"
1704
1881
  msgstr ""
1705
1882
 
1706
- msgid "Create an ACS"
1707
- msgstr ""
1708
-
1709
1883
  #, fuzzy
1710
1884
  msgid "Create an activation key"
1711
1885
  msgstr "Číst aktivační klíče"
1712
1886
 
1887
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1888
+ msgstr ""
1889
+
1713
1890
  #, fuzzy
1714
1891
  msgid "Create an environment"
1715
1892
  msgstr "prostředí"
@@ -1720,23 +1897,38 @@ msgstr ""
1720
1897
  msgid "Create an upload request"
1721
1898
  msgstr ""
1722
1899
 
1900
+ msgid "Create content credentials with the generated SSL certificate and key."
1901
+ msgstr ""
1902
+
1723
1903
  msgid "Create content view"
1724
1904
  msgstr ""
1725
1905
 
1726
1906
  msgid "Create filter"
1727
1907
  msgstr ""
1728
1908
 
1909
+ msgid "Create host collection"
1910
+ msgstr ""
1911
+
1729
1912
  #, fuzzy
1730
1913
  msgid "Create organization"
1731
1914
  msgstr "Vybrat organizaci"
1732
1915
 
1916
+ msgid "Create package filter rule"
1917
+ msgstr ""
1918
+
1919
+ msgid "Create rule"
1920
+ msgstr ""
1921
+
1922
+ msgid "Credentials"
1923
+ msgstr ""
1924
+
1733
1925
  msgid "Critical"
1734
1926
  msgstr ""
1735
1927
 
1736
1928
  msgid "Cron expression is not valid!"
1737
1929
  msgstr ""
1738
1930
 
1739
- msgid "Current organization has no manifest imported."
1931
+ msgid "Current organization does not have a manifest imported."
1740
1932
  msgstr ""
1741
1933
 
1742
1934
  msgid "Current organization is not set."
@@ -1745,6 +1937,12 @@ msgstr ""
1745
1937
  msgid "Current organization not set."
1746
1938
  msgstr ""
1747
1939
 
1940
+ msgid "Custom"
1941
+ msgstr ""
1942
+
1943
+ msgid "Custom CDN"
1944
+ msgstr ""
1945
+
1748
1946
  #, fuzzy
1749
1947
  msgid "Custom Content Repositories"
1750
1948
  msgstr "Repozitáře"
@@ -1759,6 +1957,12 @@ msgstr "Neznámý štítek repozitáře: %s"
1759
1957
  msgid "Customize with Rex"
1760
1958
  msgstr ""
1761
1959
 
1960
+ msgid "DEB name"
1961
+ msgstr ""
1962
+
1963
+ msgid "DEB package updates"
1964
+ msgstr ""
1965
+
1762
1966
  msgid "Database connection"
1763
1967
  msgstr ""
1764
1968
 
@@ -1774,12 +1978,18 @@ msgstr ""
1774
1978
  msgid "Days from Now"
1775
1979
  msgstr ""
1776
1980
 
1981
+ msgid "Deb"
1982
+ msgstr ""
1983
+
1777
1984
  msgid "Deb Package"
1778
1985
  msgstr ""
1779
1986
 
1780
1987
  msgid "Deb Packages"
1781
1988
  msgstr ""
1782
1989
 
1990
+ msgid "Deb name"
1991
+ msgstr ""
1992
+
1783
1993
  msgid "Deb package identifiers to filter content by"
1784
1994
  msgstr ""
1785
1995
 
@@ -1888,6 +2098,12 @@ msgstr ""
1888
2098
  msgid "Default user data for new Operating Systems created from synced content"
1889
2099
  msgstr ""
1890
2100
 
2101
+ msgid "Define RHUI repository paths with guided steps."
2102
+ msgstr ""
2103
+
2104
+ msgid "Define repositories structured under a common web or filesystem path."
2105
+ msgstr ""
2106
+
1891
2107
  #, fuzzy
1892
2108
  msgid "Delete"
1893
2109
  msgstr "Smazat role"
@@ -2037,7 +2253,7 @@ msgstr ""
2037
2253
  msgid "Destroy an activation key"
2038
2254
  msgstr ""
2039
2255
 
2040
- msgid "Destroy an alternate content source"
2256
+ msgid "Destroy an alternate content source."
2041
2257
  msgstr ""
2042
2258
 
2043
2259
  #, fuzzy
@@ -2047,6 +2263,9 @@ msgstr "prostředí"
2047
2263
  msgid "Destroy an environment in an organization"
2048
2264
  msgstr ""
2049
2265
 
2266
+ msgid "Destroy one or more alternate content sources"
2267
+ msgstr ""
2268
+
2050
2269
  msgid "Destroy one or more hosts"
2051
2270
  msgstr ""
2052
2271
 
@@ -2099,6 +2318,9 @@ msgstr ""
2099
2318
  msgid "Discover Repositories"
2100
2319
  msgstr "Repozitáře"
2101
2320
 
2321
+ msgid "Distribute archived content view versions"
2322
+ msgstr ""
2323
+
2102
2324
  msgid "Do not include this array of content views"
2103
2325
  msgstr ""
2104
2326
 
@@ -2136,15 +2358,36 @@ msgstr ""
2136
2358
  msgid "Edit RPM rule"
2137
2359
  msgstr ""
2138
2360
 
2361
+ msgid "Edit URL and subpaths"
2362
+ msgstr ""
2363
+
2139
2364
  msgid "Edit content view assignment"
2140
2365
  msgstr ""
2141
2366
 
2367
+ msgid "Edit credentials"
2368
+ msgstr ""
2369
+
2370
+ msgid "Edit details"
2371
+ msgstr ""
2372
+
2142
2373
  msgid "Edit filter rule"
2143
2374
  msgstr ""
2144
2375
 
2376
+ msgid "Edit package filter rule"
2377
+ msgstr ""
2378
+
2379
+ msgid "Edit products"
2380
+ msgstr ""
2381
+
2145
2382
  msgid "Edit rule"
2146
2383
  msgstr ""
2147
2384
 
2385
+ msgid "Edit smart proxies"
2386
+ msgstr ""
2387
+
2388
+ msgid "Edit system purpose attributes"
2389
+ msgstr ""
2390
+
2148
2391
  msgid "Editing Entitlements"
2149
2392
  msgstr ""
2150
2393
 
@@ -2166,9 +2409,15 @@ msgstr ""
2166
2409
  msgid "Either set the latest content view or the content view version. Cannot set both"
2167
2410
  msgstr ""
2168
2411
 
2412
+ msgid "Empty content view versions"
2413
+ msgstr ""
2414
+
2169
2415
  msgid "Enable"
2170
2416
  msgstr ""
2171
2417
 
2418
+ msgid "Enable Red Hat repositories"
2419
+ msgstr ""
2420
+
2172
2421
  msgid "Enable Simple Content Access"
2173
2422
  msgstr ""
2174
2423
 
@@ -2181,6 +2430,9 @@ msgstr ""
2181
2430
  msgid "Enable a repository from the set"
2182
2431
  msgstr ""
2183
2432
 
2433
+ msgid "Enable repository sets"
2434
+ msgstr ""
2435
+
2184
2436
  msgid "Enable simple content access for a manifest"
2185
2437
  msgstr ""
2186
2438
 
@@ -2214,9 +2466,18 @@ msgstr ""
2214
2466
  msgid "Enter a name"
2215
2467
  msgstr ""
2216
2468
 
2469
+ msgid "Enter a name for your source."
2470
+ msgstr ""
2471
+
2217
2472
  msgid "Enter a valid date: MM/DD/YYYY"
2218
2473
  msgstr ""
2219
2474
 
2475
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2476
+ msgstr ""
2477
+
2478
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2479
+ msgstr ""
2480
+
2220
2481
  msgid "Entitlements"
2221
2482
  msgstr ""
2222
2483
 
@@ -2314,10 +2575,10 @@ msgstr ""
2314
2575
  msgid "Exclude"
2315
2576
  msgstr ""
2316
2577
 
2317
- msgid "Exclude all Module Streams with no errata."
2578
+ msgid "Exclude all RPMs not associated to any errata"
2318
2579
  msgstr ""
2319
2580
 
2320
- msgid "Exclude all RPMs with no errata."
2581
+ msgid "Exclude all module streams not associated to any errata"
2321
2582
  msgstr ""
2322
2583
 
2323
2584
  msgid "Exclude filter"
@@ -2362,6 +2623,11 @@ msgstr ""
2362
2623
  msgid "Export as CSV"
2363
2624
  msgstr ""
2364
2625
 
2626
+ msgid ""
2627
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2628
+ " Defaults to importable."
2629
+ msgstr ""
2630
+
2365
2631
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2366
2632
  msgstr ""
2367
2633
 
@@ -2413,6 +2679,9 @@ msgstr ""
2413
2679
  msgid "Fetch traces for one or more hosts"
2414
2680
  msgstr ""
2415
2681
 
2682
+ msgid "Fetching content credentials"
2683
+ msgstr ""
2684
+
2416
2685
  msgid "Field to sort the results on"
2417
2686
  msgstr ""
2418
2687
 
@@ -2470,6 +2739,9 @@ msgstr ""
2470
2739
  msgid "Filter products by sync plan id"
2471
2740
  msgstr ""
2472
2741
 
2742
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2743
+ msgstr ""
2744
+
2473
2745
  msgid "Filter rule added"
2474
2746
  msgstr ""
2475
2747
 
@@ -2503,6 +2775,12 @@ msgstr ""
2503
2775
  msgid "Filters deleted"
2504
2776
  msgstr ""
2505
2777
 
2778
+ msgid "Filters will appear here when the filter is created."
2779
+ msgstr ""
2780
+
2781
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2782
+ msgstr ""
2783
+
2506
2784
  msgid "Finish"
2507
2785
  msgstr ""
2508
2786
 
@@ -2544,7 +2822,7 @@ msgstr ""
2544
2822
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2545
2823
  msgstr ""
2546
2824
 
2547
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2825
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2548
2826
  msgstr ""
2549
2827
 
2550
2828
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2562,6 +2840,9 @@ msgstr ""
2562
2840
  msgid "GPG Key URL"
2563
2841
  msgstr ""
2564
2842
 
2843
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2844
+ msgstr ""
2845
+
2565
2846
  msgid "Generate and Download"
2566
2847
  msgstr ""
2567
2848
 
@@ -2574,7 +2855,7 @@ msgstr ""
2574
2855
  msgid "Generated"
2575
2856
  msgstr ""
2576
2857
 
2577
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2858
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2578
2859
  msgstr ""
2579
2860
 
2580
2861
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2607,6 +2888,9 @@ msgstr ""
2607
2888
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2608
2889
  msgstr ""
2609
2890
 
2891
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2892
+ msgstr ""
2893
+
2610
2894
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2611
2895
  msgstr ""
2612
2896
 
@@ -2637,6 +2921,9 @@ msgstr ""
2637
2921
  msgid "HTTP Proxy identifier to associated"
2638
2922
  msgstr ""
2639
2923
 
2924
+ msgid "HW properties"
2925
+ msgstr ""
2926
+
2640
2927
  msgid "Has to be > 0"
2641
2928
  msgstr ""
2642
2929
 
@@ -2717,6 +3004,9 @@ msgstr ""
2717
3004
  msgid "Host collections updated"
2718
3005
  msgstr ""
2719
3006
 
3007
+ msgid "Host configurations are not updated yet"
3008
+ msgstr ""
3009
+
2720
3010
  msgid "Host content and subscription details"
2721
3011
  msgstr ""
2722
3012
 
@@ -2768,6 +3058,9 @@ msgstr ""
2768
3058
  msgid "Hosts"
2769
3059
  msgstr ""
2770
3060
 
3061
+ msgid "Hosts to update"
3062
+ msgstr ""
3063
+
2771
3064
  msgid "Hosts with Installable Errata"
2772
3065
  msgstr ""
2773
3066
 
@@ -2848,7 +3141,7 @@ msgstr ""
2848
3141
  msgid "ID: %s doesn't exist "
2849
3142
  msgstr ""
2850
3143
 
2851
- msgid "Id"
3144
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
2852
3145
  msgstr ""
2853
3146
 
2854
3147
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2866,6 +3159,9 @@ msgstr ""
2866
3159
  msgid "Id of an erratum to find repositories that contain the erratum"
2867
3160
  msgstr ""
2868
3161
 
3162
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3163
+ msgstr ""
3164
+
2869
3165
  msgid "Id of the content host"
2870
3166
  msgstr ""
2871
3167
 
@@ -2938,6 +3234,9 @@ msgstr ""
2938
3234
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2939
3235
  msgstr ""
2940
3236
 
3237
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3238
+ msgstr ""
3239
+
2941
3240
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2942
3241
  msgstr ""
2943
3242
 
@@ -2950,6 +3249,9 @@ msgstr ""
2950
3249
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2951
3250
  msgstr ""
2952
3251
 
3252
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3253
+ msgstr ""
3254
+
2953
3255
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2954
3256
  msgstr ""
2955
3257
 
@@ -2971,6 +3273,9 @@ msgstr ""
2971
3273
  msgid "Ignorable content can be only set for Yum repositories."
2972
3274
  msgstr ""
2973
3275
 
3276
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3277
+ msgstr ""
3278
+
2974
3279
  msgid "Ignore errors"
2975
3280
  msgstr ""
2976
3281
 
@@ -2983,6 +3288,9 @@ msgstr ""
2983
3288
  msgid "Ignore subscriptions that are unavailable to the specified host"
2984
3289
  msgstr ""
2985
3290
 
3291
+ msgid "Ignored hosts"
3292
+ msgstr ""
3293
+
2986
3294
  msgid "Immediate"
2987
3295
  msgstr ""
2988
3296
 
@@ -3069,10 +3377,10 @@ msgstr ""
3069
3377
  msgid "Include"
3070
3378
  msgstr ""
3071
3379
 
3072
- msgid "Include all Module Streams with no errata."
3380
+ msgid "Include all RPMs not associated to any errata"
3073
3381
  msgstr ""
3074
3382
 
3075
- msgid "Include all RPMs with no errata."
3383
+ msgid "Include all module streams not associated to any errata"
3076
3384
  msgstr ""
3077
3385
 
3078
3386
  msgid "Include content views generated by imports/exports. Defaults to false"
@@ -3202,12 +3510,15 @@ msgstr ""
3202
3510
  msgid "Installable"
3203
3511
  msgstr ""
3204
3512
 
3205
- msgid "Installable errata"
3513
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3206
3514
  msgstr ""
3207
3515
 
3208
3516
  msgid "Installable errata from content view"
3209
3517
  msgstr ""
3210
3518
 
3519
+ msgid "Installable updates"
3520
+ msgstr ""
3521
+
3211
3522
  msgid "Installation of errata requested: %{errata}"
3212
3523
  msgstr ""
3213
3524
 
@@ -3220,6 +3531,9 @@ msgstr ""
3220
3531
  msgid "Installation status"
3221
3532
  msgstr ""
3222
3533
 
3534
+ msgid "Installed"
3535
+ msgstr ""
3536
+
3223
3537
  #, fuzzy
3224
3538
  msgid "Installed Packages"
3225
3539
  msgstr "všechny balíčky"
@@ -3268,9 +3582,6 @@ msgstr ""
3268
3582
  msgid "Invalid"
3269
3583
  msgstr ""
3270
3584
 
3271
- msgid "Invalid SSL CA certificate given for CDN"
3272
- msgstr ""
3273
-
3274
3585
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3275
3586
  msgstr ""
3276
3587
 
@@ -3300,6 +3611,9 @@ msgstr ""
3300
3611
  msgid "Invalid event_type %s"
3301
3612
  msgstr ""
3302
3613
 
3614
+ msgid "Invalid export format provided. Format must be one of %s "
3615
+ msgstr ""
3616
+
3303
3617
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3304
3618
  msgstr ""
3305
3619
 
@@ -3318,6 +3632,15 @@ msgstr ""
3318
3632
  msgid "Invalid params provided - date_type must be one of %s"
3319
3633
  msgstr ""
3320
3634
 
3635
+ msgid "Invalid params provided - with_content must be one of %s"
3636
+ msgstr ""
3637
+
3638
+ msgid "Invalid path provided. Content can be only imported from file system. "
3639
+ msgstr ""
3640
+
3641
+ msgid "Invalid release version: [%s]"
3642
+ msgstr ""
3643
+
3321
3644
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3322
3645
  msgstr ""
3323
3646
 
@@ -3336,7 +3659,13 @@ msgstr ""
3336
3659
  msgid "Issued from"
3337
3660
  msgstr ""
3338
3661
 
3339
- msgid "Job ${description} has started."
3662
+ msgid "Items will appear here when a filter rule is added."
3663
+ msgstr ""
3664
+
3665
+ msgid "Job '${description}' completed"
3666
+ msgstr ""
3667
+
3668
+ msgid "Job '${description}' has started."
3340
3669
  msgstr ""
3341
3670
 
3342
3671
  msgid "Katello ID of local pool to update"
@@ -3408,9 +3737,21 @@ msgstr ""
3408
3737
  msgid "Label of the content view"
3409
3738
  msgstr ""
3410
3739
 
3740
+ msgid "Last check-in:"
3741
+ msgstr ""
3742
+
3743
+ msgid "Last checkin"
3744
+ msgstr ""
3745
+
3411
3746
  msgid "Last published"
3412
3747
  msgstr ""
3413
3748
 
3749
+ msgid "Last refresh"
3750
+ msgstr ""
3751
+
3752
+ msgid "Last refresh :"
3753
+ msgstr ""
3754
+
3414
3755
  msgid "Last task"
3415
3756
  msgstr ""
3416
3757
 
@@ -3426,6 +3767,9 @@ msgstr ""
3426
3767
  msgid "Learn more about adding Subscription Manifests"
3427
3768
  msgstr ""
3428
3769
 
3770
+ msgid "Legacy content host UI"
3771
+ msgstr ""
3772
+
3429
3773
  msgid "Less than"
3430
3774
  msgstr ""
3431
3775
 
@@ -3473,6 +3817,9 @@ msgstr ""
3473
3817
  msgid "Lifecycle environment for the host."
3474
3818
  msgstr ""
3475
3819
 
3820
+ msgid "Lifecycle environment must be specified"
3821
+ msgstr ""
3822
+
3476
3823
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3477
3824
  msgstr ""
3478
3825
 
@@ -3494,6 +3841,9 @@ msgstr ""
3494
3841
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3495
3842
  msgstr ""
3496
3843
 
3844
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3845
+ msgstr ""
3846
+
3497
3847
  msgid "Limit to environment"
3498
3848
  msgstr ""
3499
3849
 
@@ -3526,6 +3876,9 @@ msgstr ""
3526
3876
  msgid "List all organizations"
3527
3877
  msgstr "Organizace"
3528
3878
 
3879
+ msgid "List alternate content sources."
3880
+ msgstr ""
3881
+
3529
3882
  msgid "List an activation key's subscriptions"
3530
3883
  msgstr ""
3531
3884
 
@@ -3599,7 +3952,7 @@ msgstr ""
3599
3952
  msgid "List of Products for sync plan"
3600
3953
  msgstr ""
3601
3954
 
3602
- msgid "List of alternate_content_sources"
3955
+ msgid "List of alternate content source IDs"
3603
3956
  msgstr ""
3604
3957
 
3605
3958
  msgid "List of component content view version ids for composite views"
@@ -3695,6 +4048,9 @@ msgstr ""
3695
4048
  msgid "List of repository ids"
3696
4049
  msgstr "Smazán poskytovatel [%s]"
3697
4050
 
4051
+ msgid "List of resources types that will be automatically associated"
4052
+ msgstr ""
4053
+
3698
4054
  msgid "List of subscription products in a subscription"
3699
4055
  msgstr ""
3700
4056
 
@@ -3802,6 +4158,12 @@ msgstr ""
3802
4158
  msgid "Manifest refreshed"
3803
4159
  msgstr ""
3804
4160
 
4161
+ msgid "Manual"
4162
+ msgstr ""
4163
+
4164
+ msgid "Manual authentication"
4165
+ msgstr ""
4166
+
3805
4167
  msgid "Mark Content Host Statuses as Unknown for %s"
3806
4168
  msgstr ""
3807
4169
 
@@ -3865,6 +4227,9 @@ msgstr ""
3865
4227
  msgid "Missing arguments %{substitutions} for %{content_url}"
3866
4228
  msgstr ""
3867
4229
 
4230
+ msgid "Model"
4231
+ msgstr ""
4232
+
3868
4233
  msgid "Moderate"
3869
4234
  msgstr ""
3870
4235
 
@@ -3886,7 +4251,7 @@ msgstr ""
3886
4251
  msgid "Module streams"
3887
4252
  msgstr ""
3888
4253
 
3889
- msgid "Module streams will appear here when available."
4254
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3890
4255
  msgstr ""
3891
4256
 
3892
4257
  msgid "Multi-entitlement"
@@ -3904,11 +4269,19 @@ msgstr ""
3904
4269
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3905
4270
  msgstr ""
3906
4271
 
4272
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4273
+ msgstr ""
4274
+
3907
4275
  msgid ""
3908
4276
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
3909
4277
  " %{repos}"
3910
4278
  msgstr ""
3911
4279
 
4280
+ msgid ""
4281
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4282
+ " %{repos}"
4283
+ msgstr ""
4284
+
3912
4285
  msgid ""
3913
4286
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3914
4287
  " %{repos}"
@@ -3920,6 +4293,9 @@ msgstr ""
3920
4293
  msgid "Name"
3921
4294
  msgstr ""
3922
4295
 
4296
+ msgid "Name and label of default content view should not be changed"
4297
+ msgstr ""
4298
+
3923
4299
  msgid "Name is a required parameter."
3924
4300
  msgstr ""
3925
4301
 
@@ -3944,6 +4320,12 @@ msgstr ""
3944
4320
  msgid "Name of the upstream docker repository"
3945
4321
  msgstr ""
3946
4322
 
4323
+ msgid "Name source"
4324
+ msgstr ""
4325
+
4326
+ msgid "Names of smart proxies to associate"
4327
+ msgstr ""
4328
+
3947
4329
  msgid "Needs to only be set for docker tags"
3948
4330
  msgstr ""
3949
4331
 
@@ -3957,6 +4339,9 @@ msgstr "Host"
3957
4339
  msgid "Network Sync"
3958
4340
  msgstr ""
3959
4341
 
4342
+ msgid "Never"
4343
+ msgstr ""
4344
+
3960
4345
  msgid "Never Synced"
3961
4346
  msgstr ""
3962
4347
 
@@ -4059,6 +4444,9 @@ msgstr "Musí existovat alespoň jedna organizace."
4059
4444
  msgid "No content ids provided"
4060
4445
  msgstr ""
4061
4446
 
4447
+ msgid "No content in selected versions."
4448
+ msgstr ""
4449
+
4062
4450
  #, fuzzy
4063
4451
  msgid "No content view history events found."
4064
4452
  msgstr "Vyhledat obsah"
@@ -4113,13 +4501,19 @@ msgstr ""
4113
4501
  msgid "No host collections found."
4114
4502
  msgstr "Vyhledat obsah"
4115
4503
 
4504
+ msgid "No host collections yet"
4505
+ msgstr ""
4506
+
4507
+ msgid "No hosts found"
4508
+ msgstr ""
4509
+
4116
4510
  msgid "No hosts have been specified."
4117
4511
  msgstr ""
4118
4512
 
4119
4513
  msgid "No hosts registered with subscription-manager found in selection."
4120
4514
  msgstr ""
4121
4515
 
4122
- msgid "No hosts with content source found!"
4516
+ msgid "No hosts were specified"
4123
4517
  msgstr ""
4124
4518
 
4125
4519
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4137,9 +4531,15 @@ msgstr ""
4137
4531
  msgid "No matching "
4138
4532
  msgstr ""
4139
4533
 
4534
+ msgid "No matching ${name} found."
4535
+ msgstr ""
4536
+
4140
4537
  msgid "No matching ${selectedContentType} found"
4141
4538
  msgstr ""
4142
4539
 
4540
+ msgid "No matching DEB found."
4541
+ msgstr ""
4542
+
4143
4543
  msgid "No matching RPM found."
4144
4544
  msgstr ""
4145
4545
 
@@ -4227,6 +4627,9 @@ msgstr ""
4227
4627
  msgid "No products are enabled."
4228
4628
  msgstr ""
4229
4629
 
4630
+ msgid "No profiles to show"
4631
+ msgstr ""
4632
+
4230
4633
  msgid "No pulp workers running."
4231
4634
  msgstr ""
4232
4635
 
@@ -4303,6 +4706,9 @@ msgstr ""
4303
4706
  msgid "Not all necessary pulp workers running at %s."
4304
4707
  msgstr ""
4305
4708
 
4709
+ msgid "Not installed"
4710
+ msgstr ""
4711
+
4306
4712
  msgid "Not running"
4307
4713
  msgstr ""
4308
4714
 
@@ -4321,6 +4727,9 @@ msgstr ""
4321
4727
  msgid "Nothing selected"
4322
4728
  msgstr ""
4323
4729
 
4730
+ msgid "Number of CPU(s)"
4731
+ msgstr ""
4732
+
4324
4733
  msgid "Number of host applicability calculations to process per task."
4325
4734
  msgstr ""
4326
4735
 
@@ -4333,6 +4742,9 @@ msgstr ""
4333
4742
  msgid "Number to Allocate"
4334
4743
  msgstr ""
4335
4744
 
4745
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4746
+ msgstr ""
4747
+
4336
4748
  msgid "OSTree Branch"
4337
4749
  msgstr ""
4338
4750
 
@@ -4354,6 +4766,9 @@ msgstr ""
4354
4766
  msgid "On Demand"
4355
4767
  msgstr ""
4356
4768
 
4769
+ msgid "On the RHUA Instance, check the available repositories."
4770
+ msgstr ""
4771
+
4357
4772
  msgid "On-disk location for exported repositories"
4358
4773
  msgstr ""
4359
4774
 
@@ -4436,6 +4851,9 @@ msgstr "Organizace"
4436
4851
  msgid "Orphaned Content Protection Time"
4437
4852
  msgstr ""
4438
4853
 
4854
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4855
+ msgstr ""
4856
+
4439
4857
  msgid "Other"
4440
4858
  msgstr ""
4441
4859
 
@@ -4693,12 +5111,6 @@ msgstr ""
4693
5111
  msgid "Path"
4694
5112
  msgstr ""
4695
5113
 
4696
- msgid "Path for ssl cert used for pulp server auth"
4697
- msgstr ""
4698
-
4699
- msgid "Path for ssl key used for pulp server auth"
4700
- msgstr ""
4701
-
4702
5114
  msgid "Path suffixes for finding alternate content"
4703
5115
  msgstr ""
4704
5116
 
@@ -4783,6 +5195,9 @@ msgstr ""
4783
5195
  msgid "Please wait while the task starts.."
4784
5196
  msgstr ""
4785
5197
 
5198
+ msgid "Please wait..."
5199
+ msgstr ""
5200
+
4786
5201
  msgid "Policy to set for mirroring content. Must be one of %s."
4787
5202
  msgstr ""
4788
5203
 
@@ -4876,9 +5291,18 @@ msgstr ""
4876
5291
  msgid "Product: '%{product}', Repository: '%{repository}'"
4877
5292
  msgstr ""
4878
5293
 
5294
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5295
+ msgstr ""
5296
+
4879
5297
  msgid "Products"
4880
5298
  msgstr "Produkty"
4881
5299
 
5300
+ msgid "Products updated."
5301
+ msgstr ""
5302
+
5303
+ msgid "Profiles"
5304
+ msgstr ""
5305
+
4882
5306
  msgid "Promote"
4883
5307
  msgstr ""
4884
5308
 
@@ -4964,18 +5388,9 @@ msgstr ""
4964
5388
  msgid "Pulp 3 is not enabled on Smart proxy!"
4965
5389
  msgstr ""
4966
5390
 
4967
- msgid "Pulp Docker registry port"
4968
- msgstr ""
4969
-
4970
5391
  msgid "Pulp bulk load size"
4971
5392
  msgstr ""
4972
5393
 
4973
- msgid "Pulp client cert"
4974
- msgstr ""
4975
-
4976
- msgid "Pulp client key"
4977
- msgstr ""
4978
-
4979
5394
  msgid "Pulp database connection issue at %s."
4980
5395
  msgstr ""
4981
5396
 
@@ -5054,12 +5469,18 @@ msgstr ""
5054
5469
  msgid "Quantity to Allocate"
5055
5470
  msgstr ""
5056
5471
 
5472
+ msgid "RAM"
5473
+ msgstr ""
5474
+
5057
5475
  msgid "RAM: %s GB"
5058
5476
  msgstr ""
5059
5477
 
5060
5478
  msgid "RH Repos"
5061
5479
  msgstr ""
5062
5480
 
5481
+ msgid "RHUI"
5482
+ msgstr ""
5483
+
5063
5484
  msgid "RPM"
5064
5485
  msgstr ""
5065
5486
 
@@ -5072,6 +5493,12 @@ msgstr ""
5072
5493
  msgid "RPM name"
5073
5494
  msgstr ""
5074
5495
 
5496
+ msgid "RPM package groups"
5497
+ msgstr ""
5498
+
5499
+ msgid "RPM package updates"
5500
+ msgstr ""
5501
+
5075
5502
  msgid "RPM packages"
5076
5503
  msgstr ""
5077
5504
 
@@ -5140,6 +5567,9 @@ msgstr ""
5140
5567
  msgid "Red Hat content will be consumed from the {type}."
5141
5568
  msgstr ""
5142
5569
 
5570
+ msgid "Red Hat content will be consumed from {type}."
5571
+ msgstr ""
5572
+
5143
5573
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5144
5574
  msgstr ""
5145
5575
 
@@ -5155,6 +5585,9 @@ msgstr ""
5155
5585
  msgid "Refresh"
5156
5586
  msgstr ""
5157
5587
 
5588
+ msgid "Refresh Alternate Content Source"
5589
+ msgstr ""
5590
+
5158
5591
  msgid "Refresh Content Host Statuses for %s"
5159
5592
  msgstr ""
5160
5593
 
@@ -5162,9 +5595,18 @@ msgstr ""
5162
5595
  msgid "Refresh Manifest"
5163
5596
  msgstr "Smazat role"
5164
5597
 
5598
+ msgid "Refresh alternate content sources"
5599
+ msgstr ""
5600
+
5601
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5602
+ msgstr ""
5603
+
5165
5604
  msgid "Refresh previously imported manifest for Red Hat provider"
5166
5605
  msgstr ""
5167
5606
 
5607
+ msgid "Refresh source"
5608
+ msgstr ""
5609
+
5168
5610
  msgid "Refresh_Content_Host_Status"
5169
5611
  msgstr ""
5170
5612
 
@@ -5174,13 +5616,16 @@ msgstr ""
5174
5616
  msgid "Register host '%s' before attaching subscriptions"
5175
5617
  msgstr ""
5176
5618
 
5619
+ msgid "Registered"
5620
+ msgstr ""
5621
+
5177
5622
  msgid "Registered by"
5178
5623
  msgstr ""
5179
5624
 
5180
5625
  msgid "Registered on"
5181
5626
  msgstr ""
5182
5627
 
5183
- msgid "Registered through"
5628
+ msgid "Registering to multiple environments is not enabled."
5184
5629
  msgstr ""
5185
5630
 
5186
5631
  msgid "Registration details"
@@ -5198,24 +5643,27 @@ msgstr ""
5198
5643
  msgid "Reindex subscriptions"
5199
5644
  msgstr ""
5200
5645
 
5201
- msgid "Related component content views"
5646
+ msgid "Related composite content views"
5202
5647
  msgstr ""
5203
5648
 
5204
- msgid "Related component cvs: "
5649
+ msgid "Related composite content views: "
5205
5650
  msgstr ""
5206
5651
 
5207
- msgid "Related composite content views"
5652
+ msgid "Related content views"
5208
5653
  msgstr ""
5209
5654
 
5210
- msgid "Related composite cvs: "
5655
+ msgid "Related content views will appear here when created."
5211
5656
  msgstr ""
5212
5657
 
5213
- msgid "Related content views will appear here when created."
5658
+ msgid "Related content views: "
5214
5659
  msgstr ""
5215
5660
 
5216
5661
  msgid "Release"
5217
5662
  msgstr ""
5218
5663
 
5664
+ msgid "Release version"
5665
+ msgstr ""
5666
+
5219
5667
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5220
5668
  msgstr ""
5221
5669
 
@@ -5234,6 +5682,9 @@ msgstr ""
5234
5682
  msgid "Remote action:"
5235
5683
  msgstr ""
5236
5684
 
5685
+ msgid "Remote execution job '${description}' failed."
5686
+ msgstr ""
5687
+
5237
5688
  msgid "Removal of package group(s) requested: %{groups}"
5238
5689
  msgstr ""
5239
5690
 
@@ -5298,7 +5749,7 @@ msgstr ""
5298
5749
  msgid "Remove one or more host collections from one or more hosts"
5299
5750
  msgstr ""
5300
5751
 
5301
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5752
+ msgid "Remove one or more subscriptions from an upstream manifest"
5302
5753
  msgstr ""
5303
5754
 
5304
5755
  #, fuzzy
@@ -5353,6 +5804,9 @@ msgstr "Skupiny balíčků"
5353
5804
  msgid "Removing Package..."
5354
5805
  msgstr "Smazat balíček filtrů"
5355
5806
 
5807
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5808
+ msgstr ""
5809
+
5356
5810
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5357
5811
  msgstr ""
5358
5812
 
@@ -5441,7 +5895,7 @@ msgstr ""
5441
5895
  msgid "Repository sets reset to default"
5442
5896
  msgstr ""
5443
5897
 
5444
- msgid "Repository sets will appear here when available."
5898
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5445
5899
  msgstr ""
5446
5900
 
5447
5901
  msgid "Republish Repositories of %{name} %{version}"
@@ -5576,6 +6030,9 @@ msgstr ""
5576
6030
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5577
6031
  msgstr ""
5578
6032
 
6033
+ msgid "Return same, different or all results"
6034
+ msgstr ""
6035
+
5579
6036
  msgid "Return subscriptions that match installed products of the specified host"
5580
6037
  msgstr ""
5581
6038
 
@@ -5603,6 +6060,9 @@ msgstr ""
5603
6060
  msgid "Review details"
5604
6061
  msgstr ""
5605
6062
 
6063
+ msgid "Review the information below and click "
6064
+ msgstr ""
6065
+
5606
6066
  msgid "Review your currently selected changes for "
5607
6067
  msgstr ""
5608
6068
 
@@ -5621,21 +6081,30 @@ msgstr ""
5621
6081
  msgid "Run Sync Plan:"
5622
6082
  msgstr ""
5623
6083
 
5624
- msgid "Run job invocation"
5625
- msgstr ""
5626
-
5627
6084
  msgid "Running"
5628
6085
  msgstr ""
5629
6086
 
5630
6087
  msgid "SKU"
5631
6088
  msgstr ""
5632
6089
 
6090
+ msgid "SLA"
6091
+ msgstr ""
6092
+
5633
6093
  msgid "SRPM details"
5634
6094
  msgstr ""
5635
6095
 
5636
6096
  msgid "SSL CA Content Credential"
5637
6097
  msgstr ""
5638
6098
 
6099
+ msgid "SSL CA certificate"
6100
+ msgstr ""
6101
+
6102
+ msgid "SSL client certificate"
6103
+ msgstr ""
6104
+
6105
+ msgid "SSL client key"
6106
+ msgstr ""
6107
+
5639
6108
  msgid "SSL version used to communicate with the CDN"
5640
6109
  msgstr ""
5641
6110
 
@@ -5645,6 +6114,9 @@ msgstr ""
5645
6114
  msgid "Save"
5646
6115
  msgstr ""
5647
6116
 
6117
+ msgid "Saving alternate content source..."
6118
+ msgstr ""
6119
+
5648
6120
  msgid "Schedule errata for installation using katello-agent. %s"
5649
6121
  msgstr ""
5650
6122
 
@@ -5718,6 +6190,15 @@ msgstr ""
5718
6190
  msgid "Select Value"
5719
6191
  msgstr ""
5720
6192
 
6193
+ msgid "Select a CA certificate"
6194
+ msgstr ""
6195
+
6196
+ msgid "Select a client certificate"
6197
+ msgstr ""
6198
+
6199
+ msgid "Select a client key"
6200
+ msgstr ""
6201
+
5721
6202
  msgid "Select a content view"
5722
6203
  msgstr ""
5723
6204
 
@@ -5733,6 +6214,9 @@ msgstr ""
5733
6214
  msgid "Select a provider to install katello-host-tools-tracer"
5734
6215
  msgstr ""
5735
6216
 
6217
+ msgid "Select add-ons"
6218
+ msgstr ""
6219
+
5736
6220
  msgid "Select all"
5737
6221
  msgstr ""
5738
6222
 
@@ -5749,13 +6233,16 @@ msgstr ""
5749
6233
  msgid "Select an environment above"
5750
6234
  msgstr ""
5751
6235
 
6236
+ msgid "Select an option"
6237
+ msgstr ""
6238
+
5752
6239
  msgid "Select an organization"
5753
6240
  msgstr ""
5754
6241
 
5755
6242
  msgid "Select available version of ${cvName} to use"
5756
6243
  msgstr ""
5757
6244
 
5758
- msgid "Select available version of components to use"
6245
+ msgid "Select available version of content views to use"
5759
6246
  msgstr ""
5760
6247
 
5761
6248
  msgid "Select content view"
@@ -5788,9 +6275,27 @@ msgstr ""
5788
6275
  msgid "Select page"
5789
6276
  msgstr ""
5790
6277
 
6278
+ msgid "Select products"
6279
+ msgstr ""
6280
+
6281
+ msgid "Select products to associate to this source."
6282
+ msgstr ""
6283
+
5791
6284
  msgid "Select row"
5792
6285
  msgstr ""
5793
6286
 
6287
+ msgid "Select smart proxies to be used with this source."
6288
+ msgstr ""
6289
+
6290
+ msgid "Select smart proxy"
6291
+ msgstr ""
6292
+
6293
+ msgid "Select source type"
6294
+ msgstr ""
6295
+
6296
+ msgid "Select system purpose attributes for host {hostName}."
6297
+ msgstr ""
6298
+
5794
6299
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5795
6300
  msgstr ""
5796
6301
 
@@ -5900,7 +6405,7 @@ msgstr ""
5900
6405
  msgid "Show an activation key"
5901
6406
  msgstr "Číst aktivační klíče"
5902
6407
 
5903
- msgid "Show an alternate content source"
6408
+ msgid "Show an alternate content source."
5904
6409
  msgstr ""
5905
6410
 
5906
6411
  #, fuzzy
@@ -5929,6 +6434,9 @@ msgstr ""
5929
6434
  msgid "Show releases available for the content host"
5930
6435
  msgstr ""
5931
6436
 
6437
+ msgid "Show repositories enabled on the host that are known to Katello"
6438
+ msgstr ""
6439
+
5932
6440
  msgid "Show the available repository types"
5933
6441
  msgstr ""
5934
6442
 
@@ -5950,6 +6458,9 @@ msgstr ""
5950
6458
  msgid "Simple Content Access has been enabled for '%{subject}'."
5951
6459
  msgstr ""
5952
6460
 
6461
+ msgid "Simplified"
6462
+ msgstr ""
6463
+
5953
6464
  msgid "Single content view consisting of e.g. repositories"
5954
6465
  msgstr ""
5955
6466
 
@@ -5962,12 +6473,18 @@ msgstr ""
5962
6473
  msgid "Skipped pulp_auth check after failed pulp check"
5963
6474
  msgstr ""
5964
6475
 
6476
+ msgid "Smart proxies"
6477
+ msgstr ""
6478
+
5965
6479
  msgid "Smart proxy IDs"
5966
6480
  msgstr ""
5967
6481
 
5968
6482
  msgid "Smart proxy content source not found!"
5969
6483
  msgstr ""
5970
6484
 
6485
+ msgid "Sockets"
6486
+ msgstr ""
6487
+
5971
6488
  msgid "Sockets: %s"
5972
6489
  msgstr ""
5973
6490
 
@@ -5980,7 +6497,7 @@ msgstr ""
5980
6497
  msgid "Solve dependencies"
5981
6498
  msgstr ""
5982
6499
 
5983
- msgid "Some hosts are ignored!"
6500
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5984
6501
  msgstr ""
5985
6502
 
5986
6503
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6004,13 +6521,13 @@ msgstr ""
6004
6521
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6005
6522
  msgstr ""
6006
6523
 
6007
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6524
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6008
6525
  msgstr ""
6009
6526
 
6010
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6527
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6011
6528
  msgstr ""
6012
6529
 
6013
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6530
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6014
6531
  msgstr ""
6015
6532
 
6016
6533
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6058,9 +6575,15 @@ msgstr ""
6058
6575
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6059
6576
  msgstr ""
6060
6577
 
6578
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6579
+ msgstr ""
6580
+
6061
6581
  msgid "Something went wrong while loading the content views. See the logs for more information"
6062
6582
  msgstr ""
6063
6583
 
6584
+ msgid "Something went wrong while refreshing alternate content sources: "
6585
+ msgstr ""
6586
+
6064
6587
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
6065
6588
  msgstr ""
6066
6589
 
@@ -6073,6 +6596,9 @@ msgstr ""
6073
6596
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6074
6597
  msgstr ""
6075
6598
 
6599
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6600
+ msgstr ""
6601
+
6076
6602
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6077
6603
  msgstr ""
6078
6604
 
@@ -6091,9 +6617,33 @@ msgstr ""
6091
6617
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6092
6618
  msgstr ""
6093
6619
 
6620
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6621
+ msgstr ""
6622
+
6623
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6624
+ msgstr ""
6625
+
6626
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6627
+ msgstr ""
6628
+
6629
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6630
+ msgstr ""
6631
+
6094
6632
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6095
6633
  msgstr ""
6096
6634
 
6635
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6636
+ msgstr ""
6637
+
6638
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6639
+ msgstr ""
6640
+
6641
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6642
+ msgstr ""
6643
+
6644
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6645
+ msgstr ""
6646
+
6097
6647
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6098
6648
  msgstr ""
6099
6649
 
@@ -6112,6 +6662,9 @@ msgstr ""
6112
6662
  msgid "Source RPMs"
6113
6663
  msgstr ""
6114
6664
 
6665
+ msgid "Source type"
6666
+ msgstr ""
6667
+
6115
6668
  msgid "Specify an export chunk size less than 1_000_000 GB"
6116
6669
  msgstr ""
6117
6670
 
@@ -6170,13 +6723,13 @@ msgstr ""
6170
6723
  msgid "Subnet IDs"
6171
6724
  msgstr ""
6172
6725
 
6726
+ msgid "Subpaths"
6727
+ msgstr ""
6728
+
6173
6729
  #, fuzzy
6174
6730
  msgid "Subscription"
6175
6731
  msgstr "organizace"
6176
6732
 
6177
- msgid "Subscription Allocation"
6178
- msgstr ""
6179
-
6180
6733
  msgid "Subscription Details"
6181
6734
  msgstr ""
6182
6735
 
@@ -6209,9 +6762,6 @@ msgstr ""
6209
6762
  msgid "Subscription UUID"
6210
6763
  msgstr ""
6211
6764
 
6212
- msgid "Subscription Watch"
6213
- msgstr ""
6214
-
6215
6765
  msgid "Subscription connection enabled"
6216
6766
  msgstr ""
6217
6767
 
@@ -6236,6 +6786,9 @@ msgstr ""
6236
6786
  msgid "Subscription not found"
6237
6787
  msgstr ""
6238
6788
 
6789
+ msgid "Subscription status"
6790
+ msgstr ""
6791
+
6239
6792
  msgid "Subscription was not persisted - %{error_message}"
6240
6793
  msgstr ""
6241
6794
 
@@ -6254,6 +6807,9 @@ msgstr ""
6254
6807
  msgid "Subscriptions information based on selected activation keys:"
6255
6808
  msgstr ""
6256
6809
 
6810
+ msgid "Subscriptions service"
6811
+ msgstr ""
6812
+
6257
6813
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6258
6814
  msgstr ""
6259
6815
 
@@ -6272,6 +6828,9 @@ msgstr ""
6272
6828
  msgid "Successfully initiated removal of %s product(s)"
6273
6829
  msgstr ""
6274
6830
 
6831
+ msgid "Successfully refreshed."
6832
+ msgstr ""
6833
+
6275
6834
  msgid "Successfully removed %s Host(s)."
6276
6835
  msgstr ""
6277
6836
 
@@ -6279,6 +6838,9 @@ msgstr ""
6279
6838
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6280
6839
  msgstr "úspěšně vytvořen."
6281
6840
 
6841
+ msgid "Successfully synced capsule."
6842
+ msgstr ""
6843
+
6282
6844
  msgid "Successfully synchronized."
6283
6845
  msgstr ""
6284
6846
 
@@ -6366,9 +6928,15 @@ msgstr ""
6366
6928
  msgid "Sync plan identifier to attach"
6367
6929
  msgstr ""
6368
6930
 
6931
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6932
+ msgstr ""
6933
+
6369
6934
  msgid "Sync state"
6370
6935
  msgstr ""
6371
6936
 
6937
+ msgid "Syncable export"
6938
+ msgstr ""
6939
+
6372
6940
  msgid "Synced "
6373
6941
  msgstr ""
6374
6942
 
@@ -6419,6 +6987,12 @@ msgstr ""
6419
6987
  msgid "System purpose"
6420
6988
  msgstr ""
6421
6989
 
6990
+ msgid "System purpose attributes updated"
6991
+ msgstr ""
6992
+
6993
+ 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."
6994
+ msgstr ""
6995
+
6422
6996
  msgid "Tag name"
6423
6997
  msgstr ""
6424
6998
 
@@ -6450,9 +7024,6 @@ msgstr ""
6450
7024
  msgid "The Alternate Content Source type"
6451
7025
  msgstr ""
6452
7026
 
6453
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6454
- msgstr ""
6455
-
6456
7027
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6457
7028
  msgstr ""
6458
7029
 
@@ -6504,9 +7075,6 @@ msgstr ""
6504
7075
  msgid "The field to sort the data by. Defaults to the created date."
6505
7076
  msgstr ""
6506
7077
 
6507
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6508
- msgstr ""
6509
-
6510
7078
  msgid "The following hosts have errata that apply to them: "
6511
7079
  msgstr ""
6512
7080
 
@@ -6533,6 +7101,9 @@ msgstr ""
6533
7101
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6534
7102
  msgstr ""
6535
7103
 
7104
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
7105
+ msgstr ""
7106
+
6536
7107
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6537
7108
  msgstr ""
6538
7109
 
@@ -6574,7 +7145,7 @@ msgstr ""
6574
7145
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6575
7146
  msgstr ""
6576
7147
 
6577
- msgid "The port used by Pulp Crane to provide Docker Registries"
7148
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6578
7149
  msgstr ""
6579
7150
 
6580
7151
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6587,6 +7158,9 @@ msgstr ""
6587
7158
  msgid "The repository is already enabled"
6588
7159
  msgstr "Neznámý štítek repozitáře: %s"
6589
7160
 
7161
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
7162
+ msgstr ""
7163
+
6590
7164
  msgid "The request did not contain any repository information."
6591
7165
  msgstr ""
6592
7166
 
@@ -6620,13 +7194,19 @@ msgstr ""
6620
7194
  msgid "The token key to use for authentication."
6621
7195
  msgstr ""
6622
7196
 
7197
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7198
+ msgstr ""
7199
+
7200
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7201
+ msgstr ""
7202
+
6623
7203
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6624
7204
  msgstr ""
6625
7205
 
6626
7206
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6627
7207
  msgstr ""
6628
7208
 
6629
- msgid "There are no Subscription Allocations to display"
7209
+ msgid "There are no Manifests to display"
6630
7210
  msgstr ""
6631
7211
 
6632
7212
  msgid "There are no Subscriptions to display"
@@ -6653,6 +7233,9 @@ msgstr ""
6653
7233
  msgid "There is no Manifest History to display."
6654
7234
  msgstr ""
6655
7235
 
7236
+ msgid "There is no downloaded content to clean."
7237
+ msgstr ""
7238
+
6656
7239
  msgid "There is no such HTTP proxy"
6657
7240
  msgstr ""
6658
7241
 
@@ -6695,6 +7278,9 @@ msgstr ""
6695
7278
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6696
7279
  msgstr ""
6697
7280
 
7281
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7282
+ msgstr ""
7283
+
6698
7284
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6699
7285
  msgstr ""
6700
7286
 
@@ -6719,7 +7305,7 @@ msgstr ""
6719
7305
  msgid "This host does not have any packages."
6720
7306
  msgstr ""
6721
7307
 
6722
- msgid "This host has errata that are applicable, but not installable."
7308
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6723
7309
  msgstr ""
6724
7310
 
6725
7311
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6728,13 +7314,13 @@ msgstr ""
6728
7314
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6729
7315
  msgstr ""
6730
7316
 
6731
- msgid "This is disabled because a manifest related task is in progress."
7317
+ msgid "This is disabled because a manifest task is in progress"
6732
7318
  msgstr ""
6733
7319
 
6734
- msgid "This is disabled because a manifest task is in progress"
7320
+ msgid "This is disabled because a manifest-related task is in progress."
6735
7321
  msgstr ""
6736
7322
 
6737
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7323
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6738
7324
  msgstr ""
6739
7325
 
6740
7326
  msgid "This is disabled because no manifest exists"
@@ -6749,10 +7335,10 @@ msgstr ""
6749
7335
  msgid "This is not a linked repository"
6750
7336
  msgstr ""
6751
7337
 
6752
- msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
7338
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
6753
7339
  msgstr ""
6754
7340
 
6755
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7341
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6756
7342
  msgstr ""
6757
7343
 
6758
7344
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6803,12 +7389,24 @@ msgstr ""
6803
7389
  msgid "Title"
6804
7390
  msgstr ""
6805
7391
 
7392
+ msgid "To get started, add this host to a host collection."
7393
+ msgstr ""
7394
+
7395
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7396
+ msgstr ""
7397
+
7398
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7399
+ msgstr ""
7400
+
6806
7401
  msgid "Toggling Simple Content Access will refresh your manifest."
6807
7402
  msgstr ""
6808
7403
 
6809
7404
  msgid "Total steps: "
6810
7405
  msgstr ""
6811
7406
 
7407
+ msgid "Tracer"
7408
+ msgstr ""
7409
+
6812
7410
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6813
7411
  msgstr ""
6814
7412
 
@@ -6818,18 +7416,33 @@ msgstr ""
6818
7416
  msgid "Traces"
6819
7417
  msgstr ""
6820
7418
 
7419
+ msgid "Traces are being enabled"
7420
+ msgstr ""
7421
+
6821
7422
  msgid "Traces are not enabled"
6822
7423
  msgstr ""
6823
7424
 
6824
7425
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6825
7426
  msgstr ""
6826
7427
 
7428
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7429
+ msgstr ""
7430
+
6827
7431
  msgid "Traces may be listed here after {pkgLink}."
6828
7432
  msgstr ""
6829
7433
 
7434
+ msgid "Traces not available"
7435
+ msgstr ""
7436
+
6830
7437
  msgid "Traces that require logout cannot be restarted remotely"
6831
7438
  msgstr ""
6832
7439
 
7440
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7441
+ msgstr ""
7442
+
7443
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7444
+ msgstr ""
7445
+
6833
7446
  msgid "Trigger an auto-attach of subscriptions"
6834
7447
  msgstr ""
6835
7448
 
@@ -6860,9 +7473,18 @@ msgstr ""
6860
7473
  msgid "Type of content: \"cert\", \"gpg_key\""
6861
7474
  msgstr ""
6862
7475
 
7476
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7477
+ msgstr ""
7478
+
6863
7479
  msgid "URL"
6864
7480
  msgstr ""
6865
7481
 
7482
+ msgid "URL and paths"
7483
+ msgstr ""
7484
+
7485
+ msgid "URL and subpaths"
7486
+ msgstr ""
7487
+
6866
7488
  msgid "URL needs to have a trailing /"
6867
7489
  msgstr ""
6868
7490
 
@@ -6896,6 +7518,12 @@ msgstr ""
6896
7518
  msgid "Unable to connect. Got: %s"
6897
7519
  msgstr ""
6898
7520
 
7521
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7522
+ msgstr ""
7523
+
7524
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7525
+ msgstr ""
7526
+
6899
7527
  msgid "Unable to detect pulp storage"
6900
7528
  msgstr ""
6901
7529
 
@@ -6929,6 +7557,9 @@ msgstr ""
6929
7557
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6930
7558
  msgstr ""
6931
7559
 
7560
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7561
+ msgstr ""
7562
+
6932
7563
  msgid "Unable to send errata e-mail notification: %{error}"
6933
7564
  msgstr ""
6934
7565
 
@@ -7063,7 +7694,7 @@ msgstr ""
7063
7694
  msgid "Update an activation key"
7064
7695
  msgstr "Číst aktivační klíče"
7065
7696
 
7066
- msgid "Update an alternate content source"
7697
+ msgid "Update an alternate content source."
7067
7698
  msgstr ""
7068
7699
 
7069
7700
  #, fuzzy
@@ -7225,6 +7856,9 @@ msgstr ""
7225
7856
  msgid "Upload request id"
7226
7857
  msgstr ""
7227
7858
 
7859
+ msgid "Upstream Candlepin"
7860
+ msgstr ""
7861
+
7228
7862
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7229
7863
  msgstr ""
7230
7864
 
@@ -7273,6 +7907,15 @@ msgstr ""
7273
7907
  msgid "Usage of host"
7274
7908
  msgstr ""
7275
7909
 
7910
+ msgid "Usage type"
7911
+ msgstr ""
7912
+
7913
+ msgid "Use HTTP Proxies"
7914
+ msgstr ""
7915
+
7916
+ msgid "Use HTTP proxies"
7917
+ msgstr ""
7918
+
7276
7919
  msgid "Use remote execution by default"
7277
7920
  msgstr ""
7278
7921
 
@@ -7318,6 +7961,9 @@ msgstr ""
7318
7961
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7319
7962
  msgstr ""
7320
7963
 
7964
+ msgid "Verify SSL"
7965
+ msgstr ""
7966
+
7321
7967
  msgid "Verify checksum"
7322
7968
  msgstr ""
7323
7969
 
@@ -7345,6 +7991,12 @@ msgstr ""
7345
7991
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7346
7992
  msgstr ""
7347
7993
 
7994
+ msgid "Version ${versionOne}"
7995
+ msgstr ""
7996
+
7997
+ msgid "Version ${versionTwo}"
7998
+ msgstr ""
7999
+
7348
8000
  msgid "Version details updated."
7349
8001
  msgstr ""
7350
8002
 
@@ -7357,6 +8009,9 @@ msgstr ""
7357
8009
  msgid "Versions "
7358
8010
  msgstr ""
7359
8011
 
8012
+ msgid "Versions to compare"
8013
+ msgstr ""
8014
+
7360
8015
  msgid "Versions to exclusively include in the action"
7361
8016
  msgstr ""
7362
8017
 
@@ -7369,29 +8024,44 @@ msgstr ""
7369
8024
  msgid "View %{view} has not been promoted to %{env}"
7370
8025
  msgstr ""
7371
8026
 
8027
+ msgid "View Subscription Usage"
8028
+ msgstr ""
8029
+
7372
8030
  msgid "View a report of the affected hosts"
7373
8031
  msgstr ""
7374
8032
 
8033
+ msgid "View applicable errata"
8034
+ msgstr ""
8035
+
8036
+ msgid "View by"
8037
+ msgstr ""
8038
+
7375
8039
  msgid "View matching content"
7376
8040
  msgstr ""
7377
8041
 
7378
8042
  msgid "View tasks "
7379
8043
  msgstr ""
7380
8044
 
7381
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
8045
+ msgid "View the Content Views page"
8046
+ msgstr ""
8047
+
8048
+ msgid "View the job"
7382
8049
  msgstr ""
7383
8050
 
7384
8051
  #, fuzzy
7385
8052
  msgid "Virtual"
7386
8053
  msgstr "Virtuální"
7387
8054
 
7388
- msgid "Waiting to start."
8055
+ msgid "Virtual guests"
7389
8056
  msgstr ""
7390
8057
 
7391
- msgid "Warning"
8058
+ msgid "Virtual host"
7392
8059
  msgstr ""
7393
8060
 
7394
- msgid "What's next?"
8061
+ msgid "Waiting to start."
8062
+ msgstr ""
8063
+
8064
+ msgid "Warning"
7395
8065
  msgstr ""
7396
8066
 
7397
8067
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -7433,6 +8103,9 @@ msgstr ""
7433
8103
  msgid "Whether to include available content attribute in results"
7434
8104
  msgstr ""
7435
8105
 
8106
+ msgid "Whether to turn on Simple Content Access for the organization."
8107
+ msgstr ""
8108
+
7436
8109
  msgid "Workers"
7437
8110
  msgstr ""
7438
8111
 
@@ -7505,9 +8178,6 @@ msgstr ""
7505
8178
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7506
8179
  msgstr ""
7507
8180
 
7508
- msgid "You may want to check the host's content view and lifecycle environment."
7509
- msgstr ""
7510
-
7511
8181
  msgid "You were not allowed to add %s"
7512
8182
  msgstr ""
7513
8183
 
@@ -7529,6 +8199,12 @@ msgstr ""
7529
8199
  msgid "Your search returned no matching "
7530
8200
  msgstr ""
7531
8201
 
8202
+ msgid "Your search returned no matching ${name}."
8203
+ msgstr ""
8204
+
8205
+ msgid "Your search returned no matching DEBs."
8206
+ msgstr ""
8207
+
7532
8208
  msgid "Your search returned no matching Module streams."
7533
8209
  msgstr ""
7534
8210
 
@@ -7541,12 +8217,18 @@ msgstr ""
7541
8217
  msgid "Your search returned no matching hosts."
7542
8218
  msgstr ""
7543
8219
 
8220
+ msgid "Yum"
8221
+ msgstr ""
8222
+
7544
8223
  msgid "Yum Metadata: %s"
7545
8224
  msgstr ""
7546
8225
 
7547
8226
  msgid "a content unit"
7548
8227
  msgstr ""
7549
8228
 
8229
+ msgid "a custom CDN URL"
8230
+ msgstr ""
8231
+
7550
8232
  msgid "a deb package"
7551
8233
  msgstr ""
7552
8234
 
@@ -7639,6 +8321,12 @@ msgstr ""
7639
8321
  msgid "base url to perform repo discovery on"
7640
8322
  msgstr ""
7641
8323
 
8324
+ msgid "bug fix"
8325
+ msgstr ""
8326
+
8327
+ msgid "bug fixes"
8328
+ msgstr ""
8329
+
7642
8330
  msgid "bulk add filter rules"
7643
8331
  msgstr ""
7644
8332
 
@@ -7709,7 +8397,7 @@ msgstr ""
7709
8397
  msgid "cannot contain more than %s characters"
7710
8398
  msgstr "musí obsahovat nejméně %s znaků"
7711
8399
 
7712
- msgid "checking Candlepin task status"
8400
+ msgid "checking %s task status"
7713
8401
  msgstr ""
7714
8402
 
7715
8403
  msgid "checking Pulp task status"
@@ -7731,9 +8419,6 @@ msgstr ""
7731
8419
  msgid "content release version"
7732
8420
  msgstr "Vyhledat obsah"
7733
8421
 
7734
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7735
- msgstr ""
7736
-
7737
8422
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7738
8423
  msgstr ""
7739
8424
 
@@ -7792,7 +8477,7 @@ msgstr ""
7792
8477
  msgid "create a filter for a content view"
7793
8478
  msgstr ""
7794
8479
 
7795
- msgid "deb Packages"
8480
+ msgid "deb, package, package group, or docker tag names"
7796
8481
  msgstr ""
7797
8482
 
7798
8483
  msgid "deb_ids is not an array"
@@ -7820,12 +8505,21 @@ msgstr ""
7820
8505
  msgid "description of the repository"
7821
8506
  msgstr ""
7822
8507
 
8508
+ msgid "disk"
8509
+ msgstr ""
8510
+
7823
8511
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7824
8512
  msgstr ""
7825
8513
 
7826
8514
  msgid "enables or disables synchronization"
7827
8515
  msgstr ""
7828
8516
 
8517
+ msgid "enhancement"
8518
+ msgstr ""
8519
+
8520
+ msgid "enhancements"
8521
+ msgstr ""
8522
+
7829
8523
  #, fuzzy
7830
8524
  msgid "environment"
7831
8525
  msgstr "prostředí"
@@ -7954,7 +8648,7 @@ msgstr ""
7954
8648
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7955
8649
  msgstr ""
7956
8650
 
7957
- msgid "initiating Candlepin task"
8651
+ msgid "initiating %s task"
7958
8652
  msgstr ""
7959
8653
 
7960
8654
  msgid "initiating Pulp task"
@@ -8018,9 +8712,6 @@ msgstr ""
8018
8712
  msgid "label of the repository"
8019
8713
  msgstr ""
8020
8714
 
8021
- msgid "limit to only repositories of this type"
8022
- msgstr ""
8023
-
8024
8715
  msgid "limit to only repositories with this download policy"
8025
8716
  msgstr ""
8026
8717
 
@@ -8148,9 +8839,6 @@ msgstr ""
8148
8839
  msgid "of environment must be unique within one organization"
8149
8840
  msgstr "Název musí být unikátní vrámci jedné organizace."
8150
8841
 
8151
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8152
- msgstr ""
8153
-
8154
8842
  msgid "only show the repositories readable by this user with this username"
8155
8843
  msgstr ""
8156
8844
 
@@ -8272,6 +8960,15 @@ msgstr ""
8272
8960
  msgid "rule identifier"
8273
8961
  msgstr ""
8274
8962
 
8963
+ msgid "run job invocation"
8964
+ msgstr ""
8965
+
8966
+ msgid "security advisories"
8967
+ msgstr ""
8968
+
8969
+ msgid "security advisory"
8970
+ msgstr ""
8971
+
8275
8972
  msgid "service level"
8276
8973
  msgstr ""
8277
8974
 
@@ -8327,9 +9024,6 @@ msgstr ""
8327
9024
  msgid "to"
8328
9025
  msgstr ""
8329
9026
 
8330
- msgid "to update configuration on all hosts, or"
8331
- msgstr ""
8332
-
8333
9027
  msgid "true if the latest version of the component's content view is desired"
8334
9028
  msgstr ""
8335
9029
 
@@ -8342,10 +9036,7 @@ msgstr ""
8342
9036
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8343
9037
  msgstr ""
8344
9038
 
8345
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8346
- msgstr ""
8347
-
8348
- msgid "type of repo"
9039
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8349
9040
  msgstr ""
8350
9041
 
8351
9042
  msgid "types of filters"
@@ -8360,9 +9051,6 @@ msgstr ""
8360
9051
  msgid "update a filter"
8361
9052
  msgstr ""
8362
9053
 
8363
- msgid "update configuration on the hosts manually:"
8364
- msgstr ""
8365
-
8366
9054
  msgid "updating package group..."
8367
9055
  msgstr ""
8368
9056
 
@@ -8391,7 +9079,7 @@ msgstr ""
8391
9079
  msgid "view content view tabs."
8392
9080
  msgstr ""
8393
9081
 
8394
- msgid "waiting for Candlepin to finish the task"
9082
+ msgid "waiting for %s to finish the task"
8395
9083
  msgstr ""
8396
9084
 
8397
9085
  msgid "waiting for Pulp to finish the task"