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/es/katello.po CHANGED
@@ -4,29 +4,30 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
+ # fe37ea014ea122db60df81cd86b163af_742ef71 <ba9f59c06b0be83ac3724b1834a4c14b_93939>, 2017
7
8
  # elobato <elobatocs@gmail.com>, 2017
8
- # francis <hackgo@gmail.com>, 2021
9
9
  # Lukáš Zapletal, 2021
10
- # Gustavo Varela <gustavo.varela@gmail.com>, 2022
11
- # Félix Barbeira <fbarbeira@gmail.com>, 2022
12
10
  # Jared Nelson <jared@ajpadilla.com>, 2022
13
11
  # Carmela Rubiños <carmela.rubinos@gmail.com>, 2022
14
12
  # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2022
15
- # Amit Upadhye <aupadhye@redhat.com>, 2022
13
+ # Gustavo Varela <gustavo.varela@gmail.com>, 2022
14
+ # francis <hackgo@gmail.com>, 2022
16
15
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
16
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
17
17
  #
18
18
  msgid ""
19
19
  msgstr ""
20
- "Project-Id-Version: katello 2.5.0\n"
20
+ "Project-Id-Version: katello 2.4.0-RC1\n"
21
21
  "Report-Msgid-Bugs-To: \n"
22
22
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
23
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
23
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
24
24
  "Language-Team: Spanish (https://www.transifex.com/foreman/teams/114/es/)\n"
25
25
  "MIME-Version: 1.0\n"
26
26
  "Content-Type: text/plain; charset=UTF-8\n"
27
27
  "Content-Transfer-Encoding: 8bit\n"
28
28
  "Language: es\n"
29
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
29
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 :"
30
+ " 2;\n"
30
31
 
31
32
  msgid ""
32
33
  "\n"
@@ -34,21 +35,30 @@ msgid ""
34
35
  msgstr ""
35
36
 
36
37
  msgid " %{errata_count} Errata"
37
- msgstr " %{errata_count} Erratas"
38
+ msgstr " %{errata_count} Errata"
38
39
 
39
40
  msgid " %{modulemd_count} Module Stream(s)"
40
- msgstr " %{modulemd_count} Corriente(s) de módulo"
41
+ msgstr " %{modulemd_count} Módulo Flujo(s)"
41
42
 
42
43
  msgid " %{package_count} Package(s)"
43
44
  msgstr " %{package_count} Paquete(s)"
44
45
 
45
46
  msgid " Content view updated"
47
+ msgstr " Vista de contenido actualizada"
48
+
49
+ msgid " DEBs"
46
50
  msgstr ""
47
51
 
48
52
  msgid " Either select the latest content view or the content view version. Cannot set both."
49
53
  msgstr " Seleccione la última vista de contenido o la versión de vista de contenido. No se pueden establecer ambas."
50
54
 
51
55
  msgid " RPMs"
56
+ msgstr " RPMs"
57
+
58
+ msgid " The base path can be a web address or a filesystem location."
59
+ msgstr ""
60
+
61
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
52
62
  msgstr ""
53
63
 
54
64
  msgid " View task details "
@@ -61,15 +71,15 @@ msgid " ago."
61
71
  msgstr ""
62
72
 
63
73
  msgid " and"
64
- msgstr ""
74
+ msgstr " y"
65
75
 
66
76
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
67
77
  msgstr ""
68
78
 
69
- msgid " content view is used in listed component content views. For more information, "
79
+ msgid " content view is used in listed composite content views."
70
80
  msgstr ""
71
81
 
72
- msgid " content view is used in listed composite content views."
82
+ msgid " content view is used in listed content views. For more information, "
73
83
  msgstr ""
74
84
 
75
85
  msgid " environment cannot be set to an environment already on its path"
@@ -81,9 +91,18 @@ msgstr ""
81
91
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
82
92
  msgstr ""
83
93
 
94
+ msgid " or any step on the left."
95
+ msgstr ""
96
+
97
+ msgid " to manage and promote content views, or select a different environment."
98
+ msgstr ""
99
+
84
100
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
85
101
  msgstr ""
86
102
 
103
+ msgid "${option}"
104
+ msgstr "${option}"
105
+
87
106
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
88
107
  msgstr ""
89
108
 
@@ -94,24 +113,25 @@ msgid "${pluralize(versionCount, 'content view version')} in the environments be
94
113
  msgstr ""
95
114
 
96
115
  msgid "${selectedContentType}"
97
- msgstr ""
116
+ msgstr "${selectedContentType}"
98
117
 
99
118
  msgid "${selectedContentType} will appear here when created."
100
119
  msgstr ""
101
120
 
102
121
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
103
- msgstr "%s %s tiene %s hosts y %s grupos de hosts que deberán ser reasociados después de la eliminación. ¿Borrar %s?"
122
+ msgstr "%s %s tiene %s Hosts y %s Hostgroups que necesitarán ser reasociados después de la eliminación. Borrar %s?"
104
123
 
105
124
  msgid "%s Available"
106
125
  msgstr "%s Disponible"
107
126
 
108
127
  msgid "%s Errata"
109
- msgstr "%s Erratas"
128
+ msgstr "%s Errata"
110
129
 
111
130
  msgid "%s Host"
112
131
  msgid_plural "%s Hosts"
113
- msgstr[0] "%s Host"
114
- msgstr[1] "% Hosts"
132
+ msgstr[0] "%s Anfitrión"
133
+ msgstr[1] "%s Anfitriones"
134
+ msgstr[2] "%s Anfitriones"
115
135
 
116
136
  msgid "%s Used"
117
137
  msgstr "%s Usado"
@@ -119,8 +139,11 @@ msgstr "%s Usado"
119
139
  msgid "%s ago"
120
140
  msgstr "Hace %s"
121
141
 
142
+ msgid "%s guests"
143
+ msgstr ""
144
+
122
145
  msgid "%s has already been deleted"
123
- msgstr "%s ya ha sido eliminado"
146
+ msgstr "%s ya se ha eliminado"
124
147
 
125
148
  msgid "%s is not a valid package name"
126
149
  msgstr "%s no es un nombre de paquete válido"
@@ -132,7 +155,7 @@ msgid "%s is required"
132
155
  msgstr ""
133
156
 
134
157
  msgid "%s is unreachable. %s"
135
- msgstr "%s no es accesible. %s"
158
+ msgstr "%s es inalcanzable. %s"
136
159
 
137
160
  msgid "%s must be an array."
138
161
  msgstr "%s debe ser una matriz."
@@ -144,28 +167,28 @@ msgid "%{errata} (%{total} other errata) install canceled"
144
167
  msgstr "%{errata} (%{total} otras erratas) instalación cancelada"
145
168
 
146
169
  msgid "%{errata} (%{total} other errata) install failed"
147
- msgstr "%{errata} (%{total} otras erratas) falló instalación"
170
+ msgstr "%{errata} (%{total} otras erratas) instalación fallida"
148
171
 
149
172
  msgid "%{errata} (%{total} other errata) install timed out"
150
- msgstr "%{errata} (%{total} otras erratas) tiempo de instalación expiró "
173
+ msgstr "%{errata} (%{total} otras erratas) tiempo de instalación agotado"
151
174
 
152
175
  msgid "%{errata} (%{total} other errata) installed"
153
- msgstr "%{errata} (%{total} otras erratas)"
176
+ msgstr "%{errata} (%{total} otras erratas) instalado"
154
177
 
155
178
  msgid "%{errata} erratum install canceled"
156
- msgstr "%{errata} instalación de errata cancelada"
179
+ msgstr "%{errata} errata instalación cancelada"
157
180
 
158
181
  msgid "%{errata} erratum install failed"
159
- msgstr "%{errata} instalación de errata falló"
182
+ msgstr "%{errata} erratum install failed"
160
183
 
161
184
  msgid "%{errata} erratum install timed out"
162
- msgstr "Tiempo de espera de instalación de errata %{errata} terminó"
185
+ msgstr "%{errata} erratum install timed out"
163
186
 
164
187
  msgid "%{errata} erratum installed"
165
188
  msgstr "%{errata} errata instalada"
166
189
 
167
190
  msgid "%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content."
168
- msgstr "%{expiring_subs} suscripciones en %{subject} caducarán en menos de %{days} días. Renuévelas antes de que caduquen para asegurarse de que sus hosts sigan recibiendo contenido."
191
+ msgstr "%{expiring_subs} suscripciones en %{subject} van a caducar en menos de %{days} días. Renuévelas antes de que caduquen para garantizar que sus anfitriones sigan recibiendo contenidos."
169
192
 
170
193
  msgid "%{group} (%{total} other package groups)"
171
194
  msgstr "%{group} (%{total} otros grupos de paquetes)"
@@ -174,70 +197,70 @@ msgid "%{group} (%{total} other package groups) install canceled"
174
197
  msgstr "%{group} (%{total} otros grupos de paquetes) instalación cancelada"
175
198
 
176
199
  msgid "%{group} (%{total} other package groups) install failed"
177
- msgstr "%{group} (%{total} otros grupos de paquetes) falló instalación"
200
+ msgstr "%{group} (%{total} otros grupos de paquetes) instalación fallida"
178
201
 
179
202
  msgid "%{group} (%{total} other package groups) install timed out"
180
- msgstr "%{group} (%{total} otros grupos de paquetes) tiempo de espera de instalación terminó"
203
+ msgstr "%{group} (%{total} otros grupos de paquetes) instalación finalizada"
181
204
 
182
205
  msgid "%{group} (%{total} other package groups) installed"
183
206
  msgstr "%{group} (%{total} otros grupos de paquetes) instalados"
184
207
 
185
208
  msgid "%{group} (%{total} other package groups) remove canceled"
186
- msgstr "%{group} (%{total} otros grupos de paquetes) remoción cancelada"
209
+ msgstr "%{group} (%{total} otros grupos de paquetes) eliminar cancelado"
187
210
 
188
211
  msgid "%{group} (%{total} other package groups) remove failed"
189
- msgstr "%{group} (%{total} otros grupos de paquetes) falló la remoción"
212
+ msgstr "%{group} (%{total} otros grupos de paquetes) eliminación fallida"
190
213
 
191
214
  msgid "%{group} (%{total} other package groups) remove timed out"
192
- msgstr "%{group} (%{total} otros grupos de paquetes) tiempo de espera para remoción terminó"
215
+ msgstr "%{group} (%{total} otros grupos de paquetes) remove timed out"
193
216
 
194
217
  msgid "%{group} (%{total} other package groups) removed"
195
- msgstr "%{group} (%{total} otros grupos de paquetes) retirados "
218
+ msgstr "%{group} (%{total} otros grupos de paquetes) eliminado"
196
219
 
197
220
  msgid "%{group} (%{total} other package groups) update canceled"
198
- msgstr "%{group} (%{total} otros grupos de paquetes) actualización cancelada"
221
+ msgstr "%{group} (%{total} otros grupos de paquetes) actualización cancelada"
199
222
 
200
223
  msgid "%{group} (%{total} other package groups) update failed"
201
- msgstr "%{group} (%{total} otros grupos de paquetes) falló actualización"
224
+ msgstr "%{group} (%{total} otros grupos de paquetes) actualización fallida"
202
225
 
203
226
  msgid "%{group} (%{total} other package groups) update timed out"
204
- msgstr "%{group} (%{total} otros grupos de paquetes) tiempo de espera para la actualización terminó"
227
+ msgstr "%{group} (%{total} otros grupos de paquetes) update timed out"
205
228
 
206
229
  msgid "%{group} (%{total} other package groups) updated"
207
- msgstr "%{group} (%{total} otros grupos de paquetes) actualizados"
230
+ msgstr "%{group} (%{total} otros grupos de paquetes) actualizado"
208
231
 
209
232
  msgid "%{group} package group install canceled"
210
- msgstr "Instalación del grupo de paquetes %{group} cancelada"
233
+ msgstr "%{group} grupo de paquetes instalación cancelada"
211
234
 
212
235
  msgid "%{group} package group install failed"
213
- msgstr "%{group} instalación de grupo de paquetes falló"
236
+ msgstr "%{group} fallo en la instalación del grupo de paquetes"
214
237
 
215
238
  msgid "%{group} package group install timed out"
216
- msgstr "%{group} instalación de grupo de paquetes se detuvo"
239
+ msgstr "%{group} se ha agotado el tiempo de instalación del grupo de paquetes"
217
240
 
218
241
  msgid "%{group} package group installed"
219
242
  msgstr "%{group} grupo de paquetes instalado"
220
243
 
221
244
  msgid "%{group} package group remove canceled"
222
- msgstr "Remoción del grupo de paquetes %{group} cancelada"
245
+ msgstr "%{group} paquete grupo eliminar cancelado"
223
246
 
224
247
  msgid "%{group} package group remove failed"
225
- msgstr "%{group} retiro de grupo de paquetes falló"
248
+ msgstr "%{group} fallo en la eliminación del grupo de paquetes"
226
249
 
227
250
  msgid "%{group} package group remove timed out"
228
- msgstr "%{group} tiempo de espera para retirar grupo de paquetes terminó"
251
+ msgstr "%{group} se ha agotado el tiempo para eliminar el grupo de paquetes"
229
252
 
230
253
  msgid "%{group} package group removed"
231
- msgstr "%{group} grupo de paquetes retirado"
254
+ msgstr "%{group} grupo de paquetes eliminado"
232
255
 
233
256
  msgid "%{group} package group update canceled"
234
- msgstr "Actualización del grupo de paquetes %{group} cancelada"
257
+ msgstr "%{group} actualización del grupo de paquetes cancelada"
235
258
 
236
259
  msgid "%{group} package group update failed"
237
- msgstr "%{group} actualización de grupo de paquetes falló"
260
+ msgstr "%{group} Error en la actualización del grupo de paquetes"
238
261
 
239
262
  msgid "%{group} package group update timed out"
240
- msgstr "%{group} tiempo de espera para la actualización de grupo de paquetes terminó"
263
+ msgstr "%{group} actualización de grupo de paquetes fuera de plazo"
241
264
 
242
265
  msgid "%{group} package group updated"
243
266
  msgstr "%{group} grupo de paquetes actualizado"
@@ -246,67 +269,67 @@ msgid "%{package} (%{total} other packages)"
246
269
  msgstr "%{package} (%{total} otros paquetes)"
247
270
 
248
271
  msgid "%{package} (%{total} other packages) install canceled"
249
- msgstr " %{package} (%{total} otros paquetes) instalación cancelada"
272
+ msgstr "%{package} (%{total} otros paquetes) instalación cancelada"
250
273
 
251
274
  msgid "%{package} (%{total} other packages) install failed"
252
- msgstr "%{package} (%{total} otros paquetes) falló la instalación"
275
+ msgstr "%{package} (%{total} otros paquetes) instalación fallida"
253
276
 
254
277
  msgid "%{package} (%{total} other packages) install timed out"
255
- msgstr "%{package} (%{total} otros paquetes) tiempo de espera para instalación terminó"
278
+ msgstr "%{package} (%{total} otros paquetes) instalación finalizada"
256
279
 
257
280
  msgid "%{package} (%{total} other packages) installed"
258
281
  msgstr "%{package} (%{total} otros paquetes) instalados"
259
282
 
260
283
  msgid "%{package} (%{total} other packages) remove canceled"
261
- msgstr "%{package} (%{total} otros paquetes) remoción cancelada"
284
+ msgstr "%{package} (%{total} otros paquetes) eliminar cancelado"
262
285
 
263
286
  msgid "%{package} (%{total} other packages) remove failed"
264
- msgstr "%{package} (%{total} otros paquetes) falló la remoción"
287
+ msgstr "%{package} (%{total} otros paquetes) remove failed"
265
288
 
266
289
  msgid "%{package} (%{total} other packages) remove timed out"
267
- msgstr "%{package} (%{total} otros paquetes) tiempo de espera para remoción terminó"
290
+ msgstr "%{package} (%{total} otros paquetes) remove timed out"
268
291
 
269
292
  msgid "%{package} (%{total} other packages) removed"
270
- msgstr "%{package} (%{total} otros paquetes) retirados"
293
+ msgstr "%{package} (%{total} otros paquetes) eliminado"
271
294
 
272
295
  msgid "%{package} (%{total} other packages) update canceled"
273
- msgstr " %{package} (%{total} otros paquetes) actualización cancelada"
296
+ msgstr "%{package} (%{total} otros paquetes) actualización cancelada"
274
297
 
275
298
  msgid "%{package} (%{total} other packages) update failed"
276
- msgstr "%{package} (%{total} otros paquetes) falló actualización"
299
+ msgstr "%{package} (%{total} otros paquetes) actualización fallida"
277
300
 
278
301
  msgid "%{package} (%{total} other packages) update timed out"
279
- msgstr "%{package} (%{total} otros paquetes) tiempo de espera para actualización terminó"
302
+ msgstr "%{package} (%{total} otros paquetes) update timed out"
280
303
 
281
304
  msgid "%{package} (%{total} other packages) updated"
282
- msgstr "%{package} (%{total} otros paquetes) actualizados"
305
+ msgstr "%{package} (%{total} otros paquetes) actualizado"
283
306
 
284
307
  msgid "%{package} package install canceled"
285
- msgstr " %{package} instalación de paquetes cancelada"
308
+ msgstr "%{package} paquete instalar cancelado"
286
309
 
287
310
  msgid "%{package} package install timed out"
288
- msgstr "%{package} tiempo de espera para instalación de paquetes terminó"
311
+ msgstr "%{package} se ha agotado el tiempo de instalación del paquete"
289
312
 
290
313
  msgid "%{package} package remove canceled"
291
- msgstr " %{package} remoción de paquetes cancelada"
314
+ msgstr "%{package} paquete eliminar cancelado"
292
315
 
293
316
  msgid "%{package} package remove failed"
294
- msgstr "%{package} remoción de paquetes falló"
317
+ msgstr "%{package} fallo en la eliminación del paquete"
295
318
 
296
319
  msgid "%{package} package remove timed out"
297
- msgstr "%{package} tiempo de espera para remoción de paquetes terminó"
320
+ msgstr "%{package} Se ha agotado el tiempo de espera para eliminar el paquete"
298
321
 
299
322
  msgid "%{package} package removed"
300
- msgstr "%{package} paquete retirado"
323
+ msgstr "%{package} paquete eliminado"
301
324
 
302
325
  msgid "%{package} package update canceled"
303
- msgstr "%{package} actualización de paquetes cancelada"
326
+ msgstr "%{package} actualización del paquete cancelada"
304
327
 
305
328
  msgid "%{package} package update failed"
306
- msgstr "%{package} actualización de paquetes falló"
329
+ msgstr "%{package} Error en la actualización del paquete"
307
330
 
308
331
  msgid "%{package} package update timed out"
309
- msgstr "%{package} tiempo de espera de actualización de paquetes terminó"
332
+ msgstr "%{package} actualización del paquete fuera de plazo"
310
333
 
311
334
  msgid "%{package} package updated"
312
335
  msgstr "%{package} paquete actualizado"
@@ -315,20 +338,41 @@ msgid "%{sla}"
315
338
  msgstr "%{sla}"
316
339
 
317
340
  msgid "%{subject}'s disk is %{percentage} full. Since this proxy is running Pulp, it needs disk space to publish content views. Please ensure the disk does not get full."
318
- msgstr "El disco de %{subject} está lleno al %{percentage}. Como este proxy está ejecutando Pulp, necesita espacio en el disco para publicar las vistas del contenido. Asegúrese de que el disco no se llene."
341
+ msgstr "%{subject}está %{percentage} lleno. Como este proxy está ejecutando Pulp, necesita espacio en disco para publicar vistas de contenido. Por favor, asegúrese de que el disco no se llene."
319
342
 
320
343
  msgid "%{unused_substitutions} cannot be specified for %{content_name} as that information is not substitutable in %{content_url} "
321
- msgstr "No se puede especificar %{unused_substitutions} para %{content_name} ya que esa información no es sustituible en %{content_url} "
344
+ msgstr "%{unused_substitutions} no se puede especificar para %{content_name} ya que esa información no es sustituible en %.{content_url} "
322
345
 
323
346
  msgid "%{used} of %{total}"
324
347
  msgstr "%{used} de %{total}"
325
348
 
326
349
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
327
- msgstr "%{view_label} no pudo ser promovida a %{environment_label} porque la vista de contenido y el entorno no están en la misma organización."
350
+ msgstr "¡%{view_label} no pudo ser promovido a %{environment_label} porque la vista de contenido y el entorno no están en la misma organización!"
351
+
352
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
353
+ msgstr ""
354
+
355
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
356
+ msgstr ""
357
+
358
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
359
+ msgstr ""
360
+
361
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
362
+ msgstr ""
363
+
364
+ 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. "
365
+ msgstr ""
366
+
367
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
368
+ msgstr ""
328
369
 
329
370
  msgid "(Orphaned)"
330
371
  msgstr "(Huérfanos)"
331
372
 
373
+ msgid "(unset)"
374
+ msgstr ""
375
+
332
376
  msgid ", and"
333
377
  msgstr ", y"
334
378
 
@@ -336,27 +380,27 @@ msgid ", must be unique to major and version id version."
336
380
  msgstr ", debe ser único para la versión principal y la versión de ID de la versión."
337
381
 
338
382
  msgid ": '%s' is a built-in environment"
339
- msgstr ": '%s' es un entorno construido"
383
+ msgstr ": '%s' es un entorno incorporado"
340
384
 
341
385
  msgid ":a_resource identifier"
342
386
  msgstr "Identificador: a_resource"
343
387
 
344
388
  msgid "<b>PROMOTION</b> SUMMARY"
345
- msgstr "RESUMEN DE <b>PROMOCIÓN</b>"
389
+ msgstr "<b>PROMOCIÓN</b> RESUMEN"
346
390
 
347
391
  msgid "<b>SYNC</b> SUMMARY"
348
- msgstr "RESUMEN DE <b>SINCRONIZACIÓN</b>"
392
+ msgstr "<b>SYNC</b> RESUMEN"
349
393
 
350
394
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
351
- msgstr "Ya existe una versión CV con la misma versión principal y secundaria (%{major}.%{minor})"
395
+ msgstr "Ya existe una versión CV con la misma versión mayor y menor (%{major}.%{minor})"
352
396
 
353
397
  msgid "A Pool and its Subscription cannot belong to different organizations"
354
398
  msgstr ""
355
399
 
356
400
  msgid "A backend service [ %s ] is unreachable"
357
- msgstr "No se puede acceder a un servicio de segundo plano [ %s ]"
401
+ msgstr "Un servicio backend [ %s ] es inalcanzable"
358
402
 
359
- msgid "A content view can be added by using the \"Create content view\" button above."
403
+ msgid "A content view can be added by using the \"Create content view\" button below."
360
404
  msgstr ""
361
405
 
362
406
  msgid "A content_type must be provided."
@@ -377,6 +421,12 @@ msgstr ""
377
421
  msgid "A post-promotion summary of hosts with installable errata"
378
422
  msgstr "Un resumen de pospromoción de hosts con erratas instalables"
379
423
 
424
+ msgid "A remote execution job is in progress"
425
+ msgstr ""
426
+
427
+ msgid "A remote execution job is in progress."
428
+ msgstr ""
429
+
380
430
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
381
431
  msgstr "Un nivel de servicio para el proceso de autoreparación, p. ej., AUTOSOPORTE"
382
432
 
@@ -429,7 +479,7 @@ msgid "Activation Keys"
429
479
  msgstr "Llaves de activación"
430
480
 
431
481
  msgid "Activation key"
432
- msgstr ""
482
+ msgstr "Clave de activación"
433
483
 
434
484
  msgid "Activation key ID"
435
485
  msgstr "ID de llave de activación"
@@ -462,7 +512,10 @@ msgid "Add"
462
512
  msgstr "Añadir"
463
513
 
464
514
  msgid "Add Bookmark"
465
- msgstr "Añadir marcador"
515
+ msgstr "Añadir a favoritos"
516
+
517
+ msgid "Add DEB rule"
518
+ msgstr ""
466
519
 
467
520
  msgid "Add RPM rule"
468
521
  msgstr ""
@@ -473,15 +526,15 @@ msgstr "Añadir suscripciones"
473
526
  msgid "Add a subscription to a host"
474
527
  msgstr "Añadir una suscripción a un host"
475
528
 
476
- msgid "Add component"
477
- msgstr ""
478
-
479
- msgid "Add component content views"
529
+ msgid "Add an alternate content source"
480
530
  msgstr ""
481
531
 
482
532
  msgid "Add components to the content view"
483
533
  msgstr "Añadir componentes a la vista de contenido"
484
534
 
535
+ msgid "Add content view"
536
+ msgstr ""
537
+
485
538
  msgid "Add content views"
486
539
  msgstr ""
487
540
 
@@ -494,9 +547,6 @@ msgstr ""
494
547
  msgid "Add filter rule"
495
548
  msgstr ""
496
549
 
497
- msgid "Add filters using the 'Add filter' button above."
498
- msgstr ""
499
-
500
550
  msgid "Add host to collections"
501
551
  msgstr ""
502
552
 
@@ -536,12 +586,18 @@ msgstr "Añadir las suscripciones consumidas por un manifiesto de la Administrac
536
586
  msgid "Add subscriptions to one or more hosts"
537
587
  msgstr "Añadir suscripciones a uno o más hosts"
538
588
 
539
- msgid "Add to this filter using the 'Add RPM rule' button."
589
+ msgid "Add to a host collection"
590
+ msgstr ""
591
+
592
+ msgid "Add to this filter using the 'Add Deb rule' button."
540
593
  msgstr ""
541
594
 
542
595
  msgid "Add to this filter using the 'Add filter rule' button."
543
596
  msgstr ""
544
597
 
598
+ msgid "Add-ons"
599
+ msgstr ""
600
+
545
601
  msgid "Added"
