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/it/katello.po CHANGED
@@ -6,13 +6,12 @@
6
6
  # Translators:
7
7
  # Marco Calamaro <ottopodo@gmail.com>, 2020
8
8
  # Andrea Perotti, 2021
9
- # Giuseppe Pignataro <rogepix@gmail.com>, 2022
10
9
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
11
10
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
12
11
  #
13
12
  msgid ""
14
13
  msgstr ""
15
- "Project-Id-Version: katello 2.5.0\n"
14
+ "Project-Id-Version: katello 2.4.0-RC1\n"
16
15
  "Report-Msgid-Bugs-To: \n"
17
16
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
18
17
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
@@ -21,7 +20,8 @@ msgstr ""
21
20
  "Content-Type: text/plain; charset=UTF-8\n"
22
21
  "Content-Transfer-Encoding: 8bit\n"
23
22
  "Language: it\n"
24
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 :"
24
+ " 2;\n"
25
25
 
26
26
  msgid ""
27
27
  "\n"
@@ -40,12 +40,21 @@ msgstr ""
40
40
  msgid " Content view updated"
41
41
  msgstr ""
42
42
 
43
+ msgid " DEBs"
44
+ msgstr ""
45
+
43
46
  msgid " Either select the latest content view or the content view version. Cannot set both."
44
47
  msgstr ""
45
48
 
46
49
  msgid " RPMs"
47
50
  msgstr ""
48
51
 
52
+ msgid " The base path can be a web address or a filesystem location."
53
+ msgstr ""
54
+
55
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
56
+ msgstr ""
57
+
49
58
  msgid " View task details "
50
59
  msgstr ""
51
60
 
@@ -61,10 +70,10 @@ msgstr ""
61
70
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
62
71
  msgstr ""
63
72
 
64
- msgid " content view is used in listed component content views. For more information, "
73
+ msgid " content view is used in listed composite content views."
65
74
  msgstr ""
66
75
 
67
- msgid " content view is used in listed composite content views."
76
+ msgid " content view is used in listed content views. For more information, "
68
77
  msgstr ""
69
78
 
70
79
  msgid " environment cannot be set to an environment already on its path"
@@ -76,9 +85,18 @@ msgstr ""
76
85
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
77
86
  msgstr ""
78
87
 
88
+ msgid " or any step on the left."
89
+ msgstr ""
90
+
91
+ msgid " to manage and promote content views, or select a different environment."
92
+ msgstr ""
93
+
79
94
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
80
95
  msgstr ""
81
96
 
97
+ msgid "${option}"
98
+ msgstr ""
99
+
82
100
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
83
101
  msgstr ""
84
102
 
@@ -114,6 +132,9 @@ msgstr ""
114
132
  msgid "%s ago"
115
133
  msgstr "%s fa"
116
134
 
135
+ msgid "%s guests"
136
+ msgstr ""
137
+
117
138
  msgid "%s has already been deleted"
118
139
  msgstr ""
119
140
 
@@ -321,9 +342,30 @@ msgstr ""
321
342
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
322
343
  msgstr ""
323
344
 
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
352
+ msgstr ""
353
+
354
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
355
+ msgstr ""
356
+
357
+ 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. "
358
+ msgstr ""
359
+
360
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
361
+ msgstr ""
362
+
324
363
  msgid "(Orphaned)"
325
364
  msgstr "(Orfano)"
326
365
 
366
+ msgid "(unset)"
367
+ msgstr ""
368
+
327
369
  msgid ", and"
328
370
  msgstr ""
329
371
 
@@ -351,7 +393,7 @@ msgstr ""
351
393
  msgid "A backend service [ %s ] is unreachable"
352
394
  msgstr "Impossibile raggiungere un servizio backend [ %s ]"
353
395
 
354
- msgid "A content view can be added by using the \"Create content view\" button above."
396
+ msgid "A content view can be added by using the \"Create content view\" button below."
355
397
  msgstr ""
356
398
 
357
399
  msgid "A content_type must be provided."
@@ -372,6 +414,12 @@ msgstr ""
372
414
  msgid "A post-promotion summary of hosts with installable errata"
373
415
  msgstr "Un sommario post-avanzamento di host con errata installabili"
374
416
 
417
+ msgid "A remote execution job is in progress"
418
+ msgstr ""
419
+
420
+ msgid "A remote execution job is in progress."
421
+ msgstr ""
422
+
375
423
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
376
424
  msgstr "Un livello di servizio per il processo auto-healing, es. SELF-SUPPORT"
377
425
 
@@ -459,6 +507,9 @@ msgstr "Aggiungi"
459
507
  msgid "Add Bookmark"
460
508
  msgstr "Aggiungi segnalibro"
461
509
 
510
+ msgid "Add DEB rule"
511
+ msgstr ""
512
+
462
513
  msgid "Add RPM rule"
463
514
  msgstr ""
464
515
 
@@ -468,13 +519,13 @@ msgstr ""
468
519
  msgid "Add a subscription to a host"
469
520
  msgstr ""
470
521
 
471
- msgid "Add component"
522
+ msgid "Add an alternate content source"
472
523
  msgstr ""
473
524
 
474
- msgid "Add component content views"
525
+ msgid "Add components to the content view"
475
526
  msgstr ""
476
527
 
477
- msgid "Add components to the content view"
528
+ msgid "Add content view"
478
529
  msgstr ""
479
530
 
480
531
  msgid "Add content views"
@@ -489,9 +540,6 @@ msgstr ""
489
540
  msgid "Add filter rule"
490
541
  msgstr ""
491
542
 
492
- msgid "Add filters using the 'Add filter' button above."
493
- msgstr ""
494
-
495
543
  msgid "Add host to collections"
496
544
  msgstr ""
497
545
 
@@ -531,12 +579,18 @@ msgstr ""
531
579
  msgid "Add subscriptions to one or more hosts"
532
580
  msgstr ""
533
581
 
534
- msgid "Add to this filter using the 'Add RPM rule' button."
582
+ msgid "Add to a host collection"
583
+ msgstr ""
584
+
585
+ msgid "Add to this filter using the 'Add Deb rule' button."
535
586
  msgstr ""
536
587
 
537
588
  msgid "Add to this filter using the 'Add filter rule' button."
538
589
  msgstr ""
539
590
 
591
+ msgid "Add-ons"
592
+ msgstr ""
593
+
540
594
  msgid "Added"
541
595
  msgstr ""
542
596
 
@@ -555,6 +609,9 @@ msgstr ""
555
609
  msgid "Addons"
556
610
  msgstr ""
557
611
 
612
+ msgid "Affected Repositories"
613
+ msgstr ""
614
+
558
615
  msgid "Affected repositories"
559
616
  msgstr ""
560
617
 
@@ -585,6 +642,9 @@ msgstr ""
585
642
  msgid "All subpaths must have a slash at the end and none at the front"
586
643
  msgstr ""
587
644
 
645
+ msgid "All up to date"
646
+ msgstr ""
647
+
588
648
  msgid "All versions"
589
649
  msgstr ""
590
650
 
@@ -594,6 +654,9 @@ msgstr ""
594
654
  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)"
595
655
  msgstr ""
596
656
 
657
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
658
+ msgstr ""
659
+
597
660
  msgid "Allow deleting repositories in published content views"
598
661
  msgstr ""
599
662
 
@@ -603,6 +666,9 @@ msgstr ""
603
666
  msgid "Allow hosts to re-register themselves only when they are in build mode"
604
667
  msgstr ""
605
668
 
669
+ msgid "Allow multiple content views"
670
+ msgstr ""
671
+
606
672
  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."
607
673
  msgstr ""
608
674
 
@@ -612,6 +678,9 @@ msgstr ""
612
678
  msgid "Alter a host's host collections"
613
679
  msgstr ""
614
680
 
681
+ msgid "Alternate Content Source HTTP Proxy"
682
+ msgstr ""
683
+
615
684
  msgid "Alternate Content Sources"
616
685
  msgstr ""
617
686
 
@@ -624,7 +693,13 @@ msgstr ""
624
693
  msgid "Alternate content source deleted"
625
694
  msgstr ""
626
695
 
627
- msgid "Alternate content sources"
696
+ msgid "Alternate content source edited"
697
+ msgstr ""
698
+
699
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
700
+ msgstr ""
701
+
702
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
628
703
  msgstr ""
629
704
 
630
705
  msgid "Always Use Latest (currently %{version})"
@@ -636,7 +711,7 @@ msgstr ""
636
711
  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."
637
712
  msgstr ""
638
713
 
639
- msgid "An alternate content source can be added by using the \"Add source\" button above."
714
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
640
715
  msgstr ""
641
716
 
642
717
  msgid "An environment is missing a prior"
@@ -661,9 +736,6 @@ msgstr ""
661
736
  msgid "Ansible Collection"
662
737
  msgstr ""
663
738
 
664
- msgid "Ansible Collection Details"
665
- msgstr ""
666
-
667
739
  msgid "Ansible Collections"
668
740
  msgstr ""
669
741
 
@@ -676,9 +748,15 @@ msgstr ""
676
748
  msgid "Applicability Batch Size"
677
749
  msgstr ""
678
750
 
751
+ msgid "Applicable"
752
+ msgstr "Applicabile"
753
+
679
754
  msgid "Applicable Content Hosts"
680
755
  msgstr ""
681
756
 
757
+ msgid "Applicable errata apply to at least one package installed on the host."
758
+ msgstr ""
759
+
682
760
  msgid "Application"
683
761
  msgstr "Applicazione"
684
762
 
@@ -712,6 +790,9 @@ msgstr "Architettura"
712
790
  msgid "Architecture of content in the repository"
713
791
  msgstr ""
714
792
 
793
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
794
+ msgstr ""
795
+
715
796
  msgid "Architecture(s)"
716
797
  msgstr "Architetture"
717
798
 
@@ -770,6 +851,7 @@ msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
770
851
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
771
852
  msgstr[0] "Assegna %{count} host senza %{taxonomy_single} a %{taxonomy_name}"
772
853
  msgstr[1] "Assegna tutti %{count} host senza %{taxonomy_single} a %{taxonomy_name}"
854
+ msgstr[2] "Assegna tutti %{count} host senza %{taxonomy_single} a %{taxonomy_name}"
773
855
 
774
856
  msgid "Assign the environment and content view to one or more hosts"
775
857
  msgstr ""
@@ -816,6 +898,9 @@ msgstr ""
816
898
  msgid "Auth URL requires Auth token be set."
817
899
  msgstr ""
818
900
 
901
+ msgid "Authentication type"
902
+ msgstr ""
903
+
819
904
  msgid "Author"
820
905
  msgstr "Autore"
821
906
 
@@ -837,6 +922,9 @@ msgstr ""
837
922
  msgid "Autosearch delay"
838
923
  msgstr ""
839
924
 
925
+ msgid "Available"
926
+ msgstr ""
927
+
840
928
  msgid "Available Entitlements"
841
929
  msgstr ""
842
930
 
@@ -846,9 +934,15 @@ msgstr ""
846
934
  msgid "Available Schema Versions"
847
935
  msgstr ""
848
936
 
937
+ msgid "Back"
938
+ msgstr "Indietro"
939
+
849
940
  msgid "Backend System Status"
850
941
  msgstr "Stato sistema di backend"
851
942
 
943
+ msgid "Base URL"
944
+ msgstr ""
945
+
852
946
  msgid "Base URL for finding alternate content"
853
947
  msgstr ""
854
948
 
@@ -894,6 +988,9 @@ msgstr "Inserire nel segnalibro questa ricerca"
894
988
  msgid "Bookmarks marked as public are available to all users"
895
989
  msgstr ""
896
990
 
