katello 4.5.1 → 4.8.0.rc2

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

Potentially problematic release.


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

Files changed (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -5,26 +5,27 @@
5
5
  #
6
6
  # Translators:
7
7
  # Valeria S Silva <valeriassilva@live.com>, 2017
8
- # Odilon Junior <odilon.junior93@gmail.com>, 2017
9
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
10
8
  # Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2022
11
- # Amit Upadhye <aupadhye@redhat.com>, 2022
9
+ # Odilon Junior <odilon.junior93@gmail.com>, 2022
12
10
  # Flamarion Jorge <jorge.flamarion@gmail.com>, 2022
11
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
13
12
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
13
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
14
14
  #
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: katello 2.5.0\n"
17
+ "Project-Id-Version: katello 2.4.0-RC1\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
19
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
20
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
20
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2023\n"
21
21
  "Language-Team: Portuguese (Brazil) (https://www.transifex.com/foreman/teams/11"
22
22
  "4/pt_BR/)\n"
23
23
  "MIME-Version: 1.0\n"
24
24
  "Content-Type: text/plain; charset=UTF-8\n"
25
25
  "Content-Transfer-Encoding: 8bit\n"
26
26
  "Language: pt_BR\n"
27
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
27
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
28
+ "0 == 0 ? 1 : 2;\n"
28
29
 
29
30
  msgid ""
30
31
  "\n"
@@ -35,18 +36,27 @@ msgid " %{errata_count} Errata"
35
36
  msgstr " %{errata_count} Errata"
36
37
 
37
38
  msgid " %{modulemd_count} Module Stream(s)"
38
- msgstr " %{modulemd_count} fluxo(s) do módulo(s)"
39
+ msgstr " %{modulemd_count} Módulo Fluxo(s)"
39
40
 
40
41
  msgid " %{package_count} Package(s)"
41
- msgstr " %{package_count} pacote(s)"
42
+ msgstr " %{package_count} Pacote(s)"
42
43
 
43
44
  msgid " Content view updated"
45
+ msgstr " Visualização de Conteúdo atualizada"
46
+
47
+ msgid " DEBs"
44
48
  msgstr ""
45
49
 
46
50
  msgid " Either select the latest content view or the content view version. Cannot set both."
47
51
  msgstr " Selecione a última visualização de conteúdo ou a versão da visualização de conteúdo. Não é possível definir ambas as opções."
48
52
 
49
53
  msgid " RPMs"
54
+ msgstr " RPMs"
55
+
56
+ msgid " The base path can be a web address or a filesystem location."
57
+ msgstr ""
58
+
59
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
50
60
  msgstr ""
51
61
 
52
62
  msgid " View task details "
@@ -59,15 +69,15 @@ msgid " ago."
59
69
  msgstr ""
60
70
 
61
71
  msgid " and"
62
- msgstr ""
72
+ msgstr " e"
63
73
 
64
74
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
65
75
  msgstr ""
66
76
 
67
- msgid " content view is used in listed component content views. For more information, "
77
+ msgid " content view is used in listed composite content views."
68
78
  msgstr ""
69
79
 
70
- msgid " content view is used in listed composite content views."
80
+ msgid " content view is used in listed content views. For more information, "
71
81
  msgstr ""
72
82
 
73
83
  msgid " environment cannot be set to an environment already on its path"
@@ -79,9 +89,18 @@ msgstr ""
79
89
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
80
90
  msgstr ""
81
91
 
92
+ msgid " or any step on the left."
93
+ msgstr ""
94
+
95
+ msgid " to manage and promote content views, or select a different environment."
96
+ msgstr ""
97
+
82
98
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
83
99
  msgstr ""
84
100
 
101
+ msgid "${option}"
102
+ msgstr ""
103
+
85
104
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
86
105
  msgstr ""
87
106
 
@@ -98,30 +117,34 @@ msgid "${selectedContentType} will appear here when created."
98
117
  msgstr ""
99
118
 
100
119
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
101
- msgstr "%s %s tem %s hosts e %s grupos de hosts que precisarão ser associados novamente após a exclusão. Excluir %s?"
120
+ msgstr "%s %s tem %s Hosts e %s Hostgroups que precisarão ser reassociados pós deleção. Excluir %s?"
102
121
 
103
122
  msgid "%s Available"
104
- msgstr "%s Disponível(eis)"
123
+ msgstr "%s Disponível em"
105
124
 
106
125
  msgid "%s Errata"
107
126
  msgstr "%s Errata"
108
127
 
109
128
  msgid "%s Host"
110
129
  msgid_plural "%s Hosts"
111
- msgstr[0] "%s host"
112
- msgstr[1] "%s hosts"
130
+ msgstr[0] "%s Anfitrião"
131
+ msgstr[1] "%s Anfitriões"
132
+ msgstr[2] "%s Anfitriões"
113
133
 
114
134
  msgid "%s Used"
115
- msgstr "%s Usado(s)"
135
+ msgstr "%s Usado"
116
136
 
117
137
  msgid "%s ago"
118
138
  msgstr "%s atrás"
119
139
 
140
+ msgid "%s guests"
141
+ msgstr ""
142
+
120
143
  msgid "%s has already been deleted"
121
- msgstr "%s já foi excluído"
144
+ msgstr "%s já foi apagado"
122
145
 
123
146
  msgid "%s is not a valid package name"
124
- msgstr "%s não é um nome de pacote válido "
147
+ msgstr "%s não é um nome de pacote válido"
125
148
 
126
149
  msgid "%s is not a valid path"
127
150
  msgstr ""
@@ -130,64 +153,64 @@ msgid "%s is required"
130
153
  msgstr ""
131
154
 
132
155
  msgid "%s is unreachable. %s"
133
- msgstr "%s está inacessível. %s"
156
+ msgstr "%s é inalcançável. %s"
134
157
 
135
158
  msgid "%s must be an array."
136
- msgstr "%s deve ser uma matriz válida."
159
+ msgstr "%s deve ser uma matriz."
137
160
 
138
161
  msgid "%{errata} (%{total} other errata)"
139
- msgstr "%{errata} (%{total} outra errata)"
162
+ msgstr "%{errata} (%{total} outras erratas)"
140
163
 
141
164
  msgid "%{errata} (%{total} other errata) install canceled"
142
- msgstr "%{errata} (%{total} outra errata) instalação cancelada"
165
+ msgstr "%{errata} (%{total} outras erratas) instalação cancelada"
143
166
 
144
167
  msgid "%{errata} (%{total} other errata) install failed"
145
- msgstr "%{errata} (%{total} outra errata) instalação falhou"
168
+ msgstr "%{errata} (%{total} outras erratas) instalação falhou"
146
169
 
147
170
  msgid "%{errata} (%{total} other errata) install timed out"
148
- msgstr "%{errata} (%{total} outra errata) instalação expirou"
171
+ msgstr "%{errata} (%{total} outras erratas) instalação programada"
149
172
 
150
173
  msgid "%{errata} (%{total} other errata) installed"
151
- msgstr "%{errata} (%{total} outra errata) instalada"
174
+ msgstr "%{errata} (%{total} outras erratas) instaladas"
152
175
 
153
176
  msgid "%{errata} erratum install canceled"
154
- msgstr "%{errata} instalação da errata cancelada"
177
+ msgstr "%{errata} instalação de erratum cancelada"
155
178
 
156
179
  msgid "%{errata} erratum install failed"
157
- msgstr "%{errata} instalação da errata falhou"
180
+ msgstr "%{errata} a instalação da errata falhou"
158
181
 
159
182
  msgid "%{errata} erratum install timed out"
160
- msgstr "%{errata} tempo de instalação da errata expirou"
183
+ msgstr "%{errata} instalação de erratum cronometrada"
161
184
 
162
185
  msgid "%{errata} erratum installed"
163
- msgstr "%{errata} errata instalado"
186
+ msgstr "%{errata} errata instalada"
164
187
 
165
188
  msgid "%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content."
166
- msgstr "%{expiring_subs} subscrições em %{subject} expiram em menos de %{days} dias. Renove-as antes que elas expirem para garantir que seus hosts continuarão a receber conteúdo."
189
+ msgstr "%{expiring_subs} assinaturas em %{subject} vão expirar em menos de %{days} dias. Favor renová-las antes que expirem para garantir que seus anfitriões continuarão recebendo conteúdo."
167
190
 
168
191
  msgid "%{group} (%{total} other package groups)"
169
192
  msgstr "%{group} (%{total} outros grupos de pacotes)"
170
193
 
171
194
  msgid "%{group} (%{total} other package groups) install canceled"
172
- msgstr "%{group} (%{total} outros grupos de pacote) instalação cancelada"
195
+ msgstr "%{group} (%{total} outros grupos de pacotes) instalação cancelada"
173
196
 
174
197
  msgid "%{group} (%{total} other package groups) install failed"
175
- msgstr "%{group} (%{total} outros grupos de pacote) instalação falhou"
198
+ msgstr "%{group} (%{total} outros grupos de pacotes) instalação falhou"
176
199
 
177
200
  msgid "%{group} (%{total} other package groups) install timed out"
178
- msgstr "%{group} (%{total} outros grupos de pacote) tempo de instalação expirou"
201
+ msgstr "%{group} (%{total} outros grupos de pacotes) instalar no tempo"
179
202
 
180
203
  msgid "%{group} (%{total} other package groups) installed"
181
- msgstr "%{group} (%{total} outros grupos de pacote) instalado"
204
+ msgstr "%{group} (%{total} outros grupos de pacotes) instalados"
182
205
 
183
206
  msgid "%{group} (%{total} other package groups) remove canceled"
184
- msgstr "%{group} (%{total} outros grupos de pacote) remoção cancelada"
207
+ msgstr "%{group} (%{total} outros grupos de pacotes) remover cancelado"
185
208
 
186
209
  msgid "%{group} (%{total} other package groups) remove failed"
187
- msgstr "%{group} (%{total}outros grupos de pacotes) remoção falhou"
210
+ msgstr "%{group} (%{total} outros grupos de pacotes) remover falha"
188
211
 
189
212
  msgid "%{group} (%{total} other package groups) remove timed out"
190
- msgstr "%{group} (%{total} outros grupos de pacote) remoção expirada"
213
+ msgstr "%{group} (%{total} outros grupos de pacotes) remover o tempo"
191
214
 
192
215
  msgid "%{group} (%{total} other package groups) removed"
193
216
  msgstr "%{group} (%{total} outros grupos de pacotes) removidos"
@@ -199,112 +222,112 @@ msgid "%{group} (%{total} other package groups) update failed"
199
222
  msgstr "%{group} (%{total} outros grupos de pacotes) atualização falhou"
200
223
 
201
224
  msgid "%{group} (%{total} other package groups) update timed out"
202
- msgstr "%{group} (%{total} outros grupos de pacotes) atualização expirou"
225
+ msgstr "%{group} (%{total} outros grupos de pacotes) atualização programada"
203
226
 
204
227
  msgid "%{group} (%{total} other package groups) updated"
205
- msgstr "%{group} (%{total} outros grupos de pacotes) atualizados"
228
+ msgstr "%{group} (%{total} outros grupos de pacotes) atualizado"
206
229
 
207
230
  msgid "%{group} package group install canceled"
208
- msgstr "%{group} Instalação do Grupo de Pacote foi Cancelada"
231
+ msgstr "%{group} instalação do grupo de pacotes cancelada"
209
232
 
210
233
  msgid "%{group} package group install failed"
211
- msgstr "%{group} Instalação do Grupo de Pacote Falhou"
234
+ msgstr "%{group} instalação do grupo de pacotes falhou"
212
235
 
213
236
  msgid "%{group} package group install timed out"
214
- msgstr "%{group} Instalação do Grupo de Pacote Expirou o Tempo"
237
+ msgstr "%{group} instalação do grupo de pacotes com o tempo esgotado"
215
238
 
216
239
  msgid "%{group} package group installed"
217
- msgstr "%{group} de grupo de pacote instalado"
240
+ msgstr "%{group} grupo de pacotes instalados"
218
241
 
219
242
  msgid "%{group} package group remove canceled"
220
- msgstr "%{group} Remoção do Grupo de Pacote Cancelada"
243
+ msgstr "%{group} grupo de pacotes removidos cancelados"
221
244
 
222
245
  msgid "%{group} package group remove failed"
223
- msgstr "%{group} Remoção de Grupo de Pacote Falhou"
246
+ msgstr "%{group} grupo de pacotes removidos falhou"
224
247
 
225
248
  msgid "%{group} package group remove timed out"
226
- msgstr "%{group} Remoção de Grupo de Pacote Expirou o Tempo"
249
+ msgstr "%{group} grupo de pacotes removidos por tempo"
227
250
 
228
251
  msgid "%{group} package group removed"
229
- msgstr "%{group} grupo de pacote removido"
252
+ msgstr "%{group} grupo de pacotes removido"
230
253
 
231
254
  msgid "%{group} package group update canceled"
232
- msgstr "%{group} de atualização de grupo de pacote cancelada"
255
+ msgstr "%{group} atualização do grupo de pacotes cancelada"
233
256
 
234
257
  msgid "%{group} package group update failed"
235
- msgstr "%{group} atualização de grupo de pacote falhou"
258
+ msgstr "%{group} atualização do grupo de pacotes falhou"
236
259
 
237
260
  msgid "%{group} package group update timed out"
238
- msgstr "%{group} atualização de grupo de pacote expirou o tempo"
261
+ msgstr "%{group} Atualização do grupo de pacotes programada"
239
262
 
240
263
  msgid "%{group} package group updated"
241
- msgstr "%{group} grupo de pacote atualizado"
264
+ msgstr "%{group} grupo de pacotes atualizado"
242
265
 
243
266
  msgid "%{package} (%{total} other packages)"
244
267
  msgstr "%{package} (%{total} outros pacotes)"
245
268
 
246
269
  msgid "%{package} (%{total} other packages) install canceled"
247
- msgstr "%{package} (%{total} outros pacotes) instalação cancelada"
270
+ msgstr "%{package} (%{total} outros pacotes) instalação cancelada"
248
271
 
249
272
  msgid "%{package} (%{total} other packages) install failed"
250
- msgstr "%{package} (%{total} outros pacotes) instalação falhou"
273
+ msgstr "%{package} (%{total} outros pacotes) instalação falhou"
251
274
 
252
275
  msgid "%{package} (%{total} other packages) install timed out"
253
- msgstr "%{package} (%{total} outros pacotes) tempo de instalação expirou"
276
+ msgstr "%{package} (%{total} outros pacotes) instalar no tempo"
254
277
 
255
278
  msgid "%{package} (%{total} other packages) installed"
256
279
  msgstr "%{package} (%{total} outros pacotes) instalados"
257
280
 
258
281
  msgid "%{package} (%{total} other packages) remove canceled"
259
- msgstr "%{package} (%{total} outros pacotes ) remoção cancelada"
282
+ msgstr "%{package} (%{total} outros pacotes) remover cancelado"
260
283
 
261
284
  msgid "%{package} (%{total} other packages) remove failed"
262
- msgstr "%{package} (%{total} outros pacotes) remoção falhou"
285
+ msgstr "%{package} (%{total} outros pacotes) remover falha"
263
286
 
264
287
  msgid "%{package} (%{total} other packages) remove timed out"
265
- msgstr "%{package} (%{total} outros pacotes) tempo de remoção expirou"
288
+ msgstr "%{package} (%{total} outros pacotes) remover o tempo"
266
289
 
267
290
  msgid "%{package} (%{total} other packages) removed"
268
- msgstr "%{package} (%{total} outros pacotes)"
291
+ msgstr "%{package} (%{total} outros pacotes) removidos"
269
292
 
270
293
  msgid "%{package} (%{total} other packages) update canceled"
271
294
  msgstr "%{package} (%{total} outros pacotes) atualização cancelada"
272
295
 
273
296
  msgid "%{package} (%{total} other packages) update failed"
274
- msgstr "%{package} (%{total} outros pacotes) atualização falhou"
297
+ msgstr "%{package} (%{total} outros pacotes) atualização falhou"
275
298
 
276
299
  msgid "%{package} (%{total} other packages) update timed out"
277
- msgstr "%{package} (%{total} outros pacotes) tempo de atualização expirou"
300
+ msgstr "%{package} (%{total} outros pacotes) atualização programada"
278
301
 
279
302
  msgid "%{package} (%{total} other packages) updated"
280
- msgstr "%{package} (%{total} outros pacotes)"
303
+ msgstr "%{package} (%{total} outros pacotes) atualizado"
281
304
 
282
305
  msgid "%{package} package install canceled"
283
- msgstr "%{package} de instalação de pacote cancelada"
306
+ msgstr "%{package} instalação da embalagem cancelada"
284
307
 
285
308
  msgid "%{package} package install timed out"
286
- msgstr "%{package} instalação de pacote expirou o tempo"
309
+ msgstr "%{package} instalação do pacote com o tempo esgotado"
287
310
 
288
311
  msgid "%{package} package remove canceled"
289
- msgstr "%{package} remoção de pacote cancelada"
312
+ msgstr "%{package} pacote remover cancelado"
290
313
 
291
314
  msgid "%{package} package remove failed"
292
- msgstr "%{package} remoção de pacote falhou"
315
+ msgstr "%{package} remoção do pacote falhou"
293
316
 
294
317
  msgid "%{package} package remove timed out"
295
- msgstr "%{package} remoção de pacote expirou o tempo"
318
+ msgstr "%{package} remover o pacote com o tempo"
296
319
 
297
320
  msgid "%{package} package removed"
298
- msgstr "%{package} pacote removido"
321
+ msgstr "%{package} pacote removido"
299
322
 
300
323
  msgid "%{package} package update canceled"
301
- msgstr "%{package} de atualização de pacote cancelada"
324
+ msgstr "%{package} atualização do pacote cancelado"
302
325
 
303
326
  msgid "%{package} package update failed"
304
- msgstr "%{package} atualização de pacote falhou"
327
+ msgstr "%{package} atualização do pacote falhou"
305
328
 
306
329
  msgid "%{package} package update timed out"
307
- msgstr "%{package} atualização de pacote expirou o tempo"
330
+ msgstr "%{package} atualização do pacote programada"
308
331
 
309
332
  msgid "%{package} package updated"
310
333
  msgstr "%{package} pacote atualizado"
@@ -313,48 +336,69 @@ msgid "%{sla}"
313
336
  msgstr "%{sla}"
314
337
 
315
338
  msgid "%{subject}'s disk is %{percentage} full. Since this proxy is running Pulp, it needs disk space to publish content views. Please ensure the disk does not get full."
316
- msgstr "O disco de %{subject} está %{percentage} cheio. Como este proxy está executando Pulp, ele precisa de espaço em disco para publicar visualizações de conteúdo. Certifique-se de que o disco não fique cheio."
339
+ msgstr "%{subject}O disco está %{percentage} cheio. Como este proxy está rodando Pulp, ele precisa de espaço em disco para publicar visualizações de conteúdo. Por favor, certifique-se de que o disco não fique cheio."
317
340
 
318
341
  msgid "%{unused_substitutions} cannot be specified for %{content_name} as that information is not substitutable in %{content_url} "
319
- msgstr "%{unused_substitutions} não podem ser especificadas para %{content_name}, pois essa informação não é substituível em %{content_url} "
342
+ msgstr "{unused_substitutions} não pode ser especificado para %{content_name} que essa informação não é substituível em %{content_url} "
320
343
 
321
344
  msgid "%{used} of %{total}"
322
345
  msgstr "%{used} de %{total}"
323
346
 
324
347
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
325
- msgstr "Não foi possível promover %{view_label} a %{environment_label} porque a visualização de conteúdo e o ambiente não estão na mesma organização!"
348
+ msgstr "{view_label} não poderia ser promovido a %{environment_label} porque a visão do conteúdo e do meio ambiente não estão na mesma organização!"
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
354
+ msgstr ""
355
+
356
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
357
+ msgstr ""
358
+
359
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
360
+ msgstr ""
361
+
362
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
363
+ msgstr ""
364
+
365
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
366
+ msgstr ""
326
367
 
327
368
  msgid "(Orphaned)"
328
369
  msgstr "(Órfão)"
329
370
 
371
+ msgid "(unset)"
372
+ msgstr ""
373
+
330
374
  msgid ", and"
331
375
  msgstr "e"
332
376
 
333
377
  msgid ", must be unique to major and version id version."
334
- msgstr ", deve ser exclusivo para a versão principal e a id da versão."
378
+ msgstr ", deve ser exclusivo para a versão principal e a ID da versão."
335
379
 
336
380
  msgid ": '%s' is a built-in environment"
337
- msgstr ": \"%s\" é um ambiente embutido"
381
+ msgstr ": '%s' é um ambiente embutido"
338
382
 
339
383
  msgid ":a_resource identifier"
340
384
  msgstr ":a_resource identifier"
341
385
 
342
386
  msgid "<b>PROMOTION</b> SUMMARY"
343
- msgstr "RESUMO DA <b>PROMOÇÃO</b>"
387
+ msgstr "<b>PROMOÇÃO</b> SUMÁRIO"
344
388
 
345
389
  msgid "<b>SYNC</b> SUMMARY"
346
- msgstr "RESUMO DA <b>SINCRONIZAÇÃO</b>"
390
+ msgstr "<b>SINC</b> SUMÁRIO"
347
391
 
348
392
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
349
- msgstr "Já existe uma versão de CV com a mesma versão, principal e secundária (%{major}.%{minor})"
393
+ msgstr "Já existe uma versão CV com a mesma versão maior e menor (%{major}.%{minor})"
350
394
 
351
395
  msgid "A Pool and its Subscription cannot belong to different organizations"
352
396
  msgstr ""
353
397
 
354
398
  msgid "A backend service [ %s ] is unreachable"
355
- msgstr "Um serviço de backend [%s] não pode ser alcançado"
399
+ msgstr "Um serviço backend [ %s ] é inatingível"
356
400
 
357
- msgid "A content view can be added by using the \"Create content view\" button above."
401
+ msgid "A content view can be added by using the \"Create content view\" button below."
358
402
  msgstr ""
359
403
 
360
404
  msgid "A content_type must be provided."
@@ -375,6 +419,12 @@ msgstr ""
375
419
  msgid "A post-promotion summary of hosts with installable errata"
376
420
  msgstr "Um sumário de pós-promoção de hosts com errata instalável"
377
421
 
422
+ msgid "A remote execution job is in progress"
423
+ msgstr ""
424
+
425
+ msgid "A remote execution job is in progress."
426
+ msgstr ""
427
+
378
428
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
379
429
  msgstr "Nível de serviço para processo de auto-reparo. Ex.: AUTO-SUPORTE"
380
430
 
@@ -427,7 +477,7 @@ msgid "Activation Keys"
427
477
  msgstr "Chaves de ativação "
428
478
 
429
479
  msgid "Activation key"
430
- msgstr ""
480
+ msgstr "Chave de ativação"
431
481
 
432
482
  msgid "Activation key ID"
433
483
  msgstr "Ativação do ID da chave"
@@ -460,7 +510,10 @@ msgid "Add"
460
510
  msgstr "Adicionar"
461
511
 
462
512
  msgid "Add Bookmark"
463
- msgstr "Adicionar marcador"
513
+ msgstr "Adicionar Bookmark"
514
+
515
+ msgid "Add DEB rule"
516
+ msgstr ""
464
517
 
465
518
  msgid "Add RPM rule"
466
519
  msgstr ""
@@ -471,15 +524,15 @@ msgstr "Adicionar subscrições"
471
524
  msgid "Add a subscription to a host"
472
525
  msgstr "Adicionar uma subscrição a um host"
473
526
 
474
- msgid "Add component"
475
- msgstr ""
476
-
477
- msgid "Add component content views"
527
+ msgid "Add an alternate content source"
478
528
  msgstr ""
479
529
 
480
530
  msgid "Add components to the content view"
481
531
  msgstr "Adicionar componentes à visualização de conteúdo"
482
532
 
533
+ msgid "Add content view"
534
+ msgstr ""
535
+
483
536
  msgid "Add content views"
484
537
  msgstr ""
485
538
 
@@ -492,9 +545,6 @@ msgstr ""
492
545
  msgid "Add filter rule"
493
546
  msgstr ""
494
547
 
495
- msgid "Add filters using the 'Add filter' button above."
496
- msgstr ""
497
-
498
548
  msgid "Add host to collections"
499
549
  msgstr ""
500
550
 
@@ -534,12 +584,18 @@ msgstr "Adicionar subscrições consumidas por um manifesto do Red Hat Subscript
534
584
  msgid "Add subscriptions to one or more hosts"
535
585
  msgstr "Adicionar subscrições a um ou mais hosts"
536
586
 
537
- msgid "Add to this filter using the 'Add RPM rule' button."
587
+ msgid "Add to a host collection"
588
+ msgstr ""
589
+
590
+ msgid "Add to this filter using the 'Add Deb rule' button."
538
591
  msgstr ""
539
592
 
540
593
  msgid "Add to this filter using the 'Add filter rule' button."
541
594
  msgstr ""
542
595
 
596
+ msgid "Add-ons"
597
+ msgstr ""
598
+
543
599
  msgid "Added"
544
600
  msgstr ""
545
601
 
@@ -558,6 +614,9 @@ msgstr ""
558
614
  msgid "Addons"
559
615
  msgstr "Complementos"
560
616
 
617
+ msgid "Affected Repositories"
618
+ msgstr "Repositórios afetados"
619
+
561
620
  msgid "Affected repositories"
562
621
  msgstr ""
563
622
 
@@ -565,7 +624,7 @@ msgid "After generating the incremental update, apply the changes to the specifi
565
624
  msgstr "Depois de gerar a atualização incremental, aplique as alterações aos hosts especificados. Somente Errata é compatível atualmente."
566
625
 
567
626
  msgid "Agent action"
568
- msgstr ""
627
+ msgstr "Ação de agente"
569
628
 
570
629
  msgid "All"
571
630
  msgstr "Todos(as)"
@@ -574,7 +633,7 @@ msgid "All Media"
574
633
  msgstr "Todas as mídias"
575
634
 
576
635
  msgid "All Repositories"
577
- msgstr "Todos os repositórios"
636
+ msgstr "Todos os Repositórios"
578
637
 
579
638
  msgid "All available architectures for this repo are enabled."
580
639
  msgstr "Todas as arquiteturas disponíveis para este repositório estão habilitadas."
@@ -588,6 +647,9 @@ msgstr ""
588
647
  msgid "All subpaths must have a slash at the end and none at the front"
589
648
  msgstr ""
590
649
 
650
+ msgid "All up to date"
651
+ msgstr ""
652
+
591
653
  msgid "All versions"
592
654
  msgstr ""
593
655
 
@@ -597,6 +659,9 @@ msgstr ""
597
659
  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)"
598
660
  msgstr ""
599
661
 
662
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
663
+ msgstr ""
664
+
600
665
  msgid "Allow deleting repositories in published content views"
601
666
  msgstr ""
602
667
 
@@ -606,6 +671,9 @@ msgstr ""
606
671
  msgid "Allow hosts to re-register themselves only when they are in build mode"
607
672
  msgstr ""
608
673
 
674
+ msgid "Allow multiple content views"
675
+ msgstr ""
676
+
609
677
  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."
610
678
  msgstr ""
611
679
 
@@ -615,6 +683,9 @@ msgstr ""
615
683
  msgid "Alter a host's host collections"
616
684
  msgstr ""
617
685
 
686
+ msgid "Alternate Content Source HTTP Proxy"
687
+ msgstr ""
688
+
618
689
  msgid "Alternate Content Sources"
619
690
  msgstr ""
620
691
 
@@ -627,11 +698,17 @@ msgstr ""
627
698
  msgid "Alternate content source deleted"
628
699
  msgstr ""
629
700
 
630
- msgid "Alternate content sources"
701
+ msgid "Alternate content source edited"
702
+ msgstr ""
703
+
704
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
705
+ msgstr ""
706
+
707
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
631
708
  msgstr ""
632
709
 
633
710
  msgid "Always Use Latest (currently %{version})"
634
- msgstr "Usar sempre o mais recente (atualmente, %{version})"
711
+ msgstr "Usar sempre o mais recente (atualmente %{version})"
635
712
 
636
713
  msgid "Always update to latest version"
637
714
  msgstr ""
@@ -639,20 +716,20 @@ msgstr ""
639
716
  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."
640
717
  msgstr "Quantidade de trabalhadores no pool para lidar com a execução de tarefas relacionadas a hosts. Quando definido como 0, a fila padrão será usada em vez disso. É necessário reiniciar o serviço dynflowd/foreman-tasks."
641
718
 
642
- msgid "An alternate content source can be added by using the \"Add source\" button above."
719
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
643
720
  msgstr ""
644
721
 
645
722
  msgid "An environment is missing a prior"
646
- msgstr "Um ambiente não tem um anterior"
723
+ msgstr "Um ambiente não tem um ambiente anterior"
647
724
 
648
725
  msgid "An error occurred during content removal. Could not find repository with id: %s"
649
- msgstr "Ocorreu um erro durante a exclusão do conteúdo. Não foi possível encontrar o repositório com a id: %s"
726
+ msgstr "Ocorreu um erro durante a remoção do conteúdo. Não foi possível encontrar um repositório com identificação: %s"
650
727
 
651
728
  msgid ""
652
729
  "An error occurred during the sync \n"
653
730
  "%{error_message}"
654
731
  msgstr ""
655
- "Ocorreu um erro durante a sincronização\n"
732
+ "Ocorreu um erro durante a sincronização \n"
656
733
  "%{error_message}"
657
734
 
658
735
  msgid ""
@@ -661,14 +738,11 @@ msgid ""
661
738
  msgstr ""
662
739
 
663
740
  msgid "Another component already includes content view with ID %s"