546
602
  msgstr ""
547
603
 
@@ -560,6 +616,9 @@ msgstr ""
560
616
  msgid "Addons"
561
617
  msgstr "Complementos"
562
618
 
619
+ msgid "Affected Repositories"
620
+ msgstr "Repositorios afectados"
621
+
563
622
  msgid "Affected repositories"
564
623
  msgstr ""
565
624
 
@@ -567,7 +626,7 @@ msgid "After generating the incremental update, apply the changes to the specifi
567
626
  msgstr "Después de generar la actualización incremental, aplique los cambios a los hosts especificados. Actualmente solo se admiten erratas."
568
627
 
569
628
  msgid "Agent action"
570
- msgstr ""
629
+ msgstr "Acción del agente"
571
630
 
572
631
  msgid "All"
573
632
  msgstr "Todos"
@@ -590,6 +649,9 @@ msgstr ""
590
649
  msgid "All subpaths must have a slash at the end and none at the front"
591
650
  msgstr ""
592
651
 
652
+ msgid "All up to date"
653
+ msgstr ""
654
+
593
655
  msgid "All versions"
594
656
  msgstr ""
595
657
 
@@ -599,6 +661,9 @@ msgstr ""
599
661
  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)"
600
662
  msgstr ""
601
663
 
664
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
665
+ msgstr ""
666
+
602
667
  msgid "Allow deleting repositories in published content views"
603
668
  msgstr ""
604
669
 
@@ -608,6 +673,9 @@ msgstr ""
608
673
  msgid "Allow hosts to re-register themselves only when they are in build mode"
609
674
  msgstr ""
610
675
 
676
+ msgid "Allow multiple content views"
677
+ msgstr ""
678
+
611
679
  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."
612
680
  msgstr ""
613
681
 
@@ -617,6 +685,9 @@ msgstr ""
617
685
  msgid "Alter a host's host collections"
618
686
  msgstr ""
619
687
 
688
+ msgid "Alternate Content Source HTTP Proxy"
689
+ msgstr ""
690
+
620
691
  msgid "Alternate Content Sources"
621
692
  msgstr ""
622
693
 
@@ -629,11 +700,17 @@ msgstr ""
629
700
  msgid "Alternate content source deleted"
630
701
  msgstr ""
631
702
 
632
- msgid "Alternate content sources"
703
+ msgid "Alternate content source edited"
704
+ msgstr ""
705
+
706
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
707
+ msgstr ""
708
+
709
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
633
710
  msgstr ""
634
711
 
635
712
  msgid "Always Use Latest (currently %{version})"
636
- msgstr "Siempre usar el último (actualmente %{version})"
713
+ msgstr "Utilice siempre lo último (actualmente %{version})"
637
714
 
638
715
  msgid "Always update to latest version"
639
716
  msgstr ""
@@ -641,21 +718,21 @@ msgstr ""
641
718
  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."
642
719
  msgstr "Cantidad de trabajadores en el grupo para manejar la ejecución de las tareas relacionadas con el host. Cuando se establece en 0, se usará la cola por defecto en su lugar. Se requiere el reinicio del servicio de dynflowd/foreman-tasks."
643
720
 
644
- msgid "An alternate content source can be added by using the \"Add source\" button above."
721
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
645
722
  msgstr ""
646
723
 
647
724
  msgid "An environment is missing a prior"
648
725
  msgstr "A un entorno le falta algo anterior"
649
726
 
650
727
  msgid "An error occurred during content removal. Could not find repository with id: %s"
651
- msgstr "Se produjo un error durante la eliminación del contenido. No se pudo encontrar el repositorio con id: %s"
728
+ msgstr "Se ha producido un error durante la eliminación del contenido. No se ha podido encontrar el repositorio con id: %s"
652
729
 
653
730
  msgid ""
654
731
  "An error occurred during the sync \n"
655
732
  "%{error_message}"
656
733
  msgstr ""
657
- "Se produjo un error durante la sincronización \n"
658
- "%{error_message}."
734
+ "Se ha producido un error durante la sincronización \n"
735
+ "%{error_message}"
659
736
 
660
737
  msgid ""
661
738
  "An error occurred during upload \n"
@@ -663,14 +740,11 @@ msgid ""
663
740
  msgstr ""
664
741
 
665
742
  msgid "Another component already includes content view with ID %s"
666
- msgstr "Otro componente ya incluye la vista de contenido con ID %s"
743
+ msgstr "Otro componente ya incluye vista de contenido con ID %s"
667
744
 
668
745
  msgid "Ansible Collection"
669
746
  msgstr "Colección de Ansible"
670
747
 
671
- msgid "Ansible Collection Details"
672
- msgstr "Detalles de la colección de Ansible"
673
-
674
748
  msgid "Ansible Collections"
675
749
  msgstr "Colecciones de Ansible"
676
750
 
@@ -683,14 +757,20 @@ msgstr ""
683
757
  msgid "Applicability Batch Size"
684
758
  msgstr "Aplicabilidad de tamaño del lote"
685
759
 
760
+ msgid "Applicable"
761
+ msgstr "Aplicable"
762
+
686
763
  msgid "Applicable Content Hosts"
687
- msgstr "Hosts de contenido aplicables"
764
+ msgstr "Alojamientos de contenidos aplicables"
765
+
766
+ msgid "Applicable errata apply to at least one package installed on the host."
767
+ msgstr ""
688
768
 
689
769
  msgid "Application"
690
770
  msgstr "Aplicación"
691
771
 
692
772
  msgid "Apply"
693
- msgstr "Aplicar"
773
+ msgstr "Solicitar"
694
774
 
695
775
  msgid "Apply Erratum"
696
776
  msgstr ""
@@ -719,6 +799,9 @@ msgstr "Arquitectura"
719
799
  msgid "Architecture of content in the repository"
720
800
  msgstr ""
721
801
 
802
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
803
+ msgstr ""
804
+
722
805
  msgid "Architecture(s)"
723
806
  msgstr "Arquitectura(s)"
724
807
 
@@ -775,8 +858,9 @@ msgstr ""
775
858
 
776
859
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
777
860
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
778
- msgstr[0] "Asignar %{count} host sin %{taxonomy_single} a %{taxonomy_name}"
779
- msgstr[1] "Asignar todos los %{count} host sin %{taxonomy_single} a %{taxonomy_name}"
861
+ msgstr[0] "Asignar el host %{count} sin %{taxonomy_single} a %{taxonomy_name}"
862
+ msgstr[1] "Asignar todos los hosts %{count} sin %{taxonomy_single} a %.{taxonomy_name}"
863
+ msgstr[2] "Asignar todos los hosts %{count} sin %{taxonomy_single} a %.{taxonomy_name}"
780
864
 
781
865
  msgid "Assign the environment and content view to one or more hosts"
782
866
  msgstr "Asignar la vista del entorno y el contenido a uno o más hosts"
@@ -818,16 +902,19 @@ msgid "Attach subscriptions to %s"
818
902
  msgstr "Adjuntar suscripciones a %s"
819
903
 
820
904
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
821
- msgstr "Intentó destruir %s consumidores de candlepin, pero el consumidor no existe en candlepin"
905
+ msgstr "Intentado destruir el consumidor %s de candlepin, pero el consumidor no existe en candlepin"
822
906
 
823
907
  msgid "Auth URL requires Auth token be set."
824
908
  msgstr ""
825
909
 
910
+ msgid "Authentication type"
911
+ msgstr ""
912
+
826
913
  msgid "Author"
827
914
  msgstr "Autor"
828
915
 
829
916
  msgid "Auto Publish - Triggered by '%s'"
830
- msgstr "Autopublicación - activada por '%s'"
917
+ msgstr "Publicación automática - Activada por '%s'"
831
918
 
832
919
  msgid "Auto attach subscriptions"
833
920
  msgstr "Autoagregar suscripciones"
@@ -844,6 +931,9 @@ msgstr "Autobúsqueda"
844
931
  msgid "Autosearch delay"
845
932
  msgstr "Retraso de la autobúsqueda"
846
933
 
934
+ msgid "Available"
935
+ msgstr "Disponible"
936
+
847
937
  msgid "Available Entitlements"
848
938
  msgstr "Derechos disponibles"
849
939
 
@@ -851,11 +941,17 @@ msgid "Available Repositories"
851
941
  msgstr "Repositorios disponibles"
852
942
 
853
943
  msgid "Available Schema Versions"
854
- msgstr "Versiones de esquema disponibles"
944
+ msgstr "Versiones disponibles del esquema"
945
+
946
+ msgid "Back"
947
+ msgstr "Atrás"
855
948
 
856
949
  msgid "Backend System Status"
857
950
  msgstr "Estado de sistema de segundo plano"
858
951
 
952
+ msgid "Base URL"
953
+ msgstr ""
954
+
859
955
  msgid "Base URL for finding alternate content"
860
956
  msgstr ""
861
957
 
@@ -901,6 +997,9 @@ msgstr "Guardar esta búsqueda en marcadores"
901
997
  msgid "Bookmarks marked as public are available to all users"
902
998
  msgstr ""
903
999
 
1000
+ msgid "Both"
1001
+ msgstr ""
1002
+
904
1003
  msgid "Both major and minor parameters have to be used to override a CV version"
905
1004
  msgstr "Tanto los parámetros principales como los secundarios deben ser usados para anular una versión CV"
906
1005
 
@@ -913,6 +1012,12 @@ msgstr "Corrección de errores"
913
1012
  msgid "Bugs"
914
1013
  msgstr ""
915
1014
 
1015
+ msgid "Bulk alternate content source delete has started."
1016
+ msgstr ""
1017
+
1018
+ msgid "Bulk alternate content source refresh has started."
1019
+ msgstr ""
1020
+
916
1021
  msgid "Bulk generate applicability for host %s"
917
1022
  msgstr ""
918
1023
 
@@ -941,19 +1046,19 @@ msgid "CDN configuration type. One of %s."
941
1046
  msgstr ""
942
1047
 
943
1048
  msgid "CDN loading error: %s not found"
944
- msgstr "Error al cargar CDN: %s no se encontró"
1049
+ msgstr "Error de carga CDN: %s no encontrado"
945
1050
 
946
1051
  msgid "CDN loading error: access denied to %s"
947
- msgstr "Error en carga de CDN: acceso denegado para %s"
1052
+ msgstr "Error de carga de CDN: acceso denegado a %s"
948
1053
 
949
1054
  msgid "CDN loading error: access forbidden to %s"
950
- msgstr "Error de carga CDN: prohibido el acceso a %s"
1055
+ msgstr "Error de carga de CDN: acceso prohibido a %s"
951
1056
 
952
1057
  msgid "CVE identifier"
953
1058
  msgstr "Identificador CVE"
954
1059
 
955
1060
  msgid "CVEs"
956
- msgstr "CVE"
1061
+ msgstr "CVEs"
957
1062
 
958
1063
  msgid "Calculate Applicable Errata based on a particular Content View"
959
1064
  msgstr "Calcular erratas aplicables según una vista de contenido específica"
@@ -968,7 +1073,7 @@ msgid "Can communicate with the Red Hat Portal for subscriptions."
968
1073
  msgstr ""
969
1074
 
970
1075
  msgid "Can not add product %s because it is disabled."
971
- msgstr "No se puede añadir %s de producto porque está desactivado."
1076
+ msgstr "No se puede añadir el producto %s porque está desactivado."
972
1077
 
973
1078
  msgid "Can only destroy on Yum Repositories."
974
1079
  msgstr "Solo puede destruir repositorios Yum."
@@ -980,7 +1085,7 @@ msgid "Can only upload to Yum Repositories."
980
1085
  msgstr "Solo se puede cargar en repositorios Yum."
981
1086
 
982
1087
  msgid "Can't update the '%s' environment"
983
- msgstr "No se puede actualizar el entorno '%s'"
1088
+ msgstr "No se puede actualizar el entorno '%s'."
984
1089
 
985
1090
  msgid "Cancel"
986
1091
  msgstr "Cancelar"
@@ -997,6 +1102,9 @@ msgstr "Cancelado"
997
1102
  msgid "Cancelled."
998
1103
  msgstr "Cancelado"
999
1104
 
1105
+ msgid "Candlepin"
1106
+ msgstr ""
1107
+
1000
1108
  msgid "Candlepin Event"
1001
1109
  msgstr "Evento de Candlepin"
1002
1110
 
@@ -1004,16 +1112,19 @@ msgid "Candlepin ID of pool to add"
1004
1112
  msgstr "ID Candlepin de grupo a añadir"
1005
1113
 
1006
1114
  msgid "Candlepin consumer %s has already been removed"
1007
- msgstr "El consumidor %s de Candlepin ya se ha eliminado."
1115
+ msgstr "El consumidor de Candlepin %s ya ha sido eliminado"
1008
1116
 
1009
1117
  msgid "Candlepin is not running properly"
1010
1118
  msgstr "Candlepin no está funcionando correctamente"
1011
1119
 
1120
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1121
+ msgstr ""
1122
+
1012
1123
  msgid "Cannot add %s repositories to a content view."
1013
- msgstr "No se pueden agregar %s repositorios a una vista de contenido"
1124
+ msgstr "No se pueden añadir repositorios %s a una vista de contenido."
1014
1125
 
1015
1126
  msgid "Cannot add a repository from an Organization other than %s."
1016
- msgstr "No se puede agregar un repositorio de una organización a otra %s."
1127
+ msgstr "No se puede añadir un repositorio de una Organización que no sea %s."
1017
1128
 
1018
1129
  msgid "Cannot add component versions to a non-composite content view"
1019
1130
  msgstr "No se pueden añadir versiones de componentes a una vista de contenido no compuesta"
@@ -1027,6 +1138,9 @@ msgstr "No se pueden agregar versiones compuestas a una vista de contenido compu
1027
1138
  msgid "Cannot add default content view to composite content view"
1028
1139
  msgstr "No se puede añadir la vista de contenido predeterminada a una vista de contenido compuesta"
1029
1140
 
1141
+ msgid "Cannot add generated content view versions to composite content view"
1142
+ msgstr ""
1143
+
1030
1144
  msgid "Cannot add repositories to a composite content view"
1031
1145
  msgstr "No se pueden añadir repositorios a una vista de contenido compuesta"
1032
1146
 
@@ -1040,16 +1154,16 @@ msgid "Cannot clone into the Default Content View"
1040
1154
  msgstr "No se puede clonar en la vista de contenido por defecto"
1041
1155
 
1042
1156
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
1043
- msgstr "No se puede borrar '%{view}' debido a la asociación de %{dependent}: %{names}."
1157
+ msgstr "No se puede eliminar '%{view}' debido a %{dependent} asociado : %{names}."
1044
1158
 
1045
1159
  msgid "Cannot delete Red Hat product: %{product}"
1046
- msgstr "No se puede eliminar el producto de Red Hat: %{product}"
1160
+ msgstr "No se puede eliminar el producto Red Hat: %{product}"
1047
1161
 
1048
1162
  msgid "Cannot delete from %s, view does not exist there."
1049
- msgstr "No se puede borrar desde %s, la vista no existe allí."
1163
+ msgstr "No se puede borrar de %s, la vista no existe allí."
1050
1164
 
1051
1165
  msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
1052
- msgstr "No se puede borrar el producto con los repositorios publicados en una vista de contenido. Producto: %{product}, %{view_versions}"
1166
+ msgstr "No se puede eliminar producto con repositorios publicados en una vista de contenido. Producto: %{product}, %{view_versions}"
1053
1167
 
1054
1168
  msgid "Cannot delete provider with attached products"
1055
1169
  msgstr "No se puede borrar proveedor con productos vinculados"
@@ -1064,13 +1178,13 @@ msgid "Cannot delete the last Location."
1064
1178
  msgstr ""
1065
1179
 
1066
1180
  msgid "Cannot delete version while it is in environment %s"
1067
- msgstr "No se puede eliminar una versión cuando esté en el entorno %s"
1181
+ msgstr "No se puede eliminar la versión mientras está en el entorno %s"
1068
1182
 
1069
1183
  msgid "Cannot delete version while it is in environments: %s"
1070
- msgstr "No se puede eliminar una versión que esté en los entornos: %s"
1184
+ msgstr "No se puede eliminar la versión mientras está en entornos: %s"
1071
1185
 
1072
1186
  msgid "Cannot delete version while it is in use by composite content views: %s"
1073
- msgstr "No se puede eliminar la versión mientras está siendo utilizada por las vistas de contenido compuestas: %s."
1187
+ msgstr "No se puede eliminar la versión mientras está en uso por las vistas de contenido compuesto: %s"
1074
1188
 
1075
1189
  msgid "Cannot delete view while it exists in environments"
1076
1190
  msgstr "No se puede borrar vista mientras existan entornos"
@@ -1085,7 +1199,7 @@ msgid "Cannot pass content units without content unit type"
1085
1199
  msgstr "No puede pasar las unidades de contenido sin el tipo de unidad de contenido"
1086
1200
 
1087
1201
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1088
- msgstr "No se puede realizar una actualización incremental en una versión de vista de contenido compuesta (%{name} versión %{version}"
1202
+ msgstr "No se puede realizar una actualización incremental en una versión de vista de contenido compuesto (%{name} version version %{version}"
1089
1203
 
1090
1204
  msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1091
1205
  msgstr ""
@@ -1103,16 +1217,16 @@ msgid "Cannot publish default content view"
1103
1217
  msgstr "No se puede publicar la vista de contenido predeterminada"
1104
1218
 
1105
1219
  msgid "Cannot register a system to the '%s' environment"
1106
- msgstr "No se puede registrar un sistema en el entorno '%s'"
1220
+ msgstr "No se puede registrar un sistema en el entorno '%s'."
1107
1221
 
1108
1222
  msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
1109
- msgstr "No se puede eliminar '%{view}' del entorno '%{env}' debido a los %{dependent} asociados: %{names}."
1223
+ msgstr "No se puede eliminar '%{view}' del entorno '%{env}' debido a que está asociado %{dependent}: %{names}."
1110
1224
 
1111
1225
  msgid "Cannot remove content from a non-custom repository"
1112
1226
  msgstr "No se puede eliminar el contenido desde un repositorio no personalizado"
1113
1227
 
1114
1228
  msgid "Cannot remove content view from environment. Content view '%{view}' is not in lifecycle environment '%{env}'."
1115
- msgstr "No se puede retirar vista de contenido del entorno. La vista de contenido '%{view}' no está en entorno de ciclo de vida '%{env}'."
1229
+ msgstr "No se puede eliminar la vista de contenido del entorno. La vista de contenido '%{view}' no está en el entorno del ciclo de vida '%{env}'."
1116
1230
 
1117
1231
  msgid "Cannot set attribute %{attr} for content type %{type}"
1118
1232
  msgstr "No se puede establecer el atributo %{attr} para el tipo de contenido %{type}"
@@ -1120,8 +1234,8 @@ msgstr "No se puede establecer el atributo %{attr} para el tipo de contenido %{t
1120
1234
  msgid "Cannot set auto publish to a non-composite content view"
1121
1235
  msgstr "No se puede establecer la autopublicación en una vista de contenido no compuesta"
1122
1236
 
1123
- msgid "Cannot skip metadata check on non-yum repositories."
1124
- msgstr "No se puede saltar la comprobación de metadatos en depósitos que no correspondan a yum."
1237
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1238
+ msgstr ""
1125
1239
 
1126
1240
  msgid "Cannot specify components for non-composite views"
1127
1241
  msgstr "No se puede especificar componentes para vistas non-composite"
@@ -1142,7 +1256,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1142
1256
  msgstr "No se puede validar el contenido de los depósitos que no correspondan a yum/deb."
1143
1257
 
1144
1258
  msgid "Capacity"
1145
- msgstr ""
1259
+ msgstr "Capacidad"
1146
1260
 
1147
1261
  msgid "Change Content Source"
1148
1262
  msgstr ""
@@ -1156,6 +1270,9 @@ msgstr ""
1156
1270
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1157
1271
  msgstr "Comprobar si se puede hacer una conexión con el administrador de suscripciones de Red Hat."
1158
1272
 
1273
+ msgid "Check if the specified organization has Simple Content Access enabled"
1274
+ msgstr ""
1275
+
1159
1276
  msgid "Check if the specified organization is eligible for Simple Content Access"
1160
1277
  msgstr ""
1161
1278
 
@@ -1172,14 +1289,23 @@ msgid "Checksum of file to upload"
1172
1289
  msgstr "Suma de comprobación del archivo a cargar"
1173
1290
 
1174
1291
  msgid "Checksum of the repository, currently 'sha1' & 'sha256' are supported"
1175
- msgstr "La suma de comprobación del repositorio, actualmente se admite 'sha1' y 'sha256'."
1292
+ msgstr "La suma de comprobación del repositorio; actualmente se admite 'sha1' y 'sha256'."
1176
1293
 
1177
1294
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1178
1295
  msgstr "No se puede establecer el tipo de suma de comprobación para los repositorios yum con la política de descarga bajo demanda."
1179
1296
 
1297
+ msgid "Choose content credentials if required for this RHUI source."
1298
+ msgstr ""
1299
+
1180
1300
  msgid "Clear any previous registration and run subscription-manager with --force."
1181
1301
  msgstr ""
1182
1302
 
1303
+ msgid "Clear filters"
1304
+ msgstr "Limpiar filtros"
1305
+
1306
+ msgid "Clear search"
1307
+ msgstr ""
1308
+
1183
1309
  msgid "Click here to go to the tasks page for the task."
1184
1310
  msgstr "Haga clic aquí para ir a la página de tareas para la tarea."
1185
1311
 
@@ -1199,7 +1325,10 @@ msgid "Combined Profile Update"
1199
1325
  msgstr "Actualización de perfil combinado"
1200
1326
 
1201
1327
  msgid "Combined Profile Update for %s"
1202
- msgstr "Actualización de perfil combinado para %s"
1328
+ msgstr "Actualización del perfil combinado para %s"
1329
+
1330
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1331
+ msgstr ""
1203
1332
 
1204
1333
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1205
1334
  msgstr ""
@@ -1210,16 +1339,16 @@ msgstr ""
1210
1339
  msgid "Comma-separated list of tags to sync for a container image repository"
1211
1340
  msgstr ""
1212
1341
 
1342
+ msgid "Compare"
1343
+ msgstr ""
1344
+
1213
1345
  msgid "Component"
1214
1346
  msgstr "Componente"
1215
1347
 
1216
1348
  msgid "Component Content View"
1217
1349
  msgstr ""
1218
1350
 
1219
- msgid "Component content view"
1220
- msgstr ""
1221
-
1222
- msgid "Component content views"
1351
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1223
1352
  msgstr ""
1224
1353
 
1225
1354
  msgid "Components"
@@ -1232,7 +1361,7 @@ msgid "Composite Content View"
1232
1361
  msgstr ""
1233
1362
 
1234
1363
  msgid "Composite Content View '%{subject}' failed auto-publish"
1235
- msgstr "La vista de contenido compuesto '%{subject}' falló en la autopublicación"
1364
+ msgstr "Vista de contenido compuesto '%{subject}' falló la auto-publicación"
1236
1365
 
1237
1366
  msgid "Composite content view"
1238
1367
  msgstr "Vista de contenido compuesta"
@@ -1252,7 +1381,7 @@ msgstr "Confirmar la eliminación del manifiesto"
1252
1381
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1253
1382
  msgstr "Considere la posibilidad de cambiar el patrón de nombres de registro del entorno del ciclo de vida a algo más específico."
1254
1383
 
1255
- msgid "Consisting of multiple component content views"
1384
+ msgid "Consisting of multiple content views"
1256
1385
  msgstr ""
1257
1386
 
1258
1387
  msgid "Consists of content views"
@@ -1277,7 +1406,7 @@ msgid "Container Image Tags"
1277
1406
  msgstr "Etiquetas de imagen de contenedor"
1278
1407
 
1279
1408
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
1280
- msgstr "La imagen de contenedor del repositorio '%{repo}' está presente en múltiples vistas de contenido de componentes."
1409
+ msgstr "Container Image repo '%{repo}' está presente en múltiples vistas de contenido de componentes."
1281
1410
 
1282
1411
  msgid "Container Images"
1283
1412
  msgstr "Imágenes de contenedor"
@@ -1340,7 +1469,7 @@ msgid "Content View"
1340
1469
  msgstr "Vista del contenido"
1341
1470
 
1342
1471
  msgid "Content View %{view}: Versions: %{versions}"
1343
- msgstr "Vista de contenido %{view}: Versiones: %{versions}"
1472
+ msgstr "Contenido Ver %{view}: Versiones: %{versions}"
1344
1473
 
1345
1474
  msgid "Content View Details"
1346
1475
  msgstr "Detalles de vista de contenido"
@@ -1358,7 +1487,7 @@ msgid "Content View Name"
1358
1487
  msgstr "Nombre de vista de contenido"
1359
1488
 
1360
1489
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1361
- msgstr " %{id} de versión de vista de contenido no está especificado en todos los entornos %{envs}"
1490
+ msgstr "Contenido Ver versión %{id} no en todos los entornos especificados %{envs}"
1362
1491
 
1363
1492
  msgid "Content View Version Ids to perform an incremental update on. May contain composites as well as one or more components to update."
1364
1493
  msgstr "ID de versión de vista de contenido para realizar una actualización incremental. Puede contener compuestos al igual que uno o más componentes para actualizar."
@@ -1372,8 +1501,8 @@ msgstr "Versión de vista de contenido no establecida"
1372
1501
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1373
1502
  msgstr ""
1374
1503
 
1375
- msgid "Content View and Environment not set for registration."
1376
- msgstr "La vista de contenido y el entorno no están configurados para el registro."
1504
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1505
+ msgstr ""
1377
1506
 