991
+ msgid "Both"
992
+ msgstr ""
993
+
897
994
  msgid "Both major and minor parameters have to be used to override a CV version"
898
995
  msgstr ""
899
996
 
@@ -906,6 +1003,12 @@ msgstr "Bugfix"
906
1003
  msgid "Bugs"
907
1004
  msgstr ""
908
1005
 
1006
+ msgid "Bulk alternate content source delete has started."
1007
+ msgstr ""
1008
+
1009
+ msgid "Bulk alternate content source refresh has started."
1010
+ msgstr ""
1011
+
909
1012
  msgid "Bulk generate applicability for host %s"
910
1013
  msgstr ""
911
1014
 
@@ -990,6 +1093,9 @@ msgstr "Annullato"
990
1093
  msgid "Cancelled."
991
1094
  msgstr "Annullata."
992
1095
 
1096
+ msgid "Candlepin"
1097
+ msgstr ""
1098
+
993
1099
  msgid "Candlepin Event"
994
1100
  msgstr "Evento Candlepin"
995
1101
 
@@ -1002,6 +1108,9 @@ msgstr ""
1002
1108
  msgid "Candlepin is not running properly"
1003
1109
  msgstr ""
1004
1110
 
1111
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1112
+ msgstr ""
1113
+
1005
1114
  msgid "Cannot add %s repositories to a content view."
1006
1115
  msgstr "Impossibile aggiungere %s repository ad una visualizzazione del contenuto."
1007
1116
 
@@ -1020,6 +1129,9 @@ msgstr "Impossibile aggiungere le versioni composite ad un'altra visualizzazione
1020
1129
  msgid "Cannot add default content view to composite content view"
1021
1130
  msgstr "Impossibile aggiungere la visualizzazione del contenuto predefinita ad una visualizzazione composita"
1022
1131
 
1132
+ msgid "Cannot add generated content view versions to composite content view"
1133
+ msgstr ""
1134
+
1023
1135
  msgid "Cannot add repositories to a composite content view"
1024
1136
  msgstr "Impossibile aggiungere i repositori ad una visualizzazione del contenuto composita"
1025
1137
 
@@ -1113,7 +1225,7 @@ msgstr ""
1113
1225
  msgid "Cannot set auto publish to a non-composite content view"
1114
1226
  msgstr ""
1115
1227
 
1116
- msgid "Cannot skip metadata check on non-yum repositories."
1228
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1117
1229
  msgstr ""
1118
1230
 
1119
1231
  msgid "Cannot specify components for non-composite views"
@@ -1135,7 +1247,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1135
1247
  msgstr ""
1136
1248
 
1137
1249
  msgid "Capacity"
1138
- msgstr ""
1250
+ msgstr "Capacità"
1139
1251
 
1140
1252
  msgid "Change Content Source"
1141
1253
  msgstr ""
@@ -1149,6 +1261,9 @@ msgstr ""
1149
1261
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1150
1262
  msgstr ""
1151
1263
 
1264
+ msgid "Check if the specified organization has Simple Content Access enabled"
1265
+ msgstr ""
1266
+
1152
1267
  msgid "Check if the specified organization is eligible for Simple Content Access"
1153
1268
  msgstr ""
1154
1269
 
@@ -1170,9 +1285,18 @@ msgstr ""
1170
1285
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1171
1286
  msgstr ""
1172
1287
 
1288
+ msgid "Choose content credentials if required for this RHUI source."
1289
+ msgstr ""
1290
+
1173
1291
  msgid "Clear any previous registration and run subscription-manager with --force."
1174
1292
  msgstr ""
1175
1293
 
1294
+ msgid "Clear filters"
1295
+ msgstr ""
1296
+
1297
+ msgid "Clear search"
1298
+ msgstr ""
1299
+
1176
1300
  msgid "Click here to go to the tasks page for the task."
1177
1301
  msgstr ""
1178
1302
 
@@ -1194,6 +1318,9 @@ msgstr ""
1194
1318
  msgid "Combined Profile Update for %s"
1195
1319
  msgstr ""
1196
1320
 
1321
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1322
+ msgstr ""
1323
+
1197
1324
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1198
1325
  msgstr ""
1199
1326
 
@@ -1203,16 +1330,16 @@ msgstr ""
1203
1330
  msgid "Comma-separated list of tags to sync for a container image repository"
1204
1331
  msgstr ""
1205
1332
 
1333
+ msgid "Compare"
1334
+ msgstr ""
1335
+
1206
1336
  msgid "Component"
1207
1337
  msgstr "Componente"
1208
1338
 
1209
1339
  msgid "Component Content View"
1210
1340
  msgstr ""
1211
1341
 
1212
- msgid "Component content view"
1213
- msgstr ""
1214
-
1215
- msgid "Component content views"
1342
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1216
1343
  msgstr ""
1217
1344
 
1218
1345
  msgid "Components"
@@ -1245,7 +1372,7 @@ msgstr ""
1245
1372
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1246
1373
  msgstr ""
1247
1374
 
1248
- msgid "Consisting of multiple component content views"
1375
+ msgid "Consisting of multiple content views"
1249
1376
  msgstr ""
1250
1377
 
1251
1378
  msgid "Consists of content views"
@@ -1365,7 +1492,7 @@ msgstr ""
1365
1492
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1366
1493
  msgstr ""
1367
1494
 
1368
- msgid "Content View and Environment not set for registration."
1495
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1369
1496
  msgstr ""
1370
1497
 
1371
1498
  msgid "Content View id"
@@ -1377,6 +1504,21 @@ msgstr ""
1377
1504
  msgid "Content Views"
1378
1505
  msgstr "Visualizzazioni contenuto"
1379
1506
 
1507
+ msgid "Content cannot be imported into a Composite Content View. "
1508
+ msgstr ""
1509
+
1510
+ msgid "Content credential"
1511
+ msgstr ""
1512
+
1513
+ msgid "Content credentials"
1514
+ msgstr ""
1515
+
1516
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1517
+ msgstr ""
1518
+
1519
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1520
+ msgstr ""
1521
+
1380
1522
  msgid "Content files to upload. Can be a single file or array of files."
1381
1523
  msgstr "File di contenuto da caricare. Può essere un file singolo o un insieme di file."
1382
1524
 
@@ -1395,10 +1537,10 @@ msgstr ""
1395
1537
  msgid "Content override search parameters"
1396
1538
  msgstr ""
1397
1539
 
1398
- msgid "Content source ID"
1540
+ msgid "Content source"
1399
1541
  msgstr ""
1400
1542
 
1401
- msgid "Content source successfully updated."
1543
+ msgid "Content source ID"
1402
1544
  msgstr ""
1403
1545
 
1404
1546
  msgid "Content source was not set for host '%{host}'"
@@ -1419,6 +1561,9 @@ msgstr ""
1419
1561
  msgid "Content view ${name} created"
1420
1562
  msgstr ""
1421
1563
 
1564
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1565
+ msgstr ""
1566
+
1422
1567
  msgid "Content view '%{view}' is not in environment '%{env}'"
1423
1568
  msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente '%{env}'"
1424
1569
 
@@ -1428,9 +1573,18 @@ msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente
1428
1573
  msgid "Content view ID"
1429
1574
  msgstr ""
1430
1575
 
1576
+ msgid "Content view and environment not set for registration."
1577
+ msgstr ""
1578
+
1431
1579
  msgid "Content view details"
1432
1580
  msgstr ""
1433
1581
 
1582
+ msgid "Content view environments and activation key must all belong to the same organization"
1583
+ msgstr ""
1584
+
1585
+ msgid "Content view environments must have both a content view and an environment"
1586
+ msgstr ""
1587
+
1434
1588
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1435
1589
  msgstr ""
1436
1590
 
@@ -1440,6 +1594,9 @@ msgstr "Indentificatore visualizzazione del contenuto"
1440
1594
  msgid "Content view label"
1441
1595
  msgstr "Etichetta visualizzazione del contenuto"
1442
1596
 
1597
+ msgid "Content view must be specified"
1598
+ msgstr ""
1599
+
1443
1600
  msgid "Content view name"
1444
1601
  msgstr ""
1445
1602
 
@@ -1461,6 +1618,9 @@ msgstr ""
1461
1618
  msgid "Content views"
1462
1619
  msgstr ""
1463
1620
 
1621
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1622
+ msgstr ""
1623
+
1464
1624
  msgid "Content_Host_Status"
1465
1625
  msgstr ""
1466
1626
 
@@ -1494,6 +1654,9 @@ msgstr ""
1494
1654
  msgid "Copy version units to library"
1495
1655
  msgstr ""
1496
1656
 
1657
+ msgid "Cores per socket"
1658
+ msgstr "Core per socket"
1659
+
1497
1660
  msgid "Cores: %s"
1498
1661
  msgstr "Core: %s"
1499
1662
 
@@ -1599,13 +1762,19 @@ msgstr "Impossibile trovare l'ambiente precendete '%s'"
1599
1762
  msgid "Couldn't find product with id '%s'"
1600
1763
  msgstr "Impossibile trovare il prodotto con id '%s'"
1601
1764
 
1765
+ msgid "Couldn't find products with id '%s'"
1766
+ msgstr ""
1767
+
1602
1768
  msgid "Couldn't find repository '%s'"
1603
1769
  msgstr "Impossibile trovare il repositorio '%s'"
1604
1770
 
1605
1771
  msgid "Couldn't find smart proxies with id '%s'"
1606
1772
  msgstr ""
1607
1773
 
1608
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1774
+ msgid "Couldn't find smart proxies with name '%s'"
1775
+ msgstr ""
1776
+
1777
+ msgid "Couldn't find specified content view and lifecycle environment."
1609
1778
  msgstr ""
1610
1779
 
1611
1780
  msgid "Couldn't find subject of synchronization"
@@ -1617,6 +1786,9 @@ msgstr "Conteggio"
1617
1786
  msgid "Create"
1618
1787
  msgstr "Crea"
1619
1788
 
1789
+ msgid "Create ACS"
1790
+ msgstr ""
1791
+
1620
1792
  msgid "Create Alternate Content Source"
1621
1793
  msgstr ""
1622
1794
 
@@ -1632,12 +1804,18 @@ msgstr ""
1632
1804
  msgid "Create Repositories"
1633
1805
  msgstr ""
1634
1806
 
1807
+ msgid "Create Syncable Export History"
1808
+ msgstr ""
1809
+
1635
1810
  msgid "Create a Content Credential"
1636
1811
  msgstr ""
1637
1812
 
1638
1813
  msgid "Create a content view"
1639
1814
  msgstr "Crea una visualizzazione del contenuto"
1640
1815
 
1816
+ msgid "Create a custom product"
1817
+ msgstr ""
1818
+
1641
1819
  msgid "Create a custom repository"
1642
1820
  msgstr "Crea un repositorio personalizzato"
1643
1821
 
@@ -1656,12 +1834,12 @@ msgstr "Crea un prodotto"
1656
1834
  msgid "Create a sync plan"
1657
1835
  msgstr "Crea programmazione per la sincronizzazione"
1658
1836
 
1659
- msgid "Create an ACS"
1660
- msgstr ""
1661
-
1662
1837
  msgid "Create an activation key"
1663
1838
  msgstr "Crea una chiave di attivazione"
1664
1839
 
1840
+ 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."
1841
+ msgstr ""
1842
+
1665
1843
  msgid "Create an environment"
1666
1844
  msgstr "Crea un ambiente"
1667
1845
 
@@ -1671,22 +1849,37 @@ msgstr "Crea un ambiente in una organizzazione"
1671
1849
  msgid "Create an upload request"
1672
1850
  msgstr "Crea una richiesta di ricarica"
1673
1851
 