664
- msgstr "Outro componente já inclui a visualização de conteúdo com a ID %s"
741
+ msgstr "Outro componente já inclui a visualização do conteúdo com ID %s"
665
742
 
666
743
  msgid "Ansible Collection"
667
744
  msgstr "Coleção do Ansible"
668
745
 
669
- msgid "Ansible Collection Details"
670
- msgstr "Detalhes da coleção do Ansible"
671
-
672
746
  msgid "Ansible Collections"
673
747
  msgstr "Coleções do Ansible"
674
748
 
@@ -681,11 +755,17 @@ msgstr ""
681
755
  msgid "Applicability Batch Size"
682
756
  msgstr "Tamanho de lote de aplicabilidade"
683
757
 
758
+ msgid "Applicable"
759
+ msgstr "Aplicável"
760
+
684
761
  msgid "Applicable Content Hosts"
685
- msgstr "Hosts aplicáveis de conteúdo"
762
+ msgstr "Hosts de Conteúdo Aplicável"
763
+
764
+ msgid "Applicable errata apply to at least one package installed on the host."
765
+ msgstr ""
686
766
 
687
767
  msgid "Application"
688
- msgstr "Aplicativo"
768
+ msgstr "Aplicação"
689
769
 
690
770
  msgid "Apply"
691
771
  msgstr "Aplicar"
@@ -717,6 +797,9 @@ msgstr "Arquitetura"
717
797
  msgid "Architecture of content in the repository"
718
798
  msgstr ""
719
799
 
800
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
801
+ msgstr ""
802
+
720
803
  msgid "Architecture(s)"
721
804
  msgstr "Arquitetura(s)"
722
805
 
@@ -745,7 +828,7 @@ msgid "Array of content view component IDs to remove. Identifier of the componen
745
828
  msgstr "Matriz de IDs de componentes de visualização de conteúdo para remover. Identificador da associação do componente"
746
829
 
747
830
  msgid "Array of host ids"
748
- msgstr "Matriz de ids de host "
831
+ msgstr "Matriz de IDs de host "
749
832
 
750
833
  msgid "Array of local pool IDs. Only pools originating upstream are accepted."
751
834
  msgstr "Matriz de IDs de pool de local. Apenas pools com origem upstream são aceitos."
@@ -763,7 +846,7 @@ msgid "Array of uploads to import"
763
846
  msgstr "Matriz de carregamentos para importar"
764
847
 
765
848
  msgid "Artifact Id and relative path are needed to create content"
766
- msgstr "A Id do artefato e o caminho relativo são necessários para criar conteúdo"
849
+ msgstr "A ID do artefato e o caminho relativo são necessários para criar conteúdo"
767
850
 
768
851
  msgid "Artifacts"
769
852
  msgstr "Artefatos"
@@ -773,8 +856,9 @@ msgstr ""
773
856
 
774
857
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
775
858
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
776
- msgstr[0] "Atribuir o host %{count} sem um %{taxonomy_single} ao %{taxonomy_name}"
777
- msgstr[1] "Atribuir todos os %{count} hosts sem %{taxonomy_single} para %{taxonomy_name}"
859
+ msgstr[0] "Atribuir o host %{count} sem %{taxonomy_single} a %{taxonomy_name}"
860
+ msgstr[1] "Atribuir todos os anfitriões %{count} sem %{taxonomy_single} a %{taxonomy_name}"
861
+ msgstr[2] "Atribuir todos os anfitriões %{count} sem %{taxonomy_single} a %{taxonomy_name}"
778
862
 
779
863
  msgid "Assign the environment and content view to one or more hosts"
780
864
  msgstr "Atribuir o ambiente e a visualização de conteúdo a um ou mais hosts"
@@ -813,19 +897,22 @@ msgid "Attach subscriptions"
813
897
  msgstr "Anexar subscrições"
814
898
 
815
899
  msgid "Attach subscriptions to %s"
816
- msgstr "Anexar subscrições a %s"
900
+ msgstr "Anexar assinaturas a %s"
817
901
 
818
902
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
819
- msgstr "Tentativa de destruir o consumidor %s do candlepin, mas o consumidor não existe no candlepin"
903
+ msgstr "Tentativa de destruir o consumidor %s do candelabro, mas o consumidor não existe no candelabro"
820
904
 
821
905
  msgid "Auth URL requires Auth token be set."
822
906
  msgstr ""
823
907
 
908
+ msgid "Authentication type"
909
+ msgstr ""
910
+
824
911
  msgid "Author"
825
912
  msgstr "Autor"
826
913
 
827
914
  msgid "Auto Publish - Triggered by '%s'"
828
- msgstr "Publicação automática - Acionado por '%s'"
915
+ msgstr "Auto Publish - Disparado por '%s'"
829
916
 
830
917
  msgid "Auto attach subscriptions"
831
918
  msgstr "Anexar as subscrições automaticamente"
@@ -842,6 +929,9 @@ msgstr "Pesquisa automática"
842
929
  msgid "Autosearch delay"
843
930
  msgstr "Atraso da pesquisa automática"
844
931
 
932
+ msgid "Available"
933
+ msgstr "Disponível"
934
+
845
935
  msgid "Available Entitlements"
846
936
  msgstr "Direitos disponíveis"
847
937
 
@@ -849,10 +939,16 @@ msgid "Available Repositories"
849
939
  msgstr "Repositórios disponíveis"
850
940
 
851
941
  msgid "Available Schema Versions"
852
- msgstr "Versões disponíveis de esquema"
942
+ msgstr "Versões disponíveis do esquema"
943
+
944
+ msgid "Back"
945
+ msgstr "Retornar"
853
946
 
854
947
  msgid "Backend System Status"
855
- msgstr "Status do Sistema Backend"
948
+ msgstr "Estado do Sistema Backend"
949
+
950
+ msgid "Base URL"
951
+ msgstr ""
856
952
 
857
953
  msgid "Base URL for finding alternate content"
858
954
  msgstr ""
@@ -899,6 +995,9 @@ msgstr "Adicionar esta pesquisa a um marcador"
899
995
  msgid "Bookmarks marked as public are available to all users"
900
996
  msgstr ""
901
997
 
998
+ msgid "Both"
999
+ msgstr ""
1000
+
902
1001
  msgid "Both major and minor parameters have to be used to override a CV version"
903
1002
  msgstr "É necessário usar os parâmetros principais e secundários para substituir uma versão de CV"
904
1003
 
@@ -911,6 +1010,12 @@ msgstr "Bugfix"
911
1010
  msgid "Bugs"
912
1011
  msgstr ""
913
1012
 
1013
+ msgid "Bulk alternate content source delete has started."
1014
+ msgstr ""
1015
+
1016
+ msgid "Bulk alternate content source refresh has started."
1017
+ msgstr ""
1018
+
914
1019
  msgid "Bulk generate applicability for host %s"
915
1020
  msgstr ""
916
1021
 
@@ -939,13 +1044,13 @@ msgid "CDN configuration type. One of %s."
939
1044
  msgstr ""
940
1045
 
941
1046
  msgid "CDN loading error: %s not found"
942
- msgstr "CDN carregando erro: %s não foi encontrado"
1047
+ msgstr "Erro de carregamento CDN: %s não encontrado"
943
1048
 
944
1049
  msgid "CDN loading error: access denied to %s"
945
- msgstr "CDN carregando erro: %s acesso negado"
1050
+ msgstr "Erro de carregamento CDN: acesso negado a %s"
946
1051
 
947
1052
  msgid "CDN loading error: access forbidden to %s"
948
- msgstr "Erro ao carregar o CDN: acesso negado ao %s"
1053
+ msgstr "Erro de carregamento CDN: acesso proibido a %s"
949
1054
 
950
1055
  msgid "CVE identifier"
951
1056
  msgstr "Identificador do CVE"
@@ -966,7 +1071,7 @@ msgid "Can communicate with the Red Hat Portal for subscriptions."
966
1071
  msgstr ""
967
1072
 
968
1073
  msgid "Can not add product %s because it is disabled."
969
- msgstr "Não é possível adicionar o produto %s porque ele está desabilitado."
1074
+ msgstr "Não é possível adicionar o produto %s porque ele está desativado."
970
1075
 
971
1076
  msgid "Can only destroy on Yum Repositories."
972
1077
  msgstr "Só é possível destruir em Repositórios Yum."
@@ -978,7 +1083,7 @@ msgid "Can only upload to Yum Repositories."
978
1083
  msgstr "Só é possível fazer upload para Repositórios Yum."
979
1084
 
980
1085
  msgid "Can't update the '%s' environment"
981
- msgstr "Não é possível atualizar o ambiente \\\"%s\\\""
1086
+ msgstr "Não é possível atualizar o ambiente '%s"
982
1087
 
983
1088
  msgid "Cancel"
984
1089
  msgstr "Cancelar"
@@ -995,6 +1100,9 @@ msgstr "Cancelado"
995
1100
  msgid "Cancelled."
996
1101
  msgstr "Cancelado."
997
1102
 
1103
+ msgid "Candlepin"
1104
+ msgstr ""
1105
+
998
1106
  msgid "Candlepin Event"
999
1107
  msgstr "Evento do Candlepin "
1000
1108
 
@@ -1002,16 +1110,19 @@ msgid "Candlepin ID of pool to add"
1002
1110
  msgstr "ID do Candlepin do pool para adicionar"
1003
1111
 
1004
1112
  msgid "Candlepin consumer %s has already been removed"
1005
- msgstr "O consumidor do Candlepin %s já foi removido"
1113
+ msgstr "O Candlepin Consumer %s já foi removido"
1006
1114
 
1007
1115
  msgid "Candlepin is not running properly"
1008
1116
  msgstr "O Candlepin não está em execução corretamente"
1009
1117
 
1118
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1119
+ msgstr ""
1120
+
1010
1121
  msgid "Cannot add %s repositories to a content view."
1011
- msgstr "Não foi possível adicionar repositórios %s em uma visualização de conteúdo."
1122
+ msgstr "Não é possível adicionar %s repositórios a uma visualização de conteúdo."
1012
1123
 
1013
1124
  msgid "Cannot add a repository from an Organization other than %s."
1014
- msgstr "Não foi possível adicionar um repositório de uma Organização a não ser %s."
1125
+ msgstr "Não é possível adicionar um repositório de uma Organização que não seja %s."
1015
1126
 
1016
1127
  msgid "Cannot add component versions to a non-composite content view"
1017
1128
  msgstr "Não é possível adicionar versões de componente a uma visualização de conteúdo sem coleção"
@@ -1025,6 +1136,9 @@ msgstr "Não é possível adicionar coleções de versão a outra coleção de v
1025
1136
  msgid "Cannot add default content view to composite content view"
1026
1137
  msgstr "Não é possível adicionar visualização de conteúdo padrão a uma coleção de visualiação de conteúdo"
1027
1138
 
1139
+ msgid "Cannot add generated content view versions to composite content view"
1140
+ msgstr ""
1141
+
1028
1142
  msgid "Cannot add repositories to a composite content view"
1029
1143
  msgstr "Não fé possível adicionar repositórios a uma coleção de visualização de conteúdo "
1030
1144
 
@@ -1038,16 +1152,16 @@ msgid "Cannot clone into the Default Content View"
1038
1152
  msgstr "Não é possível clonar para a Visualização de conteúdo padrão"
1039
1153
 
1040
1154
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
1041
- msgstr "Não foi possível remover o '%{view}' por causa dos %{dependent}: %{names} associados."
1155
+ msgstr "Não é possível excluir '%{view}' devido ao associado %{dependent}: %{names}."
1042
1156
 
1043
1157
  msgid "Cannot delete Red Hat product: %{product}"
1044
1158
  msgstr "Não é possível excluir o produto Red Hat: %{product}"
1045
1159
 
1046
1160
  msgid "Cannot delete from %s, view does not exist there."
1047
- msgstr "Não foi possível remover de %s, não existe visualização lá."
1161
+ msgstr "Não é possível excluir do site %s, a visualização não existe lá."
1048
1162
 
1049
1163
  msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
1050
- msgstr "Não é possível excluir produtos com repositórios publicados em uma visualização de conteúdo. Produto: %{product}, %{view_versions}"
1164
+ msgstr "Não é possível excluir o produto com repositórios publicados em uma visão de conteúdo. Produto: %{product}, %{view_versions}"
1051
1165
 
1052
1166
  msgid "Cannot delete provider with attached products"
1053
1167
  msgstr "Não foi possível remover provedor com produtos anexados"
@@ -1062,13 +1176,13 @@ msgid "Cannot delete the last Location."
1062
1176
  msgstr ""
1063
1177
 
1064
1178
  msgid "Cannot delete version while it is in environment %s"
1065
- msgstr "Não é possível remover versão enquanto estiver nos ambientes: %s"
1179
+ msgstr "Não é possível excluir a versão enquanto ela estiver no ambiente %s"
1066
1180
 
1067
1181
  msgid "Cannot delete version while it is in environments: %s"
1068
- msgstr "Não é possível remover versão enquanto estiver nos ambientes: %s"
1182
+ msgstr "Não é possível excluir a versão enquanto ela estiver em ambientes: %s"
1069
1183
 
1070
1184
  msgid "Cannot delete version while it is in use by composite content views: %s"
1071
- msgstr "Não é possível remover a versão enquanto ela estiver sendo usada pela coleção de visualizações de conteúdo: %s"
1185
+ msgstr "Não é possível excluir a versão enquanto ela estiver em uso por visualizações de conteúdo composto: %s"
1072
1186
 
1073
1187
  msgid "Cannot delete view while it exists in environments"
1074
1188
  msgstr "Não foi possível remover visualização enquanto ele existir nos ambientes."
@@ -1083,7 +1197,7 @@ msgid "Cannot pass content units without content unit type"
1083
1197
  msgstr "Não é possível passar unidades de conteúdo sem o tipo de unidade de conteúdo"
1084
1198
 
1085
1199
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1086
- msgstr "Não foi possível desempenhar uma atualização incremental em uma Coleção de Versão de Visualização de Conteúdo (versão %{name} versão %{version}"
1200
+ msgstr "Não é possível realizar uma atualização incremental em uma versão Composite Content View (%{name} versão %{version}"
1087
1201
 
1088
1202
  msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1089
1203
  msgstr ""
@@ -1101,16 +1215,16 @@ msgid "Cannot publish default content view"
1101
1215
  msgstr "Não foi possível publicar visualização de conteúdo padrão"
1102
1216
 
1103
1217
  msgid "Cannot register a system to the '%s' environment"
1104
- msgstr "Não é possível registrar um sistema no ambiente \\\"%s\\\""
1218
+ msgstr "Não é possível registrar um sistema para o ambiente '%s"
1105
1219
 
1106
1220
  msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
1107
- msgstr "Não foi possível remover '%{view}' do ambiente '%{env}' devido ao %{dependent} associado: %{names}."
1221
+ msgstr "Não é possível remover '%{view}' do ambiente '%{env}' devido ao associado %{dependent}: %{names}."
1108
1222
 
1109
1223
  msgid "Cannot remove content from a non-custom repository"
1110
1224
  msgstr "Não foi possível remover conteúdo de um repositório não padronizado."
1111
1225
 
1112
1226
  msgid "Cannot remove content view from environment. Content view '%{view}' is not in lifecycle environment '%{env}'."
1113
- msgstr "Não foi possível remover visualização de conteúdo de um ambiente. Visualização de conteúdo '%{view}' não está no ambiente de ciclo de vida '%{env}'."
1227
+ msgstr "Não é possível remover a visualização do conteúdo do ambiente. A visualização do conteúdo '%{view}' não está no ambiente do ciclo de vida '%{env}'."
1114
1228
 
1115
1229
  msgid "Cannot set attribute %{attr} for content type %{type}"
1116
1230
  msgstr "Não é possível definir o atributo %{attr} para o tipo de conteúdo %{type}"
@@ -1118,8 +1232,8 @@ msgstr "Não é possível definir o atributo %{attr} para o tipo de conteúdo %{
1118
1232
  msgid "Cannot set auto publish to a non-composite content view"
1119
1233
  msgstr "Não é possível definir a publicação automática para uma visualização de conteúdo sem coleção"
1120
1234
 
1121
- msgid "Cannot skip metadata check on non-yum repositories."
1122
- msgstr "Não é possível ignorar a verificação de metadados em repositórios que não sejam yum."
1235
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1236
+ msgstr ""
1123
1237
 
1124
1238
  msgid "Cannot specify components for non-composite views"
1125
1239
  msgstr "Não é possível especificar componentes para visualizações sem coleção"
@@ -1140,7 +1254,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1140
1254
  msgstr "Não é possível validar conteúdos em repositórios que não sejam yum/deb."
1141
1255
 
1142
1256
  msgid "Capacity"
1143
- msgstr ""
1257
+ msgstr "Capacidade"
1144
1258
 
1145
1259
  msgid "Change Content Source"
1146
1260
  msgstr ""
@@ -1154,6 +1268,9 @@ msgstr ""
1154
1268
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1155
1269
  msgstr "Verifique se é possível estabelecer conexão com o Red Hat Subscription Management."
1156
1270
 
1271
+ msgid "Check if the specified organization has Simple Content Access enabled"
1272
+ msgstr ""
1273
+
1157
1274
  msgid "Check if the specified organization is eligible for Simple Content Access"
1158
1275
  msgstr ""
1159
1276
 
@@ -1175,9 +1292,18 @@ msgstr "Checksum do repositório, atualmente 'sha1' e 'sha256' são suportados"
1175
1292
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1176
1293
  msgstr "O tipo de checksum não pode ser definido para repositórios yum com política de download sob demanda."
1177
1294
 
1295
+ msgid "Choose content credentials if required for this RHUI source."
1296
+ msgstr ""
1297
+
1178
1298
  msgid "Clear any previous registration and run subscription-manager with --force."
1179
1299
  msgstr ""
1180
1300
 
1301
+ msgid "Clear filters"
1302
+ msgstr "Filtros transparentes"
1303
+
1304
+ msgid "Clear search"
1305
+ msgstr ""
1306
+
1181
1307
  msgid "Click here to go to the tasks page for the task."
1182
1308
  msgstr "Clique aqui para ir à página de tarefas da tarefa."
1183
1309
 
@@ -1199,6 +1325,9 @@ msgstr "Atualização de perfil combinado"
1199
1325
  msgid "Combined Profile Update for %s"
1200
1326
  msgstr "Atualização de perfil combinado para %s"
1201
1327
 
1328
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1329
+ msgstr ""
1330
+
1202
1331
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1203
1332
  msgstr ""
1204
1333
 
@@ -1208,16 +1337,16 @@ msgstr ""
1208
1337
  msgid "Comma-separated list of tags to sync for a container image repository"
1209
1338
  msgstr ""
1210
1339
 
1340
+ msgid "Compare"
1341
+ msgstr ""
1342
+
1211
1343
  msgid "Component"
1212
1344
  msgstr "Componente"
1213
1345
 
1214
1346
  msgid "Component Content View"
1215
1347
  msgstr ""
1216
1348
 
1217
- msgid "Component content view"
1218
- msgstr ""
1219
-
1220
- msgid "Component content views"
1349
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1221
1350
  msgstr ""
1222
1351
 
1223
1352
  msgid "Components"
@@ -1230,7 +1359,7 @@ msgid "Composite Content View"
1230
1359
  msgstr ""
1231
1360
 
1232
1361
  msgid "Composite Content View '%{subject}' failed auto-publish"
1233
- msgstr "Falha ao publicar automaticamente coleção de Visualização de conteúdo '%{subject}'"
1362
+ msgstr "Visualização de conteúdo composto '%{subject}' falha na auto-publicação"
1234
1363
 
1235
1364
  msgid "Composite content view"
1236
1365
  msgstr "Coleção de Visualização de Conteúdo "
@@ -1250,7 +1379,7 @@ msgstr "Confirmar exclusão de manifesto"
1250
1379
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1251
1380
  msgstr "Considere mudar o Padrão de nome de registro do Ambiente de ciclo de vida para algo mais específico."
1252
1381
 
1253
- msgid "Consisting of multiple component content views"
1382
+ msgid "Consisting of multiple content views"
1254
1383
  msgstr ""
1255
1384
 
1256
1385
  msgid "Consists of content views"
@@ -1275,7 +1404,7 @@ msgid "Container Image Tags"
1275
1404
  msgstr "Tags de imagem de contêiner"
1276
1405
 
1277
1406
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
1278
- msgstr "O repositório de imagem de contêiner '%{repo}' está presente em várias visualizações de conteúdo de componentes."
1407
+ msgstr "O Container Image repo '%{repo}' está presente em várias visualizações de conteúdo de componentes."
1279
1408
 
1280
1409
  msgid "Container Images"
1281
1410
  msgstr "Imagens de contêiner"
@@ -1338,13 +1467,13 @@ msgid "Content View"
1338
1467
  msgstr "Visão do conteúdo"
1339
1468
 
1340
1469
  msgid "Content View %{view}: Versions: %{versions}"
1341
- msgstr "Visualização de conteúdo %{view}: Versões: %{versions}"
1470
+ msgstr "Visualizar conteúdo %{view}: Versões: %{versions}"
1342
1471
 
1343
1472
  msgid "Content View Details"
1344
1473
  msgstr "Detalhes de visualização de conteúdo"
1345
1474
 
1346
1475
  msgid "Content View Filter id"
1347
- msgstr "Id do Filtro de Visualização de Conteúdo "
1476
+ msgstr "ID do Filtro de Visualização de Conteúdo "
1348
1477
 
1349
1478
  msgid "Content View Filter identifier"
1350
1479
  msgstr "Identificador de filtro de visualização de conteúdo"
@@ -1356,10 +1485,10 @@ msgid "Content View Name"
1356
1485
  msgstr "Nome de visualização de conteúdo"
1357
1486
 
1358
1487
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1359
- msgstr "A Versão de Visualização de Conteúdo %{id} não está em todos os ambientes especificados %{envs}"
1488
+ msgstr "Versão do conteúdo %{id} não em todos os ambientes especificados %{envs}"
1360
1489
 
1361
1490
  msgid "Content View Version Ids to perform an incremental update on. May contain composites as well as one or more components to update."
1362
- msgstr "Ids da Versão de Visualização de Conteúdo para receberem uma atualização incremental. Podem conter coleções assim como um ou mais componentes para serem atualizados. "
1491
+ msgstr "IDs da Versão de Visualização de Conteúdo para receberem uma atualização incremental. Podem conter coleções assim como um ou mais componentes para serem atualizados. "
1363
1492
 
1364
1493
  msgid "Content View Version identifier"
1365
1494
  msgstr "Identificador de versão de visualização de conteúdo"
@@ -1370,8 +1499,8 @@ msgstr "Versão de visualização de conteúdo não definida"
1370
1499
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1371
1500
  msgstr ""
1372
1501
 
1373
- msgid "Content View and Environment not set for registration."
1374
- msgstr "O Ambiente e a Visualização de Conteúdo não foram definidos para registro. "
1502
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1503
+ msgstr ""
1375
1504
 
1376
1505
  msgid "Content View id"
1377
1506
  msgstr ""
@@ -1382,6 +1511,21 @@ msgstr ""
1382
1511
  msgid "Content Views"
1383
1512
  msgstr "Exibições de conteúdo"
1384
1513
 
1514
+ msgid "Content cannot be imported into a Composite Content View. "
1515
+ msgstr ""
1516
+
1517
+ msgid "Content credential"
1518
+ msgstr ""
1519
+
1520
+ msgid "Content credentials"
1521
+ msgstr ""
1522
+
1523
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1524
+ msgstr ""
1525
+
1526
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1527
+ msgstr ""
1528
+
1385
1529
  msgid "Content files to upload. Can be a single file or array of files."
1386
1530
  msgstr "Arquivos de conteúdo para carregar. Pode ser um arquivo único ou matriz de arquivos."
1387
1531
 
@@ -1400,14 +1544,14 @@ msgstr ""
1400
1544
  msgid "Content override search parameters"
1401
1545
  msgstr ""
1402
1546
 
1547
+ msgid "Content source"
1548
+ msgstr ""
1549
+
1403
1550
  msgid "Content source ID"
1404
1551
  msgstr "ID da fonte de conteúdo"
1405
1552
 
1406
- msgid "Content source successfully updated."
1407
- msgstr ""
1408
-
1409
1553
  msgid "Content source was not set for host '%{host}'"
1410
- msgstr "A fonte de conteúdo não foi definida para o host '%{host}'"
1554
+ msgstr "A fonte de conteúdo não foi definida para o host '%{host}'."
1411
1555
 
1412
1556
  msgid "Content type"
1413
1557
  msgstr ""
@@ -1424,20 +1568,32 @@ msgstr ""
1424
1568
  msgid "Content view ${name} created"
1425
1569
  msgstr ""
1426
1570
 
1571
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1572
+ msgstr ""
1573
+
1427
1574
  msgid "Content view '%{view}' is not in environment '%{env}'"
1428
- msgstr "Visualização de Conteúdo '%{view}' não está no ambiente '%{env}'"
1575
+ msgstr "Vista do conteúdo '%{view}' não está no ambiente '%{env}'"
1429
1576
 
1430
1577
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1431
- msgstr "Visualização de Conteúdo '%{view}' não está em ambiente de ciclo de vida '%{env}'."
1578
+ msgstr "A visualização do conteúdo '%{view}' não está em ambiente de ciclo de vida '%{env}'."
1432
1579
 
1433
1580
  msgid "Content view ID"
1434
1581
  msgstr "ID de visualização de conteúdo"
1435
1582
 
1583
+ msgid "Content view and environment not set for registration."
1584
+ msgstr ""
1585
+
1436
1586
  msgid "Content view details"
1437
1587
  msgstr ""
1438
1588
 
1589
+ msgid "Content view environments and activation key must all belong to the same organization"
1590
+ msgstr ""
1591
+
1592
+ msgid "Content view environments must have both a content view and an environment"
1593
+ msgstr ""
1594
+
1439
1595
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1440
- msgstr "A visualização de conteúdo tem o rótulo de repositório '%s', que não está especificado no parâmetro repos_units."
1596
+ msgstr "A visualização do conteúdo tem a etiqueta de repositório '%s' que não está especificada no parâmetro repos_units."
1441
1597
 
1442
1598
  msgid "Content view identifier"
1443
1599
  msgstr "Identificador de visualização de conteúdo"
@@ -1445,6 +1601,9 @@ msgstr "Identificador de visualização de conteúdo"
1445
1601
  msgid "Content view label"
1446
1602
  msgstr "Rótulo de Visualização de Conteúdo"
1447
1603
 
1604
+ msgid "Content view must be specified"
1605
+ msgstr ""
1606
+
1448
1607
  msgid "Content view name"
1449
1608
  msgstr ""
1450
1609
 
@@ -1466,6 +1625,9 @@ msgstr ""
1466
1625
  msgid "Content views"
1467
1626
  msgstr ""
1468
1627
 
1628
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1629
+ msgstr ""
1630
+
1469
1631
  msgid "Content_Host_Status"
1470
1632
  msgstr "Content_Host_Status"
1471
1633
 
@@ -1494,22 +1656,25 @@ msgid "Copy content view"
1494
1656
  msgstr ""
1495
1657
 
1496
1658
  msgid "Copy to clipboard"
1497
- msgstr ""
1659
+ msgstr "Copiar para área de transferência"
1498
1660
 
1499
1661
  msgid "Copy version units to library"
1500
- msgstr ""
1662
+ msgstr "Copiar unidades da versão para a biblioteca"
1663
+
1664
+ msgid "Cores per socket"
1665
+ msgstr "Núcleos por soquete"
1501
1666
 
1502
1667
  msgid "Cores: %s"
1503
1668
  msgstr "Núcleos: %s"
1504
1669
 
1505
1670
  msgid "Could not delete organization '%s'."
1506
- msgstr "Não foi possível remover organização \"\\%s\\\"."
1671
+ msgstr "Não foi possível excluir a organização '%s'."
1507
1672
 
1508
1673
  msgid "Could not find %{content} with id '%{id}' in repository."
1509
- msgstr "Não foi possível encontrar %{content} com o id '%{id}' no repositório."
1674
+ msgstr "Não foi possível encontrar %{content} com id '%{id}' em repositório."
1510
1675
 
1511
1676
  msgid "Could not find %{count} errata. Only found: %{found}"
1512
- msgstr "Não foi possível encontrar %{count} erratas. Foram encontradas apenas: %{found}"
1677
+ msgstr "Não foi possível encontrar %{count} erratas. Somente encontrada: %{found}"
1513
1678
 
1514
1679
  msgid "Could not find %{name} resource with id %{id}. %{perms_message}"
1515
1680
  msgstr ""
@@ -1521,16 +1686,16 @@ msgid "Could not find Environment with ids: %s"
1521
1686
  msgstr "Não foi possível encontrar Ambiente com ids: %s"
1522
1687
 
1523
1688
  msgid "Could not find Lifecycle Environment with id '%{id}'."
1524
- msgstr "Não foi possível encontrar Ambiente de Ciclo de Vida com o id '%{id}'."
1689
+ msgstr "Não foi possível encontrar o Ambiente do Ciclo de Vida com id '%{id}'."
1525
1690
 
1526
1691
  msgid "Could not find a host with id %s"
1527
- msgstr "Não foi possível encontrar um host com id %s"
1692
+ msgstr "Não foi possível encontrar um anfitrião com id %s"
1528
1693
 
1529
1694
  msgid "Could not find a smart proxy with pulp feature."
1530
1695
  msgstr "Não foi possível encontrar um proxy inteligente com o recurso pulp."
1531
1696
 
1532
1697
  msgid "Could not find all specified errata ids: %s"
1533
- msgstr "Não foi possível encontrar todos os ids de errata especificados: %s"
1698
+ msgstr "Não foi possível encontrar todas as identificações de erratas especificadas: %s"
1534
1699
 