1378
1507
  msgid "Content View id"
1379
1508
  msgstr ""
@@ -1384,6 +1513,21 @@ msgstr ""
1384
1513
  msgid "Content Views"
1385
1514
  msgstr "Vistas de contenido"
1386
1515
 
1516
+ msgid "Content cannot be imported into a Composite Content View. "
1517
+ msgstr ""
1518
+
1519
+ msgid "Content credential"
1520
+ msgstr ""
1521
+
1522
+ msgid "Content credentials"
1523
+ msgstr ""
1524
+
1525
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1526
+ msgstr ""
1527
+
1528
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1529
+ msgstr ""
1530
+
1387
1531
  msgid "Content files to upload. Can be a single file or array of files."
1388
1532
  msgstr "Archivos de contenido para cargar. Puede ser uno o varios archivos."
1389
1533
 
@@ -1402,14 +1546,14 @@ msgstr ""
1402
1546
  msgid "Content override search parameters"
1403
1547
  msgstr ""
1404
1548
 
1549
+ msgid "Content source"
1550
+ msgstr ""
1551
+
1405
1552
  msgid "Content source ID"
1406
1553
  msgstr "ID de fuente de contenido"
1407
1554
 
1408
- msgid "Content source successfully updated."
1409
- msgstr ""
1410
-
1411
1555
  msgid "Content source was not set for host '%{host}'"
1412
- msgstr "La fuente del contenido no se estableció para el host '%{host}'"
1556
+ msgstr "No se ha establecido la fuente de contenido para el host '%{host}'"
1413
1557
 
1414
1558
  msgid "Content type"
1415
1559
  msgstr ""
@@ -1426,18 +1570,30 @@ msgstr ""
1426
1570
  msgid "Content view ${name} created"
1427
1571
  msgstr ""
1428
1572
 
1573
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1574
+ msgstr ""
1575
+
1429
1576
  msgid "Content view '%{view}' is not in environment '%{env}'"
1430
1577
  msgstr "La vista de contenido '%{view}' no está en el entorno '%{env}'"
1431
1578
 
1432
1579
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1433
- msgstr "La vista de contenido '%{view}' no está en el entorno de ciclo de vida"
1580
+ msgstr "La vista de contenido '%{view}' no está en el entorno del ciclo de vida '%{env}'."
1434
1581
 
1435
1582
  msgid "Content view ID"
1436
1583
  msgstr "ID de vista de contenido"
1437
1584
 
1585
+ msgid "Content view and environment not set for registration."
1586
+ msgstr ""
1587
+
1438
1588
  msgid "Content view details"
1439
1589
  msgstr ""
1440
1590
 
1591
+ msgid "Content view environments and activation key must all belong to the same organization"
1592
+ msgstr ""
1593
+
1594
+ msgid "Content view environments must have both a content view and an environment"
1595
+ msgstr ""
1596
+
1441
1597
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1442
1598
  msgstr "La vista de contenido tiene la etiqueta de repositorio '%s' que no está especificada en el parámetro repos_units."
1443
1599
 
@@ -1447,6 +1603,9 @@ msgstr "identificador de vista de contenido"
1447
1603
  msgid "Content view label"
1448
1604
  msgstr "Etiqueta de vista de contenido"
1449
1605
 
1606
+ msgid "Content view must be specified"
1607
+ msgstr ""
1608
+
1450
1609
  msgid "Content view name"
1451
1610
  msgstr ""
1452
1611
 
@@ -1454,13 +1613,13 @@ msgid "Content view not provided in the metadata"
1454
1613
  msgstr ""
1455
1614
 
1456
1615
  msgid "Content view numeric identifier"
1457
- msgstr "identificador numérico de la vista de contenido"
1616
+ msgstr "Identificador numérico de vista de contenido"
1458
1617
 
1459
1618
  msgid "Content view version export history identifier"
1460
1619
  msgstr ""
1461
1620
 
1462
1621
  msgid "Content view version identifier"
1463
- msgstr "Identificador de versión de la vista de contenido"
1622
+ msgstr "Identificador de versión de vista de contenido"
1464
1623
 
1465
1624
  msgid "Content view version import history identifier"
1466
1625
  msgstr ""
@@ -1468,6 +1627,9 @@ msgstr ""
1468
1627
  msgid "Content views"
1469
1628
  msgstr ""
1470
1629
 
1630
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1631
+ msgstr ""
1632
+
1471
1633
  msgid "Content_Host_Status"
1472
1634
  msgstr "Content_Host_Status"
1473
1635
 
@@ -1496,22 +1658,25 @@ msgid "Copy content view"
1496
1658
  msgstr ""
1497
1659
 
1498
1660
  msgid "Copy to clipboard"
1499
- msgstr ""
1661
+ msgstr "Copiar al portapapeles"
1500
1662
 
1501
1663
  msgid "Copy version units to library"
1502
- msgstr ""
1664
+ msgstr "Copiar unidades de versión a la biblioteca"
1665
+
1666
+ msgid "Cores per socket"
1667
+ msgstr "Núcleos por socket"
1503
1668
 
1504
1669
  msgid "Cores: %s"
1505
1670
  msgstr "Núcleos: %s"
1506
1671
 
1507
1672
  msgid "Could not delete organization '%s'."
1508
- msgstr "No se puede borrar organización '%s'."
1673
+ msgstr "No se ha podido eliminar la organización '%s'."
1509
1674
 
1510
1675
  msgid "Could not find %{content} with id '%{id}' in repository."
1511
- msgstr "No se encontró %{content} con ID '%{id}' en repositorio."
1676
+ msgstr "No se ha podido encontrar %{content} con id '%{id}' en el repositorio."
1512
1677
 
1513
1678
  msgid "Could not find %{count} errata. Only found: %{found}"
1514
- msgstr "No se pudo encontrar %{count} erratas. Solo se encontró: %{found}"
1679
+ msgstr "No se ha podido encontrar %{count} errata. Sólo se ha encontrado: %{found}"
1515
1680
 
1516
1681
  msgid "Could not find %{name} resource with id %{id}. %{perms_message}"
1517
1682
  msgstr ""
@@ -1520,19 +1685,19 @@ msgid "Could not find %{name} resources with ids %{ids}"
1520
1685
  msgstr ""
1521
1686
 
1522
1687
  msgid "Could not find Environment with ids: %s"
1523
- msgstr "No se encontró entorno con los ID: %s"
1688
+ msgstr "No se ha podido encontrar Entorno con ids: %s"
1524
1689
 
1525
1690
  msgid "Could not find Lifecycle Environment with id '%{id}'."
1526
- msgstr "No se encontró el entorno de ciclo de vida con ID '%{id}'."
1691
+ msgstr "No se ha podido encontrar el Entorno del Ciclo de Vida con el id '%{id}'."
1527
1692
 
1528
1693
  msgid "Could not find a host with id %s"
1529
- msgstr "No se encontró un host con id %s"
1694
+ msgstr "No se pudo encontrar un host con id %s"
1530
1695
 
1531
1696
  msgid "Could not find a smart proxy with pulp feature."
1532
1697
  msgstr "No se encontró un proxy inteligente con función de pulp."
1533
1698
 
1534
1699
  msgid "Could not find all specified errata ids: %s"
1535
- msgstr "No se encontraron todos los ID de erratas especificados: %s"
1700
+ msgstr "No se han encontrado todas las erratas especificadas: %s"
1536
1701
 
1537
1702
  msgid "Could not find environments for promotion"
1538
1703
  msgstr "No se encontraron entornos para la promoción"
@@ -1544,76 +1709,82 @@ msgid "Couldn't establish a connection to %s"
1544
1709
  msgstr ""
1545
1710
 
1546
1711
  msgid "Couldn't find %{content_type} with id '%{id}'"
1547
- msgstr "No se encontró %{content_type} con id '%{id}'"
1712
+ msgstr "No se ha encontrado %{content_type} con id '%{id}'"
1548
1713
 
1549
1714
  msgid "Couldn't find %{type} Filter with id %{id}"
1550
- msgstr "No se encontró filtro %{type} con ID %{id}"
1715
+ msgstr "No se ha podido encontrar %{type} Filtro con id %{id}"
1551
1716
 
1552
1717
  msgid "Couldn't find ContentViewFilter with id=%s"
1553
- msgstr "No se encontró ContentViewFilter con ID=%s"
1718
+ msgstr "No se ha encontrado ContentViewFilter con id=%s"
1554
1719
 
1555
1720
  msgid "Couldn't find Organization '%s'."
1556
- msgstr "No se encontró la organización '%s'."
1721
+ msgstr "No se ha encontrado la Organización '%s'."
1557
1722
 
1558
1723
  msgid "Couldn't find activation key '%s'"
1559
- msgstr "No se encontró la llave de activación '%s'"
1724
+ msgstr "No se encuentra la clave de activación '%s'"
1560
1725
 
1561
1726
  msgid "Couldn't find activation key content view id '%s'"
1562
- msgstr "No se encontró el ID de vista de contenido de la llave de activación '%s'"
1727
+ msgstr "No se ha podido encontrar el contenido de la clave de activación vista id '%s'"
1563
1728
 
1564
1729
  msgid "Couldn't find activation key environment '%s'"
1565
- msgstr "No se encontró el entorno de la llave de activación '%s'"
1730
+ msgstr "No se ha encontrado la clave de activación del entorno '%s'"
1566
1731
 
1567
1732
  msgid "Couldn't find consumer '%s'"
1568
- msgstr "No se encontró el usuario '%s'"
1733
+ msgstr "No se ha encontrado el consumidor '%s'"
1569
1734
 
1570
1735
  msgid "Couldn't find content host content view id '%s'"
1571
- msgstr "No se encontró el ID de vista de contenido del host de contenido '%s'"
1736
+ msgstr "No se ha podido encontrar la vista de contenido del host '%s'"
1572
1737
 
1573
1738
  msgid "Couldn't find content host environment '%s'"
1574
- msgstr "No se encontró el entorno del host de contenido '%s'"
1739
+ msgstr "No se ha podido encontrar el entorno de host de contenido '%s'"
1575
1740
 
1576
1741
  msgid "Couldn't find content view '%s'"
1577
- msgstr "No se encontró la vista de contenido '%s'"
1742
+ msgstr "No se ha podido encontrar la vista de contenido '%s'"
1578
1743
 
1579
1744
  msgid "Couldn't find content view version '%s'"
1580
- msgstr "No se encontró la versión de vista de contenido '%s'"
1745
+ msgstr "No se ha podido encontrar la versión de la vista de contenido '%s'"
1581
1746
 
1582
1747
  msgid "Couldn't find content view versions '%s'"
1583
- msgstr "No se encontraron las versiones de vista de contenido '%s'"
1748
+ msgstr "No se encuentran las versiones de la vista de contenido '%s'"
1584
1749
 
1585
1750
  msgid "Couldn't find content view with id: '%s'"
1586
1751
  msgstr ""
1587
1752
 
1588
1753
  msgid "Couldn't find environment '%s'"
1589
- msgstr "No se encontró el entorno '%s'"
1754
+ msgstr "No se ha encontrado el entorno '%s'"
1590
1755
 
1591
1756
  msgid "Couldn't find errata ids '%s'"
1592
- msgstr "No se encontraron ID de erratas '%s'"
1757
+ msgstr "No se encuentran las erratas '%s'"
1593
1758
 
1594
1759
  msgid "Couldn't find host collection '%s'"
1595
- msgstr "No se encontró la recopilación de hosts '%s'"
1760
+ msgstr "No se ha encontrado la colección de hosts '%s'"
1596
1761
 
1597
1762
  msgid "Couldn't find host with host id '%s'"
1598
- msgstr "No se pudo encontrar el host con ID de host '%s'."
1763
+ msgstr "No se ha podido encontrar el host con el id '%s'"
1599
1764
 
1600
1765
  msgid "Couldn't find organization '%s'"
1601
- msgstr "No se encontró la organización '%s'"
1766
+ msgstr "No se encuentra la organización '%s'"
1602
1767
 
1603
1768
  msgid "Couldn't find prior-environment '%s'"
1604
- msgstr "No se encontró el entorno anterior '%s'"
1769
+ msgstr "No se ha encontrado el entorno previo '%s'"
1605
1770
 
1606
1771
  msgid "Couldn't find product with id '%s'"
1607
- msgstr "No se encontró el producto con ID '%s'"
1772
+ msgstr "No se ha encontrado el producto con el id '%s'"
1773
+
1774
+ msgid "Couldn't find products with id '%s'"
1775
+ msgstr ""
1608
1776
 
1609
1777
  msgid "Couldn't find repository '%s'"
1610
- msgstr "No se encontró el repositorio '%s'"
1778
+ msgstr "No se encuentra el repositorio '%s'"
1611
1779
 
1612
1780
  msgid "Couldn't find smart proxies with id '%s'"
1613
1781
  msgstr ""
1614
1782
 
1615
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1616
- msgstr "No se encontró la vista de contenido y el entorno de ciclo de vida especificados."
1783
+ msgid "Couldn't find smart proxies with name '%s'"
1784
+ msgstr ""
1785
+
1786
+ msgid "Couldn't find specified content view and lifecycle environment."
1787
+ msgstr ""
1617
1788
 
1618
1789
  msgid "Couldn't find subject of synchronization"
1619
1790
  msgstr "No se encontró asunto de sincronización"
@@ -1624,14 +1795,17 @@ msgstr "Recuento"
1624
1795
  msgid "Create"
1625
1796
  msgstr "Crear"
1626
1797
 
1798
+ msgid "Create ACS"
1799
+ msgstr ""
1800
+
1627
1801
  msgid "Create Alternate Content Source"
1628
1802
  msgstr ""
1629
1803
 
1630
1804
  msgid "Create Export History"
1631
- msgstr ""
1805
+ msgstr "Crear historial de exportación"
1632
1806
 
1633
1807
  msgid "Create Import History"
1634
- msgstr ""
1808
+ msgstr "Crear historial de importaciones"
1635
1809
 
1636
1810
  msgid "Create Package Group"
1637
1811
  msgstr "Crear grupo de paquete"
@@ -1639,12 +1813,18 @@ msgstr "Crear grupo de paquete"
1639
1813
  msgid "Create Repositories"
1640
1814
  msgstr "Crear repositorios"
1641
1815
 
1816
+ msgid "Create Syncable Export History"
1817
+ msgstr ""
1818
+
1642
1819
  msgid "Create a Content Credential"
1643
1820
  msgstr ""
1644
1821
 
1645
1822
  msgid "Create a content view"
1646
1823
  msgstr "Crear una vista de contenido"
1647
1824
 
1825
+ msgid "Create a custom product"
1826
+ msgstr ""
1827
+
1648
1828
  msgid "Create a custom repository"
1649
1829
  msgstr "Crear un repositorio personalizado"
1650
1830
 
@@ -1663,12 +1843,12 @@ msgstr "Crear un producto"
1663
1843
  msgid "Create a sync plan"
1664
1844
  msgstr "Crear un plan de sincronización"
1665
1845
 
1666
- msgid "Create an ACS"
1667
- msgstr ""
1668
-
1669
1846
  msgid "Create an activation key"
1670
1847
  msgstr "Crear una llave de activación"
1671
1848
 
1849
+ 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."
1850
+ msgstr ""
1851
+
1672
1852
  msgid "Create an environment"
1673
1853
  msgstr "Crear un entorno"
1674
1854
 
@@ -1678,23 +1858,38 @@ msgstr "Crear un entorno en una organización"
1678
1858
  msgid "Create an upload request"
1679
1859
  msgstr "Crear una solicitud de carga"
1680
1860
 
1861
+ msgid "Create content credentials with the generated SSL certificate and key."
1862
+ msgstr ""
1863
+
1681
1864
  msgid "Create content view"
1682
1865
  msgstr ""
1683
1866
 
1684
1867
  msgid "Create filter"
1685
1868
  msgstr ""
1686
1869
 
1870
+ msgid "Create host collection"
1871
+ msgstr ""
1872
+
1687
1873
  msgid "Create organization"
1688
1874
  msgstr "Crear organización"
1689
1875
 
1876
+ msgid "Create package filter rule"
1877
+ msgstr ""
1878
+
1879
+ msgid "Create rule"
1880
+ msgstr ""
1881
+
1882
+ msgid "Credentials"
1883
+ msgstr "Credenciales"
1884
+
1690
1885
  msgid "Critical"
1691
- msgstr "Crítico"
1886
+ msgstr "Crítica"
1692
1887
 
1693
1888
  msgid "Cron expression is not valid!"
1694
1889
  msgstr "¡La expresión de Cron no es válida!"
1695
1890
 
1696
- msgid "Current organization has no manifest imported."
1697
- msgstr "La organización actual no tiene ningún manifiesto importado."
1891
+ msgid "Current organization does not have a manifest imported."
1892
+ msgstr ""
1698
1893
 
1699
1894
  msgid "Current organization is not set."
1700
1895
  msgstr "La organización actual no está establecida."
@@ -1702,6 +1897,12 @@ msgstr "La organización actual no está establecida."
1702
1897
  msgid "Current organization not set."
1703
1898
  msgstr "La organización actual no está establecida."
1704
1899
 
1900
+ msgid "Custom"
1901
+ msgstr ""
1902
+
1903
+ msgid "Custom CDN"
1904
+ msgstr ""
1905
+
1705
1906
  msgid "Custom Content Repositories"
1706
1907
  msgstr "Personalizar repositorios de contenido"
1707
1908
 
@@ -1714,6 +1915,12 @@ msgstr "No se pueden desactivar los repositorios personalizados."
1714
1915
  msgid "Customize with Rex"
1715
1916
  msgstr ""
1716
1917
 
1918
+ msgid "DEB name"
1919
+ msgstr ""
1920
+
1921
+ msgid "DEB package updates"
1922
+ msgstr ""
1923
+
1717
1924
  msgid "Database connection"
1718
1925
  msgstr "Conexión a la base de datos"
1719
1926
 
@@ -1729,12 +1936,18 @@ msgstr "Días restantes"
1729
1936
  msgid "Days from Now"
1730
1937
  msgstr "Dentro de unos días"
1731
1938
 
1939
+ msgid "Deb"
1940
+ msgstr ""
1941
+
1732
1942
  msgid "Deb Package"
1733
1943
  msgstr "Paquete Deb"
1734
1944
 
1735
1945
  msgid "Deb Packages"
1736
1946
  msgstr "Paquetes Deb"
1737
1947
 
1948
+ msgid "Deb name"
1949
+ msgstr ""
1950
+
1738
1951
  msgid "Deb package identifiers to filter content by"
1739
1952
  msgstr ""
1740
1953
 
@@ -1843,6 +2056,12 @@ msgstr "Datos de usuario de SO sincronizados por defecto"
1843
2056
  msgid "Default user data for new Operating Systems created from synced content"
1844
2057
  msgstr "Datos de usuario por defecto para nuevos sistemas operativos creados a partir de contenido sincronizado"
1845
2058
 
2059
+ msgid "Define RHUI repository paths with guided steps."
2060
+ msgstr ""
2061
+
2062
+ msgid "Define repositories structured under a common web or filesystem path."
2063
+ msgstr ""
2064
+
1846
2065
  msgid "Delete"
1847
2066
  msgstr "Borrar"
1848
2067
 
@@ -1907,19 +2126,19 @@ msgid "Delete versions"
1907
2126
  msgstr ""
1908
2127
 
1909
2128
  msgid "Deleted consumer '%s'"
1910
- msgstr "Ha sido borrado el usuario '%s'"
2129
+ msgstr "Consumidor suprimido '%s'"
1911
2130
 
1912
2131
  msgid "Deleted from "
1913
2132
  msgstr ""
1914
2133
 
1915
2134
  msgid "Deleted from %{environment}"
1916
- msgstr "Borrado de %{environment}"
2135
+ msgstr "Suprimido de %{environment}"
1917
2136
 
1918
2137
  msgid "Deleting content view : "
1919
2138
  msgstr ""
1920
2139
 
1921
2140
  msgid "Deleting manifest in '%{subject}' failed."
1922
- msgstr "Error al intentar eliminar el manifiesto '%{subject}'."
2141
+ msgstr "Error al borrar el manifiesto en '%{subject}'."
1923
2142
 
1924
2143
  msgid "Deleting version {versionList}"
1925
2144
  msgstr ""
@@ -1961,7 +2180,7 @@ msgid "Destroy Content Host"
1961
2180
  msgstr "Destruir host de contenido"
1962
2181
 
1963
2182
  msgid "Destroy Content Host %s"
1964
- msgstr "Destruir host de contenido %s"
2183
+ msgstr "Destruir el host de contenidos %s"
1965
2184
 
1966
2185
  msgid "Destroy a Content Credential"
1967
2186
  msgstr ""
@@ -1981,7 +2200,7 @@ msgstr "Destruir un plan de sincronización"
1981
2200
  msgid "Destroy an activation key"
1982
2201
  msgstr "Destruir una llave de activación"
1983
2202
 
1984
- msgid "Destroy an alternate content source"
2203
+ msgid "Destroy an alternate content source."
1985
2204
  msgstr ""
1986
2205
 
1987
2206
  msgid "Destroy an environment"
@@ -1990,6 +2209,9 @@ msgstr "Destruir un entorno"
1990
2209
  msgid "Destroy an environment in an organization"
1991
2210
  msgstr "Destruir un entorno en una organización"
1992
2211
 
2212
+ msgid "Destroy one or more alternate content sources"
2213
+ msgstr ""
2214
+
1993
2215
  msgid "Destroy one or more hosts"
1994
2216
  msgstr "Destruir uno o más hosts"
1995
2217
 
@@ -2041,6 +2263,9 @@ msgstr "Descubrir"
2041
2263
  msgid "Discover Repositories"
2042
2264
  msgstr "Detectar repositorios"
2043
2265
 
2266
+ msgid "Distribute archived content view versions"
2267
+ msgstr ""
2268
+
2044
2269
  msgid "Do not include this array of content views"
2045
2270
  msgstr "No incluir esta selección de vistas de contenido"
2046
2271
 
@@ -2054,7 +2279,7 @@ msgid "Domain IDs"
2054
2279
  msgstr "ID de dominio"
2055
2280
 
2056
2281
  msgid "Download Policy of the capsule, must be one of %s"
2057
- msgstr "La política de descarga de la cápsula, debe ser una de %s"
2282
+ msgstr "Política de descarga de la cápsula, debe ser una de las siguientes %s"
2058
2283
 
2059
2284
  msgid "Download a debug certificate"
2060
2285
  msgstr "Descargar un certificado de depuración"
@@ -2077,15 +2302,36 @@ msgstr "Editar"
2077
2302
  msgid "Edit RPM rule"
2078
2303
  msgstr ""
2079
2304
 
2305
+ msgid "Edit URL and subpaths"
2306
+ msgstr ""
2307
+
2080
2308
  msgid "Edit content view assignment"
2081
2309
  msgstr ""
2082
2310
 
2311
+ msgid "Edit credentials"
2312
+ msgstr ""
2313
+
2314
+ msgid "Edit details"
2315
+ msgstr ""
2316
+
2083
2317
  msgid "Edit filter rule"
2084
2318
  msgstr ""
2085
2319
 
2320
+ msgid "Edit package filter rule"
2321
+ msgstr ""
2322
+
2323
+ msgid "Edit products"
2324
+ msgstr ""
2325
+
2086
2326
  msgid "Edit rule"
2087
2327
  msgstr ""
2088
2328
 
2329
+ msgid "Edit smart proxies"
2330
+ msgstr ""
2331
+
2332
+ msgid "Edit system purpose attributes"
2333
+ msgstr ""
2334
+
2089
2335
  msgid "Editing Entitlements"
2090
2336
  msgstr "Edición de derechos"
2091
2337
 
@@ -2107,9 +2353,15 @@ msgstr "Se debe establecer la vista de contenido con la última bandera o la ver
2107
2353
  msgid "Either set the latest content view or the content view version. Cannot set both"
2108
2354
  msgstr "Configura la última vista de contenido o la versión de la vista de contenido. No se pueden establecer ambas"
2109
2355
 
2356
+ msgid "Empty content view versions"
2357
+ msgstr ""
2358
+
2110
2359
  msgid "Enable"
2111
2360
  msgstr "Habilitar"
2112
2361
 
2362
+ msgid "Enable Red Hat repositories"
2363
+ msgstr ""
2364
+
2113
2365
  msgid "Enable Simple Content Access"
2114
2366
  msgstr "Habilitar el acceso a contenido simple"
2115
2367
 
@@ -2122,6 +2374,9 @@ msgstr ""
2122
2374
  msgid "Enable a repository from the set"
2123
2375
  msgstr "Habilitar un repositorio del conjunto"
2124
2376
 
2377
+ msgid "Enable repository sets"
2378
+ msgstr ""
2379
+
2125
2380
  msgid "Enable simple content access for a manifest"
2126
2381
  msgstr "Habilitar el acceso a un contenido simple para un manifiesto"
2127
2382
 
@@ -2155,9 +2410,18 @@ msgstr "Mejora"
2155
2410
  msgid "Enter a name"
2156
2411
  msgstr ""
2157
2412
 
2413
+ msgid "Enter a name for your source."
2414
+ msgstr ""
2415
+
2158
2416
  msgid "Enter a valid date: MM/DD/YYYY"
2159
2417
  msgstr ""
2160
2418
 
2419
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2420
+ msgstr ""
2421
+
2422
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2423
+ msgstr ""
2424
+
2161
2425
  msgid "Entitlements"
2162
2426
  msgstr "Derechos"
2163
2427
 
@@ -2177,7 +2441,7 @@ msgid "Environments"
2177
2441
  msgstr "Entornos"
2178
2442
 
2179
2443
  msgid "Epoch"
2180
- msgstr ""
2444
+ msgstr "Época"
2181
2445
 