1852
+ msgid "Create content credentials with the generated SSL certificate and key."
1853
+ msgstr ""
1854
+
1674
1855
  msgid "Create content view"
1675
1856
  msgstr ""
1676
1857
 
1677
1858
  msgid "Create filter"
1678
1859
  msgstr ""
1679
1860
 
1861
+ msgid "Create host collection"
1862
+ msgstr ""
1863
+
1680
1864
  msgid "Create organization"
1681
1865
  msgstr "Crea organizzazione"
1682
1866
 
1867
+ msgid "Create package filter rule"
1868
+ msgstr ""
1869
+
1870
+ msgid "Create rule"
1871
+ msgstr ""
1872
+
1873
+ msgid "Credentials"
1874
+ msgstr ""
1875
+
1683
1876
  msgid "Critical"
1684
1877
  msgstr "Critico"
1685
1878
 
1686
1879
  msgid "Cron expression is not valid!"
1687
1880
  msgstr ""
1688
1881
 
1689
- msgid "Current organization has no manifest imported."
1882
+ msgid "Current organization does not have a manifest imported."
1690
1883
  msgstr ""
1691
1884
 
1692
1885
  msgid "Current organization is not set."
@@ -1695,6 +1888,12 @@ msgstr ""
1695
1888
  msgid "Current organization not set."
1696
1889
  msgstr ""
1697
1890
 
1891
+ msgid "Custom"
1892
+ msgstr ""
1893
+
1894
+ msgid "Custom CDN"
1895
+ msgstr ""
1896
+
1698
1897
  msgid "Custom Content Repositories"
1699
1898
  msgstr "Repositori del contenuto personalizzati"
1700
1899
 
@@ -1707,6 +1906,12 @@ msgstr "Impossibile disabilitare i repositori personalizzati."
1707
1906
  msgid "Customize with Rex"
1708
1907
  msgstr ""
1709
1908
 
1909
+ msgid "DEB name"
1910
+ msgstr ""
1911
+
1912
+ msgid "DEB package updates"
1913
+ msgstr ""
1914
+
1710
1915
  msgid "Database connection"
1711
1916
  msgstr ""
1712
1917
 
@@ -1722,12 +1927,18 @@ msgstr ""
1722
1927
  msgid "Days from Now"
1723
1928
  msgstr ""
1724
1929
 
1930
+ msgid "Deb"
1931
+ msgstr ""
1932
+
1725
1933
  msgid "Deb Package"
1726
1934
  msgstr ""
1727
1935
 
1728
1936
  msgid "Deb Packages"
1729
1937
  msgstr ""
1730
1938
 
1939
+ msgid "Deb name"
1940
+ msgstr ""
1941
+
1731
1942
  msgid "Deb package identifiers to filter content by"
1732
1943
  msgstr ""
1733
1944
 
@@ -1836,6 +2047,12 @@ msgstr ""
1836
2047
  msgid "Default user data for new Operating Systems created from synced content"
1837
2048
  msgstr ""
1838
2049
 
2050
+ msgid "Define RHUI repository paths with guided steps."
2051
+ msgstr ""
2052
+
2053
+ msgid "Define repositories structured under a common web or filesystem path."
2054
+ msgstr ""
2055
+
1839
2056
  msgid "Delete"
1840
2057
  msgstr "Cancella"
1841
2058
 
@@ -1974,7 +2191,7 @@ msgstr "Elimina programmazione sincronizzazione"
1974
2191
  msgid "Destroy an activation key"
1975
2192
  msgstr "Elimina chiave di attivazione"
1976
2193
 
1977
- msgid "Destroy an alternate content source"
2194
+ msgid "Destroy an alternate content source."
1978
2195
  msgstr ""
1979
2196
 
1980
2197
  msgid "Destroy an environment"
@@ -1983,6 +2200,9 @@ msgstr "Elimina un ambiente"
1983
2200
  msgid "Destroy an environment in an organization"
1984
2201
  msgstr "Elimina ambiente in una organizzazione"
1985
2202
 
2203
+ msgid "Destroy one or more alternate content sources"
2204
+ msgstr ""
2205
+
1986
2206
  msgid "Destroy one or more hosts"
1987
2207
  msgstr ""
1988
2208
 
@@ -2034,6 +2254,9 @@ msgstr "Trova"
2034
2254
  msgid "Discover Repositories"
2035
2255
  msgstr "Trova repositori"
2036
2256
 
2257
+ msgid "Distribute archived content view versions"
2258
+ msgstr ""
2259
+
2037
2260
  msgid "Do not include this array of content views"
2038
2261
  msgstr "Non includere questo insieme di visualizzazioni del contenuto"
2039
2262
 
@@ -2070,15 +2293,36 @@ msgstr "Modifica"
2070
2293
  msgid "Edit RPM rule"
2071
2294
  msgstr ""
2072
2295
 
2296
+ msgid "Edit URL and subpaths"
2297
+ msgstr ""
2298
+
2073
2299
  msgid "Edit content view assignment"
2074
2300
  msgstr ""
2075
2301
 
2302
+ msgid "Edit credentials"
2303
+ msgstr ""
2304
+
2305
+ msgid "Edit details"
2306
+ msgstr ""
2307
+
2076
2308
  msgid "Edit filter rule"
2077
2309
  msgstr ""
2078
2310
 
2311
+ msgid "Edit package filter rule"
2312
+ msgstr ""
2313
+
2314
+ msgid "Edit products"
2315
+ msgstr ""
2316
+
2079
2317
  msgid "Edit rule"
2080
2318
  msgstr ""
2081
2319
 
2320
+ msgid "Edit smart proxies"
2321
+ msgstr ""
2322
+
2323
+ msgid "Edit system purpose attributes"
2324
+ msgstr ""
2325
+
2082
2326
  msgid "Editing Entitlements"
2083
2327
  msgstr ""
2084
2328
 
@@ -2100,9 +2344,15 @@ msgstr ""
2100
2344
  msgid "Either set the latest content view or the content view version. Cannot set both"
2101
2345
  msgstr ""
2102
2346
 
2347
+ msgid "Empty content view versions"
2348
+ msgstr ""
2349
+
2103
2350
  msgid "Enable"
2104
2351
  msgstr "Abilita"
2105
2352
 
2353
+ msgid "Enable Red Hat repositories"
2354
+ msgstr ""
2355
+
2106
2356
  msgid "Enable Simple Content Access"
2107
2357
  msgstr ""
2108
2358
 
@@ -2115,6 +2365,9 @@ msgstr ""
2115
2365
  msgid "Enable a repository from the set"
2116
2366
  msgstr "Abilita un repositorio dall'insieme"
2117
2367
 
2368
+ msgid "Enable repository sets"
2369
+ msgstr ""
2370
+
2118
2371
  msgid "Enable simple content access for a manifest"
2119
2372
  msgstr ""
2120
2373
 
@@ -2148,9 +2401,18 @@ msgstr "Miglioramenti"
2148
2401
  msgid "Enter a name"
2149
2402
  msgstr ""
2150
2403
 
2404
+ msgid "Enter a name for your source."
2405
+ msgstr ""
2406
+
2151
2407
  msgid "Enter a valid date: MM/DD/YYYY"
2152
2408
  msgstr ""
2153
2409
 
2410
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2411
+ msgstr ""
2412
+
2413
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2414
+ msgstr ""
2415
+
2154
2416
  msgid "Entitlements"
2155
2417
  msgstr ""
2156
2418
 
@@ -2244,10 +2506,10 @@ msgstr ""
2244
2506
  msgid "Exclude"
2245
2507
  msgstr "Escludi"
2246
2508
 
2247
- msgid "Exclude all Module Streams with no errata."
2509
+ msgid "Exclude all RPMs not associated to any errata"
2248
2510
  msgstr ""
2249
2511
 
2250
- msgid "Exclude all RPMs with no errata."
2512
+ msgid "Exclude all module streams not associated to any errata"
2251
2513
  msgstr ""
2252
2514
 
2253
2515
  msgid "Exclude filter"
@@ -2292,6 +2554,11 @@ msgstr ""
2292
2554
  msgid "Export as CSV"
2293
2555
  msgstr ""
2294
2556
 
2557
+ msgid ""
2558
+ "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"
2559
+ " Defaults to importable."
2560
+ msgstr ""
2561
+
2295
2562
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2296
2563
  msgstr ""
2297
2564
 
@@ -2317,6 +2584,7 @@ msgid "Failed to download %s package."
2317
2584
  msgid_plural "Failed to download %s packages."
2318
2585
  msgstr[0] "Impossibile scaricare %s pacchetto."
2319
2586
  msgstr[1] "Impossibile scaricare %s pacchetti."
2587
+ msgstr[2] "Impossibile scaricare %s pacchetti."
2320
2588
 
2321
2589
  msgid "Failed to find %{content} with id '%{id}'."
2322
2590
  msgstr "Impossibile trovare %{content} con id '%{id}'."
@@ -2342,6 +2610,9 @@ msgstr ""
2342
2610
  msgid "Fetch traces for one or more hosts"
2343
2611
  msgstr ""
2344
2612
 
2613
+ msgid "Fetching content credentials"
2614
+ msgstr ""
2615
+
2345
2616
  msgid "Field to sort the results on"
2346
2617
  msgstr "Campo nel quale ordinare i risultati"
2347
2618
 
@@ -2399,6 +2670,9 @@ msgstr "Filtra i prodotti per sottoscrizione"
2399
2670
  msgid "Filter products by sync plan id"
2400
2671
  msgstr ""
2401
2672
 
2673
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2674
+ msgstr ""
2675
+
2402
2676
  msgid "Filter rule added"
2403
2677
  msgstr ""
2404
2678
 
@@ -2432,6 +2706,12 @@ msgstr "Filtri"
2432
2706
  msgid "Filters deleted"
2433
2707
  msgstr ""
2434
2708
 
2709
+ msgid "Filters will appear here when the filter is created."
2710
+ msgstr ""
2711
+
2712
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2713
+ msgstr ""
2714
+
2435
2715
  msgid "Finish"
2436
2716
  msgstr ""
2437
2717
 
@@ -2473,7 +2753,7 @@ msgstr ""
2473
2753
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2474
2754
  msgstr ""
2475
2755
 
2476
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2756
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2477
2757
  msgstr ""
2478
2758
 
2479
2759
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2491,6 +2771,9 @@ msgstr ""
2491
2771
  msgid "GPG Key URL"
2492
2772
  msgstr "URL chiave GPG"
2493
2773
 
2774
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2775
+ msgstr ""
2776
+
2494
2777
  msgid "Generate and Download"
2495
2778
  msgstr "Genera e scarica"
2496
2779
 
@@ -2503,7 +2786,7 @@ msgstr ""
2503
2786
  msgid "Generated"
2504
2787
  msgstr ""
2505
2788
 
2506
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2789
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2507
2790
  msgstr ""
2508
2791
 
2509
2792
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2536,6 +2819,9 @@ msgstr "Ottieni lo stato della sincronizzazione per un dato repositorio"
2536
2819
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2537
2820
  msgstr ""
2538
2821
 
2822
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2823
+ msgstr ""
2824
+
2539
2825
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2540
2826
  msgstr ""
2541
2827
 
@@ -2566,6 +2852,9 @@ msgstr ""
2566
2852
  msgid "HTTP Proxy identifier to associated"
2567
2853
  msgstr ""
2568
2854
 
2855
+ msgid "HW properties"
2856
+ msgstr ""
2857
+
2569
2858
  msgid "Has to be > 0"
2570
2859
  msgstr ""
2571
2860
 
@@ -2644,6 +2933,9 @@ msgstr ""
2644
2933
  msgid "Host collections updated"
2645
2934
  msgstr ""
2646
2935
 