1535
1700
  msgid "Could not find environments for promotion"
1536
1701
  msgstr "Não foi possível encontrar ambientes para promoção"
@@ -1542,76 +1707,82 @@ msgid "Couldn't establish a connection to %s"
1542
1707
  msgstr ""
1543
1708
 
1544
1709
  msgid "Couldn't find %{content_type} with id '%{id}'"
1545
- msgstr "Não foi possível encontrar %{content_type} com a id '%{id}'"
1710
+ msgstr "Não foi possível encontrar %{content_type} com id '%{id}'"
1546
1711
 
1547
1712
  msgid "Couldn't find %{type} Filter with id %{id}"
1548
- msgstr "Não' foi possível encontrar o Filtro %{type} com o id %{id}"
1713
+ msgstr "Não foi possível encontrar %{type} Filtro com id %{id}"
1549
1714
 
1550
1715
  msgid "Couldn't find ContentViewFilter with id=%s"
1551
- msgstr "Não foi possível encontrar ContentViewFilter with id=%s"
1716
+ msgstr "Não foi possível encontrar ContentViewFilter com id=%s"
1552
1717
 
1553
1718
  msgid "Couldn't find Organization '%s'."
1554
- msgstr "Não foi possível encontrar Organização '%s'."
1719
+ msgstr "Não foi possível encontrar a Organização '%s'."
1555
1720
 
1556
1721
  msgid "Couldn't find activation key '%s'"
1557
- msgstr "Não foi possível encontrar chave de ativação \"%s\""
1722
+ msgstr "Não foi encontrada a chave de ativação '%s'"
1558
1723
 
1559
1724
  msgid "Couldn't find activation key content view id '%s'"
1560
- msgstr "Não foi possível encontrar o ID da visualização de conteúdo da chave de ativação '%s'."
1725
+ msgstr "Não foi possível encontrar o conteúdo da chave de ativação id '%s'"
1561
1726
 
1562
1727
  msgid "Couldn't find activation key environment '%s'"
1563
- msgstr "Não foi possível encontrar o ambiente da chave de ativação '%s'."
1728
+ msgstr "Não foi possível encontrar o ambiente da chave de ativação '%s'"
1564
1729
 
1565
1730
  msgid "Couldn't find consumer '%s'"
1566
- msgstr "Não foi possível encontrar consumidor \"%s\""
1731
+ msgstr "Não consegui encontrar o consumidor '%s'"
1567
1732
 
1568
1733
  msgid "Couldn't find content host content view id '%s'"
1569
- msgstr "Não foi possível encontrar ID da visualização de conteúdo do host de conteúdo '%s'."
1734
+ msgstr "Não foi possível encontrar o conteúdo do host de conteúdo id '%s'"
1570
1735
 
1571
1736
  msgid "Couldn't find content host environment '%s'"
1572
- msgstr "Não foi possível encontrar ambiente do host de conteúdo '%s'."
1737
+ msgstr "Não foi possível encontrar o ambiente de hospedagem de conteúdo '%s'"
1573
1738
 
1574
1739
  msgid "Couldn't find content view '%s'"
1575
- msgstr "Não foi possível encontrar visualização de conteúdo '%s'"
1740
+ msgstr "Não foi possível encontrar a visualização do conteúdo '%s'"
1576
1741
 
1577
1742
  msgid "Couldn't find content view version '%s'"
1578
- msgstr "Não foi possível encontrar versão da visualização de conteúdo '%s'"
1743
+ msgstr "Não foi possível encontrar a versão de visualização do conteúdo '%s'"
1579
1744
 
1580
1745
  msgid "Couldn't find content view versions '%s'"
1581
- msgstr "Não foi possível encontrar versões de visualização de conteúdo '%s'"
1746
+ msgstr "Não foi possível encontrar as versões de visualização de conteúdo '%s'"
1582
1747
 
1583
1748
  msgid "Couldn't find content view with id: '%s'"
1584
1749
  msgstr ""
1585
1750
 
1586
1751
  msgid "Couldn't find environment '%s'"
1587
- msgstr "Não foi possível encontrar ambiente \"%s\""
1752
+ msgstr "Não foi possível encontrar o ambiente '%s'"
1588
1753
 
1589
1754
  msgid "Couldn't find errata ids '%s'"
1590
- msgstr "Não foi possível encontrar id de errata \"%s\""
1755
+ msgstr "Não foi possível encontrar erratas ids '%s'"
1591
1756
 
1592
1757
  msgid "Couldn't find host collection '%s'"
1593
- msgstr "Não foi possível encontrar coleção de host '%s'."
1758
+ msgstr "Não foi possível encontrar a coleção de anfitriões '%s'"
1594
1759
 
1595
1760
  msgid "Couldn't find host with host id '%s'"
1596
- msgstr "Não foi possível localizar host com id de host '%s'"
1761
+ msgstr "Não foi possível encontrar um anfitrião com id '%s'"
1597
1762
 
1598
1763
  msgid "Couldn't find organization '%s'"
1599
- msgstr "Não foi possível encontrar organização \"\\%s\\\""
1764
+ msgstr "Não consegui encontrar organização '%s'"
1600
1765
 
1601
1766
  msgid "Couldn't find prior-environment '%s'"
1602
- msgstr "Não foi possível encontrar ambiente anterior \"%s\""
1767
+ msgstr "Não foi possível encontrar o \"prior-environment\"%s"
1603
1768
 
1604
1769
  msgid "Couldn't find product with id '%s'"
1605
- msgstr "Não foi possível encontrar produto com ID \"%s\""
1770
+ msgstr "Não foi possível encontrar produto com id '%s'"
1771
+
1772
+ msgid "Couldn't find products with id '%s'"
1773
+ msgstr ""
1606
1774
 
1607
1775
  msgid "Couldn't find repository '%s'"
1608
- msgstr "Não foi possível encontrar repositório \"%s\""
1776
+ msgstr "Não foi possível encontrar o repositório '%s'"
1609
1777
 
1610
1778
  msgid "Couldn't find smart proxies with id '%s'"
1611
1779
  msgstr ""
1612
1780
 
1613
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1614
- msgstr "Não foi possível encontrar a Visualização de conteúdo e o Ambiente de ciclo de vida especificados."
1781
+ msgid "Couldn't find smart proxies with name '%s'"
1782
+ msgstr ""
1783
+
1784
+ msgid "Couldn't find specified content view and lifecycle environment."
1785
+ msgstr ""
1615
1786
 
1616
1787
  msgid "Couldn't find subject of synchronization"
1617
1788
  msgstr "Não foi possível encontrar tópico de sincronização"
@@ -1622,14 +1793,17 @@ msgstr "Contagem"
1622
1793
  msgid "Create"
1623
1794
  msgstr "Criar"
1624
1795
 
1796
+ msgid "Create ACS"
1797
+ msgstr ""
1798
+
1625
1799
  msgid "Create Alternate Content Source"
1626
1800
  msgstr ""
1627
1801
 
1628
1802
  msgid "Create Export History"
1629
- msgstr ""
1803
+ msgstr "Criar histórico de exportação"
1630
1804
 
1631
1805
  msgid "Create Import History"
1632
- msgstr ""
1806
+ msgstr "Criar histórico de importação"
1633
1807
 
1634
1808
  msgid "Create Package Group"
1635
1809
  msgstr "Criar grupo de pacotes"
@@ -1637,12 +1811,18 @@ msgstr "Criar grupo de pacotes"
1637
1811
  msgid "Create Repositories"
1638
1812
  msgstr "Criar repositórios"
1639
1813
 
1814
+ msgid "Create Syncable Export History"
1815
+ msgstr ""
1816
+
1640
1817
  msgid "Create a Content Credential"
1641
1818
  msgstr ""
1642
1819
 
1643
1820
  msgid "Create a content view"
1644
1821
  msgstr "Criar uma visualização de conteúdo "
1645
1822
 
1823
+ msgid "Create a custom product"
1824
+ msgstr ""
1825
+
1646
1826
  msgid "Create a custom repository"
1647
1827
  msgstr "Criar um repositório personalizado "
1648
1828
 
@@ -1661,12 +1841,12 @@ msgstr "Criar um produto"
1661
1841
  msgid "Create a sync plan"
1662
1842
  msgstr "Criar um plano de sinc"
1663
1843
 
1664
- msgid "Create an ACS"
1665
- msgstr ""
1666
-
1667
1844
  msgid "Create an activation key"
1668
1845
  msgstr "Criar uma chave de ativação"
1669
1846
 
1847
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1848
+ msgstr ""
1849
+
1670
1850
  msgid "Create an environment"
1671
1851
  msgstr "Criar um ambiente"
1672
1852
 
@@ -1676,23 +1856,38 @@ msgstr "Criar um ambiente em uma organização"
1676
1856
  msgid "Create an upload request"
1677
1857
  msgstr "Criar uma requisição de carregamento"
1678
1858
 
1859
+ msgid "Create content credentials with the generated SSL certificate and key."
1860
+ msgstr ""
1861
+
1679
1862
  msgid "Create content view"
1680
1863
  msgstr ""
1681
1864
 
1682
1865
  msgid "Create filter"
1683
1866
  msgstr ""
1684
1867
 
1868
+ msgid "Create host collection"
1869
+ msgstr ""
1870
+
1685
1871
  msgid "Create organization"
1686
1872
  msgstr "Criar organização"
1687
1873
 
1874
+ msgid "Create package filter rule"
1875
+ msgstr ""
1876
+
1877
+ msgid "Create rule"
1878
+ msgstr ""
1879
+
1880
+ msgid "Credentials"
1881
+ msgstr "Credenciais"
1882
+
1688
1883
  msgid "Critical"
1689
1884
  msgstr "Crítico"
1690
1885
 
1691
1886
  msgid "Cron expression is not valid!"
1692
1887
  msgstr "A expressão cron não é válida!"
1693
1888
 
1694
- msgid "Current organization has no manifest imported."
1695
- msgstr "A organização atual não tem nenhum manifesto importado."
1889
+ msgid "Current organization does not have a manifest imported."
1890
+ msgstr ""
1696
1891
 
1697
1892
  msgid "Current organization is not set."
1698
1893
  msgstr "A organização atual não está definida."
@@ -1700,6 +1895,12 @@ msgstr "A organização atual não está definida."
1700
1895
  msgid "Current organization not set."
1701
1896
  msgstr "Organização atual não definida."
1702
1897
 
1898
+ msgid "Custom"
1899
+ msgstr ""
1900
+
1901
+ msgid "Custom CDN"
1902
+ msgstr ""
1903
+
1703
1904
  msgid "Custom Content Repositories"
1704
1905
  msgstr "Repositórios de Conteúdo Padronizado"
1705
1906
 
@@ -1712,6 +1913,12 @@ msgstr "Repositórios padronizados não podem ser desabilitados"
1712
1913
  msgid "Customize with Rex"
1713
1914
  msgstr ""
1714
1915
 
1916
+ msgid "DEB name"
1917
+ msgstr ""
1918
+
1919
+ msgid "DEB package updates"
1920
+ msgstr ""
1921
+
1715
1922
  msgid "Database connection"
1716
1923
  msgstr "Conexão do banco de dados"
1717
1924
 
@@ -1727,12 +1934,18 @@ msgstr "Dias restantes"
1727
1934
  msgid "Days from Now"
1728
1935
  msgstr "Daqui a partir de agora"
1729
1936
 
1937
+ msgid "Deb"
1938
+ msgstr "Deb"
1939
+
1730
1940
  msgid "Deb Package"
1731
1941
  msgstr "Pacote deb"
1732
1942
 
1733
1943
  msgid "Deb Packages"
1734
1944
  msgstr "Pacotes deb"
1735
1945
 
1946
+ msgid "Deb name"
1947
+ msgstr ""
1948
+
1736
1949
  msgid "Deb package identifiers to filter content by"
1737
1950
  msgstr ""
1738
1951
 
@@ -1758,13 +1971,13 @@ msgid "Default Location where new subscribed hosts will put upon registration"
1758
1971
  msgstr "Local padrão onde os novos hosts subscritos serão colocados após o registro"
1759
1972
 
1760
1973
  msgid "Default PXEGrub template for new Operating Systems created from synced content"
1761
- msgstr "Modelo PXEGrub padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1974
+ msgstr "Template PXEGrub padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1762
1975
 
1763
1976
  msgid "Default PXEGrub2 template for new Operating Systems created from synced content"
1764
- msgstr "Modelo PXEGrub2 padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1977
+ msgstr "Template PXEGrub2 padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1765
1978
 
1766
1979
  msgid "Default PXELinux template for new Operating Systems created from synced content"
1767
- msgstr "Modelo PXELinux padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1980
+ msgstr "Template PXELinux padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1768
1981
 
1769
1982
  msgid "Default Red Hat Repository download policy"
1770
1983
  msgstr "Política de download de Repositório Red Hat padrão"
@@ -1788,13 +2001,13 @@ msgid "Default download policy for enabled Red Hat repositories (either 'immedia
1788
2001
  msgstr ""
1789
2002
 
1790
2003
  msgid "Default finish template for new Operating Systems created from synced content"
1791
- msgstr "Modelo de encerramento padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
2004
+ msgstr "Template de encerramento padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1792
2005
 
1793
2006
  msgid "Default iPXE template for new Operating Systems created from synced content"
1794
- msgstr "Modelo iPXE padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
2007
+ msgstr "Template iPXE padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1795
2008
 
1796
2009
  msgid "Default kexec template for new Operating Systems created from synced content"
1797
- msgstr "Modelo kexec padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
2010
+ msgstr "Template kexec padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1798
2011
 
1799
2012
  msgid "Default location for subscribed hosts"
1800
2013
  msgstr ""
@@ -1809,31 +2022,31 @@ msgid "Default provisioning template for new Atomic Operating Systems created fr
1809
2022
  msgstr "Tabela de provisionamento padrão para novos sistemas operacionais Atomic criados a partir de conteúdo sincronizado"
1810
2023
 
1811
2024
  msgid "Default synced OS Atomic template"
1812
- msgstr "Modelo de SO Atomic sincronizado padrão"
2025
+ msgstr "Template de SO Atomic sincronizado padrão"
1813
2026
 
1814
2027
  msgid "Default synced OS PXEGrub template"
1815
- msgstr "Modelo de SO PXEGrub sincronizado padrão"
2028
+ msgstr "Template de SO PXEGrub sincronizado padrão"
1816
2029
 
1817
2030
  msgid "Default synced OS PXEGrub2 template"
1818
- msgstr "Modelo de SO PXEGrub2 sincronizado padrão"
2031
+ msgstr "Template de SO PXEGrub2 sincronizado padrão"
1819
2032
 
1820
2033
  msgid "Default synced OS PXELinux template"
1821
- msgstr "Modelo de SO PXELinux sincronizado padrão"
2034
+ msgstr "Template de SO PXELinux sincronizado padrão"
1822
2035
 
1823
2036
  msgid "Default synced OS finish template"
1824
- msgstr "Modelo de encerramento de SO sincronizado padrão"
2037
+ msgstr "Template de encerramento de SO sincronizado padrão"
1825
2038
 
1826
2039
  msgid "Default synced OS iPXE template"
1827
- msgstr "Modelo de SO iPXE sincronizado padrão"
2040
+ msgstr "Template de SO iPXE sincronizado padrão"
1828
2041
 
1829
2042
  msgid "Default synced OS kexec template"
1830
- msgstr "Modelo de SO kexec sincronizado padrão"
2043
+ msgstr "Template de SO kexec sincronizado padrão"
1831
2044
 
1832
2045
  msgid "Default synced OS partition table"
1833
2046
  msgstr "Tabela de partição de SO sincronizada padrão"
1834
2047
 
1835
2048
  msgid "Default synced OS provisioning template"
1836
- msgstr "Modelo de provisionamento de SO sincronizado padrão"
2049
+ msgstr "Template de provisionamento de SO sincronizado padrão"
1837
2050
 
1838
2051
  msgid "Default synced OS user-data"
1839
2052
  msgstr "Dados de usuário de SO sincronizados padrão"
@@ -1841,6 +2054,12 @@ msgstr "Dados de usuário de SO sincronizados padrão"
1841
2054
  msgid "Default user data for new Operating Systems created from synced content"
1842
2055
  msgstr "Dados de usuário padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
1843
2056
 
2057
+ msgid "Define RHUI repository paths with guided steps."
2058
+ msgstr ""
2059
+
2060
+ msgid "Define repositories structured under a common web or filesystem path."
2061
+ msgstr ""
2062
+
1844
2063
  msgid "Delete"
1845
2064
  msgstr "Excluir"
1846
2065
 
@@ -1905,19 +2124,19 @@ msgid "Delete versions"
1905
2124
  msgstr ""
1906
2125
 
1907
2126
  msgid "Deleted consumer '%s'"
1908
- msgstr "Consumidor removido '%s'"
2127
+ msgstr "Consumidor excluído '%s'"
1909
2128
 
1910
2129
  msgid "Deleted from "
1911
2130
  msgstr ""
1912
2131
 
1913
2132
  msgid "Deleted from %{environment}"
1914
- msgstr "Remover do %{environment}"
2133
+ msgstr "Eliminado de %{environment}"
1915
2134
 
1916
2135
  msgid "Deleting content view : "
1917
2136
  msgstr ""
1918
2137
 
1919
2138
  msgid "Deleting manifest in '%{subject}' failed."
1920
- msgstr "Falha ao excluir manifesto em '%{subject}'."
2139
+ msgstr "A eliminação do manifesto em '%{subject}' falhou."
1921
2140
 
1922
2141
  msgid "Deleting version {versionList}"
1923
2142
  msgstr ""
@@ -1959,7 +2178,7 @@ msgid "Destroy Content Host"
1959
2178
  msgstr "Destruir Host de Conteúdo"
1960
2179
 
1961
2180
  msgid "Destroy Content Host %s"
1962
- msgstr "Destruir host de conteúdo %s"
2181
+ msgstr "Destroy Content Host %s"
1963
2182
 
1964
2183
  msgid "Destroy a Content Credential"
1965
2184
  msgstr ""
@@ -1979,7 +2198,7 @@ msgstr "Destruir um plano de sinc"
1979
2198
  msgid "Destroy an activation key"
1980
2199
  msgstr "Destruir uma chave de ativação"
1981
2200
 
1982
- msgid "Destroy an alternate content source"
2201
+ msgid "Destroy an alternate content source."
1983
2202
  msgstr ""
1984
2203
 
1985
2204
  msgid "Destroy an environment"
@@ -1988,6 +2207,9 @@ msgstr "Destruir um ambiente "
1988
2207
  msgid "Destroy an environment in an organization"
1989
2208
  msgstr "Destruir um ambiente em uma organização "
1990
2209
 
2210
+ msgid "Destroy one or more alternate content sources"
2211
+ msgstr ""
2212
+
1991
2213
  msgid "Destroy one or more hosts"
1992
2214
  msgstr "Destruir um ou mais hosts"
1993
2215
 
@@ -2039,6 +2261,9 @@ msgstr "Descubra"
2039
2261
  msgid "Discover Repositories"
2040
2262
  msgstr "Descobrir Repositórios "
2041
2263
 
2264
+ msgid "Distribute archived content view versions"
2265
+ msgstr ""
2266
+
2042
2267
  msgid "Do not include this array of content views"
2043
2268
  msgstr "Não inclua essa matriz de visualização de conteúdo "
2044
2269
 
@@ -2049,10 +2274,10 @@ msgid "Do not wait for the update action to finish. Default: true"
2049
2274
  msgstr "Não espere o término da ação de atualização. Padrão: verdadeiro"
2050
2275
 
2051
2276
  msgid "Domain IDs"
2052
- msgstr " IDs de Domínio"
2277
+ msgstr "IDs de Domínio"
2053
2278
 
2054
2279
  msgid "Download Policy of the capsule, must be one of %s"
2055
- msgstr "Política de download da cápsula, deve ser uma de %s"
2280
+ msgstr "A política de download da cápsula, deve ser uma das %s"
2056
2281
 
2057
2282
  msgid "Download a debug certificate"
2058
2283
  msgstr "Baixar um certificado de depuração "
@@ -2075,15 +2300,36 @@ msgstr "Editar"
2075
2300
  msgid "Edit RPM rule"
2076
2301
  msgstr ""
2077
2302
 
2303
+ msgid "Edit URL and subpaths"
2304
+ msgstr ""
2305
+
2078
2306
  msgid "Edit content view assignment"
2079
2307
  msgstr ""
2080
2308
 
2309
+ msgid "Edit credentials"
2310
+ msgstr ""
2311
+
2312
+ msgid "Edit details"
2313
+ msgstr ""
2314
+
2081
2315
  msgid "Edit filter rule"
2082
2316
  msgstr ""
2083
2317
 
2318
+ msgid "Edit package filter rule"
2319
+ msgstr ""
2320
+
2321
+ msgid "Edit products"
2322
+ msgstr ""
2323
+
2084
2324
  msgid "Edit rule"
2085
2325
  msgstr ""
2086
2326
 
2327
+ msgid "Edit smart proxies"
2328
+ msgstr ""
2329
+
2330
+ msgid "Edit system purpose attributes"
2331
+ msgstr ""
2332
+
2087
2333
  msgid "Editing Entitlements"
2088
2334
  msgstr "Editando direitos"
2089
2335
 
@@ -2105,9 +2351,15 @@ msgstr "Definir a visualização de conteúdo com o último sinalizador ou defin
2105
2351
  msgid "Either set the latest content view or the content view version. Cannot set both"
2106
2352
  msgstr "Definir a última visualização de conteúdo ou a versão da visualização de conteúdo. Não é possível definir ambas as opções"
2107
2353
 
2354
+ msgid "Empty content view versions"
2355
+ msgstr ""
2356
+
2108
2357
  msgid "Enable"
2109
2358
  msgstr "Habilitar"
2110
2359
 
2360
+ msgid "Enable Red Hat repositories"
2361
+ msgstr ""
2362
+
2111
2363
  msgid "Enable Simple Content Access"
2112
2364
  msgstr "Habilitar acesso a conteúdo simples"
2113
2365
 
@@ -2120,6 +2372,9 @@ msgstr ""
2120
2372
  msgid "Enable a repository from the set"
2121
2373
  msgstr "Ativar um repositório do conjunto "
2122
2374
 
2375
+ msgid "Enable repository sets"
2376
+ msgstr ""
2377
+
2123
2378
  msgid "Enable simple content access for a manifest"
2124
2379
  msgstr "Habilitar acesso a conteúdo simples para um manifesto"
2125
2380
 
@@ -2153,9 +2408,18 @@ msgstr "Melhoria"
2153
2408
  msgid "Enter a name"
2154
2409
  msgstr ""
2155
2410
 
2411
+ msgid "Enter a name for your source."
2412
+ msgstr ""
2413
+
2156
2414
  msgid "Enter a valid date: MM/DD/YYYY"
2157
2415
  msgstr ""
2158
2416
 
2417
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2418
+ msgstr ""
2419
+
2420
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2421
+ msgstr ""
2422
+
2159
2423
  msgid "Entitlements"
2160
2424
  msgstr "Direitos"
2161
2425
 
@@ -2175,7 +2439,7 @@ msgid "Environments"
2175
2439
  msgstr "Ambientes"
2176
2440
 
2177
2441
  msgid "Epoch"
2178
- msgstr ""
2442
+ msgstr "Epoch"
2179
2443
 
2180
2444
  msgid "Equal to"
2181
2445
  msgstr ""
@@ -2193,10 +2457,10 @@ msgid "Errata Install"
2193
2457
  msgstr "Instalar Errata"
2194
2458
 
2195
2459
  msgid "Errata Install scheduled by %s"
2196
- msgstr "Instalação de Errata agendada por %s"
2460
+ msgstr "Errata Instalação programada por %s"
2197
2461
 
2198
2462
  msgid "Errata id of the erratum (RHSA-2012:108)"
2199
- msgstr "Id de Errata da erratum (RHSA-2012: 108) "
2463
+ msgstr "ID de Errata da erratum (RHSA-2012: 108) "
2200
2464
 
2201
2465
  msgid "Errata mail"
2202
2466
  msgstr "E-mail da Errata"
@@ -2232,7 +2496,7 @@ msgid "Error connecting to Pulp service"
2232
2496
  msgstr "Erro ao estabelecer uma conexão com o serviço Pulp "
2233
2497
 
2234
2498
  msgid "Error connecting. Got: %s"
2235
- msgstr "Erro ao estabelecer uma conexão. Obteve: %s"
2499
+ msgstr "Erro de conexão. Conseguido: %s"
2236
2500
 
2237
2501
  msgid "Error loading content views"
2238
2502
  msgstr ""
@@ -2247,13 +2511,13 @@ msgid "Exceeds available quantity"
2247
2511
  msgstr "Excede a quantidade disponível"
2248
2512
 
2249
2513
  msgid "Exclude"
2250
- msgstr "Remover"
2514
+ msgstr "Excluir"
2251
2515
 
2252
- msgid "Exclude all Module Streams with no errata."
2516
+ msgid "Exclude all RPMs not associated to any errata"
2253
2517
  msgstr ""
2254
2518
 
2255
- msgid "Exclude all RPMs with no errata."
2256
- msgstr "Remover todos os RPMs sem erratas. "
2519
+ msgid "Exclude all module streams not associated to any errata"
2520
+ msgstr ""
2257
2521
 
2258
2522
  msgid "Exclude filter"
2259
2523
  msgstr ""
@@ -2274,7 +2538,7 @@ msgid "Expand All"
2274
2538
  msgstr "Expandir todos"
2275
2539
 
2276
2540
  msgid "Expire soon days"
2277
- msgstr "Expirar em breve, dias"
2541
+ msgstr "Expira em breve, dias"
2278
2542
 
2279
2543
  msgid "Export"
2280
2544
  msgstr "Exportar"
@@ -2283,7 +2547,7 @@ msgid "Export CSV"
2283
2547
  msgstr "Exportar CSV"
2284
2548
 
2285
2549
  msgid "Export Library"
2286
- msgstr ""
2550
+ msgstr "Biblioteca de exportação"
2287
2551
 
2288
2552
  msgid "Export Repository"
2289
2553
  msgstr ""
@@ -2297,11 +2561,16 @@ msgstr ""
2297
2561
  msgid "Export as CSV"
2298
2562
  msgstr "Exportar como CSV"
2299
2563
 
2564
+ msgid ""
2565
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2566
+ " Defaults to importable."
2567
+ msgstr ""
2568
+
2300
2569
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2301
2570
  msgstr ""
2302
2571
 
2303
2572
  msgid "Exported content view"
2304
- msgstr "Visualização de conteúdo exportada "
2573
+ msgstr "Vista do conteúdo exportado"
2305
2574
 
2306
2575
  msgid "Exported version"
2307
2576
  msgstr "Versão exportada"
@@ -2313,18 +2582,19 @@ msgid "Failed"
2313
2582
  msgstr "Falhou"
2314
2583
 
2315
2584
  msgid "Failed to delete %{host}: %{errors}"
2316
- msgstr "Falha ao excluir %{host}: %{errors}"
2585
+ msgstr "Falha em excluir %{host}: %{errors}"
2317
2586
 
2318
2587
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2319
2588
  msgstr ""
2320
2589
 
2321
2590
  msgid "Failed to download %s package."
2322
2591
  msgid_plural "Failed to download %s packages."
2323
- msgstr[0] "Falha ao baixar pacote %s ."
2324
- msgstr[1] "Falha ao baixar %s pacotes."
2592
+ msgstr[0] "Falha no download do pacote %s."
2593
+ msgstr[1] "Falha no download dos pacotes %s."
2594
+ msgstr[2] "Falha no download dos pacotes %s."
2325
2595
 
2326
2596
  msgid "Failed to find %{content} with id '%{id}'."
2327
- msgstr "Não foi possível encontrar %{content} com id '%{id}'."
2597
+ msgstr "Falha em encontrar %{content} com id '%{id}'."
2328
2598
 
2329
2599
  msgid "Fails if any of the repositories belonging to this organization are unexportable. False by default."
2330
2600
  msgstr ""
@@ -2347,6 +2617,9 @@ msgstr "Buscar arquivos de PXE"
2347
2617
  msgid "Fetch traces for one or more hosts"
2348
2618
  msgstr "Buscar rastreamentos para um ou mais hosts"
2349
2619
 
2620
+ msgid "Fetching content credentials"
2621
+ msgstr ""
2622
+
2350
2623
  msgid "Field to sort the results on"
2351
2624
  msgstr "Campo para classificar os resultados "
2352
2625
 
@@ -2357,7 +2630,7 @@ msgid "File contents"
2357
2630
  msgstr ""
2358
2631
 
2359
2632
  msgid "Filename"
2360
- msgstr "Nome de arquivo"
2633
+ msgstr "Nome do arquivo"
2361
2634
 
2362
2635
  msgid "Files"
2363
2636
  msgstr "Arquivos"
@@ -2390,7 +2663,7 @@ msgid "Filter out default content views"
2390
2663
  msgstr "Filtrar sem as visualizações de conteúdo padrão"
2391
2664
 
2392
2665
  msgid "Filter products by host id"
2393
- msgstr "Filtrar produtos por id de host"
2666
+ msgstr "Filtrar produtos por ID de host"
2394
2667
 
2395
2668
  msgid "Filter products by name"
2396
2669
  msgstr "Filtrar produtos por nome"
@@ -2402,7 +2675,10 @@ msgid "Filter products by subscription"
2402
2675
  msgstr "Filtrar produtos por subscrição"
2403
2676
 
2404
2677
  msgid "Filter products by sync plan id"
