katello 4.4.2.2 → 4.5.0.rc1

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 (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/es/katello.po CHANGED
@@ -4,23 +4,23 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
- # Félix Barbeira <fbarbeira@gmail.com>, 2017
8
7
  # elobato <elobatocs@gmail.com>, 2017
9
- # Jared Nelson <jared@ajpadilla.com>, 2020
10
8
  # francis <hackgo@gmail.com>, 2021
11
9
  # Lukáš Zapletal, 2021
12
- # Gustavo Varela <gustavo.varela@gmail.com>, 2021
13
- # Carmela Rubiños <carmela.rubinos@gmail.com>, 2021
14
- # Bryan Kearney <bryan.kearney@gmail.com>, 2021
15
- # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2021
16
- # Amit Upadhye <aupadhye@redhat.com>, 2021
10
+ # Gustavo Varela <gustavo.varela@gmail.com>, 2022
11
+ # Félix Barbeira <fbarbeira@gmail.com>, 2022
12
+ # Jared Nelson <jared@ajpadilla.com>, 2022
13
+ # Carmela Rubiños <carmela.rubinos@gmail.com>, 2022
14
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2022
15
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
16
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
17
17
  #
18
18
  msgid ""
19
19
  msgstr ""
20
20
  "Project-Id-Version: katello 2.5.0\n"
21
21
  "Report-Msgid-Bugs-To: \n"
22
22
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
23
- "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2021\n"
23
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.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"
@@ -60,6 +60,9 @@ msgstr ""
60
60
  msgid " ago."
61
61
  msgstr ""
62
62
 
63
+ msgid " and"
64
+ msgstr ""
65
+
63
66
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
64
67
  msgstr ""
65
68
 
@@ -122,6 +125,9 @@ msgstr "%s ya ha sido eliminado"
122
125
  msgid "%s is not a valid package name"
123
126
  msgstr "%s no es un nombre de paquete válido"
124
127
 
128
+ msgid "%s is not a valid path"
129
+ msgstr ""
130
+
125
131
  msgid "%s is required"
126
132
  msgstr ""
127
133
 
@@ -371,9 +377,6 @@ msgstr ""
371
377
  msgid "A post-promotion summary of hosts with installable errata"
372
378
  msgstr "Un resumen de pospromoción de hosts con erratas instalables"
373
379
 
374
- msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
375
- msgstr "Un servidor que funciona en modo desconectado no se comunica con el CDN de Red Hat."
376
-
377
380
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
378
381
  msgstr "Un nivel de servicio para el proceso de autoreparación, p. ej., AUTOSOPORTE"
379
382
 
@@ -392,12 +395,18 @@ msgstr ""
392
395
  msgid "About page"
393
396
  msgstr ""
394
397
 
398
+ msgid "Abstract"
399
+ msgstr ""
400
+
395
401
  msgid "Abstract async task"
396
402
  msgstr "Tarea de sincronización abstracta"
397
403
 
398
404
  msgid "Accept action timeout"
399
405
  msgstr "Aceptar el tiempo de espera de la acción"
400
406
 
407
+ msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
408
+ msgstr ""
409
+
401
410
  msgid "Account Number"
402
411
  msgstr "Número de cuenta"
403
412
 
@@ -416,12 +425,12 @@ msgstr "Acción no autorizada que debe realizarse en los hosts seleccionados."
416
425
  msgid "Action with sub plans"
417
426
  msgstr "Acción con subplanes"
418
427
 
419
- msgid "Actions"
420
- msgstr ""
421
-
422
428
  msgid "Activation Keys"
423
429
  msgstr "Llaves de activación"
424
430
 
431
+ msgid "Activation key"
432
+ msgstr ""
433
+
425
434
  msgid "Activation key ID"
426
435
  msgstr "ID de llave de activación"
427
436
 
@@ -453,7 +462,7 @@ msgid "Add"
453
462
  msgstr "Añadir"
454
463
 
455
464
  msgid "Add Bookmark"
456
- msgstr ""
465
+ msgstr "Añadir marcador"
457
466
 
458
467
  msgid "Add RPM rule"
459
468
  msgstr ""
@@ -488,6 +497,12 @@ msgstr ""
488
497
  msgid "Add filters using the 'Add filter' button above."
489
498
  msgstr ""
490
499
 
500
+ msgid "Add host to collections"
501
+ msgstr ""
502
+
503
+ msgid "Add host to host collections"
504
+ msgstr ""
505
+
491
506
  msgid "Add host to the host collection"
492
507
  msgstr "Añadir host a la colección de hosts"
493
508
 
@@ -512,6 +527,9 @@ msgstr ""
512
527
  msgid "Add rule"
513
528
  msgstr ""
514
529
 
530
+ msgid "Add source"
531
+ msgstr ""
532
+
515
533
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
516
534
  msgstr "Añadir las suscripciones consumidas por un manifiesto de la Administración de suscripciones de Red Hat"
517
535
 
@@ -524,9 +542,6 @@ msgstr ""
524
542
  msgid "Add to this filter using the 'Add filter rule' button."
525
543
  msgstr ""
526
544
 
527
- msgid "Add traces by applying updates on this host."
528
- msgstr ""
529
-
530
545
  msgid "Added"
531
546
  msgstr ""
532
547
 
@@ -555,13 +570,13 @@ msgid "Agent action"
555
570
  msgstr ""
556
571
 
557
572
  msgid "All"
558
- msgstr ""
573
+ msgstr "Todos"
559
574
 
560
575
  msgid "All Media"
561
576
  msgstr "Todos los medios"
562
577
 
563
578
  msgid "All Repositories"
564
- msgstr ""
579
+ msgstr "Todos los repositorios"
565
580
 
566
581
  msgid "All available architectures for this repo are enabled."
567
582
  msgstr "Todas las arquitecturas disponibles para este repo están habilitadas."
@@ -569,29 +584,53 @@ msgstr "Todas las arquitecturas disponibles para este repo están habilitadas."
569
584
  msgid "All errata applied"
570
585
  msgstr "Todas las erratas aplicadas"
571
586
 
587
+ msgid "All errata up-to-date"
588
+ msgstr ""
589
+
590
+ msgid "All subpaths must have a slash at the end and none at the front"
591
+ msgstr ""
592
+
572
593
  msgid "All versions"
573
594
  msgstr ""
574
595
 
575
596
  msgid "All versions will be removed from these environments"
576
597
  msgstr ""
577
598
 
578
- msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
599
+ 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)"
579
600
  msgstr ""
580
601
 
581
- 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)"
602
+ msgid "Allow deleting repositories in published content views"
603
+ msgstr ""
604
+
605
+ msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
582
606
  msgstr ""
583
607
 
584
608
  msgid "Allow hosts to re-register themselves only when they are in build mode"
585
609
  msgstr ""
586
610
 
587
- 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."
588
- msgstr "Permitir que los nuevos registros de host asuman perfiles registrados con nombres de host coincidentes, siempre que el DMI UUID registrado no sea utilizado por otro host."
611
+ 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
+ msgstr ""
589
613
 
590
614
  msgid "Also include the latest upgradable package version for each host package"
591
615
  msgstr ""
592
616
 
593
- msgid "Alter a hosts host collections"
594
- msgstr "Modificar las colecciones de host de un host"
617
+ msgid "Alter a host's host collections"
618
+ msgstr ""
619
+
620
+ msgid "Alternate Content Sources"
621
+ msgstr ""
622
+
623
+ msgid "Alternate content source ${name} created"
624
+ msgstr ""
625
+
626
+ msgid "Alternate content source ID"
627
+ msgstr ""
628
+
629
+ msgid "Alternate content source deleted"
630
+ msgstr ""
631
+
632
+ msgid "Alternate content sources"
633
+ msgstr ""
595
634
 
596
635
  msgid "Always Use Latest (currently %{version})"
597
636
  msgstr "Siempre usar el último (actualmente %{version})"
@@ -602,6 +641,9 @@ msgstr ""
602
641
  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."
603
642
  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."
604
643
 
644
+ msgid "An alternate content source can be added by using the \"Add source\" button above."
645
+ msgstr ""
646
+
605
647
  msgid "An environment is missing a prior"
606
648
  msgstr "A un entorno le falta algo anterior"
607
649
 
@@ -642,13 +684,13 @@ msgid "Applicability Batch Size"
642
684
  msgstr "Aplicabilidad de tamaño del lote"
643
685
 
644
686
  msgid "Applicable Content Hosts"
645
- msgstr ""
687
+ msgstr "Hosts de contenido aplicables"
646
688
 
647
689
  msgid "Application"
648
- msgstr ""
690
+ msgstr "Aplicación"
649
691
 
650
692
  msgid "Apply"
651
- msgstr ""
693
+ msgstr "Aplicar"
652
694
 
653
695
  msgid "Apply Erratum"
654
696
  msgstr ""
@@ -745,6 +787,9 @@ msgstr "Asignar la versión de lanzamiento a uno o más hosts"
745
787
  msgid "Associated location IDs"
746
788
  msgstr "ID de ubicaciones asociadas"
747
789
 
790
+ msgid "Associated version"
791
+ msgstr ""
792
+
748
793
  msgid "Associations"
749
794
  msgstr "Asociaciones"
750
795
 
@@ -806,11 +851,14 @@ msgid "Available Repositories"
806
851
  msgstr "Repositorios disponibles"
807
852
 
808
853
  msgid "Available Schema Versions"
809
- msgstr ""
854
+ msgstr "Versiones de esquema disponibles"
810
855
 
811
856
  msgid "Backend System Status"
812
857
  msgstr "Estado de sistema de segundo plano"
813
858
 
859
+ msgid "Base URL for finding alternate content"
860
+ msgstr ""
861
+
814
862
  msgid "Base URL to perform repo discovery on"
815
863
  msgstr "URL base en la que realizar la detección de repositorio"
816
864
 
@@ -820,9 +868,21 @@ msgstr "Basearch para inhabilitar"
820
868
  msgid "Basearch to enable"
821
869
  msgstr "Basearch para habilitar"
822
870
 
871
+ msgid "Basic authentication password"
872
+ msgstr ""
873
+
874
+ msgid "Basic authentication username"
875
+ msgstr ""
876
+
823
877
  msgid "Batch size to sync repositories in."
824
878
  msgstr "Tamaño del lote para sincronizar los repositorios."
825
879
 
880
+ msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
881
+ msgstr ""
882
+
883
+ msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
884
+ msgstr ""
885
+
826
886
  msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
827
887
  msgstr ""
828
888
 
@@ -836,7 +896,7 @@ msgid "Bind entitlements to an allocation"
836
896
  msgstr "Vincular los derechos a una asignación"
837
897
 
838
898
  msgid "Bookmark this search"
839
- msgstr ""
899
+ msgstr "Guardar esta búsqueda en marcadores"
840
900
 
841
901
  msgid "Bookmarks marked as public are available to all users"
842
902
  msgstr ""
@@ -859,6 +919,9 @@ msgstr ""
859
919
  msgid "Bulk generate applicability for hosts"
860
920
  msgstr "Generar a gran escala la aplicabilidad para los hosts"
861
921
 
922
+ msgid "Bulk remove versions from a content view and reassign systems and keys"
923
+ msgstr ""
924
+
862
925
  msgid "CDN Configuration"
863
926
  msgstr ""
864
927
 
@@ -871,6 +934,12 @@ msgstr ""
871
934
  msgid "CDN SSL version"
872
935
  msgstr "Versión CDN SSL"
873
936
 
937
+ msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
938
+ msgstr ""
939
+
940
+ msgid "CDN configuration type. One of %s."
941
+ msgstr ""
942
+
874
943
  msgid "CDN loading error: %s not found"
875
944
  msgstr "Error al cargar CDN: %s no se encontró"
876
945
 
@@ -884,7 +953,7 @@ msgid "CVE identifier"
884
953
  msgstr "Identificador CVE"
885
954
 
886
955
  msgid "CVEs"
887
- msgstr ""
956
+ msgstr "CVE"
888
957
 
889
958
  msgid "Calculate Applicable Errata based on a particular Content View"
890
959
  msgstr "Calcular erratas aplicables según una vista de contenido específica"
@@ -892,8 +961,11 @@ msgstr "Calcular erratas aplicables según una vista de contenido específica"
892
961
  msgid "Calculate Applicable Errata based on a particular Environment"
893
962
  msgstr "Calcular las erratas aplicables según un entorno específico"
894
963
 
895
- msgid "Calculate errata host status based only on errata in a Host's Content View and Lifecycle Environment"
896
- msgstr "Calcular el estado del host basado solo en las erratas en la vista de contenido y el entorno del ciclo de vida del host"
964
+ msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
965
+ msgstr ""
966
+
967
+ msgid "Can communicate with the Red Hat Portal for subscriptions."
968
+ msgstr ""
897
969
 
898
970
  msgid "Can not add product %s because it is disabled."
899
971
  msgstr "No se puede añadir %s de producto porque está desactivado."
@@ -1015,6 +1087,9 @@ msgstr "No puede pasar las unidades de contenido sin el tipo de unidad de conten
1015
1087
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1016
1088
  msgstr "No se puede realizar una actualización incremental en una versión de vista de contenido compuesta (%{name} versión %{version}"
1017
1089
 
1090
+ msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1091
+ msgstr ""
1092
+
1018
1093
  msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
1019
1094
  msgstr "No se puede promover entorno de la secuencia. Use force para evitar la restricción"
1020
1095
 
@@ -1066,6 +1141,18 @@ msgstr "No se puede cargar el contenido de la imagen del contenedor."
1066
1141
  msgid "Cannot validate contents on non-yum/deb repositories."
1067
1142
  msgstr "No se puede validar el contenido de los depósitos que no correspondan a yum/deb."
1068
1143
 
1144
+ msgid "Capacity"
1145
+ msgstr ""
1146
+
1147
+ msgid "Change Content Source"
1148
+ msgstr ""
1149
+
1150
+ msgid "Change content source"
1151
+ msgstr ""
1152
+
1153
+ msgid "Change host content source"
1154
+ msgstr ""
1155
+
1069
1156
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1070
1157
  msgstr "Comprobar si se puede hacer una conexión con el administrador de suscripciones de Red Hat."