2936
+ msgid "Host configurations are not updated yet"
2937
+ msgstr ""
2938
+
2647
2939
  msgid "Host content and subscription details"
2648
2940
  msgstr "Contenuto host e informazioni sulla sottoscrizione"
2649
2941
 
@@ -2695,6 +2987,9 @@ msgstr ""
2695
2987
  msgid "Hosts"
2696
2988
  msgstr "Hosts"
2697
2989
 
2990
+ msgid "Hosts to update"
2991
+ msgstr ""
2992
+
2698
2993
  msgid "Hosts with Installable Errata"
2699
2994
  msgstr "Host con errata installabili"
2700
2995
 
@@ -2773,7 +3068,7 @@ msgstr "ID del programma di sincronizzazione"
2773
3068
  msgid "ID: %s doesn't exist "
2774
3069
  msgstr "ID: %s non esiste"
2775
3070
 
2776
- msgid "Id"
3071
+ 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."
2777
3072
  msgstr ""
2778
3073
 
2779
3074
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2791,6 +3086,9 @@ msgstr ""
2791
3086
  msgid "Id of an erratum to find repositories that contain the erratum"
2792
3087
  msgstr ""
2793
3088
 
3089
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3090
+ msgstr ""
3091
+
2794
3092
  msgid "Id of the content host"
2795
3093
  msgstr ""
2796
3094
 
@@ -2863,6 +3161,9 @@ msgstr ""
2863
3161
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2864
3162
  msgstr ""
2865
3163
 
3164
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3165
+ msgstr ""
3166
+
2866
3167
  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."
2867
3168
  msgstr ""
2868
3169
 
@@ -2875,6 +3176,9 @@ msgstr ""
2875
3176
  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."
2876
3177
  msgstr ""
2877
3178
 
3179
+ 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/...'."
3180
+ msgstr ""
3181
+
2878
3182
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2879
3183
  msgstr ""
2880
3184
 
@@ -2896,6 +3200,9 @@ msgstr ""
2896
3200
  msgid "Ignorable content can be only set for Yum repositories."
2897
3201
  msgstr ""
2898
3202
 
3203
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3204
+ msgstr ""
3205
+
2899
3206
  msgid "Ignore errors"
2900
3207
  msgstr ""
2901
3208
 
@@ -2908,6 +3215,9 @@ msgstr ""
2908
3215
  msgid "Ignore subscriptions that are unavailable to the specified host"
2909
3216
  msgstr ""
2910
3217
 
3218
+ msgid "Ignored hosts"
3219
+ msgstr ""
3220
+
2911
3221
  msgid "Immediate"
2912
3222
  msgstr ""
2913
3223
 
@@ -2992,10 +3302,10 @@ msgstr ""
2992
3302
  msgid "Include"
2993
3303
  msgstr "Includi"
2994
3304
 
2995
- msgid "Include all Module Streams with no errata."
3305
+ msgid "Include all RPMs not associated to any errata"
2996
3306
  msgstr ""
2997
3307
 
2998
- msgid "Include all RPMs with no errata."
3308
+ msgid "Include all module streams not associated to any errata"
2999
3309
  msgstr ""
3000
3310
 
3001
3311
  msgid "Include content views generated by imports/exports. Defaults to false"
@@ -3062,7 +3372,7 @@ msgid "Initiate a sync of the products attached to the sync plan"
3062
3372
  msgstr ""
3063
3373
 
3064
3374
  msgid "Install"
3065
- msgstr ""
3375
+ msgstr "Installa"
3066
3376
 
3067
3377
  msgid "Install Applicable Errata"
3068
3378
  msgstr "Installa errata applicabile"
@@ -3121,12 +3431,15 @@ msgstr ""
3121
3431
  msgid "Installable"
3122
3432
  msgstr "Installabile"
3123
3433
 
3124
- msgid "Installable errata"
3434
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3125
3435
  msgstr ""
3126
3436
 
3127
3437
  msgid "Installable errata from content view"
3128
3438
  msgstr ""
3129
3439
 
3440
+ msgid "Installable updates"
3441
+ msgstr ""
3442
+
3130
3443
  msgid "Installation of errata requested: %{errata}"
3131
3444
  msgstr ""
3132
3445
 
@@ -3139,6 +3452,9 @@ msgstr ""
3139
3452
  msgid "Installation status"
3140
3453
  msgstr ""
3141
3454
 
3455
+ msgid "Installed"
3456
+ msgstr "Installato"
3457
+
3142
3458
  msgid "Installed Packages"
3143
3459
  msgstr "Pacchetti installati"
3144
3460
 
@@ -3184,9 +3500,6 @@ msgstr ""
3184
3500
  msgid "Invalid"
3185
3501
  msgstr "Non valido"
3186
3502
 
3187
- msgid "Invalid SSL CA certificate given for CDN"
3188
- msgstr ""
3189
-
3190
3503
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3191
3504
  msgstr ""
3192
3505
 
@@ -3214,6 +3527,9 @@ msgstr "Fornito un tipo di erratum non valido %{invalid_types}. I tipi di erratu
3214
3527
  msgid "Invalid event_type %s"
3215
3528
  msgstr ""
3216
3529
 
3530
+ msgid "Invalid export format provided. Format must be one of %s "
3531
+ msgstr ""
3532
+
3217
3533
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3218
3534
  msgstr "La regola del filtro specificata non è valida, 'version' non può essere specificata insieme a 'min_version' o 'max_version'"
3219
3535
 
@@ -3232,6 +3548,15 @@ msgstr ""
3232
3548
  msgid "Invalid params provided - date_type must be one of %s"
3233
3549
  msgstr ""
3234
3550
 
3551
+ msgid "Invalid params provided - with_content must be one of %s"
3552
+ msgstr ""
3553
+
3554
+ msgid "Invalid path provided. Content can be only imported from file system. "
3555
+ msgstr ""
3556
+
3557
+ msgid "Invalid release version: [%s]"
3558
+ msgstr ""
3559
+
3235
3560
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3236
3561
  msgstr ""
3237
3562
 
@@ -3250,7 +3575,13 @@ msgstr "Emesso"
3250
3575
  msgid "Issued from"
3251
3576
  msgstr ""
3252
3577
 
3253
- msgid "Job ${description} has started."
3578
+ msgid "Items will appear here when a filter rule is added."
3579
+ msgstr ""
3580
+
3581
+ msgid "Job '${description}' completed"
3582
+ msgstr ""
3583
+
3584
+ msgid "Job '${description}' has started."
3254
3585
  msgstr ""
3255
3586
 
3256
3587
  msgid "Katello ID of local pool to update"
@@ -3322,9 +3653,21 @@ msgstr "Etichetta del contenuto"
3322
3653
  msgid "Label of the content view"
3323
3654
  msgstr ""
3324
3655
 
3656
+ msgid "Last check-in:"
3657
+ msgstr ""
3658
+
3659
+ msgid "Last checkin"
3660
+ msgstr ""
3661
+
3325
3662
  msgid "Last published"
3326
3663
  msgstr ""
3327
3664
 
3665
+ msgid "Last refresh"
3666
+ msgstr ""
3667
+
3668
+ msgid "Last refresh :"
3669
+ msgstr ""
3670
+
3328
3671
  msgid "Last task"
3329
3672
  msgstr ""
3330
3673
 
@@ -3340,11 +3683,14 @@ msgstr ""
3340
3683
  msgid "Learn more about adding Subscription Manifests"
3341
3684
  msgstr ""
3342
3685
 
3686
+ msgid "Legacy content host UI"
3687
+ msgstr ""
3688
+
3343
3689
  msgid "Less than"
3344
3690
  msgstr ""
3345
3691
 
3346
3692
  msgid "Library"
3347
- msgstr ""
3693
+ msgstr "Libreria "
3348
3694
 
3349
3695
  msgid "Library lifecycle environments may not be deleted."
3350
3696
  msgstr "Gli ambienti ciclo di vita e libreria non possono essere rimossi."
@@ -3385,6 +3731,9 @@ msgstr ""
3385
3731
  msgid "Lifecycle environment for the host."
3386
3732
  msgstr ""
3387
3733
 
3734
+ msgid "Lifecycle environment must be specified"
3735
+ msgstr ""
3736
+
3388
3737
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3389
3738
  msgstr ""
3390
3739
 
@@ -3406,6 +3755,9 @@ msgstr ""
3406
3755
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3407
3756
  msgstr ""
3408
3757
 
3758
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3759
+ msgstr ""
3760
+
3409
3761
  msgid "Limit to environment"
3410
3762
  msgstr ""
3411
3763
 
@@ -3436,6 +3788,9 @@ msgstr "Elenca tutte le :resource_id"
3436
3788
  msgid "List all organizations"
3437
3789
  msgstr "Elenca tutte le organizzazioni"
3438
3790
 
3791
+ msgid "List alternate content sources."
3792
+ msgstr ""
3793
+
3439
3794
  msgid "List an activation key's subscriptions"
3440
3795
  msgstr "Elenca le sottoscrizioni di una chiave di attivazione"
3441
3796
 
@@ -3505,7 +3860,7 @@ msgstr ""
3505
3860
  msgid "List of Products for sync plan"
3506
3861
  msgstr ""
3507
3862
 
3508
- msgid "List of alternate_content_sources"
3863
+ msgid "List of alternate content source IDs"
3509
3864
  msgstr ""
3510
3865
 
3511
3866
  msgid "List of component content view version ids for composite views"
@@ -3598,6 +3953,9 @@ msgstr ""
3598
3953
  msgid "List of repository ids"
3599
3954
  msgstr "Elenco id dei repositori"
3600
3955
 
3956
+ msgid "List of resources types that will be automatically associated"
3957
+ msgstr ""
3958
+
3601
3959
  msgid "List of subscription products in a subscription"
3602
3960
  msgstr "Elenco prodotti in una sottoscrizione"
3603
3961
 
@@ -3656,7 +4014,7 @@ msgid "Loading versions"
3656
4014
  msgstr ""
3657
4015
 
3658
4016
  msgid "Loading..."
3659
- msgstr ""
4017
+ msgstr "Caricamento in corso..."
3660
4018
 
3661
4019
  msgid "Low"
3662
4020
  msgstr ""
@@ -3703,6 +4061,12 @@ msgstr ""
3703
4061
  msgid "Manifest refreshed"
3704
4062
  msgstr ""
3705
4063
 
4064
+ msgid "Manual"
4065
+ msgstr "Manuale "
4066
+
4067
+ msgid "Manual authentication"
4068
+ msgstr ""
4069
+
3706
4070
  msgid "Mark Content Host Statuses as Unknown for %s"
3707
4071
  msgstr ""
3708
4072
 
@@ -3766,6 +4130,9 @@ msgstr ""
3766
4130
  msgid "Missing arguments %{substitutions} for %{content_url}"
3767
4131
  msgstr ""
3768
4132
 
4133
+ msgid "Model"
4134
+ msgstr "Modello"
4135
+
3769
4136
  msgid "Moderate"
3770
4137
  msgstr "Moderato"
3771
4138
 
@@ -3787,7 +4154,7 @@ msgstr ""
3787
4154
  msgid "Module streams"
3788
4155
  msgstr ""
3789
4156
 
3790
- msgid "Module streams will appear here when available."
4157
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3791
4158
  msgstr ""
3792
4159
 
3793
4160
  msgid "Multi-entitlement"
@@ -3805,11 +4172,19 @@ msgstr "NA"
3805
4172
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3806
4173
  msgstr ""
3807
4174
 
4175
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4176
+ msgstr ""
4177
+
3808
4178
  msgid ""
3809
4179
  "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"
3810
4180
  " %{repos}"
3811
4181
  msgstr ""
3812
4182
 