2405
- msgstr "Filtrar produtos por id de plano de sincronização"
2678
+ msgstr "Filtrar produtos por ID de plano de sincronização"
2679
+
2680
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2681
+ msgstr ""
2406
2682
 
2407
2683
  msgid "Filter rule added"
2408
2684
  msgstr ""
@@ -2437,6 +2713,12 @@ msgstr "Filtros"
2437
2713
  msgid "Filters deleted"
2438
2714
  msgstr ""
2439
2715
 
2716
+ msgid "Filters will appear here when the filter is created."
2717
+ msgstr ""
2718
+
2719
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2720
+ msgstr ""
2721
+
2440
2722
  msgid "Finish"
2441
2723
  msgstr ""
2442
2724
 
@@ -2480,8 +2762,8 @@ msgstr "Force a regeneração da aplicabilidade."
2480
2762
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2481
2763
  msgstr "Force a sincronização mesmo que não sejam detectadas alterações upstream. Repositórios que não são yum são ignorados."
2482
2764
 
2483
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2484
- msgstr "Force a sincronização mesmo que não sejam detectadas alterações upstream. Utilizado apenas com repositórios yum."
2765
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2766
+ msgstr ""
2485
2767
 
2486
2768
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
2487
2769
  msgstr "Força uma republicação do repositório especificado, regenerando metadados e links simbólicos no sistema de arquivos."
@@ -2498,6 +2780,9 @@ msgstr "Com total direito a serviços"
2498
2780
  msgid "GPG Key URL"
2499
2781
  msgstr "URL de chave GPG"
2500
2782
 
2783
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2784
+ msgstr ""
2785
+
2501
2786
  msgid "Generate and Download"
2502
2787
  msgstr "Gerar e Baixar"
2503
2788
 
@@ -2510,7 +2795,7 @@ msgstr "Gerar aplicabilidade de repositório"
2510
2795
  msgid "Generated"
2511
2796
  msgstr ""
2512
2797
 
2513
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2798
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2514
2799
  msgstr ""
2515
2800
 
2516
2801
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2526,7 +2811,7 @@ msgid "Get content and overrides for the host"
2526
2811
  msgstr "Obter o conteúdo e as substituições para o host"
2527
2812
 
2528
2813
  msgid "Get current smart proxy synchronization status"
2529
- msgstr "Obtenha o status atual de sincronização de proxy inteligente"
2814
+ msgstr "Obtenha o estado atual de sincronização de proxy inteligente"
2530
2815
 
2531
2816
  msgid "Get info about a repository set"
2532
2817
  msgstr "Obter info sobre um conjunto de repo"
@@ -2535,14 +2820,17 @@ msgid "Get list of available repositories for the repository set"
2535
2820
  msgstr "Obter lista de repositórios disponíveis para o conjunto de repositórios"
2536
2821
 
2537
2822
  msgid "Get status of repo synchronisation for given product"
2538
- msgstr "Obter o status da sincronização do repositório para determinado produto "
2823
+ msgstr "Obter o estado da sincronização do repositório para determinado produto "
2539
2824
 
2540
2825
  msgid "Get status of synchronisation for given repository"
2541
- msgstr "Obter o status da sincronização para um determinado repositório "
2826
+ msgstr "Obter o estado da sincronização para um determinado repositório "
2542
2827
 
2543
2828
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2544
2829
  msgstr "Dado um conjunto de hosts e erratas, lista as versões de visualização de conteúdo e ambientes que precisam de atualização."
2545
2830
 
2831
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2832
+ msgstr ""
2833
+
2546
2834
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2547
2835
  msgstr ""
2548
2836
 
@@ -2573,11 +2861,14 @@ msgstr "Proxies HTTP"
2573
2861
  msgid "HTTP Proxy identifier to associated"
2574
2862
  msgstr "Identificador de Proxy HTTP para associado"
2575
2863
 
2864
+ msgid "HW properties"
2865
+ msgstr ""
2866
+
2576
2867
  msgid "Has to be > 0"
2577
2868
  msgstr "Tem de ser > 0"
2578
2869
 
2579
2870
  msgid "Helper"
2580
- msgstr "Assistente"
2871
+ msgstr "Ajudante"
2581
2872
 
2582
2873
  msgid "Hide affected activation keys"
2583
2874
  msgstr ""
@@ -2598,13 +2889,13 @@ msgid "Host"
2598
2889
  msgstr "Máquina"
2599
2890
 
2600
2891
  msgid "Host %s has not been registered with subscription-manager."
2601
- msgstr "O host %s não foi registrado com subscription-manager"
2892
+ msgstr "O host %s não foi registrado no gerenciador de assinaturas."
2602
2893
 
2603
2894
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2604
- msgstr "Não é possível atribuir a versão de lançamento %{release_version} ao host %{name}."
2895
+ msgstr "Host {release_version} não pode ser atribuído versão de lançamento %%{name}."
2605
2896
 
2606
2897
  msgid "Host '%{name}' does not belong to an organization"
2607
- msgstr "O host '%{name}' não pertence a uma organização "
2898
+ msgstr "Host '%{name}' não pertence a uma organização"
2608
2899
 
2609
2900
  msgid "Host Can Re-Register Only In Build"
2610
2901
  msgstr ""
@@ -2631,7 +2922,7 @@ msgid "Host Profile Can Change In Build"
2631
2922
  msgstr ""
2632
2923
 
2633
2924
  msgid "Host Subscription Status"
2634
- msgstr "Status de subscrição de host"
2925
+ msgstr "Estado de subscrição de host"
2635
2926
 
2636
2927
  msgid "Host Tasks Workers Pool Size"
2637
2928
  msgstr "Tamanho do pool de trabalhadores de tarefas de host"
@@ -2640,7 +2931,7 @@ msgid "Host collection"
2640
2931
  msgstr ""
2641
2932
 
2642
2933
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2643
- msgstr "Coleção Host '%{name}'excede o limite máximo de uso de'%{limit}'"
2934
+ msgstr "A coleta de hospedagem '%{name}' excede o limite máximo de uso de '%{limit}'"
2644
2935
 
2645
2936
  msgid "Host collection is empty."
2646
2937
  msgstr "Coleção do Host está vazia. "
@@ -2651,6 +2942,9 @@ msgstr ""
2651
2942
  msgid "Host collections updated"
2652
2943
  msgstr ""
2653
2944
 
2945
+ msgid "Host configurations are not updated yet"
2946
+ msgstr ""
2947
+
2654
2948
  msgid "Host content and subscription details"
2655
2949
  msgstr "Host de conteúdo e detalhes da subscrição"
2656
2950
 
@@ -2661,10 +2955,10 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
2661
2955
  msgstr ""
2662
2956
 
2663
2957
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2664
- msgstr "O host não completou a ação de conteúdo em %s segundos. A tarefa foi cancelada."
2958
+ msgstr "O host não terminou a ação de conteúdo em %s segundos. A tarefa foi cancelada."
2665
2959
 
2666
2960
  msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
2667
- msgstr "O Host não respondeu dentro de %s segundos. A tarefa foi cancelada. Verifique se katello-agent está instalado e goferd está em execução no Host."
2961
+ msgstr "O anfitrião não respondeu em %s segundos. A tarefa foi cancelada. O katello-agent está instalado e o goferd está funcionando no Host?"
2668
2962
 
2669
2963
  msgid "Host errata advisory"
2670
2964
  msgstr "Aviso de errata(s) de host"
@@ -2682,26 +2976,29 @@ msgid "Host id to list applicable deb packages for"
2682
2976
  msgstr ""
2683
2977
 
2684
2978
  msgid "Host id to list applicable errata for"
2685
- msgstr "Id do host para listar as erratas aplicáveis"
2979
+ msgstr "ID do host para listar as erratas aplicáveis"
2686
2980
 
2687
2981
  msgid "Host id to list applicable packages for"
2688
- msgstr "Id do host para listar os pacotes aplicáveis"
2982
+ msgstr "ID do host para listar os pacotes aplicáveis"
2689
2983
 
2690
2984
  msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
2691
2985
  msgstr ""
2692
2986
 
2693
2987
  msgid "Host with ID %s already exists in the host collection."
2694
- msgstr "O host com a ID %s já existe na coleção de host."
2988
+ msgstr "Host com ID %s já existe na coleção do host."
2695
2989
 
2696
2990
  msgid "Host with ID %s does not exist in the host collection."
2697
- msgstr "O host com a ID %s não existe na coleção de host."
2991
+ msgstr "Host com ID %s não existe na coleção do host."
2698
2992
 
2699
2993
  msgid "Host with ID %s not found."
2700
- msgstr "Host com ID %s não encontrado."
2994
+ msgstr "Hospedeiro com ID %s não encontrado."
2701
2995
 
2702
2996
  msgid "Hosts"
2703
2997
  msgstr "Hosts"
2704
2998
 
2999
+ msgid "Hosts to update"
3000
+ msgstr ""
3001
+
2705
3002
  msgid "Hosts with Installable Errata"
2706
3003
  msgstr "Hosts com a Errata Instalável"
2707
3004
 
@@ -2778,34 +3075,37 @@ msgid "ID of the sync plan"
2778
3075
  msgstr "ID do plano de sinc"
2779
3076
 
2780
3077
  msgid "ID: %s doesn't exist "
2781
- msgstr "ID: %s não existe"
3078
+ msgstr "ID: %s não existe "
2782
3079
 
2783
- msgid "Id"
3080
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
2784
3081
  msgstr ""
2785
3082
 
2786
3083
  msgid "Id of a deb package to find repositories that contain the deb"
2787
- msgstr "Id de um pacote deb para localizar os repositórios que contêm o deb"
3084
+ msgstr "ID de um pacote deb para localizar os repositórios que contêm o deb"
2788
3085
 
2789
3086
  msgid "Id of a file to find repositories that contain the file"
2790
- msgstr "Id de um arquivo para localizar os repositórios que contêm o arquivo"
3087
+ msgstr "ID de um arquivo para localizar os repositórios que contêm o arquivo"
2791
3088
 
2792
3089
  msgid "Id of a rpm package to find repositories that contain the rpm"
2793
- msgstr "Id de um pacote rpm para localizar os repositórios que contêm o rpm"
3090
+ msgstr "ID de um pacote rpm para localizar os repositórios que contêm o rpm"
2794
3091
 
2795
3092
  msgid "Id of an ansible collection to find repositories that contain the ansible collection"
2796
- msgstr "Id de uma coleção do ansible para localizar repositórios que contêm a coleção do ansible"
3093
+ msgstr "ID de uma coleção do ansible para localizar repositórios que contêm a coleção do ansible"
2797
3094
 
2798
3095
  msgid "Id of an erratum to find repositories that contain the erratum"
2799
- msgstr "Id de uma errata para localizar os repositórios que contêm a errata "
3096
+ msgstr "ID de uma errata para localizar os repositórios que contêm a errata "
3097
+
3098
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3099
+ msgstr ""
2800
3100
 
2801
3101
  msgid "Id of the content host"
2802
- msgstr "Id do host de conteúdo"
3102
+ msgstr "ID do host de conteúdo"
2803
3103
 
2804
3104
  msgid "Id of the content view to limit the synchronization on"
2805
3105
  msgstr ""
2806
3106
 
2807
3107
  msgid "Id of the environment to limit the synchronization on"
2808
- msgstr "Id do ambiente para limitar a sincronização em"
3108
+ msgstr "ID do ambiente para limitar a sincronização em"
2809
3109
 
2810
3110
  msgid "Id of the host"
2811
3111
  msgstr "ID do host"
@@ -2814,19 +3114,19 @@ msgid "Id of the host collection"
2814
3114
  msgstr "ID da coleção do host"
2815
3115
 
2816
3116
  msgid "Id of the lifecycle environment"
2817
- msgstr "Id do ambiente do ciclo de vida "
3117
+ msgstr "ID do ambiente do ciclo de vida "
2818
3118
 
2819
3119
  msgid "Id of the organization to get the status for"
2820
- msgstr "Id da organização para obter o status para"
3120
+ msgstr "ID da organização para obter o estado para"
2821
3121
 
2822
3122
  msgid "Id of the organization to limit environments on"
2823
- msgstr "Id da organização para limitar os ambientes em "
3123
+ msgstr "ID da organização para limitar os ambientes em "
2824
3124
 
2825
3125
  msgid "Id of the repository to limit the synchronization on"
2826
3126
  msgstr ""
2827
3127
 
2828
3128
  msgid "Id of the smart proxy"
2829
- msgstr "Id do proxy inteligente"
3129
+ msgstr "ID do proxy inteligente"
2830
3130
 
2831
3131
  msgid "Idenifier of the SSL CA Cert"
2832
3132
  msgstr "Identificador do Certificado SSL CA"
@@ -2868,7 +3168,10 @@ msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma
2868
3168
  msgstr ""
2869
3169
 
2870
3170
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2871
- msgstr "Se especificado, remova a primeira instância de uma subscrição com quantidade e id correspondentes "
3171
+ msgstr "Se especificado, remova a primeira instância de uma subscrição com quantidade e ID correspondentes "
3172
+
3173
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3174
+ msgstr ""
2872
3175
 
2873
3176
  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."
2874
3177
  msgstr ""
@@ -2882,6 +3185,9 @@ msgstr ""
2882
3185
  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."
2883
3186
  msgstr ""
2884
3187
 
3188
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3189
+ msgstr ""
3190
+
2885
3191
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2886
3192
  msgstr "Se for verdadeiro, retornará apenas conjuntos de repositórios associados a uma subscrição ativa"
2887
3193
 
@@ -2903,6 +3209,9 @@ msgstr ""
2903
3209
  msgid "Ignorable content can be only set for Yum repositories."
2904
3210
  msgstr "O conteúdo ignorável só pode ser definido para repositórios Yum."
2905
3211
 
3212
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3213
+ msgstr ""
3214
+
2906
3215
  msgid "Ignore errors"
2907
3216
  msgstr ""
2908
3217
 
@@ -2915,6 +3224,9 @@ msgstr ""
2915
3224
  msgid "Ignore subscriptions that are unavailable to the specified host"
2916
3225
  msgstr "Ignorar subscrições indisponíveis para o host especificado "
2917
3226
 
3227
+ msgid "Ignored hosts"
3228
+ msgstr ""
3229
+
2918
3230
  msgid "Immediate"
2919
3231
  msgstr "Imediato(a)"
2920
3232
 
@@ -2922,10 +3234,10 @@ msgid "Import"
2922
3234
  msgstr "Importar"
2923
3235
 
2924
3236
  msgid "Import Content View Version"
2925
- msgstr ""
3237
+ msgstr "Versão Importar Conteúdo Ver"
2926
3238
 
2927
3239
  msgid "Import Default Content View"
2928
- msgstr ""
3240
+ msgstr "Importação de Conteúdo Padrão"
2929
3241
 
2930
3242
  msgid "Import Manifest"
2931
3243
  msgstr "Importar Manifesto"
@@ -2988,7 +3300,7 @@ msgid "Important"
2988
3300
  msgstr "Importante"
2989
3301
 
2990
3302
  msgid "Importing manifest into '%{subject}' failed."
2991
- msgstr "Falha ao importar manifesto para '%{subject}'."
3303
+ msgstr "O manifesto de importação em '%{subject}' falhou."
2992
3304
 
2993
3305
  msgid "In Progress"
2994
3306
  msgstr "Em progresso"
@@ -2997,13 +3309,13 @@ msgid "In progress"
2997
3309
  msgstr ""
2998
3310
 
2999
3311
  msgid "Include"
3000
- msgstr "Incluir "
3312
+ msgstr "Incluir"
3001
3313
 
3002
- msgid "Include all Module Streams with no errata."
3314
+ msgid "Include all RPMs not associated to any errata"
3003
3315
  msgstr ""
3004
3316
 
3005
- msgid "Include all RPMs with no errata."
3006
- msgstr "Incluir todos os RPMs sem errata."
3317
+ msgid "Include all module streams not associated to any errata"
3318
+ msgstr ""
3007
3319
 
3008
3320
  msgid "Include content views generated by imports/exports. Defaults to false"
3009
3321
  msgstr ""
@@ -3036,7 +3348,7 @@ msgid "Incremental Update of Content View Version(s) "
3036
3348
  msgstr "Atualização incremental de versão(ões) da Exibição de Conteúdo."
3037
3349
 
3038
3350
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
3039
- msgstr "Atualização incremental de %{content_view_count} versão(ões) da Visualização de conteúdo "
3351
+ msgstr "Atualização Incremental de %{content_view_count} Versão(ões) de Visualização de Conteúdo "
3040
3352
 
3041
3353
  msgid "Incremental update"
3042
3354
  msgstr "Atualização incremental"
@@ -3045,7 +3357,7 @@ msgid "Incremental update requires at least one content unit"
3045
3357
  msgstr "A atualização incremental requer pelo menos uma unidade de conteúdo"
3046
3358
 
3047
3359
  msgid "Incremental update specified for composite %{name} version %{version}, but no components updated."
3048
- msgstr "Atualização incremental especificada para coleção %{name} versão %{version}, mas nenhum componente atualizado."
3360
+ msgstr "Atualização incremental especificada para a versão composta %{name} %{version} , mas nenhum componente atualizado."
3049
3361
 
3050
3362
  msgid "Index content"
3051
3363
  msgstr "Indexar conteúdo "
@@ -3060,7 +3372,7 @@ msgid "Index package groups"
3060
3372
  msgstr "Indexar grupos de pacotes "
3061
3373
 
3062
3374
  msgid "Informable Type must be one of the following [ %{list} ]"
3063
- msgstr "Tipo Informável deve ser um dos seguintes [ %{list} ]"
3375
+ msgstr "O tipo informativo deve ser um dos seguintes [ %{list} ]"
3064
3376
 
3065
3377
  msgid "Inherit from Repository"
3066
3378
  msgstr "Herdar de repositório"
@@ -3069,13 +3381,13 @@ msgid "Initiate a sync of the products attached to the sync plan"
3069
3381
  msgstr "Iniciar sincronização dos produtos anexados ao plano de sincronização "
3070
3382
 
3071
3383
  msgid "Install"
3072
- msgstr ""
3384
+ msgstr "Instalar"
3073
3385
 
3074
3386
  msgid "Install Applicable Errata"
3075
3387
  msgstr "Instalar Errata Aplicável"
3076
3388
 
3077
3389
  msgid "Install Applicable Errata on %s"
3078
- msgstr "Instalar errata aplicável em %s"
3390
+ msgstr "Instalar Errata Aplicável em %s"
3079
3391
 
3080
3392
  msgid "Install content on one or more hosts using katello-agent. %s"
3081
3393
  msgstr ""
@@ -3128,24 +3440,30 @@ msgstr ""
3128
3440
  msgid "Installable"
3129
3441
  msgstr "Instalável"
3130
3442
 
3131
- msgid "Installable errata"
3443
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3132
3444
  msgstr ""
3133
3445
 
3134
3446
  msgid "Installable errata from content view"
3135
3447
  msgstr ""
3136
3448
 
3449
+ msgid "Installable updates"
3450
+ msgstr ""
3451
+
3137
3452
  msgid "Installation of errata requested: %{errata}"
3138
- msgstr "Instalação de errata solicitada: %{errata}"
3453
+ msgstr "Instalação das erratas solicitadas: %{errata}"
3139
3454
 
3140
3455
  msgid "Installation of package group(s) requested: %{groups}"
3141
- msgstr "Instalação de grupo(s) de pacotes solicitada: %{groups}"
3456
+ msgstr "Instalação do(s) grupo(s) de embalagem(s) solicitado(s): %{groups}"
3142
3457
 
3143
3458
  msgid "Installation of package(s) requested: %{packages}"
3144
- msgstr "Instalação de pacote(s) solicitada: %{packages}"
3459
+ msgstr "Instalação do(s) pacote(s) solicitado(s): %{packages}"
3145
3460
 
3146
3461
  msgid "Installation status"
3147
3462
  msgstr ""
3148
3463
 
3464
+ msgid "Installed"
3465
+ msgstr "Instalados"
3466
+
3149
3467
  msgid "Installed Packages"
3150
3468
  msgstr "Pacotes instalados"
3151
3469
 
@@ -3191,20 +3509,17 @@ msgstr "Intervalo não definido corretamente"
3191
3509
  msgid "Invalid"
3192
3510
  msgstr "Inválido"
3193
3511
 
3194
- msgid "Invalid SSL CA certificate given for CDN"
3195
- msgstr ""
3196
-
3197
3512
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3198
3513
  msgstr "Associação inválida da visualização de conteúdo. A visualização de conteúdo deve corresponder à versão da visualização de conteúdo que está sendo salva"
3199
3514
 
3200
3515
  msgid "Invalid content label: %s"
3201
- msgstr "Rótulo de conteúdo inválido %s"
3516
+ msgstr "Rótulo de conteúdo inválido: %s"
3202
3517
 
3203
3518
  msgid "Invalid content type %s"
3204
3519
  msgstr "Tipo de conteúdo inválido %s"
3205
3520
 
3206
3521
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
3207
- msgstr "O tipo de conteúdo '%{ content_type }' fornecido é inválido. Os tipos de conteúdo podem ser um dos %{ content_types }"
3522
+ msgstr "Tipo de conteúdo inválido '%{content_type}' fornecido. Os tipos de conteúdo podem ser do tipo \"% %\".{content_types}"
3208
3523
 
3209
3524
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
3210
3525
  msgstr "Intervalo de datas inválido. A data de início da regra do filtro de errata deve vir antes da data final "
@@ -3216,10 +3531,13 @@ msgid "Invalid erratum filter rule specified, Must specify at least one of the f
3216
3531
  msgstr "Regra de filtragem de errata inválida especificada, deve ser especificada pelo menos uma das seguintes: 'errata_id', 'start_date', 'end_date' ou 'tipos' "
3217
3532
 
3218
3533
  msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
3219
- msgstr "Tipos de errata inválida %{invalid_types} fornecidas. Tipo de errata pode ser qualquer um entre %{valid_types}"
3534
+ msgstr "Tipos de errata inválidos %{invalid_types} fornecidos. O tipo de errata pode ser qualquer um de %.{valid_types}"
3220
3535
 
3221
3536
  msgid "Invalid event_type %s"
3222
- msgstr "event_type %s inválido"
3537
+ msgstr "Tipo_de_evento inválido %s"
3538
+
3539
+ msgid "Invalid export format provided. Format must be one of %s "
3540
+ msgstr ""
3223
3541
 
3224
3542
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3225
3543
  msgstr "Regra de filtro inválido, \"versão\" não pode ser especificada na mesma tupla como 'min_version 'ou' max_version'"
@@ -3234,10 +3552,19 @@ msgid "Invalid parameters sent. You may have mistyped the address. If you contin
3234
3552
  msgstr "Parâmetros inválidos envidados. Você digitou o endereço errado. Se você continuar com o mesmo problema contate um Administrador."
3235
3553
 
3236
3554
  msgid "Invalid params provided - content_type must be one of %s"
3237
- msgstr "Parâmetros fornecidos inválidos - content_type deve ser dos %s"
3555
+ msgstr "Parâmetros inválidos fornecidos - content_type deve ser um dos %s"
3238
3556
 
3239
3557
  msgid "Invalid params provided - date_type must be one of %s"
3240
- msgstr "Parâmetros fornecidos inválidos - date_type deve ser dos %s"
3558
+ msgstr "Parâmetros inválidos fornecidos - data_tipo deve ser um de %s"
3559
+
3560
+ msgid "Invalid params provided - with_content must be one of %s"
3561
+ msgstr ""
3562
+
3563
+ msgid "Invalid path provided. Content can be only imported from file system. "
3564
+ msgstr ""
3565
+
3566
+ msgid "Invalid release version: [%s]"
3567
+ msgstr ""
3241
3568
 
3242
3569
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3243
3570
  msgstr ""
@@ -3252,12 +3579,18 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
3252
3579
  msgstr "Valor inválido especificado para conteúdo ignorável. Valores admissíveis %s"
3253
3580
 
3254
3581
  msgid "Issued"
3255
- msgstr "Emitido"
3582
+ msgstr "Emitido em"
3256
3583
 
3257
3584
  msgid "Issued from"
3258
3585
  msgstr ""
3259
3586
 
3260
- msgid "Job ${description} has started."
3587
+ msgid "Items will appear here when a filter rule is added."
3588
+ msgstr ""
3589
+
3590
+ msgid "Job '${description}' completed"
3591
+ msgstr ""
3592
+
3593
+ msgid "Job '${description}' has started."
3261
3594
  msgstr ""
3262
3595
 
3263
3596
  msgid "Katello ID of local pool to update"
@@ -3318,7 +3651,7 @@ msgid "Kickstart repository ID"
3318
3651
  msgstr "ID de repositório Kickstart"
3319
3652
 
3320
3653
  msgid "Kickstart repository was not set for host '%{host}'"
3321
- msgstr "O repositório Kickstart não foi definido para o host '%{host}'"
3654
+ msgstr "O repositório Kickstart não foi definido para o host '%{host}'."
3322
3655
 
3323
3656
  msgid "Label"
3324
3657
  msgstr "Rótulo"
@@ -3329,9 +3662,21 @@ msgstr "Rótulo do conteúdo"
3329
3662
  msgid "Label of the content view"
3330
3663
  msgstr ""
3331
3664
 
3665
+ msgid "Last check-in:"
3666
+ msgstr ""
3667
+
3668
+ msgid "Last checkin"
3669
+ msgstr ""
3670
+
3332
3671
  msgid "Last published"
3333
3672
  msgstr "Última publicação"
3334
3673
 
3674
+ msgid "Last refresh"
3675
+ msgstr ""
3676
+
3677
+ msgid "Last refresh :"
3678
+ msgstr ""
3679
+
3335
3680
  msgid "Last task"
3336
3681
  msgstr ""
3337
3682
 
@@ -3347,17 +3692,20 @@ msgstr ""
3347
3692
  msgid "Learn more about adding Subscription Manifests"
3348
3693
  msgstr "Saiba mais sobre como adicionar Manifestos de subscrição"
3349
3694
 
3695
+ msgid "Legacy content host UI"
3696
+ msgstr ""
3697
+
3350
3698
  msgid "Less than"
3351
3699
  msgstr ""
3352
3700
 
3353
3701
  msgid "Library"
3354
- msgstr ""
3702
+ msgstr "Biblioteca"
3355
3703
 
3356
3704
  msgid "Library lifecycle environments may not be deleted."
3357
3705
  msgstr "Ambientes de ciclo de vida de biblioteca podem não ser removidos."
3358
3706
 
3359
3707
  msgid "Library repository id to restrict comparisons to"
3360
- msgstr "Id de repositório de biblioteca para restringir comparações com"
3708
+ msgstr "ID de repositório de biblioteca para restringir comparações com"
3361
3709
 
3362
3710
  msgid "Lifecycle"
3363
3711
  msgstr "Ciclo de vida"
@@ -3366,10 +3714,10 @@ msgid "Lifecycle Environment"
3366
3714
  msgstr "Ambiente de Ciclo de Vida"
3367
3715
 
3368
3716
  msgid "Lifecycle Environment %s has associated Activation Keys. Please change or remove the associated Activation Keys before trying to delete this lifecycle environment."
3369
- msgstr "Ambiente de Ciclo de Vida %s possui chaves de ativação associadas. Por favor, altere ou remova as chaves de ativação associadas antes de tentar excluir este ambiente de ciclo de vida."
3717
+ msgstr "Ambiente do Ciclo de Vida %s tem Chaves de Ativação associadas. Favor alterar ou remover as Chaves de Ativação associadas antes de tentar apagar este ambiente de ciclo de vida."
3370
3718
 
3371
3719
  msgid "Lifecycle Environment %s has associated Hosts. Please unregister or move the associated Hosts before trying to delete this lifecycle environment."
3372
- msgstr "O ambiente de ciclo de vida %s possui hosts associados. Cancele o registro ou mova os hosts associados antes de tentar excluir este ambiente de ciclo de vida."
3720
+ msgstr "Ambiente do Ciclo de Vida %s tem Anfitriões associados. Favor cancelar o registro ou mover os Hosts associados antes de tentar excluir este ambiente de ciclo de vida."
3373
3721
 
3374
3722
  msgid "Lifecycle Environment ID"
3375
3723
  msgstr "ID do ambiente de ciclo de vida"
@@ -3384,7 +3732,7 @@ msgid "Lifecycle environment"
3384
3732
  msgstr ""
3385
3733
 
3386
3734
  msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
3387
- msgstr " Ambiente de Ciclo de Vida '% {environment}' não está conectado a esta cápsula."
3735
+ msgstr "O ambiente do ciclo de vida '%{environment}' não está anexado a esta cápsula."
3388
3736
 
3389
3737
  msgid "Lifecycle environment ID"
3390
3738
  msgstr "ID do ambiente de ciclo de vida"
@@ -3392,6 +3740,9 @@ msgstr "ID do ambiente de ciclo de vida"
3392
3740
  msgid "Lifecycle environment for the host."
3393
3741
  msgstr ""
3394
3742
 
3743
+ msgid "Lifecycle environment must be specified"
3744
+ msgstr ""
3745
+
3395
3746
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3396
3747
  msgstr "O ambiente de ciclo de vida não foi anexado ao proxy inteligente; portanto, nenhuma alteração foi feita."
3397
3748
 
@@ -3413,8 +3764,11 @@ msgstr "Limitar o conteúdo apenas ao disponível na versão de visualização d
3413
3764
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3414
3765
  msgstr ""
3415
3766
 
3767
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3768
+ msgstr ""
3769
+
3416
3770
  msgid "Limit to environment"
3417
- msgstr "Limitar para ambiente"
3771
+ msgstr "Limite ao meio ambiente"
3418
3772
 
3419
3773
  msgid "Limits"
3420
3774
  msgstr "Limites"