1071
1158
 
@@ -1078,6 +1165,9 @@ msgstr "Comprobar los servicios antes de las acciones"
1078
1165
  msgid "Checksum"
1079
1166
  msgstr "Suma de comprobación"
1080
1167
 
1168
+ msgid "Checksum is a required parameter."
1169
+ msgstr ""
1170
+
1081
1171
  msgid "Checksum of file to upload"
1082
1172
  msgstr "Suma de comprobación del archivo a cargar"
1083
1173
 
@@ -1093,6 +1183,9 @@ msgstr ""
1093
1183
  msgid "Click here to go to the tasks page for the task."
1094
1184
  msgstr "Haga clic aquí para ir a la página de tareas para la tarea."
1095
1185
 
1186
+ msgid "Click {update} below to save changes."
1187
+ msgstr ""
1188
+
1096
1189
  msgid "Clone"
1097
1190
  msgstr "Clonar"
1098
1191
 
@@ -1108,7 +1201,13 @@ msgstr "Actualización de perfil combinado"
1108
1201
  msgid "Combined Profile Update for %s"
1109
1202
  msgstr "Actualización de perfil combinado para %s"
1110
1203
 
1111
- msgid "Comma-separated list of tags to sync for Container Image repository"
1204
+ msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1205
+ msgstr ""
1206
+
1207
+ msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
1208
+ msgstr ""
1209
+
1210
+ msgid "Comma-separated list of tags to sync for a container image repository"
1112
1211
  msgstr ""
1113
1212
 
1114
1213
  msgid "Component"
@@ -1124,10 +1223,10 @@ msgid "Component content views"
1124
1223
  msgstr ""
1125
1224
 
1126
1225
  msgid "Components"
1127
- msgstr ""
1226
+ msgstr "Componentes"
1128
1227
 
1129
1228
  msgid "Composite"
1130
- msgstr ""
1229
+ msgstr "Compuesto"
1131
1230
 
1132
1231
  msgid "Composite Content View"
1133
1232
  msgstr ""
@@ -1195,6 +1294,9 @@ msgstr ""
1195
1294
  msgid "Container manifests"
1196
1295
  msgstr ""
1197
1296
 
1297
+ msgid "Container tags"
1298
+ msgstr ""
1299
+
1198
1300
  msgid "Content"
1199
1301
  msgstr "Contenido"
1200
1302
 
@@ -1207,7 +1309,7 @@ msgstr ""
1207
1309
  msgid "Content Credential numeric identifier"
1208
1310
  msgstr ""
1209
1311
 
1210
- msgid "Content Credential to use for SSL CA"
1312
+ msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
1211
1313
  msgstr ""
1212
1314
 
1213
1315
  msgid "Content Credentials"
@@ -1240,9 +1342,6 @@ msgstr "Vista del contenido"
1240
1342
  msgid "Content View %{view}: Versions: %{versions}"
1241
1343
  msgstr "Vista de contenido %{view}: Versiones: %{versions}"
1242
1344
 
1243
- msgid "Content View Dependency Solving Default"
1244
- msgstr "Resolución de dependencias de vista de contenido por defecto"
1245
-
1246
1345
  msgid "Content View Details"
1247
1346
  msgstr "Detalles de vista de contenido"
1248
1347
 
@@ -1255,11 +1354,8 @@ msgstr "Identificador de filtro de vista de contenido"
1255
1354
  msgid "Content View ID"
1256
1355
  msgstr "ID de vista de contenido"
1257
1356
 
1258
- msgid "Content View Label"
1259
- msgstr ""
1260
-
1261
1357
  msgid "Content View Name"
1262
- msgstr ""
1358
+ msgstr "Nombre de vista de contenido"
1263
1359
 
1264
1360
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1265
1361
  msgstr " %{id} de versión de vista de contenido no está especificado en todos los entornos %{envs}"
@@ -1282,6 +1378,9 @@ msgstr "La vista de contenido y el entorno no están configurados para el regist
1282
1378
  msgid "Content View id"
1283
1379
  msgstr ""
1284
1380
 
1381
+ msgid "Content View label not provided."
1382
+ msgstr ""
1383
+
1285
1384
  msgid "Content Views"
1286
1385
  msgstr "Vistas de contenido"
1287
1386
 
@@ -1294,15 +1393,21 @@ msgstr "El host del contenido debe estar sin registrar antes de realizar esta ac
1294
1393
  msgid "Content hosts"
1295
1394
  msgstr ""
1296
1395
 
1297
- msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1396
+ msgid "Content imported by %{user} into content view '%{name}'"
1298
1397
  msgstr ""
1299
1398
 
1300
1399
  msgid "Content not uploaded to pulp"
1301
1400
  msgstr ""
1302
1401
 
1402
+ msgid "Content override search parameters"
1403
+ msgstr ""
1404
+
1303
1405
  msgid "Content source ID"
1304
1406
  msgstr "ID de fuente de contenido"
1305
1407
 
1408
+ msgid "Content source successfully updated."
1409
+ msgstr ""
1410
+
1306
1411
  msgid "Content source was not set for host '%{host}'"
1307
1412
  msgstr "La fuente del contenido no se estableció para el host '%{host}'"
1308
1413
 
@@ -1378,6 +1483,9 @@ msgstr "Contrato"
1378
1483
  msgid "Contract Number"
1379
1484
  msgstr "Número de contrato"
1380
1485
 
1486
+ msgid "Copied to clipboard"
1487
+ msgstr ""
1488
+
1381
1489
  msgid "Copy"
1382
1490
  msgstr ""
1383
1491
 
@@ -1387,6 +1495,9 @@ msgstr "Copiar una clave de activación"
1387
1495
  msgid "Copy content view"
1388
1496
  msgstr ""
1389
1497
 
1498
+ msgid "Copy to clipboard"
1499
+ msgstr ""
1500
+
1390
1501
  msgid "Copy version units to library"
1391
1502
  msgstr ""
1392
1503
 
@@ -1498,6 +1609,9 @@ msgstr "No se encontró el producto con ID '%s'"
1498
1609
  msgid "Couldn't find repository '%s'"
1499
1610
  msgstr "No se encontró el repositorio '%s'"
1500
1611
 
1612
+ msgid "Couldn't find smart proxies with id '%s'"
1613
+ msgstr ""
1614
+
1501
1615
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1502
1616
  msgstr "No se encontró la vista de contenido y el entorno de ciclo de vida especificados."
1503
1617
 
@@ -1510,6 +1624,9 @@ msgstr "Recuento"
1510
1624
  msgid "Create"
1511
1625
  msgstr "Crear"
1512
1626
 
1627
+ msgid "Create Alternate Content Source"
1628
+ msgstr ""
1629
+
1513
1630
  msgid "Create Export History"
1514
1631
  msgstr ""
1515
1632
 
@@ -1546,6 +1663,9 @@ msgstr "Crear un producto"
1546
1663
  msgid "Create a sync plan"
1547
1664
  msgstr "Crear un plan de sincronización"
1548
1665
 
1666
+ msgid "Create an ACS"
1667
+ msgstr ""
1668
+
1549
1669
  msgid "Create an activation key"
1550
1670
  msgstr "Crear una llave de activación"
1551
1671
 
@@ -1568,7 +1688,7 @@ msgid "Create organization"
1568
1688
  msgstr "Crear organización"
1569
1689
 
1570
1690
  msgid "Critical"
1571
- msgstr ""
1691
+ msgstr "Crítico"
1572
1692
 
1573
1693
  msgid "Cron expression is not valid!"
1574
1694
  msgstr "¡La expresión de Cron no es válida!"
@@ -1591,6 +1711,9 @@ msgstr "La expresión personalizada de cron solo necesita establecerse para el v
1591
1711
  msgid "Custom repositories cannot be disabled."
1592
1712
  msgstr "No se pueden desactivar los repositorios personalizados."
1593
1713
 
1714
+ msgid "Customize with Rex"
1715
+ msgstr ""
1716
+
1594
1717
  msgid "Database connection"
1595
1718
  msgstr "Conexión a la base de datos"
1596
1719
 
@@ -1627,14 +1750,11 @@ msgstr "Depurar RPM"
1627
1750
  msgid "Default Custom Repository download policy"
1628
1751
  msgstr "Política de descarga del repositorio personalizado predeterminado"
1629
1752
 
1630
- msgid "Default HTTP Proxy for syncing content"
1631
- msgstr "Proxy HTTP por defecto para sincronizar el contenido"
1632
-
1633
- msgid "Default HTTP proxy"
1634
- msgstr "Proxy HTTP por defecto"
1753
+ msgid "Default HTTP Proxy"
1754
+ msgstr ""
1635
1755
 
1636
- msgid "Default Location subscribed hosts"
1637
- msgstr "Ubicación por defecto para hosts suscritos"
1756
+ msgid "Default HTTP proxy for syncing content"
1757
+ msgstr ""
1638
1758
 
1639
1759
  msgid "Default Location where new subscribed hosts will put upon registration"
1640
1760
  msgstr "Ubicación por defecto donde los nuevos hosts suscritos se colocarán luego del registro"
@@ -1678,6 +1798,9 @@ msgstr "Plantilla de iPXE por defecto para los nuevos sistemas operativos creado
1678
1798
  msgid "Default kexec template for new Operating Systems created from synced content"
1679
1799
  msgstr "Plantilla de kexec por defecto para los nuevos sistemas operativos creados a partir de contenido sincronizado"
1680
1800
 
1801
+ msgid "Default location for subscribed hosts"
1802
+ msgstr ""
1803
+
1681
1804
  msgid "Default partitioning table for new Operating Systems created from synced content"
1682
1805
  msgstr "Tabla de partición por defecto para los nuevos sistemas operativos creados a partir de contenido sincronizado"
1683
1806
 
@@ -1780,6 +1903,9 @@ msgstr ""
1780
1903
  msgid "Delete version"
1781
1904
  msgstr ""
1782
1905
 
1906
+ msgid "Delete versions"
1907
+ msgstr ""
1908
+
1783
1909
  msgid "Deleted consumer '%s'"
1784
1910
  msgstr "Ha sido borrado el usuario '%s'"
1785
1911
 
@@ -1795,9 +1921,18 @@ msgstr ""
1795
1921
  msgid "Deleting manifest in '%{subject}' failed."
1796
1922
  msgstr "Error al intentar eliminar el manifiesto '%{subject}'."
1797
1923
 
1924
+ msgid "Deleting version {versionList}"
1925
+ msgstr ""
1926
+
1927
+ msgid "Deleting versions: {versionList}"
1928
+ msgstr ""
1929
+
1798
1930
  msgid "Description"
1799
1931
  msgstr "Descripción"
1800
1932
 
1933
+ msgid "Description for the alternate content source"
1934
+ msgstr ""
1935
+
1801
1936
  msgid "Description for the content view"
1802
1937
  msgstr "Descripción de la vista de contenido"
1803
1938
 
@@ -1819,6 +1954,9 @@ msgstr ""
1819
1954
  msgid "Destroy"
1820
1955
  msgstr "Destruir"
1821
1956
 
1957
+ msgid "Destroy Alternate Content Source"
1958
+ msgstr ""
1959
+
1822
1960
  msgid "Destroy Content Host"
1823
1961
  msgstr "Destruir host de contenido"
1824
1962
 
@@ -1843,6 +1981,9 @@ msgstr "Destruir un plan de sincronización"
1843
1981
  msgid "Destroy an activation key"
1844
1982
  msgstr "Destruir una llave de activación"
1845
1983
 
1984
+ msgid "Destroy an alternate content source"
1985
+ msgstr ""
1986
+
1846
1987
  msgid "Destroy an environment"
1847
1988
  msgstr "Destruir un entorno"
1848
1989
 
@@ -1882,18 +2023,18 @@ msgstr "Deshabilitar el acceso al contenido simple"
1882
2023
  msgid "Disable a repository from the set"
1883
2024
  msgstr "Deshabilitar un repositorio del conjunto"
1884
2025
 
2026
+ msgid "Disable module stream"
2027
+ msgstr ""
2028
+
1885
2029
  msgid "Disable simple content access for a manifest"
1886
2030
  msgstr "Deshabilitar el acceso a contenidos simples para un manifiesto"
1887
2031
 
1888
2032
  msgid "Disabled"
1889
- msgstr ""
2033
+ msgstr "Deshabilitado"
1890
2034
 
1891
2035
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1892
2036
  msgstr ""
1893
2037
 
1894
- msgid "Disconnected mode"
1895
- msgstr "Modo desconectado"
1896
-
1897
2038
  msgid "Discover"
1898
2039
  msgstr "Descubrir"
1899
2040
 
@@ -1909,9 +2050,6 @@ msgstr "No esperar a que termine la acción ImportUpload. Por defecto: falso"
1909
2050
  msgid "Do not wait for the update action to finish. Default: true"
1910
2051
  msgstr "No esperar a que termine la acción de actualización. Por defecto: true"
1911
2052
 
1912
- msgid "Docker Tags"
1913
- msgstr ""
1914
-
1915
2053
  msgid "Domain IDs"
1916
2054
  msgstr "ID de dominio"
1917
2055
 
@@ -1921,6 +2059,9 @@ msgstr "La política de descarga de la cápsula, debe ser una de %s"
1921
2059
  msgid "Download a debug certificate"
1922
2060
  msgstr "Descargar un certificado de depuración"
1923
2061
 
2062
+ msgid "Download rate limit"
2063
+ msgstr ""
2064
+
1924
2065
  msgid "Duplicate artifact detected"
1925
2066
  msgstr ""
1926
2067
 
@@ -1936,6 +2077,9 @@ msgstr "Editar"
1936
2077
  msgid "Edit RPM rule"
1937
2078
  msgstr ""
1938
2079
 
2080
+ msgid "Edit content view assignment"
2081
+ msgstr ""
2082
+
1939
2083
  msgid "Edit filter rule"
1940
2084
  msgstr ""
1941
2085
 
@@ -1999,6 +2143,9 @@ msgstr ""
1999
2143
  msgid "End Date"
2000
2144
  msgstr "Fecha de finalización"
2001
2145
 