4183
+ msgid ""
4184
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4185
+ " %{repos}"
4186
+ msgstr ""
4187
+
3813
4188
  msgid ""
3814
4189
  "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"
3815
4190
  " %{repos}"
@@ -3821,6 +4196,9 @@ msgstr ""
3821
4196
  msgid "Name"
3822
4197
  msgstr "Nome"
3823
4198
 
4199
+ msgid "Name and label of default content view should not be changed"
4200
+ msgstr ""
4201
+
3824
4202
  msgid "Name is a required parameter."
3825
4203
  msgstr ""
3826
4204
 
@@ -3845,6 +4223,12 @@ msgstr ""
3845
4223
  msgid "Name of the upstream docker repository"
3846
4224
  msgstr ""
3847
4225
 
4226
+ msgid "Name source"
4227
+ msgstr ""
4228
+
4229
+ msgid "Names of smart proxies to associate"
4230
+ msgstr ""
4231
+
3848
4232
  msgid "Needs to only be set for docker tags"
3849
4233
  msgstr ""
3850
4234
 
@@ -3857,6 +4241,9 @@ msgstr "Nido"
3857
4241
  msgid "Network Sync"
3858
4242
  msgstr ""
3859
4243
 
4244
+ msgid "Never"
4245
+ msgstr "Mai"
4246
+
3860
4247
  msgid "Never Synced"
3861
4248
  msgstr "Mai sincronizzato"
3862
4249
 
@@ -3953,6 +4340,9 @@ msgstr "Non è stato fornito alcun contenuto."
3953
4340
  msgid "No content ids provided"
3954
4341
  msgstr ""
3955
4342
 
4343
+ msgid "No content in selected versions."
4344
+ msgstr ""
4345
+
3956
4346
  msgid "No content view history events found."
3957
4347
  msgstr "Non è stato trovato alcun evento per la cronologia della visualizzazione del contenuto."
3958
4348
 
@@ -4004,13 +4394,19 @@ msgstr ""
4004
4394
  msgid "No host collections found."
4005
4395
  msgstr "Nessun insieme di host trovato."
4006
4396
 
4397
+ msgid "No host collections yet"
4398
+ msgstr ""
4399
+
4400
+ msgid "No hosts found"
4401
+ msgstr ""
4402
+
4007
4403
  msgid "No hosts have been specified."
4008
4404
  msgstr ""
4009
4405
 
4010
4406
  msgid "No hosts registered with subscription-manager found in selection."
4011
4407
  msgstr ""
4012
4408
 
4013
- msgid "No hosts with content source found!"
4409
+ msgid "No hosts were specified"
4014
4410
  msgstr ""
4015
4411
 
4016
4412
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4028,9 +4424,15 @@ msgstr ""
4028
4424
  msgid "No matching "
4029
4425
  msgstr ""
4030
4426
 
4427
+ msgid "No matching ${name} found."
4428
+ msgstr ""
4429
+
4031
4430
  msgid "No matching ${selectedContentType} found"
4032
4431
  msgstr ""
4033
4432
 
4433
+ msgid "No matching DEB found."
4434
+ msgstr ""
4435
+
4034
4436
  msgid "No matching RPM found."
4035
4437
  msgstr ""
4036
4438
 
@@ -4115,6 +4517,9 @@ msgstr ""
4115
4517
  msgid "No products are enabled."
4116
4518
  msgstr ""
4117
4519
 
4520
+ msgid "No profiles to show"
4521
+ msgstr ""
4522
+
4118
4523
  msgid "No pulp workers running."
4119
4524
  msgstr ""
4120
4525
 
@@ -4190,6 +4595,9 @@ msgstr ""
4190
4595
  msgid "Not all necessary pulp workers running at %s."
4191
4596
  msgstr ""
4192
4597
 
4598
+ msgid "Not installed"
4599
+ msgstr "Non installati"
4600
+
4193
4601
  msgid "Not running"
4194
4602
  msgstr ""
4195
4603
 
@@ -4208,6 +4616,9 @@ msgstr "Nota bene: Il numero di parentesi riflette tutti gli errata applicabili
4208
4616
  msgid "Nothing selected"
4209
4617
  msgstr ""
4210
4618
 
4619
+ msgid "Number of CPU(s)"
4620
+ msgstr ""
4621
+
4211
4622
  msgid "Number of host applicability calculations to process per task."
4212
4623
  msgstr ""
4213
4624
 
@@ -4220,6 +4631,9 @@ msgstr ""
4220
4631
  msgid "Number to Allocate"
4221
4632
  msgstr ""
4222
4633
 
4634
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4635
+ msgstr ""
4636
+
4223
4637
  msgid "OSTree Branch"
4224
4638
  msgstr ""
4225
4639
 
@@ -4241,6 +4655,9 @@ msgstr ""
4241
4655
  msgid "On Demand"
4242
4656
  msgstr ""
4243
4657
 
4658
+ msgid "On the RHUA Instance, check the available repositories."
4659
+ msgstr ""
4660
+
4244
4661
  msgid "On-disk location for exported repositories"
4245
4662
  msgstr ""
4246
4663
 
@@ -4316,6 +4733,9 @@ msgstr "Organizzazione necessaria"
4316
4733
  msgid "Orphaned Content Protection Time"
4317
4734
  msgstr ""
4318
4735
 
4736
+ 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!"
4737
+ msgstr ""
4738
+
4319
4739
  msgid "Other"
4320
4740
  msgstr "Altro"
4321
4741
 
@@ -4535,12 +4955,6 @@ msgstr ""
4535
4955
  msgid "Path"
4536
4956
  msgstr "Percorso"
4537
4957
 
4538
- msgid "Path for ssl cert used for pulp server auth"
4539
- msgstr ""
4540
-
4541
- msgid "Path for ssl key used for pulp server auth"
4542
- msgstr ""
4543
-
4544
4958
  msgid "Path suffixes for finding alternate content"
4545
4959
  msgstr ""
4546
4960
 
@@ -4625,6 +5039,9 @@ msgstr "Selezionarne uno dall'elenco di seguito riportato e verrai ridirezionato
4625
5039
  msgid "Please wait while the task starts.."
4626
5040
  msgstr ""
4627
5041
 
5042
+ msgid "Please wait..."
5043
+ msgstr "Attendere prego..."
5044
+
4628
5045
  msgid "Policy to set for mirroring content. Must be one of %s."
4629
5046
  msgstr ""
4630
5047
 
@@ -4714,9 +5131,18 @@ msgstr ""
4714
5131
  msgid "Product: '%{product}', Repository: '%{repository}'"
4715
5132
  msgstr ""
4716
5133
 
5134
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5135
+ msgstr ""
5136
+
4717
5137
  msgid "Products"
4718
5138
  msgstr "Prodotti"
4719
5139
 
5140
+ msgid "Products updated."
5141
+ msgstr ""
5142
+
5143
+ msgid "Profiles"
5144
+ msgstr ""
5145
+
4720
5146
  msgid "Promote"
4721
5147
  msgstr "Avanzamento"
4722
5148
 
@@ -4801,18 +5227,9 @@ msgstr ""
4801
5227
  msgid "Pulp 3 is not enabled on Smart proxy!"
4802
5228
  msgstr ""
4803
5229
 
4804
- msgid "Pulp Docker registry port"
4805
- msgstr ""
4806
-
4807
5230
  msgid "Pulp bulk load size"
4808
5231
  msgstr ""
4809
5232
 
4810
- msgid "Pulp client cert"
4811
- msgstr ""
4812
-
4813
- msgid "Pulp client key"
4814
- msgstr ""
4815
-
4816
5233
  msgid "Pulp database connection issue at %s."
4817
5234
  msgstr ""
4818
5235
 
@@ -4891,12 +5308,18 @@ msgstr "Quantità di questa sottoscrizione da aggiungere"
4891
5308
  msgid "Quantity to Allocate"
4892
5309
  msgstr ""
4893
5310
 
5311
+ msgid "RAM"
5312
+ msgstr ""
5313
+
4894
5314
  msgid "RAM: %s GB"
4895
5315
  msgstr "RAM: %s GB"
4896
5316
 
4897
5317
  msgid "RH Repos"
4898
5318
  msgstr ""
4899
5319
 
5320
+ msgid "RHUI"
5321
+ msgstr ""
5322
+
4900
5323
  msgid "RPM"
4901
5324
  msgstr ""
4902
5325
 
@@ -4909,6 +5332,12 @@ msgstr ""
4909
5332
  msgid "RPM name"
4910
5333
  msgstr ""
4911
5334
 
5335
+ msgid "RPM package groups"
5336
+ msgstr ""
5337
+
5338
+ msgid "RPM package updates"
5339
+ msgstr ""
5340
+
4912
5341
  msgid "RPM packages"
4913
5342
  msgstr ""
4914
5343
 
@@ -4975,6 +5404,9 @@ msgstr ""
4975
5404
  msgid "Red Hat content will be consumed from the {type}."
4976
5405
  msgstr ""
4977
5406
 
5407
+ msgid "Red Hat content will be consumed from {type}."
5408
+ msgstr ""
5409
+
4978
5410
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4979
5411
  msgstr ""
4980
5412
 
@@ -4990,15 +5422,27 @@ msgstr "I repositori di Red Hat non possono essere alterati."
4990
5422
  msgid "Refresh"
4991
5423
  msgstr "Aggiorna"
4992
5424
 
5425
+ msgid "Refresh Alternate Content Source"
5426
+ msgstr ""
5427
+
4993
5428
  msgid "Refresh Content Host Statuses for %s"
4994
5429
  msgstr ""
4995
5430
 
4996
5431
  msgid "Refresh Manifest"
4997
5432
  msgstr "Aggiorna il manifesto"
4998
5433
 
5434
+ msgid "Refresh alternate content sources"
5435
+ msgstr ""
5436
+
5437
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5438
+ msgstr ""
5439
+
4999
5440
  msgid "Refresh previously imported manifest for Red Hat provider"
5000
5441
  msgstr "Aggiorna il manifesto precedentemente importato per il provider di Red Hat"
5001
5442
 
5443
+ msgid "Refresh source"
5444
+ msgstr ""
5445
+
5002
5446
  msgid "Refresh_Content_Host_Status"
5003
5447
  msgstr ""
5004
5448
 
@@ -5008,13 +5452,16 @@ msgstr ""
5008
5452
  msgid "Register host '%s' before attaching subscriptions"
5009
5453
  msgstr ""
5010
5454
 
5455
+ msgid "Registered"
5456
+ msgstr "Registrati"
5457
+
5011
5458
  msgid "Registered by"
5012
5459
  msgstr ""
5013
5460
 
5014
5461
  msgid "Registered on"
5015
5462
  msgstr ""
5016
5463
 
5017
- msgid "Registered through"
5464
+ msgid "Registering to multiple environments is not enabled."
5018
5465
  msgstr ""
5019
5466
 
5020
5467
  msgid "Registration details"
@@ -5032,24 +5479,27 @@ msgstr ""
5032
5479
  msgid "Reindex subscriptions"
5033
5480
  msgstr ""
5034
5481
 
5035
- msgid "Related component content views"
5482
+ msgid "Related composite content views"
5036
5483
  msgstr ""
5037
5484
 
5038
- msgid "Related component cvs: "
5485
+ msgid "Related composite content views: "
5039
5486
  msgstr ""
5040
5487
 
5041
- msgid "Related composite content views"
5488
+ msgid "Related content views"
5042
5489
  msgstr ""
5043
5490
 
5044
- msgid "Related composite cvs: "
5491
+ msgid "Related content views will appear here when created."
5045
5492
  msgstr ""
5046
5493
 
5047
- msgid "Related content views will appear here when created."
5494
+ msgid "Related content views: "
5048
5495
  msgstr ""