2182
2446
  msgid "Equal to"
2183
2447
  msgstr ""
@@ -2195,7 +2459,7 @@ msgid "Errata Install"
2195
2459
  msgstr "Instalar erratas"
2196
2460
 
2197
2461
  msgid "Errata Install scheduled by %s"
2198
- msgstr "Instalación de erratas programada por %s"
2462
+ msgstr "Errata Instalación programada por %s"
2199
2463
 
2200
2464
  msgid "Errata id of the erratum (RHSA-2012:108)"
2201
2465
  msgstr "ID de errata de la errata (RHSA-2012:108)"
@@ -2234,7 +2498,7 @@ msgid "Error connecting to Pulp service"
2234
2498
  msgstr "Error al conectarse con el servicio Pulp"
2235
2499
 
2236
2500
  msgid "Error connecting. Got: %s"
2237
- msgstr "Error al conectar. Se obtuvo: %s."
2501
+ msgstr "Error de conexión. Lo tengo: %s"
2238
2502
 
2239
2503
  msgid "Error loading content views"
2240
2504
  msgstr ""
@@ -2251,11 +2515,11 @@ msgstr "Excede la cantidad disponible"
2251
2515
  msgid "Exclude"
2252
2516
  msgstr "Excluir"
2253
2517
 
2254
- msgid "Exclude all Module Streams with no errata."
2518
+ msgid "Exclude all RPMs not associated to any errata"
2255
2519
  msgstr ""
2256
2520
 
2257
- msgid "Exclude all RPMs with no errata."
2258
- msgstr "Excluir todos los RPM sin erratas."
2521
+ msgid "Exclude all module streams not associated to any errata"
2522
+ msgstr ""
2259
2523
 
2260
2524
  msgid "Exclude filter"
2261
2525
  msgstr ""
@@ -2285,7 +2549,7 @@ msgid "Export CSV"
2285
2549
  msgstr "Exportar CSV"
2286
2550
 
2287
2551
  msgid "Export Library"
2288
- msgstr ""
2552
+ msgstr "Biblioteca de exportación"
2289
2553
 
2290
2554
  msgid "Export Repository"
2291
2555
  msgstr ""
@@ -2299,6 +2563,11 @@ msgstr ""
2299
2563
  msgid "Export as CSV"
2300
2564
  msgstr "Exportar como CSV"
2301
2565
 
2566
+ msgid ""
2567
+ "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"
2568
+ " Defaults to importable."
2569
+ msgstr ""
2570
+
2302
2571
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2303
2572
  msgstr ""
2304
2573
 
@@ -2315,18 +2584,19 @@ msgid "Failed"
2315
2584
  msgstr "Errores"
2316
2585
 
2317
2586
  msgid "Failed to delete %{host}: %{errors}"
2318
- msgstr "Ocurrió un error al borrar %{host}: %{errors}"
2587
+ msgstr "Error al borrar %{host}: %{errors}"
2319
2588
 
2320
2589
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2321
2590
  msgstr ""
2322
2591
 
2323
2592
  msgid "Failed to download %s package."
2324
2593
  msgid_plural "Failed to download %s packages."
2325
- msgstr[0] "Falló al instalar el paquete %s."
2326
- msgstr[1] "Ocurrió un error al descargar los paquetes %s."
2594
+ msgstr[0] "No se ha podido descargar el paquete %s."
2595
+ msgstr[1] "Error al descargar los paquetes %s."
2596
+ msgstr[2] "Error al descargar los paquetes %s."
2327
2597
 
2328
2598
  msgid "Failed to find %{content} with id '%{id}'."
2329
- msgstr "No se encontró %{content} con ID '%{id}'."
2599
+ msgstr "Error al encontrar %{content} con id '%{id}'."
2330
2600
 
2331
2601
  msgid "Fails if any of the repositories belonging to this organization are unexportable. False by default."
2332
2602
  msgstr ""
@@ -2349,6 +2619,9 @@ msgstr "Buscar archivos pxe"
2349
2619
  msgid "Fetch traces for one or more hosts"
2350
2620
  msgstr "Buscar rastros para uno o más hosts"
2351
2621
 
2622
+ msgid "Fetching content credentials"
2623
+ msgstr ""
2624
+
2352
2625
  msgid "Field to sort the results on"
2353
2626
  msgstr "Campo en el que ordenar los resultados"
2354
2627
 
@@ -2359,7 +2632,7 @@ msgid "File contents"
2359
2632
  msgstr ""
2360
2633
 
2361
2634
  msgid "Filename"
2362
- msgstr "Nombre de archivo"
2635
+ msgstr "Archivo"
2363
2636
 
2364
2637
  msgid "Files"
2365
2638
  msgstr "Archivos"
@@ -2406,6 +2679,9 @@ msgstr "Filtrar productos por suscripción"
2406
2679
  msgid "Filter products by sync plan id"
2407
2680
  msgstr "Filtrar productos por ID del plan de sincronización"
2408
2681
 
2682
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2683
+ msgstr ""
2684
+
2409
2685
  msgid "Filter rule added"
2410
2686
  msgstr ""
2411
2687
 
@@ -2439,6 +2715,12 @@ msgstr "Filtros"
2439
2715
  msgid "Filters deleted"
2440
2716
  msgstr ""
2441
2717
 
2718
+ msgid "Filters will appear here when the filter is created."
2719
+ msgstr ""
2720
+
2721
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2722
+ msgstr ""
2723
+
2442
2724
  msgid "Finish"
2443
2725
  msgstr ""
2444
2726
 
@@ -2482,8 +2764,8 @@ msgstr "Aplicabilidad de la fuerza de regeneración."
2482
2764
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2483
2765
  msgstr "Forzar sincronización incluso si no se detectan cambios en canal ascendente. Los repositorios que no corresponden a yum se saltan."
2484
2766
 
2485
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2486
- msgstr "Forzar sincronización incluso si no se detectan cambios en canal ascendente. Solo se usa con los repositorios yum."
2767
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2768
+ msgstr ""
2487
2769
 
2488
2770
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
2489
2771
  msgstr "Forzar a republicar el repositorio especificado, regenerando los metadatos y los enlaces simbólicos en el sistema de archivos."
@@ -2500,6 +2782,9 @@ msgstr "Plenamente autorizado"
2500
2782
  msgid "GPG Key URL"
2501
2783
  msgstr "URL de llave GPG"
2502
2784
 
2785
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2786
+ msgstr ""
2787
+
2503
2788
  msgid "Generate and Download"
2504
2789
  msgstr "Generar y descargar"
2505
2790
 
@@ -2512,7 +2797,7 @@ msgstr "Generar la aplicabilidad del repositorio"
2512
2797
  msgid "Generated"
2513
2798
  msgstr ""
2514
2799
 
2515
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2800
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2516
2801
  msgstr ""
2517
2802
 
2518
2803
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2545,6 +2830,9 @@ msgstr "Obtener estado de sincronización para un repositorio concreto"
2545
2830
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2546
2831
  msgstr "Dada una serie de hosts y erratas, enumera las versiones de vista del contenido y los entornos que necesitan ser actualizados."
2547
2832
 
2833
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2834
+ msgstr ""
2835
+
2548
2836
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2549
2837
  msgstr ""
2550
2838
 
@@ -2564,7 +2852,7 @@ msgid "Greater than"
2564
2852
  msgstr ""
2565
2853
 
2566
2854
  msgid "Group %{id} already created."
2567
- msgstr "Grupo %{id} ya ha sido creado."
2855
+ msgstr "Grupo %{id} ya creado."
2568
2856
 
2569
2857
  msgid "Guests of"
2570
2858
  msgstr "Huéspedes de"
@@ -2575,11 +2863,14 @@ msgstr "Proxis HTTP"
2575
2863
  msgid "HTTP Proxy identifier to associated"
2576
2864
  msgstr "Identificador de proxy HTTP a los asociados"
2577
2865
 
2866
+ msgid "HW properties"
2867
+ msgstr ""
2868
+
2578
2869
  msgid "Has to be > 0"
2579
2870
  msgstr "Tiene que ser > 0"
2580
2871
 
2581
2872
  msgid "Helper"
2582
- msgstr "Agente"
2873
+ msgstr "Ayudante"
2583
2874
 
2584
2875
  msgid "Hide affected activation keys"
2585
2876
  msgstr ""
@@ -2600,13 +2891,13 @@ msgid "Host"
2600
2891
  msgstr "host"
2601
2892
 
2602
2893
  msgid "Host %s has not been registered with subscription-manager."
2603
- msgstr "El host %s no se ha registrado con el gestor de suscripciones."
2894
+ msgstr "El host %s no se ha registrado en subscription-manager."
2604
2895
 
2605
2896
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2606
- msgstr "No se puede asignar al host %{name} la versión de lanzamiento %{release_version}."
2897
+ msgstr "Al host %{name} no se le puede asignar la versión de lanzamiento %{release_version}."
2607
2898
 
2608
2899
  msgid "Host '%{name}' does not belong to an organization"
2609
- msgstr "El host %{name} no pertenece a una organización."
2900
+ msgstr "El host '%{name}' no pertenece a ninguna organización"
2610
2901
 
2611
2902
  msgid "Host Can Re-Register Only In Build"
2612
2903
  msgstr ""
@@ -2642,7 +2933,7 @@ msgid "Host collection"
2642
2933
  msgstr ""
2643
2934
 
2644
2935
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2645
- msgstr "La recopilación de hosts '%{name}' supera el límite máximo de uso de '%{limit}'"
2936
+ msgstr "La colección de hosts '%{name}' supera el límite máximo de uso de '%{limit}'."
2646
2937
 
2647
2938
  msgid "Host collection is empty."
2648
2939
  msgstr "La recopilación de hosts está vacía."
@@ -2653,6 +2944,9 @@ msgstr ""
2653
2944
  msgid "Host collections updated"
2654
2945
  msgstr ""
2655
2946
 
2947
+ msgid "Host configurations are not updated yet"
2948
+ msgstr ""
2949
+
2656
2950
  msgid "Host content and subscription details"
2657
2951
  msgstr "Detalles del contenido y la suscripción del host"
2658
2952
 
@@ -2663,10 +2957,10 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
2663
2957
  msgstr ""
2664
2958
 
2665
2959
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2666
- msgstr "El host no terminó la acción de contenido en %s segundos. La tarea se ha cancelado."
2960
+ msgstr "El host no ha finalizado la acción de contenido en %s segundos. La tarea ha sido cancelada."
2667
2961
 
2668
2962
  msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
2669
- msgstr "El host no respondió en %s segundos. La tarea se ha cancelado. ¿katello-agent está instalado y goferd se está ejecutando en el host?"
2963
+ msgstr "El host no ha respondido en %s segundos. La tarea ha sido cancelada. ¿Está katello-agent instalado y goferd funcionando en el Host?"
2670
2964
 
2671
2965
  msgid "Host errata advisory"
2672
2966
  msgstr "Aviso de erratas de host"
@@ -2693,17 +2987,20 @@ msgid "Host was not found by the subscription UUID: '%s', this can happen if the
2693
2987
  msgstr ""
2694
2988
 
2695
2989
  msgid "Host with ID %s already exists in the host collection."
2696
- msgstr "Ya existe un host con ID %s en la colección de hosts."
2990
+ msgstr "El host con ID %s ya existe en la colección de hosts."
2697
2991
 
2698
2992
  msgid "Host with ID %s does not exist in the host collection."
2699
2993
  msgstr "El host con ID %s no existe en la colección de hosts."
2700
2994
 
2701
2995
  msgid "Host with ID %s not found."
2702
- msgstr "No se encontró un host con el ID %s."
2996
+ msgstr "Host con ID %s no encontrado."
2703
2997
 
2704
2998
  msgid "Hosts"
2705
2999
  msgstr "Hosts"
2706
3000
 
3001
+ msgid "Hosts to update"
3002
+ msgstr ""
3003
+
2707
3004
  msgid "Hosts with Installable Errata"
2708
3005
  msgstr "Hosta con erratas instalables"
2709
3006
 
@@ -2782,7 +3079,7 @@ msgstr "ID del plan de sincronización"
2782
3079
  msgid "ID: %s doesn't exist "
2783
3080
  msgstr "ID: %s no existe "
2784
3081
 
2785
- msgid "Id"
3082
+ 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."
2786
3083
  msgstr ""
2787
3084
 
2788
3085
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2800,6 +3097,9 @@ msgstr "ID de una colección de ansible para encontrar repositorios que contenga
2800
3097
  msgid "Id of an erratum to find repositories that contain the erratum"
2801
3098
  msgstr "ID de una errata para encontrar repositorios que contengan la errata"
2802
3099
 
3100
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3101
+ msgstr ""
3102
+
2803
3103
  msgid "Id of the content host"
2804
3104
  msgstr "ID del host de contenido"
2805
3105
 
@@ -2872,6 +3172,9 @@ msgstr ""
2872
3172
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2873
3173
  msgstr "Si se especifica, elimine la primera instancia de una suscripción con mismo ID y cantidad"
2874
3174
 
3175
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3176
+ msgstr ""
3177
+
2875
3178
  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."
2876
3179
  msgstr ""
2877
3180
 
@@ -2884,6 +3187,9 @@ msgstr ""
2884
3187
  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."
2885
3188
  msgstr ""
2886
3189
 
3190
+ 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/...'."
3191
+ msgstr ""
3192
+
2887
3193
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2888
3194
  msgstr "Si es verdadero, solo devuelve los conjuntos de repositorios que están asociados a una suscripción activa"
2889
3195
 
@@ -2905,6 +3211,9 @@ msgstr ""
2905
3211
  msgid "Ignorable content can be only set for Yum repositories."
2906
3212
  msgstr "El contenido ignorable solo puede ser configurado para los depósitos de Yum."
2907
3213
 
3214
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3215
+ msgstr ""
3216
+
2908
3217
  msgid "Ignore errors"
2909
3218
  msgstr ""
2910
3219
 
@@ -2917,6 +3226,9 @@ msgstr ""
2917
3226
  msgid "Ignore subscriptions that are unavailable to the specified host"
2918
3227
  msgstr "Ignorar suscripciones no disponibles para el host especificado"
2919
3228
 
3229
+ msgid "Ignored hosts"
3230
+ msgstr ""
3231
+
2920
3232
  msgid "Immediate"
2921
3233
  msgstr "Inmediato"
2922
3234
 
@@ -2924,10 +3236,10 @@ msgid "Import"
2924
3236
  msgstr "Importar"
2925
3237
 
2926
3238
  msgid "Import Content View Version"
2927
- msgstr ""
3239
+ msgstr "Importar contenido Ver versión"
2928
3240
 
2929
3241
  msgid "Import Default Content View"
2930
- msgstr ""
3242
+ msgstr "Importar vista de contenido por defecto"
2931
3243
 
2932
3244
  msgid "Import Manifest"
2933
3245
  msgstr "Importar manifiesto: "
@@ -2957,7 +3269,7 @@ msgid "Import a Manifest using the manifest tab above."
2957
3269
  msgstr "Importar un manifiesto usando la pestaña de manifiesto de arriba."
2958
3270
 
2959
3271
  msgid "Import a content view version"
2960
- msgstr "Importar una versión de vista de contenido"
3272
+ msgstr "Importar una versión de la vista de contenido"
2961
3273
 
2962
3274
  msgid "Import a content view version to the library"
2963
3275
  msgstr ""
@@ -2990,7 +3302,7 @@ msgid "Important"
2990
3302
  msgstr "Importante"
2991
3303
 
2992
3304
  msgid "Importing manifest into '%{subject}' failed."
2993
- msgstr "Ocurrió un error al importar el manifiesto '%{subject}'."
3305
+ msgstr "Error al importar el manifiesto a '%{subject}'."
2994
3306
 
2995
3307
  msgid "In Progress"
2996
3308
  msgstr "en curso"
@@ -2999,13 +3311,13 @@ msgid "In progress"
2999
3311
  msgstr ""
3000
3312
 
3001
3313
  msgid "Include"
3002
- msgstr "Incluir"
3314
+ msgstr "Incluya"
3003
3315
 
3004
- msgid "Include all Module Streams with no errata."
3316
+ msgid "Include all RPMs not associated to any errata"
3005
3317
  msgstr ""
3006
3318
 
3007
- msgid "Include all RPMs with no errata."
3008
- msgstr "Incluir todos los RPM sin erratas."
3319
+ msgid "Include all module streams not associated to any errata"
3320
+ msgstr ""
3009
3321
 
3010
3322
  msgid "Include content views generated by imports/exports. Defaults to false"
3011
3323
  msgstr ""
@@ -3038,7 +3350,7 @@ msgid "Incremental Update of Content View Version(s) "
3038
3350
  msgstr "Actualización gradual de versiones de la vista de contenido"
3039
3351
 
3040
3352
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
3041
- msgstr "Actualización incremental de %{content_view_count} Versiones de vista de contenido"
3353
+ msgstr "Actualización incremental de %{content_view_count} Contenido Ver versión(es) "
3042
3354
 
3043
3355
  msgid "Incremental update"
3044
3356
  msgstr "Actualización incremental"
@@ -3047,7 +3359,7 @@ msgid "Incremental update requires at least one content unit"
3047
3359
  msgstr "La actualización incremental requiere al menos una unidad de contenido"
3048
3360
 
3049
3361
  msgid "Incremental update specified for composite %{name} version %{version}, but no components updated."
3050
- msgstr "Actualización incremental especificada para compuesto %{name} versión %{version}, pero no se actualizaron los componentes."
3362
+ msgstr "Actualización incremental especificada para el compuesto %{name} versión %{version}, pero ningún componente actualizado."
3051
3363
 
3052
3364
  msgid "Index content"
3053
3365
  msgstr "Contenido del índice"
@@ -3062,7 +3374,7 @@ msgid "Index package groups"
3062
3374
  msgstr "Grupos de paquete del índice"
3063
3375
 
3064
3376
  msgid "Informable Type must be one of the following [ %{list} ]"
3065
- msgstr "El tipo informable debe ser uno de los siguientes [ %{list} ]"
3377
+ msgstr "Informable El tipo debe ser uno de los siguientes [ %{list} ]"
3066
3378
 
3067
3379
  msgid "Inherit from Repository"
3068
3380
  msgstr "Heredar del repositorio"
@@ -3071,13 +3383,13 @@ msgid "Initiate a sync of the products attached to the sync plan"
3071
3383
  msgstr "Iniciar una sincronización de los productos adjuntos al plan de sincronización"
3072
3384
 
3073
3385
  msgid "Install"
3074
- msgstr ""
3386
+ msgstr "Instale"
3075
3387
 
3076
3388
  msgid "Install Applicable Errata"
3077
3389
  msgstr "Instalación de erratas aplicables"
3078
3390
 
3079
3391
  msgid "Install Applicable Errata on %s"
3080
- msgstr "Instalar erratas aplicables en %s"
3392
+ msgstr "Instale las erratas aplicables en %s"
3081
3393
 
3082
3394
  msgid "Install content on one or more hosts using katello-agent. %s"
3083
3395
  msgstr ""
@@ -3092,13 +3404,13 @@ msgid "Install erratum"
3092
3404
  msgstr "Instalación de errata"
3093
3405
 
3094
3406
  msgid "Install erratum for %s"
3095
- msgstr "Instalación de errata para %s"
3407
+ msgstr "Instalar fe de erratas para %s"
3096
3408
 
3097
3409
  msgid "Install package"
3098
3410
  msgstr "Instalar paquete"
3099
3411
 
3100
3412
  msgid "Install package for %s"
3101
- msgstr "Instalar grupo de paquetes para %s"
3413
+ msgstr "Instalar paquete para %s"
3102
3414
 
3103
3415
  msgid "Install package group"
3104
3416
  msgstr "Instalación de grupo de paquetes"
@@ -3130,24 +3442,30 @@ msgstr ""
3130
3442
  msgid "Installable"
3131
3443
  msgstr "Instalable"
3132
3444
 
3133
- msgid "Installable errata"
3445
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3134
3446
  msgstr ""
3135
3447
 
3136
3448
  msgid "Installable errata from content view"
3137
3449
  msgstr ""
3138
3450
 
3451
+ msgid "Installable updates"
3452
+ msgstr ""
3453
+
3139
3454
  msgid "Installation of errata requested: %{errata}"
3140
- msgstr "Instalación de erratas solicitada: %{errata}"
3455
+ msgstr "Instalación de la fe de erratas solicitada: %{errata}"
3141
3456
 
3142
3457
  msgid "Installation of package group(s) requested: %{groups}"
3143
- msgstr "Instalación de grupos de paquetes solicitados: %{groups}"
3458
+ msgstr "Instalación del grupo o grupos de paquetes solicitados: %{groups}"
3144
3459
 
3145
3460
  msgid "Installation of package(s) requested: %{packages}"
3146
- msgstr "Instalación de paquetes solicitados: %{packages}"
3461
+ msgstr "Instalación del paquete o paquetes solicitados: %{packages}"
3147
3462
 
3148
3463
  msgid "Installation status"
3149
3464
  msgstr ""
3150
3465
 
3466
+ msgid "Installed"
3467
+ msgstr "Instalado"
3468
+
3151
3469
  msgid "Installed Packages"
3152
3470
  msgstr "Paquetes instalados"
3153
3471
 
@@ -3193,20 +3511,17 @@ msgstr "El intervalo no se estableció correctamente"
3193
3511
  msgid "Invalid"
3194
3512
  msgstr "Inválido"
3195
3513
 
3196
- msgid "Invalid SSL CA certificate given for CDN"
3197
- msgstr ""
3198
-
3199
3514
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3200
3515
  msgstr "Asociación no válida de ID de vista de contenido. La vista de contenido debe coincidir con la versión de la vista de contenido que se está guardando"
3201
3516
 
3202
3517
  msgid "Invalid content label: %s"
3203
- msgstr "Etiqueta de contenido inválida: %s"
3518
+ msgstr "Etiqueta de contenido no válida: %s"
3204
3519
 
3205
3520
  msgid "Invalid content type %s"
3206
3521
  msgstr "Tipo de contenido no válido %s"
3207
3522
 
3208
3523
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
3209
- msgstr "El tipo de contenido '%{content_type}' proporcionado no es válido. Los tipos de contenido pueden ser %{content_types}."
3524
+ msgstr "Tipo de contenido no válido '%{content_type}' proporcionado. Los tipos de contenido pueden ser %{content_types}"
3210
3525
 
3211
3526
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
3212
3527
  msgstr "Intervalo de fechas no válido. La fecha de inicio de la regla de filtro de errata debe ser anterior a la fecha de finalización"
@@ -3218,10 +3533,13 @@ msgid "Invalid erratum filter rule specified, Must specify at least one of the f
3218
3533
  msgstr "Se ha especificado una regla de filtro de errata no válida. Debe especificar al menos una de las siguientes opciones: 'errata_id', 'start_date', 'end_date' o 'types'"
3219
3534
 
3220
3535
  msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
3221
- msgstr "Tipos de errata no válidos %{invalid_types} provistos. El tipo de errata puede ser %{valid_types}"
3536
+ msgstr "Tipos de erratas no válidos %{invalid_types} proporcionados. El tipo de errata puede ser cualquiera de %{valid_types}"
3222
3537
 
3223
3538
  msgid "Invalid event_type %s"
3224
- msgstr "event_type %s no válido"
3539
+ msgstr "Tipo_evento no válido %s"
3540
+
3541
+ msgid "Invalid export format provided. Format must be one of %s "
3542
+ msgstr ""
3225
3543
 
3226
3544
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3227
3545
  msgstr "Regla de filtro no válida. 'version' no se puede especificar en la misma tupla que 'min_version' o 'max_version'"
@@ -3236,10 +3554,19 @@ msgid "Invalid parameters sent. You may have mistyped the address. If you contin
3236
3554
  msgstr "Parámetros inválidos enviados. Pudo haber escrito mal la dirección. Si continúa teniendo problemas con esto, por favor contacte al administrador."
3237
3555
 
3238
3556
  msgid "Invalid params provided - content_type must be one of %s"
3239
- msgstr "Parámetros proporcionados no válidos: content_type debe ser %s"
3557
+ msgstr "Parámetros no válidos proporcionados - content_type debe ser uno de los siguientes %s"
3240
3558
 
3241
3559
  msgid "Invalid params provided - date_type must be one of %s"
3242
- msgstr "Los parámetros proporcionados no son válidos: date_type debe ser %s."
3560
+ msgstr "Parámetros no válidos proporcionados - date_type debe ser uno de los siguientes %s"
3561
+
3562
+ msgid "Invalid params provided - with_content must be one of %s"
3563
+ msgstr ""
3564
+
3565
+ msgid "Invalid path provided. Content can be only imported from file system. "
3566
+ msgstr ""
3567
+
3568
+ msgid "Invalid release version: [%s]"
3569
+ msgstr ""
3243
3570
 
3244
3571
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3245
3572
  msgstr ""
@@ -3251,15 +3578,21 @@ msgid "Invalid value specified for ignorable content."
3251
3578
  msgstr "Valor no válido especificado para contenido ignorable."
3252
3579
 
3253
3580
  msgid "Invalid value specified for ignorable content. Permissible values %s"
3254
- msgstr "Valor especificado no válido para contenido ignorable. Valores permitidos %s"
3581
+ msgstr "Valor no válido especificado para contenido ignorable. Valores permitidos %s"
3255
3582
 
3256
3583
  msgid "Issued"
3257
- msgstr "Emitido"
3584
+ msgstr "Publicado"
3258
3585
 
3259
3586
  msgid "Issued from"
3260
3587
  msgstr ""
3261
3588
 
3262
- msgid "Job ${description} has started."
3589
+ msgid "Items will appear here when a filter rule is added."
3590
+ msgstr ""
3591
+
3592
+ msgid "Job '${description}' completed"
3593
+ msgstr ""
3594
+
3595
+ msgid "Job '${description}' has started."
3263
3596
  msgstr ""