@@ -3443,6 +3797,9 @@ msgstr "Listar todos: resource_id"
3443
3797
  msgid "List all organizations"
3444
3798
  msgstr "Listar todas as organizações"
3445
3799
 
3800
+ msgid "List alternate content sources."
3801
+ msgstr ""
3802
+
3446
3803
  msgid "List an activation key's subscriptions"
3447
3804
  msgstr "Listar as subscrições de chave de ativação"
3448
3805
 
@@ -3504,7 +3861,7 @@ msgid "List module streams available to the host"
3504
3861
  msgstr "Listar fluxos de módulo disponíveis para o host"
3505
3862
 
3506
3863
  msgid "List of Errata ids"
3507
- msgstr "Lista de ids de Erratas"
3864
+ msgstr "Lista de IDs de Erratas"
3508
3865
 
3509
3866
  msgid "List of Errata ids to install. Will be removed in %s"
3510
3867
  msgstr ""
@@ -3512,11 +3869,11 @@ msgstr ""
3512
3869
  msgid "List of Products for sync plan"
3513
3870
  msgstr "Lista de produtos para plano de sincronização"
3514
3871
 
3515
- msgid "List of alternate_content_sources"
3872
+ msgid "List of alternate content source IDs"
3516
3873
  msgstr ""
3517
3874
 
3518
3875
  msgid "List of component content view version ids for composite views"
3519
- msgstr "Lista de ids de versão de visualização de conteúdo de componente para coleções de visualização"
3876
+ msgstr "Lista de IDs de versão de visualização de conteúdo de componente para coleções de visualização"
3520
3877
 
3521
3878
  msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
3522
3879
  msgstr ""
@@ -3525,7 +3882,7 @@ msgid "List of content (e.g. package or package group names)"
3525
3882
  msgstr "Lista de conteúdo (por exemplo, pacote ou nomes de grupo de pacotes) "
3526
3883
 
3527
3884
  msgid "List of content units to ignore while syncing a yum repository. Must be subset of %s"
3528
- msgstr "Lista de unidades de conteúdo que devem ser ignoradas durante a sincronização de um repositório yum. Deve ser um subconjunto de %s"
3885
+ msgstr "Lista de unidades de conteúdo a ignorar durante a sincronização de um repositório yum. Deve ser um subconjunto de %s"
3529
3886
 
3530
3887
  msgid "List of enabled repo urls for the repo (Only first is used.)"
3531
3888
  msgstr "Lista de URLs de repo habilitados (somente o primeiro é usado.) "
@@ -3534,10 +3891,10 @@ msgid "List of enabled repositories"
3534
3891
  msgstr "Lista de repositórios habilitados "
3535
3892
 
3536
3893
  msgid "List of errata ids to exclude and not run an action on, (ex: RHSA-2019:1168)"
3537
- msgstr "Lista de ids de erratas que devem ser excluídas e nas quais não devem ser realizadas ações, (ex.: RHSA-2019:1168)"
3894
+ msgstr "Lista de IDs de erratas que devem ser excluídas e nas quais não devem ser realizadas ações, (ex.: RHSA-2019:1168)"
3538
3895
 
3539
3896
  msgid "List of errata ids to perform an action on, (ex: RHSA-2019:1168)"
3540
- msgstr "Lista de ids de erratas nas quais devem ser realizadas ações, (ex.: RHSA-2019:1168)"
3897
+ msgstr "Lista de IDs de erratas nas quais devem ser realizadas ações, (ex.: RHSA-2019:1168)"
3541
3898
 
3542
3899
  msgid "List of host collection IDs to associate with activation key"
3543
3900
  msgstr "Lista de IDs de coleta de host para associar a chave de ativação "
@@ -3546,22 +3903,22 @@ msgid "List of host collection IDs to disassociate from the activation key"
3546
3903
  msgstr "Lista de IDs de coleta de host para desassociar a chave de ativação"
3547
3904
 
3548
3905
  msgid "List of host collection ids"
3549
- msgstr "Lista de ids de coleção de host"
3906
+ msgstr "Lista de IDs de coleção de host"
3550
3907
 
3551
3908
  msgid "List of host collection ids to update"
3552
- msgstr "Lista de ids da coleção de host a ser atualizada"
3909
+ msgstr "Lista de IDs da coleção de host a ser atualizada"
3553
3910
 
3554
3911
  msgid "List of host id to list available module streams for"
3555
- msgstr "Lista de ids de host para as quais listar os fluxos de módulo disponíveis"
3912
+ msgstr "Lista de IDs de host para as quais listar os fluxos de módulo disponíveis"
3556
3913
 
3557
3914
  msgid "List of host ids to exclude and not run an action on"
3558
- msgstr "Lista de ids de host a serem excluídas e nas quais não devem ser realizadas ações"
3915
+ msgstr "Lista de IDs de host a serem excluídas e nas quais não devem ser realizadas ações"
3559
3916
 
3560
3917
  msgid "List of host ids to perform an action on"
3561
- msgstr "Lista de ids de host nas quais deve ser realizada uma ação"
3918
+ msgstr "Lista de IDs de host nas quais deve ser realizada uma ação"
3562
3919
 
3563
3920
  msgid "List of host ids to replace the hosts in host collection"
3564
- msgstr "Lista de ids de host para substituir os hosts na coleção de hosts"
3921
+ msgstr "Lista de IDs de host para substituir os hosts na coleção de hosts"
3565
3922
 
3566
3923
  msgid "List of hypervisor guest uuids"
3567
3924
  msgstr "Lista de uuids de convidados do hipervisor"
@@ -3573,13 +3930,13 @@ msgid "List of package names"
3573
3930
  msgstr "Lista de nomes de pacote"
3574
3931
 
3575
3932
  msgid "List of product ids"
3576
- msgstr "Lista de ids de produto"
3933
+ msgstr "Lista de IDs de produto"
3577
3934
 
3578
3935
  msgid "List of product ids to add to the sync plan"
3579
- msgstr "Lista de ids de produto para adicionar ao plano de sinc"
3936
+ msgstr "Lista de IDs de produto para adicionar ao plano de sinc"
3580
3937
 
3581
3938
  msgid "List of product ids to remove from the sync plan"
3582
- msgstr "Lista de ids de produto para remover do plano de sinc"
3939
+ msgstr "Lista de IDs de produto para remover do plano de sinc"
3583
3940
 
3584
3941
  msgid "List of products in an organization"
3585
3942
  msgstr "Lista de produtos em uma organização"
@@ -3603,7 +3960,10 @@ msgid "List of repositories in an organization"
3603
3960
  msgstr "Lista de repositórios em uma organização"
3604
3961
 
3605
3962
  msgid "List of repository ids"
3606
- msgstr "LIsta de ids de repositório"
3963
+ msgstr "Lista de IDs de repositório"
3964
+
3965
+ msgid "List of resources types that will be automatically associated"
3966
+ msgstr "Lista de tipos de recurso que serão associados automaticamente"
3607
3967
 
3608
3968
  msgid "List of subscription products in a subscription"
3609
3969
  msgstr "Lista de produtos de subscrição em uma subscrição "
@@ -3663,7 +4023,7 @@ msgid "Loading versions"
3663
4023
  msgstr ""
3664
4024
 
3665
4025
  msgid "Loading..."
3666
- msgstr ""
4026
+ msgstr "Carregando..."
3667
4027
 
3668
4028
  msgid "Low"
3669
4029
  msgstr ""
@@ -3693,16 +4053,16 @@ msgid "Manifest imported"
3693
4053
  msgstr "Manifesto importado"
3694
4054
 
3695
4055
  msgid "Manifest in '%{subject}' deleted."
3696
- msgstr "Manifesto em '%{subject}' excluído."
4056
+ msgstr "Manifesto em '%{subject}' eliminado."
3697
4057
 
3698
4058
  msgid "Manifest in '%{subject}' failed to refresh."
3699
- msgstr "Falha ao atualizar manifestado em '%{subject}'."
4059
+ msgstr "Manifestado em '%{subject}' falhou em atualizar."
3700
4060
 
3701
4061
  msgid "Manifest in '%{subject}' imported."
3702
4062
  msgstr "Manifestado em '%{subject}' importado."
3703
4063
 
3704
4064
  msgid "Manifest in '%{subject}' refreshed."
3705
- msgstr "Manifesto em '%{subject}' atualizado."
4065
+ msgstr "Manifesto em '%{subject}' refrescado."
3706
4066
 
3707
4067
  msgid "Manifest refresh timeout"
3708
4068
  msgstr "Tempo limite de atualização de manifesto"
@@ -3710,8 +4070,14 @@ msgstr "Tempo limite de atualização de manifesto"
3710
4070
  msgid "Manifest refreshed"
3711
4071
  msgstr "Manifesto atualizado"
3712
4072
 
4073
+ msgid "Manual"
4074
+ msgstr "Manual"
4075
+
4076
+ msgid "Manual authentication"
4077
+ msgstr ""
4078
+
3713
4079
  msgid "Mark Content Host Statuses as Unknown for %s"
3714
- msgstr "Marcar status de host de conteúdo como desconhecido para %s"
4080
+ msgstr "Marcar status de Host de Conteúdo como Desconhecido por %s"
3715
4081
 
3716
4082
  msgid "Matched"
3717
4083
  msgstr "Correspondido"
@@ -3720,16 +4086,16 @@ msgid "Matching content"
3720
4086
  msgstr ""
3721
4087
 
3722
4088
  msgid "Max %(maxQuantity)s"
3723
- msgstr "Máximo %(maxQuantity)s"
4089
+ msgstr "Max %(maxQuantity)s"
3724
4090
 
3725
4091
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3726
- msgstr "Máximo de hosts (%{limit}) alcançado para chave de ativação '%{name}'"
4092
+ msgstr "Max Hosts (%{limit}) alcançada para chave de ativação '%{name}'"
3727
4093
 
3728
4094
  msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3729
4095
  msgstr ""
3730
4096
 
3731
4097
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3732
- msgstr "O número máximo de hosts de conteúdo ultrapassado para a coleção do (s) host:%s "
4098
+ msgstr "Número máximo de anfitriões de conteúdo excedido para a(s) coleta(ões) de anfitriões: %s"
3733
4099
 
3734
4100
  msgid "Maximum number of hosts in the host collection"
3735
4101
  msgstr "Número máximo de hosts na coleção de hosts"
@@ -3771,10 +4137,13 @@ msgid "Missing activation key!"
3771
4137
  msgstr ""
3772
4138
 
3773
4139
  msgid "Missing arguments %{substitutions} for %{content_url}"
3774
- msgstr "Argumentos ausentes %{substitutions} para %{content_url}"
4140
+ msgstr "Argumentos em falta %{substitutions} para %{content_url}"
4141
+
4142
+ msgid "Model"
4143
+ msgstr "Modelar"
3775
4144
 
3776
4145
  msgid "Moderate"
3777
- msgstr "Moderada"
4146
+ msgstr "Moderado"
3778
4147
 
3779
4148
  msgid "Modular"
3780
4149
  msgstr ""
@@ -3794,7 +4163,7 @@ msgstr ""
3794
4163
  msgid "Module streams"
3795
4164
  msgstr ""
3796
4165
 
3797
- msgid "Module streams will appear here when available."
4166
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3798
4167
  msgstr ""
3799
4168
 
3800
4169
  msgid "Multi-entitlement"
@@ -3812,11 +4181,19 @@ msgstr "NA"
3812
4181
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3813
4182
  msgstr ""
3814
4183
 
4184
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4185
+ msgstr ""
4186
+
3815
4187
  msgid ""
3816
4188
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
3817
4189
  " %{repos}"
3818
4190
  msgstr ""
3819
4191
 
4192
+ msgid ""
4193
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4194
+ " %{repos}"
4195
+ msgstr ""
4196
+
3820
4197
  msgid ""
3821
4198
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3822
4199
  " %{repos}"
@@ -3828,6 +4205,9 @@ msgstr ""
3828
4205
  msgid "Name"
3829
4206
  msgstr "Nome"
3830
4207
 
4208
+ msgid "Name and label of default content view should not be changed"
4209
+ msgstr ""
4210
+
3831
4211
  msgid "Name is a required parameter."
3832
4212
  msgstr ""
3833
4213
 
@@ -3852,6 +4232,12 @@ msgstr "Nome do repositório"
3852
4232
  msgid "Name of the upstream docker repository"
3853
4233
  msgstr "Nome do repositório do docker upstream"
3854
4234
 
4235
+ msgid "Name source"
4236
+ msgstr ""
4237
+
4238
+ msgid "Names of smart proxies to associate"
4239
+ msgstr ""
4240
+
3855
4241
  msgid "Needs to only be set for docker tags"
3856
4242
  msgstr "Precisa ser definido apenas para tags do docker"
3857
4243
 
@@ -3864,6 +4250,9 @@ msgstr "Aninhar"
3864
4250
  msgid "Network Sync"
3865
4251
  msgstr ""
3866
4252
 
4253
+ msgid "Never"
4254
+ msgstr "Nunca"
4255
+
3867
4256
  msgid "Never Synced"
3868
4257
  msgstr "Nunca Sincronizado"
3869
4258
 
@@ -3871,10 +4260,10 @@ msgid "New Errata"
3871
4260
  msgstr "Nova Errata"
3872
4261
 
3873
4262
  msgid "New Files: %s"
3874
- msgstr "Arquivos novos: %s"
4263
+ msgstr "Novos arquivos: %s"
3875
4264
 
3876
4265
  msgid "New blobs: %{count}."
3877
- msgstr "Blobs novos: %{count}."
4266
+ msgstr "Novos blobs: %{count}."
3878
4267
 
3879
4268
  msgid "New content view name"
3880
4269
  msgstr "Novo nome de exibição de conteúdo"
@@ -3919,7 +4308,7 @@ msgid "No Manifest Uploaded"
3919
4308
  msgstr "Nenhum manifesto carregado"
3920
4309
 
3921
4310
  msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
3922
- msgstr "No momento, não produtos Red Hat, importe um manifesta %(anchorBegin)s aqui %(anchorEnd)s para receber conteúdo da Red Hat. Não há conjuntos de repositórios disponíveis."
4311
+ msgstr "Atualmente não existem produtos Red Hat, favor importar um manifesto %(anchorBegin)s aqui %(anchorEnd)s para receber o conteúdo da Red Hat. Não há conjuntos de repositórios disponíveis."
3923
4312
 
3924
4313
  msgid "No Service Level Preference"
3925
4314
  msgstr "Nenhuma Preferência de Nível de Serviço"
@@ -3928,7 +4317,7 @@ msgid "No URL found for a container registry. Please check the configuration."
3928
4317
  msgstr "Nenhuma URL encontrada para um registro de contêiner. Verifique a configuração."
3929
4318
 
3930
4319
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3931
- msgstr "Nenhuma Versão de Visualização de Conteúdo %{component} existe ainda como um componente de Coleção de Visualização de Conteúdo %{composite} versão %{version}"
4320
+ msgstr "Nenhuma Versão do Conteúdo Visualizado %{component} existe como um componente do Conteúdo Visualizado composto %{composite} versão %{version}"
3932
4321
 
3933
4322
  msgid "No action is needed because there are no applicable errata for this host."
3934
4323
  msgstr ""
@@ -3940,7 +4329,7 @@ msgid "No applicable errata"
3940
4329
  msgstr ""
3941
4330
 
3942
4331
  msgid "No applicable errata for %s, skipping"
3943
- msgstr "Nenhuma errata aplicável para %s, ignorando"
4332
+ msgstr "Nenhuma errata aplicável para %s, pulando"
3944
4333
 
3945
4334
  msgid "No applications to restart"
3946
4335
  msgstr ""
@@ -3958,7 +4347,10 @@ msgid "No content has been provided."
3958
4347
  msgstr "Não foi fornecido nenhum conteúdo."
3959
4348
 
3960
4349
  msgid "No content ids provided"
3961
- msgstr "Nenhuma id de conteúdo fornecida "
4350
+ msgstr "Nenhuma ID de conteúdo fornecida "
4351
+
4352
+ msgid "No content in selected versions."
4353
+ msgstr ""
3962
4354
 
3963
4355
  msgid "No content view history events found."
3964
4356
  msgstr "Nenhum evento de histórico de visualização de conteúdo foi encontrado."
@@ -4011,13 +4403,19 @@ msgstr ""
4011
4403
  msgid "No host collections found."
4012
4404
  msgstr "Nenhuma coleção de host foi encontrada"
4013
4405
 
4406
+ msgid "No host collections yet"
4407
+ msgstr ""
4408
+
4409
+ msgid "No hosts found"
4410
+ msgstr ""
4411
+
4014
4412
  msgid "No hosts have been specified."
4015
4413
  msgstr "Não foram especificados hosts."
4016
4414
 
4017
4415
  msgid "No hosts registered with subscription-manager found in selection."
4018
4416
  msgstr "Nenhum host registrado com o subscription-manager encontrado na seleção."
4019
4417
 
4020
- msgid "No hosts with content source found!"
4418
+ msgid "No hosts were specified"
4021
4419
  msgstr ""
4022
4420
 
4023
4421
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4035,9 +4433,15 @@ msgstr ""
4035
4433
  msgid "No matching "
4036
4434
  msgstr ""
4037
4435
 
4436
+ msgid "No matching ${name} found."
4437
+ msgstr ""
4438
+
4038
4439
  msgid "No matching ${selectedContentType} found"
4039
4440
  msgstr ""
4040
4441
 
4442
+ msgid "No matching DEB found."
4443
+ msgstr ""
4444
+
4041
4445
  msgid "No matching RPM found."
4042
4446
  msgstr ""
4043
4447
 
@@ -4122,6 +4526,9 @@ msgstr "Nenhum processo precisa ser reiniciado"
4122
4526
  msgid "No products are enabled."
4123
4527
  msgstr "Nenhum produto está habilitado."
4124
4528
 
4529
+ msgid "No profiles to show"
4530
+ msgstr "Nenhum perfil para exibir"
4531
+
4125
4532
  msgid "No pulp workers running."
4126
4533
  msgstr "Nenhum trabalhador do pulp em execução. "
4127
4534
 
@@ -4195,7 +4602,10 @@ msgid "Not added"
4195
4602
  msgstr ""
4196
4603
 
4197
4604
  msgid "Not all necessary pulp workers running at %s."
4198
- msgstr "Nem todos os trabalhadores do pulp necessários estão em execução em %s."
4605
+ msgstr "Nem todos os trabalhadores de celulose necessários que trabalham no site %s."
4606
+
4607
+ msgid "Not installed"
4608
+ msgstr "Não instalado"
4199
4609
 
4200
4610
  msgid "Not running"
4201
4611
  msgstr "Não está em execução"
@@ -4204,10 +4614,10 @@ msgid "Not specified"
4204
4614
  msgstr ""
4205
4615
 
4206
4616
  msgid "Not yet published"
4207
- msgstr "Não publicado ainda"
4617
+ msgstr "Ainda não publicado"
4208
4618
 
4209
4619
  msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
4210
- msgstr "Observação: excluir o manifesto de assinatura é FORTEMENTE desencorajado. Excluir um manifesto:"
4620
+ msgstr "Nota: A eliminação de um manifesto de assinatura é extremamente desencorajada. A eliminação de um manifesto de assinatura é fortemente desencorajada:"
4211
4621
 
4212
4622
  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."
4213
4623
  msgstr "Nota: O número entre parênteses reflete toda uma errata, aplicável a partir do ambiente da biblioteca, que não está disponível para o host. Você precisará promover este conteúdo para a visualização de conteúdo relevante, a fim de torná-lo disponível."
@@ -4215,6 +4625,9 @@ msgstr "Nota: O número entre parênteses reflete toda uma errata, aplicável a
4215
4625
  msgid "Nothing selected"
4216
4626
  msgstr "Nada selecionado"
4217
4627
 
4628
+ msgid "Number of CPU(s)"
4629
+ msgstr ""
4630
+
4218
4631
  msgid "Number of host applicability calculations to process per task."
4219
4632
  msgstr "Número de cálculos de aplicabilidade de host para processar por tarefa."
4220
4633
 
@@ -4227,6 +4640,9 @@ msgstr "Número de resultados por página para retornar."
4227
4640
  msgid "Number to Allocate"
4228
4641
  msgstr "Número para alocar"
4229
4642
 
4643
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4644
+ msgstr ""
4645
+
4230
4646
  msgid "OSTree Branch"
4231
4647
  msgstr "Branch OSTree"
4232
4648
 
@@ -4248,6 +4664,9 @@ msgstr "Objeto para exibir subscrições disponíveis tanto para 'host' quanto p
4248
4664
  msgid "On Demand"
4249
4665
  msgstr "Sob demanda"
4250
4666
 
4667
+ msgid "On the RHUA Instance, check the available repositories."
4668
+ msgstr ""
4669
+
4251
4670
  msgid "On-disk location for exported repositories"
4252
4671
  msgstr "Localização no disco para repositórios exportados "
4253
4672
 
@@ -4255,7 +4674,7 @@ msgid "On-disk location for pulp 3 exported repositories"
4255
4674
  msgstr ""
4256
4675
 
4257
4676
  msgid "One of parameters [ %s ] required but not specified."
4258
- msgstr "Um dos parâmetros [ %s ] requerido mas não especificado"
4677
+ msgstr "Um dos parâmetros [ %s ] necessário, mas não especificado."
4259
4678
 
4260
4679
  msgid "One of yum or docker"
4261
4680
  msgstr "Um de yum ou docker"
@@ -4264,7 +4683,7 @@ msgid "One or more hosts not found"
4264
4683
  msgstr "Um ou mais hosts não encontrados"
4265
4684
 
4266
4685
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4267
- msgstr "Uma ou mais ids (%{ids}) não foram encontradas para %{assoc}. Talvez você não tenha permissões para vê-las."
4686
+ msgstr "Uma ou mais identificações (%{ids}) não foram encontradas para %{assoc}. Você pode não ter permissão para vê-los."
4268
4687
 
4269
4688
  msgid "One or more packages failed to sync properly."
4270
4689
  msgstr "Um ou mais pacotes falharam sincronizar adequadamente"
@@ -4282,7 +4701,7 @@ msgid "Only one Red Hat provider permitted for an Organization"
4282
4701
  msgstr "Somente um provedor da Red Hat permitido por organização"
4283
4702
 
4284
4703
  msgid "Only returns id and quantity fields"
4285
- msgstr "Só retorna campos de id e quantidade"
4704
+ msgstr "Só retorna campos de ID e quantidade"
4286
4705
 
4287
4706
  msgid "Operators"
4288
4707
  msgstr "Operadores"
@@ -4291,7 +4710,7 @@ msgid "Organization"
4291
4710
  msgstr "Organização"
4292
4711
 
4293
4712
  msgid "Organization %s is being deleted."
4294
- msgstr "Organização %s está sendo excluído. "
4713
+ msgstr "A organização %s está sendo eliminada."
4295
4714
 
4296
4715
  msgid "Organization ID"
4297
4716
  msgstr "ID de organização"
@@ -4306,7 +4725,7 @@ msgid "Organization cannot be blank."
4306
4725
  msgstr "Organização não pode estar em branco"
4307
4726
 
4308
4727
  msgid "Organization id"
4309
- msgstr "Id da organização"
4728
+ msgstr "ID da organização"
4310
4729
 
4311
4730
  msgid "Organization identifier"
4312
4731
  msgstr "Identificador de organização"
@@ -4323,6 +4742,9 @@ msgstr "Organização necessária"
4323
4742
  msgid "Orphaned Content Protection Time"
4324
4743
  msgstr ""
4325
4744
 
4745
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4746
+ msgstr ""
4747
+
4326
4748
  msgid "Other"
4327
4749
  msgstr "Outros"
4328
4750
 
@@ -4336,10 +4758,10 @@ msgid "Override content for activation_key"
4336
4758
  msgstr "Sobrescrever conteúdo para chave_ativação"
4337
4759
 
4338
4760
  msgid "Override key or name. Note if name is not provided the default name will be 'enabled'"
4339
- msgstr "Substitua a chave ou o nome. Observação: se o nome não for fornecido, o nome padrão será 'habilitado'"
4761
+ msgstr "Substitua a chave ou o nome. Observação: se o nome não for fornecido, o nome padrão será 'enabled'"
4340
4762
 
4341
4763
  msgid "Override parameter key or name. Note if name is not provided the default name will be 'enabled'"
4342
- msgstr "Substitua o nome ou a chave do parâmetro. Observação: se o nome não for fornecido, o nome padrão será 'habilitado'"
4764
+ msgstr "Substitua o nome ou a chave do parâmetro. Observação: se o nome não for fornecido, o nome padrão será 'enabled'"
4343
4765
 
4344
4766
  msgid "Override the major version number"
4345
4767
  msgstr "Substituir o número da versão principal"
@@ -4381,7 +4803,7 @@ msgid "Package Group Install Timed Out"
4381
4803
  msgstr "Instalação do Grupo de Pacote Expirou o Tempo"
4382
4804
 
4383
4805
  msgid "Package Group Install scheduled by %s"
4384
- msgstr "Instalação de Grupo de Pacote agendado pelo %s"
4806
+ msgstr "Instalação do Grupo de Pacotes programada por %s"
4385
4807
 
4386
4808
  msgid "Package Group Remove"
4387
4809
  msgstr "Remover Grupo de Pacote"
@@ -4399,13 +4821,13 @@ msgid "Package Group Remove Timed Out"
4399
4821
  msgstr "Remoção de Grupo de Pacote Expirou o Tempo"
4400
4822
 
4401
4823
  msgid "Package Group Remove scheduled by %s"
4402
- msgstr "Remoção de Grupo de Pacote agendado pelo %s"
4824
+ msgstr "Remoção de grupo de pacotes programada por %s"
4403
4825
 
4404
4826
  msgid "Package Group Update"
4405
4827
  msgstr "Atualizar Grupo de Pacote"
4406
4828
 
4407
4829
  msgid "Package Group Update scheduled by %s"
4408
- msgstr "Atualização de Grupo de Pacote agendado pelo %s"
4830
+ msgstr "Atualização do grupo de pacotes programada por %s"
4409
4831
 
4410
4832
  msgid "Package Groups"
4411
4833
  msgstr "Grupos de Pacote"
@@ -4426,13 +4848,13 @@ msgid "Package Install Timed Out"
4426
4848
  msgstr "Instalação de pacote expirou o tempo"
4427
4849
 
4428
4850
  msgid "Package Install scheduled by %s"
4429
- msgstr "Instalação de Pacote agendado pelo %s"
4851
+ msgstr "Instalação do pacote programada por %s"
4430
4852
 
4431
4853
  msgid "Package Profile Update"
4432
4854
  msgstr "Atualização de Perfil de Pacote"
4433
4855
 
4434
4856
  msgid "Package Profile Update for %s"
4435
- msgstr "Atualização de Perfil de Pacote para %s"
4857
+ msgstr "Atualização do perfil do pacote para %s"
4436
4858
 
4437
4859
  msgid "Package Remove"
4438
4860
  msgstr "Remover Pacote"
@@ -4450,7 +4872,7 @@ msgid "Package Remove Timed Out"
4450
4872
  msgstr "Remoção de pacote expirou o tempo"
4451
4873
 
4452
4874
  msgid "Package Remove scheduled by %s"
4453
- msgstr "Remoção de Pacote Agendado pelo %s"
4875
+ msgstr "Remoção da embalagem programada por %s"
4454
4876
 
4455
4877
  msgid "Package Type"
4456
4878
  msgstr ""
@@ -4474,7 +4896,7 @@ msgid "Package Update Timed Out"
4474
4896
  msgstr "Atualização de pacote expirou o tempo"
4475
4897
 
4476
4898
  msgid "Package Update scheduled by %s"
4477
- msgstr "Atualização de Pacote agendada pelo %s"
4899
+ msgstr "Atualização do pacote programada por %s"
4478
4900
 
4479
4901
  msgid "Package group update canceled"
4480
4902
  msgstr "Atualização de grupo de pacotes cancelada"
@@ -4489,16 +4911,16 @@ msgid "Package group update timed out"
4489
4911
  msgstr "Atualização de grupo de pacotes expirou"
4490
4912
 
4491
4913
  msgid "Package groups"
4492
- msgstr "Grupos de pacotes"
4914
+ msgstr "Grupos de embalagens"
4493
4915
 
4494
4916
  msgid "Package identifiers to filter content by"
4495
4917
  msgstr "Identificadores de pacote para filtrar o conteúdo"
4496
4918
 
4497
4919
  msgid "Package install failed: \"%{package}\""
4498
- msgstr "Instalação de Pacote Falhou: \"%{package}\""
4920
+ msgstr "A instalação do pacote falhou: \"%{package}\""
4499
4921
 
4500
4922
  msgid "Package installation: \"%{package}\" "
4501
- msgstr "Instalação do Pacote: \"%{package}\" "
4923
+ msgstr "Instalação da embalagem: \"%{package}\" "
4502
4924
 
4503
4925
  msgid "Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist."
4504
4926
  msgstr ""
@@ -4522,7 +4944,7 @@ msgid "Partially entitled"
4522
4944
  msgstr "Com direito limitado a serviços"
4523
4945
 
4524
4946
  msgid "Partition template IDs"
4525
- msgstr "IDs do modelo de partição "
4947
+ msgstr "IDs do template de partição "
4526
4948
 
4527
4949
  msgid "Password"
4528
4950
  msgstr "Senha"
@@ -4542,12 +4964,6 @@ msgstr "Senha para acessar a URL"
4542
4964
  msgid "Path"
4543
4965
  msgstr "Caminho"
4544
4966
 