5049
5496
 
5050
5497
  msgid "Release"
5051
5498
  msgstr "Release"
5052
5499
 
5500
+ msgid "Release version"
5501
+ msgstr ""
5502
+
5053
5503
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5054
5504
  msgstr ""
5055
5505
 
@@ -5068,6 +5518,9 @@ msgstr "Ricarica i dati"
5068
5518
  msgid "Remote action:"
5069
5519
  msgstr "Azione remota:"
5070
5520
 
5521
+ msgid "Remote execution job '${description}' failed."
5522
+ msgstr ""
5523
+
5071
5524
  msgid "Removal of package group(s) requested: %{groups}"
5072
5525
  msgstr ""
5073
5526
 
@@ -5128,7 +5581,7 @@ msgstr ""
5128
5581
  msgid "Remove one or more host collections from one or more hosts"
5129
5582
  msgstr ""
5130
5583
 
5131
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5584
+ msgid "Remove one or more subscriptions from an upstream manifest"
5132
5585
  msgstr ""
5133
5586
 
5134
5587
  msgid "Remove package"
@@ -5179,6 +5632,9 @@ msgstr "Rimozione gruppo di pacchetti in corso..."
5179
5632
  msgid "Removing Package..."
5180
5633
  msgstr "Rimozione pacchetto in corso..."
5181
5634
 
5635
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5636
+ msgstr ""
5637
+
5182
5638
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5183
5639
  msgstr ""
5184
5640
 
@@ -5263,7 +5719,7 @@ msgstr ""
5263
5719
  msgid "Repository sets reset to default"
5264
5720
  msgstr ""
5265
5721
 
5266
- msgid "Repository sets will appear here when available."
5722
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5267
5723
  msgstr ""
5268
5724
 
5269
5725
  msgid "Republish Repositories of %{name} %{version}"
@@ -5398,6 +5854,9 @@ msgstr ""
5398
5854
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5399
5855
  msgstr ""
5400
5856
 
5857
+ msgid "Return same, different or all results"
5858
+ msgstr ""
5859
+
5401
5860
  msgid "Return subscriptions that match installed products of the specified host"
5402
5861
  msgstr ""
5403
5862
 
@@ -5425,6 +5884,9 @@ msgstr ""
5425
5884
  msgid "Review details"
5426
5885
  msgstr ""
5427
5886
 
5887
+ msgid "Review the information below and click "
5888
+ msgstr ""
5889
+
5428
5890
  msgid "Review your currently selected changes for "
5429
5891
  msgstr ""
5430
5892
 
@@ -5443,21 +5905,30 @@ msgstr ""
5443
5905
  msgid "Run Sync Plan:"
5444
5906
  msgstr ""
5445
5907
 
5446
- msgid "Run job invocation"
5447
- msgstr ""
5448
-
5449
5908
  msgid "Running"
5450
5909
  msgstr "In esecuzione"
5451
5910
 
5452
5911
  msgid "SKU"
5453
5912
  msgstr ""
5454
5913
 
5914
+ msgid "SLA"
5915
+ msgstr ""
5916
+
5455
5917
  msgid "SRPM details"
5456
5918
  msgstr ""
5457
5919
 
5458
5920
  msgid "SSL CA Content Credential"
5459
5921
  msgstr ""
5460
5922
 
5923
+ msgid "SSL CA certificate"
5924
+ msgstr ""
5925
+
5926
+ msgid "SSL client certificate"
5927
+ msgstr ""
5928
+
5929
+ msgid "SSL client key"
5930
+ msgstr ""
5931
+
5461
5932
  msgid "SSL version used to communicate with the CDN"
5462
5933
  msgstr ""
5463
5934
 
@@ -5467,6 +5938,9 @@ msgstr ""
5467
5938
  msgid "Save"
5468
5939
  msgstr "Salva"
5469
5940
 
5941
+ msgid "Saving alternate content source..."
5942
+ msgstr ""
5943
+
5470
5944
  msgid "Schedule errata for installation using katello-agent. %s"
5471
5945
  msgstr ""
5472
5946
 
@@ -5536,6 +6010,15 @@ msgstr "Seleziona organizzazione"
5536
6010
  msgid "Select Value"
5537
6011
  msgstr ""
5538
6012
 
6013
+ msgid "Select a CA certificate"
6014
+ msgstr ""
6015
+
6016
+ msgid "Select a client certificate"
6017
+ msgstr ""
6018
+
6019
+ msgid "Select a client key"
6020
+ msgstr ""
6021
+
5539
6022
  msgid "Select a content view"
5540
6023
  msgstr ""
5541
6024
 
@@ -5551,6 +6034,9 @@ msgstr ""
5551
6034
  msgid "Select a provider to install katello-host-tools-tracer"
5552
6035
  msgstr ""
5553
6036
 
6037
+ msgid "Select add-ons"
6038
+ msgstr ""
6039
+
5554
6040
  msgid "Select all"
5555
6041
  msgstr ""
5556
6042
 
@@ -5566,20 +6052,23 @@ msgstr ""
5566
6052
  msgid "Select an environment above"
5567
6053
  msgstr ""
5568
6054
 
6055
+ msgid "Select an option"
6056
+ msgstr ""
6057
+
5569
6058
  msgid "Select an organization"
5570
6059
  msgstr ""
5571
6060
 
5572
6061
  msgid "Select available version of ${cvName} to use"
5573
6062
  msgstr ""
5574
6063
 
5575
- msgid "Select available version of components to use"
6064
+ msgid "Select available version of content views to use"
5576
6065
  msgstr ""
5577
6066
 
5578
6067
  msgid "Select content view"
5579
6068
  msgstr ""
5580
6069
 
5581
6070
  msgid "Select environment"
5582
- msgstr ""
6071
+ msgstr "Seleziona ambiente"
5583
6072
 
5584
6073
  msgid "Select host collection(s) to associate with host {hostName}."
5585
6074
  msgstr ""
@@ -5605,9 +6094,27 @@ msgstr ""
5605
6094
  msgid "Select page"
5606
6095
  msgstr ""
5607
6096
 
6097
+ msgid "Select products"
6098
+ msgstr ""
6099
+
6100
+ msgid "Select products to associate to this source."
6101
+ msgstr ""
6102
+
5608
6103
  msgid "Select row"
5609
6104
  msgstr ""
5610
6105
 
6106
+ msgid "Select smart proxies to be used with this source."
6107
+ msgstr ""
6108
+
6109
+ msgid "Select smart proxy"
6110
+ msgstr ""
6111
+
6112
+ msgid "Select source type"
6113
+ msgstr ""
6114
+
6115
+ msgid "Select system purpose attributes for host {hostName}."
6116
+ msgstr ""
6117
+
5611
6118
  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."
5612
6119
  msgstr ""
5613
6120
 
@@ -5710,7 +6217,7 @@ msgstr ""
5710
6217
  msgid "Show an activation key"
5711
6218
  msgstr "Mostra una chiave di attivazione"
5712
6219
 
5713
- msgid "Show an alternate content source"
6220
+ msgid "Show an alternate content source."
5714
6221
  msgstr ""
5715
6222
 
5716
6223
  msgid "Show an environment"
@@ -5737,6 +6244,9 @@ msgstr "Mostra le versioni della release disponibili per una chiave di attivazio
5737
6244
  msgid "Show releases available for the content host"
5738
6245
  msgstr "Mostra le release disponibili per un host di contenuto"
5739
6246
 
6247
+ msgid "Show repositories enabled on the host that are known to Katello"
6248
+ msgstr ""
6249
+
5740
6250
  msgid "Show the available repository types"
5741
6251
  msgstr ""
5742
6252
 
@@ -5758,6 +6268,9 @@ msgstr ""
5758
6268
  msgid "Simple Content Access has been enabled for '%{subject}'."
5759
6269
  msgstr ""
5760
6270
 
6271
+ msgid "Simplified"
6272
+ msgstr ""
6273
+
5761
6274
  msgid "Single content view consisting of e.g. repositories"
5762
6275
  msgstr ""
5763
6276
 
@@ -5770,12 +6283,18 @@ msgstr ""
5770
6283
  msgid "Skipped pulp_auth check after failed pulp check"
5771
6284
  msgstr ""
5772
6285
 
6286
+ msgid "Smart proxies"
6287
+ msgstr "Smart proxy"
6288
+
5773
6289
  msgid "Smart proxy IDs"
5774
6290
  msgstr "ID Smart proxy"
5775
6291
 
5776
6292
  msgid "Smart proxy content source not found!"
5777
6293
  msgstr ""
5778
6294
 
6295
+ msgid "Sockets"
6296
+ msgstr "Socket"
6297
+
5779
6298
  msgid "Sockets: %s"
5780
6299
  msgstr "Socket: %s"
5781
6300
 
@@ -5788,7 +6307,7 @@ msgstr ""
5788
6307
  msgid "Solve dependencies"
5789
6308
  msgstr ""
5790
6309
 
5791
- msgid "Some hosts are ignored!"
6310
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5792
6311
  msgstr ""
5793
6312
 
5794
6313
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5812,13 +6331,13 @@ msgstr ""
5812
6331
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5813
6332
  msgstr ""
5814
6333
 
5815
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6334
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5816
6335
  msgstr ""
5817
6336
 
5818
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6337
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5819
6338
  msgstr ""
5820
6339
 
5821
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6340
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5822
6341
  msgstr ""
5823
6342
 
5824
6343
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5866,9 +6385,15 @@ msgstr ""
5866
6385
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5867
6386
  msgstr ""
5868
6387
 
6388
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6389
+ msgstr ""
6390
+
5869
6391
  msgid "Something went wrong while loading the content views. See the logs for more information"
5870
6392
  msgstr ""
5871
6393
 
6394
+ msgid "Something went wrong while refreshing alternate content sources: "
6395
+ msgstr ""
6396
+
5872
6397
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5873
6398
  msgstr ""
5874
6399
 
@@ -5881,6 +6406,9 @@ msgstr ""
5881
6406
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5882
6407
  msgstr ""
5883
6408
 
6409
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6410
+ msgstr ""
6411
+
5884
6412
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5885
6413
  msgstr ""
5886
6414
 
@@ -5899,9 +6427,33 @@ msgstr ""
5899
6427
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5900
6428
  msgstr ""
5901
6429
 
6430
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
6433
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6434
+ msgstr ""
6435
+
6436
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6437
+ msgstr ""
6438
+
6439
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6440
+ msgstr ""
6441
+
5902
6442
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5903
6443
  msgstr ""
5904
6444
 
6445
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6446
+ msgstr ""
6447
+
6448
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6449
+ msgstr ""
6450
+
6451
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6452
+ msgstr ""
6453
+
6454
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6455
+ msgstr ""
6456
+
5905
6457
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5906
6458
  msgstr ""
5907
6459
 
@@ -5920,6 +6472,9 @@ msgstr ""
5920
6472
  msgid "Source RPMs"
5921
6473
  msgstr "RPM sorgenti"
5922
6474
 
6475
+ msgid "Source type"
6476
+ msgstr ""
6477
+
5923
6478
  msgid "Specify an export chunk size less than 1_000_000 GB"
5924
6479
  msgstr ""
5925
6480
 
@@ -5948,7 +6503,7 @@ msgid "Starts"
5948
6503
  msgstr "Inizia"
5949
6504
 
5950
6505
  msgid "State"
5951
- msgstr ""
6506
+ msgstr "Stato"
5952
6507
 
5953
6508
  msgid "Status"
5954
6509
  msgstr "Stato"
@@ -5977,12 +6532,12 @@ msgstr "Invia"
5977
6532
  msgid "Subnet IDs"