3264
3597
 
3265
3598
  msgid "Katello ID of local pool to update"
@@ -3320,7 +3653,7 @@ msgid "Kickstart repository ID"
3320
3653
  msgstr "ID del repositorio de Kickstart"
3321
3654
 
3322
3655
  msgid "Kickstart repository was not set for host '%{host}'"
3323
- msgstr "El repositorio de Kickstart no estaba configurado para el host '%{host}'"
3656
+ msgstr "El repositorio Kickstart no está configurado para el host '%{host}'"
3324
3657
 
3325
3658
  msgid "Label"
3326
3659
  msgstr "Etiqueta"
@@ -3331,9 +3664,21 @@ msgstr "Etiqueta del contenido"
3331
3664
  msgid "Label of the content view"
3332
3665
  msgstr ""
3333
3666
 
3667
+ msgid "Last check-in:"
3668
+ msgstr ""
3669
+
3670
+ msgid "Last checkin"
3671
+ msgstr ""
3672
+
3334
3673
  msgid "Last published"
3335
3674
  msgstr "Última publicación"
3336
3675
 
3676
+ msgid "Last refresh"
3677
+ msgstr ""
3678
+
3679
+ msgid "Last refresh :"
3680
+ msgstr ""
3681
+
3337
3682
  msgid "Last task"
3338
3683
  msgstr ""
3339
3684
 
@@ -3349,11 +3694,14 @@ msgstr ""
3349
3694
  msgid "Learn more about adding Subscription Manifests"
3350
3695
  msgstr "Aprenda más sobre cómo añadir manifiestos de suscripción"
3351
3696
 
3697
+ msgid "Legacy content host UI"
3698
+ msgstr ""
3699
+
3352
3700
  msgid "Less than"
3353
3701
  msgstr ""
3354
3702
 
3355
3703
  msgid "Library"
3356
- msgstr ""
3704
+ msgstr "Biblioteca"
3357
3705
 
3358
3706
  msgid "Library lifecycle environments may not be deleted."
3359
3707
  msgstr "La biblioteca de entornos de ciclo de vida puede borrarse."
@@ -3368,10 +3716,10 @@ msgid "Lifecycle Environment"
3368
3716
  msgstr "El entorno de ciclo de vida"
3369
3717
 
3370
3718
  msgid "Lifecycle Environment %s has associated Activation Keys. Please change or remove the associated Activation Keys before trying to delete this lifecycle environment."
3371
- msgstr "El entorno de ciclo de vida %s ha asociado llaves de activación . Cambie o retire las llaves de activación asociadas antes de intentar borrar este entorno de ciclo de vida."
3719
+ msgstr "El entorno del ciclo de vida %s tiene claves de activación asociadas. Cambie o elimine las claves de activación asociadas antes de intentar eliminar este entorno del ciclo de vida."
3372
3720
 
3373
3721
  msgid "Lifecycle Environment %s has associated Hosts. Please unregister or move the associated Hosts before trying to delete this lifecycle environment."
3374
- msgstr "El entorno de ciclo de vida %s ha asociado hosts. Cambie o retire los hosts asociados antes de intentar borrar este entorno de ciclo de vida."
3722
+ msgstr "El entorno del ciclo de vida %s tiene hosts asociados. Por favor, anule el registro o mueva los Hosts asociados antes de intentar eliminar este entorno de ciclo de vida."
3375
3723
 
3376
3724
  msgid "Lifecycle Environment ID"
3377
3725
  msgstr "ID de entorno de ciclo de vida"
@@ -3386,7 +3734,7 @@ msgid "Lifecycle environment"
3386
3734
  msgstr ""
3387
3735
 
3388
3736
  msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
3389
- msgstr "Entorno de ciclo de vida '%{environment}' no está vinculado a esta Capsule."
3737
+ msgstr "El entorno del ciclo de vida '%{environment}' no está vinculado a esta cápsula."
3390
3738
 
3391
3739
  msgid "Lifecycle environment ID"
3392
3740
  msgstr "ID de entorno de ciclo de vida"
@@ -3394,6 +3742,9 @@ msgstr "ID de entorno de ciclo de vida"
3394
3742
  msgid "Lifecycle environment for the host."
3395
3743
  msgstr ""
3396
3744
 
3745
+ msgid "Lifecycle environment must be specified"
3746
+ msgstr ""
3747
+
3397
3748
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3398
3749
  msgstr "El entorno del ciclo de vida no estaba adjunto al proxy inteligente; por lo tanto, no se realizaron cambios."
3399
3750
 
@@ -3415,8 +3766,11 @@ msgstr "Limitar el contenido a solo lo disponible en la versión de visualizaci
3415
3766
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3416
3767
  msgstr ""
3417
3768
 
3769
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3770
+ msgstr ""
3771
+
3418
3772
  msgid "Limit to environment"
3419
- msgstr "Limitar al entorno"
3773
+ msgstr "Límite al medio ambiente"
3420
3774
 
3421
3775
  msgid "Limits"
3422
3776
  msgstr "Límites"
@@ -3445,6 +3799,9 @@ msgstr "Listar todos los :resource_id"
3445
3799
  msgid "List all organizations"
3446
3800
  msgstr "Mostrar todas las organizaciones"
3447
3801
 
3802
+ msgid "List alternate content sources."
3803
+ msgstr ""
3804
+
3448
3805
  msgid "List an activation key's subscriptions"
3449
3806
  msgstr "Mostrar las suscripciones de una llave de activación"
3450
3807
 
@@ -3514,7 +3871,7 @@ msgstr ""
3514
3871
  msgid "List of Products for sync plan"
3515
3872
  msgstr "Lista de productos para el plan de sincronización"
3516
3873
 
3517
- msgid "List of alternate_content_sources"
3874
+ msgid "List of alternate content source IDs"
3518
3875
  msgstr ""
3519
3876
 
3520
3877
  msgid "List of component content view version ids for composite views"
@@ -3527,7 +3884,7 @@ msgid "List of content (e.g. package or package group names)"
3527
3884
  msgstr "Lista de contenido (p. ej., nombres de paquetes o de grupos de paquetes)"
3528
3885
 
3529
3886
  msgid "List of content units to ignore while syncing a yum repository. Must be subset of %s"
3530
- msgstr "Lista de unidades de contenido que se deben ignorar al sincronizar un repositorio yum. Debe ser un subconjunto de %s"
3887
+ msgstr "Lista de unidades de contenido a ignorar al sincronizar un repositorio yum. Debe ser un subconjunto de %s"
3531
3888
 
3532
3889
  msgid "List of enabled repo urls for the repo (Only first is used.)"
3533
3890
  msgstr "Lista de URL de repositorios habilitados para el repositorio (Solo se utiliza la primera.)"
@@ -3607,6 +3964,9 @@ msgstr "Lista de repositorios en una organización"
3607
3964
  msgid "List of repository ids"
3608
3965
  msgstr "lista de ID de repositorio"
3609
3966
 
3967
+ msgid "List of resources types that will be automatically associated"
3968
+ msgstr "Lista de tipos de recurso que se asociarán automáticamente"
3969
+
3610
3970
  msgid "List of subscription products in a subscription"
3611
3971
  msgstr "Lista de productos de suscripción en una suscripción"
3612
3972
 
@@ -3665,7 +4025,7 @@ msgid "Loading versions"
3665
4025
  msgstr ""
3666
4026
 
3667
4027
  msgid "Loading..."
3668
- msgstr ""
4028
+ msgstr "Cargando..."
3669
4029
 
3670
4030
  msgid "Low"
3671
4031
  msgstr ""
@@ -3695,10 +4055,10 @@ msgid "Manifest imported"
3695
4055
  msgstr "Manifiesto importado"
3696
4056
 
3697
4057
  msgid "Manifest in '%{subject}' deleted."
3698
- msgstr "Manifiesto en '%{subject}' eliminado."
4058
+ msgstr "Manifiesto en '%{subject}' borrado."
3699
4059
 
3700
4060
  msgid "Manifest in '%{subject}' failed to refresh."
3701
- msgstr "Ocurrió un error al actualizar el manifiesto en '%{subject}'."
4061
+ msgstr "El manifiesto en '%{subject}' no se actualizó."
3702
4062
 
3703
4063
  msgid "Manifest in '%{subject}' imported."
3704
4064
  msgstr "Manifiesto en '%{subject}' importado."
@@ -3712,8 +4072,14 @@ msgstr "Tiempo de espera de actualización de manifiesto"
3712
4072
  msgid "Manifest refreshed"
3713
4073
  msgstr "Manifiesto actualizado"
3714
4074
 
4075
+ msgid "Manual"
4076
+ msgstr "Manual"
4077
+
4078
+ msgid "Manual authentication"
4079
+ msgstr ""
4080
+
3715
4081
  msgid "Mark Content Host Statuses as Unknown for %s"
3716
- msgstr "Marcar los estados de host de contenido como Desconocido para %s"
4082
+ msgstr "Marcar estados de host de contenido como desconocidos para %s"
3717
4083
 
3718
4084
  msgid "Matched"
3719
4085
  msgstr "Concordancia"
@@ -3725,13 +4091,13 @@ msgid "Max %(maxQuantity)s"
3725
4091
  msgstr "Max %(maxQuantity)s"
3726
4092
 
3727
4093
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3728
- msgstr "Se alcanzó el máximo de hosts (%{limit}) para la llave de activación '%{name}'"
4094
+ msgstr "Max Hosts (%{limit}) alcanzado para la clave de activación '%{name}'"
3729
4095
 
3730
4096
  msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3731
4097
  msgstr ""
3732
4098
 
3733
4099
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3734
- msgstr "Se ha superado el número máximo de hosts de contenido para las recopilaciones de hosts: %s"
4100
+ msgstr "Se ha superado el número máximo de hosts de contenido para la(s) colección(es) de hosts: %s"
3735
4101
 
3736
4102
  msgid "Maximum number of hosts in the host collection"
3737
4103
  msgstr "Número máximo de hosts en la colección de hosts"
@@ -3773,7 +4139,10 @@ msgid "Missing activation key!"
3773
4139
  msgstr ""
3774
4140
 
3775
4141
  msgid "Missing arguments %{substitutions} for %{content_url}"
3776
- msgstr "Argumentos faltantes %{substitutions} para %{content_url}"
4142
+ msgstr "Argumentos que faltan %{substitutions} para %{content_url}"
4143
+
4144
+ msgid "Model"
4145
+ msgstr "Modelado"
3777
4146
 
3778
4147
  msgid "Moderate"
3779
4148
  msgstr "Moderado"
@@ -3796,7 +4165,7 @@ msgstr ""
3796
4165
  msgid "Module streams"
3797
4166
  msgstr ""
3798
4167
 
3799
- msgid "Module streams will appear here when available."
4168
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3800
4169
  msgstr ""
3801
4170
 
3802
4171
  msgid "Multi-entitlement"
@@ -3814,11 +4183,19 @@ msgstr "ND"
3814
4183
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3815
4184
  msgstr ""
3816
4185
 
4186
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4187
+ msgstr ""
4188
+
3817
4189
  msgid ""
3818
4190
  "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"
3819
4191
  " %{repos}"
3820
4192
  msgstr ""
3821
4193
 
4194
+ msgid ""
4195
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4196
+ " %{repos}"
4197
+ msgstr ""
4198
+
3822
4199
  msgid ""
3823
4200
  "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"
3824
4201
  " %{repos}"
@@ -3830,6 +4207,9 @@ msgstr ""
3830
4207
  msgid "Name"
3831
4208
  msgstr "Nombre"
3832
4209
 
4210
+ msgid "Name and label of default content view should not be changed"
4211
+ msgstr ""
4212
+
3833
4213
  msgid "Name is a required parameter."
3834
4214
  msgstr ""
3835
4215
 
@@ -3854,6 +4234,12 @@ msgstr "Nombre del repositorio"
3854
4234
  msgid "Name of the upstream docker repository"
3855
4235
  msgstr "Nombre del repositorio de docker de canal ascendente"
3856
4236
 
4237
+ msgid "Name source"
4238
+ msgstr ""
4239
+
4240
+ msgid "Names of smart proxies to associate"
4241
+ msgstr ""
4242
+
3857
4243
  msgid "Needs to only be set for docker tags"
3858
4244
  msgstr "Solo se debe establecer para las etiquetas de docker.."
3859
4245
 
@@ -3866,6 +4252,9 @@ msgstr "Anidar"
3866
4252
  msgid "Network Sync"
3867
4253
  msgstr ""
3868
4254
 
4255
+ msgid "Never"
4256
+ msgstr "Nunca"
4257
+
3869
4258
  msgid "Never Synced"
3870
4259
  msgstr "Nunca sincronizado"
3871
4260
 
@@ -3873,10 +4262,10 @@ msgid "New Errata"
3873
4262
  msgstr "Nuevas erratas"
3874
4263
 
3875
4264
  msgid "New Files: %s"
3876
- msgstr "Nuevos archivos: %s"
4265
+ msgstr "Archivos nuevos: %s"
3877
4266
 
3878
4267
  msgid "New blobs: %{count}."
3879
- msgstr "Nuevos blobs: %{count}."
4268
+ msgstr "Nuevas manchas: %{count}."
3880
4269
 
3881
4270
  msgid "New content view name"
3882
4271
  msgstr "Nuevo nombre de vista de contenido"
@@ -3921,7 +4310,7 @@ msgid "No Manifest Uploaded"
3921
4310
  msgstr "No se cargó un manifiesto"
3922
4311
 
3923
4312
  msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
3924
- msgstr "Actualmente no hay productos de Red Hat, importe un manifiesto %(anchorBegin)s aquí %(anchorEnd)s para recibir el contenido de Red Hat. No hay conjuntos de repositorios disponibles."
4313
+ msgstr "No existen productos Red Hat actualmente, por favor importe un manifiesto %(anchorBegin)s aquí %(anchorEnd)s para recibir contenido Red Hat. No hay conjuntos de repositorios disponibles."
3925
4314
 
3926
4315
  msgid "No Service Level Preference"
3927
4316
  msgstr "No hay preferencia de nivel de servicio"
@@ -3930,7 +4319,7 @@ msgid "No URL found for a container registry. Please check the configuration."
3930
4319
  msgstr "No se encontró ningún URL para un registro de contenedores. Compruebe la configuración."
3931
4320
 
3932
4321
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3933
- msgstr "No hay versión de vista de contenido %{component} ya existe como un componente de la vista de contenido de compuesto %{composite} versión %{version}"
4322
+ msgstr "No La versión de la vista de contenido %{component} ya existe como componente de la versión compuesta de la vista de contenido %{composite} %{version}"
3934
4323
 
3935
4324
  msgid "No action is needed because there are no applicable errata for this host."
3936
4325
  msgstr ""
@@ -3942,7 +4331,7 @@ msgid "No applicable errata"
3942
4331
  msgstr ""
3943
4332
 
3944
4333
  msgid "No applicable errata for %s, skipping"
3945
- msgstr "No hay erratas aplicables para %s, salteando"
4334
+ msgstr "No hay erratas aplicables para %s, skipping"
3946
4335
 
3947
4336
  msgid "No applications to restart"
3948
4337
  msgstr ""
@@ -3962,6 +4351,9 @@ msgstr "No ha sido aprobado ningún contenido."
3962
4351
  msgid "No content ids provided"
3963
4352
  msgstr "No se proporcionaron ID de contenido."
3964
4353
 
4354
+ msgid "No content in selected versions."
4355
+ msgstr ""
4356
+
3965
4357
  msgid "No content view history events found."
3966
4358
  msgstr "No se han encontrado eventos de historial de la vista de contenido."
3967
4359
 
@@ -4013,13 +4405,19 @@ msgstr ""
4013
4405
  msgid "No host collections found."
4014
4406
  msgstr "No se han encontrado recopilaciones de hosts."
4015
4407
 
4408
+ msgid "No host collections yet"
4409
+ msgstr ""
4410
+
4411
+ msgid "No hosts found"
4412
+ msgstr ""
4413
+
4016
4414
  msgid "No hosts have been specified."
4017
4415
  msgstr "No se han especificado hosts."
4018
4416
 
4019
4417
  msgid "No hosts registered with subscription-manager found in selection."
4020
4418
  msgstr "No se encontraron hosts registrados con el gestor de suscripciones en la selección."
4021
4419
 
4022
- msgid "No hosts with content source found!"
4420
+ msgid "No hosts were specified"
4023
4421
  msgstr ""
4024
4422
 
4025
4423
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4037,9 +4435,15 @@ msgstr ""
4037
4435
  msgid "No matching "
4038
4436
  msgstr ""
4039
4437
 
4438
+ msgid "No matching ${name} found."
4439
+ msgstr ""
4440
+
4040
4441
  msgid "No matching ${selectedContentType} found"
4041
4442
  msgstr ""
4042
4443
 
4444
+ msgid "No matching DEB found."
4445
+ msgstr ""
4446
+
4043
4447
  msgid "No matching RPM found."
4044
4448
  msgstr ""
4045
4449
 
@@ -4124,6 +4528,9 @@ msgstr "No es necesario reiniciar ningún proceso"
4124
4528
  msgid "No products are enabled."
4125
4529
  msgstr "No hay productos habilitados."
4126
4530
 
4531
+ msgid "No profiles to show"
4532
+ msgstr "No hay perfiles para mostrar"
4533
+
4127
4534
  msgid "No pulp workers running."
4128
4535
  msgstr "No hay trabajadores Pulp en ejecución."
4129
4536
 
@@ -4197,7 +4604,10 @@ msgid "Not added"
4197
4604
  msgstr ""
4198
4605
 
4199
4606
  msgid "Not all necessary pulp workers running at %s."
4200
- msgstr "No todos los trabajadores de pulp trabajan en %s."
4607
+ msgstr "No todos los trabajadores de la pulpa necesarios funcionando en %s."
4608
+
4609
+ msgid "Not installed"
4610
+ msgstr "No instalado"
4201
4611
 
4202
4612
  msgid "Not running"
4203
4613
  msgstr "No se está ejecutando"
@@ -4206,10 +4616,10 @@ msgid "Not specified"
4206
4616
  msgstr ""
4207
4617
 
4208
4618
  msgid "Not yet published"
4209
- msgstr "Aún no se ha publicado"
4619
+ msgstr "Aún no publicado"
4210
4620
 
4211
4621
  msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
4212
- msgstr "Nota: se desaconseja FERVIENTEMENTE eliminar un manifiesto de suscripción. Hacerlo provocará:"
4622
+ msgstr "Nota: Se desaconseja ENCARECIDAMENTE borrar un manifiesto de suscripción. La eliminación de un manifiesto:"
4213
4623
 
4214
4624
  msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
4215
4625
  msgstr "Nota: El número de paréntesis refleja todas las erratas aplicables al entorno de biblioteca que no están disponibles para el host. Debe promover este contenido a la vista de contenido relevante para que estén disponibles."
@@ -4217,6 +4627,9 @@ msgstr "Nota: El número de paréntesis refleja todas las erratas aplicables al
4217
4627
  msgid "Nothing selected"
4218
4628
  msgstr "Nada seleccionado"
4219
4629
 
4630
+ msgid "Number of CPU(s)"
4631
+ msgstr ""
4632
+
4220
4633
  msgid "Number of host applicability calculations to process per task."
4221
4634
  msgstr "Número de cálculos de aplicabilidad del host para procesar por tarea."
4222
4635
 
@@ -4229,6 +4642,9 @@ msgstr "Número de resultados por página a devolver."
4229
4642
  msgid "Number to Allocate"
4230
4643
  msgstr "Número a asignar"
4231
4644
 
4645
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4646
+ msgstr ""
4647
+
4232
4648
  msgid "OSTree Branch"
4233
4649
  msgstr "Rama de OSTree"
4234
4650
 
@@ -4250,6 +4666,9 @@ msgstr "Objeto para mostrar suscripciones disponibles para 'host' o 'activation_
4250
4666
  msgid "On Demand"
4251
4667
  msgstr "Bajo pedido"
4252
4668
 
4669
+ msgid "On the RHUA Instance, check the available repositories."
4670
+ msgstr ""
4671
+
4253
4672
  msgid "On-disk location for exported repositories"
4254
4673
  msgstr "Ubicación en disco para repositorios exportados"
4255
4674
 
@@ -4257,7 +4676,7 @@ msgid "On-disk location for pulp 3 exported repositories"
4257
4676
  msgstr ""
4258
4677
 
4259
4678
  msgid "One of parameters [ %s ] required but not specified."
4260
- msgstr "Se necesita uno de los parámetros [ %s ] pero no está especificado."
4679
+ msgstr "Uno de los parámetros [ %s ] requerido pero no especificado."
4261
4680
 
4262
4681
  msgid "One of yum or docker"
4263
4682
  msgstr "Uno de yum o docker"
@@ -4266,7 +4685,7 @@ msgid "One or more hosts not found"
4266
4685
  msgstr "No se pudo encontrar uno o más hosts"
4267
4686
 
4268
4687
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4269
- msgstr "Uno o más ids (%{ids}) no fueron encontrados para %{assoc}. Puede que no tenga permiso para verlos."
4688
+ msgstr "Uno o más ids (%{ids}) no fueron encontrados para %{assoc}. Es posible que no tenga permisos para verlos."
4270
4689
 
4271
4690
  msgid "One or more packages failed to sync properly."
4272
4691
  msgstr "Uno o más paquetes no se pudo sincronizar adecuadamente."
@@ -4293,7 +4712,7 @@ msgid "Organization"
4293
4712
  msgstr "Organización"
4294
4713
 
4295
4714
  msgid "Organization %s is being deleted."
4296
- msgstr "La organización %s se está borrando."
4715
+ msgstr "Se elimina la organización %s."
4297
4716
 
4298
4717
  msgid "Organization ID"
4299
4718
  msgstr "ID de organización"
@@ -4325,6 +4744,9 @@ msgstr "Se requiere organización"
4325
4744
  msgid "Orphaned Content Protection Time"
4326
4745
  msgstr ""
4327
4746
 
4747
+ 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!"
4748
+ msgstr ""
4749
+
4328
4750
  msgid "Other"
4329
4751
  msgstr "Otro"
4330
4752
 
@@ -4383,7 +4805,7 @@ msgid "Package Group Install Timed Out"
4383
4805
  msgstr "Instalación de grupo de paquetes expiró"
4384
4806
 
4385
4807
  msgid "Package Group Install scheduled by %s"
4386
- msgstr "Instalación de grupo de paquetes programada por %s"
4808
+ msgstr "Grupo de paquetes Instalación programada por %s"
4387
4809
 
4388
4810
  msgid "Package Group Remove"
4389
4811
  msgstr "Retiro de grupo de paquetes"
@@ -4401,13 +4823,13 @@ msgid "Package Group Remove Timed Out"
4401
4823
  msgstr "Retiro de grupo de paquetes expiró"
4402
4824
 
4403
4825
  msgid "Package Group Remove scheduled by %s"
4404
- msgstr "Retiro de grupo de paquetes programado por %s"
4826
+ msgstr "Grupo de paquetes Eliminar programado por %s"
4405
4827
 
4406
4828
  msgid "Package Group Update"
4407
4829
  msgstr "Actualización de grupo de paquetes"
4408
4830
 
4409
4831
  msgid "Package Group Update scheduled by %s"
4410
- msgstr "Actualización de grupo de paquetes programada por %s"
4832
+ msgstr "Actualización del grupo de paquetes programada por %s"
4411
4833
 
4412
4834
  msgid "Package Groups"
4413
4835
  msgstr "Grupos de paquetes"
@@ -4428,13 +4850,13 @@ msgid "Package Install Timed Out"
4428
4850
  msgstr "Instalación de paquete expiró"
4429
4851
 
4430
4852
  msgid "Package Install scheduled by %s"
4431
- msgstr "Instalación de paquetes programada por %s"
4853
+ msgstr "Instalación del paquete programada por %s"
4432
4854
 
4433
4855
  msgid "Package Profile Update"
4434
4856
  msgstr "Actualización de perfil del paquete"
4435
4857
 
4436
4858
  msgid "Package Profile Update for %s"
4437
- msgstr "Actualización de perfil del paquete para %s"
4859
+ msgstr "Actualización del perfil del paquete para %s"
4438
4860
 
4439
4861
  msgid "Package Remove"
4440
4862
  msgstr "Retiro de paquetes"
@@ -4452,7 +4874,7 @@ msgid "Package Remove Timed Out"
4452
4874
  msgstr "Retiro de paquete expiró"
4453
4875
 
4454
4876
  msgid "Package Remove scheduled by %s"
4455
- msgstr "Retiro de paquetes programado por %s"
4877
+ msgstr "Paquete Eliminar programado por %s"
4456
4878
 
4457
4879
  msgid "Package Type"
4458
4880
  msgstr ""
@@ -4497,10 +4919,10 @@ msgid "Package identifiers to filter content by"
4497
4919
  msgstr "Identificadores de paquetes para filtrar el contenido"
4498
4920
 
4499
4921
  msgid "Package install failed: \"%{package}\""
4500
- msgstr "Falló instalación del paquete: \"%{package}\""
4922
+ msgstr "Fallo en la instalación del paquete: \"%{package}\""
4501
4923
 
4502
4924
  msgid "Package installation: \"%{package}\" "
4503
- msgstr "Instalación de paquete: \"%{package}\" "
4925
+ msgstr "Instalación del paquete: \"%{package}\" "
4504
4926
 
4505
4927
  msgid "Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist."
4506
4928
  msgstr ""
@@ -4542,13 +4964,7 @@ msgid "Password to access URL"
4542
4964
  msgstr "Contraseña para acceder al URL"