2146
+ msgid "End date"
2147
+ msgstr ""
2148
+
2002
2149
  msgid "Ends"
2003
2150
  msgstr "Finales"
2004
2151
 
@@ -2008,6 +2155,9 @@ msgstr "Mejora"
2008
2155
  msgid "Enter a name"
2009
2156
  msgstr ""
2010
2157
 
2158
+ msgid "Enter a valid date: MM/DD/YYYY"
2159
+ msgstr ""
2160
+
2011
2161
  msgid "Entitlements"
2012
2162
  msgstr "Derechos"
2013
2163
 
@@ -2026,6 +2176,9 @@ msgstr "Identificador del entorno"
2026
2176
  msgid "Environments"
2027
2177
  msgstr "Entornos"
2028
2178
 
2179
+ msgid "Epoch"
2180
+ msgstr ""
2181
+
2029
2182
  msgid "Equal to"
2030
2183
  msgstr ""
2031
2184
 
@@ -2083,6 +2236,9 @@ msgstr "Error al conectarse con el servicio Pulp"
2083
2236
  msgid "Error connecting. Got: %s"
2084
2237
  msgstr "Error al conectar. Se obtuvo: %s."
2085
2238
 
2239
+ msgid "Error loading content views"
2240
+ msgstr ""
2241
+
2086
2242
  msgid "Error refreshing status for %s: "
2087
2243
  msgstr "Estado de actualización de errores para %s: "
2088
2244
 
@@ -2099,7 +2255,7 @@ msgid "Exclude all Module Streams with no errata."
2099
2255
  msgstr ""
2100
2256
 
2101
2257
  msgid "Exclude all RPMs with no errata."
2102
- msgstr ""
2258
+ msgstr "Excluir todos los RPM sin erratas."
2103
2259
 
2104
2260
  msgid "Exclude filter"
2105
2261
  msgstr ""
@@ -2131,6 +2287,12 @@ msgstr "Exportar CSV"
2131
2287
  msgid "Export Library"
2132
2288
  msgstr ""
2133
2289
 
2290
+ msgid "Export Repository"
2291
+ msgstr ""
2292
+
2293
+ msgid "Export Sync"
2294
+ msgstr ""
2295
+
2134
2296
  msgid "Export Types"
2135
2297
  msgstr ""
2136
2298
 
@@ -2141,7 +2303,7 @@ msgid "Export history identifier used for incremental export. If not provided th
2141
2303
  msgstr ""
2142
2304
 
2143
2305
  msgid "Exported content view"
2144
- msgstr ""
2306
+ msgstr "Vista de contenido exportado"
2145
2307
 
2146
2308
  msgid "Exported version"
2147
2309
  msgstr "Versión exportada"
@@ -2155,6 +2317,9 @@ msgstr "Errores"
2155
2317
  msgid "Failed to delete %{host}: %{errors}"
2156
2318
  msgstr "Ocurrió un error al borrar %{host}: %{errors}"
2157
2319
 
2320
+ msgid "Failed to delete latest content view version of Content View '%{subject}'."
2321
+ msgstr ""
2322
+
2158
2323
  msgid "Failed to download %s package."
2159
2324
  msgid_plural "Failed to download %s packages."
2160
2325
  msgstr[0] "Falló al instalar el paquete %s."
@@ -2194,7 +2359,7 @@ msgid "File contents"
2194
2359
  msgstr ""
2195
2360
 
2196
2361
  msgid "Filename"
2197
- msgstr ""
2362
+ msgstr "Nombre de archivo"
2198
2363
 
2199
2364
  msgid "Files"
2200
2365
  msgstr "Archivos"
@@ -2212,7 +2377,7 @@ msgid "Filter created"
2212
2377
  msgstr "Filtro creado"
2213
2378
 
2214
2379
  msgid "Filter deleted"
2215
- msgstr ""
2380
+ msgstr "Filtro borrado"
2216
2381
 
2217
2382
  msgid "Filter edited"
2218
2383
  msgstr ""
@@ -2344,6 +2509,15 @@ msgstr "Generar la aplicabilidad del host"
2344
2509
  msgid "Generate repository applicability"
2345
2510
  msgstr "Generar la aplicabilidad del repositorio"
2346
2511
 
2512
+ msgid "Generated"
2513
+ msgstr ""
2514
+
2515
+ msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2516
+ msgstr ""
2517
+
2518
+ msgid "Generated content views cannot be directly published. They can updated only via export."
2519
+ msgstr ""
2520
+
2347
2521
  msgid "Get all content available, not just that provided by subscriptions"
2348
2522
  msgstr "Obtener todo el contenido disponible, no solo el proporcionado por las suscripciones"
2349
2523
 
@@ -2380,6 +2554,9 @@ msgstr ""
2380
2554
  msgid "Given criteria doesn't match any hosts. Try changing your rule."
2381
2555
  msgstr ""
2382
2556
 
2557
+ msgid "Go to job details"
2558
+ msgstr ""
2559
+
2383
2560
  msgid "Go to task page"
2384
2561
  msgstr "Ir a la página de tareas"
2385
2562
 
@@ -2402,6 +2579,12 @@ msgid "Has to be > 0"
2402
2579
  msgstr "Tiene que ser > 0"
2403
2580
 
2404
2581
  msgid "Helper"
2582
+ msgstr "Agente"
2583
+
2584
+ msgid "Hide affected activation keys"
2585
+ msgstr ""
2586
+
2587
+ msgid "Hide affected hosts"
2405
2588
  msgstr ""
2406
2589
 
2407
2590
  msgid "Hide description"
@@ -2455,15 +2638,27 @@ msgstr "Estado de suscripción de host"
2455
2638
  msgid "Host Tasks Workers Pool Size"
2456
2639
  msgstr "Tamaño de grupo de trabajadores de host"
2457
2640
 
2641
+ msgid "Host collection"
2642
+ msgstr ""
2643
+
2458
2644
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2459
2645
  msgstr "La recopilación de hosts '%{name}' supera el límite máximo de uso de '%{limit}'"
2460
2646
 
2461
2647
  msgid "Host collection is empty."
2462
2648
  msgstr "La recopilación de hosts está vacía."
2463
2649
 
2650
+ msgid "Host collections"
2651
+ msgstr ""
2652
+
2653
+ msgid "Host collections updated"
2654
+ msgstr ""
2655
+
2464
2656
  msgid "Host content and subscription details"
2465
2657
  msgstr "Detalles del contenido y la suscripción del host"
2466
2658
 
2659
+ msgid "Host content view and environment updated"
2660
+ msgstr ""
2661
+
2467
2662
  msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2468
2663
  msgstr ""
2469
2664
 
@@ -2507,7 +2702,7 @@ msgid "Host with ID %s not found."
2507
2702
  msgstr "No se encontró un host con el ID %s."
2508
2703
 
2509
2704
  msgid "Hosts"
2510
- msgstr ""
2705
+ msgstr "Hosts"
2511
2706
 
2512
2707
  msgid "Hosts with Installable Errata"
2513
2708
  msgstr "Hosta con erratas instalables"
@@ -2515,8 +2710,8 @@ msgstr "Hosta con erratas instalables"
2515
2710
  msgid "Hosts: "
2516
2711
  msgstr ""
2517
2712
 
2518
- msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2519
- msgstr "¿Cuántos repositorios deben sincronizarse simultáneamente en la cápsula? Un número menor puede llevar a tiempos de sincronización más largos. Un número mayor aumentará la carga de flujo de datos."
2713
+ msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2714
+ msgstr ""
2520
2715
 
2521
2716
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2522
2717
  msgstr "Cómo ordenar los resultados clasificados (p. ej., ASC para orden ascendente)"
@@ -2578,12 +2773,18 @@ msgstr "ID del conjunto de repositorios para deshabilitar"
2578
2773
  msgid "ID of the repository set to enable"
2579
2774
  msgstr "ID del conjunto de repositorios para habilitar"
2580
2775
 
2776
+ msgid "ID of the repository within the set to disable"
2777
+ msgstr ""
2778
+
2581
2779
  msgid "ID of the sync plan"
2582
2780
  msgstr "ID del plan de sincronización"
2583
2781
 
2584
2782
  msgid "ID: %s doesn't exist "
2585
2783
  msgstr "ID: %s no existe "
2586
2784
 
2785
+ msgid "Id"
2786
+ msgstr ""
2787
+
2587
2788
  msgid "Id of a deb package to find repositories that contain the deb"
2588
2789
  msgstr "ID de un paquete de deb para encontrar repositorios que contengan el deb"
2589
2790
 
@@ -2656,16 +2857,22 @@ msgstr "Identificadores para el entorno de ciclo de vida"
2656
2857
  msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2657
2858
  msgstr ""
2658
2859
 
2860
+ msgid "Ids of smart proxies to associate"
2861
+ msgstr ""
2862
+
2659
2863
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2660
2864
  msgstr "Si la autobúsqueda está activada, demora en milisegundos antes de ejecutar las búsquedas mientras se escribe."
2661
2865
 
2662
- msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2663
- msgstr "Si los hosts no se registran debido a la duplicación de DMI UUID, agregue sus valores separados por comas aquí. Los registros subsiguientes generarán un único DMI UUID para los hosts afectados."
2866
+ msgid "If SSL should be verified for the upstream URL"
2867
+ msgstr ""
2868
+
2869
+ msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2870
+ msgstr ""
2664
2871
 
2665
2872
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2666
2873
  msgstr "Si se especifica, elimine la primera instancia de una suscripción con mismo ID y cantidad"
2667
2874
 
2668
- 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."
2875
+ 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."
2669
2876
  msgstr ""
2670
2877
 
2671
2878
  msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
@@ -2674,6 +2881,9 @@ msgstr ""
2674
2881
  msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2675
2882
  msgstr ""
2676
2883
 
2884
+ 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
+ msgstr ""
2886
+
2677
2887
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2678
2888
  msgstr "Si es verdadero, solo devuelve los conjuntos de repositorios que están asociados a una suscripción activa"
2679
2889
 
@@ -2689,6 +2899,9 @@ msgstr "Si es verdadero, cuando agregue las erratas o paquetes especificados, cu
2689
2899
  msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
2690
2900
  msgstr "Si es verdadero, publicará una nueva versión compuesta mediante content_view_version_id que ha sido promovido a un entorno de ciclo de vida"
2691
2901
 
2902
+ msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
2903
+ msgstr ""
2904
+
2692
2905
  msgid "Ignorable content can be only set for Yum repositories."
2693
2906
  msgstr "El contenido ignorable solo puede ser configurado para los depósitos de Yum."
2694
2907
 
@@ -2725,6 +2938,9 @@ msgstr "Importar el nuevo manifiesto"
2725
2938
  msgid "Import Puppet classes"
2726
2939
  msgstr "Importar clases Puppet"
2727
2940
 
2941
+ msgid "Import Repository"
2942
+ msgstr ""
2943
+
2728
2944
  msgid "Import Types"
2729
2945
  msgstr ""
2730
2946
 
@@ -2746,12 +2962,18 @@ msgstr "Importar una versión de vista de contenido"
2746
2962
  msgid "Import a content view version to the library"
2747
2963
  msgstr ""
2748
2964
 
2965
+ msgid "Import a repository"
2966
+ msgstr ""
2967
+
2749
2968
  msgid "Import facts"
2750
2969
  msgstr "Importar datos"
2751
2970
 
2752
2971
  msgid "Import only"
2753
2972
  msgstr ""
2754
2973
 
2974
+ msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
2975
+ msgstr ""
2976
+
2755
2977
  msgid "Import uploads into a repository"
2756
2978
  msgstr "Importar cargas a un repositorio"
2757
2979
 
@@ -2761,9 +2983,12 @@ msgstr ""
2761
2983
  msgid "Import-only content views can not be published directly"
2762
2984
  msgstr ""
2763
2985
 
2764
- msgid "Important"
2986
+ msgid "Import/Export"
2765
2987
  msgstr ""
2766
2988
 
2989
+ msgid "Important"
2990
+ msgstr "Importante"
2991
+
2767
2992
  msgid "Importing manifest into '%{subject}' failed."
2768
2993
  msgstr "Ocurrió un error al importar el manifiesto '%{subject}'."
2769
2994
 
@@ -2780,6 +3005,9 @@ msgid "Include all Module Streams with no errata."
2780
3005
  msgstr ""
2781
3006
 
2782
3007
  msgid "Include all RPMs with no errata."
3008
+ msgstr "Incluir todos los RPM sin erratas."
3009
+
3010
+ msgid "Include content views generated by imports/exports. Defaults to false"
2783
3011
  msgstr ""
2784
3012
 
2785
3013
  msgid "Include filter"
@@ -2813,7 +3041,7 @@ msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2813
3041
  msgstr "Actualización incremental de %{content_view_count} Versiones de vista de contenido"
2814
3042
 
2815
3043
  msgid "Incremental update"
2816
- msgstr ""
3044
+ msgstr "Actualización incremental"
2817
3045
 
2818
3046
  msgid "Incremental update requires at least one content unit"
2819
3047
  msgstr "La actualización incremental requiere al menos una unidad de contenido"
@@ -2842,6 +3070,9 @@ msgstr "Heredar del repositorio"
2842
3070
  msgid "Initiate a sync of the products attached to the sync plan"
2843
3071
  msgstr "Iniciar una sincronización de los productos adjuntos al plan de sincronización"
2844
3072
 
3073
+ msgid "Install"
3074
+ msgstr ""
3075
+
2845
3076
  msgid "Install Applicable Errata"
2846
3077
  msgstr "Instalación de erratas aplicables"
2847
3078
 
@@ -2851,6 +3082,9 @@ msgstr "Instalar erratas aplicables en %s"
2851
3082
  msgid "Install content on one or more hosts using katello-agent. %s"
2852
3083
  msgstr ""
2853
3084
 
3085
+ msgid "Install errata using scoped search query"
3086
+ msgstr ""
3087
+
2854
3088
  msgid "Install errata via Katello interface"
2855
3089
  msgstr "Instalar erratas a través de la interfaz de Katello"
2856
3090
 
@@ -2875,19 +3109,31 @@ msgstr "Instalar grupo de paquetes a través de la interfaz de Katello"
2875
3109
  msgid "Install package via Katello interface"