5978
6533
  msgstr "ID sottoreti"
5979
6534
 
6535
+ msgid "Subpaths"
6536
+ msgstr ""
6537
+
5980
6538
  msgid "Subscription"
5981
6539
  msgstr "Sottoscrizione"
5982
6540
 
5983
- msgid "Subscription Allocation"
5984
- msgstr ""
5985
-
5986
6541
  msgid "Subscription Details"
5987
6542
  msgstr "Informazioni sulla sottoscrizione"
5988
6543
 
@@ -6013,9 +6568,6 @@ msgstr "Stato sottoscrizione"
6013
6568
  msgid "Subscription UUID"
6014
6569
  msgstr ""
6015
6570
 
6016
- msgid "Subscription Watch"
6017
- msgstr ""
6018
-
6019
6571
  msgid "Subscription connection enabled"
6020
6572
  msgstr ""
6021
6573
 
@@ -6040,6 +6592,9 @@ msgstr "File manifesto della sottoscrizione"
6040
6592
  msgid "Subscription not found"
6041
6593
  msgstr ""
6042
6594
 
6595
+ msgid "Subscription status"
6596
+ msgstr ""
6597
+
6043
6598
  msgid "Subscription was not persisted - %{error_message}"
6044
6599
  msgstr ""
6045
6600
 
@@ -6058,6 +6613,9 @@ msgstr ""
6058
6613
  msgid "Subscriptions information based on selected activation keys:"
6059
6614
  msgstr "Informazioni sottoscrizioni in base alle chiavi di attivazione selezionate:"
6060
6615
 
6616
+ msgid "Subscriptions service"
6617
+ msgstr ""
6618
+
6061
6619
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6062
6620
  msgstr ""
6063
6621
 
@@ -6076,12 +6634,18 @@ msgstr "Modificata con successo la programmazione per la sincronizzazione di %s
6076
6634
  msgid "Successfully initiated removal of %s product(s)"
6077
6635
  msgstr "Inizializzata con successo la rimozione di %s prodotti"
6078
6636
 
6637
+ msgid "Successfully refreshed."
6638
+ msgstr ""
6639
+
6079
6640
  msgid "Successfully removed %s Host(s)."
6080
6641
  msgstr ""
6081
6642
 
6082
6643
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6083
6644
  msgstr "Rimossi con successo %{count} host di contenuto dall'insieme %{host_collection}."
6084
6645
 
6646
+ msgid "Successfully synced capsule."
6647
+ msgstr ""
6648
+
6085
6649
  msgid "Successfully synchronized."
6086
6650
  msgstr ""
6087
6651
 
@@ -6163,9 +6727,15 @@ msgstr "Sincronizza uno o più prodotti"
6163
6727
  msgid "Sync plan identifier to attach"
6164
6728
  msgstr "identificatore programmazione della sincronizzazione da assegnare"
6165
6729
 
6730
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6731
+ msgstr ""
6732
+
6166
6733
  msgid "Sync state"
6167
6734
  msgstr ""
6168
6735
 
6736
+ msgid "Syncable export"
6737
+ msgstr ""
6738
+
6169
6739
  msgid "Synced "
6170
6740
  msgstr ""
6171
6741
 
@@ -6214,6 +6784,12 @@ msgstr "Stato del sistema"
6214
6784
  msgid "System purpose"
6215
6785
  msgstr ""
6216
6786
 
6787
+ msgid "System purpose attributes updated"
6788
+ msgstr ""
6789
+
6790
+ 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."
6791
+ msgstr ""
6792
+
6217
6793
  msgid "Tag name"
6218
6794
  msgstr ""
6219
6795
 
@@ -6244,9 +6820,6 @@ msgstr "L'ambiente '%s' non può contenere un changeset!"
6244
6820
  msgid "The Alternate Content Source type"
6245
6821
  msgstr ""
6246
6822
 
6247
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6248
- msgstr ""
6249
-
6250
6823
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6251
6824
  msgstr ""
6252
6825
 
@@ -6298,9 +6871,6 @@ msgstr ""
6298
6871
  msgid "The field to sort the data by. Defaults to the created date."
6299
6872
  msgstr ""
6300
6873
 
6301
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6302
- msgstr ""
6303
-
6304
6874
  msgid "The following hosts have errata that apply to them: "
6305
6875
  msgstr "I seguenti host dispongono di errata da applicare:"
6306
6876
 
@@ -6327,6 +6897,9 @@ msgstr ""
6327
6897
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6328
6898
  msgstr ""
6329
6899
 
6900
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6901
+ msgstr ""
6902
+
6330
6903
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6331
6904
  msgstr ""
6332
6905
 
@@ -6368,7 +6941,7 @@ msgstr "Per accedere alla pagina desiderata selezionare una organizzazione speci
6368
6941
  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."
6369
6942
  msgstr ""
6370
6943
 
6371
- msgid "The port used by Pulp Crane to provide Docker Registries"
6944
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6372
6945
  msgstr ""
6373
6946
 
6374
6947
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6380,6 +6953,9 @@ msgstr "L'avanzamento di %{content_view} in <b>%{environment}</b> è terminato.
6380
6953
  msgid "The repository is already enabled"
6381
6954
  msgstr "Il repository è già abilitato"
6382
6955
 
6956
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6957
+ msgstr ""
6958
+
6383
6959
  msgid "The request did not contain any repository information."
6384
6960
  msgstr ""
6385
6961
 
@@ -6413,13 +6989,19 @@ msgstr "Il processo di sincronizzazione di \"%s\" è terminato. Di seguito vien
6413
6989
  msgid "The token key to use for authentication."
6414
6990
  msgstr ""
6415
6991
 
6992
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6993
+ msgstr ""
6994
+
6995
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6996
+ msgstr ""
6997
+
6416
6998
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6417
6999
  msgstr "Il tipo di contenuto. Sono supportati i seguenti tipi: 'package' e 'package_group."
6418
7000
 
6419
7001
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6420
7002
  msgstr "Il tipo di contenuto. Sono supportati i seguenti tipi: 'package' e 'package_group' e 'errata'."
6421
7003
 
6422
- msgid "There are no Subscription Allocations to display"
7004
+ msgid "There are no Manifests to display"
6423
7005
  msgstr ""
6424
7006
 
6425
7007
  msgid "There are no Subscriptions to display"
@@ -6446,6 +7028,9 @@ msgstr "Molto probabilmente non è stato specificato alcun ambiente o versione,
6446
7028
  msgid "There is no Manifest History to display."
6447
7029
  msgstr ""
6448
7030
 
7031
+ msgid "There is no downloaded content to clean."
7032
+ msgstr ""
7033
+
6449
7034
  msgid "There is no such HTTP proxy"
6450
7035
  msgstr ""
6451
7036
 
@@ -6488,6 +7073,9 @@ msgstr ""
6488
7073
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6489
7074
  msgstr ""
6490
7075
 
7076
+ 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."
7077
+ msgstr ""
7078
+
6491
7079
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6492
7080
  msgstr "Questo certificato permette all'utente di visualizzare i repositori in qualsiasi ambiente del browser."
6493
7081
 
@@ -6512,7 +7100,7 @@ msgstr ""
6512
7100
  msgid "This host does not have any packages."
6513
7101
  msgstr ""
6514
7102
 
6515
- msgid "This host has errata that are applicable, but not installable."
7103
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6516
7104
  msgstr ""
6517
7105
 
6518
7106
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6521,13 +7109,13 @@ msgstr ""
6521
7109
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6522
7110
  msgstr ""
6523
7111
 
6524
- msgid "This is disabled because a manifest related task is in progress."
7112
+ msgid "This is disabled because a manifest task is in progress"
6525
7113
  msgstr ""
6526
7114
 
6527
- msgid "This is disabled because a manifest task is in progress"
7115
+ msgid "This is disabled because a manifest-related task is in progress."
6528
7116
  msgstr ""
6529
7117
 
6530
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7118
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6531
7119
  msgstr ""
6532
7120
 
6533
7121
  msgid "This is disabled because no manifest exists"
@@ -6542,10 +7130,10 @@ msgstr ""
6542
7130
  msgid "This is not a linked repository"
6543
7131
  msgstr ""
6544
7132
 
6545
- 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}."
7133
+ 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}."
6546
7134
  msgstr ""
6547
7135
 
6548
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7136
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6549
7137
  msgstr ""
6550
7138
 
6551
7139
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6596,12 +7184,24 @@ msgstr ""
6596
7184
  msgid "Title"
6597
7185
  msgstr "Titolo"
6598
7186
 
7187
+ msgid "To get started, add this host to a host collection."
7188
+ msgstr ""
7189
+
7190
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7191
+ msgstr ""
7192
+
7193
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7194
+ msgstr ""
7195
+
6599
7196
  msgid "Toggling Simple Content Access will refresh your manifest."
6600
7197
  msgstr ""
6601
7198
 
6602
7199
  msgid "Total steps: "
6603
7200
  msgstr ""
6604
7201
 
7202
+ msgid "Tracer"
7203
+ msgstr ""
7204
+
6605
7205
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6606
7206
  msgstr ""
6607
7207
 
@@ -6611,18 +7211,33 @@ msgstr ""
6611
7211
  msgid "Traces"
6612
7212
  msgstr ""
6613
7213
 
7214
+ msgid "Traces are being enabled"
7215
+ msgstr ""
7216
+
6614
7217
  msgid "Traces are not enabled"
6615
7218
  msgstr ""
6616
7219
 
6617
7220
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6618
7221
  msgstr ""
6619
7222
 
7223
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7224
+ msgstr ""
7225
+
6620
7226
  msgid "Traces may be listed here after {pkgLink}."
6621
7227
  msgstr ""
6622
7228
 
7229
+ msgid "Traces not available"
7230
+ msgstr ""
7231
+
6623
7232
  msgid "Traces that require logout cannot be restarted remotely"
6624
7233
  msgstr ""
6625
7234
 
7235
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7236
+ msgstr ""
7237
+
7238
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7239
+ msgstr ""
7240
+
6626
7241
  msgid "Trigger an auto-attach of subscriptions"
6627
7242
  msgstr ""
6628
7243
 
@@ -6653,9 +7268,18 @@ msgstr ""
6653
7268
  msgid "Type of content: \"cert\", \"gpg_key\""
6654
7269
  msgstr ""
6655
7270
 
7271
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7272
+ msgstr ""
7273
+
6656
7274
  msgid "URL"
6657
7275
  msgstr "URL"
6658
7276
 
7277
+ msgid "URL and paths"
7278
+ msgstr ""
7279
+
7280
+ msgid "URL and subpaths"
7281
+ msgstr ""
7282
+
6659
7283
  msgid "URL needs to have a trailing /"
6660
7284
  msgstr ""
6661
7285
 
@@ -6689,6 +7313,12 @@ msgstr "Impossibile collegarsi"
6689
7313
  msgid "Unable to connect. Got: %s"
6690
7314
  msgstr ""
6691
7315
 
7316
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7317
+ msgstr ""
7318
+
7319
+ 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."
7320
+ msgstr ""
7321
+
6692
7322
  msgid "Unable to detect pulp storage"
6693
7323
  msgstr ""
6694
7324
 
@@ -6722,6 +7352,9 @@ msgstr "Impossibile riassegnare gli host di contenuto. Fornire provide system_co
6722
7352
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6723
7353
  msgstr "Impossibile riassegnare i sistemi. Controllare system_content_view_id e system_environment_id."
6724
7354
 
7355
+ 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."
7356
+ msgstr ""
7357
+
6725
7358
  msgid "Unable to send errata e-mail notification: %{error}"
6726
7359
  msgstr ""
6727
7360
 