4545
- msgid "Path for ssl cert used for pulp server auth"
4546
- msgstr "Caminho do certificado ssl utilizado para a autenticação de servidor de pulp"
4547
-
4548
- msgid "Path for ssl key used for pulp server auth"
4549
- msgstr "Caminho da chave ssl utilizada para o servidor de autenticação de pulp"
4550
-
4551
4967
  msgid "Path suffixes for finding alternate content"
4552
4968
  msgstr ""
4553
4969
 
@@ -4582,7 +4998,7 @@ msgid "Performs an incremental-export of the repositories in library."
4582
4998
  msgstr ""
4583
4999
 
4584
5000
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
4585
- msgstr "Permissão negada. Usuário '%{user}' não tem permissões para acessar a organização '%{org}'."
5001
+ msgstr "Permissão negada. O usuário '%{user}' não tem permissões de acesso à organização '%{org}'."
4586
5002
 
4587
5003
  msgid "Physical"
4588
5004
  msgstr "Físico"
@@ -4621,7 +5037,7 @@ msgid "Please select an operating system before assigning a kickstart repository
4621
5037
  msgstr "Selecione um sistema operacional antes de atribuir um repositório kickstart"
4622
5038
 
4623
5039
  msgid "Please select an organization to view subscription status."
4624
- msgstr "Selecione uma organização para ver o status da subscrição."
5040
+ msgstr "Selecione uma organização para ver o estado da subscrição."
4625
5041
 
4626
5042
  msgid "Please select an organization to view subscription totals."
4627
5043
  msgstr "Selecione uma organização para ver os totais de subscrição."
@@ -4632,6 +5048,9 @@ msgstr "Selecione uma opção na lista abaixo e você será redirecionado."
4632
5048
  msgid "Please wait while the task starts.."
4633
5049
  msgstr ""
4634
5050
 
5051
+ msgid "Please wait..."
5052
+ msgstr "Por favor, aguarde..."
5053
+
4635
5054
  msgid "Policy to set for mirroring content. Must be one of %s."
4636
5055
  msgstr ""
4637
5056
 
@@ -4687,7 +5106,7 @@ msgid "Product ID"
4687
5106
  msgstr "ID de produto"
4688
5107
 
4689
5108
  msgid "Product Name"
4690
- msgstr "Nome do Produto"
5109
+ msgstr "Nome do produto"
4691
5110
 
4692
5111
  msgid "Product and Repositories"
4693
5112
  msgstr "Produto e Repositórios"
@@ -4702,8 +5121,8 @@ msgid ""
4702
5121
  "Product id as listed from a host's installed products, \\\n"
4703
5122
  " this is not the same product id as the products api returns"
4704
5123
  msgstr ""
4705
- "Id de produto conforme listado a partir dos produtos instalados de um host, \\\n"
4706
- " essa não é a mesma id de produto dos produtos retornados pela api"
5124
+ "ID de produto conforme listado a partir dos produtos instalados de um host, \\\n"
5125
+ " essa não é a mesma ID de produto dos produtos retornados pela api"
4707
5126
 
4708
5127
  msgid "Product name"
4709
5128
  msgstr "Nome do Produto"
@@ -4718,14 +5137,23 @@ msgid "Product version"
4718
5137
  msgstr "Versão do produto"
4719
5138
 
4720
5139
  msgid "Product with ID %s not found in Candlepin. Skipping content import for it."
4721
- msgstr "Produto com a ID %s não encontrado em Candlepin. Ignorando a importação de conteúdo para ele."
5140
+ msgstr "Produto com ID %s não encontrado em Candlepin. Importação de conteúdo para ele."
4722
5141
 
4723
5142
  msgid "Product: '%{product}', Repository: '%{repository}'"
4724
5143
  msgstr ""
4725
5144
 
5145
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5146
+ msgstr ""
5147
+
4726
5148
  msgid "Products"
4727
5149
  msgstr "Produtos"
4728
5150
 
5151
+ msgid "Products updated."
5152
+ msgstr ""
5153
+
5154
+ msgid "Profiles"
5155
+ msgstr "Perfis"
5156
+
4729
5157
  msgid "Promote"
4730
5158
  msgstr "Promover"
4731
5159
 
@@ -4748,7 +5176,7 @@ msgid "Promotion Summary"
4748
5176
  msgstr "Resumo da promoção"
4749
5177
 
4750
5178
  msgid "Promotion Summary for %{content_view}"
4751
- msgstr "Resumo da promoção para %{content_view}"
5179
+ msgstr "Resumo da promoção para{content_view}"
4752
5180
 
4753
5181
  msgid "Promotion to Environment"
4754
5182
  msgstr "Promoção a ambiente"
@@ -4760,10 +5188,10 @@ msgid "Provided Products"
4760
5188
  msgstr "Produtos fornecidos"
4761
5189
 
4762
5190
  msgid "Provided pool with id %s has no upstream entitlement"
4763
- msgstr "O pool fornecido, com a id %s, não tem direito upstream"
5191
+ msgstr "Desde que o pool com id %s não tenha direito a upstream"
4764
5192
 
4765
5193
  msgid "Provisioning template IDs"
4766
- msgstr "IDs de modelo de provisionamento"
5194
+ msgstr "IDs de template de provisionamento"
4767
5195
 
4768
5196
  msgid "Proxies"
4769
5197
  msgstr "Proxies"
@@ -4810,20 +5238,11 @@ msgstr ""
4810
5238
  msgid "Pulp 3 is not enabled on Smart proxy!"
4811
5239
  msgstr ""
4812
5240
 
4813
- msgid "Pulp Docker registry port"
4814
- msgstr "Porta de registro do Docker do pulp"
4815
-
4816
5241
  msgid "Pulp bulk load size"
4817
5242
  msgstr ""
4818
5243
 
4819
- msgid "Pulp client cert"
4820
- msgstr "Certificado de cliente do pulp"
4821
-
4822
- msgid "Pulp client key"
4823
- msgstr "Chave de cliente do pulp"
4824
-
4825
5244
  msgid "Pulp database connection issue at %s."
4826
- msgstr "Problema de conexão com o banco de dados do pulp em %s."
5245
+ msgstr "Problema de conexão de banco de dados de celulose em %s."
4827
5246
 
4828
5247
  msgid "Pulp database connection issue."
4829
5248
  msgstr "Problema de conexão com o banco de dados do pulp. "
@@ -4832,7 +5251,7 @@ msgid "Pulp disk space notification"
4832
5251
  msgstr "Notificação de espaço em disco do pulp"
4833
5252
 
4834
5253
  msgid "Pulp does not appear to be running at %s."
4835
- msgstr "O pulp parece não estar em execução em %s."
5254
+ msgstr "A celulose não parece estar funcionando em %s."
4836
5255
 
4837
5256
  msgid "Pulp does not appear to be running."
4838
5257
  msgstr "O pulp parece não estar em execução. "
@@ -4841,7 +5260,7 @@ msgid "Pulp export destination filepath"
4841
5260
  msgstr "Caminho de arquivo de destino da exportação do pulp"
4842
5261
 
4843
5262
  msgid "Pulp message bus connection issue at %s."
4844
- msgstr "Problema de conexão com o barramento de mensagens do pulp em %s."
5263
+ msgstr "Problema de conexão do ônibus de mensagens de polpa em %s."
4845
5264
 
4846
5265
  msgid "Pulp message bus connection issue."
4847
5266
  msgstr "Problema de conexão com o barramento de mensagens do pulp. "
@@ -4850,7 +5269,7 @@ msgid "Pulp node"
4850
5269
  msgstr "Nó pulp"
4851
5270
 
4852
5271
  msgid "Pulp redis connection issue at %s."
4853
- msgstr "Problema de conexão com redis do pulp em %s."
5272
+ msgstr "Problema de conexão de polpa redis em %s."
4854
5273
 
4855
5274
  msgid "Pulp server version"
4856
5275
  msgstr "Versão do servidor pulp "
@@ -4883,7 +5302,7 @@ msgid "Quantity"
4883
5302
  msgstr "Quantidade"
4884
5303
 
4885
5304
  msgid "Quantity must not be above ${pool.available}"
4886
- msgstr "A quantidade não deve exceder ${pool.available}"
5305
+ msgstr "A quantidade não deve estar acima de ${pool.available}"
4887
5306
 
4888
5307
  msgid "Quantity of entitlements to bind"
4889
5308
  msgstr "Quantidade de direitos para associar"
@@ -4900,12 +5319,18 @@ msgstr "Quantidade destas inscrições para adicionar "
4900
5319
  msgid "Quantity to Allocate"
4901
5320
  msgstr "Quantidade para alocar"
4902
5321
 
5322
+ msgid "RAM"
5323
+ msgstr ""
5324
+
4903
5325
  msgid "RAM: %s GB"
4904
5326
  msgstr "RAM: %s GB"
4905
5327
 
4906
5328
  msgid "RH Repos"
4907
5329
  msgstr "Repositórios RH"
4908
5330
 
5331
+ msgid "RHUI"
5332
+ msgstr ""
5333
+
4909
5334
  msgid "RPM"
4910
5335
  msgstr "RPM"
4911
5336
 
@@ -4918,6 +5343,12 @@ msgstr ""
4918
5343
  msgid "RPM name"
4919
5344
  msgstr ""
4920
5345
 
5346
+ msgid "RPM package groups"
5347
+ msgstr ""
5348
+
5349
+ msgid "RPM package updates"
5350
+ msgstr ""
5351
+
4921
5352
  msgid "RPM packages"
4922
5353
  msgstr ""
4923
5354
 
@@ -4925,7 +5356,7 @@ msgid "RPMs"
4925
5356
  msgstr "RPMs"
4926
5357
 
4927
5358
  msgid "Range"
4928
- msgstr "Classe"
5359
+ msgstr "Gama"
4929
5360
 
4930
5361
  msgid "Realm IDs"
4931
5362
  msgstr "IDs de Realm"
@@ -4976,7 +5407,7 @@ msgid "Red Hat Repositories"
4976
5407
  msgstr "Repositórios da Red Hat"
4977
5408
 
4978
5409
  msgid "Red Hat Repositories page"
4979
- msgstr "Página de Repositórios da Red Hat"
5410
+ msgstr "Página de Repositórios Red Hat"
4980
5411
 
4981
5412
  msgid "Red Hat content will be consumed from an {type}."
4982
5413
  msgstr ""
@@ -4984,6 +5415,9 @@ msgstr ""
4984
5415
  msgid "Red Hat content will be consumed from the {type}."
4985
5416
  msgstr ""
4986
5417
 
5418
+ msgid "Red Hat content will be consumed from {type}."
5419
+ msgstr ""
5420
+
4987
5421
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4988
5422
  msgstr ""
4989
5423
 
@@ -4999,23 +5433,38 @@ msgstr "Os repositórios da Red Hat não pode ser manipulados."
4999
5433
  msgid "Refresh"
5000
5434
  msgstr "Atualizar"
5001
5435
 
5436
+ msgid "Refresh Alternate Content Source"
5437
+ msgstr ""
5438
+
5002
5439
  msgid "Refresh Content Host Statuses for %s"
5003
5440
  msgstr ""
5004
5441
 
5005
5442
  msgid "Refresh Manifest"
5006
5443
  msgstr "Atualizar Manifesto"
5007
5444
 
5445
+ msgid "Refresh alternate content sources"
5446
+ msgstr ""
5447
+
5448
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5449
+ msgstr ""
5450
+
5008
5451
  msgid "Refresh previously imported manifest for Red Hat provider"
5009
5452
  msgstr "Atualizar manifesto importado anteriormente para provedor Red Hat "
5010
5453
 
5011
- msgid "Refresh_Content_Host_Status"
5454
+ msgid "Refresh source"
5012
5455
  msgstr ""
5013
5456
 
5457
+ msgid "Refresh_Content_Host_Status"
5458
+ msgstr "Refresh_Content_Host_Status"
5459
+
5014
5460
  msgid "Register a host with subscription and information"
5015
5461
  msgstr "Registrar um host com subscrição e informações"
5016
5462
 
5017
5463
  msgid "Register host '%s' before attaching subscriptions"
5018
- msgstr "Registrar host '%s' antes de vincular as subscrições"
5464
+ msgstr "Registre o anfitrião '%s' antes de anexar as assinaturas"
5465
+
5466
+ msgid "Registered"
5467
+ msgstr "Registrado"
5019
5468
 
5020
5469
  msgid "Registered by"
5021
5470
  msgstr ""
@@ -5023,17 +5472,17 @@ msgstr ""
5023
5472
  msgid "Registered on"
5024
5473
  msgstr ""
5025
5474
 
5026
- msgid "Registered through"
5475
+ msgid "Registering to multiple environments is not enabled."
5027
5476
  msgstr ""
5028
5477
 
5029
5478
  msgid "Registration details"
5030
5479
  msgstr ""
5031
5480
 
5032
5481
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
5033
- msgstr "O padrão de nomes de registro resulta em nomes de imagens de contêineres duplicados para estes repositórios: %s."
5482
+ msgstr "O padrão de nomes de registro resulta em nomes de imagens de recipientes duplicados para estes repositórios: %s."
5034
5483
 
5035
5484
  msgid "Registry name pattern results in invalid container image name of member repository '%{name}'"
5036
- msgstr "O padrão de nomes de registro resulta em nome de imagem de contêiner inválido de repositório de membro '%{nome}'"
5485
+ msgstr "O padrão de nome de registro resulta em nome de imagem de container inválido do repositório de membros '%{name}'"
5037
5486
 
5038
5487
  msgid "Registry name pattern will result in invalid container image name of member repositories"
5039
5488
  msgstr "O padrão de nomes de registro resultará em nome de imagem de contêiner inválido de repositório de membro"
@@ -5041,24 +5490,27 @@ msgstr "O padrão de nomes de registro resultará em nome de imagem de contêine
5041
5490
  msgid "Reindex subscriptions"
5042
5491
  msgstr "Reindexar subscrições "
5043
5492
 
5044
- msgid "Related component content views"
5493
+ msgid "Related composite content views"
5045
5494
  msgstr ""
5046
5495
 
5047
- msgid "Related component cvs: "
5496
+ msgid "Related composite content views: "
5048
5497
  msgstr ""
5049
5498
 
5050
- msgid "Related composite content views"
5499
+ msgid "Related content views"
5051
5500
  msgstr ""
5052
5501
 
5053
- msgid "Related composite cvs: "
5502
+ msgid "Related content views will appear here when created."
5054
5503
  msgstr ""
5055
5504
 
5056
- msgid "Related content views will appear here when created."
5505
+ msgid "Related content views: "
5057
5506
  msgstr ""
5058
5507
 
5059
5508
  msgid "Release"
5060
5509
  msgstr "Lançamento"
5061
5510
 
5511
+ msgid "Release version"
5512
+ msgstr ""
5513
+
5062
5514
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5063
5515
  msgstr "Versão de lançamento para este host utilizar (7Server, 7.1, etc)"
5064
5516
 
@@ -5077,11 +5529,14 @@ msgstr "Recarregar dados"
5077
5529
  msgid "Remote action:"
5078
5530
  msgstr "Ação remota:"
5079
5531
 
5532
+ msgid "Remote execution job '${description}' failed."
5533
+ msgstr ""
5534
+
5080
5535
  msgid "Removal of package group(s) requested: %{groups}"
5081
- msgstr "Remoção de grupo(s) de pacotes solicitada: %{groups}"
5536
+ msgstr "Remoção do(s) grupo(s) de embalagem(s) solicitada(s): %{groups}"
5082
5537
 
5083
5538
  msgid "Removal of package(s) requested: %{packages}"
5084
- msgstr "Remoção de pacote(s) solicitada: %{packages}"
5539
+ msgstr "Remoção do(s) pacote(s) solicitado(s): %{packages}"
5085
5540
 
5086
5541
  msgid "Remove"
5087
5542
  msgstr "Remover"
@@ -5137,8 +5592,8 @@ msgstr ""
5137
5592
  msgid "Remove one or more host collections from one or more hosts"
5138
5593
  msgstr "Remover uma ou mais coleções de um ou mais hosts"
5139
5594
 
5140
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5141
- msgstr "Remover uma ou mais subscrições de uma alocação de subscrição upstream"
5595
+ msgid "Remove one or more subscriptions from an upstream manifest"
5596
+ msgstr ""
5142
5597
 
5143
5598
  msgid "Remove package"
5144
5599
  msgstr "Remover Pacote"
@@ -5165,7 +5620,7 @@ msgid "Remove subscriptions"
5165
5620
  msgstr "Remover as subscrições"
5166
5621
 
5167
5622
  msgid "Remove subscriptions from %s"
5168
- msgstr "Remover as subscrições de %s"
5623
+ msgstr "Retirar as assinaturas de %s"
5169
5624
 
5170
5625
  msgid "Remove subscriptions from one or more hosts"
5171
5626
  msgstr "Remover subscrições de um ou mais hosts"
@@ -5188,6 +5643,9 @@ msgstr "Removendo Grupo de Pacote..."
5188
5643
  msgid "Removing Package..."
5189
5644
  msgstr "Removendo Pacote..."
5190
5645
 
5646
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5647
+ msgstr ""
5648
+
5191
5649
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5192
5650
  msgstr ""
5193
5651
 
@@ -5207,16 +5665,16 @@ msgid "Repository"
5207
5665
  msgstr "Repo"
5208
5666
 
5209
5667
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
5210
- msgstr "O repositório %s não pode ser removido, pois já foi incluído em uma visualização de conteúdo publicada."
5668
+ msgstr "O Repositório %s não pode ser excluído, uma vez que já foi incluído em uma Vista de Conteúdo publicada."
5211
5669
 
5212
5670
  msgid "Repository '%(repoName)s' has been disabled."
5213
- msgstr "O repositório '%(repoName)s' foi desabilitado."
5671
+ msgstr "O Repositório '%(repoName)s' foi desativado."
5214
5672
 
5215
5673
  msgid "Repository '%(repoName)s' has been enabled."
5216
- msgstr "O repositório '%(repoName)s' foi habilitaodo."
5674
+ msgstr "O Repositório '%(repoName)s' foi habilitado."
5217
5675
 
5218
5676
  msgid "Repository Id associated with the kickstart repo used for provisioning"
5219
- msgstr "A Id de repositório associada ao repositório kickstart utilizado para o provisionamento"
5677
+ msgstr "A ID de repositório associada ao repositório kickstart utilizado para o provisionamento"
5220
5678
 
5221
5679
  msgid "Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it."
5222
5680
  msgstr "O repositório não pode ser removido, pois já foi incluído em uma visualização de conteúdo publicada. Por favor, apague todas as versões de visualização de conteúdo que contêm este repositório antes de tentar removê-lo. "
@@ -5225,10 +5683,10 @@ msgid "Repository cannot be disabled since it has already been promoted."
5225
5683
  msgstr "O Repositório não pode ser desabilitado pois já foi promovido."
5226
5684
 
5227
5685
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
5228
- msgstr "Repositório já foi clonado para %{cv_name} no ambiente %{to_env}"
5686
+ msgstr "Repositório já foi clonado a %{cv_name} no meio ambiente % %{to_env}"
5229
5687
 
5230
5688
  msgid "Repository id"
5231
- msgstr "Id de repositório"
5689
+ msgstr "ID de repositório"
5232
5690
 
5233
5691
  msgid "Repository identifier"
5234
5692
  msgstr "Identificador do repositório"
@@ -5272,17 +5730,17 @@ msgstr ""
5272
5730
  msgid "Repository sets reset to default"
5273
5731
  msgstr ""
5274
5732
 
5275
- msgid "Repository sets will appear here when available."
5733
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5276
5734
  msgstr ""
5277
5735
 
5278
5736
  msgid "Republish Repositories of %{name} %{version}"
5279
- msgstr "Republicar repositórios de %{name} %{version}"
5737
+ msgstr "Republicação de Repositórios de %{name} %{version}"
5280
5738
 
5281
5739
  msgid "Republish Version Repositories"
5282
5740
  msgstr "Republicar repositórios da versão"
5283
5741
 
5284
5742
  msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
5285
- msgstr "Exige que você faça o upload do manifesto da assinatura e anexe as assinaturas novamente nos hosts e nas chaves de ativação."
5743
+ msgstr "Exigir que você faça o upload da assinatura-manifest e reatribua as assinaturas aos anfitriões e chaves de ativação."
5286
5744
 
5287
5745
  msgid "Requirements is not valid yaml."
5288
5746
  msgstr ""
@@ -5345,7 +5803,7 @@ msgid "Retrieve a single errata for a host"
5345
5803
  msgstr "Recuperar uma única errata para um host"
5346
5804
 
5347
5805
  msgid "Return Red Hat (non-custom) products only"
5348
- msgstr "Retornar apenas produtos Red Hat (não personalizadps)"
5806
+ msgstr "Retornar apenas produtos Red Hat (não personalizados)"
5349
5807
 
5350
5808
  msgid "Return content that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
5351
5809
  msgstr "Retorne conteúdo que possa ser adicionado ao objeto especificado. Os valores 'content_view_version' e 'content_view_filter' são compatíveis."
@@ -5407,6 +5865,9 @@ msgstr "Retornar pacotes atualizáveis em um ou mais hosts"
5407
5865
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5408
5866
  msgstr "Retorne pacotes que possam ser adicionados ao objeto especificado. Apenas o valor 'content_view_version' é compatível."
5409
5867
 
5868
+ msgid "Return same, different or all results"
5869
+ msgstr ""
5870
+
5410
5871
  msgid "Return subscriptions that match installed products of the specified host"
5411
5872
  msgstr "Retornar subscrições que correspondem aos produtos instalados do host especificado "
5412
5873
 
@@ -5434,6 +5895,9 @@ msgstr ""
5434
5895
  msgid "Review details"
5435
5896
  msgstr ""
5436
5897
 
5898
+ msgid "Review the information below and click "
5899
+ msgstr ""
5900
+
5437
5901
  msgid "Review your currently selected changes for "
5438
5902
  msgstr ""
5439
5903
 
@@ -5452,21 +5916,30 @@ msgstr ""
5452
5916
  msgid "Run Sync Plan:"
5453
5917
  msgstr "Executar plano de sincronização:"
5454
5918
 
5455
- msgid "Run job invocation"
5456
- msgstr ""
5457
-
5458
5919
  msgid "Running"
5459
5920
  msgstr "Executando"
5460
5921
 
5461
5922
  msgid "SKU"
5462
5923
  msgstr "SKU"
5463
5924
 
5925
+ msgid "SLA"
5926
+ msgstr "SLA"
5927
+
5464
5928
  msgid "SRPM details"
5465
5929
  msgstr "Detalhes de SRPM"
5466
5930
 
5467
5931
  msgid "SSL CA Content Credential"
5468
5932
  msgstr ""
5469
5933
 
5934
+ msgid "SSL CA certificate"
5935
+ msgstr ""
5936
+
5937
+ msgid "SSL client certificate"
5938
+ msgstr ""
5939
+
5940
+ msgid "SSL client key"
5941
+ msgstr ""
5942
+
5470
5943
  msgid "SSL version used to communicate with the CDN"
5471
5944
  msgstr "Versão SSL utilizada para se comunicar com o CDN"
5472
5945
 
@@ -5476,14 +5949,17 @@ msgstr "SUBSCRIÇÕES EXPIRANDO EM BREVE"
5476
5949
  msgid "Save"
5477
5950
  msgstr "Salvar"
5478
5951
 
5952
+ msgid "Saving alternate content source..."
5953
+ msgstr ""
5954
+
5479
5955
  msgid "Schedule errata for installation using katello-agent. %s"
5480
5956
  msgstr ""
5481
5957
 
5482
5958
  msgid "Schema Version 1"
5483
- msgstr "Versão 1 do esquema"
5959
+ msgstr "Esquema Versão 1"
5484
5960
 
5485
5961
  msgid "Schema Version 2"
5486
- msgstr "Versão 2 do esquema"
5962
+ msgstr "Esquema Versão 2"
5487
5963
 
5488
5964
  msgid "Search"
5489
5965
  msgstr "Pesquisar"
@@ -5545,6 +6021,15 @@ msgstr "Selecionar organização"
5545
6021
  msgid "Select Value"
5546
6022
  msgstr "Selecionar valor"
5547
6023
 
6024
+ msgid "Select a CA certificate"
6025
+ msgstr ""
6026
+
6027
+ msgid "Select a client certificate"
6028
+ msgstr ""
6029
+
6030
+ msgid "Select a client key"
6031
+ msgstr ""
6032
+
5548
6033
  msgid "Select a content view"
5549
6034
  msgstr ""
5550
6035
 
@@ -5560,6 +6045,9 @@ msgstr ""
5560
6045
  msgid "Select a provider to install katello-host-tools-tracer"
5561
6046
  msgstr ""
5562
6047
 
6048
+ msgid "Select add-ons"
6049
+ msgstr ""
6050
+
5563
6051
  msgid "Select all"
5564
6052
  msgstr ""
5565
6053
 
@@ -5575,20 +6063,23 @@ msgstr ""
5575
6063
  msgid "Select an environment above"
5576
6064
  msgstr ""
5577
6065
 
6066
+ msgid "Select an option"
6067
+ msgstr ""
6068
+
5578
6069
  msgid "Select an organization"
5579
6070
  msgstr "Selecionar uma organização"
5580
6071
 
5581
6072
  msgid "Select available version of ${cvName} to use"
5582
6073
  msgstr ""
5583
6074
 
5584
- msgid "Select available version of components to use"
6075
+ msgid "Select available version of content views to use"
5585
6076
  msgstr ""
5586
6077
 
5587
6078
  msgid "Select content view"
5588
6079
  msgstr ""
5589
6080
 
5590
6081
  msgid "Select environment"
5591
- msgstr ""
6082
+ msgstr "Selecionar ambiente"
5592
6083
 
5593
6084
  msgid "Select host collection(s) to associate with host {hostName}."
5594
6085
  msgstr ""
@@ -5597,7 +6088,7 @@ msgid "Select host collection(s) to remove from host {hostName}."
5597
6088
  msgstr ""
5598
6089
 
5599
6090
  msgid "Select hosts to assign to %s"
5600
- msgstr "Selecionar hosts para associar em %s"
6091
+ msgstr "Selecione os anfitriões a serem designados para %s"
5601
6092
 
5602
6093
  msgid "Select lifecycle environment"
5603
6094
  msgstr ""
@@ -5614,9 +6105,27 @@ msgstr ""
5614
6105
  msgid "Select page"
5615
6106
  msgstr ""
5616
6107
 
6108
+ msgid "Select products"
6109
+ msgstr ""
6110
+
6111
+ msgid "Select products to associate to this source."
6112
+ msgstr ""
6113
+
5617
6114
  msgid "Select row"
5618
6115
  msgstr "Selecionar linha"
5619
6116
 
6117
+ msgid "Select smart proxies to be used with this source."
6118
+ msgstr ""
6119
+
6120
+ msgid "Select smart proxy"
6121
+ msgstr ""
6122
+
6123
+ msgid "Select source type"
6124
+ msgstr ""
6125
+
6126
+ msgid "Select system purpose attributes for host {hostName}."
6127
+ msgstr ""
6128
+
5620
6129
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5621
6130
  msgstr "Selecione a mídia de instalação que será usada para fornecer esse host. Escolha 'Conteúdo sincronizado' para Repositórios Kickstart sincronizados ou 'Todas as mídias' para outras mídias."
5622
6131
 
@@ -5630,7 +6139,7 @@ msgid "Sending a list of included IDs is not allowed when all items are being se
5630
6139
  msgstr ""
5631
6140
 
5632
6141
  msgid "Service Level %s"
5633
- msgstr "Nível de Serviço %s"
6142
+ msgstr "Nível de serviço %s"
5634
6143
 
5635
6144
  msgid "Service Level (SLA)"
5636
6145
  msgstr "Nível de serviço (SLA)"
@@ -5666,7 +6175,7 @@ msgid "Sets whether the Host will autoheal subscriptions upon checkin"
5666
6175
  msgstr "Define se o Host fará a recuperação automática das subscrições após check-in"
5667
6176
 
5668
6177
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
5669
- msgstr "A condiguração 'default_location_subscribed_hosts' não está definida para um local válido."
6178
+ msgstr "A configuração 'default_location_subscribed_hosts' não está definida para um local válido."
5670
6179
 
5671
6180
  msgid "Severity"
5672
6181
  msgstr "Severidade"
@@ -5719,7 +6228,7 @@ msgstr ""
5719
6228
  msgid "Show an activation key"
5720
6229
  msgstr "Exibir uma chave de ativação"
5721
6230
 
5722
- msgid "Show an alternate content source"
6231
+ msgid "Show an alternate content source."
5723
6232
  msgstr ""
5724
6233
 
5725
6234
  msgid "Show an environment"
@@ -5746,11 +6255,14 @@ msgstr "Exibir versões de lançamento disponíveis para uma chave de ativação
5746
6255
  msgid "Show releases available for the content host"
5747
6256
  msgstr "Exibir lançamentos disponiveis para um host de conteúdo"
5748
6257
 
6258
+ msgid "Show repositories enabled on the host that are known to Katello"
6259
+ msgstr ""
6260
+
5749
6261
  msgid "Show the available repository types"
5750
6262
  msgstr "Exibir os tipos de repositório disponíveis "
5751
6263
 
5752
6264
  msgid "Shows status of Katello system and it's subcomponents"
5753
- msgstr "Exibe o status do sistema Katello e seus subcomponentes"
6265
+ msgstr "Exibe o estado do sistema Katello e seus subcomponentes"
5754
6266
 
5755
6267
  msgid "Shows version information"
5756
6268
  msgstr "Exibir informações da versão"
@@ -5767,6 +6279,9 @@ msgstr ""
5767
6279
  msgid "Simple Content Access has been enabled for '%{subject}'."
5768
6280
  msgstr ""
5769
6281
 
6282
+ msgid "Simplified"
6283
+ msgstr ""
6284
+
5770
6285
  msgid "Single content view consisting of e.g. repositories"