2876
3110
  msgstr "Instalar paquete a través de la interfaz de Katello"
2877
3111
 
3112
+ msgid "Install packages"
3113
+ msgstr ""
3114
+
2878
3115
  msgid "Install packages remotely using katello-agent. %s"
2879
3116
  msgstr ""
2880
3117
 
2881
- msgid "Installable"
3118
+ msgid "Install packages via Katello interface"
3119
+ msgstr ""
3120
+
3121
+ msgid "Install via customized remote execution"
3122
+ msgstr ""
3123
+
3124
+ msgid "Install via katello-agent"
2882
3125
  msgstr ""
2883
3126
 
2884
- msgid "Installable Errata"
3127
+ msgid "Install via remote execution"
2885
3128
  msgstr ""
2886
3129
 
2887
- msgid "Installable errata from Content View"
2888
- msgstr "Erratas instalables desde la vista de contenido"
3130
+ msgid "Installable"
3131
+ msgstr "Instalable"
3132
+
3133
+ msgid "Installable errata"
3134
+ msgstr ""
2889
3135
 
2890
- msgid "Installable errata will appear here when available."
3136
+ msgid "Installable errata from content view"
2891
3137
  msgstr ""
2892
3138
 
2893
3139
  msgid "Installation of errata requested: %{errata}"
@@ -2899,10 +3145,22 @@ msgstr "Instalación de grupos de paquetes solicitados: %{groups}"
2899
3145
  msgid "Installation of package(s) requested: %{packages}"
2900
3146
  msgstr "Instalación de paquetes solicitados: %{packages}"
2901
3147
 
3148
+ msgid "Installation status"
3149
+ msgstr ""
3150
+
2902
3151
  msgid "Installed Packages"
2903
3152
  msgstr "Paquetes instalados"
2904
3153
 
2905
- msgid "Installed Version"
3154
+ msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
3155
+ msgstr ""
3156
+
3157
+ msgid "Installed products"
3158
+ msgstr ""
3159
+
3160
+ msgid "Installed profile"
3161
+ msgstr ""
3162
+
3163
+ msgid "Installed version"
2906
3164
  msgstr ""
2907
3165
 
2908
3166
  msgid "Installing Erratum..."
@@ -2983,6 +3241,9 @@ msgstr "Parámetros proporcionados no válidos: content_type debe ser %s"
2983
3241
  msgid "Invalid params provided - date_type must be one of %s"
2984
3242
  msgstr "Los parámetros proporcionados no son válidos: date_type debe ser %s."
2985
3243
 
3244
+ msgid "Invalid repository in the metadata %{repo} error=%{error}"
3245
+ msgstr ""
3246
+
2986
3247
  msgid "Invalid value specified for Container Image repositories."
2987
3248
  msgstr "Valor no válido especificado para los depósitos de imágenes de contenedores."
2988
3249
 
@@ -2993,6 +3254,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
2993
3254
  msgstr "Valor especificado no válido para contenido ignorable. Valores permitidos %s"
2994
3255
 
2995
3256
  msgid "Issued"
3257
+ msgstr "Emitido"
3258
+
3259
+ msgid "Issued from"
3260
+ msgstr ""
3261
+
3262
+ msgid "Job ${description} has started."
2996
3263
  msgstr ""
2997
3264
 
2998
3265
  msgid "Katello ID of local pool to update"
@@ -3007,6 +3274,12 @@ msgstr "Katello: instalar paquete"
3007
3274
  msgid "Katello: Install Package Group"
3008
3275
  msgstr "Katello: instalar grupo de paquete"
3009
3276
 
3277
+ msgid "Katello: Install errata by search query"
3278
+ msgstr ""
3279
+
3280
+ msgid "Katello: Install packages by search query"
3281
+ msgstr ""
3282
+
3010
3283
  msgid "Katello: Module Stream Actions"
3011
3284
  msgstr "Katello: acciones de la corriente del módulo"
3012
3285
 
@@ -3016,6 +3289,9 @@ msgstr "Katello: eliminar paquete"
3016
3289
  msgid "Katello: Remove Package Group"
3017
3290
  msgstr "Katello: eliminar grupo de paquetes"
3018
3291
 
3292
+ msgid "Katello: Remove Packages by search query"
3293
+ msgstr ""
3294
+
3019
3295
  msgid "Katello: Resolve Traces"
3020
3296
  msgstr ""
3021
3297
 
@@ -3028,6 +3304,9 @@ msgstr "Katello: actualizar paquete"
3028
3304
  msgid "Katello: Update Package Group"
3029
3305
  msgstr "Katello: actualizar grupo de paquetes"
3030
3306
 
3307
+ msgid "Katello: Update Packages by search query"
3308
+ msgstr ""
3309
+
3031
3310
  msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
3032
3311
  msgstr "El hash de valores clave de los eventos del administrador de suscripciones, la anidación utiliza un delimitador de período (.)"
3033
3312
 
@@ -3049,6 +3328,9 @@ msgstr "Etiqueta"
3049
3328
  msgid "Label of the content"
3050
3329
  msgstr "Etiqueta del contenido"
3051
3330
 
3331
+ msgid "Label of the content view"
3332
+ msgstr ""
3333
+
3052
3334
  msgid "Last published"
3053
3335
  msgstr "Última publicación"
3054
3336
 
@@ -3067,13 +3349,10 @@ msgstr ""
3067
3349
  msgid "Learn more about adding Subscription Manifests"
3068
3350
  msgstr "Aprenda más sobre cómo añadir manifiestos de suscripción"
3069
3351
 
3070
- msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3071
- msgstr ""
3072
-
3073
- msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3352
+ msgid "Less than"
3074
3353
  msgstr ""
3075
3354
 
3076
- msgid "Less than"
3355
+ msgid "Library"
3077
3356
  msgstr ""
3078
3357
 
3079
3358
  msgid "Library lifecycle environments may not be deleted."
@@ -3118,9 +3397,15 @@ msgstr ""
3118
3397
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3119
3398
  msgstr "El entorno del ciclo de vida no estaba adjunto al proxy inteligente; por lo tanto, no se realizaron cambios."
3120
3399
 
3400
+ msgid "Lifecycle environment: {lce}"
3401
+ msgstr ""
3402
+
3121
3403
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3122
3404
  msgstr "Los entornos del ciclo de vida no se pueden modificar en el proxy inteligente predeterminado. El contenido de todos los entornos del ciclo de vida existirá en este proxy inteligente."
3123
3405
 
3406
+ msgid "Limit content to enabled / disabled / overridden"
3407
+ msgstr ""
3408
+
3124
3409
  msgid "Limit content to just that available in the activation key's content view version"
3125
3410
  msgstr "Limitar el contenido a solo lo disponible en la versión de visualización de contenido de la llave de activación"
3126
3411
 
@@ -3131,7 +3416,7 @@ msgid "Limit content to just that available in the host's or activation key's co
3131
3416
  msgstr ""
3132
3417
 
3133
3418
  msgid "Limit to environment"
3134
- msgstr ""
3419
+ msgstr "Limitar al entorno"
3135
3420
 
3136
3421
  msgid "Limits"
3137
3422
  msgstr "Límites"
@@ -3229,6 +3514,9 @@ msgstr ""
3229
3514
  msgid "List of Products for sync plan"
3230
3515
  msgstr "Lista de productos para el plan de sincronización"
3231
3516
 
3517
+ msgid "List of alternate_content_sources"
3518
+ msgstr ""
3519
+
3232
3520
  msgid "List of component content view version ids for composite views"
3233
3521
  msgstr "Lista de ID de versión de la vista de contenido del componente para las vistas compuestas"
3234
3522
 
@@ -3325,6 +3613,12 @@ msgstr "Lista de productos de suscripción en una suscripción"
3325
3613
  msgid "List of subscription products in an activation key"
3326
3614
  msgstr "Lista de productos de suscripción en una llave de activación"
3327
3615
 
3616
+ msgid "List of versions to exclude and not run an action on"
3617
+ msgstr ""
3618
+
3619
+ msgid "List of versions to perform an action on"
3620
+ msgstr ""
3621
+
3328
3622
  msgid "List organization subscriptions"
3329
3623
  msgstr "Mostrar suscripciones de la organización"
3330
3624
 
@@ -3370,6 +3664,12 @@ msgstr "Cargando"
3370
3664
  msgid "Loading versions"
3371
3665
  msgstr ""
3372
3666
 
3667
+ msgid "Loading..."
3668
+ msgstr ""
3669
+
3670
+ msgid "Low"
3671
+ msgstr ""
3672
+
3373
3673
  msgid "Make copy of a content view"
3374
3674
  msgstr "Hacer una copia de una vista de contenido"
3375
3675
 
@@ -3427,6 +3727,9 @@ msgstr "Max %(maxQuantity)s"
3427
3727
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3428
3728
  msgstr "Se alcanzó el máximo de hosts (%{limit}) para la llave de activación '%{name}'"
3429
3729
 
3730
+ msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3731
+ msgstr ""
3732
+
3430
3733
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3431
3734
  msgstr "Se ha superado el número máximo de hosts de contenido para las recopilaciones de hosts: %s"
3432
3735
 
@@ -3473,7 +3776,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
3473
3776
  msgstr "Argumentos faltantes %{substitutions} para %{content_url}"
3474
3777
 
3475
3778
  msgid "Moderate"
3476
- msgstr ""
3779
+ msgstr "Moderado"
3477
3780
 
3478
3781
  msgid "Modular"
3479
3782
  msgstr ""
@@ -3493,6 +3796,9 @@ msgstr ""
3493
3796
  msgid "Module streams"
3494
3797
  msgstr ""
3495
3798
 
3799
+ msgid "Module streams will appear here when available."
3800
+ msgstr ""
3801
+
3496
3802
  msgid "Multi-entitlement"
3497
3803
  msgstr "Multiderecho"
3498
3804
 
@@ -3518,15 +3824,24 @@ msgid ""
3518
3824
  " %{repos}"
3519
3825
  msgstr ""
3520
3826
 
3827
+ msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
3828
+ msgstr ""
3829
+
3521
3830
  msgid "Name"
3522
3831
  msgstr "Nombre"
3523
3832
 
3833
+ msgid "Name is a required parameter."
3834
+ msgstr ""
3835
+
3524
3836
  msgid "Name of new activation key"
3525
3837
  msgstr "Nombre de la nueva llave de activación"
3526
3838
 
3527
3839
  msgid "Name of the Content Credential"
3528
3840
  msgstr ""
3529
3841
 
3842
+ msgid "Name of the alternate content source"
3843
+ msgstr ""
3844
+
3530
3845
  msgid "Name of the content view"
3531
3846
  msgstr "Nombre de la vista de contenido"
3532
3847
 
@@ -3548,6 +3863,9 @@ msgstr "Solo se debe establecer para los repositorios de archivos o las etiqueta
3548
3863
  msgid "Nest"
3549
3864
  msgstr "Anidar"
3550
3865
 
3866
+ msgid "Network Sync"
3867
+ msgstr ""
3868
+
3551
3869
  msgid "Never Synced"
3552
3870
  msgstr "Nunca sincronizado"
3553
3871
 
@@ -3614,12 +3932,21 @@ msgstr "No se encontró ningún URL para un registro de contenedores. Compruebe
3614
3932
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3615
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}"
3616
3934
 
3935
+ msgid "No action is needed because there are no applicable errata for this host."
3936
+ msgstr ""
3937
+
3938
+ msgid "No action required"
3939
+ msgstr ""
3940
+
3617
3941
  msgid "No applicable errata"
3618
3942
  msgstr ""
3619
3943
 
3620
3944
  msgid "No applicable errata for %s, skipping"
3621
3945
  msgstr "No hay erratas aplicables para %s, salteando"
3622
3946
 
3947
+ msgid "No applications to restart"
3948
+ msgstr ""
3949
+
3623
3950
  msgid "No artifacts to show"
3624
3951
  msgstr "No hay artefactos para mostrar"
3625
3952
 
@@ -3641,6 +3968,9 @@ msgstr "No se han encontrado eventos de historial de la vista de contenido."
3641
3968
  msgid "No content views available"
3642
3969
  msgstr ""
3643
3970
 
3971
+ msgid "No content views available for the selected environment"
3972
+ msgstr ""
3973
+
3644
3974
  msgid "No content views belong to ${label}"
3645
3975
  msgstr ""
3646
3976
 
@@ -3650,6 +3980,9 @@ msgstr "No se han provisto content_view_version_ids"
3650
3980
  msgid "No description"
3651
3981
  msgstr ""
3652
3982
 
3983
+ msgid "No description provided"
3984
+ msgstr ""
3985
+
3653
3986
  msgid "No enabled repositories match your search criteria."
3654
3987
  msgstr "No hay repositorios habilitados que coincidan con sus criterios de búsqueda."
3655
3988
 
@@ -3674,6 +4007,9 @@ msgstr ""
3674
4007
  msgid "No file uploaded"
3675
4008
  msgstr "No se ha cargado ningún archivo"
3676
4009
 
4010
+ msgid "No host collections"
4011
+ msgstr ""
4012
+
3677
4013
  msgid "No host collections found."
3678
4014
  msgstr "No se han encontrado recopilaciones de hosts."
3679
4015
 
@@ -3683,6 +4019,9 @@ msgstr "No se han especificado hosts."
3683
4019
  msgid "No hosts registered with subscription-manager found in selection."
3684
4020
  msgstr "No se encontraron hosts registrados con el gestor de suscripciones en la selección."
3685
4021
 
4022
+ msgid "No hosts with content source found!"
4023
+ msgstr ""
4024
+
3686
4025
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3687
4026
  msgstr ""
3688
4027
 
@@ -3707,6 +4046,9 @@ msgstr ""
3707
4046
  msgid "No matching activation keys found."
3708
4047
  msgstr ""
3709
4048
 
4049
+ msgid "No matching alternate content sources found"
4050
+ msgstr ""
4051
+
3710
4052
  msgid "No matching content views found"
3711
4053
  msgstr "No se encontraron vistas de contenido coincidentes"
3712
4054
 