4543
4965
 
4544
4966
  msgid "Path"
4545
- msgstr "Trayecto"
4546
-
4547
- msgid "Path for ssl cert used for pulp server auth"
4548
- msgstr "La ruta para el certificado ssl que se usa para la autenticación del server de pulp"
4549
-
4550
- msgid "Path for ssl key used for pulp server auth"
4551
- msgstr "Ruta para la llave ssl que se usa para la autenticación del server de pulp"
4967
+ msgstr "Ruta"
4552
4968
 
4553
4969
  msgid "Path suffixes for finding alternate content"
4554
4970
  msgstr ""
@@ -4584,7 +5000,7 @@ msgid "Performs an incremental-export of the repositories in library."
4584
5000
  msgstr ""
4585
5001
 
4586
5002
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
4587
- msgstr "Permiso denegado. El usuario '%{user}' no tiene permiso para acceder a la organización '%{org}'."
5003
+ msgstr "Permiso denegado. El usuario '%{user}' no tiene permisos para acceder a la organización '%{org}'."
4588
5004
 
4589
5005
  msgid "Physical"
4590
5006
  msgstr "Físico"
@@ -4634,6 +5050,9 @@ msgstr "Seleccione uno de la lista de abajo y será redirigido."
4634
5050
  msgid "Please wait while the task starts.."
4635
5051
  msgstr ""
4636
5052
 
5053
+ msgid "Please wait..."
5054
+ msgstr ""
5055
+
4637
5056
  msgid "Policy to set for mirroring content. Must be one of %s."
4638
5057
  msgstr ""
4639
5058
 
@@ -4689,7 +5108,7 @@ msgid "Product ID"
4689
5108
  msgstr "ID de producto"
4690
5109
 
4691
5110
  msgid "Product Name"
4692
- msgstr "Nombre de producto"
5111
+ msgstr "Nombre del producto"
4693
5112
 
4694
5113
  msgid "Product and Repositories"
4695
5114
  msgstr "Producto y repositorios"
@@ -4720,14 +5139,23 @@ msgid "Product version"
4720
5139
  msgstr "Versión del producto"
4721
5140
 
4722
5141
  msgid "Product with ID %s not found in Candlepin. Skipping content import for it."
4723
- msgstr "Producto con ID %s no encontrado en Candlepin. Saltando la importación de contenido por ese motivo."
5142
+ msgstr "Producto con ID %s no encontrado en Candlepin. Omitiendo la importación de contenido para ello."
4724
5143
 
4725
5144
  msgid "Product: '%{product}', Repository: '%{repository}'"
4726
5145
  msgstr ""
4727
5146
 
5147
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5148
+ msgstr ""
5149
+
4728
5150
  msgid "Products"
4729
5151
  msgstr "Productos"
4730
5152
 
5153
+ msgid "Products updated."
5154
+ msgstr ""
5155
+
5156
+ msgid "Profiles"
5157
+ msgstr "Perfiles"
5158
+
4731
5159
  msgid "Promote"
4732
5160
  msgstr "Promover"
4733
5161
 
@@ -4744,13 +5172,13 @@ msgid "Promoted to "
4744
5172
  msgstr ""
4745
5173
 
4746
5174
  msgid "Promoted to %{environment}"
4747
- msgstr "Promovida a %{environment}"
5175
+ msgstr "Ascendido a %{environment}"
4748
5176
 
4749
5177
  msgid "Promotion Summary"
4750
- msgstr "Resumen de la promoción"
5178
+ msgstr "Resumen de promoción"
4751
5179
 
4752
5180
  msgid "Promotion Summary for %{content_view}"
4753
- msgstr "Resumen de la promoción para %{content_view}"
5181
+ msgstr "Resumen de la promoción en %.{content_view}"
4754
5182
 
4755
5183
  msgid "Promotion to Environment"
4756
5184
  msgstr "Promoción al entorno"
@@ -4762,7 +5190,7 @@ msgid "Provided Products"
4762
5190
  msgstr "Productos proporcionados"
4763
5191
 
4764
5192
  msgid "Provided pool with id %s has no upstream entitlement"
4765
- msgstr "El grupo provisto con id %s no tiene derecho de canal ascendente"
5193
+ msgstr "El pool proporcionado con id %s no tiene derechos upstream"
4766
5194
 
4767
5195
  msgid "Provisioning template IDs"
4768
5196
  msgstr "ID de plantilla de aprovisionamiento"
@@ -4812,20 +5240,11 @@ msgstr ""
4812
5240
  msgid "Pulp 3 is not enabled on Smart proxy!"
4813
5241
  msgstr ""
4814
5242
 
4815
- msgid "Pulp Docker registry port"
4816
- msgstr "Puerto de registro de Pulp Docker"
4817
-
4818
5243
  msgid "Pulp bulk load size"
4819
5244
  msgstr ""
4820
5245
 
4821
- msgid "Pulp client cert"
4822
- msgstr "Certificado de cliente de Pulp"
4823
-
4824
- msgid "Pulp client key"
4825
- msgstr "Llave de cliente de Pulp"
4826
-
4827
5246
  msgid "Pulp database connection issue at %s."
4828
- msgstr "Problema de conexión de la base de datos de Pulp en %s."
5247
+ msgstr "Problema de conexión con la base de datos Pulp en %s."
4829
5248
 
4830
5249
  msgid "Pulp database connection issue."
4831
5250
  msgstr "Problema de conexión a la base de datos Pulp"
@@ -4834,7 +5253,7 @@ msgid "Pulp disk space notification"
4834
5253
  msgstr "Notificación de espacio en el disco de Pulp"
4835
5254
 
4836
5255
  msgid "Pulp does not appear to be running at %s."
4837
- msgstr "Pulp no parece estar ejecutándose en %s."
5256
+ msgstr "La pulpa no parece funcionar en %s."
4838
5257
 
4839
5258
  msgid "Pulp does not appear to be running."
4840
5259
  msgstr "Pulp no parece estar ejecutándose."
@@ -4843,7 +5262,7 @@ msgid "Pulp export destination filepath"
4843
5262
  msgstr "Ruta de archivo de destino de la exportación de Pulp"
4844
5263
 
4845
5264
  msgid "Pulp message bus connection issue at %s."
4846
- msgstr "El mensaje Pulp tiene un problema de conexión del bus en %s."
5265
+ msgstr "Problema de conexión del bus de mensajes de pulpa en %s."
4847
5266
 
4848
5267
  msgid "Pulp message bus connection issue."
4849
5268
  msgstr "Problema de conexión de bus de mensaje de Pulp."
@@ -4852,7 +5271,7 @@ msgid "Pulp node"
4852
5271
  msgstr "Pulp node"
4853
5272
 
4854
5273
  msgid "Pulp redis connection issue at %s."
4855
- msgstr "Problema de conexión de redistribución de Pulp en %."
5274
+ msgstr "Pulp redis problema de conexión en %s."
4856
5275
 
4857
5276
  msgid "Pulp server version"
4858
5277
  msgstr "Versión del servidor Pulp"
@@ -4885,7 +5304,7 @@ msgid "Quantity"
4885
5304
  msgstr "Cantidad"
4886
5305
 
4887
5306
  msgid "Quantity must not be above ${pool.available}"
4888
- msgstr "La cantidad no debe ser superior a ${pool.available}"
5307
+ msgstr "La cantidad no debe ser superior a{pool.available}"
4889
5308
 
4890
5309
  msgid "Quantity of entitlements to bind"
4891
5310
  msgstr "Cantidad de derechos a vincular"
@@ -4902,12 +5321,18 @@ msgstr "Cantidad de estas suscripciones para añadir"
4902
5321
  msgid "Quantity to Allocate"
4903
5322
  msgstr "Cantidad a asignar"
4904
5323
 
5324
+ msgid "RAM"
5325
+ msgstr ""
5326
+
4905
5327
  msgid "RAM: %s GB"
4906
5328
  msgstr "RAM: %s GB"
4907
5329
 
4908
5330
  msgid "RH Repos"
4909
5331
  msgstr "RH Repos"
4910
5332
 
5333
+ msgid "RHUI"
5334
+ msgstr ""
5335
+
4911
5336
  msgid "RPM"
4912
5337
  msgstr "RPM"
4913
5338
 
@@ -4920,6 +5345,12 @@ msgstr ""
4920
5345
  msgid "RPM name"
4921
5346
  msgstr ""
4922
5347
 
5348
+ msgid "RPM package groups"
5349
+ msgstr ""
5350
+
5351
+ msgid "RPM package updates"
5352
+ msgstr ""
5353
+
4923
5354
  msgid "RPM packages"
4924
5355
  msgstr ""
4925
5356
 
@@ -4927,7 +5358,7 @@ msgid "RPMs"
4927
5358
  msgstr "RPMs"
4928
5359
 
4929
5360
  msgid "Range"
4930
- msgstr "Rango"
5361
+ msgstr "Gama"
4931
5362
 
4932
5363
  msgid "Realm IDs"
4933
5364
  msgstr "ID de reino"
@@ -4978,7 +5409,7 @@ msgid "Red Hat Repositories"
4978
5409
  msgstr "Repositorios de Red Hat"
4979
5410
 
4980
5411
  msgid "Red Hat Repositories page"
4981
- msgstr "Página de repositorios Red Hat"
5412
+ msgstr "Página de repositorios de Red Hat"
4982
5413
 
4983
5414
  msgid "Red Hat content will be consumed from an {type}."
4984
5415
  msgstr ""
@@ -4986,6 +5417,9 @@ msgstr ""
4986
5417
  msgid "Red Hat content will be consumed from the {type}."
4987
5418
  msgstr ""
4988
5419
 
5420
+ msgid "Red Hat content will be consumed from {type}."
5421
+ msgstr ""
5422
+
4989
5423
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4990
5424
  msgstr ""
4991
5425
 
@@ -5001,23 +5435,38 @@ msgstr "No se pueden manipular repositorios de Red Hat"
5001
5435
  msgid "Refresh"
5002
5436
  msgstr "Actualizar"
5003
5437
 
5438
+ msgid "Refresh Alternate Content Source"
5439
+ msgstr ""
5440
+
5004
5441
  msgid "Refresh Content Host Statuses for %s"
5005
5442
  msgstr ""
5006
5443
 
5007
5444
  msgid "Refresh Manifest"
5008
5445
  msgstr "Recargar manifiesto"
5009
5446
 
5447
+ msgid "Refresh alternate content sources"
5448
+ msgstr ""
5449
+
5450
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5451
+ msgstr ""
5452
+
5010
5453
  msgid "Refresh previously imported manifest for Red Hat provider"
5011
5454
  msgstr "Actualizar el manifiesto importado anteriormente para el proveedor de Red Hat"
5012
5455
 
5013
- msgid "Refresh_Content_Host_Status"
5456
+ msgid "Refresh source"
5014
5457
  msgstr ""
5015
5458
 
5459
+ msgid "Refresh_Content_Host_Status"
5460
+ msgstr "Refresh_Content_Host_Status"
5461
+
5016
5462
  msgid "Register a host with subscription and information"
5017
5463
  msgstr "Registrar un host con suscripción e información"
5018
5464
 
5019
5465
  msgid "Register host '%s' before attaching subscriptions"
5020
- msgstr "Registrar el host '%s' antes de adjuntar las suscripciones"
5466
+ msgstr "Registrar host '%s' antes de adjuntar suscripciones"
5467
+
5468
+ msgid "Registered"
5469
+ msgstr "Registrado"
5021
5470
 
5022
5471
  msgid "Registered by"
5023
5472
  msgstr ""
@@ -5025,17 +5474,17 @@ msgstr ""
5025
5474
  msgid "Registered on"
5026
5475
  msgstr ""
5027
5476
 
5028
- msgid "Registered through"
5477
+ msgid "Registering to multiple environments is not enabled."
5029
5478
  msgstr ""
5030
5479
 
5031
5480
  msgid "Registration details"
5032
5481
  msgstr ""
5033
5482
 
5034
5483
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
5035
- msgstr "El patrón de nombres de registro da como resultado nombres duplicados de imágenes de contenedores para estos depósitos: %s."
5484
+ msgstr "El patrón de nombres de registro da como resultado nombres de imagen de contenedor duplicados para estos repositorios: %s."
5036
5485
 
5037
5486
  msgid "Registry name pattern results in invalid container image name of member repository '%{name}'"
5038
- msgstr "El patrón de nombres de registro da como resultado un nombre de imagen no válido de contenedor del repositorio de miembros '%{name}'"
5487
+ msgstr "El patrón de nombre de registro da como resultado un nombre de imagen de contenedor no válido del repositorio miembro '%{name}'"
5039
5488
 
5040
5489
  msgid "Registry name pattern will result in invalid container image name of member repositories"
5041
5490
  msgstr "El patrón de nombres de registro dará como resultado un nombre de imagen de contenedor no válido de los depósitos de los miembros"
@@ -5043,23 +5492,26 @@ msgstr "El patrón de nombres de registro dará como resultado un nombre de imag
5043
5492
  msgid "Reindex subscriptions"
5044
5493
  msgstr "Reindexar suscripciones"
5045
5494
 
5046
- msgid "Related component content views"
5495
+ msgid "Related composite content views"
5047
5496
  msgstr ""
5048
5497
 
5049
- msgid "Related component cvs: "
5498
+ msgid "Related composite content views: "
5050
5499
  msgstr ""
5051
5500
 
5052
- msgid "Related composite content views"
5501
+ msgid "Related content views"
5053
5502
  msgstr ""
5054
5503
 
5055
- msgid "Related composite cvs: "
5504
+ msgid "Related content views will appear here when created."
5056
5505
  msgstr ""
5057
5506
 
5058
- msgid "Related content views will appear here when created."
5507
+ msgid "Related content views: "
5059
5508
  msgstr ""
5060
5509
 
5061
5510
  msgid "Release"
5062
- msgstr "Lanzamiento"
5511
+ msgstr "Soltar"
5512
+
5513
+ msgid "Release version"
5514
+ msgstr ""
5063
5515
 
5064
5516
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5065
5517
  msgstr "Versión de lanzamiento que usará este host (7Server, 7.1, etc)"
@@ -5079,11 +5531,14 @@ msgstr "Volver a cargar datos"
5079
5531
  msgid "Remote action:"
5080
5532
  msgstr "Acción remota:"
5081
5533
 
5534
+ msgid "Remote execution job '${description}' failed."
5535
+ msgstr ""
5536
+
5082
5537
  msgid "Removal of package group(s) requested: %{groups}"
5083
- msgstr "Eliminación del grupo o grupos de paquetes solicitados: %{groups}"
5538
+ msgstr "Retirada de grupo(s) de paquetes solicitada(s): %{groups}"
5084
5539
 
5085
5540
  msgid "Removal of package(s) requested: %{packages}"
5086
- msgstr "Eliminación de los paquetes solicitados: %{packages}"
5541
+ msgstr "Retirada de paquete(s) solicitada(s): %{packages}"
5087
5542
 
5088
5543
  msgid "Remove"
5089
5544
  msgstr "Eliminar"
@@ -5139,14 +5594,14 @@ msgstr ""
5139
5594
  msgid "Remove one or more host collections from one or more hosts"
5140
5595
  msgstr "Eliminar una o más colecciones de uno o más hosts de uno o más hosts"
5141
5596
 
5142
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5143
- msgstr "Eliminar una o más suscripciones de una asignación de suscripción de canal ascendente"
5597
+ msgid "Remove one or more subscriptions from an upstream manifest"
5598
+ msgstr ""
5144
5599
 
5145
5600
  msgid "Remove package"
5146
5601
  msgstr "Eliminar paquete"
5147
5602
 
5148
5603
  msgid "Remove package for %s"
5149
- msgstr "Eliminar el paquete para %s"
5604
+ msgstr "Retire el paquete para %s"
5150
5605
 
5151
5606
  msgid "Remove package group"
5152
5607
  msgstr "Eliminar grupo de paquetes"
@@ -5190,6 +5645,9 @@ msgstr "Retirando grupo de paquetes..."
5190
5645
  msgid "Removing Package..."
5191
5646
  msgstr "Retirando paquetes..."
5192
5647
 
5648
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5649
+ msgstr ""
5650
+
5193
5651
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5194
5652
  msgstr ""
5195
5653
 
@@ -5209,13 +5667,13 @@ msgid "Repository"
5209
5667
  msgstr "Repositorio"
5210
5668
 
5211
5669
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
5212
- msgstr "Repositorio %s no puede borrarse, puesto que ya que ha sido incluido en una vista de contenido publicada."
5670
+ msgstr "El repositorio %s no se puede eliminar porque ya se ha incluido en una vista de contenido publicada."
5213
5671
 
5214
5672
  msgid "Repository '%(repoName)s' has been disabled."
5215
5673
  msgstr "El repositorio '%(repoName)s' ha sido desactivado."
5216
5674
 
5217
5675
  msgid "Repository '%(repoName)s' has been enabled."
5218
- msgstr "El repositorio '%(repoName)s' ha sido activado."
5676
+ msgstr "Se ha habilitado el repositorio '%(repoName)s'."
5219
5677
 
5220
5678
  msgid "Repository Id associated with the kickstart repo used for provisioning"
5221
5679
  msgstr "ID del repositorio asociado con el repositorio de kickstart utilizado para el aprovisionamiento"
@@ -5227,7 +5685,7 @@ msgid "Repository cannot be disabled since it has already been promoted."
5227
5685
  msgstr "El repositorio no puede inhabilitarse porque ya está siendo promovido."
5228
5686
 
5229
5687
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
5230
- msgstr "El repositorio ya ha sido clonado a %{cv_name} en entorno %{to_env}"
5688
+ msgstr "El repositorio ya ha sido clonado en %{cv_name} en el entorno %{to_env}"
5231
5689
 
5232
5690
  msgid "Repository id"
5233
5691
  msgstr "ID de repositorio"
@@ -5236,7 +5694,7 @@ msgid "Repository identifier"
5236
5694
  msgstr "Identificador de repositorio"
5237
5695
 
5238
5696
  msgid "Repository label '%s' is not associated with content view."
5239
- msgstr "La etiqueta del repositorio \"%s\" no está asociada a la vista del contenido."
5697
+ msgstr "La etiqueta de repositorio '%s' no está asociada a la vista de contenido."
5240
5698
 
5241
5699
  msgid "Repository metadata publish"
5242
5700
  msgstr "Publicación de repositorios de metadatos"
@@ -5274,17 +5732,17 @@ msgstr ""
5274
5732
  msgid "Repository sets reset to default"
5275
5733
  msgstr ""
5276
5734
 
5277
- msgid "Repository sets will appear here when available."
5735
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5278
5736
  msgstr ""
5279
5737
 
5280
5738
  msgid "Republish Repositories of %{name} %{version}"
5281
- msgstr "Volver a publicar repositorios de %{name} %{version}"
5739
+ msgstr "Volver a publicar Repositorios de %{name} %{version}"
5282
5740
 
5283
5741
  msgid "Republish Version Repositories"
5284
5742
  msgstr "Volver a publicar repositorios de la versión"
5285
5743
 
5286
5744
  msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
5287
- msgstr "Se le pide cargar el manifiesto de suscripción y volver a adjuntar las suscripciones a los hosts y las claves de activación."
5745
+ msgstr "Requieren que cargue el manifiesto de suscripción y vuelva a adjuntar suscripciones a hosts y claves de activación."
5288
5746
 
5289
5747
  msgid "Requirements is not valid yaml."
5290
5748
  msgstr ""
@@ -5409,6 +5867,9 @@ msgstr "Mostrar los paquetes que son actualizables en uno o más hosts"
5409
5867
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5410
5868
  msgstr "Mostrar los paquetes que pueden ser añadidos al objeto especificado. Solo se admite el valor 'content_view_version'."
5411
5869
 
5870
+ msgid "Return same, different or all results"
5871
+ msgstr ""
5872
+
5412
5873
  msgid "Return subscriptions that match installed products of the specified host"
5413
5874
  msgstr "Mostrar suscripciones que coincidan con los productos instalados del host especificado"
5414
5875
 
@@ -5436,6 +5897,9 @@ msgstr ""
5436
5897
  msgid "Review details"
5437
5898
  msgstr ""
5438
5899
 
5900
+ msgid "Review the information below and click "
5901
+ msgstr ""
5902
+
5439
5903
  msgid "Review your currently selected changes for "
5440
5904
  msgstr ""
5441
5905
 
@@ -5454,21 +5918,30 @@ msgstr ""
5454
5918
  msgid "Run Sync Plan:"
5455
5919
  msgstr "Ejecutar el plan de sincronización:"
5456
5920
 
5457
- msgid "Run job invocation"
5458
- msgstr ""
5459
-
5460
5921
  msgid "Running"
5461
5922
  msgstr "Ejecutando"
5462
5923
 
5463
5924
  msgid "SKU"
5464
5925
  msgstr "SKU"
5465
5926
 
5927
+ msgid "SLA"
5928
+ msgstr ""
5929
+
5466
5930
  msgid "SRPM details"
5467
5931
  msgstr "Detalles de SRPM"
5468
5932
 
5469
5933
  msgid "SSL CA Content Credential"
5470
5934
  msgstr ""
5471
5935
 
5936
+ msgid "SSL CA certificate"
5937
+ msgstr ""
5938
+
5939
+ msgid "SSL client certificate"
5940
+ msgstr ""
5941
+
5942
+ msgid "SSL client key"
5943
+ msgstr ""
5944
+
5472
5945
  msgid "SSL version used to communicate with the CDN"
5473
5946
  msgstr "La versión de SSL que se usa para comunicar con el CDN"
5474
5947
 
@@ -5478,14 +5951,17 @@ msgstr "SUSCRIPCIONES QUE VENCEN PRONTO"
5478
5951
  msgid "Save"
5479
5952
  msgstr "Guardar"
5480
5953
 
5954
+ msgid "Saving alternate content source..."
5955
+ msgstr ""
5956
+
5481
5957
  msgid "Schedule errata for installation using katello-agent. %s"
5482
5958
  msgstr ""
5483
5959
 
5484
5960
  msgid "Schema Version 1"
5485
- msgstr "Versión de esquema 1"
5961
+ msgstr "Versión 1 del esquema"
5486
5962
 
5487
5963
  msgid "Schema Version 2"
5488
- msgstr "Versión de esquema 2"
5964
+ msgstr "Versión 2 del esquema"
5489
5965
 
5490
5966
  msgid "Search"
5491
5967
  msgstr "Buscar"
@@ -5547,6 +6023,15 @@ msgstr "Seleccionar organización"
5547
6023
  msgid "Select Value"
5548
6024
  msgstr "Seleccionar valor"
5549
6025
 
6026
+ msgid "Select a CA certificate"
6027
+ msgstr ""
6028
+
6029
+ msgid "Select a client certificate"
6030
+ msgstr ""
6031
+
6032
+ msgid "Select a client key"
6033
+ msgstr ""
6034
+
5550
6035
  msgid "Select a content view"
5551
6036
  msgstr ""
5552
6037
 
@@ -5562,6 +6047,9 @@ msgstr ""
5562
6047
  msgid "Select a provider to install katello-host-tools-tracer"
5563
6048
  msgstr ""
5564
6049
 
6050
+ msgid "Select add-ons"
6051
+ msgstr ""
6052
+
5565
6053
  msgid "Select all"
5566
6054
  msgstr "Seleccionar todo"
5567
6055
 
@@ -5577,20 +6065,23 @@ msgstr ""
5577
6065
  msgid "Select an environment above"
5578
6066
  msgstr ""
5579
6067
 
6068
+ msgid "Select an option"
6069
+ msgstr ""
6070
+
5580
6071
  msgid "Select an organization"
5581
6072
  msgstr "Seleccionar una organización"
5582
6073
 
5583
6074
  msgid "Select available version of ${cvName} to use"
5584
6075
  msgstr ""
5585
6076
 
5586
- msgid "Select available version of components to use"
6077
+ msgid "Select available version of content views to use"
5587
6078
  msgstr ""
5588
6079
 
5589
6080
  msgid "Select content view"
5590
6081
  msgstr ""
5591
6082
 
5592
6083
  msgid "Select environment"
5593
- msgstr ""
6084
+ msgstr "Seleccionar entorno"
5594
6085
 
5595
6086
  msgid "Select host collection(s) to associate with host {hostName}."
5596
6087
  msgstr ""
@@ -5616,9 +6107,27 @@ msgstr ""
5616
6107
  msgid "Select page"
5617
6108
  msgstr ""
5618
6109
 
6110
+ msgid "Select products"
6111
+ msgstr ""
6112
+
6113
+ msgid "Select products to associate to this source."
6114
+ msgstr ""
6115
+
5619
6116
  msgid "Select row"
5620
6117
  msgstr "Seleccionar fila"
5621
6118
 
6119
+ msgid "Select smart proxies to be used with this source."
6120
+ msgstr ""
6121
+
6122
+ msgid "Select smart proxy"
6123
+ msgstr ""
6124
+
6125
+ msgid "Select source type"
6126
+ msgstr ""
6127
+
6128
+ msgid "Select system purpose attributes for host {hostName}."
6129
+ msgstr ""
6130
+
5622
6131
  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."
5623
6132
  msgstr "Seleccione el medio de instalación que se utilizará para proveer este host. Elija \"Contenido sincronizado\" para los Repositorios de arranque sincronizado o \"Todos los medios\" para otros medios."
5624
6133
 
@@ -5721,7 +6230,7 @@ msgstr ""
5721
6230
  msgid "Show an activation key"
5722
6231
  msgstr "Mostrar una llave de activación"
5723
6232
 
5724
- msgid "Show an alternate content source"
6233
+ msgid "Show an alternate content source."
5725
6234
  msgstr ""
5726
6235
 
5727
6236
  msgid "Show an environment"