5771
6286
  msgstr ""
5772
6287
 
@@ -5779,14 +6294,20 @@ msgstr "Ignorar a verificação de metadados em cada repositório no proxy intel
5779
6294
  msgid "Skipped pulp_auth check after failed pulp check"
5780
6295
  msgstr "Ignorou a verificação pulp_auth após a falha de verificação do pulp "
5781
6296
 
6297
+ msgid "Smart proxies"
6298
+ msgstr "Proxies Inteligentes"
6299
+
5782
6300
  msgid "Smart proxy IDs"
5783
6301
  msgstr "IDs de Proxy Inteligente"
5784
6302
 
5785
6303
  msgid "Smart proxy content source not found!"
5786
6304
  msgstr ""
5787
6305
 
6306
+ msgid "Sockets"
6307
+ msgstr "Sockets"
6308
+
5788
6309
  msgid "Sockets: %s"
5789
- msgstr "Soquetes: %s"
6310
+ msgstr "Tomadas: %s"
5790
6311
 
5791
6312
  msgid "Solution"
5792
6313
  msgstr "Solução"
@@ -5797,7 +6318,7 @@ msgstr "Solucionar dependências de RPM por padrão na publicação de Visualiza
5797
6318
  msgid "Solve dependencies"
5798
6319
  msgstr "Solucionar dependências"
5799
6320
 
5800
- msgid "Some hosts are ignored!"
6321
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5801
6322
  msgstr ""
5802
6323
 
5803
6324
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5821,13 +6342,13 @@ msgstr ""
5821
6342
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5822
6343
  msgstr ""
5823
6344
 
5824
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6345
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5825
6346
  msgstr ""
5826
6347
 
5827
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6348
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5828
6349
  msgstr ""
5829
6350
 
5830
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6351
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5831
6352
  msgstr ""
5832
6353
 
5833
6354
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5875,9 +6396,15 @@ msgstr ""
5875
6396
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5876
6397
  msgstr ""
5877
6398
 
6399
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6400
+ msgstr ""
6401
+
5878
6402
  msgid "Something went wrong while loading the content views. See the logs for more information"
5879
6403
  msgstr ""
5880
6404
 
6405
+ msgid "Something went wrong while refreshing alternate content sources: "
6406
+ msgstr ""
6407
+
5881
6408
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5882
6409
  msgstr ""
5883
6410
 
@@ -5890,6 +6417,9 @@ msgstr ""
5890
6417
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5891
6418
  msgstr ""
5892
6419
 
6420
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6421
+ msgstr ""
6422
+
5893
6423
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5894
6424
  msgstr ""
5895
6425
 
@@ -5908,9 +6438,33 @@ msgstr ""
5908
6438
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5909
6439
  msgstr ""
5910
6440
 
6441
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6442
+ msgstr ""
6443
+
6444
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6445
+ msgstr ""
6446
+
6447
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6448
+ msgstr ""
6449
+
6450
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6451
+ msgstr ""
6452
+
5911
6453
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5912
6454
  msgstr ""
5913
6455
 
6456
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6457
+ msgstr ""
6458
+
6459
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6460
+ msgstr ""
6461
+
6462
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6463
+ msgstr ""
6464
+
6465
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6466
+ msgstr ""
6467
+
5914
6468
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5915
6469
  msgstr ""
5916
6470
 
@@ -5927,7 +6481,10 @@ msgid "Source RPM"
5927
6481
  msgstr "RPM de origem"
5928
6482
 
5929
6483
  msgid "Source RPMs"
5930
- msgstr "RPMs de origem"
6484
+ msgstr "RPMs de Origem"
6485
+
6486
+ msgid "Source type"
6487
+ msgstr ""
5931
6488
 
5932
6489
  msgid "Specify an export chunk size less than 1_000_000 GB"
5933
6490
  msgstr ""
@@ -5957,10 +6514,10 @@ msgid "Starts"
5957
6514
  msgstr "Inicia"
5958
6515
 
5959
6516
  msgid "State"
5960
- msgstr ""
6517
+ msgstr "Estado"
5961
6518
 
5962
6519
  msgid "Status"
5963
- msgstr "Status"
6520
+ msgstr "Estado"
5964
6521
 
5965
6522
  msgid "Status must be one of: %s"
5966
6523
  msgstr ""
@@ -5978,25 +6535,25 @@ msgid "Streams based on the host based on the installation status"
5978
6535
  msgstr ""
5979
6536
 
5980
6537
  msgid "Streams based on the host based on their status"
5981
- msgstr "Fluxos baseados no host com base em seu status"
6538
+ msgstr "Fluxos baseados no host com base em seu estado"
5982
6539
 
5983
6540
  msgid "Submit"
5984
6541
  msgstr "Enviar"
5985
6542
 
5986
6543
  msgid "Subnet IDs"
5987
- msgstr "Ids de Subrede"
6544
+ msgstr "IDs de Subrede"
6545
+
6546
+ msgid "Subpaths"
6547
+ msgstr ""
5988
6548
 
5989
6549
  msgid "Subscription"
5990
6550
  msgstr "Subscrição"
5991
6551
 
5992
- msgid "Subscription Allocation"
5993
- msgstr "Alocação de subscrição"
5994
-
5995
6552
  msgid "Subscription Details"
5996
6553
  msgstr "Detalhes de subscrição"
5997
6554
 
5998
6555
  msgid "Subscription ID"
5999
- msgstr "Id de subscrição"
6556
+ msgstr "ID de subscrição"
6000
6557
 
6001
6558
  msgid "Subscription Info"
6002
6559
  msgstr "Informações de subscrição"
@@ -6011,20 +6568,17 @@ msgid "Subscription Name"
6011
6568
  msgstr "Nome de subscrição"
6012
6569
 
6013
6570
  msgid "Subscription Pool id"
6014
- msgstr "Id do Pool de Subscrição "
6571
+ msgstr "ID do Pool de Subscrição "
6015
6572
 
6016
6573
  msgid "Subscription Pool uuid"
6017
6574
  msgstr "UUID de pool de subscrição"
6018
6575
 
6019
6576
  msgid "Subscription Status"
6020
- msgstr "Status de subscrição"
6577
+ msgstr "Estado de subscrição"
6021
6578
 
6022
6579
  msgid "Subscription UUID"
6023
6580
  msgstr ""
6024
6581
 
6025
- msgid "Subscription Watch"
6026
- msgstr "Inspeção de subscrição"
6027
-
6028
6582
  msgid "Subscription connection enabled"
6029
6583
  msgstr ""
6030
6584
 
@@ -6032,10 +6586,10 @@ msgid "Subscription expiration notification"
6032
6586
  msgstr "Notificação de expiração de subscrição"
6033
6587
 
6034
6588
  msgid "Subscription id is nil."
6035
- msgstr "Id de subscrição é nula."
6589
+ msgstr "ID de subscrição é nula."
6036
6590
 
6037
6591
  msgid "Subscription identifier"
6038
- msgstr "Identificador de subscrição"
6592
+ msgstr "ID de subscrição"
6039
6593
 
6040
6594
  msgid "Subscription manager name registration fact"
6041
6595
  msgstr "Fato de registro de nome do gerenciador de subscrições"
@@ -6049,8 +6603,11 @@ msgstr "Arquivo de manifesto de subscrição"
6049
6603
  msgid "Subscription not found"
6050
6604
  msgstr "Subscrição não encontrada"
6051
6605
 
6606
+ msgid "Subscription status"
6607
+ msgstr ""
6608
+
6052
6609
  msgid "Subscription was not persisted - %{error_message}"
6053
- msgstr "A subscrição não era persistente - %{error_message}"
6610
+ msgstr "A assinatura não foi persistida - %{error_message}"
6054
6611
 
6055
6612
  msgid "Subscriptions"
6056
6613
  msgstr "Subscrições"
@@ -6067,29 +6624,38 @@ msgstr "As subscrições foram salvas e estão sendo atualizadas. "
6067
6624
  msgid "Subscriptions information based on selected activation keys:"
6068
6625
  msgstr "Informações de Subscrições baseadas em chaves de ativação selecionada:"
6069
6626
 
6627
+ msgid "Subscriptions service"
6628
+ msgstr ""
6629
+
6070
6630
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6071
- msgstr "Incompatibilidade de substituição. Não é possível atualizar para o conteúdo: (%{content}). De [%{content_url}] para [%{new_url}]."
6631
+ msgstr "Descoordenação de substituição. Incapaz de atualizar por conteúdo: (%{content}). De [%{content_url}] para [%{new_url}]."
6072
6632
 
6073
6633
  msgid "Success"
6074
6634
  msgstr "Sucesso"
6075
6635
 
6076
6636
  msgid "Successfully added %s Host(s)."
6077
- msgstr "%s Host(s) adicionado(s) com êxito. "
6637
+ msgstr "Adicionado com sucesso %s Host(s)."
6078
6638
 
6079
6639
  msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
6080
- msgstr "Adicionado com sucesso %{count} host de conteúdo(s) para coleção de host %{host_collection}."
6640
+ msgstr "Acrescentei com sucesso %{count} anfitrião(es) de conteúdo para a coleção de anfitriões %{host_collection}."
6081
6641
 
6082
6642
  msgid "Successfully changed sync plan for %s product(s)"
6083
- msgstr "Plano de sinc modificado com sucesso para produto(s) %s "
6643
+ msgstr "Plano de sincronização alterado com sucesso para %s produto(s)"
6084
6644
 
6085
6645
  msgid "Successfully initiated removal of %s product(s)"
6086
- msgstr "Remoção iniciado com sucesso do produto(s) %s "
6646
+ msgstr "Remoção iniciada com sucesso do(s) produto(s) %s "
6647
+
6648
+ msgid "Successfully refreshed."
6649
+ msgstr ""
6087
6650
 
6088
6651
  msgid "Successfully removed %s Host(s)."
6089
- msgstr "%s Host(s) removido(s) com êxito."
6652
+ msgstr "Removido com sucesso %s Host(s)."
6090
6653
 
6091
6654
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6092
- msgstr "Removido com sucesso %{count} host de conteúdo(s) para coleção de host %{host_collection}."
6655
+ msgstr "Removido com sucesso %{count} anfitrião(es) de conteúdo da coleção anfitriã %{host_collection}."
6656
+
6657
+ msgid "Successfully synced capsule."
6658
+ msgstr ""
6093
6659
 
6094
6660
  msgid "Successfully synchronized."
6095
6661
  msgstr "Sincronizado com êxito."
@@ -6140,13 +6706,13 @@ msgid "Sync Sock Read Timeout"
6140
6706
  msgstr ""
6141
6707
 
6142
6708
  msgid "Sync Status"
6143
- msgstr "Status da Sincronização"
6709
+ msgstr "Estado da Sincronização"
6144
6710
 
6145
6711
  msgid "Sync Summary"
6146
6712
  msgstr "Resumo da sincronização"
6147
6713
 
6148
6714
  msgid "Sync Summary for %s"
6149
- msgstr "Resumo da sincronização para %s"
6715
+ msgstr "Sync Summary for %s"
6150
6716
 
6151
6717
  msgid "Sync Total Timeout"
6152
6718
  msgstr ""
@@ -6172,9 +6738,15 @@ msgstr "Sincronizar um ou mais produtos "
6172
6738
  msgid "Sync plan identifier to attach"
6173
6739
  msgstr "Identificador de plano de sinc a ser anexado"
6174
6740
 
6741
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6742
+ msgstr ""
6743
+
6175
6744
  msgid "Sync state"
6176
6745
  msgstr ""
6177
6746
 
6747
+ msgid "Syncable export"
6748
+ msgstr ""
6749
+
6178
6750
  msgid "Synced "
6179
6751
  msgstr ""
6180
6752
 
@@ -6223,6 +6795,12 @@ msgstr "Status do sistema"
6223
6795
  msgid "System purpose"
6224
6796
  msgstr ""
6225
6797
 
6798
+ msgid "System purpose attributes updated"
6799
+ msgstr ""
6800
+
6801
+ msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6802
+ msgstr ""
6803
+
6226
6804
  msgid "Tag name"
6227
6805
  msgstr ""
6228
6806
 
@@ -6236,7 +6814,7 @@ msgid "Task ${task.humanized.action} completed with a result of ${task.result}.
6236
6814
  msgstr ""
6237
6815
 
6238
6816
  msgid "Task ${task.humanized.action} has started."
6239
- msgstr "A tarefa ${task.humanized.action} foi iniciada."
6817
+ msgstr "A tarefa ${task.humanized.action} começou."
6240
6818
 
6241
6819
  msgid "Task canceled"
6242
6820
  msgstr "Tarefa cancelada"
@@ -6248,19 +6826,16 @@ msgid "Temporary"
6248
6826
  msgstr "Temporário"
6249
6827
 
6250
6828
  msgid "The '%s' environment cannot contain a changeset!"
6251
- msgstr "O ambiente \\\"%s\\\" não pode conter um changeset!"
6829
+ msgstr "O ambiente '%s' não pode conter um conjunto de mudanças!"
6252
6830
 
6253
6831
  msgid "The Alternate Content Source type"
6254
6832
  msgstr ""
6255
6833
 
6256
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6257
- msgstr "A Alocação de subscrição desde que o manifesto importado tenha sido removido. Crie uma nova Alocação de subscriçãos e importe o novo manifesto."
6258
-
6259
6834
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6260
6835
  msgstr ""
6261
6836
 
6262
6837
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
6263
- msgstr "A ação requisitada nesta coleção de visualização não pode ser desempenhada até que todas as versões de visualização de conteúdo do componente tenham sido promovidas para o ambiente de destino: %{env}. Esta restrição é opcional e pode ser modificada na página Administrador -> Configurações -> Conteúdo usando o sinalizador restrict_composite_view."
6838
+ msgstr "A ação solicitada sobre esta visão composta não pode ser executada até que todas as versões de visão do conteúdo dos componentes tenham sido promovidas para o ambiente alvo: %{env}. Esta restrição é opcional e pode ser modificada na página Administrador -> Configurações -> Conteúdo usando a bandeira restrict_composite_view."
6264
6839
 
6265
6840
  msgid "The actual file contents"
6266
6841
  msgstr "O conteúdo do arquivo atual "
@@ -6307,9 +6882,6 @@ msgstr ""
6307
6882
  msgid "The field to sort the data by. Defaults to the created date."
6308
6883
  msgstr "O campo com base no qual os dados são classificados. O padrão é a data de criação."
6309
6884
 
6310
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6311
- msgstr ""
6312
-
6313
6885
  msgid "The following hosts have errata that apply to them: "
6314
6886
  msgstr "Os hosts a seguir possuem errata que se aplicam à eles:"
6315
6887
 
@@ -6325,7 +6897,7 @@ msgid "The id of the content view"
6325
6897
  msgstr ""
6326
6898
 
6327
6899
  msgid "The id of the host to alter"
6328
- msgstr "A id do host a ser alterada "
6900
+ msgstr "A ID do host a ser alterada"
6329
6901
 
6330
6902
  msgid "The id of the lifecycle environment"
6331
6903
  msgstr ""
@@ -6336,8 +6908,11 @@ msgstr ""
6336
6908
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6337
6909
  msgstr "A lista de ambientes para promover a Versão de Visualização de conteúdo especificado (substituindo a versão mais antiga)"
6338
6910
 
6911
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6912
+ msgstr ""
6913
+
6339
6914
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6340
- msgstr "O manifesto importado na Organização %{subject} não é mais válido. Importe um novo manifesto."
6915
+ msgstr "O manifesto importado dentro da Organização %{subject} não é mais válido. Por favor, importe um novo manifesto."
6341
6916
 
6342
6917
  msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6343
6918
  msgstr ""
@@ -6375,20 +6950,23 @@ msgid "The page you are attempting to access requires selecting a specific organ
6375
6950
  msgstr "A página que você está tentando acessar requer a seleção de uma organização específica."
6376
6951
 
6377
6952
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6378
- msgstr "O caminho %{real_path} não parece ser um repositório válido. Se você achar que se trata de um erro, tente atualizar seu manifesto."
6953
+ msgstr "O caminho %{real_path} não parece ser um repositório válido. Se você acha que isto é um erro, por favor, tente atualizar seu manifesto."
6379
6954
 
6380
- msgid "The port used by Pulp Crane to provide Docker Registries"
6381
- msgstr "A porta utilizada pelo Pulp Crane para fornecer Registros do Docker"
6955
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6956
+ msgstr ""
6382
6957
 
6383
6958
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6384
- msgstr "A promoção do %{content_view} para %{environment} foi concluída. As erratas %{count} estão disponíveis em seus hosts."
6959
+ msgstr "A promoção de %{content_view} a %{environment} foi concluída. %{count} erratas estão disponíveis para seus anfitriões."
6385
6960
 
6386
6961
  msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
6387
- msgstr "A promoção de %{content_view} para <b>%{environment}</b> Foi concluída. As erratas %{count} necessárias são instaláveis em seus hosts."
6962
+ msgstr "A promoção de %{content_view} a <b>%{environment}</b> foi concluída. %{count} erratas necessárias podem ser instaladas em seus anfitriões."
6388
6963
 
6389
6964
  msgid "The repository is already enabled"
6390
6965
  msgstr "O repositório já está habilitado"
6391
6966
 
6967
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6968
+ msgstr ""
6969
+
6392
6970
  msgid "The request did not contain any repository information."
6393
6971
  msgstr "A solicitação não continha nenhuma informação de repositório."
6394
6972
 
@@ -6417,19 +6995,25 @@ msgid "The subscription is no longer available"
6417
6995
  msgstr "A subscrição não está mais disponível"
6418
6996
 
6419
6997
  msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
6420
- msgstr "A sincronização de \"%s\" foi concluída. Abaixo está um resumo da nova errata."
6998
+ msgstr "A sincronização do \"%s\" foi concluída. Abaixo está um resumo das novas erratas."
6421
6999
 
6422
7000
  msgid "The token key to use for authentication."
6423
7001
  msgstr ""
6424
7002
 
7003
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7004
+ msgstr ""
7005
+
7006
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7007
+ msgstr ""
7008
+
6425
7009
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6426
7010
  msgstr "O tipo de conteúdo. Os tipos a seguir são suportados: 'package' and 'package_group."
6427
7011
 
6428
7012
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6429
7013
  msgstr "O tipo de conteúdo. Os tipos a seguir são suportados: 'package', 'package_group' and 'errata'."
6430
7014
 
6431
- msgid "There are no Subscription Allocations to display"
6432
- msgstr "Não há Alocações de subscrições para exibir"
7015
+ msgid "There are no Manifests to display"
7016
+ msgstr ""
6433
7017
 
6434
7018
  msgid "There are no Subscriptions to display"
6435
7019
  msgstr "Não há Subscrições para exibir"
@@ -6450,11 +7034,14 @@ msgid "There are {numberOfHosts} hosts that need to be reassigned."
6450
7034
  msgstr ""
6451
7035
 
6452
7036
  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."
6453
- msgstr "Não houve ambientes ou versões especificados ou houveram ambientes/versões inválidos específicados. Por favor verifique os parâmetros de environment_ids e content_view_version_ids."
7037
+ msgstr "Não houve ambientes ou versões especificados ou houveram ambientes/versões inválidos específicados. Por favor verifique os parâmetros de environment_ids e content_view_version_ids."
6454
7038
 
6455
7039
  msgid "There is no Manifest History to display."
6456
7040
  msgstr "Não há um Histórico de manifesto para exibir."
6457
7041
 
7042
+ msgid "There is no downloaded content to clean."
7043
+ msgstr ""
7044
+
6458
7045
  msgid "There is no such HTTP proxy"
6459
7046
  msgstr "Esse proxy HTTP não existe."
6460
7047
 
@@ -6474,7 +7061,7 @@ msgid "There was an error retrieving data from the server. Check your connection
6474
7061
  msgstr ""
6475
7062
 
6476
7063
  msgid "There was an issue with the backend service %s: "
6477
- msgstr "Ocorreu um problema com o serviço de backend %s:"
7064
+ msgstr "Houve um problema com o serviço de backend %s: "
6478
7065
 
6479
7066
  msgid "There's no running synchronization for this smart proxy."
6480
7067
  msgstr "Não há sincronização em execução para esse proxy inteligente."
@@ -6492,11 +7079,14 @@ msgid "This action doesn't support package groups"
6492
7079
  msgstr "Esta ação não fornece suporte a grupos de pacotes"
6493
7080
 
6494
7081
  msgid "This action should only be taken in extreme circumstances or for debugging purposes."
6495
- msgstr "Esta ação deve ser realizada em circunstâncias extremas ou com o objetivo de depurar."
7082
+ msgstr "Esta ação deve ser tomada em circunstâncias extremas ou para fins de depuração."
6496
7083
 
6497
7084
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6498
7085
  msgstr ""
6499
7086
 
7087
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7088
+ msgstr ""
7089
+
6500
7090
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6501
7091
  msgstr "Este certificado de depuração permite que o usuário visualize os repositórios em qualquer ambiente do navegador."
6502
7092
 
@@ -6521,7 +7111,7 @@ msgstr ""
6521
7111
  msgid "This host does not have any packages."
6522
7112
  msgstr ""
6523
7113
 
6524
- msgid "This host has errata that are applicable, but not installable."
7114
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6525
7115
  msgstr ""
6526
7116
 
6527
7117
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6530,14 +7120,14 @@ msgstr "A organização do host está no modo Acesso a conteúdo simples. A vinc
6530
7120
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6531
7121
  msgstr "A organização do host está no modo Acesso a conteúdo simples. A vinculação automática está desabilitada"
6532
7122
 
6533
- msgid "This is disabled because a manifest related task is in progress."
6534
- msgstr "Isto está desabilitado porque uma tarefa relacionada ao manifesto está em andamento."
6535
-
6536
7123
  msgid "This is disabled because a manifest task is in progress"
6537
7124
  msgstr "Isto está desabilitado porque uma tarefa do manifesto está em andamento"
6538
7125
 
6539
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6540
- msgstr "Isto está desabilitado porque não foi possível fazer nenhuma conexão com a Alocação de subscrição upstream."
7126
+ msgid "This is disabled because a manifest-related task is in progress."
7127
+ msgstr ""
7128
+
7129
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7130
+ msgstr ""
6541
7131
 
6542
7132
  msgid "This is disabled because no manifest exists"
6543
7133
  msgstr "Isto está desabilitado porque não há manifestos"
@@ -6551,14 +7141,14 @@ msgstr "Isto está desabilitado porque não há subscrições selecionadas."
6551
7141
  msgid "This is not a linked repository"
6552
7142
  msgstr "Isto não é um repositório vinculado"
6553
7143
 
6554
- 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}."
7144
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
6555
7145
  msgstr ""
6556
7146
 
6557
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7147
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6558
7148
  msgstr ""
6559
7149
 
6560
7150
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
6561
- msgstr "Este repositório não é sugerido. Consulte a %(anchorBegin)sdocumentação%(anchorEnd)s adicional antes de usar."
7151
+ msgstr "Este repositório não é sugerido.%(anchorEnd)s Favor consultar a documentação adicional %(anchorBegin)santes de usar."
6562
7152
 
6563
7153
  msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
6564
7154
  msgstr ""
@@ -6582,7 +7172,7 @@ msgid "This version is not promoted to any environments."
6582
7172
  msgstr ""
6583
7173
 
6584
7174
  msgid "This version will be removed from:"
6585
- msgstr "Esta versão será removida de:"
7175
+ msgstr "Esta versão será removida:"
6586
7176
 
6587
7177
  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."
6588
7178
  msgstr ""
@@ -6605,12 +7195,24 @@ msgstr "Carimbo de data/hora"
6605
7195
  msgid "Title"
6606
7196
  msgstr "Título"
6607
7197
 
7198
+ msgid "To get started, add this host to a host collection."
7199
+ msgstr ""
7200
+
7201
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7202
+ msgstr ""
7203
+
7204
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7205
+ msgstr ""
7206
+
6608
7207
  msgid "Toggling Simple Content Access will refresh your manifest."
6609
7208
  msgstr "Ativar o Acesso a conteúdo simples atualizará seu manifesto."
6610
7209
 
6611
7210
  msgid "Total steps: "
6612
7211
  msgstr "Total de etapas: "
6613
7212
 
7213
+ msgid "Tracer"
7214
+ msgstr ""
7215
+
6614
7216
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6615
7217
  msgstr ""
6616
7218
 
@@ -6620,18 +7222,33 @@ msgstr "Perfil de rastreador carregado com êxito"
6620
7222
  msgid "Traces"
6621
7223
  msgstr "Rastreamentos"
6622
7224
 
7225
+ msgid "Traces are being enabled"
7226
+ msgstr ""
7227
+
6623
7228
  msgid "Traces are not enabled"
6624
7229
  msgstr ""
6625
7230
 
6626
7231
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6627
7232
  msgstr ""
6628
7233
 
7234
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7235
+ msgstr ""
7236
+
6629
7237
  msgid "Traces may be listed here after {pkgLink}."
6630
7238
  msgstr ""
6631
7239
 
7240
+ msgid "Traces not available"
7241
+ msgstr ""
7242
+
6632
7243
  msgid "Traces that require logout cannot be restarted remotely"
6633
7244
  msgstr ""
6634
7245
 
7246
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7247
+ msgstr ""
7248
+
7249
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7250
+ msgstr ""
7251
+
6635
7252
  msgid "Trigger an auto-attach of subscriptions"
6636
7253
  msgstr "Provoca uma anexação automática das subscrições "
6637
7254
 
@@ -6662,9 +7279,18 @@ msgstr ""
6662
7279
  msgid "Type of content: \"cert\", \"gpg_key\""
6663
7280
  msgstr ""
6664
7281
 
7282
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7283
+ msgstr ""
7284
+
6665
7285
  msgid "URL"
6666
7286
  msgstr "URL"
6667
7287
 
7288
+ msgid "URL and paths"
7289
+ msgstr ""
7290
+
7291
+ msgid "URL and subpaths"
7292
+ msgstr ""
7293
+
6668
7294
  msgid "URL needs to have a trailing /"
6669
7295
  msgstr ""
6670
7296
 
@@ -6696,7 +7322,13 @@ msgid "Unable to connect"
6696
7322
  msgstr "Não é possível conectar"
6697
7323
 
6698
7324
  msgid "Unable to connect. Got: %s"
6699
- msgstr "Não foi possível estabelecer conexão. Obteve: %s"
7325
+ msgstr "Incapaz de se conectar. Consegui: %s"
7326
+
7327
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7328
+ msgstr ""
7329
+
7330
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7331
+ msgstr ""
6700
7332
 
6701
7333
  msgid "Unable to detect pulp storage"
6702
7334
  msgstr "Não é possível detectar o armazenamento pulp "
@@ -6731,8 +7363,11 @@ msgstr "Incapaz de reatribuir os hosts de conteúdo. Por favor, forneça system_
6731
7363
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6732
7364
  msgstr "Incapaz de reatribuir sistemas. Por favor verifique system_content_view_id e system_environment_id."
6733
7365
 
7366
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7367
+ msgstr ""
7368
+
6734
7369
  msgid "Unable to send errata e-mail notification: %{error}"
6735
- msgstr "Não foi possível enviar a notificação de errata por e-mail: %{error}"
7370
+ msgstr "Impossibilidade de enviar notificação por e-mail de errata: %{error}"
6736
7371
 
6737
7372
  msgid "Unable to sync repo. This repository does not have a feed url."
6738
7373
  msgstr "Não é possível sincronizar o repositório. Este repositório não possui um url do feed."
@@ -6759,7 +7394,7 @@ msgid "Unentitled"
6759
7394
  msgstr "Sem Direito a Serviços"
6760
7395
 
6761
7396
  msgid "Unfiltered params array: %s."
6762
- msgstr "Matriz de parâmetros não filtrada: %s."
7397
+ msgstr "Matriz de params não filtrados: %s."
6763
7398
 
6764
7399
  msgid "Uninstall and reset"
6765
7400
  msgstr ""
@@ -6774,22 +7409,22 @@ msgid "Unknown Action"
6774
7409
  msgstr "Ação desconhecida"
6775
7410
 
6776
7411
  msgid "Unknown errata status"
6777
- msgstr "Status das erratas desconhecido"
7412
+ msgstr "Estado das erratas desconhecido"
6778
7413
 
6779
7414
  msgid "Unknown or Unregistered"
6780
7415
  msgstr "Desconhecido ou não registrado"
6781
7416
 
6782
7417
  msgid "Unknown subscription status"
6783
- msgstr "Status de subscrição desconhecido"
7418
+ msgstr "Estado de subscrição desconhecido"
6784
7419
 
6785
7420
  msgid "Unknown traces status"
6786
- msgstr "Status de rastreamentos desconhecido"
7421
+ msgstr "Estado de rastreamentos desconhecido"
6787
7422
 
6788
7423
  msgid "Unlimited"
6789
7424
  msgstr "Ilimitado"
6790
7425
 
6791
7426
  msgid "Unregister host %s before assigning an organization"
6792
- msgstr "Cancelar registro do host %s antes de atribuir uma organização"
7427
+ msgstr "Desregistrar o anfitrião %s antes de designar uma organização"
6793
7428
 
6794
7429
  msgid "Unregister the host as a subscription consumer"
6795
7430
  msgstr "Cancelar o registro do host como um consumidor de subscrição"
@@ -6807,10 +7442,10 @@ msgid "Unsupported CDN resource"
6807
7442
  msgstr ""
6808
7443
 
6809
7444
  msgid "Unsupported URL protocol %s."
6810
- msgstr "Protocolo de URL não suportado %s"
7445
+ msgstr "Protocolo URL sem suporte %s."
6811
7446
 
6812
7447
  msgid "Unsupported event type %{type}. Supported: %{types}"