@@ -3722,6 +4064,9 @@ msgstr ""
3722
4064
  msgid "No matching history record found"
3723
4065
  msgstr ""
3724
4066
 
4067
+ msgid "No matching host collections found"
4068
+ msgstr ""
4069
+
3725
4070
  msgid "No matching hosts found."
3726
4071
  msgstr ""
3727
4072
 
@@ -3752,6 +4097,12 @@ msgstr "No hay paquetes."
3752
4097
  msgid "No packages"
3753
4098
  msgstr ""
3754
4099
 
4100
+ msgid "No packages available to install"
4101
+ msgstr ""
4102
+
4103
+ msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4104
+ msgstr ""
4105
+
3755
4106
  msgid "No packages removed"
3756
4107
  msgstr "No se han retirado paquetes"
3757
4108
 
@@ -3773,9 +4124,6 @@ msgstr "No es necesario reiniciar ningún proceso"
3773
4124
  msgid "No products are enabled."
3774
4125
  msgstr "No hay productos habilitados."
3775
4126
 
3776
- msgid "No profiles to show"
3777
- msgstr "No hay perfiles para mostrar"
3778
-
3779
4127
  msgid "No pulp workers running."
3780
4128
  msgstr "No hay trabajadores Pulp en ejecución."
3781
4129
 
@@ -3842,9 +4190,6 @@ msgstr "Ninguno"
3842
4190
  msgid "None provided"
3843
4191
  msgstr "No se ha proporcionado ninguna"
3844
4192
 
3845
- msgid "Not Specified"
3846
- msgstr "No especificado"
3847
-
3848
4193
  msgid "Not a number"
3849
4194
  msgstr "No es un número"
3850
4195
 
@@ -3857,11 +4202,14 @@ msgstr "No todos los trabajadores de pulp trabajan en %s."
3857
4202
  msgid "Not running"
3858
4203
  msgstr "No se está ejecutando"
3859
4204
 
4205
+ msgid "Not specified"
4206
+ msgstr ""
4207
+
3860
4208
  msgid "Not yet published"
3861
4209
  msgstr "Aún no se ha publicado"
3862
4210
 
3863
4211
  msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
3864
- msgstr ""
4212
+ msgstr "Nota: se desaconseja FERVIENTEMENTE eliminar un manifiesto de suscripción. Hacerlo provocará:"
3865
4213
 
3866
4214
  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."
3867
4215
  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."
@@ -3956,9 +4304,6 @@ msgstr "Se requiere el ID de organización"
3956
4304
  msgid "Organization Information not provided."
3957
4305
  msgstr ""
3958
4306
 
3959
- msgid "Organization Label"
3960
- msgstr ""
3961
-
3962
4307
  msgid "Organization cannot be blank."
3963
4308
  msgstr "La organización no puede estar en blanco."
3964
4309
 
@@ -3987,7 +4332,7 @@ msgid "Other Content Types"
3987
4332
  msgstr ""
3988
4333
 
3989
4334
  msgid "Overridden"
3990
- msgstr ""
4335
+ msgstr "Reemplazado"
3991
4336
 
3992
4337
  msgid "Override content for activation_key"
3993
4338
  msgstr "Sobrescribir contenido para activation_key"
@@ -4163,9 +4508,6 @@ msgstr ""
4163
4508
  msgid "Packages"
4164
4509
  msgstr "Paquetes"
4165
4510
 
4166
- msgid "Packages management functionality on this page is incomplete"
4167
- msgstr ""
4168
-
4169
4511
  msgid "Packages must be provided"
4170
4512
  msgstr "Se deben proporcionar los paquetes"
4171
4513
 
@@ -4185,9 +4527,9 @@ msgid "Partition template IDs"
4185
4527
  msgstr "ID de la plantilla de partición"
4186
4528
 
4187
4529
  msgid "Password"
4188
- msgstr ""
4530
+ msgstr "Contraseña"
4189
4531
 
4190
- msgid "Password for authentication"
4532
+ msgid "Password for authentication. Relevant only for 'upstream_server' type."
4191
4533
  msgstr ""
4192
4534
 
4193
4535
  msgid "Password of the upstream authentication token."
@@ -4200,7 +4542,7 @@ msgid "Password to access URL"
4200
4542
  msgstr "Contraseña para acceder al URL"
4201
4543
 
4202
4544
  msgid "Path"
4203
- msgstr ""
4545
+ msgstr "Trayecto"
4204
4546
 
4205
4547
  msgid "Path for ssl cert used for pulp server auth"
4206
4548
  msgstr "La ruta para el certificado ssl que se usa para la autenticación del server de pulp"
@@ -4208,6 +4550,9 @@ msgstr "La ruta para el certificado ssl que se usa para la autenticación del se
4208
4550
  msgid "Path for ssl key used for pulp server auth"
4209
4551
  msgstr "Ruta para la llave ssl que se usa para la autenticación del server de pulp"
4210
4552
 
4553
+ msgid "Path suffixes for finding alternate content"
4554
+ msgstr ""
4555
+
4211
4556
  msgid "Paused"
4212
4557
  msgstr "Pausado"
4213
4558
 
@@ -4226,6 +4571,12 @@ msgstr ""
4226
4571
  msgid "Performs a full-export of the repositories in library."
4227
4572
  msgstr ""
4228
4573
 
4574
+ msgid "Performs a full-export of the repository in library."
4575
+ msgstr ""
4576
+
4577
+ msgid "Performs a incremental-export of the repository in library."
4578
+ msgstr ""
4579
+
4229
4580
  msgid "Performs an incremental-export of a content view version."
4230
4581
  msgstr ""
4231
4582
 
@@ -4259,6 +4610,12 @@ msgstr "Limite el número a 10 dígitos"
4259
4610
  msgid "Please select a content source before assigning a kickstart repository"
4260
4611
  msgstr "Seleccione una fuente de contenido antes de asignar un repositorio de kickstart"
4261
4612
 
4613
+ msgid "Please select a lifecycle environment and a content view to move these activation keys."
4614
+ msgstr ""
4615
+
4616
+ msgid "Please select a lifecycle environment and a content view to move this activation key."
4617
+ msgstr ""
4618
+
4262
4619
  msgid "Please select an architecture before assigning a kickstart repository"
4263
4620
  msgstr "Seleccione una arquitectura antes de asignar un repositorio de kickstart"
4264
4621
 
@@ -4280,9 +4637,39 @@ msgstr ""
4280
4637
  msgid "Policy to set for mirroring content. Must be one of %s."
4281
4638
  msgstr ""
4282
4639
 
4640
+ msgid "Prefer registered through proxy for remote execution"
4641
+ msgstr ""
4642
+
4643
+ msgid "Prefer using a proxy to which a host is registered when using remote execution"
4644
+ msgstr ""
4645
+
4646
+ msgid "Prevent from further updates"
4647
+ msgstr ""
4648
+
4283
4649
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
4284
4650
  msgstr ""
4285
4651
 
4652
+ msgid "Problem searching"
4653
+ msgstr ""
4654
+
4655
+ msgid "Problem searching errata"
4656
+ msgstr ""
4657
+
4658
+ msgid "Problem searching host collections"
4659
+ msgstr ""
4660
+
4661
+ msgid "Problem searching module streams"
4662
+ msgstr ""
4663
+
4664
+ msgid "Problem searching packages"
4665
+ msgstr ""
4666
+
4667
+ msgid "Problem searching repository sets"
4668
+ msgstr ""
4669
+
4670
+ msgid "Problem searching traces"
4671
+ msgstr ""
4672
+
4286
4673
  msgid "Processing metadata"
4287
4674
  msgstr "Procesando metadatos"
4288
4675
 
@@ -4302,7 +4689,7 @@ msgid "Product ID"
4302
4689
  msgstr "ID de producto"
4303
4690
 
4304
4691
  msgid "Product Name"
4305
- msgstr ""
4692
+ msgstr "Nombre de producto"
4306
4693
 
4307
4694
  msgid "Product and Repositories"
4308
4695
  msgstr "Producto y repositorios"
@@ -4341,9 +4728,6 @@ msgstr ""
4341
4728
  msgid "Products"
4342
4729
  msgstr "Productos"
4343
4730
 
4344
- msgid "Profiles"
4345
- msgstr "Perfiles"
4346
-
4347
4731
  msgid "Promote"
4348
4732
  msgstr "Promover"
4349
4733
 
@@ -4371,6 +4755,9 @@ msgstr "Resumen de la promoción para %{content_view}"
4371
4755
  msgid "Promotion to Environment"
4372
4756
  msgstr "Promoción al entorno"
4373
4757
 
4758
+ msgid "Provide the required information and click {update} below to save changes."
4759
+ msgstr ""
4760
+
4374
4761
  msgid "Provided Products"
4375
4762
  msgstr "Productos proporcionados"
4376
4763
 
@@ -4384,7 +4771,7 @@ msgid "Proxies"
4384
4771
  msgstr "Proxis"
4385
4772
 
4386
4773
  msgid "Public"
4387
- msgstr ""
4774
+ msgstr "Público"
4388
4775
 
4389
4776
  msgid "Public key block in DER encoding or certificate content"
4390
4777
  msgstr ""
@@ -4533,18 +4920,27 @@ msgstr ""
4533
4920
  msgid "RPM name"
4534
4921
  msgstr ""
4535
4922
 
4923
+ msgid "RPM packages"
4924
+ msgstr ""
4925
+
4536
4926
  msgid "RPMs"
4537
4927
  msgstr "RPMs"
4538
4928
 
4539
4929
  msgid "Range"
4540
- msgstr ""
4930
+ msgstr "Rango"
4541
4931
 
4542
4932
  msgid "Realm IDs"
4543
4933
  msgstr "ID de reino"
4544
4934
 
4935
+ msgid "Reassign affected activation key"
4936
+ msgstr ""
4937
+
4545
4938
  msgid "Reassign affected activation keys"
4546
4939
  msgstr ""
4547
4940
 
4941
+ msgid "Reassign affected host"
4942
+ msgstr ""
4943
+
4548
4944
  msgid "Reassign affected hosts"
4549
4945
  msgstr ""
4550
4946
 
@@ -4572,6 +4968,9 @@ msgstr ""
4572
4968
  msgid "Recommended Repositories"
4573
4969
  msgstr "Repositorios recomendados"
4574
4970
 
4971
+ msgid "Red Hat CDN"
4972
+ msgstr ""
4973
+
4575
4974
  msgid "Red Hat CDN URL"
4576
4975
  msgstr "Red Hat CDN URL"
4577
4976
 
@@ -4579,6 +4978,15 @@ msgid "Red Hat Repositories"
4579
4978
  msgstr "Repositorios de Red Hat"
4580
4979
 
4581
4980
  msgid "Red Hat Repositories page"
4981
+ msgstr "Página de repositorios Red Hat"
4982
+
4983
+ msgid "Red Hat content will be consumed from an {type}."
4984
+ msgstr ""
4985
+
4986
+ msgid "Red Hat content will be consumed from the {type}."
4987
+ msgstr ""
4988
+
4989
+ msgid "Red Hat content will be enabled and consumed via the {type} process."
4582
4990
  msgstr ""
4583
4991
 
4584
4992
  msgid "Red Hat products cannot be manipulated."
@@ -4611,6 +5019,18 @@ msgstr "Registrar un host con suscripción e información"
4611
5019
  msgid "Register host '%s' before attaching subscriptions"
4612
5020
  msgstr "Registrar el host '%s' antes de adjuntar las suscripciones"
4613
5021
 
5022
+ msgid "Registered by"
5023
+ msgstr ""
5024
+
5025
+ msgid "Registered on"
5026
+ msgstr ""
5027
+
5028
+ msgid "Registered through"
5029
+ msgstr ""
5030
+
5031
+ msgid "Registration details"
5032
+ msgstr ""
5033
+
4614
5034
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
4615
5035
  msgstr "El patrón de nombres de registro da como resultado nombres duplicados de imágenes de contenedores para estos depósitos: %s."
4616
5036
 
@@ -4639,7 +5059,7 @@ msgid "Related content views will appear here when created."
4639
5059
  msgstr ""
4640
5060
 
4641
5061
  msgid "Release"
4642
- msgstr ""
5062
+ msgstr "Lanzamiento"
4643
5063
 
4644
5064
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
4645
5065
  msgstr "Versión de lanzamiento que usará este host (7Server, 7.1, etc)"
@@ -4701,12 +5121,21 @@ msgstr ""
4701
5121
  msgid "Remove from environments"
4702
5122
  msgstr ""
4703
5123
 
5124
+ msgid "Remove host from collections"
5125
+ msgstr ""
5126
+
5127
+ msgid "Remove host from host collections"
5128
+ msgstr ""
5129
+
4704
5130
  msgid "Remove hosts from the host collection"
4705
5131
  msgstr "Eliminar hosts de la colección de hosts"
4706
5132
 
4707
5133
  msgid "Remove lifecycle environments from the smart proxy"
4708
5134
  msgstr "Eliminar los entornos del ciclo de vida del proxy inteligente"
4709
5135
 
5136
+ msgid "Remove module stream"
5137
+ msgstr ""
5138
+
4710
5139
  msgid "Remove one or more host collections from one or more hosts"
4711
5140
  msgstr "Eliminar una o más colecciones de uno o más hosts de uno o más hosts"
4712
5141
 
@@ -4728,6 +5157,9 @@ msgstr "Eliminar el grupo de paquetes a través de la interfaz de Katello"
4728
5157
  msgid "Remove package via Katello interface"
4729
5158
  msgstr "Eliminar el paquete a través de la interfaz Katello"
4730
5159
 
5160
+ msgid "Remove packages via Katello interface"
5161
+ msgstr ""
5162
+
4731
5163
  msgid "Remove products from sync plan"
4732
5164
  msgstr "Eliminar productos del plan de sincronización"
4733
5165
 
@@ -4767,6 +5199,9 @@ msgstr "Tipo de repo"
4767
5199
  msgid "Repositories"
4768
5200
  msgstr "Repositorios"
4769
5201
 
5202
+ msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
5203
+ msgstr ""
5204
+
4770
5205
  msgid "Repositories from published Content Views are not allowed."