@@ -5748,6 +6257,9 @@ msgstr "Mostrar versiones de lanzamiento disponibles para una llave de activaci
5748
6257
  msgid "Show releases available for the content host"
5749
6258
  msgstr "Mostrar versiones disponibles para el host de contenido"
5750
6259
 
6260
+ msgid "Show repositories enabled on the host that are known to Katello"
6261
+ msgstr ""
6262
+
5751
6263
  msgid "Show the available repository types"
5752
6264
  msgstr "Mostrar los tipos de repositorio disponibles"
5753
6265
 
@@ -5769,6 +6281,9 @@ msgstr ""
5769
6281
  msgid "Simple Content Access has been enabled for '%{subject}'."
5770
6282
  msgstr ""
5771
6283
 
6284
+ msgid "Simplified"
6285
+ msgstr ""
6286
+
5772
6287
  msgid "Single content view consisting of e.g. repositories"
5773
6288
  msgstr ""
5774
6289
 
@@ -5781,14 +6296,20 @@ msgstr "Saltar la comprobación de metadatos en cada repositorio del proxy intel
5781
6296
  msgid "Skipped pulp_auth check after failed pulp check"
5782
6297
  msgstr "Se omitió la verificación pulp_auth luego de que la verificación de Pulp produjo un error."
5783
6298
 
6299
+ msgid "Smart proxies"
6300
+ msgstr "Proxis inteligentes"
6301
+
5784
6302
  msgid "Smart proxy IDs"
5785
6303
  msgstr "ID de proxy inteligente"
5786
6304
 
5787
6305
  msgid "Smart proxy content source not found!"
5788
6306
  msgstr ""
5789
6307
 
6308
+ msgid "Sockets"
6309
+ msgstr "Sockets"
6310
+
5790
6311
  msgid "Sockets: %s"
5791
- msgstr "Sockets: %s"
6312
+ msgstr "Enchufes: %s"
5792
6313
 
5793
6314
  msgid "Solution"
5794
6315
  msgstr "Solución"
@@ -5799,7 +6320,7 @@ msgstr "Resolver las dependencias RPM por defecto en la vista de contenido de pu
5799
6320
  msgid "Solve dependencies"
5800
6321
  msgstr "Resolver dependencias"
5801
6322
 
5802
- msgid "Some hosts are ignored!"
6323
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5803
6324
  msgstr ""
5804
6325
 
5805
6326
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5823,13 +6344,13 @@ msgstr ""
5823
6344
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5824
6345
  msgstr ""
5825
6346
 
5826
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6347
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5827
6348
  msgstr ""
5828
6349
 
5829
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6350
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5830
6351
  msgstr ""
5831
6352
 
5832
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6353
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5833
6354
  msgstr ""
5834
6355
 
5835
6356
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5877,9 +6398,15 @@ msgstr ""
5877
6398
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5878
6399
  msgstr ""
5879
6400
 
6401
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6402
+ msgstr ""
6403
+
5880
6404
  msgid "Something went wrong while loading the content views. See the logs for more information"
5881
6405
  msgstr ""
5882
6406
 
6407
+ msgid "Something went wrong while refreshing alternate content sources: "
6408
+ msgstr ""
6409
+
5883
6410
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5884
6411
  msgstr ""
5885
6412
 
@@ -5892,6 +6419,9 @@ msgstr ""
5892
6419
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5893
6420
  msgstr ""
5894
6421
 
6422
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6423
+ msgstr ""
6424
+
5895
6425
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5896
6426
  msgstr ""
5897
6427
 
@@ -5910,9 +6440,33 @@ msgstr ""
5910
6440
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5911
6441
  msgstr ""
5912
6442
 
6443
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6444
+ msgstr ""
6445
+
6446
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6447
+ msgstr ""
6448
+
6449
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6450
+ msgstr ""
6451
+
6452
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6453
+ msgstr ""
6454
+
5913
6455
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5914
6456
  msgstr ""
5915
6457
 
6458
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6459
+ msgstr ""
6460
+
6461
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6462
+ msgstr ""
6463
+
6464
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6465
+ msgstr ""
6466
+
6467
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6468
+ msgstr ""
6469
+
5916
6470
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5917
6471
  msgstr ""
5918
6472
 
@@ -5931,6 +6485,9 @@ msgstr "RPM de fuente"
5931
6485
  msgid "Source RPMs"
5932
6486
  msgstr "RPM de fuente"
5933
6487
 
6488
+ msgid "Source type"
6489
+ msgstr ""
6490
+
5934
6491
  msgid "Specify an export chunk size less than 1_000_000 GB"
5935
6492
  msgstr ""
5936
6493
 
@@ -5959,7 +6516,7 @@ msgid "Starts"
5959
6516
  msgstr "Comienza"
5960
6517
 
5961
6518
  msgid "State"
5962
- msgstr ""
6519
+ msgstr "Estado"
5963
6520
 
5964
6521
  msgid "Status"
5965
6522
  msgstr "Estado"
@@ -5988,12 +6545,12 @@ msgstr "Enviar"
5988
6545
  msgid "Subnet IDs"
5989
6546
  msgstr "ID de subred"
5990
6547
 
6548
+ msgid "Subpaths"
6549
+ msgstr ""
6550
+
5991
6551
  msgid "Subscription"
5992
6552
  msgstr "Suscripción"
5993
6553
 
5994
- msgid "Subscription Allocation"
5995
- msgstr "Asignación de suscripción"
5996
-
5997
6554
  msgid "Subscription Details"
5998
6555
  msgstr "Detalles de suscripción"
5999
6556
 
@@ -6024,9 +6581,6 @@ msgstr "Estado de suscripción"
6024
6581
  msgid "Subscription UUID"
6025
6582
  msgstr ""
6026
6583
 
6027
- msgid "Subscription Watch"
6028
- msgstr "Control de suscripción"
6029
-
6030
6584
  msgid "Subscription connection enabled"
6031
6585
  msgstr ""
6032
6586
 
@@ -6051,8 +6605,11 @@ msgstr "Archivo del manifiesto de suscripción"
6051
6605
  msgid "Subscription not found"
6052
6606
  msgstr "No se ha encontrado la suscripción"
6053
6607
 
6608
+ msgid "Subscription status"
6609
+ msgstr ""
6610
+
6054
6611
  msgid "Subscription was not persisted - %{error_message}"
6055
- msgstr "La suscripción no persistió - %{error_message}"
6612
+ msgstr "No se ha mantenido la suscripción - %{error_message}"
6056
6613
 
6057
6614
  msgid "Subscriptions"
6058
6615
  msgstr "Suscripciones"
@@ -6069,29 +6626,38 @@ msgstr "Las suscripciones se han guardado y se están actualizando."
6069
6626
  msgid "Subscriptions information based on selected activation keys:"
6070
6627
  msgstr "Información de suscripciones basada en llaves de activación seleccionadas:"
6071
6628
 
6629
+ msgid "Subscriptions service"
6630
+ msgstr ""
6631
+
6072
6632
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6073
- msgstr "Discordancia de sustitución. No se puede actualizar el contenido: (%{content}). de [%{content_url}] a [%{new_url}]"
6633
+ msgstr "Error de sustitución. No se ha podido actualizar el contenido: (%{content}). De [%{content_url}] A [%{new_url}]."
6074
6634
 
6075
6635
  msgid "Success"
6076
6636
  msgstr "Éxito"
6077
6637
 
6078
6638
  msgid "Successfully added %s Host(s)."
6079
- msgstr "Los hosts %s se agregaron correctamente."
6639
+ msgstr "Añadido con éxito %s Host(s)."
6080
6640
 
6081
6641
  msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
6082
- msgstr "Se han añadido correctamente %{count} hosts de contenido a la recopilación de hosts %{host_collection}."
6642
+ msgstr "Añadido con éxito %{count} host(s) de contenido a la colección de hosts %{host_collection}."
6083
6643
 
6084
6644
  msgid "Successfully changed sync plan for %s product(s)"
6085
- msgstr "Se ha cambiado correctamente el plan de sincronización para %s productos"
6645
+ msgstr "Cambiado con éxito el plan de sincronización para %s producto(s)"
6086
6646
 
6087
6647
  msgid "Successfully initiated removal of %s product(s)"
6088
- msgstr "Se ha iniciado correctamente la eliminación de %s productos"
6648
+ msgstr "Iniciada con éxito la retirada de los productos %s "
6649
+
6650
+ msgid "Successfully refreshed."
6651
+ msgstr ""
6089
6652
 
6090
6653
  msgid "Successfully removed %s Host(s)."
6091
- msgstr "Se eliminaron %s hosts correctamente."
6654
+ msgstr "Eliminado con éxito %s Host(s)."
6092
6655
 
6093
6656
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6094
- msgstr "Se han eliminado correctamente %{count} hosts de contenido de la recopilación de hosts %{host_collection}."
6657
+ msgstr "Eliminado con éxito %{count} host(s) de contenido de la colección de hosts %{host_collection}."
6658
+
6659
+ msgid "Successfully synced capsule."
6660
+ msgstr ""
6095
6661
 
6096
6662
  msgid "Successfully synchronized."
6097
6663
  msgstr "Sincronizado con éxito."
@@ -6174,9 +6740,15 @@ msgstr "Sincronizar uno o más productos"
6174
6740
  msgid "Sync plan identifier to attach"
6175
6741
  msgstr "Identificador del plan de sincronización para vincular"
6176
6742
 
6743
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6744
+ msgstr ""
6745
+
6177
6746
  msgid "Sync state"
6178
6747
  msgstr ""
6179
6748
 
6749
+ msgid "Syncable export"
6750
+ msgstr ""
6751
+
6180
6752
  msgid "Synced "
6181
6753
  msgstr ""
6182
6754
 
@@ -6225,6 +6797,12 @@ msgstr "Estado del sistema"
6225
6797
  msgid "System purpose"
6226
6798
  msgstr ""
6227
6799
 
6800
+ msgid "System purpose attributes updated"
6801
+ msgstr ""
6802
+
6803
+ 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."
6804
+ msgstr ""
6805
+
6228
6806
  msgid "Tag name"
6229
6807
  msgstr ""
6230
6808
 
@@ -6238,7 +6816,7 @@ msgid "Task ${task.humanized.action} completed with a result of ${task.result}.
6238
6816
  msgstr ""
6239
6817
 
6240
6818
  msgid "Task ${task.humanized.action} has started."
6241
- msgstr "La tarea${task.humanized.action} ha comenzado."
6819
+ msgstr "La tarea ${task.humanized.action} ha comenzado."
6242
6820
 
6243
6821
  msgid "Task canceled"
6244
6822
  msgstr "Tarea cancelada"
@@ -6255,14 +6833,11 @@ msgstr "¡El entorno '%s' no puede contener un changeset!"
6255
6833
  msgid "The Alternate Content Source type"
6256
6834
  msgstr ""
6257
6835
 
6258
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6259
- msgstr "Se ha eliminado la asignación de suscripción que proporcionaba el manifiesto importado. Cree una nueva asignación de suscripción e importe el nuevo manifiesto."
6260
-
6261
6836
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6262
6837
  msgstr ""
6263
6838
 
6264
6839
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
6265
- msgstr "La acción solicitada en esta vista compuesta no se puede realizar hasta que todas las versiones de vista de contenido del componente se hayan promovido al entorno de destino: %{env}. Esta restricción es opcional y se puede modificar en la página Administrador -> Configuración -> Contenido con la marca estrict_composite_view."
6840
+ msgstr "La acción solicitada en esta vista compuesta no puede realizarse hasta que todas las versiones de la vista de contenido del componente hayan sido promovidas al entorno de destino: %{env}. Esta restricción es opcional y puede modificarse en la página Administrador -> Configuración -> Contenido mediante el indicador restrict_composite_view."
6266
6841
 
6267
6842
  msgid "The actual file contents"
6268
6843
  msgstr "El contenido real del archivo"
@@ -6309,9 +6884,6 @@ msgstr ""
6309
6884
  msgid "The field to sort the data by. Defaults to the created date."
6310
6885
  msgstr "El campo para ordenar los datos. Se ajusta por defecto a la fecha de creación."
6311
6886
 
6312
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6313
- msgstr ""
6314
-
6315
6887
  msgid "The following hosts have errata that apply to them: "
6316
6888
  msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
6317
6889
 
@@ -6338,8 +6910,11 @@ msgstr ""
6338
6910
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6339
6911
  msgstr "La lista de entornos para promover la versión de vista de contenido especificada (remplaza la versión anterior)"
6340
6912
 
6913
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6914
+ msgstr ""
6915
+
6341
6916
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6342
- msgstr "El manifiesto importado dentro de la Organización %{subject} ya no es válido. Importe un nuevo manifiesto."
6917
+ msgstr "El manifiesto importado en Organización %{subject} ya no es válido. Por favor, importe un nuevo manifiesto."
6343
6918
 
6344
6919
  msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6345
6920
  msgstr ""
@@ -6377,20 +6952,23 @@ msgid "The page you are attempting to access requires selecting a specific organ
6377
6952
  msgstr "La página a la que intenta acceder requiere seleccionar una organización específica."
6378
6953
 
6379
6954
  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."
6380
- msgstr "La ruta %{real_path} no parece ser un repositorio válido. Si cree que esto es un error, intente actualizar el manifiesto."
6955
+ msgstr "La ruta %{real_path} no parece ser un repositorio válido. Si cree que se trata de un error, intente actualizar su manifiesto."
6381
6956
 
6382
- msgid "The port used by Pulp Crane to provide Docker Registries"
6383
- msgstr "El puerto utilizado por Pulp Crane para proporcionar los registros de Docker"
6957
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6958
+ msgstr ""
6384
6959
 
6385
6960
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6386
- msgstr "La promoción de %{content_view} para %{environment} se ha completado. %{count} erratas están disponibles para sus hosts."
6961
+ msgstr "La promoción de %{content_view} a %{environment} ha finalizado. Las erratas de %{count} están a disposición de sus anfitriones."
6387
6962
 
6388
6963
  msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
6389
- msgstr "Ha completado la promoción de %{content_view} a <b>%{environment}</b> . %{count} erratas necesarias se pueden instalar en sus hosts."
6964
+ msgstr "La promoción de %{content_view} a <b>%{environment}</b> se ha completado. %{count} errata necesaria son instalables en sus hosts."
6390
6965
 
6391
6966
  msgid "The repository is already enabled"
6392
6967
  msgstr "El repositorio ya está habilitado"
6393
6968
 
6969
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6970
+ msgstr ""
6971
+
6394
6972
  msgid "The request did not contain any repository information."
6395
6973
  msgstr "La solicitud no contenía ninguna información de repositorio."
6396
6974
 
@@ -6419,19 +6997,25 @@ msgid "The subscription is no longer available"
6419
6997
  msgstr "La suscripción ya no está disponible"
6420
6998
 
6421
6999
  msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
6422
- msgstr "La sincronización de \"%s\" ha completado. Abajo encuentra un resumen de nuevas erratas."
7000
+ msgstr "La sincronización de \"%s\" ha finalizado. A continuación se ofrece un resumen de las nuevas erratas."
6423
7001
 
6424
7002
  msgid "The token key to use for authentication."
6425
7003
  msgstr ""
6426
7004
 
7005
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7006
+ msgstr ""
7007
+
7008
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7009
+ msgstr ""
7010
+
6427
7011
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6428
7012
  msgstr "El tipo de contenido. Se admiten los siguientes tipos: 'package' y 'package_group."
6429
7013
 
6430
7014
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6431
7015
  msgstr "El tipo de contenido. Se admiten los siguientes tipos: 'package' y 'package_group' y 'errata'."
6432
7016
 
6433
- msgid "There are no Subscription Allocations to display"
6434
- msgstr "No hay asignaciones de suscripciones para mostrar"
7017
+ msgid "There are no Manifests to display"
7018
+ msgstr ""
6435
7019
 
6436
7020
  msgid "There are no Subscriptions to display"
6437
7021
  msgstr "No hay suscripciones para mostrar"
@@ -6443,7 +7027,7 @@ msgid "There are no host collections available to add."
6443
7027
  msgstr ""
6444
7028
 
6445
7029
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
6446
- msgstr "No hay productos o repositorios habilitados. Intente habilitarlos a través de %{custom} o %{redhat}."
7030
+ msgstr "No hay productos ni repositorios habilitados. Intente habilitarlos a través de %{custom} o %{redhat}."
6447
7031
 
6448
7032
  msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
6449
7033
  msgstr ""
@@ -6457,6 +7041,9 @@ msgstr "No se han especificado entornos ni versiones o se han especificado entor
6457
7041
  msgid "There is no Manifest History to display."
6458
7042
  msgstr "No hay un historial de manifiesto para mostrar."
6459
7043
 
7044
+ msgid "There is no downloaded content to clean."
7045
+ msgstr ""
7046
+
6460
7047
  msgid "There is no such HTTP proxy"
6461
7048
  msgstr "No existe tal proxy HTTP"
6462
7049
 
@@ -6476,7 +7063,7 @@ msgid "There was an error retrieving data from the server. Check your connection
6476
7063
  msgstr ""
6477
7064
 
6478
7065
  msgid "There was an issue with the backend service %s: "
6479
- msgstr "Se produjo un error con el servicio de segundo plano %s: "
7066
+ msgstr "Hubo un problema con el servicio backend %s: "
6480
7067
 
6481
7068
  msgid "There's no running synchronization for this smart proxy."
6482
7069
  msgstr "No hay sincronización en marcha para este proxy inteligente."
@@ -6494,11 +7081,14 @@ msgid "This action doesn't support package groups"
6494
7081
  msgstr "Esta acción no admite grupos de paquete."
6495
7082
 
6496
7083
  msgid "This action should only be taken in extreme circumstances or for debugging purposes."
6497
- msgstr "Esta acción debería implementarse únicamente en circunstancias extremas o para fines de depuración."
7084
+ msgstr "Esta acción sólo debe realizarse en circunstancias extremas o con fines de depuración."
6498
7085
 
6499
7086
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6500
7087
  msgstr ""
6501
7088
 
7089
+ 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."
7090
+ msgstr ""
7091
+
6502
7092
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6503
7093
  msgstr "Este certificado permite al usuario ver los repositorios en cualquier entorno desde un navegador."
6504
7094
 
@@ -6523,7 +7113,7 @@ msgstr ""
6523
7113
  msgid "This host does not have any packages."
6524
7114
  msgstr ""
6525
7115
 
6526
- msgid "This host has errata that are applicable, but not installable."
7116
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6527
7117
  msgstr ""
6528
7118
 
6529
7119
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6532,14 +7122,14 @@ msgstr "La organización de este host está en el modo de acceso a contenido sim
6532
7122
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6533
7123
  msgstr "La organización de este host está en el modo de acceso a contenido simple. La conexión automática está desactivada"
6534
7124
 
6535
- msgid "This is disabled because a manifest related task is in progress."
6536
- msgstr "Esto está desactivado porque una tarea del manifiesto está en progreso."
6537
-
6538
7125
  msgid "This is disabled because a manifest task is in progress"
6539
7126
  msgstr "Esto está desactivado porque una tarea del manifiesto está en progreso"
6540
7127
 
6541
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6542
- msgstr "Esto está desactivado porque no se pudo hacer ninguna conexión con la asignación de suscripción de canal ascendente."
7128
+ msgid "This is disabled because a manifest-related task is in progress."
7129
+ msgstr ""
7130
+
7131
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7132
+ msgstr ""
6543
7133
 
6544
7134
  msgid "This is disabled because no manifest exists"
6545
7135
  msgstr "Esto está desactivado porque no existe ningún manifiesto"
@@ -6553,14 +7143,14 @@ msgstr "Esto está desactivado porque no se han seleccionado suscripciones."
6553
7143
  msgid "This is not a linked repository"
6554
7144
  msgstr "Este no es un repositorio vinculado"
6555
7145
 
6556
- 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}."
7146
+ 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}."
6557
7147
  msgstr ""
6558
7148
 
6559
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7149
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6560
7150
  msgstr ""
6561
7151
 
6562
7152
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
6563
- msgstr "No se sugiere este repositorio. Consulte la documentación adicional de %(anchorBegin)sdocumentation%(anchorEnd)s antes de su uso."
7153
+ msgstr "Este repositorio no se sugiere. Consulte la documentación adicional de %(anchorBegin)s%(anchorEnd)s antes de utilizarlo."
6564
7154
 
6565
7155
  msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
6566
7156
  msgstr ""
@@ -6584,7 +7174,7 @@ msgid "This version is not promoted to any environments."
6584
7174
  msgstr ""
6585
7175
 
6586
7176
  msgid "This version will be removed from:"
6587
- msgstr "Se eliminará esta versión de:"
7177
+ msgstr "Esta versión se eliminará de:"
6588
7178
 
6589
7179
  msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
6590
7180
  msgstr ""
@@ -6607,12 +7197,24 @@ msgstr "Sello de tiempo"
6607
7197
  msgid "Title"
6608
7198
  msgstr "Título"
6609
7199
 
7200
+ msgid "To get started, add this host to a host collection."
7201
+ msgstr ""
7202
+
7203
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7204
+ msgstr ""
7205
+
7206
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7207
+ msgstr ""
7208
+
6610
7209
  msgid "Toggling Simple Content Access will refresh your manifest."
6611
7210
  msgstr "Si se cambia el acceso a los contenidos simples, se actualizará el manifiesto."
6612
7211
 
6613
7212
  msgid "Total steps: "
6614
7213
  msgstr "Pasos totales:"
6615
7214
 
7215
+ msgid "Tracer"
7216
+ msgstr ""
7217
+
6616
7218
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6617
7219
  msgstr ""
6618
7220
 
@@ -6622,18 +7224,33 @@ msgstr "Perfil del rastreador cargado con éxito"
6622
7224
  msgid "Traces"
6623
7225
  msgstr "Rastros"
6624
7226
 
7227
+ msgid "Traces are being enabled"
7228
+ msgstr ""
7229
+
6625
7230
  msgid "Traces are not enabled"
6626
7231
  msgstr ""
6627
7232
 
6628
7233
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6629
7234
  msgstr ""
6630
7235
 
7236
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7237
+ msgstr ""
7238
+
6631
7239
  msgid "Traces may be listed here after {pkgLink}."
6632
7240
  msgstr ""
6633
7241
 
7242
+ msgid "Traces not available"
7243
+ msgstr ""
7244
+
6634
7245
  msgid "Traces that require logout cannot be restarted remotely"
6635
7246
  msgstr ""
6636
7247
 
7248
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7249
+ msgstr ""
7250
+
7251
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7252
+ msgstr ""
7253
+
6637
7254
  msgid "Trigger an auto-attach of subscriptions"
6638
7255
  msgstr "Activar la inclusión automática de suscripciones"
6639
7256
 
@@ -6664,9 +7281,18 @@ msgstr ""
6664
7281
  msgid "Type of content: \"cert\", \"gpg_key\""
6665
7282
  msgstr ""
6666
7283
 
7284
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7285
+ msgstr ""
7286
+
6667
7287
  msgid "URL"
6668
7288
  msgstr "URL"
6669
7289
 
7290
+ msgid "URL and paths"
7291
+ msgstr ""
7292
+
7293
+ msgid "URL and subpaths"
7294
+ msgstr ""
7295
+
6670
7296
  msgid "URL needs to have a trailing /"
6671
7297
  msgstr ""
6672
7298
 
@@ -6698,7 +7324,13 @@ msgid "Unable to connect"
6698
7324
  msgstr "Incapaz de conectar"
6699
7325
 
6700
7326
  msgid "Unable to connect. Got: %s"
6701
- msgstr "No se pudo establecer la conexión. Se obtuvo: %s."
7327
+ msgstr "No se puede conectar. Lo tengo: %s"
7328
+
7329
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7330
+ msgstr ""
7331
+
7332
+ 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."
7333
+ msgstr ""
6702
7334
 
6703
7335
  msgid "Unable to detect pulp storage"
6704
7336
  msgstr "No se pudo detectar el almacenamiento Pulp"
@@ -6733,8 +7365,11 @@ msgstr "No se pueden reasignar hosts de contenido. Proporcione system_content_vi
6733
7365
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6734
7366
  msgstr "No se pueden reasignar sistemas. Revise system_content_view_id y system_environment_id."
6735
7367
 
7368
+ 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."
7369
+ msgstr ""
7370
+
6736
7371
  msgid "Unable to send errata e-mail notification: %{error}"
6737
- msgstr "No se puede enviar una notificación por correo electrónico de erratas: %{error}"
7372
+ msgstr "No se puede enviar la notificación de errata por correo electrónico: %{error}"
6738
7373
 
6739
7374
  msgid "Unable to sync repo. This repository does not have a feed url."
6740
7375
  msgstr "No se pudo sincronizar el repositorio. Este repositorio no tiene una URL de fuente."
@@ -6791,7 +7426,7 @@ msgid "Unlimited"
6791
7426
  msgstr "Ilimitado"
6792
7427
 
6793
7428
  msgid "Unregister host %s before assigning an organization"
6794
- msgstr "Cancelar el registro del host %s antes de asignar una organización"
7429
+ msgstr "Anular el registro del host %s antes de asignar una organización"
6795
7430
 
6796
7431
  msgid "Unregister the host as a subscription consumer"
6797
7432
  msgstr "Cancelar el registro del host como consumidor de suscripción"
@@ -6809,10 +7444,10 @@ msgid "Unsupported CDN resource"
6809
7444
  msgstr ""
6810
7445
 
6811
7446
  msgid "Unsupported URL protocol %s."
6812
- msgstr "No tiene soporte el protocolo de URL %s."
7447
+ msgstr "Protocolo de URL no compatible %s."
6813
7448
 
6814
7449
  msgid "Unsupported event type %{type}. Supported: %{types}"