@@ -6851,7 +7484,7 @@ msgstr "Aggiorna programmazione sincronizzazione"
6851
7484
  msgid "Update an activation key"
6852
7485
  msgstr "Aggiorna una chiave di attivazione"
6853
7486
 
6854
- msgid "Update an alternate content source"
7487
+ msgid "Update an alternate content source."
6855
7488
  msgstr ""
6856
7489
 
6857
7490
  msgid "Update an environment"
@@ -7007,6 +7640,9 @@ msgstr ""
7007
7640
  msgid "Upload request id"
7008
7641
  msgstr "Carica l'id delle richieste"
7009
7642
 
7643
+ msgid "Upstream Candlepin"
7644
+ msgstr ""
7645
+
7010
7646
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7011
7647
  msgstr ""
7012
7648
 
@@ -7055,6 +7691,15 @@ msgstr ""
7055
7691
  msgid "Usage of host"
7056
7692
  msgstr ""
7057
7693
 
7694
+ msgid "Usage type"
7695
+ msgstr ""
7696
+
7697
+ msgid "Use HTTP Proxies"
7698
+ msgstr ""
7699
+
7700
+ msgid "Use HTTP proxies"
7701
+ msgstr ""
7702
+
7058
7703
  msgid "Use remote execution by default"
7059
7704
  msgstr ""
7060
7705
 
@@ -7100,6 +7745,9 @@ msgstr "Valido"
7100
7745
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7101
7746
  msgstr ""
7102
7747
 
7748
+ msgid "Verify SSL"
7749
+ msgstr "Verifica SSL"
7750
+
7103
7751
  msgid "Verify checksum"
7104
7752
  msgstr ""
7105
7753
 
@@ -7127,6 +7775,12 @@ msgstr ""
7127
7775
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7128
7776
  msgstr ""
7129
7777
 
7778
+ msgid "Version ${versionOne}"
7779
+ msgstr ""
7780
+
7781
+ msgid "Version ${versionTwo}"
7782
+ msgstr ""
7783
+
7130
7784
  msgid "Version details updated."
7131
7785
  msgstr ""
7132
7786
 
@@ -7139,6 +7793,9 @@ msgstr "Versioni"
7139
7793
  msgid "Versions "
7140
7794
  msgstr ""
7141
7795
 
7796
+ msgid "Versions to compare"
7797
+ msgstr ""
7798
+
7142
7799
  msgid "Versions to exclusively include in the action"
7143
7800
  msgstr ""
7144
7801
 
@@ -7151,30 +7808,45 @@ msgstr ""
7151
7808
  msgid "View %{view} has not been promoted to %{env}"
7152
7809
  msgstr "La visualizzazione %{view} non è stata avanzata su %{env}"
7153
7810
 
7811
+ msgid "View Subscription Usage"
7812
+ msgstr ""
7813
+
7154
7814
  msgid "View a report of the affected hosts"
7155
7815
  msgstr ""
7156
7816
 
7817
+ msgid "View applicable errata"
7818
+ msgstr ""
7819
+
7820
+ msgid "View by"
7821
+ msgstr ""
7822
+
7157
7823
  msgid "View matching content"
7158
7824
  msgstr ""
7159
7825
 
7160
7826
  msgid "View tasks "
7161
7827
  msgstr ""
7162
7828
 
7163
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7829
+ msgid "View the Content Views page"
7830
+ msgstr ""
7831
+
7832
+ msgid "View the job"
7164
7833
  msgstr ""
7165
7834
 
7166
7835
  msgid "Virtual"
7167
7836
  msgstr "Virtuale"
7168
7837
 
7838
+ msgid "Virtual guests"
7839
+ msgstr ""
7840
+
7841
+ msgid "Virtual host"
7842
+ msgstr ""
7843
+
7169
7844
  msgid "Waiting to start."
7170
7845
  msgstr ""
7171
7846
 
7172
7847
  msgid "Warning"
7173
7848
  msgstr "Avvertenza"
7174
7849
 
7175
- msgid "What's next?"
7176
- msgstr ""
7177
-
7178
7850
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7179
7851
  msgstr ""
7180
7852
 
@@ -7214,6 +7886,9 @@ msgstr ""
7214
7886
  msgid "Whether to include available content attribute in results"
7215
7887
  msgstr ""
7216
7888
 
7889
+ msgid "Whether to turn on Simple Content Access for the organization."
7890
+ msgstr ""
7891
+
7217
7892
  msgid "Workers"
7218
7893
  msgstr ""
7219
7894
 
@@ -7286,9 +7961,6 @@ msgstr ""
7286
7961
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7287
7962
  msgstr ""
7288
7963
 
7289
- msgid "You may want to check the host's content view and lifecycle environment."
7290
- msgstr ""
7291
-
7292
7964
  msgid "You were not allowed to add %s"
7293
7965
  msgstr "Non puoi aggiungere %s"
7294
7966
 
@@ -7310,6 +7982,12 @@ msgstr ""
7310
7982
  msgid "Your search returned no matching "
7311
7983
  msgstr ""
7312
7984
 
7985
+ msgid "Your search returned no matching ${name}."
7986
+ msgstr ""
7987
+
7988
+ msgid "Your search returned no matching DEBs."
7989
+ msgstr ""
7990
+
7313
7991
  msgid "Your search returned no matching Module streams."
7314
7992
  msgstr ""
7315
7993
 
@@ -7322,12 +8000,18 @@ msgstr ""
7322
8000
  msgid "Your search returned no matching hosts."
7323
8001
  msgstr ""
7324
8002
 
8003
+ msgid "Yum"
8004
+ msgstr ""
8005
+
7325
8006
  msgid "Yum Metadata: %s"
7326
8007
  msgstr ""
7327
8008
 
7328
8009
  msgid "a content unit"
7329
8010
  msgstr ""
7330
8011
 
8012
+ msgid "a custom CDN URL"
8013
+ msgstr ""
8014
+
7331
8015
  msgid "a deb package"
7332
8016
  msgstr ""
7333
8017
 
@@ -7415,6 +8099,12 @@ msgstr "esegui l'auto attach delle sottoscrizioni previa registrazione"
7415
8099
  msgid "base url to perform repo discovery on"
7416
8100
  msgstr "url di base sul quale eseguire la scoperta dei repositori"
7417
8101
 
8102
+ msgid "bug fix"
8103
+ msgstr ""
8104
+
8105
+ msgid "bug fixes"
8106
+ msgstr ""
8107
+
7418
8108
  msgid "bulk add filter rules"
7419
8109
  msgstr ""
7420
8110
 
@@ -7478,7 +8168,7 @@ msgstr "non può contenere i filtri dei repositori che non appartengono a questa
7478
8168
  msgid "cannot contain more than %s characters"
7479
8169
  msgstr "non può avere più di %s caratteri"
7480
8170
 
7481
- msgid "checking Candlepin task status"
8171
+ msgid "checking %s task status"
7482
8172
  msgstr ""
7483
8173
 
7484
8174
  msgid "checking Pulp task status"
@@ -7499,9 +8189,6 @@ msgstr ""
7499
8189
  msgid "content release version"
7500
8190
  msgstr "Versione release del contenuto"
7501
8191
 
7502
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7503
- msgstr ""
7504
-
7505
8192
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7506
8193
  msgstr ""
7507
8194
 
@@ -7556,7 +8243,7 @@ msgstr "versioni della visualizzazione del contenuto da confrontare"
7556
8243
  msgid "create a filter for a content view"
7557
8244
  msgstr ""
7558
8245
 
7559
- msgid "deb Packages"
8246
+ msgid "deb, package, package group, or docker tag names"
7560
8247
  msgstr ""
7561
8248
 
7562
8249
  msgid "deb_ids is not an array"
@@ -7583,12 +8270,21 @@ msgstr "descrizione del filtro"
7583
8270
  msgid "description of the repository"
7584
8271
  msgstr ""
7585
8272
 
8273
+ msgid "disk"
8274
+ msgstr ""
8275
+
7586
8276
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7587
8277
  msgstr ""
7588
8278
 
7589
8279
  msgid "enables or disables synchronization"
7590
8280
  msgstr "abilita o disabilita la sincronizzazione"
7591
8281
 
8282
+ msgid "enhancement"
8283
+ msgstr ""
8284
+
8285
+ msgid "enhancements"
8286
+ msgstr ""
8287
+
7592
8288
  msgid "environment"
7593
8289
  msgstr "ambiente"
7594
8290
 
@@ -7712,7 +8408,7 @@ msgstr "id per filtrare il contenuto per"
7712
8408
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7713
8409
  msgstr ""
7714
8410
 
7715
- msgid "initiating Candlepin task"
8411
+ msgid "initiating %s task"
7716
8412
  msgstr ""
7717
8413
 
7718
8414
  msgid "initiating Pulp task"
@@ -7772,9 +8468,6 @@ msgstr "etichetta dell'ambiente"
7772
8468
  msgid "label of the repository"
7773
8469
  msgstr ""
7774
8470
 
7775
- msgid "limit to only repositories of this type"
7776
- msgstr ""
7777
-
7778
8471
  msgid "limit to only repositories with this download policy"
7779
8472
  msgstr ""
7780
8473
 
@@ -7892,9 +8585,6 @@ msgstr "ottieni la cronologia del manifesto per le sottoscrizioni"
7892
8585
  msgid "of environment must be unique within one organization"
7893
8586
  msgstr "ambiente deve essere unico all'interno di una organizzazione"
7894
8587
 
7895
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7896
- msgstr ""
7897
-
7898
8588
  msgid "only show the repositories readable by this user with this username"
7899
8589
  msgstr ""
7900
8590
 
@@ -8006,6 +8696,15 @@ msgstr "root-node di risposte single-resource (opzionale)"
8006
8696
  msgid "rule identifier"
8007
8697
  msgstr "identificatore regole"
8008
8698
 
8699
+ msgid "run job invocation"
8700
+ msgstr ""
8701
+
8702
+ msgid "security advisories"
8703
+ msgstr ""
8704
+
8705
+ msgid "security advisory"
8706
+ msgstr ""
8707
+
8009
8708
  msgid "service level"
8010
8709
  msgstr "livello di servizio"
8011
8710
 
@@ -8060,9 +8759,6 @@ msgstr "i seguenti attributi non possono essere caricati per il provider di Red
8060
8759
  msgid "to"
8061
8760
  msgstr ""
8062
8761
 
8063
- msgid "to update configuration on all hosts, or"
8064
- msgstr ""
8065
-
8066
8762
  msgid "true if the latest version of the component's content view is desired"
8067
8763
  msgstr ""
8068
8764
 
@@ -8075,10 +8771,7 @@ msgstr "vero se questo repositorio può essere pubblicato tramite HTTP"
8075
8771
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8076
8772
  msgstr ""
8077
8773
 
8078
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8079
- msgstr ""
8080
-
8081
- msgid "type of repo"
8774
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8082
8775
  msgstr ""
8083
8776
 
8084
8777
  msgid "types of filters"
@@ -8093,9 +8786,6 @@ msgstr ""
8093
8786
  msgid "update a filter"
8094
8787
  msgstr ""
8095
8788
 
8096
- msgid "update configuration on the hosts manually:"
8097
- msgstr ""
8098
-
8099
8789
  msgid "updating package group..."
8100
8790
  msgstr "aggiornamento gruppo di pacchetti in corso..."
8101
8791
 
@@ -8123,7 +8813,7 @@ msgstr ""
8123
8813
  msgid "view content view tabs."
8124
8814
  msgstr ""
8125
8815
 
8126
- msgid "waiting for Candlepin to finish the task"
8816
+ msgid "waiting for %s to finish the task"
8127
8817
  msgstr ""
8128
8818
 
8129
8819
  msgid "waiting for Pulp to finish the task"