4771
5206
  msgstr "No se permiten los de vistas de contenido publicadas "
4772
5207
 
@@ -4842,9 +5277,6 @@ msgstr ""
4842
5277
  msgid "Repository sets will appear here when available."
4843
5278
  msgstr ""
4844
5279
 
4845
- msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4846
- msgstr ""
4847
-
4848
5280
  msgid "Republish Repositories of %{name} %{version}"
4849
5281
  msgstr "Volver a publicar repositorios de %{name} %{version}"
4850
5282
 
@@ -4852,7 +5284,7 @@ msgid "Republish Version Repositories"
4852
5284
  msgstr "Volver a publicar repositorios de la versión"
4853
5285
 
4854
5286
  msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
4855
- msgstr ""
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."
4856
5288
 
4857
5289
  msgid "Requirements is not valid yaml."
4858
5290
  msgstr ""
@@ -4866,10 +5298,19 @@ msgstr ""
4866
5298
  msgid "Requires Virt-Who"
4867
5299
  msgstr "Requiere Virt-Who"
4868
5300
 
5301
+ msgid "Reset"
5302
+ msgstr ""
5303
+
4869
5304
  msgid "Reset filters"
4870
5305
  msgstr ""
4871
5306
 
5307
+ msgid "Reset module stream"
5308
+ msgstr ""
5309
+
4872
5310
  msgid "Reset to default"
5311
+ msgstr "Restablecer valores predeterminados"
5312
+
5313
+ msgid "Reset to the default state"
4873
5314
  msgstr ""
4874
5315
 
4875
5316
  msgid "Resolve traces"
@@ -4896,8 +5337,8 @@ msgstr ""
4896
5337
  msgid "Restart via remote execution"
4897
5338
  msgstr ""
4898
5339
 
4899
- msgid "Restrict Composite Content View promotion"
4900
- msgstr "Restringir la promoción de la vista de contenido compuesta"
5340
+ msgid "Restrict composite content view promotion"
5341
+ msgstr ""
4901
5342
 
4902
5343
  msgid "Result"
4903
5344
  msgstr "Resultado:"
@@ -4986,7 +5427,10 @@ msgstr ""
4986
5427
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4987
5428
  msgstr ""
4988
5429
 
4989
- msgid "Review Details"
5430
+ msgid "Review affected environment"
5431
+ msgstr ""
5432
+
5433
+ msgid "Review affected environments"
4990
5434
  msgstr ""
4991
5435
 
4992
5436
  msgid "Review details"
@@ -5004,15 +5448,15 @@ msgstr ""
5004
5448
  msgid "Roles"
5005
5449
  msgstr "Roles"
5006
5450
 
5007
- msgid "Rpm packages"
5008
- msgstr ""
5009
-
5010
5451
  msgid "Rules to be added"
5011
5452
  msgstr ""
5012
5453
 
5013
5454
  msgid "Run Sync Plan:"
5014
5455
  msgstr "Ejecutar el plan de sincronización:"
5015
5456
 
5457
+ msgid "Run job invocation"
5458
+ msgstr ""
5459
+
5016
5460
  msgid "Running"
5017
5461
  msgstr "Ejecutando"
5018
5462
 
@@ -5038,15 +5482,21 @@ msgid "Schedule errata for installation using katello-agent. %s"
5038
5482
  msgstr ""
5039
5483
 
5040
5484
  msgid "Schema Version 1"
5041
- msgstr ""
5485
+ msgstr "Versión de esquema 1"
5042
5486
 
5043
5487
  msgid "Schema Version 2"
5044
- msgstr ""
5488
+ msgstr "Versión de esquema 2"
5045
5489
 
5046
5490
  msgid "Search"
5047
5491
  msgstr "Buscar"
5048
5492
 
5049
5493
  msgid "Search Query"
5494
+ msgstr "Consulta de búsqueda"
5495
+
5496
+ msgid "Search available packages"
5497
+ msgstr ""
5498
+
5499
+ msgid "Search host collections"
5050
5500
  msgstr ""
5051
5501
 
5052
5502
  msgid "Search pattern (defaults to '*')"
@@ -5064,6 +5514,9 @@ msgstr "Buscar host en la cadena para ejecutar acciones"
5064
5514
  msgid "Search string for hosts to perform an action on"
5065
5515
  msgstr "Buscar hosts en la cadena para ejecutar tareas"
5066
5516
 
5517
+ msgid "Search string for versions to perform an action on"
5518
+ msgstr ""
5519
+
5067
5520
  msgid "Security"
5068
5521
  msgstr "Seguridad"
5069
5522
 
@@ -5076,6 +5529,9 @@ msgstr "Erratas de seguridad instalables"
5076
5529
  msgid "Select"
5077
5530
  msgstr "Seleccionar"
5078
5531
 
5532
+ msgid "Select ..."
5533
+ msgstr ""
5534
+
5079
5535
  msgid "Select All"
5080
5536
  msgstr "Seleccionar todo"
5081
5537
 
@@ -5094,6 +5550,12 @@ msgstr "Seleccionar valor"
5094
5550
  msgid "Select a content view"
5095
5551
  msgstr ""
5096
5552
 
5553
+ msgid "Select a lifecycle environment and a content view to move these hosts."
5554
+ msgstr ""
5555
+
5556
+ msgid "Select a lifecycle environment and a content view to move this host."
5557
+ msgstr ""
5558
+
5097
5559
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
5098
5560
  msgstr ""
5099
5561
 
@@ -5101,7 +5563,7 @@ msgid "Select a provider to install katello-host-tools-tracer"
5101
5563
  msgstr ""
5102
5564
 
5103
5565
  msgid "Select all"
5104
- msgstr ""
5566
+ msgstr "Seleccionar todo"
5105
5567
 
5106
5568
  msgid "Select all rows"
5107
5569
  msgstr "Seleccionar todas las filas"
@@ -5109,6 +5571,12 @@ msgstr "Seleccionar todas las filas"
5109
5571
  msgid "Select an Organization"
5110
5572
  msgstr "Seleccionar una organización"
5111
5573
 
5574
+ msgid "Select an environment"
5575
+ msgstr ""
5576
+
5577
+ msgid "Select an environment above"
5578
+ msgstr ""
5579
+
5112
5580
  msgid "Select an organization"
5113
5581
  msgstr "Seleccionar una organización"
5114
5582
 
@@ -5121,6 +5589,15 @@ msgstr ""
5121
5589
  msgid "Select content view"
5122
5590
  msgstr ""
5123
5591
 
5592
+ msgid "Select environment"
5593
+ msgstr ""
5594
+
5595
+ msgid "Select host collection(s) to associate with host {hostName}."
5596
+ msgstr ""
5597
+
5598
+ msgid "Select host collection(s) to remove from host {hostName}."
5599
+ msgstr ""
5600
+
5124
5601
  msgid "Select hosts to assign to %s"
5125
5602
  msgstr "Seleccionar hosts para asignar a %s"
5126
5603
 
@@ -5133,6 +5610,9 @@ msgstr ""
5133
5610
  msgid "Select one"
5134
5611
  msgstr ""
5135
5612
 
5613
+ msgid "Select packages to install to the host {hostName}."
5614
+ msgstr ""
5615
+
5136
5616
  msgid "Select page"
5137
5617
  msgstr ""
5138
5618
 
@@ -5151,15 +5631,15 @@ msgstr ""
5151
5631
  msgid "Sending a list of included IDs is not allowed when all items are being selected."
5152
5632
  msgstr ""
5153
5633
 
5154
- msgid "Service Level"
5155
- msgstr "Nivel de servicio"
5156
-
5157
5634
  msgid "Service Level %s"
5158
5635
  msgstr "Nivel de servicio %s"
5159
5636
 
5160
5637
  msgid "Service Level (SLA)"
5161
5638
  msgstr "Nivel de servicio %s (SLA)"
5162
5639
 
5640
+ msgid "Service level"
5641
+ msgstr ""
5642
+
5163
5643
  msgid "Service level of host"
5164
5644
  msgstr ""
5165
5645
 
@@ -5172,6 +5652,9 @@ msgstr "Establecer anulaciones de contenido para el host"
5172
5652
  msgid "Set content overrides to one or more hosts"
5173
5653
  msgstr "Establecer las anulaciones de contenido en uno o más hosts"
5174
5654
 
5655
+ msgid "Set true to override to enabled; Set false to override to disabled.'"
5656
+ msgstr ""
5657
+
5175
5658
  msgid "Set true to remove an override and reset it to 'default'"
5176
5659
  msgstr "Establecer como verdadero para eliminar una anulación y volver a establecerla como 'por defecto'"
5177
5660
 
@@ -5226,12 +5709,21 @@ msgstr "Mostrar una suscripción"
5226
5709
  msgid "Show a sync plan"
5227
5710
  msgstr "Mostrar un plan de sincronización"
5228
5711
 
5712
+ msgid "Show affected activation keys"
5713
+ msgstr ""
5714
+
5715
+ msgid "Show affected hosts"
5716
+ msgstr ""
5717
+
5229
5718
  msgid "Show all"
5230
5719
  msgstr ""
5231
5720
 
5232
5721
  msgid "Show an activation key"
5233
5722
  msgstr "Mostrar una llave de activación"
5234
5723
 
5724
+ msgid "Show an alternate content source"
5725
+ msgstr ""
5726
+
5235
5727
  msgid "Show an environment"
5236
5728
  msgstr "Mostrar un entorno"
5237
5729
 
@@ -5299,7 +5791,7 @@ msgid "Sockets: %s"
5299
5791
  msgstr "Sockets: %s"
5300
5792
 
5301
5793
  msgid "Solution"
5302
- msgstr ""
5794
+ msgstr "Solución"
5303
5795
 
5304
5796
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
5305
5797
  msgstr "Resolver las dependencias RPM por defecto en la vista de contenido de publicación, por defecto a falso"
@@ -5307,6 +5799,9 @@ msgstr "Resolver las dependencias RPM por defecto en la vista de contenido de pu
5307
5799
  msgid "Solve dependencies"
5308
5800
  msgstr "Resolver dependencias"
5309
5801
 
5802
+ msgid "Some hosts are ignored!"
5803
+ msgstr ""
5804
+
5310
5805
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
5311
5806
  msgstr "Algunas de sus entradas contienen errores. Actualícelas y guarde los cambios de nuevo."
5312
5807
 
@@ -5334,9 +5829,15 @@ msgstr ""
5334
5829
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5335
5830
  msgstr ""
5336
5831
 
5832
+ msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
5833
+ msgstr ""
5834
+
5337
5835
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5338
5836
  msgstr ""
5339
5837
 
5838
+ msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
5839
+ msgstr ""
5840
+
5340
5841
  msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5341
5842
  msgstr ""
5342
5843
 
@@ -5355,10 +5856,10 @@ msgstr ""
5355
5856
  msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5356
5857
  msgstr ""
5357
5858
 
5358
- msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5859
+ msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
5359
5860
  msgstr ""
5360
5861
 
5361
- msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5862
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5362
5863
  msgstr ""
5363
5864
 
5364
5865
  msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
@@ -5370,9 +5871,15 @@ msgstr ""
5370
5871
  msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5371
5872
  msgstr ""
5372
5873
 
5874
+ msgid "Something went wrong while getting the data. See the logs for more information"
5875
+ msgstr ""
5876
+
5373
5877
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5374
5878
  msgstr ""
5375
5879
 
5880
+ msgid "Something went wrong while loading the content views. See the logs for more information"
5881
+ msgstr ""
5882
+
5376
5883
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5377
5884
  msgstr ""
5378
5885
 
@@ -5409,6 +5916,9 @@ msgstr ""
5409
5916
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5410
5917
  msgstr ""
5411
5918
 
5919
+ msgid "Something went wrong while updating the content source. See the logs for more information"
5920
+ msgstr ""
5921
+
5412
5922
  msgid "Something went wrong! Please check server logs!"
5413
5923
  msgstr ""
5414
5924
 
@@ -5419,7 +5929,7 @@ msgid "Source RPM"
5419
5929
  msgstr "RPM de fuente"
5420
5930
 
5421
5931
  msgid "Source RPMs"
5422
- msgstr ""
5932
+ msgstr "RPM de fuente"
5423
5933
 
5424
5934
  msgid "Specify an export chunk size less than 1_000_000 GB"
5425
5935
  msgstr ""
@@ -5442,9 +5952,15 @@ msgstr "Fecha de inicio y hora no pueden quedar en blanco"
5442
5952
  msgid "Start Time"
5443
5953
  msgstr "Hora de inicio"
5444
5954
 
5955
+ msgid "Start date"
5956
+ msgstr ""
5957
+
5445
5958
  msgid "Starts"
5446
5959
  msgstr "Comienza"
5447
5960
 
5961
+ msgid "State"
5962
+ msgstr ""
5963
+
5448
5964
  msgid "Status"
5449
5965
  msgstr "Estado"
5450
5966
 
@@ -5457,6 +5973,12 @@ msgstr "Almacenamiento"
5457
5973
  msgid "Stream"
5458
5974
  msgstr "Corriente"
5459
5975
 
5976
+ msgid "Streamed"
5977
+ msgstr ""
5978
+
5979
+ msgid "Streams based on the host based on the installation status"
5980
+ msgstr ""
5981
+
5460
5982
  msgid "Streams based on the host based on their status"
5461
5983
  msgstr "Corrientes basadas en el host en función de los estados"
5462
5984
 
@@ -5499,9 +6021,15 @@ msgstr "UUID de grupo de suscripciones"
5499
6021
  msgid "Subscription Status"
5500
6022
  msgstr "Estado de suscripción"
5501
6023
 
6024
+ msgid "Subscription UUID"
6025
+ msgstr ""
6026
+
5502
6027
  msgid "Subscription Watch"
5503
6028
  msgstr "Control de suscripción"
5504
6029
 
6030
+ msgid "Subscription connection enabled"
6031
+ msgstr ""
6032
+
5505
6033
  msgid "Subscription expiration notification"
5506
6034
  msgstr "Notificación del vencimiento de la suscripción"
5507
6035
 
@@ -5580,7 +6108,7 @@ msgstr "Tipos de contenido admitidos"
5580
6108
  msgid "Sync Canceled"