6815
- msgstr "Tipo de evento no admitido %{type}. Admitidos: %{types}"
7450
+ msgstr "Tipo de evento no soportado %{type}. Soportado: %{types}"
6816
7451
 
6817
7452
  msgid "Up-to date"
6818
7453
  msgstr ""
@@ -6830,7 +7465,7 @@ msgid "Update Content Overrides"
6830
7465
  msgstr "Actualizar anulaciones de contenidos"
6831
7466
 
6832
7467
  msgid "Update Content Overrides to %s"
6833
- msgstr "Actualizar anulaciones de contenidos para %s"
7468
+ msgstr "Actualizar las modificaciones de contenido a %s"
6834
7469
 
6835
7470
  msgid "Update Upstream Subscription"
6836
7471
  msgstr "Actualizar suscripción de canal ascendente"
@@ -6862,7 +7497,7 @@ msgstr "Actualizar un plan de sincronización"
6862
7497
  msgid "Update an activation key"
6863
7498
  msgstr "Actualizar una llave de activación"
6864
7499
 
6865
- msgid "Update an alternate content source"
7500
+ msgid "Update an alternate content source."
6866
7501
  msgstr ""
6867
7502
 
6868
7503
  msgid "Update an environment"
@@ -6881,7 +7516,7 @@ msgid "Update for host"
6881
7516
  msgstr "Actualizar para host"
6882
7517
 
6883
7518
  msgid "Update for host %s"
6884
- msgstr "Actualizar para host %s"
7519
+ msgstr "Actualización para host %s"
6885
7520
 
6886
7521
  msgid "Update http proxy"
6887
7522
  msgstr "Actualizar el proxy http"
@@ -6896,7 +7531,7 @@ msgid "Update of all packages requested"
6896
7531
  msgstr "Actualización de todos los paquetes solicitados"
6897
7532
 
6898
7533
  msgid "Update of package(s) requested: %{packages}"
6899
- msgstr "Actualización de paquetes solicitado: %{packages}"
7534
+ msgstr "Actualización del paquete o paquetes solicitados: %{packages}"
6900
7535
 
6901
7536
  msgid "Update organization"
6902
7537
  msgstr "Actualizar organización"
@@ -6905,7 +7540,7 @@ msgid "Update package"
6905
7540
  msgstr "Actualizar paquete"
6906
7541
 
6907
7542
  msgid "Update package for %s"
6908
- msgstr "Actualizar paquete para %s"
7543
+ msgstr "Paquete de actualización para %s"
6909
7544
 
6910
7545
  msgid "Update package group via Katello interface"
6911
7546
  msgstr "Actualizar grupo de paquetes a través de la interfaz de Katello"
@@ -6926,7 +7561,7 @@ msgid "Update release version for host"
6926
7561
  msgstr "Actualizar versión de lanzamiento para el host"
6927
7562
 
6928
7563
  msgid "Update release version for host %s"
6929
- msgstr "Actualizar versión de lanzamiento para el host %s"
7564
+ msgstr "Actualizar la versión del host %s"
6930
7565
 
6931
7566
  msgid "Update services requiring restart"
6932
7567
  msgstr "La actualización de servicios requiere el reinicio"
@@ -6971,7 +7606,7 @@ msgid "Updating Package..."
6971
7606
  msgstr "Actualizando el paquete..."
6972
7607
 
6973
7608
  msgid "Updating System Purpose for host"
6974
- msgstr ""
7609
+ msgstr "Actualización del propósito del sistema para el host"
6975
7610
 
6976
7611
  msgid "Updating System Purpose for host %s"
6977
7612
  msgstr ""
@@ -7018,6 +7653,9 @@ msgstr ""
7018
7653
  msgid "Upload request id"
7019
7654
  msgstr "Cargar ID de solicitud"
7020
7655
 
7656
+ msgid "Upstream Candlepin"
7657
+ msgstr ""
7658
+
7021
7659
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7022
7660
  msgstr ""
7023
7661
 
@@ -7066,6 +7704,15 @@ msgstr "Tipo de uso"
7066
7704
  msgid "Usage of host"
7067
7705
  msgstr ""
7068
7706
 
7707
+ msgid "Usage type"
7708
+ msgstr ""
7709
+
7710
+ msgid "Use HTTP Proxies"
7711
+ msgstr ""
7712
+
7713
+ msgid "Use HTTP proxies"
7714
+ msgstr ""
7715
+
7069
7716
  msgid "Use remote execution by default"
7070
7717
  msgstr "Usar la ejecución remota por defecto"
7071
7718
 
@@ -7079,7 +7726,7 @@ msgid "User '%s' did not specify an organization ID and does not have a default
7079
7726
  msgstr "El usuario '%s' no ha especificado un ID de organización y no tiene una organización predeterminada."
7080
7727
 
7081
7728
  msgid "User '%{user}' does not belong to Organization '%{organization}'."
7082
- msgstr "El usuario '%{user}' no pertenece a la organización '%{organization}'."
7729
+ msgstr "El usuario '%{user}' no pertenece a la Organización '%{organization}'."
7083
7730
 
7084
7731
  msgid "User IDs"
7085
7732
  msgstr "ID de usuario"
@@ -7111,8 +7758,11 @@ msgstr "Válido"
7111
7758
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7112
7759
  msgstr "El valor debe booleano o \"por defecto\" para \"habilitado\""
7113
7760
 
7761
+ msgid "Verify SSL"
7762
+ msgstr "Verificar SSL"
7763
+
7114
7764
  msgid "Verify checksum"
7115
- msgstr ""
7765
+ msgstr "Verificar la suma de comprobación"
7116
7766
 
7117
7767
  msgid "Verify checksum for one or more products"
7118
7768
  msgstr ""
@@ -7124,7 +7774,7 @@ msgid "Version"
7124
7774
  msgstr "Versión"
7125
7775
 
7126
7776
  msgid "Version "
7127
- msgstr ""
7777
+ msgstr "Versión "
7128
7778
 
7129
7779
  msgid "Version ${item.version}"
7130
7780
  msgstr ""
@@ -7138,6 +7788,12 @@ msgstr ""
7138
7788
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7139
7789
  msgstr ""
7140
7790
 
7791
+ msgid "Version ${versionOne}"
7792
+ msgstr ""
7793
+
7794
+ msgid "Version ${versionTwo}"
7795
+ msgstr ""
7796
+
7141
7797
  msgid "Version details updated."
7142
7798
  msgstr ""
7143
7799
 
@@ -7148,6 +7804,9 @@ msgid "Versions"
7148
7804
  msgstr "Versiones"
7149
7805
 
7150
7806
  msgid "Versions "
7807
+ msgstr "Versiones "
7808
+
7809
+ msgid "Versions to compare"
7151
7810
  msgstr ""
7152
7811
 
7153
7812
  msgid "Versions to exclusively include in the action"
@@ -7160,32 +7819,47 @@ msgid "Versions will appear here when the content view is published."
7160
7819
  msgstr ""
7161
7820
 
7162
7821
  msgid "View %{view} has not been promoted to %{env}"
7163
- msgstr "La vista %{view} no ha sido promovida a %{env}"
7822
+ msgstr "Ver %{view} no ha sido ascendido a %{env}"
7823
+
7824
+ msgid "View Subscription Usage"
7825
+ msgstr ""
7164
7826
 
7165
7827
  msgid "View a report of the affected hosts"
7166
7828
  msgstr "Ver un informe de los hosts afectados"
7167
7829
 
7830
+ msgid "View applicable errata"
7831
+ msgstr ""
7832
+
7833
+ msgid "View by"
7834
+ msgstr ""
7835
+
7168
7836
  msgid "View matching content"
7169
7837
  msgstr ""
7170
7838
 
7171
7839
  msgid "View tasks "
7172
7840
  msgstr ""
7173
7841
 
7174
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7842
+ msgid "View the Content Views page"
7843
+ msgstr ""
7844
+
7845
+ msgid "View the job"
7175
7846
  msgstr ""
7176
7847
 
7177
7848
  msgid "Virtual"
7178
7849
  msgstr "Virtual"
7179
7850
 
7851
+ msgid "Virtual guests"
7852
+ msgstr ""
7853
+
7854
+ msgid "Virtual host"
7855
+ msgstr ""
7856
+
7180
7857
  msgid "Waiting to start."
7181
7858
  msgstr ""
7182
7859
 
7183
7860
  msgid "Warning"
7184
7861
  msgstr "Advertencia"
7185
7862
 
7186
- msgid "What's next?"
7187
- msgstr ""
7188
-
7189
7863
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7190
7864
  msgstr ""
7191
7865
 
@@ -7225,6 +7899,9 @@ msgstr "Si se sincroniza o no una cápsula externa después de la carga. Por def
7225
7899
  msgid "Whether to include available content attribute in results"
7226
7900
  msgstr "Si se debe incluir el atributo de contenido disponible en los resultados"
7227
7901
 
7902
+ msgid "Whether to turn on Simple Content Access for the organization."
7903
+ msgstr ""
7904
+
7228
7905
  msgid "Workers"
7229
7906
  msgstr "Trabajadores"
7230
7907
 
@@ -7238,16 +7915,16 @@ msgid "Yes"
7238
7915
  msgstr "Sí"
7239
7916
 
7240
7917
  msgid "You are not allowed to promote to Environments %s"
7241
- msgstr "No tiene permisos para promoverse a entornos %s"
7918
+ msgstr "No está permitido ascender a Entornos %s"
7242
7919
 
7243
7920
  msgid "You are not allowed to publish Content View %s"
7244
- msgstr "No tiene permiso para publicar vista de contenido %s"
7921
+ msgstr "No puede publicar la vista Contenido %s"
7245
7922
 
7246
7923
  msgid "You can check sync status for repositories only in the library lifecycle environment.'"
7247
7924
  msgstr "Solo puede comprobar el estado de la sincronización de los repositorios en el entorno del ciclo de vida de la biblioteca.'"
7248
7925
 
7249
7926
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
7250
- msgstr "No puede tener más de %{max_hosts} hosts asociados a la colección de hosts '%{host_collection}'."
7927
+ msgstr "No puede tener más de %{max_hosts} host(s) asociado(s) a la colección de hosts '%{host_collection}'."
7251
7928
 
7252
7929
  msgid "You cannot set an organization's parent. This feature is disabled."
7253
7930
  msgstr "No puede establecer un padre de organización. Esta funcionalidad está desactivada."
@@ -7286,34 +7963,31 @@ msgid "You currently don\\'t have any related content views."
7286
7963
  msgstr ""
7287
7964
 
7288
7965
  msgid "You do not have permissions to delete %s"
7289
- msgstr "No tiene permisos para borrar %s"
7966
+ msgstr "No tienes permisos para borrar %s"
7290
7967
 
7291
7968
  msgid "You have not set a default organization on the user %s."
7292
- msgstr "No ha establecido una organización predeterminada en el usuario %s."
7969
+ msgstr "No ha establecido una organización por defecto en el usuario %s."
7293
7970
 
7294
7971
  msgid "You have subscriptions expiring within %s days"
7295
- msgstr "Tiene suscripciones que vencen dentro de %s días"
7972
+ msgstr "Tiene suscripciones que vencen en %s días"
7296
7973
 
7297
7974
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7298
7975
  msgstr "Tienes cambios no guardados. ¿Quiere salir sin guardar sus cambios?"
7299
7976
 
7300
- msgid "You may want to check the host's content view and lifecycle environment."
7301
- msgstr ""
7302
-
7303
7977
  msgid "You were not allowed to add %s"
7304
- msgstr "No se le ha permitido añadir %s"
7978
+ msgstr "No se le permitió añadir %s"
7305
7979
 
7306
7980
  msgid "You were not allowed to change sync plan for %s"
7307
- msgstr "No se le ha permitido cambiar el plan de sincronización para %s"
7981
+ msgstr "No se le permitió cambiar el plan de sincronización para %s"
7308
7982
 
7309
7983
  msgid "You were not allowed to delete %s"
7310
- msgstr "No se le ha permitido borrar %s"
7984
+ msgstr "No se le permitió borrar %s"
7311
7985
 
7312
7986
  msgid "You were not allowed to sync %s"
7313
- msgstr "No se le ha permitido sincronizar %s"
7987
+ msgstr "No se le permitió sincronizar %s"
7314
7988
 
7315
7989
  msgid "You're making changes to %(entitlementCount)s entitlement(s)"
7316
- msgstr "Estás haciendo cambios en %(entitlementCount)s derechos"
7990
+ msgstr "Va a modificar los derechos de %(entitlementCount)s "
7317
7991
 
7318
7992
  msgid "Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs."
7319
7993
  msgstr "Su búsqueda no fue válida.Revísela e inténtelo de nuevo. El error completo ha sido enviado a los registros de la aplicación."
@@ -7321,6 +7995,12 @@ msgstr "Su búsqueda no fue válida.Revísela e inténtelo de nuevo. El error co
7321
7995
  msgid "Your search returned no matching "
7322
7996
  msgstr ""
7323
7997
 
7998
+ msgid "Your search returned no matching ${name}."
7999
+ msgstr ""
8000
+
8001
+ msgid "Your search returned no matching DEBs."
8002
+ msgstr ""
8003
+
7324
8004
  msgid "Your search returned no matching Module streams."
7325
8005
  msgstr ""
7326
8006
 
@@ -7333,12 +8013,18 @@ msgstr ""
7333
8013
  msgid "Your search returned no matching hosts."
7334
8014
  msgstr ""
7335
8015
 
8016
+ msgid "Yum"
8017
+ msgstr ""
8018
+
7336
8019
  msgid "Yum Metadata: %s"
7337
- msgstr "Metadatos de Yum: %s"
8020
+ msgstr "Metadatos Yum: %s"
7338
8021
 
7339
8022
  msgid "a content unit"
7340
8023
  msgstr ""
7341
8024
 
8025
+ msgid "a custom CDN URL"
8026
+ msgstr ""
8027
+
7342
8028
  msgid "a deb package"
7343
8029
  msgstr ""
7344
8030
 
@@ -7426,6 +8112,12 @@ msgstr "Autovincular suscripciones tras el registro"
7426
8112
  msgid "base url to perform repo discovery on"
7427
8113
  msgstr "URL base en la que realizar la detección de repositorio"
7428
8114
 
8115
+ msgid "bug fix"
8116
+ msgstr ""
8117
+
8118
+ msgid "bug fixes"
8119
+ msgstr ""
8120
+
7429
8121
  msgid "bulk add filter rules"
7430
8122
  msgstr ""
7431
8123
 
@@ -7463,7 +8155,7 @@ msgid "cannot be less than one"
7463
8155
  msgstr "no puede ser menor que uno"
7464
8156
 
7465
8157
  msgid "cannot be lower than current usage count (%s)"
7466
- msgstr "No puede ser inferior que el conteo de uso actual (%s)"
8158
+ msgstr "no puede ser inferior al recuento de uso actual (%s)"
7467
8159
 
7468
8160
  msgid "cannot be nil"
7469
8161
  msgstr "No puede ser nulo"
@@ -7487,10 +8179,10 @@ msgid "cannot contain filters whose repositories do not belong to this content v
7487
8179
  msgstr "no puede contener filtros cuyos repositorios no pertenezcan a esta vista de contenido"
7488
8180
 
7489
8181
  msgid "cannot contain more than %s characters"
7490
- msgstr "No puede contener más de %s caracteres"
8182
+ msgstr "no puede contener más de %s caracteres"
7491
8183
 
7492
- msgid "checking Candlepin task status"
7493
- msgstr "verificando estado de tarea de Candlepin"
8184
+ msgid "checking %s task status"
8185
+ msgstr ""
7494
8186
 
7495
8187
  msgid "checking Pulp task status"
7496
8188
  msgstr "verificando el estado de la tarea Pulp"
@@ -7510,9 +8202,6 @@ msgstr "nombres de paquetes condicionales a incluir en el grupo de paquetes"
7510
8202
  msgid "content release version"
7511
8203
  msgstr "versión de lanzamiento de contenido"
7512
8204
 
7513
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7514
- msgstr ""
7515
-
7516
8205
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7517
8206
  msgstr ""
7518
8207
 
@@ -7567,8 +8256,8 @@ msgstr "Versiones de vista de contenido a comparar"
7567
8256
  msgid "create a filter for a content view"
7568
8257
  msgstr "crear un filtro para una vista de contenido"
7569
8258
 
7570
- msgid "deb Packages"
7571
- msgstr "Paquetes deb"
8259
+ msgid "deb, package, package group, or docker tag names"
8260
+ msgstr ""
7572
8261
 
7573
8262
  msgid "deb_ids is not an array"
7574
8263
  msgstr "deb_ids no es una matriz"
@@ -7594,12 +8283,21 @@ msgstr "descripción del filtro"
7594
8283
  msgid "description of the repository"
7595
8284
  msgstr "descripción del repositorio"
7596
8285
 
8286
+ msgid "disk"
8287
+ msgstr ""
8288
+
7597
8289
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7598
8290
  msgstr ""
7599
8291
 
7600
8292
  msgid "enables or disables synchronization"
7601
8293
  msgstr "Activar o desactivar sincronización"
7602
8294
 
8295
+ msgid "enhancement"
8296
+ msgstr ""
8297
+
8298
+ msgid "enhancements"
8299
+ msgstr ""
8300
+
7603
8301
  msgid "environment"
7604
8302
  msgstr "Entorno"
7605
8303
 
@@ -7676,7 +8374,7 @@ msgid "filter only environments containing this name"
7676
8374
  msgstr "filtrar solo entornos que contengan este nombre"
7677
8375
 
7678
8376
  msgid "for repository '%{name}' is not unique and cannot be created in '%{env}'. Its Container Repository Name (%{container_name}) conflicts with an existing repository. Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
7679
- msgstr "para el repositorio '%{name}' no es único y no puede ser creado en '%{env}'. Su nombre de repositorio de contenedores (%{container_name}) entra en conflicto con un repositorio existente. Considere la posibilidad de cambiar el patrón de nombre de registro del entorno del ciclo de vida a algo más específico."
8377
+ msgstr "para el repositorio '%{name}' no es único y no puede ser creado en '%{env}'. Su Nombre de repositorio contenedor (%{container_name}) entra en conflicto con un repositorio existente. Considere cambiar el Patrón de Nombre de Registro del Entorno del Ciclo de Vida a algo más específico."
7680
8378
 
7681
8379
  msgid "force content view promotion and bypass lifecycle environment restriction"
7682
8380
  msgstr "forzar promoción de vista de contenido e ignorar la restricción del entorno de ciclo de vida"
@@ -7723,8 +8421,8 @@ msgstr "Los ID a filtrar por contenido"
7723
8421
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7724
8422
  msgstr "si es verdadero, Katello verificará que los certificados SSL del URL de canal ascendente están firmados por un CA de confianza"
7725
8423
 
7726
- msgid "initiating Candlepin task"
7727
- msgstr "iniciando tarea Candlepin"
8424
+ msgid "initiating %s task"
8425
+ msgstr ""
7728
8426
 
7729
8427
  msgid "initiating Pulp task"
7730
8428
  msgstr "iniciando tarea Pulp"
@@ -7783,9 +8481,6 @@ msgstr "etiqueta del entorno"
7783
8481
  msgid "label of the repository"
7784
8482
  msgstr "etiqueta del repositorio"
7785
8483
 
7786
- msgid "limit to only repositories of this type"
7787
- msgstr "limitarse solo a los repositorios de este tipo"
7788
-
7789
8484
  msgid "limit to only repositories with this download policy"
7790
8485
  msgstr ""
7791
8486
 
@@ -7826,7 +8521,7 @@ msgid "must be a positive integer value."
7826
8521
  msgstr "Debe ser un valor entero positivo."
7827
8522
 
7828
8523
  msgid "must be one of the following: %s"
7829
- msgstr "debe ser uno de lo siguiente: %s"
8524
+ msgstr "debe ser uno de los siguientes: %s"
7830
8525
 
7831
8526
  msgid "must be one of: %s"
7832
8527
  msgstr ""
@@ -7841,7 +8536,7 @@ msgid "must contain GPG Key"
7841
8536
  msgstr "debe contener la llave GPG"
7842
8537
 
7843
8538
  msgid "must contain at least %s character"
7844
- msgstr "debe contener por lo menos %s caracteres"
8539
+ msgstr "debe contener al menos %s carácter"
7845
8540
 
7846
8541
  msgid "must contain valid Public GPG Key"
7847
8542
  msgstr "debe contener una clave GPG pública válida"
@@ -7903,9 +8598,6 @@ msgstr "obtener historial de manifiestos para las suscripciones"
7903
8598
  msgid "of environment must be unique within one organization"
7904
8599
  msgstr "del entorno debe ser único dentro de una organización"
7905
8600
 
7906
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7907
- msgstr "solo los repositorios que tengan al menos un tipo de contenido especificado, por ejemplo: rpm, erratas"
7908
-
7909
8601
  msgid "only show the repositories readable by this user with this username"
7910
8602
  msgstr ""
7911
8603
 
@@ -7973,7 +8665,7 @@ msgid "product numeric identifier"
7973
8665
  msgstr "identificador numérico de producto"
7974
8666
 
7975
8667
  msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
7976
- msgstr "se estableció register_hostname_fact para %s, pero no se encontró un evento ni era localhost."
8668
+ msgstr "register_hostname_fact establecido para %s, pero no se encontró ningún hecho, o era localhost."
7977
8669
 
7978
8670
  msgid "removing package group..."
7979
8671
  msgstr "Retirando grupo de paquetes..."
@@ -8017,6 +8709,15 @@ msgstr "nodo raíz de respuestas de recurso único (opcional)"
8017
8709
  msgid "rule identifier"
8018
8710
  msgstr "identificador de regla"
8019
8711
 
8712
+ msgid "run job invocation"
8713
+ msgstr ""
8714
+
8715
+ msgid "security advisories"
8716
+ msgstr ""
8717
+
8718
+ msgid "security advisory"
8719
+ msgstr ""
8720
+
8020
8721
  msgid "service level"
8021
8722
  msgstr "nivel de servicio"
8022
8723
 
@@ -8027,7 +8728,7 @@ msgid "set true if you want to see only library environments"
8027
8728
  msgstr "establecer a verdadero, si solo desea ver entornos de biblioteca"
8028
8729
 
8029
8730
  msgid "sha256"
8030
- msgstr ""
8731
+ msgstr "sha256"
8031
8732
 
8032
8733
  msgid "show archived repositories"
8033
8734
  msgstr "mostrar repositorios archivados"
@@ -8039,7 +8740,7 @@ msgid "show repositories in Library and the default content view"
8039
8740
  msgstr "mostrar los repositorios en la biblioteca y la vista de contenido predeterminada"
8040
8741
 
8041
8742
  msgid "some executors are not responding, check %{status_url}"
8042
- msgstr "algunos administradores no responden, verifique %{status_url}."
8743
+ msgstr "Algunos ejecutores no responden, compruebe %.{status_url}"
8043
8744
 
8044
8745
  msgid "source URL is malformed"
8045
8746
  msgstr "la URL de fuente no está bien formada"
@@ -8066,14 +8767,11 @@ msgid "temporarily override feed URL for sync"
8066
8767
  msgstr "sustituir la URL de fuente temporalmente para sincronizar"
8067
8768
 
8068
8769
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
8069
- msgstr "Los siguientes atributos no pueden ser actualizados para el proveedor de Red Hat: [ %s ]"
8770
+ msgstr "los siguientes atributos no pueden ser actualizados para el proveedor Red Hat: [ %s ]"
8070
8771
 
8071
8772
  msgid "to"
8072
8773
  msgstr ""
8073
8774
 
8074
- msgid "to update configuration on all hosts, or"
8075
- msgstr ""
8076
-
8077
8775
  msgid "true if the latest version of the component's content view is desired"
8078
8776
  msgstr "verdadero si se desea la última versión de la vista de contenido del componente"
8079
8777
 
@@ -8086,17 +8784,14 @@ msgstr "verdadero, si este repositorio se puede publicar mediante HTTP"
8086
8784
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8087
8785
  msgstr ""
8088
8786
 
8089
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8787
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8090
8788
  msgstr ""
8091
8789
 
8092
- msgid "type of repo"
8093
- msgstr "tipo de repositorio"
8094
-
8095
8790
  msgid "types of filters"
8096
8791
  msgstr "tipos de filtros"
8097
8792
 
8098
8793
  msgid "unknown permission for %s"
8099
- msgstr "permisos desconocidos para %s"
8794
+ msgstr "permiso desconocido para %s"
8100
8795
 
8101
8796
  msgid "unlimited"
8102
8797
  msgstr ""
@@ -8104,9 +8799,6 @@ msgstr ""
8104
8799
  msgid "update a filter"
8105
8800
  msgstr "Actualizar un filtro"
8106
8801
 
8107
- msgid "update configuration on the hosts manually:"
8108
- msgstr ""
8109
-
8110
8802
  msgid "updating package group..."
8111
8803
  msgstr "Actualizando grupo de paquetes..."
8112
8804
 
@@ -8129,13 +8821,13 @@ msgid "via customized remote execution"
8129
8821
  msgstr ""
8130
8822
 
8131
8823
  msgid "via remote execution"
8132
- msgstr "por medio de la ejecución remota"
8824
+ msgstr "mediante ejecución remota"
8133
8825
 
8134
8826
  msgid "view content view tabs."
8135
8827
  msgstr ""
8136
8828
 
8137
- msgid "waiting for Candlepin to finish the task"
8138
- msgstr "esperando que Candlepin termine la tarea"
8829
+ msgid "waiting for %s to finish the task"
8830
+ msgstr ""
8139
8831
 
8140
8832
  msgid "waiting for Pulp to finish the task"
8141
8833
  msgstr "esperando a que Pulp finalice la tarea"