6813
- msgstr "Tipo de evento não compatível %{type}. Compatível: %{types}"
7448
+ msgstr "Evento não apoiado tipo %{type}. Suportado: %{types}"
6814
7449
 
6815
7450
  msgid "Up-to date"
6816
7451
  msgstr ""
@@ -6828,7 +7463,7 @@ msgid "Update Content Overrides"
6828
7463
  msgstr "Atualizar substituições do conteúdo"
6829
7464
 
6830
7465
  msgid "Update Content Overrides to %s"
6831
- msgstr "Atualizar substituições de conteúdo para %s"
7466
+ msgstr "Atualização de conteúdo Substitui para %s"
6832
7467
 
6833
7468
  msgid "Update Upstream Subscription"
6834
7469
  msgstr "Atualizar subscrição upstream"
@@ -6860,7 +7495,7 @@ msgstr "Atualizar um plano de sinc"
6860
7495
  msgid "Update an activation key"
6861
7496
  msgstr "Atualizar uma chave de ativação"
6862
7497
 
6863
- msgid "Update an alternate content source"
7498
+ msgid "Update an alternate content source."
6864
7499
  msgstr ""
6865
7500
 
6866
7501
  msgid "Update an environment"
@@ -6879,7 +7514,7 @@ msgid "Update for host"
6879
7514
  msgstr "Atualização para host"
6880
7515
 
6881
7516
  msgid "Update for host %s"
6882
- msgstr "Atualização para host %s"
7517
+ msgstr "Atualização para o anfitrião %s"
6883
7518
 
6884
7519
  msgid "Update http proxy"
6885
7520
  msgstr "Atualizar proxy http"
@@ -6894,7 +7529,7 @@ msgid "Update of all packages requested"
6894
7529
  msgstr "Atualizar todos os pacotes solicitados"
6895
7530
 
6896
7531
  msgid "Update of package(s) requested: %{packages}"
6897
- msgstr "Atualizar pacote(s) solicitado(s): %{packages}"
7532
+ msgstr "Atualização do(s) pacote(s) solicitado(s): %{packages}"
6898
7533
 
6899
7534
  msgid "Update organization"
6900
7535
  msgstr "Atualizar organização"
@@ -6903,7 +7538,7 @@ msgid "Update package"
6903
7538
  msgstr "Atualizar pacote"
6904
7539
 
6905
7540
  msgid "Update package for %s"
6906
- msgstr "Atualizar pacote para %s"
7541
+ msgstr "Pacote de atualização para %s"
6907
7542
 
6908
7543
  msgid "Update package group via Katello interface"
6909
7544
  msgstr "Atualizar grupo de pacotes via interface do Katello"
@@ -6924,7 +7559,7 @@ msgid "Update release version for host"
6924
7559
  msgstr "Atualizar versão do host"
6925
7560
 
6926
7561
  msgid "Update release version for host %s"
6927
- msgstr "Atualizar versão do host para %s"
7562
+ msgstr "Versão de atualização para o host %s"
6928
7563
 
6929
7564
  msgid "Update services requiring restart"
6930
7565
  msgstr "Atualizar serviços que exigem reinicialização"
@@ -6969,7 +7604,7 @@ msgid "Updating Package..."
6969
7604
  msgstr "Atualizando Pacote..."
6970
7605
 
6971
7606
  msgid "Updating System Purpose for host"
6972
- msgstr ""
7607
+ msgstr "Atualização do sistema Objetivo do sistema de hospedagem"
6973
7608
 
6974
7609
  msgid "Updating System Purpose for host %s"
6975
7610
  msgstr ""
@@ -6981,7 +7616,7 @@ msgid "Updating repository authentication configuration"
6981
7616
  msgstr "Atualizando a configuração de autenticação do repositório"
6982
7617
 
6983
7618
  msgid "Upgradable"
6984
- msgstr "Pode ter upgrade"
7619
+ msgstr "Atualizável"
6985
7620
 
6986
7621
  msgid "Upgradable to"
6987
7622
  msgstr ""
@@ -7016,6 +7651,9 @@ msgstr ""
7016
7651
  msgid "Upload request id"
7017
7652
  msgstr "Carregar ID de requisição"
7018
7653
 
7654
+ msgid "Upstream Candlepin"
7655
+ msgstr ""
7656
+
7019
7657
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7020
7658
  msgstr ""
7021
7659
 
@@ -7064,6 +7702,15 @@ msgstr "Tipo de uso"
7064
7702
  msgid "Usage of host"
7065
7703
  msgstr ""
7066
7704
 
7705
+ msgid "Usage type"
7706
+ msgstr ""
7707
+
7708
+ msgid "Use HTTP Proxies"
7709
+ msgstr ""
7710
+
7711
+ msgid "Use HTTP proxies"
7712
+ msgstr ""
7713
+
7067
7714
  msgid "Use remote execution by default"
7068
7715
  msgstr "Usar execução remota por padrão"
7069
7716
 
@@ -7074,10 +7721,10 @@ msgid "User"
7074
7721
  msgstr "Usuário"
7075
7722
 
7076
7723
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
7077
- msgstr "Usuário '%s' não especificou um ID de organização e não possui uma organização padrão."
7724
+ msgstr "O usuário '%s' não especificou um ID de organização e não tem uma organização padrão."
7078
7725
 
7079
7726
  msgid "User '%{user}' does not belong to Organization '%{organization}'."
7080
- msgstr "Usuário '%{user}' não pertence à organização '%{organization}'."
7727
+ msgstr "O usuário '%{user}' não pertence à Organização '%{organization}'."
7081
7728
 
7082
7729
  msgid "User IDs"
7083
7730
  msgstr "IDs dos usuários"
@@ -7109,8 +7756,11 @@ msgstr "Validade"
7109
7756
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7110
7757
  msgstr "O valor deve ser booleano ou 'padrão' para 'habilitado'"
7111
7758
 
7759
+ msgid "Verify SSL"
7760
+ msgstr "Verifique o SSL"
7761
+
7112
7762
  msgid "Verify checksum"
7113
- msgstr ""
7763
+ msgstr "Verificação do checksum"
7114
7764
 
7115
7765
  msgid "Verify checksum for one or more products"
7116
7766
  msgstr ""
@@ -7122,7 +7772,7 @@ msgid "Version"
7122
7772
  msgstr "Versão"
7123
7773
 
7124
7774
  msgid "Version "
7125
- msgstr ""
7775
+ msgstr "Versão "
7126
7776
 
7127
7777
  msgid "Version ${item.version}"
7128
7778
  msgstr ""
@@ -7136,6 +7786,12 @@ msgstr ""
7136
7786
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7137
7787
  msgstr ""
7138
7788
 
7789
+ msgid "Version ${versionOne}"
7790
+ msgstr ""
7791
+
7792
+ msgid "Version ${versionTwo}"
7793
+ msgstr ""
7794
+
7139
7795
  msgid "Version details updated."
7140
7796
  msgstr ""
7141
7797
 
@@ -7146,6 +7802,9 @@ msgid "Versions"
7146
7802
  msgstr "Versões"
7147
7803
 
7148
7804
  msgid "Versions "
7805
+ msgstr "Versões "
7806
+
7807
+ msgid "Versions to compare"
7149
7808
  msgstr ""
7150
7809
 
7151
7810
  msgid "Versions to exclusively include in the action"
@@ -7158,32 +7817,47 @@ msgid "Versions will appear here when the content view is published."
7158
7817
  msgstr ""
7159
7818
 
7160
7819
  msgid "View %{view} has not been promoted to %{env}"
7161
- msgstr "Visualização %{view} não foi promovida para %{env}"
7820
+ msgstr "Ver %{view} não foi promovido para %{env}"
7821
+
7822
+ msgid "View Subscription Usage"
7823
+ msgstr ""
7162
7824
 
7163
7825
  msgid "View a report of the affected hosts"
7164
7826
  msgstr "Exibir um relatório dos hosts afetados"
7165
7827
 
7828
+ msgid "View applicable errata"
7829
+ msgstr ""
7830
+
7831
+ msgid "View by"
7832
+ msgstr ""
7833
+
7166
7834
  msgid "View matching content"
7167
7835
  msgstr ""
7168
7836
 
7169
7837
  msgid "View tasks "
7170
7838
  msgstr ""
7171
7839
 
7172
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7840
+ msgid "View the Content Views page"
7841
+ msgstr ""
7842
+
7843
+ msgid "View the job"
7173
7844
  msgstr ""
7174
7845
 
7175
7846
  msgid "Virtual"
7176
7847
  msgstr "Virtual"
7177
7848
 
7849
+ msgid "Virtual guests"
7850
+ msgstr ""
7851
+
7852
+ msgid "Virtual host"
7853
+ msgstr ""
7854
+
7178
7855
  msgid "Waiting to start."
7179
7856
  msgstr ""
7180
7857
 
7181
7858
  msgid "Warning"
7182
7859
  msgstr "Aviso"
7183
7860
 
7184
- msgid "What's next?"
7185
- msgstr ""
7186
-
7187
7861
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7188
7862
  msgstr ""
7189
7863
 
@@ -7209,7 +7883,7 @@ msgid "Whether or not to auto sync the Smart Proxies after a content view promot
7209
7883
  msgstr ""
7210
7884
 
7211
7885
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
7212
- msgstr "Verificar ou não o status dos serviços de backend, tais como pulp e candlepin, antes de desempenhar algumas ações. "
7886
+ msgstr "Verificar ou não o estado dos serviços de backend, tais como pulp e candlepin, antes de desempenhar algumas ações. "
7213
7887
 
7214
7888
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7215
7889
  msgstr "Se o repositório em disco deve ou não ser regenerado. Padrão: verdadeiro"
@@ -7223,6 +7897,9 @@ msgstr "Se uma cápsula externa deve ou não ser sincronizada após o upload. Pa
7223
7897
  msgid "Whether to include available content attribute in results"
7224
7898
  msgstr "Se deve incluir ou não atributos de conteúdo disponível nos resultados"
7225
7899
 
7900
+ msgid "Whether to turn on Simple Content Access for the organization."
7901
+ msgstr ""
7902
+
7226
7903
  msgid "Workers"
7227
7904
  msgstr "Trabalhadores"
7228
7905
 
@@ -7236,16 +7913,16 @@ msgid "Yes"
7236
7913
  msgstr "Sim"
7237
7914
 
7238
7915
  msgid "You are not allowed to promote to Environments %s"
7239
- msgstr "Você não pode promover para Environments %s"
7916
+ msgstr "Você não está autorizado a promover para Ambientes %s"
7240
7917
 
7241
7918
  msgid "You are not allowed to publish Content View %s"
7242
- msgstr "Você não pode publicar Visualização de Conteúdo %s"
7919
+ msgstr "Você não está autorizado a publicar Vista de Conteúdo %s"
7243
7920
 
7244
7921
  msgid "You can check sync status for repositories only in the library lifecycle environment.'"
7245
- msgstr "Você poderá verificar o status de sinc para repositórios somente no ambiente de ciclo de vida da biblioteca.'"
7922
+ msgstr "Você poderá verificar o estado de sinc para repositórios somente no ambiente de ciclo de vida da biblioteca.'"
7246
7923
 
7247
7924
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
7248
- msgstr "Você não pode ter mais do que %{max_hosts} host(s) associados à coleção de hosts '%{host_collection}'."
7925
+ msgstr "Você não pode ter mais do que %{max_hosts} anfitrião(s) associado(s) à coleção de anfitriões '%{host_collection}'."
7249
7926
 
7250
7927
  msgid "You cannot set an organization's parent. This feature is disabled."
7251
7928
  msgstr "Você não pode definir uma organização parent. Este recurso está desabilitado."
@@ -7284,34 +7961,31 @@ msgid "You currently don\\'t have any related content views."
7284
7961
  msgstr ""
7285
7962
 
7286
7963
  msgid "You do not have permissions to delete %s"
7287
- msgstr "Você não possui permissão para excluir %s"
7964
+ msgstr "Você não tem permissão para excluir %s"
7288
7965
 
7289
7966
  msgid "You have not set a default organization on the user %s."
7290
- msgstr "Você não definiu uma organização padrão no usuário %s."
7967
+ msgstr "Você não definiu uma organização padrão para o usuário %s."
7291
7968
 
7292
7969
  msgid "You have subscriptions expiring within %s days"
7293
- msgstr "Você tem subscrições que expiram em %s dias"
7970
+ msgstr "Você tem assinaturas que expiram dentro de %s dias"
7294
7971
 
7295
7972
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7296
7973
  msgstr "Você tem mudanças não salvas. Quer sair sem salvar suas alterações?"
7297
7974
 
7298
- msgid "You may want to check the host's content view and lifecycle environment."
7299
- msgstr ""
7300
-
7301
7975
  msgid "You were not allowed to add %s"
7302
- msgstr "Você pode adicionar %s"
7976
+ msgstr "Você não estava autorizado a acrescentar %s"
7303
7977
 
7304
7978
  msgid "You were not allowed to change sync plan for %s"
7305
- msgstr "Você não pode modificar o plano de sinc para %s"
7979
+ msgstr "Você não teve permissão para mudar o plano de sincronização para %s"
7306
7980
 
7307
7981
  msgid "You were not allowed to delete %s"
7308
- msgstr "Você não pode remover %s"
7982
+ msgstr "Você não estava autorizado a excluir %s"
7309
7983
 
7310
7984
  msgid "You were not allowed to sync %s"
7311
- msgstr "Você não pode sinc %s"
7985
+ msgstr "Você não estava autorizado a sincronizar %s"
7312
7986
 
7313
7987
  msgid "You're making changes to %(entitlementCount)s entitlement(s)"
7314
- msgstr "Você está fazendo alterações em %(entitlementCount)s direito(s)"
7988
+ msgstr "Você está fazendo mudanças em %(entitlementCount)s direito(s)"
7315
7989
 
7316
7990
  msgid "Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs."
7317
7991
  msgstr "Sua consulta de pesquisa era inválida. Revise-a e tente novamente. O erro completo foi enviado para os logs da aplicação."
@@ -7319,6 +7993,12 @@ msgstr "Sua consulta de pesquisa era inválida. Revise-a e tente novamente. O er
7319
7993
  msgid "Your search returned no matching "
7320
7994
  msgstr ""
7321
7995
 
7996
+ msgid "Your search returned no matching ${name}."
7997
+ msgstr ""
7998
+
7999
+ msgid "Your search returned no matching DEBs."
8000
+ msgstr ""
8001
+
7322
8002
  msgid "Your search returned no matching Module streams."
7323
8003
  msgstr ""
7324
8004
 
@@ -7331,12 +8011,18 @@ msgstr ""
7331
8011
  msgid "Your search returned no matching hosts."
7332
8012
  msgstr ""
7333
8013
 
8014
+ msgid "Yum"
8015
+ msgstr ""
8016
+
7334
8017
  msgid "Yum Metadata: %s"
7335
- msgstr "Metadados Yum: %s"
8018
+ msgstr "Yum Metadata: %s"
7336
8019
 
7337
8020
  msgid "a content unit"
7338
8021
  msgstr ""
7339
8022
 
8023
+ msgid "a custom CDN URL"
8024
+ msgstr ""
8025
+
7340
8026
  msgid "a deb package"
7341
8027
  msgstr ""
7342
8028
 
@@ -7424,6 +8110,12 @@ msgstr "Anexar automaticamente as subscrições após registro"
7424
8110
  msgid "base url to perform repo discovery on"
7425
8111
  msgstr "url base onde realizar a descoberta do repo"
7426
8112
 
8113
+ msgid "bug fix"
8114
+ msgstr ""
8115
+
8116
+ msgid "bug fixes"
8117
+ msgstr ""
8118
+
7427
8119
  msgid "bulk add filter rules"
7428
8120
  msgstr ""
7429
8121
 
@@ -7461,7 +8153,7 @@ msgid "cannot be less than one"
7461
8153
  msgstr "não pode ser menor do que"
7462
8154
 
7463
8155
  msgid "cannot be lower than current usage count (%s)"
7464
- msgstr "deve ser mais baixo do que a conta de uso atual (%s) "
8156
+ msgstr "não pode ser inferior à contagem de uso atual (%s)"
7465
8157
 
7466
8158
  msgid "cannot be nil"
7467
8159
  msgstr "não pode ser nulo"
@@ -7485,13 +8177,13 @@ msgid "cannot contain filters whose repositories do not belong to this content v
7485
8177
  msgstr "não pode conter filtros dos quais os repositórios não pertencem à esta visualização de conteúdo."
7486
8178
 
7487
8179
  msgid "cannot contain more than %s characters"
7488
- msgstr "Não pode conter mais do que %s caracteres"
8180
+ msgstr "não pode conter mais do que %s caracteres"
7489
8181
 
7490
- msgid "checking Candlepin task status"
7491
- msgstr "verificando o status das tarefas do Candlepin "
8182
+ msgid "checking %s task status"
8183
+ msgstr ""
7492
8184
 
7493
8185
  msgid "checking Pulp task status"
7494
- msgstr "verificando o status das tarefas do Pulp"
8186
+ msgstr "verificando o estado das tarefas do Pulp"
7495
8187
 
7496
8188
  msgid "click here"
7497
8189
  msgstr ""
@@ -7508,9 +8200,6 @@ msgstr "nomes de pacotes condicionais para incluir no grupo de pacotes"
7508
8200
  msgid "content release version"
7509
8201
  msgstr "versão do lançamento de conteúdo"
7510
8202
 
7511
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7512
- msgstr ""
7513
-
7514
8203
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7515
8204
  msgstr ""
7516
8205
 
@@ -7565,8 +8254,8 @@ msgstr "versões de visualização para comparar"
7565
8254
  msgid "create a filter for a content view"
7566
8255
  msgstr "criar um filtro para a visualização de conteúdo "
7567
8256
 
7568
- msgid "deb Packages"
7569
- msgstr "pacotes deb"
8257
+ msgid "deb, package, package group, or docker tag names"
8258
+ msgstr ""
7570
8259
 
7571
8260
  msgid "deb_ids is not an array"
7572
8261
  msgstr "deb_ids não é uma matriz"
@@ -7592,12 +8281,21 @@ msgstr "descrição do filtro"
7592
8281
  msgid "description of the repository"
7593
8282
  msgstr "descrição do repositório"
7594
8283
 
8284
+ msgid "disk"
8285
+ msgstr ""
8286
+
7595
8287
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7596
8288
  msgstr ""
7597
8289
 
7598
8290
  msgid "enables or disables synchronization"
7599
8291
  msgstr "habilita ou desabilita sincronização"
7600
8292
 
8293
+ msgid "enhancement"
8294
+ msgstr ""
8295
+
8296
+ msgid "enhancements"
8297
+ msgstr ""
8298
+
7601
8299
  msgid "environment"
7602
8300
  msgstr "ambiente"
7603
8301
 
@@ -7638,7 +8336,7 @@ msgid "erratum: end date (YYYY-MM-DD)"
7638
8336
  msgstr "erratum: data final (YYYY-MM-DD)"
7639
8337
 
7640
8338
  msgid "erratum: id"
7641
- msgstr "erratum: id"
8339
+ msgstr "erratum: ID"
7642
8340
 
7643
8341
  msgid "erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'"
7644
8342
  msgstr "errata: pesquisa usando a coluna 'Emitido Em' ou 'Atualizado Em' das erratas. Valores são 'emitido'/'atualizado'"
@@ -7674,7 +8372,7 @@ msgid "filter only environments containing this name"
7674
8372
  msgstr "filstrar somente ambientes contendo este nome"
7675
8373
 
7676
8374
  msgid "for repository '%{name}' is not unique and cannot be created in '%{env}'. Its Container Repository Name (%{container_name}) conflicts with an existing repository. Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
7677
- msgstr "para o repositório '%{name}' não é único e não pode ser criado em '%{env}'. O Nome do pepositório de contêiner c(%{container_name}) entra em conflito com um repositório existente. Considere mudar o Padrão de nome de registro do Ambiente de ciclo de vida para algo mais específico."
8375
+ msgstr "para repositório '%{name}' não é único e não pode ser criado em '%{env}'. Seu Nome de Repositório de Contêineres (%{container_name}) entra em conflito com um repositório existente. Considere mudar o Padrão de Nome de Registro do Ambiente do Ciclo de Vida para algo mais específico."
7678
8376
 
7679
8377
  msgid "force content view promotion and bypass lifecycle environment restriction"
7680
8378
  msgstr "forçar promoção da exibição de conteúdo e ignorar a restrição de ambiente de ciclo de vida"
@@ -7704,25 +8402,25 @@ msgid "how often synchronization should run"
7704
8402
  msgstr "Com qual frequência deve acontecer a sincronização"
7705
8403
 
7706
8404
  msgid "id of a host"
7707
- msgstr "id de um host"
8405
+ msgstr "ID de um host"
7708
8406
 
7709
8407
  msgid "id of host"
7710
- msgstr "id do host"
8408
+ msgstr "ID do host"
7711
8409
 
7712
8410
  msgid "id of the gpg key that will be assigned to the new repository"
7713
- msgstr "Id de uma chave gpg que será atribuído ao novo repositório "
8411
+ msgstr "ID de uma chave gpg que será atribuído ao novo repositório "
7714
8412
 
7715
8413
  msgid "identifier of the version of the component content view"
7716
8414
  msgstr "identificador da versão da visualização do conteúdo do componente"
7717
8415
 
7718
8416
  msgid "ids to filter content by"
7719
- msgstr "ids por onde filtrar conteúdo"
8417
+ msgstr "IDs por onde filtrar conteúdo"
7720
8418
 
7721
8419
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7722
8420
  msgstr "se verdadeiro, o Katello verificará se os certificados SSL da url upstream estão assinados por uma CA de confiança"
7723
8421
 
7724
- msgid "initiating Candlepin task"
7725
- msgstr "iniciando tarefas do Candlepin "
8422
+ msgid "initiating %s task"
8423
+ msgstr ""
7726
8424
 
7727
8425
  msgid "initiating Pulp task"
7728
8426
  msgstr "iniciando tarefas do Pulp"
@@ -7781,9 +8479,6 @@ msgstr "rotular o ambiente"
7781
8479
  msgid "label of the repository"
7782
8480
  msgstr "rótulo do repositório"
7783
8481
 
7784
- msgid "limit to only repositories of this type"
7785
- msgstr "limitar a apenas repositórios deste tipo"
7786
-
7787
8482
  msgid "limit to only repositories with this download policy"
7788
8483
  msgstr ""
7789
8484
 
@@ -7812,7 +8507,7 @@ msgid "may not be less than the number of hosts associated with the host collect
7812
8507
  msgstr "não pode ser menor do que o número de hosts associado à coleção de hosts. "
7813
8508
 
7814
8509
  msgid "module stream ids"
7815
- msgstr "ids de fluxos de módulo"
8510
+ msgstr "IDs de fluxos de módulo"
7816
8511
 
7817
8512
  msgid "module streams not found"
7818
8513
  msgstr "fluxos de módulos não encontrados"
@@ -7824,7 +8519,7 @@ msgid "must be a positive integer value."
7824
8519
  msgstr "precisa ser um valor inteiro positivo"
7825
8520
 
7826
8521
  msgid "must be one of the following: %s"
7827
- msgstr "deve ser um destes a seguir %s "
8522
+ msgstr "deve ser uma das seguintes: %s"
7828
8523
 
7829
8524
  msgid "must be one of: %s"
7830
8525
  msgstr ""
@@ -7833,13 +8528,13 @@ msgid "must be unique within one organization"
7833
8528
  msgstr "deve ser único dentro de uma organização"
7834
8529
 
7835
8530
  msgid "must contain '%s'"
7836
- msgstr "deve conter \\\"%s\\\""
8531
+ msgstr "deve conter '%s'"
7837
8532
 
7838
8533
  msgid "must contain GPG Key"
7839
8534
  msgstr "deve conter Chave GPG"
7840
8535
 
7841
8536
  msgid "must contain at least %s character"
7842
- msgstr "deve conter ao menos %s caracteres"
8537
+ msgstr "deve conter pelo menos %s caracteres"
7843
8538
 
7844
8539
  msgid "must contain valid Public GPG Key"
7845
8540
  msgstr "deve conter uma Chave GPG Pública válida"
@@ -7881,7 +8576,7 @@ msgid "name of the subscription"
7881
8576
  msgstr ""
7882
8577
 
7883
8578
  msgid "name: %s doesn't exist "
7884
- msgstr "nome: %s não existe"
8579
+ msgstr "nome: %s não existe "
7885
8580
 
7886
8581
  msgid "new name for the filter"
7887
8582
  msgstr "novo nome para o filtro"
@@ -7901,9 +8596,6 @@ msgstr "obter histórico do manifesto para subscrições"
7901
8596
  msgid "of environment must be unique within one organization"
7902
8597
  msgstr "do ambiente deve ser único dentro de uma organização"
7903
8598
 
7904
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7905
- msgstr "apenas repositórios com pelo menos um do tipo de conteúdo especificado, por exemplo, rpm , erratum"
7906
-
7907
8599
  msgid "only show the repositories readable by this user with this username"
7908
8600
  msgstr ""
7909
8601
 
@@ -7968,10 +8660,10 @@ msgid "prior environment can only have one child"
7968
8660
  msgstr "o ambiente anterior só pode ter um filho"
7969
8661
 
7970
8662
  msgid "product numeric identifier"
7971
- msgstr "identificador númerico do produto"
8663
+ msgstr "identificador numérico do produto"
7972
8664
 
7973
8665
  msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
7974
- msgstr "register_hostname_fact set para %s, mas nenhum fato foi encontrado ou era localhost."
8666
+ msgstr "register_hostname_fact set for %s, mas nenhum fato encontrado, ou foi encontrado localhost."
7975
8667
 
7976
8668
  msgid "removing package group..."
7977
8669
  msgstr "removendo grupo de pacote..."
@@ -8015,6 +8707,15 @@ msgstr "root-nó das respostas de recurso único (opcional)"
8015
8707
  msgid "rule identifier"
8016
8708
  msgstr "identificador de regra"
8017
8709
 
8710
+ msgid "run job invocation"
8711
+ msgstr ""
8712
+
8713
+ msgid "security advisories"
8714
+ msgstr ""
8715
+
8716
+ msgid "security advisory"
8717
+ msgstr ""
8718
+
8018
8719
  msgid "service level"
8019
8720
  msgstr "nível de serviço"
8020
8721
 
@@ -8022,7 +8723,7 @@ msgid "set \"user_visible\" flag on package group. Defaults to true"
8022
8723
  msgstr "definir a bandeira \"user_visible\" no grupo de pacotes. O padrão é verdadeiro"
8023
8724
 
8024
8725
  msgid "set true if you want to see only library environments"
8025
- msgstr "definir verdadediro se você desejar ver somente os ambientes de biblioteca"
8726
+ msgstr "definir verdadeiro se você desejar ver somente os ambientes de biblioteca"
8026
8727
 
8027
8728
  msgid "sha256"
8028
8729
  msgstr ""
@@ -8037,7 +8738,7 @@ msgid "show repositories in Library and the default content view"
8037
8738
  msgstr "exibir repositórios na Biblioteca e a visualização de conteúdo padrão"
8038
8739
 
8039
8740
  msgid "some executors are not responding, check %{status_url}"
8040
- msgstr "alguns executores não estão respondendo, verifique %{status_url}"
8741
+ msgstr "alguns executores não estão respondendo, verificar %{status_url}"
8041
8742
 
8042
8743
  msgid "source URL is malformed"
8043
8744
  msgstr "o URL de origem está mal formado "
@@ -8064,14 +8765,11 @@ msgid "temporarily override feed URL for sync"
8064
8765
  msgstr "substituir temporariamente o URL do feed para sincronização "
8065
8766
 
8066
8767
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
8067
- msgstr "os seguintes atributos não podem ser atualizados para o provedor da Red Hat: [ %s ]"
8768
+ msgstr "os seguintes atributos não podem ser atualizados para o fornecedor da Red Hat: [ %s ]"
8068
8769
 
8069
8770
  msgid "to"
8070
8771
  msgstr ""
8071
8772
 
8072
- msgid "to update configuration on all hosts, or"
8073
- msgstr ""
8074
-
8075
8773
  msgid "true if the latest version of the component's content view is desired"
8076
8774
  msgstr "verdadeiro se a última versão da visualização de conteúdo do componente for desejada"
8077
8775
 
@@ -8084,12 +8782,9 @@ msgstr "verdadeiro se este repositório puder ser publicado via HTTP"
8084
8782
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8085
8783
  msgstr ""
8086
8784
 
8087
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8785
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8088
8786
  msgstr ""
8089
8787
 
8090
- msgid "type of repo"
8091
- msgstr "tipo de repositório"
8092
-
8093
8788
  msgid "types of filters"
8094
8789
  msgstr "tipos de filtros"
8095
8790
 
@@ -8102,9 +8797,6 @@ msgstr ""
8102
8797
  msgid "update a filter"
8103
8798
  msgstr "atualizar um filtro"
8104
8799
 
8105
- msgid "update configuration on the hosts manually:"
8106
- msgstr ""
8107
-
8108
8800
  msgid "updating package group..."
8109
8801
  msgstr "atualizando o grupo do pacote..."
8110
8802
 
@@ -8132,8 +8824,8 @@ msgstr "via execução remota"
8132
8824
  msgid "view content view tabs."
8133
8825
  msgstr ""
8134
8826
 
8135
- msgid "waiting for Candlepin to finish the task"
8136
- msgstr "aguardando Candlepin completar a tarefa "
8827
+ msgid "waiting for %s to finish the task"
8828
+ msgstr ""
8137
8829
 
8138
8830
  msgid "waiting for Pulp to finish the task"
8139
8831
  msgstr "aguardando Pulp completar a tarefa "