5581
6109
  msgstr "Sincronización cancelada"
5582
6110
 
5583
- msgid "Sync Connection Timeout"
6111
+ msgid "Sync Connect Timeout"
5584
6112
  msgstr ""
5585
6113
 
5586
6114
  msgid "Sync Content View on Smart Proxy(ies)"
@@ -5604,8 +6132,14 @@ msgstr "Planes de sincronización"
5604
6132
  msgid "Sync Repository on Smart Proxy(ies)"
5605
6133
  msgstr "Repositorio de sincronización en proxies inteligentes"
5606
6134
 
5607
- msgid "Sync Smart Proxies after Content View promotion"
5608
- msgstr "Sincronizar los proxies inteligentes después de la promoción de la vista de contenido"
6135
+ msgid "Sync Smart Proxies after content view promotion"
6136
+ msgstr ""
6137
+
6138
+ msgid "Sync Sock Connect Timeout"
6139
+ msgstr ""
6140
+
6141
+ msgid "Sync Sock Read Timeout"
6142
+ msgstr ""
5609
6143
 
5610
6144
  msgid "Sync Status"
5611
6145
  msgstr "Estatus de sincronización"
@@ -5616,6 +6150,9 @@ msgstr "Resumen de sincronización"
5616
6150
  msgid "Sync Summary for %s"
5617
6151
  msgstr "Resumen de sincronización para %s"
5618
6152
 
6153
+ msgid "Sync Total Timeout"
6154
+ msgstr ""
6155
+
5619
6156
  msgid "Sync a repository"
5620
6157
  msgstr "Sincronizar un repositorio"
5621
6158
 
@@ -5685,6 +6222,9 @@ msgstr "Propósito del sistema"
5685
6222
  msgid "System Status"
5686
6223
  msgstr "Estado del sistema"
5687
6224
 
6225
+ msgid "System purpose"
6226
+ msgstr ""
6227
+
5688
6228
  msgid "Tag name"
5689
6229
  msgstr ""
5690
6230
 
@@ -5712,6 +6252,9 @@ msgstr "Temporal"
5712
6252
  msgid "The '%s' environment cannot contain a changeset!"
5713
6253
  msgstr "¡El entorno '%s' no puede contener un changeset!"
5714
6254
 
6255
+ msgid "The Alternate Content Source type"
6256
+ msgstr ""
6257
+
5715
6258
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
5716
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."
5717
6260
 
@@ -5724,6 +6267,9 @@ msgstr "La acción solicitada en esta vista compuesta no se puede realizar hasta
5724
6267
  msgid "The actual file contents"
5725
6268
  msgstr "El contenido real del archivo"
5726
6269
 
6270
+ msgid "The content type for the Alternate Content Source"
6271
+ msgstr ""
6272
+
5727
6273
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
5728
6274
  msgstr "La actual organización no puede ser borrada. Por favor cambie a una organización diferente antes de borrar."
5729
6275
 
@@ -5733,8 +6279,8 @@ msgstr "La vista de contenido predeterminada no se puede editar, publicar ni bor
5733
6279
  msgid "The default content view cannot be promoted"
5734
6280
  msgstr "No se puede promover la vista de contenido predeterminada"
5735
6281
 
5736
- msgid "The default dependency solving value for new Content Views."
5737
- msgstr "El valor por defecto de resolución de dependencia para las nuevas vistas de contenido."
6282
+ msgid "The default dependency solving value for new content views."
6283
+ msgstr ""
5738
6284
 
5739
6285
  msgid "The description for the content view version"
5740
6286
  msgstr "La descripción de la versión de la vista de contenido"
@@ -5763,6 +6309,9 @@ msgstr ""
5763
6309
  msgid "The field to sort the data by. Defaults to the created date."
5764
6310
  msgstr "El campo para ordenar los datos. Se ajusta por defecto a la fecha de creación."
5765
6311
 
6312
+ msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6313
+ msgstr ""
6314
+
5766
6315
  msgid "The following hosts have errata that apply to them: "
5767
6316
  msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
5768
6317
 
@@ -5771,15 +6320,39 @@ msgid ""
5771
6320
  " %{repos}"
5772
6321
  msgstr ""
5773
6322
 
6323
+ msgid "The id of the content source"
6324
+ msgstr ""
6325
+
6326
+ msgid "The id of the content view"
6327
+ msgstr ""
6328
+
5774
6329
  msgid "The id of the host to alter"
5775
6330
  msgstr "El ID del host que se debe modificar"
5776
6331
 
6332
+ msgid "The id of the lifecycle environment"
6333
+ msgstr ""
6334
+
6335
+ msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
6336
+ msgstr ""
6337
+
5777
6338
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
5778
6339
  msgstr "La lista de entornos para promover la versión de vista de contenido especificada (remplaza la versión anterior)"
5779
6340
 
5780
6341
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
5781
6342
  msgstr "El manifiesto importado dentro de la Organización %{subject} ya no es válido. Importe un nuevo manifiesto."
5782
6343
 
6344
+ msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6345
+ msgstr ""
6346
+
6347
+ msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
6348
+ msgstr ""
6349
+
6350
+ msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
6351
+ msgstr ""
6352
+
6353
+ msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
6354
+ msgstr ""
6355
+
5783
6356
  msgid "The maximum number of versions of each package to keep."
5784
6357
  msgstr ""
5785
6358
 
@@ -5866,9 +6439,18 @@ msgstr "No hay suscripciones para mostrar"
5866
6439
  msgid "There are no errata that need to be applied to registered content hosts."
5867
6440
  msgstr "No hay erratas que deban aplicarse a los hosts de contenido registrados."
5868
6441
 
6442
+ msgid "There are no host collections available to add."
6443
+ msgstr ""
6444
+
5869
6445
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5870
6446
  msgstr "No hay productos o repositorios habilitados. Intente habilitarlos a través de %{custom} o %{redhat}."
5871
6447
 
6448
+ msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
6449
+ msgstr ""
6450
+
6451
+ msgid "There are {numberOfHosts} hosts that need to be reassigned."
6452
+ msgstr ""
6453
+
5872
6454
  msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
5873
6455
  msgstr "No se han especificado entornos ni versiones o se han especificado entornos/versiones no válidos. Compruebe los parámetros ID_entornos e ID_versión_vista_contenido."
5874
6456
 
@@ -5881,6 +6463,12 @@ msgstr "No existe tal proxy HTTP"
5881
6463
  msgid "There is nothing to see here"
5882
6464
  msgstr "No hay nada que ver aquí"
5883
6465
 
6466
+ msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
6467
+ msgstr ""
6468
+
6469
+ msgid "There is {numberOfHosts} host that needs to be reassigned."
6470
+ msgstr ""
6471
+
5884
6472
  msgid "There was a problem retrieving Activation Key data from the server."
5885
6473
  msgstr "Hubo un problema para recuperar los datos de la llave de activación del servidor."
5886
6474
 
@@ -5906,7 +6494,7 @@ msgid "This action doesn't support package groups"
5906
6494
  msgstr "Esta acción no admite grupos de paquete."
5907
6495
 
5908
6496
  msgid "This action should only be taken in extreme circumstances or for debugging purposes."
5909
- msgstr ""
6497
+ msgstr "Esta acción debería implementarse únicamente en circunstancias extremas o para fines de depuración."
5910
6498
 
5911
6499
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
5912
6500
  msgstr ""
@@ -5929,13 +6517,13 @@ msgstr ""
5929
6517
  msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5930
6518
  msgstr ""
5931
6519
 
5932
- msgid "This host currently does not have traces."
6520
+ msgid "This host does not have any Module streams."
5933
6521
  msgstr ""
5934
6522
 
5935
- msgid "This host does not have any installable errata."
6523
+ msgid "This host does not have any packages."
5936
6524
  msgstr ""
5937
6525
 
5938
- msgid "This host does not have any packages."
6526
+ msgid "This host has errata that are applicable, but not installable."
5939
6527
  msgstr ""
5940
6528
 
5941
6529
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -5968,6 +6556,9 @@ msgstr "Este no es un repositorio vinculado"
5968
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}."
5969
6557
  msgstr ""
5970
6558
 
6559
+ msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
6560
+ msgstr ""
6561
+
5971
6562
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5972
6563
  msgstr "No se sugiere este repositorio. Consulte la documentación adicional de %(anchorBegin)sdocumentation%(anchorEnd)s antes de su uso."
5973
6564
 
@@ -5993,7 +6584,7 @@ msgid "This version is not promoted to any environments."
5993
6584
  msgstr ""
5994
6585
 
5995
6586
  msgid "This version will be removed from:"
5996
- msgstr ""
6587
+ msgstr "Se eliminará esta versión de:"
5997
6588
 
5998
6589
  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."
5999
6590
  msgstr ""
@@ -6001,11 +6592,11 @@ msgstr ""
6001
6592
  msgid "Time in minutes to consider orphan content as orphaned."
6002
6593
  msgstr ""
6003
6594
 
6004
- msgid "Time in seconds to wait for a Host to finish a remote action"
6005
- msgstr "Tiempo en segundos que se debe esperar para que un host termine una acción remota"
6595
+ msgid "Time in seconds to wait for a host to finish a katello-agent action"
6596
+ msgstr ""
6006
6597
 
6007
- msgid "Time in seconds to wait for a Host to pickup a remote action"
6008
- msgstr "Tiempo en segundos que se debe esperar para que un host levante una acción remota"
6598
+ msgid "Time in seconds to wait for a host to pick up a katello-agent action"
6599
+ msgstr ""
6009
6600
 
6010
6601
  msgid "Timeout when refreshing a manifest (in seconds)"
6011
6602
  msgstr "Tiempo de espera al actualizar un manifiesto (en segundos)"
@@ -6022,9 +6613,6 @@ msgstr "Si se cambia el acceso a los contenidos simples, se actualizará el mani
6022
6613
  msgid "Total steps: "
6023
6614
  msgstr "Pasos totales:"
6024
6615
 
6025
- msgid "Total timeout in seconds for connections when syncing"
6026
- msgstr ""
6027
-
6028
6616
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6029
6617
  msgstr ""
6030
6618
 
@@ -6040,6 +6628,9 @@ msgstr ""
6040
6628
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6041
6629
  msgstr ""
6042
6630
 
6631
+ msgid "Traces may be listed here after {pkgLink}."
6632
+ msgstr ""
6633
+
6043
6634
  msgid "Traces that require logout cannot be restarted remotely"
6044
6635
  msgstr ""
6045
6636
 
@@ -6074,7 +6665,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
6074
6665
  msgstr ""
6075
6666
 
6076
6667
  msgid "URL"
6077
- msgstr ""
6668
+ msgstr "URL"
6078
6669
 
6079
6670
  msgid "URL needs to have a trailing /"
6080
6671
  msgstr ""
@@ -6104,7 +6695,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
6104
6695
  msgstr "UUID de los huéspedes virtuales del hipervisor del host"
6105
6696
 
6106
6697
  msgid "Unable to connect"
6107
- msgstr ""
6698
+ msgstr "Incapaz de conectar"
6108
6699
 
6109
6700
  msgid "Unable to connect. Got: %s"
6110
6701
  msgstr "No se pudo establecer la conexión. Se obtuvo: %s."
@@ -6121,9 +6712,15 @@ msgstr ""
6121
6712
  msgid "Unable to get users"
6122
6713
  msgstr ""
6123
6714
 
6715
+ msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
6716
+ msgstr ""
6717
+
6124
6718
  msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
6125
6719
  msgstr ""
6126
6720
 
6721
+ msgid "Unable to incrementally export. Do a Full Export on the repository content."
6722
+ msgstr ""
6723
+
6127
6724
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
6128
6725
  msgstr "No se pueden reasignar activation_keys. Compruebe activation_key_content_view_id y activation_key_environment_id."
6129
6726
 
@@ -6166,6 +6763,9 @@ msgstr "Sin derechos"
6166
6763
  msgid "Unfiltered params array: %s."
6167
6764
  msgstr "Matriz de parámetros sin filtrar: %s."
6168
6765
 
6766
+ msgid "Uninstall and reset"
6767
+ msgstr ""
6768
+
6169
6769
  msgid "Uninstall packages remotely using katello-agent. %s"
6170
6770
  msgstr ""
6171
6771
 
@@ -6220,6 +6820,9 @@ msgstr ""
6220
6820
  msgid "Update"
6221
6821
  msgstr "Actualizar"
6222
6822
 
6823
+ msgid "Update Alternate Content Source"
6824
+ msgstr ""
6825
+
6223
6826
  msgid "Update CDN Configuration"
6224
6827
  msgstr ""
6225
6828
 
@@ -6259,6 +6862,9 @@ msgstr "Actualizar un plan de sincronización"
6259
6862
  msgid "Update an activation key"
6260
6863
  msgstr "Actualizar una llave de activación"
6261
6864
 
6865
+ msgid "Update an alternate content source"
6866
+ msgstr ""
6867
+
6262
6868
  msgid "Update an environment"
6263
6869
  msgstr "Actualizar un entorno"
6264
6870
 
@@ -6310,6 +6916,9 @@ msgstr "Actualizar paquete a través de la interfaz de Katello"
6310
6916
  msgid "Update packages remotely using katello-agent. %s"
6311
6917
  msgstr ""
6312
6918
 
6919
+ msgid "Update packages via Katello interface"
6920
+ msgstr ""
6921
+
6313
6922
  msgid "Update redhat repository"
6314
6923
  msgstr "Actualizar el repositorio de redhat"
6315
6924
 
@@ -6328,6 +6937,9 @@ msgstr ""
6328
6937
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
6329
6938
  msgstr "Actualizar la configuración de proxy HTTP en los repositorios de uno o más productos."
6330
6939
 
6940
+ msgid "Update the content source for specified hosts and generate the reconfiguration script"
6941
+ msgstr ""
6942
+
6331
6943
  msgid "Update the information about enabled repositories"
6332
6944
  msgstr "Actualizar la información sobre los repositorios habilitados"
6333
6945
 
@@ -6343,6 +6955,9 @@ msgstr "Actualizado"
6343
6955
  msgid "Updated component details"
6344
6956
  msgstr ""
6345
6957
 
6958
+ msgid "Updated from"
6959
+ msgstr ""
6960
+
6346
6961
  msgid "Updates"
6347
6962
  msgstr "Actualizaciones"
6348
6963
 
@@ -6368,9 +6983,9 @@ msgid "Updating repository authentication configuration"
6368
6983
  msgstr "Actualizando la configuración de la autenticación del repositorio"
6369
6984
 
6370
6985
  msgid "Upgradable"
6371
- msgstr ""
6986
+ msgstr "Actualizable"
6372
6987
 
6373
- msgid "Upgradable To"
6988
+ msgid "Upgradable to"
6374
6989
  msgstr ""
6375
6990
 
6376
6991
  msgid "Upgrade"
@@ -6403,9 +7018,18 @@ msgstr ""
6403
7018
  msgid "Upload request id"
6404
7019
  msgstr "Cargar ID de solicitud"
6405
7020
 
7021
+ msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7022
+ msgstr ""
7023
+
7024
+ msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
7025
+ msgstr ""
7026
+
6406
7027
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6407
7028
  msgstr "El nombre de canal ascendente no puede estar en blanco cuando se proporciona el URL del repositorio."
6408
7029
 
7030
+ msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
7031
+ msgstr ""
7032
+
6409
7033
  msgid "Upstream identity certificate not available"
6410
7034
  msgstr "Certificado de identidad de desarrollo principal no disponible"
6411
7035
 
@@ -6418,15 +7042,12 @@ msgstr ""
6418
7042
  msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6419
7043
  msgstr ""
6420
7044
 
6421
- msgid "Upstream organization to sync CDN content from"
7045
+ msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
6422
7046
  msgstr ""
6423
7047
 
6424
7048
  msgid "Upstream password requires upstream username be set."
6425
7049
  msgstr "La contraseña de canal ascendente requiere que se establezca un nombre de usuario de canal ascendente."
6426
7050
 
6427
- msgid "Upstream server to sync CDN content from"
6428
- msgstr ""
6429
-
6430
7051
  msgid "Upstream username and password may only be set on custom repositories."
6431
7052
  msgstr "El nombre de usuario y la contraseña de canal ascendente solo pueden establecerse en repositorios personalizados."
6432
7053
 
@@ -6467,9 +7088,9 @@ msgid "User must be logged in."
6467
7088
  msgstr "El usuario debe haber ingresado"
6468
7089
 
6469
7090
  msgid "Username"
6470
- msgstr ""
7091
+ msgstr "Nombre del usuario"
6471
7092
 
6472
- msgid "Username for authentication"
7093
+ msgid "Username for authentication. Relevant only for 'upstream_server' type."
6473
7094
  msgstr ""
6474
7095
 
6475
7096
  msgid "Username of the upstream repository user used for authentication"
@@ -6481,7 +7102,7 @@ msgstr "Nombre de usuario para acceder al URL"
6481
7102
  msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6482
7103
  msgstr ""
6483
7104
 
6484
- msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
7105
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
6485
7106
  msgstr ""
6486
7107
 
6487
7108
  msgid "Valid"
@@ -6526,6 +7147,15 @@ msgstr ""
6526
7147
  msgid "Versions"
6527
7148
  msgstr "Versiones"
6528
7149
 
7150
+ msgid "Versions "
7151
+ msgstr ""
7152
+
7153
+ msgid "Versions to exclusively include in the action"
7154
+ msgstr ""
7155
+
7156
+ msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
7157
+ msgstr ""
7158
+
6529
7159
  msgid "Versions will appear here when the content view is published."
6530
7160
  msgstr ""
6531
7161
 
@@ -6538,16 +7168,22 @@ msgstr "Ver un informe de los hosts afectados"
6538
7168
  msgid "View matching content"
6539
7169
  msgstr ""
6540
7170
 
6541
- msgid "Virtual"
6542
- msgstr "Virtual"
7171
+ msgid "View tasks "
7172
+ msgstr ""
6543
7173
 
6544
- msgid "Visit the previous Packages page"
7174
+ msgid "View the Content Views page to manage and promote content views, or select a different environment."
6545
7175
  msgstr ""
6546
7176
 
7177
+ msgid "Virtual"
7178
+ msgstr "Virtual"
7179
+
6547
7180
  msgid "Waiting to start."
6548
7181
  msgstr ""
6549
7182
 
6550
7183
  msgid "Warning"
7184
+ msgstr "Advertencia"
7185
+
7186
+ msgid "What's next?"
6551
7187
  msgstr ""
6552
7188
 
6553
7189
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -6571,8 +7207,8 @@ msgstr "Cuando borre el registro de un host a través del gestor de suscripcione
6571
7207
  msgid "Whether or not the host collection may have unlimited hosts"
6572
7208
  msgstr "Independientemente de si la colección de hosts tiene hosts ilimitados"
6573
7209
 
6574
- msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
6575
- msgstr "Si sincronizar automáticamente o no los proxies inteligentes después de una promoción de vista de contenido."
7210
+ msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
7211
+ msgstr ""
6576
7212
 
6577
7213
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
6578
7214
  msgstr "Si se debe verificar el estado de los servicios de segundo plano, como Pulp y Candlepin, antes de realizar ciertas acciones."
@@ -6601,9 +7237,6 @@ msgstr "Yay estado vacío"
6601
7237
  msgid "Yes"
6602
7238
  msgstr "Sí"
6603
7239
 
6604
- msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
6605
- msgstr "Actualmente está operando en modo desconectado donde el acceso a la gestión de suscripciones de Red Hat está prohibido. Si desea cambiar esto, actualice la configuración de contenido 'Modo desconectado'."
6606
-
6607
7240
  msgid "You are not allowed to promote to Environments %s"
6608
7241
  msgstr "No tiene permisos para promoverse a entornos %s"
6609
7242
 
@@ -6628,6 +7261,9 @@ msgstr ""
6628
7261
  msgid "You currently don't have any Content views."
6629
7262
  msgstr ""
6630
7263
 
7264
+ msgid "You currently don't have any alternate content sources."
7265
+ msgstr ""
7266
+
6631
7267
  msgid "You currently don't have any filters for this content view."
6632
7268
  msgstr ""
6633
7269
 
@@ -6661,6 +7297,9 @@ msgstr "Tiene suscripciones que vencen dentro de %s días"
6661
7297
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
6662
7298
  msgstr "Tienes cambios no guardados. ¿Quiere salir sin guardar sus cambios?"
6663
7299
 
7300
+ msgid "You may want to check the host's content view and lifecycle environment."
7301
+ msgstr ""
7302
+
6664
7303
  msgid "You were not allowed to add %s"
6665
7304
  msgstr "No se le ha permitido añadir %s"
6666
7305
 
@@ -6682,6 +7321,9 @@ msgstr "Su búsqueda no fue válida.Revísela e inténtelo de nuevo. El error co
6682
7321
  msgid "Your search returned no matching "
6683
7322
  msgstr ""
6684
7323
 
7324
+ msgid "Your search returned no matching Module streams."
7325
+ msgstr ""
7326
+
6685
7327
  msgid "Your search returned no matching RPMs."
6686
7328
  msgstr ""
6687
7329
 
@@ -6796,6 +7438,9 @@ msgstr "es posible que una llave de activación tenga hosts ilimitados"
6796
7438
  msgid "can't be blank"
6797
7439
  msgstr "No se puede dejar en blanco"
6798
7440
 
7441
+ msgid "cannot add filter to generated content views"
7442
+ msgstr ""
7443
+
6799
7444
  msgid "cannot add filter to import-only view"
6800
7445
  msgstr ""
6801
7446
 
@@ -6850,6 +7495,9 @@ msgstr "verificando estado de tarea de Candlepin"
6850
7495
  msgid "checking Pulp task status"
6851
7496
  msgstr "verificando el estado de la tarea Pulp"
6852
7497
 
7498
+ msgid "click here"
7499
+ msgstr ""
7500
+
6853
7501
  msgid "composite content view identifier"
6854
7502
  msgstr "identificador de vista de contenido compuesta"
6855
7503
 
@@ -6868,6 +7516,9 @@ msgstr ""
6868
7516
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6869
7517
  msgstr ""
6870
7518
 
7519
+ msgid "content view Dependency Solving Default"
7520
+ msgstr ""
7521
+
6871
7522
  msgid "content view component ID. Identifier of the component association"
6872
7523
  msgstr "ID de componente de vista de contenido. Identificador de la asociación de componente"
6873
7524
 
@@ -6943,7 +7594,7 @@ msgstr "descripción del filtro"
6943
7594
  msgid "description of the repository"
6944
7595
  msgstr "descripción del repositorio"
6945
7596
 
6946
- msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
7597
+ msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
6947
7598
  msgstr ""
6948
7599
 
6949
7600
  msgid "enables or disables synchronization"
@@ -7018,6 +7669,9 @@ msgstr "identificador de filtro"
7018
7669
  msgid "filter identifiers"
7019
7670
  msgstr ""
7020
7671
 
7672
+ msgid "filter only environments containing this label"
7673
+ msgstr ""
7674
+
7021
7675
  msgid "filter only environments containing this name"
7022
7676
  msgstr "filtrar solo entornos que contengan este nombre"
7023
7677
 
@@ -7081,6 +7735,9 @@ msgstr "Instalando erratas..."
7081
7735
  msgid "installing erratum..."
7082
7736
  msgstr "Instalando errata..."
7083
7737
 
7738
+ msgid "installing or updating packages"
7739
+ msgstr ""
7740
+
7084
7741
  msgid "installing package group..."
7085
7742
  msgstr "Instalando grupo de paquetes..."
7086
7743
 
@@ -7108,9 +7765,18 @@ msgstr "ya está asociada a la Capsule"
7108
7765
  msgid "is invalid"
7109
7766
  msgstr "Es inválida"
7110
7767
 
7768
+ msgid "is not a valid type. Must be one of the following: %s"
7769
+ msgstr ""
7770
+
7771
+ msgid "is not allowed for ACS. Must be one of the following: %s"
7772
+ msgstr ""
7773
+
7111
7774
  msgid "is not enabled. must be one of the following: %s"
7112
7775
  msgstr ""
7113
7776
 
7777
+ msgid "is only allowed for Yum repositories."
7778
+ msgstr ""
7779
+
7114
7780
  msgid "label of the environment"
7115
7781
  msgstr "etiqueta del entorno"
7116
7782
 
@@ -7183,6 +7849,9 @@ msgstr "debe contener una clave GPG pública válida"
7183
7849
  msgid "must contain valid Public GPG Key"
7184
7850
  msgstr "debe contener una clave GPG pública válida"
7185
7851
 
7852
+ msgid "must not be a negative value."
7853
+ msgstr ""
7854
+
7186
7855
  msgid "must not contain leading or trailing white spaces."
7187
7856
  msgstr "No debe contener espacios iniciales o en blanco"
7188
7857
 
@@ -7279,6 +7948,9 @@ msgstr "paquete: versión"
7279
7948
  msgid "package_ids is not an array"
7280
7949
  msgstr "package_ids no es un array"
7281
7950
 
7951
+ msgid "package_names_for_job_template: Action must be one of %s"
7952
+ msgstr ""
7953
+
7282
7954
  msgid "params 'show_all_for' and 'available_for' must be used independently"
7283
7955
  msgstr ""
7284
7956
 
@@ -7396,6 +8068,12 @@ msgstr "sustituir la URL de fuente temporalmente para sincronizar"
7396
8068
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
7397
8069
  msgstr "Los siguientes atributos no pueden ser actualizados para el proveedor de Red Hat: [ %s ]"
7398
8070
 
8071
+ msgid "to"
8072
+ msgstr ""
8073
+
8074
+ msgid "to update configuration on all hosts, or"
8075
+ msgstr ""
8076
+
7399
8077
  msgid "true if the latest version of the component's content view is desired"
7400
8078
  msgstr "verdadero si se desea la última versión de la vista de contenido del componente"
7401
8079
 
@@ -7420,9 +8098,15 @@ msgstr "tipos de filtros"
7420
8098
  msgid "unknown permission for %s"
7421
8099
  msgstr "permisos desconocidos para %s"
7422
8100
 
8101
+ msgid "unlimited"
8102
+ msgstr ""
8103
+
7423
8104
  msgid "update a filter"
7424
8105
  msgstr "Actualizar un filtro"
7425
8106
 
8107
+ msgid "update configuration on the hosts manually:"
8108
+ msgstr ""
8109
+
7426
8110
  msgid "updating package group..."
7427
8111
  msgstr "Actualizando grupo de paquetes..."
7428
8112
 
@@ -7435,6 +8119,9 @@ msgstr "Actualizando el paquete..."
7435
8119
  msgid "updating packages..."
7436
8120
  msgstr "Actualizando paquetes..."
7437
8121
 
8122
+ msgid "upstream Foreman server"
8123
+ msgstr ""
8124
+
7438
8125
  msgid "url not defined."
7439
8126
  msgstr "No se ha definido la URL."
7440
8127
 
@@ -7442,7 +8129,7 @@ msgid "via customized remote execution"
7442
8129
  msgstr ""
7443
8130
 
7444
8131
  msgid "via remote execution"
7445
- msgstr ""
8132
+ msgstr "por medio de la ejecución remota"
7446
8133
 
7447
8134
  msgid "view content view tabs."
7448
8135
  msgstr ""
@@ -7479,3 +8166,30 @@ msgstr "sí"
7479
8166
 
7480
8167
  msgid "{0} items selected"
7481
8168
  msgstr "{0} elementos seleccionados"
8169
+
8170
+ msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8171
+ msgstr ""
8172
+
8173
+ msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
8174
+ msgstr ""
8175
+
8176
+ msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
8177
+ msgstr ""
8178
+
8179
+ msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
8180
+ msgstr ""
8181
+
8182
+ msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
8183
+ msgstr ""
8184
+
8185
+ msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
8186
+ msgstr ""
8187
+
8188
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
8189
+ msgstr ""
8190
+
8191
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
8192
+ msgstr ""
8193
+
8194
+ msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
8195
+ msgstr ""