katello 4.4.2.2 → 4.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
- data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
- data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
- data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
- data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
- data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
- data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
- data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
- data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
- data/app/lib/actions/katello/content_view/destroy.rb +2 -1
- data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
- data/app/lib/actions/katello/content_view/publish.rb +7 -9
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
- data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/import.rb +25 -22
- data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
- data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
- data/app/lib/actions/katello/product/content_create.rb +10 -8
- data/app/lib/actions/katello/repository/destroy.rb +36 -12
- data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
- data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
- data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
- data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
- data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
- data/app/lib/katello/api/v2/error_handling.rb +1 -0
- data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
- data/app/lib/katello/util/errata.rb +2 -3
- data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
- data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
- data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
- data/app/models/katello/alternate_content_source.rb +66 -0
- data/app/models/katello/authorization/alternate_content_source.rb +33 -0
- data/app/models/katello/authorization/repository.rb +3 -3
- data/app/models/katello/candlepin/repository_mapper.rb +13 -6
- data/app/models/katello/cdn_configuration.rb +15 -15
- data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
- data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -2
- data/app/models/katello/concerns/setting_extensions.rb +14 -0
- data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
- data/app/models/katello/content.rb +1 -0
- data/app/models/katello/content_credential.rb +6 -0
- data/app/models/katello/content_override.rb +7 -3
- data/app/models/katello/content_view.rb +33 -2
- data/app/models/katello/content_view_erratum_filter.rb +26 -12
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_version.rb +12 -0
- data/app/models/katello/content_view_version_export_history.rb +3 -1
- data/app/models/katello/erratum.rb +9 -5
- data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
- data/app/models/katello/host/content_facet.rb +14 -0
- data/app/models/katello/host_available_module_stream.rb +12 -0
- data/app/models/katello/product_content.rb +1 -0
- data/app/models/katello/purpose_sla_status.rb +1 -1
- data/app/models/katello/purpose_status.rb +2 -2
- data/app/models/katello/repository.rb +7 -4
- data/app/models/katello/root_repository.rb +1 -1
- data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
- data/app/models/katello/sync_plan.rb +1 -1
- data/app/presenters/katello/product_content_presenter.rb +15 -0
- data/app/services/katello/applicable_host_queue.rb +1 -1
- data/app/services/katello/content_unit_indexer.rb +2 -1
- data/app/services/katello/product_content_finder.rb +12 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
- data/app/services/katello/pulp3/api/file.rb +8 -0
- data/app/services/katello/pulp3/api/yum.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
- data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
- data/app/services/katello/pulp3/repository/yum.rb +70 -12
- data/app/services/katello/pulp3/repository.rb +7 -91
- data/app/services/katello/pulp3/service_common.rb +66 -0
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
- data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
- data/app/views/foreman/job_templates/change_content_source.erb +1 -1
- data/app/views/foreman/job_templates/install_errata.erb +5 -5
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
- data/app/views/foreman/job_templates/install_group.erb +4 -4
- data/app/views/foreman/job_templates/install_package.erb +4 -4
- data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/remove_group.erb +4 -4
- data/app/views/foreman/job_templates/remove_package.erb +4 -4
- data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
- data/app/views/foreman/job_templates/restart_services.erb +3 -3
- data/app/views/foreman/job_templates/update_group.erb +4 -4
- data/app/views/foreman/job_templates/update_package.erb +4 -4
- data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
- data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
- data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
- data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
- data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
- data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
- data/app/views/katello/sync_management/_repo.html.erb +8 -29
- data/config/routes/api/v2.rb +7 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
- data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
- data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
- data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
- data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
- data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
- data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
- data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
- data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
- data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
- data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
- data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
- data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
- data/db/seeds.d/110-content-view-autopublish.rb +13 -0
- data/db/seeds.d/150-module_job_templates.rb +1 -1
- data/engines/bastion/README.md +1 -0
- data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
- data/lib/katello/engine.rb +1 -5
- data/lib/katello/permission_creator.rb +32 -4
- data/lib/katello/plugin.rb +378 -4
- data/lib/katello/tasks/reset.rake.bak +67 -0
- data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +47 -41
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/bn/katello.po +820 -106
- data/locale/bn/katello.po.time_stamp +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/katello.po +818 -104
- data/locale/cs/katello.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/katello.po +893 -179
- data/locale/de/katello.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/katello.po +817 -103
- data/locale/en/katello.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/katello.po +882 -168
- data/locale/es/katello.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/katello.po +1219 -505
- data/locale/fr/katello.po.time_stamp +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/katello.po +826 -112
- data/locale/gu/katello.po.time_stamp +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/katello.po +826 -112
- data/locale/hi/katello.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/katello.po +863 -148
- data/locale/it/katello.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/katello.po +1216 -499
- data/locale/ja/katello.po.time_stamp +0 -0
- data/locale/katello.pot +3847 -2507
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/katello.po +826 -112
- data/locale/kn/katello.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/katello.po +912 -198
- data/locale/ko/katello.po.time_stamp +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/katello.po +826 -112
- data/locale/mr/katello.po.time_stamp +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/katello.po +826 -112
- data/locale/or/katello.po.time_stamp +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/katello.po +826 -112
- data/locale/pa/katello.po.time_stamp +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/katello.po +817 -103
- data/locale/pt/katello.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/katello.po +879 -165
- data/locale/pt_BR/katello.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/katello.po +927 -213
- data/locale/ru/katello.po.time_stamp +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/katello.po +820 -106
- data/locale/ta/katello.po.time_stamp +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/katello.po +826 -112
- data/locale/te/katello.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/katello.po +1202 -486
- data/locale/zh_CN/katello.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/katello.po +856 -142
- data/locale/zh_TW/katello.po.time_stamp +0 -0
- data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
- data/webpack/components/Errata/index.js +38 -8
- data/webpack/components/Packages/index.js +1 -4
- data/webpack/components/Search/Search.js +18 -3
- data/webpack/components/SelectAllCheckbox/index.js +1 -0
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
- data/webpack/components/Table/EmptyStateMessage.js +21 -7
- data/webpack/components/Table/MainTable.js +29 -4
- data/webpack/components/Table/TableHooks.js +63 -19
- data/webpack/components/Table/TableWrapper.js +4 -2
- data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
- data/webpack/components/Table/components/TranslatedPlural.js +57 -0
- data/webpack/components/TypeAhead/TypeAhead.js +8 -0
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
- data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
- data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
- data/webpack/containers/Application/config.js +5 -0
- data/webpack/global_index.js +30 -7
- data/webpack/global_test_setup.js +13 -0
- data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
- data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
- data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
- data/webpack/scenes/AlternateContentSources/index.js +4 -0
- data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
- data/webpack/scenes/Content/Table/ContentTable.js +1 -0
- data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
- data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
- data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
- data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
- data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
- data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
- data/webpack/scenes/ContentViews/helpers.js +3 -0
- data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
- data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
- data/webpack/scenes/Tasks/TaskActions.js +6 -0
- data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
- data/webpack/scenes/Tasks/helpers.js +33 -5
- data/webpack/utils/helpers.js +2 -0
- metadata +158 -40
- data/app/models/setting/content.rb +0 -201
- data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
- data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/pt_BR/katello.po
CHANGED
@@ -6,18 +6,18 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Valeria S Silva <valeriassilva@live.com>, 2017
|
8
8
|
# Odilon Junior <odilon.junior93@gmail.com>, 2017
|
9
|
-
# 0868a4d1af5275b3f70b0a6dac4c99a4,
|
10
|
-
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>,
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
9
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
10
|
+
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2022
|
11
|
+
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
12
|
+
# Flamarion Jorge <jorge.flamarion@gmail.com>, 2022
|
13
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
14
14
|
#
|
15
15
|
msgid ""
|
16
16
|
msgstr ""
|
17
17
|
"Project-Id-Version: katello 2.5.0\n"
|
18
18
|
"Report-Msgid-Bugs-To: \n"
|
19
19
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
20
|
-
"Last-Translator:
|
20
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\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"
|
@@ -58,6 +58,9 @@ msgstr ""
|
|
58
58
|
msgid " ago."
|
59
59
|
msgstr ""
|
60
60
|
|
61
|
+
msgid " and"
|
62
|
+
msgstr ""
|
63
|
+
|
61
64
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
62
65
|
msgstr ""
|
63
66
|
|
@@ -120,6 +123,9 @@ msgstr "%s já foi excluído"
|
|
120
123
|
msgid "%s is not a valid package name"
|
121
124
|
msgstr "%s não é um nome de pacote válido "
|
122
125
|
|
126
|
+
msgid "%s is not a valid path"
|
127
|
+
msgstr ""
|
128
|
+
|
123
129
|
msgid "%s is required"
|
124
130
|
msgstr ""
|
125
131
|
|
@@ -369,9 +375,6 @@ msgstr ""
|
|
369
375
|
msgid "A post-promotion summary of hosts with installable errata"
|
370
376
|
msgstr "Um sumário de pós-promoção de hosts com errata instalável"
|
371
377
|
|
372
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
373
|
-
msgstr "Um servidor operando em modo desconectado não se comunica com o Red Hat CDN."
|
374
|
-
|
375
378
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
376
379
|
msgstr "Nível de serviço para processo de auto-reparo. Ex.: AUTO-SUPORTE"
|
377
380
|
|
@@ -390,12 +393,18 @@ msgstr ""
|
|
390
393
|
msgid "About page"
|
391
394
|
msgstr ""
|
392
395
|
|
396
|
+
msgid "Abstract"
|
397
|
+
msgstr ""
|
398
|
+
|
393
399
|
msgid "Abstract async task"
|
394
400
|
msgstr "Tarefa assíncrona abstrata"
|
395
401
|
|
396
402
|
msgid "Accept action timeout"
|
397
403
|
msgstr "Aceitar tempo limite de ação"
|
398
404
|
|
405
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
406
|
+
msgstr ""
|
407
|
+
|
399
408
|
msgid "Account Number"
|
400
409
|
msgstr "Número de conta"
|
401
410
|
|
@@ -414,12 +423,12 @@ msgstr "Ação não autorizada em hosts selecionados."
|
|
414
423
|
msgid "Action with sub plans"
|
415
424
|
msgstr "Ação com subplanos "
|
416
425
|
|
417
|
-
msgid "Actions"
|
418
|
-
msgstr ""
|
419
|
-
|
420
426
|
msgid "Activation Keys"
|
421
427
|
msgstr "Chaves de ativação "
|
422
428
|
|
429
|
+
msgid "Activation key"
|
430
|
+
msgstr ""
|
431
|
+
|
423
432
|
msgid "Activation key ID"
|
424
433
|
msgstr "Ativação do ID da chave"
|
425
434
|
|
@@ -451,7 +460,7 @@ msgid "Add"
|
|
451
460
|
msgstr "Adicionar"
|
452
461
|
|
453
462
|
msgid "Add Bookmark"
|
454
|
-
msgstr ""
|
463
|
+
msgstr "Adicionar marcador"
|
455
464
|
|
456
465
|
msgid "Add RPM rule"
|
457
466
|
msgstr ""
|
@@ -486,6 +495,12 @@ msgstr ""
|
|
486
495
|
msgid "Add filters using the 'Add filter' button above."
|
487
496
|
msgstr ""
|
488
497
|
|
498
|
+
msgid "Add host to collections"
|
499
|
+
msgstr ""
|
500
|
+
|
501
|
+
msgid "Add host to host collections"
|
502
|
+
msgstr ""
|
503
|
+
|
489
504
|
msgid "Add host to the host collection"
|
490
505
|
msgstr "Adicionar host à coleção de hosts"
|
491
506
|
|
@@ -510,6 +525,9 @@ msgstr ""
|
|
510
525
|
msgid "Add rule"
|
511
526
|
msgstr ""
|
512
527
|
|
528
|
+
msgid "Add source"
|
529
|
+
msgstr ""
|
530
|
+
|
513
531
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
514
532
|
msgstr "Adicionar subscrições consumidas por um manifesto do Red Hat Subscription Management"
|
515
533
|
|
@@ -522,9 +540,6 @@ msgstr ""
|
|
522
540
|
msgid "Add to this filter using the 'Add filter rule' button."
|
523
541
|
msgstr ""
|
524
542
|
|
525
|
-
msgid "Add traces by applying updates on this host."
|
526
|
-
msgstr ""
|
527
|
-
|
528
543
|
msgid "Added"
|
529
544
|
msgstr ""
|
530
545
|
|
@@ -553,13 +568,13 @@ msgid "Agent action"
|
|
553
568
|
msgstr ""
|
554
569
|
|
555
570
|
msgid "All"
|
556
|
-
msgstr ""
|
571
|
+
msgstr "Todos(as)"
|
557
572
|
|
558
573
|
msgid "All Media"
|
559
574
|
msgstr "Todas as mídias"
|
560
575
|
|
561
576
|
msgid "All Repositories"
|
562
|
-
msgstr ""
|
577
|
+
msgstr "Todos os repositórios"
|
563
578
|
|
564
579
|
msgid "All available architectures for this repo are enabled."
|
565
580
|
msgstr "Todas as arquiteturas disponíveis para este repositório estão habilitadas."
|
@@ -567,29 +582,53 @@ msgstr "Todas as arquiteturas disponíveis para este repositório estão habilit
|
|
567
582
|
msgid "All errata applied"
|
568
583
|
msgstr "Todas erratas aplicadas "
|
569
584
|
|
585
|
+
msgid "All errata up-to-date"
|
586
|
+
msgstr ""
|
587
|
+
|
588
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
589
|
+
msgstr ""
|
590
|
+
|
570
591
|
msgid "All versions"
|
571
592
|
msgstr ""
|
572
593
|
|
573
594
|
msgid "All versions will be removed from these environments"
|
574
595
|
msgstr ""
|
575
596
|
|
576
|
-
msgid "Allow
|
597
|
+
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)"
|
577
598
|
msgstr ""
|
578
599
|
|
579
|
-
msgid "Allow
|
600
|
+
msgid "Allow deleting repositories in published content views"
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
580
604
|
msgstr ""
|
581
605
|
|
582
606
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
583
607
|
msgstr ""
|
584
608
|
|
585
|
-
msgid "Allow new
|
586
|
-
msgstr "
|
609
|
+
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
|
+
msgstr ""
|
587
611
|
|
588
612
|
msgid "Also include the latest upgradable package version for each host package"
|
589
613
|
msgstr ""
|
590
614
|
|
591
|
-
msgid "Alter a
|
592
|
-
msgstr "
|
615
|
+
msgid "Alter a host's host collections"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Alternate Content Sources"
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Alternate content source ${name} created"
|
622
|
+
msgstr ""
|
623
|
+
|
624
|
+
msgid "Alternate content source ID"
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
msgid "Alternate content source deleted"
|
628
|
+
msgstr ""
|
629
|
+
|
630
|
+
msgid "Alternate content sources"
|
631
|
+
msgstr ""
|
593
632
|
|
594
633
|
msgid "Always Use Latest (currently %{version})"
|
595
634
|
msgstr "Usar sempre o mais recente (atualmente, %{version})"
|
@@ -600,6 +639,9 @@ msgstr ""
|
|
600
639
|
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."
|
601
640
|
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."
|
602
641
|
|
642
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
643
|
+
msgstr ""
|
644
|
+
|
603
645
|
msgid "An environment is missing a prior"
|
604
646
|
msgstr "Um ambiente não tem um anterior"
|
605
647
|
|
@@ -640,13 +682,13 @@ msgid "Applicability Batch Size"
|
|
640
682
|
msgstr "Tamanho de lote de aplicabilidade"
|
641
683
|
|
642
684
|
msgid "Applicable Content Hosts"
|
643
|
-
msgstr ""
|
685
|
+
msgstr "Hosts aplicáveis de conteúdo"
|
644
686
|
|
645
687
|
msgid "Application"
|
646
|
-
msgstr ""
|
688
|
+
msgstr "Aplicativo"
|
647
689
|
|
648
690
|
msgid "Apply"
|
649
|
-
msgstr ""
|
691
|
+
msgstr "Aplicar"
|
650
692
|
|
651
693
|
msgid "Apply Erratum"
|
652
694
|
msgstr ""
|
@@ -743,6 +785,9 @@ msgstr "Atribuir a versão de lançamento a um ou mais hosts"
|
|
743
785
|
msgid "Associated location IDs"
|
744
786
|
msgstr "IDs de local associadas"
|
745
787
|
|
788
|
+
msgid "Associated version"
|
789
|
+
msgstr ""
|
790
|
+
|
746
791
|
msgid "Associations"
|
747
792
|
msgstr "Associações"
|
748
793
|
|
@@ -804,11 +849,14 @@ msgid "Available Repositories"
|
|
804
849
|
msgstr "Repositórios disponíveis"
|
805
850
|
|
806
851
|
msgid "Available Schema Versions"
|
807
|
-
msgstr ""
|
852
|
+
msgstr "Versões disponíveis de esquema"
|
808
853
|
|
809
854
|
msgid "Backend System Status"
|
810
855
|
msgstr "Status do Sistema Backend"
|
811
856
|
|
857
|
+
msgid "Base URL for finding alternate content"
|
858
|
+
msgstr ""
|
859
|
+
|
812
860
|
msgid "Base URL to perform repo discovery on"
|
813
861
|
msgstr "URL base na qual a descoberta de repositório deve ser realizada"
|
814
862
|
|
@@ -818,9 +866,21 @@ msgstr "Desabilitar Basearch"
|
|
818
866
|
msgid "Basearch to enable"
|
819
867
|
msgstr "Habilitar Basearch"
|
820
868
|
|
869
|
+
msgid "Basic authentication password"
|
870
|
+
msgstr ""
|
871
|
+
|
872
|
+
msgid "Basic authentication username"
|
873
|
+
msgstr ""
|
874
|
+
|
821
875
|
msgid "Batch size to sync repositories in."
|
822
876
|
msgstr "Tamanho de lote para sincronizar os repositórios."
|
823
877
|
|
878
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
879
|
+
msgstr ""
|
880
|
+
|
881
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
882
|
+
msgstr ""
|
883
|
+
|
824
884
|
msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
|
825
885
|
msgstr ""
|
826
886
|
|
@@ -834,7 +894,7 @@ msgid "Bind entitlements to an allocation"
|
|
834
894
|
msgstr "Associe os direitos a uma alocação"
|
835
895
|
|
836
896
|
msgid "Bookmark this search"
|
837
|
-
msgstr ""
|
897
|
+
msgstr "Adicionar esta pesquisa a um marcador"
|
838
898
|
|
839
899
|
msgid "Bookmarks marked as public are available to all users"
|
840
900
|
msgstr ""
|
@@ -857,6 +917,9 @@ msgstr ""
|
|
857
917
|
msgid "Bulk generate applicability for hosts"
|
858
918
|
msgstr "Aplicabilidade de geração em massa para hosts"
|
859
919
|
|
920
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
921
|
+
msgstr ""
|
922
|
+
|
860
923
|
msgid "CDN Configuration"
|
861
924
|
msgstr ""
|
862
925
|
|
@@ -869,6 +932,12 @@ msgstr ""
|
|
869
932
|
msgid "CDN SSL version"
|
870
933
|
msgstr "Versão de CDN SSL"
|
871
934
|
|
935
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
936
|
+
msgstr ""
|
937
|
+
|
938
|
+
msgid "CDN configuration type. One of %s."
|
939
|
+
msgstr ""
|
940
|
+
|
872
941
|
msgid "CDN loading error: %s not found"
|
873
942
|
msgstr "CDN carregando erro: %s não foi encontrado"
|
874
943
|
|
@@ -882,7 +951,7 @@ msgid "CVE identifier"
|
|
882
951
|
msgstr "Identificador do CVE"
|
883
952
|
|
884
953
|
msgid "CVEs"
|
885
|
-
msgstr ""
|
954
|
+
msgstr "CVEs"
|
886
955
|
|
887
956
|
msgid "Calculate Applicable Errata based on a particular Content View"
|
888
957
|
msgstr "Calcular Errata Aplicável baseada em uma Visualização de Conteúdo específica"
|
@@ -890,8 +959,11 @@ msgstr "Calcular Errata Aplicável baseada em uma Visualização de Conteúdo es
|
|
890
959
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
891
960
|
msgstr "Calcular Errata Aplicável baseada em um Ambiente específico"
|
892
961
|
|
893
|
-
msgid "Calculate errata host status based only on errata in a
|
894
|
-
msgstr "
|
962
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
963
|
+
msgstr ""
|
964
|
+
|
965
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
966
|
+
msgstr ""
|
895
967
|
|
896
968
|
msgid "Can not add product %s because it is disabled."
|
897
969
|
msgstr "Não é possível adicionar o produto %s porque ele está desabilitado."
|
@@ -1013,6 +1085,9 @@ msgstr "Não é possível passar unidades de conteúdo sem o tipo de unidade de
|
|
1013
1085
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1014
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}"
|
1015
1087
|
|
1088
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1089
|
+
msgstr ""
|
1090
|
+
|
1016
1091
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1017
1092
|
msgstr "Não foi possível promover ambiente fora da sequência. Use força para sobrepor restrições."
|
1018
1093
|
|
@@ -1064,6 +1139,18 @@ msgstr "Não é possível carregar o conteúdo da Imagem de contêiner."
|
|
1064
1139
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1065
1140
|
msgstr "Não é possível validar conteúdos em repositórios que não sejam yum/deb."
|
1066
1141
|
|
1142
|
+
msgid "Capacity"
|
1143
|
+
msgstr ""
|
1144
|
+
|
1145
|
+
msgid "Change Content Source"
|
1146
|
+
msgstr ""
|
1147
|
+
|
1148
|
+
msgid "Change content source"
|
1149
|
+
msgstr ""
|
1150
|
+
|
1151
|
+
msgid "Change host content source"
|
1152
|
+
msgstr ""
|
1153
|
+
|
1067
1154
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1068
1155
|
msgstr "Verifique se é possível estabelecer conexão com o Red Hat Subscription Management."
|
1069
1156
|
|
@@ -1076,6 +1163,9 @@ msgstr "Verificar serviços antes de ações"
|
|
1076
1163
|
msgid "Checksum"
|
1077
1164
|
msgstr "Checksum"
|
1078
1165
|
|
1166
|
+
msgid "Checksum is a required parameter."
|
1167
|
+
msgstr ""
|
1168
|
+
|
1079
1169
|
msgid "Checksum of file to upload"
|
1080
1170
|
msgstr "Checksum do arquivo para carregar"
|
1081
1171
|
|
@@ -1091,6 +1181,9 @@ msgstr ""
|
|
1091
1181
|
msgid "Click here to go to the tasks page for the task."
|
1092
1182
|
msgstr "Clique aqui para ir à página de tarefas da tarefa."
|
1093
1183
|
|
1184
|
+
msgid "Click {update} below to save changes."
|
1185
|
+
msgstr ""
|
1186
|
+
|
1094
1187
|
msgid "Clone"
|
1095
1188
|
msgstr "Clonar"
|
1096
1189
|
|
@@ -1106,7 +1199,13 @@ msgstr "Atualização de perfil combinado"
|
|
1106
1199
|
msgid "Combined Profile Update for %s"
|
1107
1200
|
msgstr "Atualização de perfil combinado para %s"
|
1108
1201
|
|
1109
|
-
msgid "Comma-separated list of tags to
|
1202
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1203
|
+
msgstr ""
|
1204
|
+
|
1205
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1206
|
+
msgstr ""
|
1207
|
+
|
1208
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1110
1209
|
msgstr ""
|
1111
1210
|
|
1112
1211
|
msgid "Component"
|
@@ -1122,10 +1221,10 @@ msgid "Component content views"
|
|
1122
1221
|
msgstr ""
|
1123
1222
|
|
1124
1223
|
msgid "Components"
|
1125
|
-
msgstr ""
|
1224
|
+
msgstr "Componentes"
|
1126
1225
|
|
1127
1226
|
msgid "Composite"
|
1128
|
-
msgstr ""
|
1227
|
+
msgstr "Composição"
|
1129
1228
|
|
1130
1229
|
msgid "Composite Content View"
|
1131
1230
|
msgstr ""
|
@@ -1193,6 +1292,9 @@ msgstr ""
|
|
1193
1292
|
msgid "Container manifests"
|
1194
1293
|
msgstr ""
|
1195
1294
|
|
1295
|
+
msgid "Container tags"
|
1296
|
+
msgstr ""
|
1297
|
+
|
1196
1298
|
msgid "Content"
|
1197
1299
|
msgstr "Conteúdo"
|
1198
1300
|
|
@@ -1205,7 +1307,7 @@ msgstr ""
|
|
1205
1307
|
msgid "Content Credential numeric identifier"
|
1206
1308
|
msgstr ""
|
1207
1309
|
|
1208
|
-
msgid "Content Credential to use for SSL CA"
|
1310
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1209
1311
|
msgstr ""
|
1210
1312
|
|
1211
1313
|
msgid "Content Credentials"
|
@@ -1238,9 +1340,6 @@ msgstr "Visão do conteúdo"
|
|
1238
1340
|
msgid "Content View %{view}: Versions: %{versions}"
|
1239
1341
|
msgstr "Visualização de conteúdo %{view}: Versões: %{versions}"
|
1240
1342
|
|
1241
|
-
msgid "Content View Dependency Solving Default"
|
1242
|
-
msgstr "Solução de dependência de visualização de conteúdo"
|
1243
|
-
|
1244
1343
|
msgid "Content View Details"
|
1245
1344
|
msgstr "Detalhes de visualização de conteúdo"
|
1246
1345
|
|
@@ -1253,11 +1352,8 @@ msgstr "Identificador de filtro de visualização de conteúdo"
|
|
1253
1352
|
msgid "Content View ID"
|
1254
1353
|
msgstr "ID de Visualização de Conteúdo"
|
1255
1354
|
|
1256
|
-
msgid "Content View Label"
|
1257
|
-
msgstr ""
|
1258
|
-
|
1259
1355
|
msgid "Content View Name"
|
1260
|
-
msgstr ""
|
1356
|
+
msgstr "Nome de visualização de conteúdo"
|
1261
1357
|
|
1262
1358
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
1263
1359
|
msgstr "A Versão de Visualização de Conteúdo %{id} não está em todos os ambientes especificados %{envs}"
|
@@ -1280,6 +1376,9 @@ msgstr "O Ambiente e a Visualização de Conteúdo não foram definidos para reg
|
|
1280
1376
|
msgid "Content View id"
|
1281
1377
|
msgstr ""
|
1282
1378
|
|
1379
|
+
msgid "Content View label not provided."
|
1380
|
+
msgstr ""
|
1381
|
+
|
1283
1382
|
msgid "Content Views"
|
1284
1383
|
msgstr "Exibições de conteúdo"
|
1285
1384
|
|
@@ -1292,15 +1391,21 @@ msgstr "O host do conteúdo não pode estar registrado antes de executar esta a
|
|
1292
1391
|
msgid "Content hosts"
|
1293
1392
|
msgstr ""
|
1294
1393
|
|
1295
|
-
msgid "Content imported
|
1394
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1296
1395
|
msgstr ""
|
1297
1396
|
|
1298
1397
|
msgid "Content not uploaded to pulp"
|
1299
1398
|
msgstr ""
|
1300
1399
|
|
1400
|
+
msgid "Content override search parameters"
|
1401
|
+
msgstr ""
|
1402
|
+
|
1301
1403
|
msgid "Content source ID"
|
1302
1404
|
msgstr "ID da fonte de conteúdo"
|
1303
1405
|
|
1406
|
+
msgid "Content source successfully updated."
|
1407
|
+
msgstr ""
|
1408
|
+
|
1304
1409
|
msgid "Content source was not set for host '%{host}'"
|
1305
1410
|
msgstr "A fonte de conteúdo não foi definida para o host '%{host}'"
|
1306
1411
|
|
@@ -1376,6 +1481,9 @@ msgstr "Contrato"
|
|
1376
1481
|
msgid "Contract Number"
|
1377
1482
|
msgstr "Número de contrato"
|
1378
1483
|
|
1484
|
+
msgid "Copied to clipboard"
|
1485
|
+
msgstr ""
|
1486
|
+
|
1379
1487
|
msgid "Copy"
|
1380
1488
|
msgstr ""
|
1381
1489
|
|
@@ -1385,6 +1493,9 @@ msgstr "Copiar uma chave de ativação"
|
|
1385
1493
|
msgid "Copy content view"
|
1386
1494
|
msgstr ""
|
1387
1495
|
|
1496
|
+
msgid "Copy to clipboard"
|
1497
|
+
msgstr ""
|
1498
|
+
|
1388
1499
|
msgid "Copy version units to library"
|
1389
1500
|
msgstr ""
|
1390
1501
|
|
@@ -1496,6 +1607,9 @@ msgstr "Não foi possível encontrar produto com ID \"%s\""
|
|
1496
1607
|
msgid "Couldn't find repository '%s'"
|
1497
1608
|
msgstr "Não foi possível encontrar repositório \"%s\""
|
1498
1609
|
|
1610
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1611
|
+
msgstr ""
|
1612
|
+
|
1499
1613
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1500
1614
|
msgstr "Não foi possível encontrar a Visualização de conteúdo e o Ambiente de ciclo de vida especificados."
|
1501
1615
|
|
@@ -1508,6 +1622,9 @@ msgstr "Contagem"
|
|
1508
1622
|
msgid "Create"
|
1509
1623
|
msgstr "Criar"
|
1510
1624
|
|
1625
|
+
msgid "Create Alternate Content Source"
|
1626
|
+
msgstr ""
|
1627
|
+
|
1511
1628
|
msgid "Create Export History"
|
1512
1629
|
msgstr ""
|
1513
1630
|
|
@@ -1544,6 +1661,9 @@ msgstr "Criar um produto"
|
|
1544
1661
|
msgid "Create a sync plan"
|
1545
1662
|
msgstr "Criar um plano de sinc"
|
1546
1663
|
|
1664
|
+
msgid "Create an ACS"
|
1665
|
+
msgstr ""
|
1666
|
+
|
1547
1667
|
msgid "Create an activation key"
|
1548
1668
|
msgstr "Criar uma chave de ativação"
|
1549
1669
|
|
@@ -1566,7 +1686,7 @@ msgid "Create organization"
|
|
1566
1686
|
msgstr "Criar organização"
|
1567
1687
|
|
1568
1688
|
msgid "Critical"
|
1569
|
-
msgstr ""
|
1689
|
+
msgstr "Crítico"
|
1570
1690
|
|
1571
1691
|
msgid "Cron expression is not valid!"
|
1572
1692
|
msgstr "A expressão cron não é válida!"
|
@@ -1589,6 +1709,9 @@ msgstr "A expressão cron personalizada só precisa de ser definida para o valor
|
|
1589
1709
|
msgid "Custom repositories cannot be disabled."
|
1590
1710
|
msgstr "Repositórios padronizados não podem ser desabilitados"
|
1591
1711
|
|
1712
|
+
msgid "Customize with Rex"
|
1713
|
+
msgstr ""
|
1714
|
+
|
1592
1715
|
msgid "Database connection"
|
1593
1716
|
msgstr "Conexão do banco de dados"
|
1594
1717
|
|
@@ -1625,14 +1748,11 @@ msgstr "Depurar RPM"
|
|
1625
1748
|
msgid "Default Custom Repository download policy"
|
1626
1749
|
msgstr "Política de download de Repositório personalizado padrão"
|
1627
1750
|
|
1628
|
-
msgid "Default HTTP Proxy
|
1629
|
-
msgstr "
|
1630
|
-
|
1631
|
-
msgid "Default HTTP proxy"
|
1632
|
-
msgstr "Proxy HTTP padrão"
|
1751
|
+
msgid "Default HTTP Proxy"
|
1752
|
+
msgstr ""
|
1633
1753
|
|
1634
|
-
msgid "Default
|
1635
|
-
msgstr "
|
1754
|
+
msgid "Default HTTP proxy for syncing content"
|
1755
|
+
msgstr ""
|
1636
1756
|
|
1637
1757
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1638
1758
|
msgstr "Local padrão onde os novos hosts subscritos serão colocados após o registro"
|
@@ -1676,6 +1796,9 @@ msgstr "Modelo iPXE padrão para novos sistemas operacionais criados a partir de
|
|
1676
1796
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1677
1797
|
msgstr "Modelo kexec padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
|
1678
1798
|
|
1799
|
+
msgid "Default location for subscribed hosts"
|
1800
|
+
msgstr ""
|
1801
|
+
|
1679
1802
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1680
1803
|
msgstr "Tabela de particionamento padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
|
1681
1804
|
|
@@ -1778,6 +1901,9 @@ msgstr ""
|
|
1778
1901
|
msgid "Delete version"
|
1779
1902
|
msgstr ""
|
1780
1903
|
|
1904
|
+
msgid "Delete versions"
|
1905
|
+
msgstr ""
|
1906
|
+
|
1781
1907
|
msgid "Deleted consumer '%s'"
|
1782
1908
|
msgstr "Consumidor removido '%s'"
|
1783
1909
|
|
@@ -1793,9 +1919,18 @@ msgstr ""
|
|
1793
1919
|
msgid "Deleting manifest in '%{subject}' failed."
|
1794
1920
|
msgstr "Falha ao excluir manifesto em '%{subject}'."
|
1795
1921
|
|
1922
|
+
msgid "Deleting version {versionList}"
|
1923
|
+
msgstr ""
|
1924
|
+
|
1925
|
+
msgid "Deleting versions: {versionList}"
|
1926
|
+
msgstr ""
|
1927
|
+
|
1796
1928
|
msgid "Description"
|
1797
1929
|
msgstr "Descrição"
|
1798
1930
|
|
1931
|
+
msgid "Description for the alternate content source"
|
1932
|
+
msgstr ""
|
1933
|
+
|
1799
1934
|
msgid "Description for the content view"
|
1800
1935
|
msgstr "Descrição para uma visualização de conteúdo"
|
1801
1936
|
|
@@ -1817,6 +1952,9 @@ msgstr ""
|
|
1817
1952
|
msgid "Destroy"
|
1818
1953
|
msgstr "Destruir"
|
1819
1954
|
|
1955
|
+
msgid "Destroy Alternate Content Source"
|
1956
|
+
msgstr ""
|
1957
|
+
|
1820
1958
|
msgid "Destroy Content Host"
|
1821
1959
|
msgstr "Destruir Host de Conteúdo"
|
1822
1960
|
|
@@ -1841,6 +1979,9 @@ msgstr "Destruir um plano de sinc"
|
|
1841
1979
|
msgid "Destroy an activation key"
|
1842
1980
|
msgstr "Destruir uma chave de ativação"
|
1843
1981
|
|
1982
|
+
msgid "Destroy an alternate content source"
|
1983
|
+
msgstr ""
|
1984
|
+
|
1844
1985
|
msgid "Destroy an environment"
|
1845
1986
|
msgstr "Destruir um ambiente "
|
1846
1987
|
|
@@ -1880,18 +2021,18 @@ msgstr "Desabilitar o acesso a conteúdo simples"
|
|
1880
2021
|
msgid "Disable a repository from the set"
|
1881
2022
|
msgstr "Desabilitar um repositório do conjunto"
|
1882
2023
|
|
2024
|
+
msgid "Disable module stream"
|
2025
|
+
msgstr ""
|
2026
|
+
|
1883
2027
|
msgid "Disable simple content access for a manifest"
|
1884
2028
|
msgstr "Desabilitar o acesso a conteúdo simples para um manifesto"
|
1885
2029
|
|
1886
2030
|
msgid "Disabled"
|
1887
|
-
msgstr ""
|
2031
|
+
msgstr "Desativado"
|
1888
2032
|
|
1889
2033
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1890
2034
|
msgstr ""
|
1891
2035
|
|
1892
|
-
msgid "Disconnected mode"
|
1893
|
-
msgstr "Modo desconectado"
|
1894
|
-
|
1895
2036
|
msgid "Discover"
|
1896
2037
|
msgstr "Descubra"
|
1897
2038
|
|
@@ -1907,9 +2048,6 @@ msgstr "Não espere o término da ação ImportUpload. Padrão: falso"
|
|
1907
2048
|
msgid "Do not wait for the update action to finish. Default: true"
|
1908
2049
|
msgstr "Não espere o término da ação de atualização. Padrão: verdadeiro"
|
1909
2050
|
|
1910
|
-
msgid "Docker Tags"
|
1911
|
-
msgstr ""
|
1912
|
-
|
1913
2051
|
msgid "Domain IDs"
|
1914
2052
|
msgstr " IDs de Domínio"
|
1915
2053
|
|
@@ -1919,6 +2057,9 @@ msgstr "Política de download da cápsula, deve ser uma de %s"
|
|
1919
2057
|
msgid "Download a debug certificate"
|
1920
2058
|
msgstr "Baixar um certificado de depuração "
|
1921
2059
|
|
2060
|
+
msgid "Download rate limit"
|
2061
|
+
msgstr ""
|
2062
|
+
|
1922
2063
|
msgid "Duplicate artifact detected"
|
1923
2064
|
msgstr ""
|
1924
2065
|
|
@@ -1934,6 +2075,9 @@ msgstr "Editar"
|
|
1934
2075
|
msgid "Edit RPM rule"
|
1935
2076
|
msgstr ""
|
1936
2077
|
|
2078
|
+
msgid "Edit content view assignment"
|
2079
|
+
msgstr ""
|
2080
|
+
|
1937
2081
|
msgid "Edit filter rule"
|
1938
2082
|
msgstr ""
|
1939
2083
|
|
@@ -1997,6 +2141,9 @@ msgstr ""
|
|
1997
2141
|
msgid "End Date"
|
1998
2142
|
msgstr "Data de término"
|
1999
2143
|
|
2144
|
+
msgid "End date"
|
2145
|
+
msgstr ""
|
2146
|
+
|
2000
2147
|
msgid "Ends"
|
2001
2148
|
msgstr "Finais"
|
2002
2149
|
|
@@ -2006,6 +2153,9 @@ msgstr "Melhoria"
|
|
2006
2153
|
msgid "Enter a name"
|
2007
2154
|
msgstr ""
|
2008
2155
|
|
2156
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2157
|
+
msgstr ""
|
2158
|
+
|
2009
2159
|
msgid "Entitlements"
|
2010
2160
|
msgstr "Direitos"
|
2011
2161
|
|
@@ -2024,6 +2174,9 @@ msgstr "Identificador de ambiente"
|
|
2024
2174
|
msgid "Environments"
|
2025
2175
|
msgstr "Ambientes"
|
2026
2176
|
|
2177
|
+
msgid "Epoch"
|
2178
|
+
msgstr ""
|
2179
|
+
|
2027
2180
|
msgid "Equal to"
|
2028
2181
|
msgstr ""
|
2029
2182
|
|
@@ -2081,6 +2234,9 @@ msgstr "Erro ao estabelecer uma conexão com o serviço Pulp "
|
|
2081
2234
|
msgid "Error connecting. Got: %s"
|
2082
2235
|
msgstr "Erro ao estabelecer uma conexão. Obteve: %s"
|
2083
2236
|
|
2237
|
+
msgid "Error loading content views"
|
2238
|
+
msgstr ""
|
2239
|
+
|
2084
2240
|
msgid "Error refreshing status for %s: "
|
2085
2241
|
msgstr "Status de atualização de erros para %s: "
|
2086
2242
|
|
@@ -2097,7 +2253,7 @@ msgid "Exclude all Module Streams with no errata."
|
|
2097
2253
|
msgstr ""
|
2098
2254
|
|
2099
2255
|
msgid "Exclude all RPMs with no errata."
|
2100
|
-
msgstr ""
|
2256
|
+
msgstr "Remover todos os RPMs sem erratas. "
|
2101
2257
|
|
2102
2258
|
msgid "Exclude filter"
|
2103
2259
|
msgstr ""
|
@@ -2129,6 +2285,12 @@ msgstr "Exportar CSV"
|
|
2129
2285
|
msgid "Export Library"
|
2130
2286
|
msgstr ""
|
2131
2287
|
|
2288
|
+
msgid "Export Repository"
|
2289
|
+
msgstr ""
|
2290
|
+
|
2291
|
+
msgid "Export Sync"
|
2292
|
+
msgstr ""
|
2293
|
+
|
2132
2294
|
msgid "Export Types"
|
2133
2295
|
msgstr ""
|
2134
2296
|
|
@@ -2139,7 +2301,7 @@ msgid "Export history identifier used for incremental export. If not provided th
|
|
2139
2301
|
msgstr ""
|
2140
2302
|
|
2141
2303
|
msgid "Exported content view"
|
2142
|
-
msgstr ""
|
2304
|
+
msgstr "Visualização de conteúdo exportada "
|
2143
2305
|
|
2144
2306
|
msgid "Exported version"
|
2145
2307
|
msgstr "Versão exportada"
|
@@ -2153,6 +2315,9 @@ msgstr "Falhou"
|
|
2153
2315
|
msgid "Failed to delete %{host}: %{errors}"
|
2154
2316
|
msgstr "Falha ao excluir %{host}: %{errors}"
|
2155
2317
|
|
2318
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2319
|
+
msgstr ""
|
2320
|
+
|
2156
2321
|
msgid "Failed to download %s package."
|
2157
2322
|
msgid_plural "Failed to download %s packages."
|
2158
2323
|
msgstr[0] "Falha ao baixar pacote %s ."
|
@@ -2192,7 +2357,7 @@ msgid "File contents"
|
|
2192
2357
|
msgstr ""
|
2193
2358
|
|
2194
2359
|
msgid "Filename"
|
2195
|
-
msgstr ""
|
2360
|
+
msgstr "Nome de arquivo"
|
2196
2361
|
|
2197
2362
|
msgid "Files"
|
2198
2363
|
msgstr "Arquivos"
|
@@ -2210,7 +2375,7 @@ msgid "Filter created"
|
|
2210
2375
|
msgstr "Filtro criado"
|
2211
2376
|
|
2212
2377
|
msgid "Filter deleted"
|
2213
|
-
msgstr ""
|
2378
|
+
msgstr "Filtro removido"
|
2214
2379
|
|
2215
2380
|
msgid "Filter edited"
|
2216
2381
|
msgstr ""
|
@@ -2342,6 +2507,15 @@ msgstr "Gerar aplicabilidade de host"
|
|
2342
2507
|
msgid "Generate repository applicability"
|
2343
2508
|
msgstr "Gerar aplicabilidade de repositório"
|
2344
2509
|
|
2510
|
+
msgid "Generated"
|
2511
|
+
msgstr ""
|
2512
|
+
|
2513
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2514
|
+
msgstr ""
|
2515
|
+
|
2516
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2517
|
+
msgstr ""
|
2518
|
+
|
2345
2519
|
msgid "Get all content available, not just that provided by subscriptions"
|
2346
2520
|
msgstr "Obter todo o conteúdo disponível, não apenas o fornecido pelas subscrições"
|
2347
2521
|
|
@@ -2378,6 +2552,9 @@ msgstr ""
|
|
2378
2552
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2379
2553
|
msgstr ""
|
2380
2554
|
|
2555
|
+
msgid "Go to job details"
|
2556
|
+
msgstr ""
|
2557
|
+
|
2381
2558
|
msgid "Go to task page"
|
2382
2559
|
msgstr "Ir para a página de tarefas"
|
2383
2560
|
|
@@ -2400,6 +2577,12 @@ msgid "Has to be > 0"
|
|
2400
2577
|
msgstr "Tem de ser > 0"
|
2401
2578
|
|
2402
2579
|
msgid "Helper"
|
2580
|
+
msgstr "Assistente"
|
2581
|
+
|
2582
|
+
msgid "Hide affected activation keys"
|
2583
|
+
msgstr ""
|
2584
|
+
|
2585
|
+
msgid "Hide affected hosts"
|
2403
2586
|
msgstr ""
|
2404
2587
|
|
2405
2588
|
msgid "Hide description"
|
@@ -2453,15 +2636,27 @@ msgstr "Status de subscrição de host"
|
|
2453
2636
|
msgid "Host Tasks Workers Pool Size"
|
2454
2637
|
msgstr "Tamanho do pool de trabalhadores de tarefas de host"
|
2455
2638
|
|
2639
|
+
msgid "Host collection"
|
2640
|
+
msgstr ""
|
2641
|
+
|
2456
2642
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2457
2643
|
msgstr "Coleção Host '%{name}'excede o limite máximo de uso de'%{limit}'"
|
2458
2644
|
|
2459
2645
|
msgid "Host collection is empty."
|
2460
2646
|
msgstr "Coleção do Host está vazia. "
|
2461
2647
|
|
2648
|
+
msgid "Host collections"
|
2649
|
+
msgstr ""
|
2650
|
+
|
2651
|
+
msgid "Host collections updated"
|
2652
|
+
msgstr ""
|
2653
|
+
|
2462
2654
|
msgid "Host content and subscription details"
|
2463
2655
|
msgstr "Host de conteúdo e detalhes da subscrição"
|
2464
2656
|
|
2657
|
+
msgid "Host content view and environment updated"
|
2658
|
+
msgstr ""
|
2659
|
+
|
2465
2660
|
msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
|
2466
2661
|
msgstr ""
|
2467
2662
|
|
@@ -2505,7 +2700,7 @@ msgid "Host with ID %s not found."
|
|
2505
2700
|
msgstr "Host com ID %s não encontrado."
|
2506
2701
|
|
2507
2702
|
msgid "Hosts"
|
2508
|
-
msgstr ""
|
2703
|
+
msgstr "Hosts"
|
2509
2704
|
|
2510
2705
|
msgid "Hosts with Installable Errata"
|
2511
2706
|
msgstr "Hosts com a Errata Instalável"
|
@@ -2513,8 +2708,8 @@ msgstr "Hosts com a Errata Instalável"
|
|
2513
2708
|
msgid "Hosts: "
|
2514
2709
|
msgstr ""
|
2515
2710
|
|
2516
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2517
|
-
msgstr "
|
2711
|
+
msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
|
2712
|
+
msgstr ""
|
2518
2713
|
|
2519
2714
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
2520
2715
|
msgstr "Como encomendar os resultados classificados (por exemplo ASC para ascendente) "
|
@@ -2576,12 +2771,18 @@ msgstr "ID do conjunto de repositório a ser desabilitado"
|
|
2576
2771
|
msgid "ID of the repository set to enable"
|
2577
2772
|
msgstr "ID do conjunto de repositório a habilitar"
|
2578
2773
|
|
2774
|
+
msgid "ID of the repository within the set to disable"
|
2775
|
+
msgstr ""
|
2776
|
+
|
2579
2777
|
msgid "ID of the sync plan"
|
2580
2778
|
msgstr "ID do plano de sinc"
|
2581
2779
|
|
2582
2780
|
msgid "ID: %s doesn't exist "
|
2583
2781
|
msgstr "ID: %s não existe"
|
2584
2782
|
|
2783
|
+
msgid "Id"
|
2784
|
+
msgstr ""
|
2785
|
+
|
2585
2786
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2586
2787
|
msgstr "Id de um pacote deb para localizar os repositórios que contêm o deb"
|
2587
2788
|
|
@@ -2654,16 +2855,22 @@ msgstr "Identificadores para ambiente de ciclo de vida"
|
|
2654
2855
|
msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
|
2655
2856
|
msgstr ""
|
2656
2857
|
|
2858
|
+
msgid "Ids of smart proxies to associate"
|
2859
|
+
msgstr ""
|
2860
|
+
|
2657
2861
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2658
2862
|
msgstr "Se a Pesquisa automática estiver habilitada, atrase-a por alguns milissegundos antes de realizar pesquisas durante a digitação."
|
2659
2863
|
|
2660
|
-
msgid "If
|
2661
|
-
msgstr "
|
2864
|
+
msgid "If SSL should be verified for the upstream URL"
|
2865
|
+
msgstr ""
|
2866
|
+
|
2867
|
+
msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
|
2868
|
+
msgstr ""
|
2662
2869
|
|
2663
2870
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2664
2871
|
msgstr "Se especificado, remova a primeira instância de uma subscrição com quantidade e id correspondentes "
|
2665
2872
|
|
2666
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2873
|
+
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."
|
2667
2874
|
msgstr ""
|
2668
2875
|
|
2669
2876
|
msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
|
@@ -2672,6 +2879,9 @@ msgstr ""
|
|
2672
2879
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2673
2880
|
msgstr ""
|
2674
2881
|
|
2882
|
+
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
|
+
msgstr ""
|
2884
|
+
|
2675
2885
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2676
2886
|
msgstr "Se for verdadeiro, retornará apenas conjuntos de repositórios associados a uma subscrição ativa"
|
2677
2887
|
|
@@ -2687,6 +2897,9 @@ msgstr "Se verdadeiro, ao adicionar a errata ou pacotes especificados, qualquer
|
|
2687
2897
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2688
2898
|
msgstr "Se verdadeiro, será publicada uma nova coleção de versão utilizando qualquer content_view_version_id especificado que já tenha sido promovido para um ambiente de ciclo de vida"
|
2689
2899
|
|
2900
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2901
|
+
msgstr ""
|
2902
|
+
|
2690
2903
|
msgid "Ignorable content can be only set for Yum repositories."
|
2691
2904
|
msgstr "O conteúdo ignorável só pode ser definido para repositórios Yum."
|
2692
2905
|
|
@@ -2723,6 +2936,9 @@ msgstr "Importar novo manifesto"
|
|
2723
2936
|
msgid "Import Puppet classes"
|
2724
2937
|
msgstr "Importar classes de Puppet"
|
2725
2938
|
|
2939
|
+
msgid "Import Repository"
|
2940
|
+
msgstr ""
|
2941
|
+
|
2726
2942
|
msgid "Import Types"
|
2727
2943
|
msgstr ""
|
2728
2944
|
|
@@ -2744,12 +2960,18 @@ msgstr "Importar uma versão de visualização de conteúdo"
|
|
2744
2960
|
msgid "Import a content view version to the library"
|
2745
2961
|
msgstr ""
|
2746
2962
|
|
2963
|
+
msgid "Import a repository"
|
2964
|
+
msgstr ""
|
2965
|
+
|
2747
2966
|
msgid "Import facts"
|
2748
2967
|
msgstr "Importar fatos"
|
2749
2968
|
|
2750
2969
|
msgid "Import only"
|
2751
2970
|
msgstr ""
|
2752
2971
|
|
2972
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2973
|
+
msgstr ""
|
2974
|
+
|
2753
2975
|
msgid "Import uploads into a repository"
|
2754
2976
|
msgstr "Importar carregamentos para um repositório"
|
2755
2977
|
|
@@ -2759,9 +2981,12 @@ msgstr ""
|
|
2759
2981
|
msgid "Import-only content views can not be published directly"
|
2760
2982
|
msgstr ""
|
2761
2983
|
|
2762
|
-
msgid "
|
2984
|
+
msgid "Import/Export"
|
2763
2985
|
msgstr ""
|
2764
2986
|
|
2987
|
+
msgid "Important"
|
2988
|
+
msgstr "Importante"
|
2989
|
+
|
2765
2990
|
msgid "Importing manifest into '%{subject}' failed."
|
2766
2991
|
msgstr "Falha ao importar manifesto para '%{subject}'."
|
2767
2992
|
|
@@ -2778,6 +3003,9 @@ msgid "Include all Module Streams with no errata."
|
|
2778
3003
|
msgstr ""
|
2779
3004
|
|
2780
3005
|
msgid "Include all RPMs with no errata."
|
3006
|
+
msgstr "Incluir todos os RPMs sem errata."
|
3007
|
+
|
3008
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2781
3009
|
msgstr ""
|
2782
3010
|
|
2783
3011
|
msgid "Include filter"
|
@@ -2811,7 +3039,7 @@ msgid "Incremental Update of %{content_view_count} Content View Version(s) "
|
|
2811
3039
|
msgstr "Atualização incremental de %{content_view_count} versão(ões) da Visualização de conteúdo "
|
2812
3040
|
|
2813
3041
|
msgid "Incremental update"
|
2814
|
-
msgstr ""
|
3042
|
+
msgstr "Atualização incremental"
|
2815
3043
|
|
2816
3044
|
msgid "Incremental update requires at least one content unit"
|
2817
3045
|
msgstr "A atualização incremental requer pelo menos uma unidade de conteúdo"
|
@@ -2840,6 +3068,9 @@ msgstr "Herdar de repositório"
|
|
2840
3068
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2841
3069
|
msgstr "Iniciar sincronização dos produtos anexados ao plano de sincronização "
|
2842
3070
|
|
3071
|
+
msgid "Install"
|
3072
|
+
msgstr ""
|
3073
|
+
|
2843
3074
|
msgid "Install Applicable Errata"
|
2844
3075
|
msgstr "Instalar Errata Aplicável"
|
2845
3076
|
|
@@ -2849,6 +3080,9 @@ msgstr "Instalar errata aplicável em %s"
|
|
2849
3080
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2850
3081
|
msgstr ""
|
2851
3082
|
|
3083
|
+
msgid "Install errata using scoped search query"
|
3084
|
+
msgstr ""
|
3085
|
+
|
2852
3086
|
msgid "Install errata via Katello interface"
|
2853
3087
|
msgstr "Instalar erratas via interface do Katello"
|
2854
3088
|
|
@@ -2873,19 +3107,31 @@ msgstr "Instalar grupo de pacotes via interface do Katello"
|
|
2873
3107
|
msgid "Install package via Katello interface"
|
2874
3108
|
msgstr "Instalar pacote via interface do Katello"
|
2875
3109
|
|
3110
|
+
msgid "Install packages"
|
3111
|
+
msgstr ""
|
3112
|
+
|
2876
3113
|
msgid "Install packages remotely using katello-agent. %s"
|
2877
3114
|
msgstr ""
|
2878
3115
|
|
2879
|
-
msgid "
|
3116
|
+
msgid "Install packages via Katello interface"
|
3117
|
+
msgstr ""
|
3118
|
+
|
3119
|
+
msgid "Install via customized remote execution"
|
3120
|
+
msgstr ""
|
3121
|
+
|
3122
|
+
msgid "Install via katello-agent"
|
2880
3123
|
msgstr ""
|
2881
3124
|
|
2882
|
-
msgid "
|
3125
|
+
msgid "Install via remote execution"
|
2883
3126
|
msgstr ""
|
2884
3127
|
|
2885
|
-
msgid "Installable
|
2886
|
-
msgstr "
|
3128
|
+
msgid "Installable"
|
3129
|
+
msgstr "Instalável"
|
3130
|
+
|
3131
|
+
msgid "Installable errata"
|
3132
|
+
msgstr ""
|
2887
3133
|
|
2888
|
-
msgid "Installable errata
|
3134
|
+
msgid "Installable errata from content view"
|
2889
3135
|
msgstr ""
|
2890
3136
|
|
2891
3137
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2897,10 +3143,22 @@ msgstr "Instalação de grupo(s) de pacotes solicitada: %{groups}"
|
|
2897
3143
|
msgid "Installation of package(s) requested: %{packages}"
|
2898
3144
|
msgstr "Instalação de pacote(s) solicitada: %{packages}"
|
2899
3145
|
|
3146
|
+
msgid "Installation status"
|
3147
|
+
msgstr ""
|
3148
|
+
|
2900
3149
|
msgid "Installed Packages"
|
2901
3150
|
msgstr "Pacotes instalados"
|
2902
3151
|
|
2903
|
-
msgid "Installed
|
3152
|
+
msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
|
3153
|
+
msgstr ""
|
3154
|
+
|
3155
|
+
msgid "Installed products"
|
3156
|
+
msgstr ""
|
3157
|
+
|
3158
|
+
msgid "Installed profile"
|
3159
|
+
msgstr ""
|
3160
|
+
|
3161
|
+
msgid "Installed version"
|
2904
3162
|
msgstr ""
|
2905
3163
|
|
2906
3164
|
msgid "Installing Erratum..."
|
@@ -2981,6 +3239,9 @@ msgstr "Parâmetros fornecidos inválidos - content_type deve ser dos %s"
|
|
2981
3239
|
msgid "Invalid params provided - date_type must be one of %s"
|
2982
3240
|
msgstr "Parâmetros fornecidos inválidos - date_type deve ser dos %s"
|
2983
3241
|
|
3242
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3243
|
+
msgstr ""
|
3244
|
+
|
2984
3245
|
msgid "Invalid value specified for Container Image repositories."
|
2985
3246
|
msgstr "Valor inválido especificado para os repositórios de Imagens de contêiner."
|
2986
3247
|
|
@@ -2991,6 +3252,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
|
|
2991
3252
|
msgstr "Valor inválido especificado para conteúdo ignorável. Valores admissíveis %s"
|
2992
3253
|
|
2993
3254
|
msgid "Issued"
|
3255
|
+
msgstr "Emitido"
|
3256
|
+
|
3257
|
+
msgid "Issued from"
|
3258
|
+
msgstr ""
|
3259
|
+
|
3260
|
+
msgid "Job ${description} has started."
|
2994
3261
|
msgstr ""
|
2995
3262
|
|
2996
3263
|
msgid "Katello ID of local pool to update"
|
@@ -3005,6 +3272,12 @@ msgstr "Katello: instalar pacote"
|
|
3005
3272
|
msgid "Katello: Install Package Group"
|
3006
3273
|
msgstr "Katello: instalar grupo de pacotes"
|
3007
3274
|
|
3275
|
+
msgid "Katello: Install errata by search query"
|
3276
|
+
msgstr ""
|
3277
|
+
|
3278
|
+
msgid "Katello: Install packages by search query"
|
3279
|
+
msgstr ""
|
3280
|
+
|
3008
3281
|
msgid "Katello: Module Stream Actions"
|
3009
3282
|
msgstr "Katello: ações do fluxo de módulo"
|
3010
3283
|
|
@@ -3014,6 +3287,9 @@ msgstr "Katello: remover pacote"
|
|
3014
3287
|
msgid "Katello: Remove Package Group"
|
3015
3288
|
msgstr "Katello: remover grupo de pacotes"
|
3016
3289
|
|
3290
|
+
msgid "Katello: Remove Packages by search query"
|
3291
|
+
msgstr ""
|
3292
|
+
|
3017
3293
|
msgid "Katello: Resolve Traces"
|
3018
3294
|
msgstr ""
|
3019
3295
|
|
@@ -3026,6 +3302,9 @@ msgstr "Katello: atualizar pacote"
|
|
3026
3302
|
msgid "Katello: Update Package Group"
|
3027
3303
|
msgstr "Katello: atualizar grupo de pacotes"
|
3028
3304
|
|
3305
|
+
msgid "Katello: Update Packages by search query"
|
3306
|
+
msgstr ""
|
3307
|
+
|
3029
3308
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3030
3309
|
msgstr "Hash de chave-valor de fatos subscription-manager, o aninhamento utiliza um período (.) como delimitador"
|
3031
3310
|
|
@@ -3047,6 +3326,9 @@ msgstr "Rótulo"
|
|
3047
3326
|
msgid "Label of the content"
|
3048
3327
|
msgstr "Rótulo do conteúdo"
|
3049
3328
|
|
3329
|
+
msgid "Label of the content view"
|
3330
|
+
msgstr ""
|
3331
|
+
|
3050
3332
|
msgid "Last published"
|
3051
3333
|
msgstr "Última publicação"
|
3052
3334
|
|
@@ -3065,13 +3347,10 @@ msgstr ""
|
|
3065
3347
|
msgid "Learn more about adding Subscription Manifests"
|
3066
3348
|
msgstr "Saiba mais sobre como adicionar Manifestos de subscrição"
|
3067
3349
|
|
3068
|
-
msgid "
|
3069
|
-
msgstr ""
|
3070
|
-
|
3071
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3350
|
+
msgid "Less than"
|
3072
3351
|
msgstr ""
|
3073
3352
|
|
3074
|
-
msgid "
|
3353
|
+
msgid "Library"
|
3075
3354
|
msgstr ""
|
3076
3355
|
|
3077
3356
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3116,9 +3395,15 @@ msgstr ""
|
|
3116
3395
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3117
3396
|
msgstr "O ambiente de ciclo de vida não foi anexado ao proxy inteligente; portanto, nenhuma alteração foi feita."
|
3118
3397
|
|
3398
|
+
msgid "Lifecycle environment: {lce}"
|
3399
|
+
msgstr ""
|
3400
|
+
|
3119
3401
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3120
3402
|
msgstr "Os ambientes de ciclo de vida não podem ser modificados no proxy inteligente padrão. O conteúdo de todos os ambientes de ciclo de vida existirá neste proxy inteligente."
|
3121
3403
|
|
3404
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3405
|
+
msgstr ""
|
3406
|
+
|
3122
3407
|
msgid "Limit content to just that available in the activation key's content view version"
|
3123
3408
|
msgstr "Limitar o conteúdo apenas ao disponível na versão de visualização de conteúdo da chave de ativação"
|
3124
3409
|
|
@@ -3129,7 +3414,7 @@ msgid "Limit content to just that available in the host's or activation key's co
|
|
3129
3414
|
msgstr ""
|
3130
3415
|
|
3131
3416
|
msgid "Limit to environment"
|
3132
|
-
msgstr ""
|
3417
|
+
msgstr "Limitar para ambiente"
|
3133
3418
|
|
3134
3419
|
msgid "Limits"
|
3135
3420
|
msgstr "Limites"
|
@@ -3227,6 +3512,9 @@ msgstr ""
|
|
3227
3512
|
msgid "List of Products for sync plan"
|
3228
3513
|
msgstr "Lista de produtos para plano de sincronização"
|
3229
3514
|
|
3515
|
+
msgid "List of alternate_content_sources"
|
3516
|
+
msgstr ""
|
3517
|
+
|
3230
3518
|
msgid "List of component content view version ids for composite views"
|
3231
3519
|
msgstr "Lista de ids de versão de visualização de conteúdo de componente para coleções de visualização"
|
3232
3520
|
|
@@ -3323,6 +3611,12 @@ msgstr "Lista de produtos de subscrição em uma subscrição "
|
|
3323
3611
|
msgid "List of subscription products in an activation key"
|
3324
3612
|
msgstr "Lista de produtos de subscriçãpo em uma chave de ativação"
|
3325
3613
|
|
3614
|
+
msgid "List of versions to exclude and not run an action on"
|
3615
|
+
msgstr ""
|
3616
|
+
|
3617
|
+
msgid "List of versions to perform an action on"
|
3618
|
+
msgstr ""
|
3619
|
+
|
3326
3620
|
msgid "List organization subscriptions"
|
3327
3621
|
msgstr "Listar subscrições de organização"
|
3328
3622
|
|
@@ -3368,6 +3662,12 @@ msgstr "Carregando"
|
|
3368
3662
|
msgid "Loading versions"
|
3369
3663
|
msgstr ""
|
3370
3664
|
|
3665
|
+
msgid "Loading..."
|
3666
|
+
msgstr ""
|
3667
|
+
|
3668
|
+
msgid "Low"
|
3669
|
+
msgstr ""
|
3670
|
+
|
3371
3671
|
msgid "Make copy of a content view"
|
3372
3672
|
msgstr "Fazer uma cópia de uma visualização de conteúdo"
|
3373
3673
|
|
@@ -3425,6 +3725,9 @@ msgstr "Máximo %(maxQuantity)s"
|
|
3425
3725
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3426
3726
|
msgstr "Máximo de hosts (%{limit}) alcançado para chave de ativação '%{name}'"
|
3427
3727
|
|
3728
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3729
|
+
msgstr ""
|
3730
|
+
|
3428
3731
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3429
3732
|
msgstr "O número máximo de hosts de conteúdo ultrapassado para a coleção do (s) host:%s "
|
3430
3733
|
|
@@ -3471,7 +3774,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
|
|
3471
3774
|
msgstr "Argumentos ausentes %{substitutions} para %{content_url}"
|
3472
3775
|
|
3473
3776
|
msgid "Moderate"
|
3474
|
-
msgstr ""
|
3777
|
+
msgstr "Moderada"
|
3475
3778
|
|
3476
3779
|
msgid "Modular"
|
3477
3780
|
msgstr ""
|
@@ -3491,6 +3794,9 @@ msgstr ""
|
|
3491
3794
|
msgid "Module streams"
|
3492
3795
|
msgstr ""
|
3493
3796
|
|
3797
|
+
msgid "Module streams will appear here when available."
|
3798
|
+
msgstr ""
|
3799
|
+
|
3494
3800
|
msgid "Multi-entitlement"
|
3495
3801
|
msgstr "Direitos múltiplos"
|
3496
3802
|
|
@@ -3516,15 +3822,24 @@ msgid ""
|
|
3516
3822
|
" %{repos}"
|
3517
3823
|
msgstr ""
|
3518
3824
|
|
3825
|
+
msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
|
3826
|
+
msgstr ""
|
3827
|
+
|
3519
3828
|
msgid "Name"
|
3520
3829
|
msgstr "Nome"
|
3521
3830
|
|
3831
|
+
msgid "Name is a required parameter."
|
3832
|
+
msgstr ""
|
3833
|
+
|
3522
3834
|
msgid "Name of new activation key"
|
3523
3835
|
msgstr "Nome da nova chave de ativação"
|
3524
3836
|
|
3525
3837
|
msgid "Name of the Content Credential"
|
3526
3838
|
msgstr ""
|
3527
3839
|
|
3840
|
+
msgid "Name of the alternate content source"
|
3841
|
+
msgstr ""
|
3842
|
+
|
3528
3843
|
msgid "Name of the content view"
|
3529
3844
|
msgstr "Nome da visualização de conteúdo "
|
3530
3845
|
|
@@ -3546,6 +3861,9 @@ msgstr "Precisa ser definido apenas para repositórios de arquivos ou tags do do
|
|
3546
3861
|
msgid "Nest"
|
3547
3862
|
msgstr "Aninhar"
|
3548
3863
|
|
3864
|
+
msgid "Network Sync"
|
3865
|
+
msgstr ""
|
3866
|
+
|
3549
3867
|
msgid "Never Synced"
|
3550
3868
|
msgstr "Nunca Sincronizado"
|
3551
3869
|
|
@@ -3612,12 +3930,21 @@ msgstr "Nenhuma URL encontrada para um registro de contêiner. Verifique a confi
|
|
3612
3930
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3613
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}"
|
3614
3932
|
|
3933
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3934
|
+
msgstr ""
|
3935
|
+
|
3936
|
+
msgid "No action required"
|
3937
|
+
msgstr ""
|
3938
|
+
|
3615
3939
|
msgid "No applicable errata"
|
3616
3940
|
msgstr ""
|
3617
3941
|
|
3618
3942
|
msgid "No applicable errata for %s, skipping"
|
3619
3943
|
msgstr "Nenhuma errata aplicável para %s, ignorando"
|
3620
3944
|
|
3945
|
+
msgid "No applications to restart"
|
3946
|
+
msgstr ""
|
3947
|
+
|
3621
3948
|
msgid "No artifacts to show"
|
3622
3949
|
msgstr "Nenhum artefato para exibir"
|
3623
3950
|
|
@@ -3639,6 +3966,9 @@ msgstr "Nenhum evento de histórico de visualização de conteúdo foi encontrad
|
|
3639
3966
|
msgid "No content views available"
|
3640
3967
|
msgstr ""
|
3641
3968
|
|
3969
|
+
msgid "No content views available for the selected environment"
|
3970
|
+
msgstr ""
|
3971
|
+
|
3642
3972
|
msgid "No content views belong to ${label}"
|
3643
3973
|
msgstr ""
|
3644
3974
|
|
@@ -3648,6 +3978,9 @@ msgstr "Nenhum content_view_version_ids fornecido"
|
|
3648
3978
|
msgid "No description"
|
3649
3979
|
msgstr ""
|
3650
3980
|
|
3981
|
+
msgid "No description provided"
|
3982
|
+
msgstr ""
|
3983
|
+
|
3651
3984
|
msgid "No enabled repositories match your search criteria."
|
3652
3985
|
msgstr "Nenhum repositório habilitado corresponde aos critérios de pesquisa."
|
3653
3986
|
|
@@ -3672,6 +4005,9 @@ msgstr ""
|
|
3672
4005
|
msgid "No file uploaded"
|
3673
4006
|
msgstr "Nenhum arquivo carregado"
|
3674
4007
|
|
4008
|
+
msgid "No host collections"
|
4009
|
+
msgstr ""
|
4010
|
+
|
3675
4011
|
msgid "No host collections found."
|
3676
4012
|
msgstr "Nenhuma coleção de host foi encontrada"
|
3677
4013
|
|
@@ -3681,6 +4017,9 @@ msgstr "Não foram especificados hosts."
|
|
3681
4017
|
msgid "No hosts registered with subscription-manager found in selection."
|
3682
4018
|
msgstr "Nenhum host registrado com o subscription-manager encontrado na seleção."
|
3683
4019
|
|
4020
|
+
msgid "No hosts with content source found!"
|
4021
|
+
msgstr ""
|
4022
|
+
|
3684
4023
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3685
4024
|
msgstr ""
|
3686
4025
|
|
@@ -3705,6 +4044,9 @@ msgstr ""
|
|
3705
4044
|
msgid "No matching activation keys found."
|
3706
4045
|
msgstr ""
|
3707
4046
|
|
4047
|
+
msgid "No matching alternate content sources found"
|
4048
|
+
msgstr ""
|
4049
|
+
|
3708
4050
|
msgid "No matching content views found"
|
3709
4051
|
msgstr "Nenhuma visualização de conteúdo correspondente encontrada"
|
3710
4052
|
|
@@ -3720,6 +4062,9 @@ msgstr ""
|
|
3720
4062
|
msgid "No matching history record found"
|
3721
4063
|
msgstr ""
|
3722
4064
|
|
4065
|
+
msgid "No matching host collections found"
|
4066
|
+
msgstr ""
|
4067
|
+
|
3723
4068
|
msgid "No matching hosts found."
|
3724
4069
|
msgstr ""
|
3725
4070
|
|
@@ -3750,6 +4095,12 @@ msgstr "Nenhum Pacote novo"
|
|
3750
4095
|
msgid "No packages"
|
3751
4096
|
msgstr ""
|
3752
4097
|
|
4098
|
+
msgid "No packages available to install"
|
4099
|
+
msgstr ""
|
4100
|
+
|
4101
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4102
|
+
msgstr ""
|
4103
|
+
|
3753
4104
|
msgid "No packages removed"
|
3754
4105
|
msgstr "Nenhum pacote removido"
|
3755
4106
|
|
@@ -3771,9 +4122,6 @@ msgstr "Nenhum processo precisa ser reiniciado"
|
|
3771
4122
|
msgid "No products are enabled."
|
3772
4123
|
msgstr "Nenhum produto está habilitado."
|
3773
4124
|
|
3774
|
-
msgid "No profiles to show"
|
3775
|
-
msgstr "Nenhum perfil para exibir"
|
3776
|
-
|
3777
4125
|
msgid "No pulp workers running."
|
3778
4126
|
msgstr "Nenhum trabalhador do pulp em execução. "
|
3779
4127
|
|
@@ -3840,9 +4188,6 @@ msgstr "Nenhum"
|
|
3840
4188
|
msgid "None provided"
|
3841
4189
|
msgstr "Nenhum fornecido"
|
3842
4190
|
|
3843
|
-
msgid "Not Specified"
|
3844
|
-
msgstr "Não especificado"
|
3845
|
-
|
3846
4191
|
msgid "Not a number"
|
3847
4192
|
msgstr "Não é um número"
|
3848
4193
|
|
@@ -3855,11 +4200,14 @@ msgstr "Nem todos os trabalhadores do pulp necessários estão em execução em
|
|
3855
4200
|
msgid "Not running"
|
3856
4201
|
msgstr "Não está em execução"
|
3857
4202
|
|
4203
|
+
msgid "Not specified"
|
4204
|
+
msgstr ""
|
4205
|
+
|
3858
4206
|
msgid "Not yet published"
|
3859
4207
|
msgstr "Não publicado ainda"
|
3860
4208
|
|
3861
4209
|
msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
|
3862
|
-
msgstr ""
|
4210
|
+
msgstr "Observação: excluir o manifesto de assinatura é FORTEMENTE desencorajado. Excluir um manifesto:"
|
3863
4211
|
|
3864
4212
|
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."
|
3865
4213
|
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."
|
@@ -3954,9 +4302,6 @@ msgstr "É necessária a ID da organização"
|
|
3954
4302
|
msgid "Organization Information not provided."
|
3955
4303
|
msgstr ""
|
3956
4304
|
|
3957
|
-
msgid "Organization Label"
|
3958
|
-
msgstr ""
|
3959
|
-
|
3960
4305
|
msgid "Organization cannot be blank."
|
3961
4306
|
msgstr "Organização não pode estar em branco"
|
3962
4307
|
|
@@ -3985,7 +4330,7 @@ msgid "Other Content Types"
|
|
3985
4330
|
msgstr ""
|
3986
4331
|
|
3987
4332
|
msgid "Overridden"
|
3988
|
-
msgstr ""
|
4333
|
+
msgstr "Substituído"
|
3989
4334
|
|
3990
4335
|
msgid "Override content for activation_key"
|
3991
4336
|
msgstr "Sobrescrever conteúdo para chave_ativação"
|
@@ -4161,9 +4506,6 @@ msgstr ""
|
|
4161
4506
|
msgid "Packages"
|
4162
4507
|
msgstr "Pacotes"
|
4163
4508
|
|
4164
|
-
msgid "Packages management functionality on this page is incomplete"
|
4165
|
-
msgstr ""
|
4166
|
-
|
4167
4509
|
msgid "Packages must be provided"
|
4168
4510
|
msgstr "Pacotes deve ser fornecidos"
|
4169
4511
|
|
@@ -4183,9 +4525,9 @@ msgid "Partition template IDs"
|
|
4183
4525
|
msgstr "IDs do modelo de partição "
|
4184
4526
|
|
4185
4527
|
msgid "Password"
|
4186
|
-
msgstr ""
|
4528
|
+
msgstr "Senha"
|
4187
4529
|
|
4188
|
-
msgid "Password for authentication"
|
4530
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4189
4531
|
msgstr ""
|
4190
4532
|
|
4191
4533
|
msgid "Password of the upstream authentication token."
|
@@ -4198,7 +4540,7 @@ msgid "Password to access URL"
|
|
4198
4540
|
msgstr "Senha para acessar a URL"
|
4199
4541
|
|
4200
4542
|
msgid "Path"
|
4201
|
-
msgstr ""
|
4543
|
+
msgstr "Caminho"
|
4202
4544
|
|
4203
4545
|
msgid "Path for ssl cert used for pulp server auth"
|
4204
4546
|
msgstr "Caminho do certificado ssl utilizado para a autenticação de servidor de pulp"
|
@@ -4206,6 +4548,9 @@ msgstr "Caminho do certificado ssl utilizado para a autenticação de servidor d
|
|
4206
4548
|
msgid "Path for ssl key used for pulp server auth"
|
4207
4549
|
msgstr "Caminho da chave ssl utilizada para o servidor de autenticação de pulp"
|
4208
4550
|
|
4551
|
+
msgid "Path suffixes for finding alternate content"
|
4552
|
+
msgstr ""
|
4553
|
+
|
4209
4554
|
msgid "Paused"
|
4210
4555
|
msgstr "Pausado"
|
4211
4556
|
|
@@ -4224,6 +4569,12 @@ msgstr ""
|
|
4224
4569
|
msgid "Performs a full-export of the repositories in library."
|
4225
4570
|
msgstr ""
|
4226
4571
|
|
4572
|
+
msgid "Performs a full-export of the repository in library."
|
4573
|
+
msgstr ""
|
4574
|
+
|
4575
|
+
msgid "Performs a incremental-export of the repository in library."
|
4576
|
+
msgstr ""
|
4577
|
+
|
4227
4578
|
msgid "Performs an incremental-export of a content view version."
|
4228
4579
|
msgstr ""
|
4229
4580
|
|
@@ -4257,6 +4608,12 @@ msgstr "Limite o número a 10 dígitos"
|
|
4257
4608
|
msgid "Please select a content source before assigning a kickstart repository"
|
4258
4609
|
msgstr "Selecione uma fonte de conteúdo antes de atribuir um repositório kickstart"
|
4259
4610
|
|
4611
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4612
|
+
msgstr ""
|
4613
|
+
|
4614
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4615
|
+
msgstr ""
|
4616
|
+
|
4260
4617
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4261
4618
|
msgstr "Selecione uma arquitetura antes de atribuir um repositório kickstart"
|
4262
4619
|
|
@@ -4278,9 +4635,39 @@ msgstr ""
|
|
4278
4635
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4279
4636
|
msgstr ""
|
4280
4637
|
|
4638
|
+
msgid "Prefer registered through proxy for remote execution"
|
4639
|
+
msgstr ""
|
4640
|
+
|
4641
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4642
|
+
msgstr ""
|
4643
|
+
|
4644
|
+
msgid "Prevent from further updates"
|
4645
|
+
msgstr ""
|
4646
|
+
|
4281
4647
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4282
4648
|
msgstr ""
|
4283
4649
|
|
4650
|
+
msgid "Problem searching"
|
4651
|
+
msgstr ""
|
4652
|
+
|
4653
|
+
msgid "Problem searching errata"
|
4654
|
+
msgstr ""
|
4655
|
+
|
4656
|
+
msgid "Problem searching host collections"
|
4657
|
+
msgstr ""
|
4658
|
+
|
4659
|
+
msgid "Problem searching module streams"
|
4660
|
+
msgstr ""
|
4661
|
+
|
4662
|
+
msgid "Problem searching packages"
|
4663
|
+
msgstr ""
|
4664
|
+
|
4665
|
+
msgid "Problem searching repository sets"
|
4666
|
+
msgstr ""
|
4667
|
+
|
4668
|
+
msgid "Problem searching traces"
|
4669
|
+
msgstr ""
|
4670
|
+
|
4284
4671
|
msgid "Processing metadata"
|
4285
4672
|
msgstr "Processando metadados"
|
4286
4673
|
|
@@ -4300,7 +4687,7 @@ msgid "Product ID"
|
|
4300
4687
|
msgstr "ID de produto"
|
4301
4688
|
|
4302
4689
|
msgid "Product Name"
|
4303
|
-
msgstr ""
|
4690
|
+
msgstr "Nome do Produto"
|
4304
4691
|
|
4305
4692
|
msgid "Product and Repositories"
|
4306
4693
|
msgstr "Produto e Repositórios"
|
@@ -4339,9 +4726,6 @@ msgstr ""
|
|
4339
4726
|
msgid "Products"
|
4340
4727
|
msgstr "Produtos"
|
4341
4728
|
|
4342
|
-
msgid "Profiles"
|
4343
|
-
msgstr "Perfis"
|
4344
|
-
|
4345
4729
|
msgid "Promote"
|
4346
4730
|
msgstr "Promover"
|
4347
4731
|
|
@@ -4369,6 +4753,9 @@ msgstr "Resumo da promoção para %{content_view}"
|
|
4369
4753
|
msgid "Promotion to Environment"
|
4370
4754
|
msgstr "Promoção a ambiente"
|
4371
4755
|
|
4756
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4757
|
+
msgstr ""
|
4758
|
+
|
4372
4759
|
msgid "Provided Products"
|
4373
4760
|
msgstr "Produtos fornecidos"
|
4374
4761
|
|
@@ -4382,7 +4769,7 @@ msgid "Proxies"
|
|
4382
4769
|
msgstr "Proxies"
|
4383
4770
|
|
4384
4771
|
msgid "Public"
|
4385
|
-
msgstr ""
|
4772
|
+
msgstr "Público"
|
4386
4773
|
|
4387
4774
|
msgid "Public key block in DER encoding or certificate content"
|
4388
4775
|
msgstr ""
|
@@ -4531,18 +4918,27 @@ msgstr ""
|
|
4531
4918
|
msgid "RPM name"
|
4532
4919
|
msgstr ""
|
4533
4920
|
|
4921
|
+
msgid "RPM packages"
|
4922
|
+
msgstr ""
|
4923
|
+
|
4534
4924
|
msgid "RPMs"
|
4535
4925
|
msgstr "RPMs"
|
4536
4926
|
|
4537
4927
|
msgid "Range"
|
4538
|
-
msgstr ""
|
4928
|
+
msgstr "Classe"
|
4539
4929
|
|
4540
4930
|
msgid "Realm IDs"
|
4541
4931
|
msgstr "IDs de Realm"
|
4542
4932
|
|
4933
|
+
msgid "Reassign affected activation key"
|
4934
|
+
msgstr ""
|
4935
|
+
|
4543
4936
|
msgid "Reassign affected activation keys"
|
4544
4937
|
msgstr ""
|
4545
4938
|
|
4939
|
+
msgid "Reassign affected host"
|
4940
|
+
msgstr ""
|
4941
|
+
|
4546
4942
|
msgid "Reassign affected hosts"
|
4547
4943
|
msgstr ""
|
4548
4944
|
|
@@ -4570,6 +4966,9 @@ msgstr ""
|
|
4570
4966
|
msgid "Recommended Repositories"
|
4571
4967
|
msgstr "Repositórios recomendados"
|
4572
4968
|
|
4969
|
+
msgid "Red Hat CDN"
|
4970
|
+
msgstr ""
|
4971
|
+
|
4573
4972
|
msgid "Red Hat CDN URL"
|
4574
4973
|
msgstr "Red Hat CDN URL"
|
4575
4974
|
|
@@ -4577,6 +4976,15 @@ msgid "Red Hat Repositories"
|
|
4577
4976
|
msgstr "Repositórios da Red Hat"
|
4578
4977
|
|
4579
4978
|
msgid "Red Hat Repositories page"
|
4979
|
+
msgstr "Página de Repositórios da Red Hat"
|
4980
|
+
|
4981
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4982
|
+
msgstr ""
|
4983
|
+
|
4984
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4985
|
+
msgstr ""
|
4986
|
+
|
4987
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4580
4988
|
msgstr ""
|
4581
4989
|
|
4582
4990
|
msgid "Red Hat products cannot be manipulated."
|
@@ -4609,6 +5017,18 @@ msgstr "Registrar um host com subscrição e informações"
|
|
4609
5017
|
msgid "Register host '%s' before attaching subscriptions"
|
4610
5018
|
msgstr "Registrar host '%s' antes de vincular as subscrições"
|
4611
5019
|
|
5020
|
+
msgid "Registered by"
|
5021
|
+
msgstr ""
|
5022
|
+
|
5023
|
+
msgid "Registered on"
|
5024
|
+
msgstr ""
|
5025
|
+
|
5026
|
+
msgid "Registered through"
|
5027
|
+
msgstr ""
|
5028
|
+
|
5029
|
+
msgid "Registration details"
|
5030
|
+
msgstr ""
|
5031
|
+
|
4612
5032
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4613
5033
|
msgstr "O padrão de nomes de registro resulta em nomes de imagens de contêineres duplicados para estes repositórios: %s."
|
4614
5034
|
|
@@ -4637,7 +5057,7 @@ msgid "Related content views will appear here when created."
|
|
4637
5057
|
msgstr ""
|
4638
5058
|
|
4639
5059
|
msgid "Release"
|
4640
|
-
msgstr ""
|
5060
|
+
msgstr "Lançamento"
|
4641
5061
|
|
4642
5062
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
4643
5063
|
msgstr "Versão de lançamento para este host utilizar (7Server, 7.1, etc)"
|
@@ -4699,12 +5119,21 @@ msgstr ""
|
|
4699
5119
|
msgid "Remove from environments"
|
4700
5120
|
msgstr ""
|
4701
5121
|
|
5122
|
+
msgid "Remove host from collections"
|
5123
|
+
msgstr ""
|
5124
|
+
|
5125
|
+
msgid "Remove host from host collections"
|
5126
|
+
msgstr ""
|
5127
|
+
|
4702
5128
|
msgid "Remove hosts from the host collection"
|
4703
5129
|
msgstr "Remover hosts da coleção de hosts"
|
4704
5130
|
|
4705
5131
|
msgid "Remove lifecycle environments from the smart proxy"
|
4706
5132
|
msgstr "Remover ambientes de ciclo de vida do proxy inteligente"
|
4707
5133
|
|
5134
|
+
msgid "Remove module stream"
|
5135
|
+
msgstr ""
|
5136
|
+
|
4708
5137
|
msgid "Remove one or more host collections from one or more hosts"
|
4709
5138
|
msgstr "Remover uma ou mais coleções de um ou mais hosts"
|
4710
5139
|
|
@@ -4726,6 +5155,9 @@ msgstr "Remover grupo de pacotes via interface do Katello"
|
|
4726
5155
|
msgid "Remove package via Katello interface"
|
4727
5156
|
msgstr "Remover pacote via interface do Katello"
|
4728
5157
|
|
5158
|
+
msgid "Remove packages via Katello interface"
|
5159
|
+
msgstr ""
|
5160
|
+
|
4729
5161
|
msgid "Remove products from sync plan"
|
4730
5162
|
msgstr "Remover produtos do plano de Sincronização"
|
4731
5163
|
|
@@ -4765,6 +5197,9 @@ msgstr "Tipo de repositório"
|
|
4765
5197
|
msgid "Repositories"
|
4766
5198
|
msgstr "Repositórios"
|
4767
5199
|
|
5200
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5201
|
+
msgstr ""
|
5202
|
+
|
4768
5203
|
msgid "Repositories from published Content Views are not allowed."
|
4769
5204
|
msgstr "Repositórios de Visualizações de Conteúdo publicadas não são permitidas."
|
4770
5205
|
|
@@ -4840,9 +5275,6 @@ msgstr ""
|
|
4840
5275
|
msgid "Repository sets will appear here when available."
|
4841
5276
|
msgstr ""
|
4842
5277
|
|
4843
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4844
|
-
msgstr ""
|
4845
|
-
|
4846
5278
|
msgid "Republish Repositories of %{name} %{version}"
|
4847
5279
|
msgstr "Republicar repositórios de %{name} %{version}"
|
4848
5280
|
|
@@ -4850,7 +5282,7 @@ msgid "Republish Version Repositories"
|
|
4850
5282
|
msgstr "Republicar repositórios da versão"
|
4851
5283
|
|
4852
5284
|
msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
|
4853
|
-
msgstr ""
|
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."
|
4854
5286
|
|
4855
5287
|
msgid "Requirements is not valid yaml."
|
4856
5288
|
msgstr ""
|
@@ -4864,10 +5296,19 @@ msgstr ""
|
|
4864
5296
|
msgid "Requires Virt-Who"
|
4865
5297
|
msgstr "Requer Virt-Who"
|
4866
5298
|
|
5299
|
+
msgid "Reset"
|
5300
|
+
msgstr ""
|
5301
|
+
|
4867
5302
|
msgid "Reset filters"
|
4868
5303
|
msgstr ""
|
4869
5304
|
|
5305
|
+
msgid "Reset module stream"
|
5306
|
+
msgstr ""
|
5307
|
+
|
4870
5308
|
msgid "Reset to default"
|
5309
|
+
msgstr "Reconfigurar como padrão"
|
5310
|
+
|
5311
|
+
msgid "Reset to the default state"
|
4871
5312
|
msgstr ""
|
4872
5313
|
|
4873
5314
|
msgid "Resolve traces"
|
@@ -4894,8 +5335,8 @@ msgstr ""
|
|
4894
5335
|
msgid "Restart via remote execution"
|
4895
5336
|
msgstr ""
|
4896
5337
|
|
4897
|
-
msgid "Restrict
|
4898
|
-
msgstr "
|
5338
|
+
msgid "Restrict composite content view promotion"
|
5339
|
+
msgstr ""
|
4899
5340
|
|
4900
5341
|
msgid "Result"
|
4901
5342
|
msgstr "Resultado"
|
@@ -4984,7 +5425,10 @@ msgstr ""
|
|
4984
5425
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4985
5426
|
msgstr ""
|
4986
5427
|
|
4987
|
-
msgid "Review
|
5428
|
+
msgid "Review affected environment"
|
5429
|
+
msgstr ""
|
5430
|
+
|
5431
|
+
msgid "Review affected environments"
|
4988
5432
|
msgstr ""
|
4989
5433
|
|
4990
5434
|
msgid "Review details"
|
@@ -5002,15 +5446,15 @@ msgstr ""
|
|
5002
5446
|
msgid "Roles"
|
5003
5447
|
msgstr "Papéis"
|
5004
5448
|
|
5005
|
-
msgid "Rpm packages"
|
5006
|
-
msgstr ""
|
5007
|
-
|
5008
5449
|
msgid "Rules to be added"
|
5009
5450
|
msgstr ""
|
5010
5451
|
|
5011
5452
|
msgid "Run Sync Plan:"
|
5012
5453
|
msgstr "Executar plano de sincronização:"
|
5013
5454
|
|
5455
|
+
msgid "Run job invocation"
|
5456
|
+
msgstr ""
|
5457
|
+
|
5014
5458
|
msgid "Running"
|
5015
5459
|
msgstr "Executando"
|
5016
5460
|
|
@@ -5036,15 +5480,21 @@ msgid "Schedule errata for installation using katello-agent. %s"
|
|
5036
5480
|
msgstr ""
|
5037
5481
|
|
5038
5482
|
msgid "Schema Version 1"
|
5039
|
-
msgstr ""
|
5483
|
+
msgstr "Versão 1 do esquema"
|
5040
5484
|
|
5041
5485
|
msgid "Schema Version 2"
|
5042
|
-
msgstr ""
|
5486
|
+
msgstr "Versão 2 do esquema"
|
5043
5487
|
|
5044
5488
|
msgid "Search"
|
5045
5489
|
msgstr "Pesquisar"
|
5046
5490
|
|
5047
5491
|
msgid "Search Query"
|
5492
|
+
msgstr "Consulta de pesquisa"
|
5493
|
+
|
5494
|
+
msgid "Search available packages"
|
5495
|
+
msgstr ""
|
5496
|
+
|
5497
|
+
msgid "Search host collections"
|
5048
5498
|
msgstr ""
|
5049
5499
|
|
5050
5500
|
msgid "Search pattern (defaults to '*')"
|
@@ -5062,6 +5512,9 @@ msgstr "Pesquisar cadeia de caracteres de host no qual deve ser realizada uma a
|
|
5062
5512
|
msgid "Search string for hosts to perform an action on"
|
5063
5513
|
msgstr "Pesquisar cadeia de caracteres de hosts nos quais deve ser realizada uma ação"
|
5064
5514
|
|
5515
|
+
msgid "Search string for versions to perform an action on"
|
5516
|
+
msgstr ""
|
5517
|
+
|
5065
5518
|
msgid "Security"
|
5066
5519
|
msgstr "Segurança"
|
5067
5520
|
|
@@ -5074,6 +5527,9 @@ msgstr "Errata sobre segurança instalável"
|
|
5074
5527
|
msgid "Select"
|
5075
5528
|
msgstr "Selecionar"
|
5076
5529
|
|
5530
|
+
msgid "Select ..."
|
5531
|
+
msgstr ""
|
5532
|
+
|
5077
5533
|
msgid "Select All"
|
5078
5534
|
msgstr "Selecionar tudo"
|
5079
5535
|
|
@@ -5092,6 +5548,12 @@ msgstr "Selecionar valor"
|
|
5092
5548
|
msgid "Select a content view"
|
5093
5549
|
msgstr ""
|
5094
5550
|
|
5551
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5552
|
+
msgstr ""
|
5553
|
+
|
5554
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5555
|
+
msgstr ""
|
5556
|
+
|
5095
5557
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5096
5558
|
msgstr ""
|
5097
5559
|
|
@@ -5107,6 +5569,12 @@ msgstr "Selecionar todas as linhas"
|
|
5107
5569
|
msgid "Select an Organization"
|
5108
5570
|
msgstr "Selecionar uma organização"
|
5109
5571
|
|
5572
|
+
msgid "Select an environment"
|
5573
|
+
msgstr ""
|
5574
|
+
|
5575
|
+
msgid "Select an environment above"
|
5576
|
+
msgstr ""
|
5577
|
+
|
5110
5578
|
msgid "Select an organization"
|
5111
5579
|
msgstr "Selecionar uma organização"
|
5112
5580
|
|
@@ -5119,6 +5587,15 @@ msgstr ""
|
|
5119
5587
|
msgid "Select content view"
|
5120
5588
|
msgstr ""
|
5121
5589
|
|
5590
|
+
msgid "Select environment"
|
5591
|
+
msgstr ""
|
5592
|
+
|
5593
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5594
|
+
msgstr ""
|
5595
|
+
|
5596
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5597
|
+
msgstr ""
|
5598
|
+
|
5122
5599
|
msgid "Select hosts to assign to %s"
|
5123
5600
|
msgstr "Selecionar hosts para associar em %s"
|
5124
5601
|
|
@@ -5131,6 +5608,9 @@ msgstr ""
|
|
5131
5608
|
msgid "Select one"
|
5132
5609
|
msgstr ""
|
5133
5610
|
|
5611
|
+
msgid "Select packages to install to the host {hostName}."
|
5612
|
+
msgstr ""
|
5613
|
+
|
5134
5614
|
msgid "Select page"
|
5135
5615
|
msgstr ""
|
5136
5616
|
|
@@ -5149,15 +5629,15 @@ msgstr ""
|
|
5149
5629
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5150
5630
|
msgstr ""
|
5151
5631
|
|
5152
|
-
msgid "Service Level"
|
5153
|
-
msgstr "Nível de serviço"
|
5154
|
-
|
5155
5632
|
msgid "Service Level %s"
|
5156
5633
|
msgstr "Nível de Serviço %s"
|
5157
5634
|
|
5158
5635
|
msgid "Service Level (SLA)"
|
5159
5636
|
msgstr "Nível de serviço (SLA)"
|
5160
5637
|
|
5638
|
+
msgid "Service level"
|
5639
|
+
msgstr ""
|
5640
|
+
|
5161
5641
|
msgid "Service level of host"
|
5162
5642
|
msgstr ""
|
5163
5643
|
|
@@ -5170,6 +5650,9 @@ msgstr "Definir substituições de conteúdo para o host"
|
|
5170
5650
|
msgid "Set content overrides to one or more hosts"
|
5171
5651
|
msgstr "Definir substituições de conteúdo para um ou mais hosts"
|
5172
5652
|
|
5653
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5654
|
+
msgstr ""
|
5655
|
+
|
5173
5656
|
msgid "Set true to remove an override and reset it to 'default'"
|
5174
5657
|
msgstr "Defina verdadeiro para remover uma substituição e redefini-la como 'padrão'"
|
5175
5658
|
|
@@ -5224,12 +5707,21 @@ msgstr "Exibir uma subscrição"
|
|
5224
5707
|
msgid "Show a sync plan"
|
5225
5708
|
msgstr "Exibir um plano de sinc"
|
5226
5709
|
|
5710
|
+
msgid "Show affected activation keys"
|
5711
|
+
msgstr ""
|
5712
|
+
|
5713
|
+
msgid "Show affected hosts"
|
5714
|
+
msgstr ""
|
5715
|
+
|
5227
5716
|
msgid "Show all"
|
5228
5717
|
msgstr ""
|
5229
5718
|
|
5230
5719
|
msgid "Show an activation key"
|
5231
5720
|
msgstr "Exibir uma chave de ativação"
|
5232
5721
|
|
5722
|
+
msgid "Show an alternate content source"
|
5723
|
+
msgstr ""
|
5724
|
+
|
5233
5725
|
msgid "Show an environment"
|
5234
5726
|
msgstr "Exibir um ambiente"
|
5235
5727
|
|
@@ -5297,7 +5789,7 @@ msgid "Sockets: %s"
|
|
5297
5789
|
msgstr "Soquetes: %s"
|
5298
5790
|
|
5299
5791
|
msgid "Solution"
|
5300
|
-
msgstr ""
|
5792
|
+
msgstr "Solução"
|
5301
5793
|
|
5302
5794
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
5303
5795
|
msgstr "Solucionar dependências de RPM por padrão na publicação de Visualização de conteúdo, o padrão é falso"
|
@@ -5305,6 +5797,9 @@ msgstr "Solucionar dependências de RPM por padrão na publicação de Visualiza
|
|
5305
5797
|
msgid "Solve dependencies"
|
5306
5798
|
msgstr "Solucionar dependências"
|
5307
5799
|
|
5800
|
+
msgid "Some hosts are ignored!"
|
5801
|
+
msgstr ""
|
5802
|
+
|
5308
5803
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5309
5804
|
msgstr "Algumas das suas entradas contêm erros. Atualize-as e salve suas alterações novamente."
|
5310
5805
|
|
@@ -5332,9 +5827,15 @@ msgstr ""
|
|
5332
5827
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5333
5828
|
msgstr ""
|
5334
5829
|
|
5830
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5831
|
+
msgstr ""
|
5832
|
+
|
5335
5833
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5336
5834
|
msgstr ""
|
5337
5835
|
|
5836
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5837
|
+
msgstr ""
|
5838
|
+
|
5338
5839
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5339
5840
|
msgstr ""
|
5340
5841
|
|
@@ -5353,10 +5854,10 @@ msgstr ""
|
|
5353
5854
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5354
5855
|
msgstr ""
|
5355
5856
|
|
5356
|
-
msgid "Something went wrong while getting
|
5857
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5357
5858
|
msgstr ""
|
5358
5859
|
|
5359
|
-
msgid "Something went wrong while getting
|
5860
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5360
5861
|
msgstr ""
|
5361
5862
|
|
5362
5863
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5368,9 +5869,15 @@ msgstr ""
|
|
5368
5869
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5369
5870
|
msgstr ""
|
5370
5871
|
|
5872
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5873
|
+
msgstr ""
|
5874
|
+
|
5371
5875
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5372
5876
|
msgstr ""
|
5373
5877
|
|
5878
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5879
|
+
msgstr ""
|
5880
|
+
|
5374
5881
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5375
5882
|
msgstr ""
|
5376
5883
|
|
@@ -5407,6 +5914,9 @@ msgstr ""
|
|
5407
5914
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5408
5915
|
msgstr ""
|
5409
5916
|
|
5917
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5918
|
+
msgstr ""
|
5919
|
+
|
5410
5920
|
msgid "Something went wrong! Please check server logs!"
|
5411
5921
|
msgstr ""
|
5412
5922
|
|
@@ -5417,7 +5927,7 @@ msgid "Source RPM"
|
|
5417
5927
|
msgstr "RPM de origem"
|
5418
5928
|
|
5419
5929
|
msgid "Source RPMs"
|
5420
|
-
msgstr ""
|
5930
|
+
msgstr "RPMs de origem"
|
5421
5931
|
|
5422
5932
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5423
5933
|
msgstr ""
|
@@ -5440,9 +5950,15 @@ msgstr "Data Inicial e Horário não podem estar em branco"
|
|
5440
5950
|
msgid "Start Time"
|
5441
5951
|
msgstr "Hora de início"
|
5442
5952
|
|
5953
|
+
msgid "Start date"
|
5954
|
+
msgstr ""
|
5955
|
+
|
5443
5956
|
msgid "Starts"
|
5444
5957
|
msgstr "Inicia"
|
5445
5958
|
|
5959
|
+
msgid "State"
|
5960
|
+
msgstr ""
|
5961
|
+
|
5446
5962
|
msgid "Status"
|
5447
5963
|
msgstr "Status"
|
5448
5964
|
|
@@ -5455,6 +5971,12 @@ msgstr "Armazenamento"
|
|
5455
5971
|
msgid "Stream"
|
5456
5972
|
msgstr "Fluxo"
|
5457
5973
|
|
5974
|
+
msgid "Streamed"
|
5975
|
+
msgstr ""
|
5976
|
+
|
5977
|
+
msgid "Streams based on the host based on the installation status"
|
5978
|
+
msgstr ""
|
5979
|
+
|
5458
5980
|
msgid "Streams based on the host based on their status"
|
5459
5981
|
msgstr "Fluxos baseados no host com base em seu status"
|
5460
5982
|
|
@@ -5497,9 +6019,15 @@ msgstr "UUID de pool de subscrição"
|
|
5497
6019
|
msgid "Subscription Status"
|
5498
6020
|
msgstr "Status de subscrição"
|
5499
6021
|
|
6022
|
+
msgid "Subscription UUID"
|
6023
|
+
msgstr ""
|
6024
|
+
|
5500
6025
|
msgid "Subscription Watch"
|
5501
6026
|
msgstr "Inspeção de subscrição"
|
5502
6027
|
|
6028
|
+
msgid "Subscription connection enabled"
|
6029
|
+
msgstr ""
|
6030
|
+
|
5503
6031
|
msgid "Subscription expiration notification"
|
5504
6032
|
msgstr "Notificação de expiração de subscrição"
|
5505
6033
|
|
@@ -5578,7 +6106,7 @@ msgstr "Tipos de conteúdo compatíveis"
|
|
5578
6106
|
msgid "Sync Canceled"
|
5579
6107
|
msgstr "Sincronização cancelada"
|
5580
6108
|
|
5581
|
-
msgid "Sync
|
6109
|
+
msgid "Sync Connect Timeout"
|
5582
6110
|
msgstr ""
|
5583
6111
|
|
5584
6112
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5602,8 +6130,14 @@ msgstr "Planos de Sincronização"
|
|
5602
6130
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5603
6131
|
msgstr "Sincronizar repositório em Proxy(ies) Inteligente(s)"
|
5604
6132
|
|
5605
|
-
msgid "Sync Smart Proxies after
|
5606
|
-
msgstr "
|
6133
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6134
|
+
msgstr ""
|
6135
|
+
|
6136
|
+
msgid "Sync Sock Connect Timeout"
|
6137
|
+
msgstr ""
|
6138
|
+
|
6139
|
+
msgid "Sync Sock Read Timeout"
|
6140
|
+
msgstr ""
|
5607
6141
|
|
5608
6142
|
msgid "Sync Status"
|
5609
6143
|
msgstr "Status da Sincronização"
|
@@ -5614,6 +6148,9 @@ msgstr "Resumo da sincronização"
|
|
5614
6148
|
msgid "Sync Summary for %s"
|
5615
6149
|
msgstr "Resumo da sincronização para %s"
|
5616
6150
|
|
6151
|
+
msgid "Sync Total Timeout"
|
6152
|
+
msgstr ""
|
6153
|
+
|
5617
6154
|
msgid "Sync a repository"
|
5618
6155
|
msgstr "Sinc um repositório"
|
5619
6156
|
|
@@ -5683,6 +6220,9 @@ msgstr "Objetivo do sistema"
|
|
5683
6220
|
msgid "System Status"
|
5684
6221
|
msgstr "Status do sistema"
|
5685
6222
|
|
6223
|
+
msgid "System purpose"
|
6224
|
+
msgstr ""
|
6225
|
+
|
5686
6226
|
msgid "Tag name"
|
5687
6227
|
msgstr ""
|
5688
6228
|
|
@@ -5710,6 +6250,9 @@ msgstr "Temporário"
|
|
5710
6250
|
msgid "The '%s' environment cannot contain a changeset!"
|
5711
6251
|
msgstr "O ambiente \\\"%s\\\" não pode conter um changeset!"
|
5712
6252
|
|
6253
|
+
msgid "The Alternate Content Source type"
|
6254
|
+
msgstr ""
|
6255
|
+
|
5713
6256
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5714
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."
|
5715
6258
|
|
@@ -5722,6 +6265,9 @@ msgstr "A ação requisitada nesta coleção de visualização não pode ser des
|
|
5722
6265
|
msgid "The actual file contents"
|
5723
6266
|
msgstr "O conteúdo do arquivo atual "
|
5724
6267
|
|
6268
|
+
msgid "The content type for the Alternate Content Source"
|
6269
|
+
msgstr ""
|
6270
|
+
|
5725
6271
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5726
6272
|
msgstr "A organização atual não pode ser removida. Por favor mude para uma organização diferentes antes de remover."
|
5727
6273
|
|
@@ -5731,8 +6277,8 @@ msgstr "A visualização de conteúdo padrão não pode ser editada, publicada o
|
|
5731
6277
|
msgid "The default content view cannot be promoted"
|
5732
6278
|
msgstr "A visualização de conteúdo padrão não pode ser promovida."
|
5733
6279
|
|
5734
|
-
msgid "The default dependency solving value for new
|
5735
|
-
msgstr "
|
6280
|
+
msgid "The default dependency solving value for new content views."
|
6281
|
+
msgstr ""
|
5736
6282
|
|
5737
6283
|
msgid "The description for the content view version"
|
5738
6284
|
msgstr "A descrição de uma versão de visualização de conteúdo"
|
@@ -5761,6 +6307,9 @@ msgstr ""
|
|
5761
6307
|
msgid "The field to sort the data by. Defaults to the created date."
|
5762
6308
|
msgstr "O campo com base no qual os dados são classificados. O padrão é a data de criação."
|
5763
6309
|
|
6310
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6311
|
+
msgstr ""
|
6312
|
+
|
5764
6313
|
msgid "The following hosts have errata that apply to them: "
|
5765
6314
|
msgstr "Os hosts a seguir possuem errata que se aplicam à eles:"
|
5766
6315
|
|
@@ -5769,15 +6318,39 @@ msgid ""
|
|
5769
6318
|
" %{repos}"
|
5770
6319
|
msgstr ""
|
5771
6320
|
|
6321
|
+
msgid "The id of the content source"
|
6322
|
+
msgstr ""
|
6323
|
+
|
6324
|
+
msgid "The id of the content view"
|
6325
|
+
msgstr ""
|
6326
|
+
|
5772
6327
|
msgid "The id of the host to alter"
|
5773
6328
|
msgstr "A id do host a ser alterada "
|
5774
6329
|
|
6330
|
+
msgid "The id of the lifecycle environment"
|
6331
|
+
msgstr ""
|
6332
|
+
|
6333
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6334
|
+
msgstr ""
|
6335
|
+
|
5775
6336
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5776
6337
|
msgstr "A lista de ambientes para promover a Versão de Visualização de conteúdo especificado (substituindo a versão mais antiga)"
|
5777
6338
|
|
5778
6339
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5779
6340
|
msgstr "O manifesto importado na Organização %{subject} não é mais válido. Importe um novo manifesto."
|
5780
6341
|
|
6342
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6343
|
+
msgstr ""
|
6344
|
+
|
6345
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6346
|
+
msgstr ""
|
6347
|
+
|
6348
|
+
msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
|
6349
|
+
msgstr ""
|
6350
|
+
|
6351
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6352
|
+
msgstr ""
|
6353
|
+
|
5781
6354
|
msgid "The maximum number of versions of each package to keep."
|
5782
6355
|
msgstr ""
|
5783
6356
|
|
@@ -5864,9 +6437,18 @@ msgstr "Não há Subscrições para exibir"
|
|
5864
6437
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5865
6438
|
msgstr "Não existe nenhuma errata que precise ser aplicada aos hosts de conteúdo registrados."
|
5866
6439
|
|
6440
|
+
msgid "There are no host collections available to add."
|
6441
|
+
msgstr ""
|
6442
|
+
|
5867
6443
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5868
6444
|
msgstr "Não há produtos ou repositórios habilitados. Tente habilitar via %{custom} ou %{redhat}."
|
5869
6445
|
|
6446
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6447
|
+
msgstr ""
|
6448
|
+
|
6449
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6450
|
+
msgstr ""
|
6451
|
+
|
5870
6452
|
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."
|
5871
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."
|
5872
6454
|
|
@@ -5879,6 +6461,12 @@ msgstr "Esse proxy HTTP não existe."
|
|
5879
6461
|
msgid "There is nothing to see here"
|
5880
6462
|
msgstr "Não há nada para ver aqui"
|
5881
6463
|
|
6464
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6465
|
+
msgstr ""
|
6466
|
+
|
6467
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6468
|
+
msgstr ""
|
6469
|
+
|
5882
6470
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5883
6471
|
msgstr "Ocorreu um problema na recuperação de dados da Chave de ativação do servidor."
|
5884
6472
|
|
@@ -5904,7 +6492,7 @@ msgid "This action doesn't support package groups"
|
|
5904
6492
|
msgstr "Esta ação não fornece suporte a grupos de pacotes"
|
5905
6493
|
|
5906
6494
|
msgid "This action should only be taken in extreme circumstances or for debugging purposes."
|
5907
|
-
msgstr ""
|
6495
|
+
msgstr "Esta ação deve ser realizada em circunstâncias extremas ou com o objetivo de depurar."
|
5908
6496
|
|
5909
6497
|
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
5910
6498
|
msgstr ""
|
@@ -5927,13 +6515,13 @@ msgstr ""
|
|
5927
6515
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5928
6516
|
msgstr ""
|
5929
6517
|
|
5930
|
-
msgid "This host
|
6518
|
+
msgid "This host does not have any Module streams."
|
5931
6519
|
msgstr ""
|
5932
6520
|
|
5933
|
-
msgid "This host does not have any
|
6521
|
+
msgid "This host does not have any packages."
|
5934
6522
|
msgstr ""
|
5935
6523
|
|
5936
|
-
msgid "This host
|
6524
|
+
msgid "This host has errata that are applicable, but not installable."
|
5937
6525
|
msgstr ""
|
5938
6526
|
|
5939
6527
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5966,6 +6554,9 @@ msgstr "Isto não é um repositório vinculado"
|
|
5966
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}."
|
5967
6555
|
msgstr ""
|
5968
6556
|
|
6557
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6558
|
+
msgstr ""
|
6559
|
+
|
5969
6560
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5970
6561
|
msgstr "Este repositório não é sugerido. Consulte a %(anchorBegin)sdocumentação%(anchorEnd)s adicional antes de usar."
|
5971
6562
|
|
@@ -5991,7 +6582,7 @@ msgid "This version is not promoted to any environments."
|
|
5991
6582
|
msgstr ""
|
5992
6583
|
|
5993
6584
|
msgid "This version will be removed from:"
|
5994
|
-
msgstr ""
|
6585
|
+
msgstr "Esta versão será removida de:"
|
5995
6586
|
|
5996
6587
|
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."
|
5997
6588
|
msgstr ""
|
@@ -5999,11 +6590,11 @@ msgstr ""
|
|
5999
6590
|
msgid "Time in minutes to consider orphan content as orphaned."
|
6000
6591
|
msgstr ""
|
6001
6592
|
|
6002
|
-
msgid "Time in seconds to wait for a
|
6003
|
-
msgstr "
|
6593
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
6594
|
+
msgstr ""
|
6004
6595
|
|
6005
|
-
msgid "Time in seconds to wait for a
|
6006
|
-
msgstr "
|
6596
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
6597
|
+
msgstr ""
|
6007
6598
|
|
6008
6599
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
6009
6600
|
msgstr "Tempo limite ao atualizar um manifesto (em segundos)"
|
@@ -6020,9 +6611,6 @@ msgstr "Ativar o Acesso a conteúdo simples atualizará seu manifesto."
|
|
6020
6611
|
msgid "Total steps: "
|
6021
6612
|
msgstr "Total de etapas: "
|
6022
6613
|
|
6023
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6024
|
-
msgstr ""
|
6025
|
-
|
6026
6614
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6027
6615
|
msgstr ""
|
6028
6616
|
|
@@ -6038,6 +6626,9 @@ msgstr ""
|
|
6038
6626
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6039
6627
|
msgstr ""
|
6040
6628
|
|
6629
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6630
|
+
msgstr ""
|
6631
|
+
|
6041
6632
|
msgid "Traces that require logout cannot be restarted remotely"
|
6042
6633
|
msgstr ""
|
6043
6634
|
|
@@ -6072,7 +6663,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
6072
6663
|
msgstr ""
|
6073
6664
|
|
6074
6665
|
msgid "URL"
|
6075
|
-
msgstr ""
|
6666
|
+
msgstr "URL"
|
6076
6667
|
|
6077
6668
|
msgid "URL needs to have a trailing /"
|
6078
6669
|
msgstr ""
|
@@ -6102,7 +6693,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
6102
6693
|
msgstr "UUIDs dos convidados virtuais do hipervisor do host"
|
6103
6694
|
|
6104
6695
|
msgid "Unable to connect"
|
6105
|
-
msgstr ""
|
6696
|
+
msgstr "Não é possível conectar"
|
6106
6697
|
|
6107
6698
|
msgid "Unable to connect. Got: %s"
|
6108
6699
|
msgstr "Não foi possível estabelecer conexão. Obteve: %s"
|
@@ -6119,9 +6710,15 @@ msgstr ""
|
|
6119
6710
|
msgid "Unable to get users"
|
6120
6711
|
msgstr ""
|
6121
6712
|
|
6713
|
+
msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
|
6714
|
+
msgstr ""
|
6715
|
+
|
6122
6716
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6123
6717
|
msgstr ""
|
6124
6718
|
|
6719
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6720
|
+
msgstr ""
|
6721
|
+
|
6125
6722
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6126
6723
|
msgstr "Incapaz de reatribuir activation_keys. Por favor, verifique a activation_key_content_view_id e activation_key_environment_id."
|
6127
6724
|
|
@@ -6164,6 +6761,9 @@ msgstr "Sem Direito a Serviços"
|
|
6164
6761
|
msgid "Unfiltered params array: %s."
|
6165
6762
|
msgstr "Matriz de parâmetros não filtrada: %s."
|
6166
6763
|
|
6764
|
+
msgid "Uninstall and reset"
|
6765
|
+
msgstr ""
|
6766
|
+
|
6167
6767
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6168
6768
|
msgstr ""
|
6169
6769
|
|
@@ -6218,6 +6818,9 @@ msgstr ""
|
|
6218
6818
|
msgid "Update"
|
6219
6819
|
msgstr "Atualizar"
|
6220
6820
|
|
6821
|
+
msgid "Update Alternate Content Source"
|
6822
|
+
msgstr ""
|
6823
|
+
|
6221
6824
|
msgid "Update CDN Configuration"
|
6222
6825
|
msgstr ""
|
6223
6826
|
|
@@ -6257,6 +6860,9 @@ msgstr "Atualizar um plano de sinc"
|
|
6257
6860
|
msgid "Update an activation key"
|
6258
6861
|
msgstr "Atualizar uma chave de ativação"
|
6259
6862
|
|
6863
|
+
msgid "Update an alternate content source"
|
6864
|
+
msgstr ""
|
6865
|
+
|
6260
6866
|
msgid "Update an environment"
|
6261
6867
|
msgstr "Atualizar um ambiente"
|
6262
6868
|
|
@@ -6308,6 +6914,9 @@ msgstr "Atualizar pacote via interface do Katello"
|
|
6308
6914
|
msgid "Update packages remotely using katello-agent. %s"
|
6309
6915
|
msgstr ""
|
6310
6916
|
|
6917
|
+
msgid "Update packages via Katello interface"
|
6918
|
+
msgstr ""
|
6919
|
+
|
6311
6920
|
msgid "Update redhat repository"
|
6312
6921
|
msgstr "Atualizar repositório redhat"
|
6313
6922
|
|
@@ -6326,6 +6935,9 @@ msgstr ""
|
|
6326
6935
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6327
6936
|
msgstr "Atualizar a configuração do proxy HTTP nos repositórios de um ou mais produtos."
|
6328
6937
|
|
6938
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6939
|
+
msgstr ""
|
6940
|
+
|
6329
6941
|
msgid "Update the information about enabled repositories"
|
6330
6942
|
msgstr "Atualizar informações sobre repositórios habilitados"
|
6331
6943
|
|
@@ -6341,6 +6953,9 @@ msgstr "Atualizados"
|
|
6341
6953
|
msgid "Updated component details"
|
6342
6954
|
msgstr ""
|
6343
6955
|
|
6956
|
+
msgid "Updated from"
|
6957
|
+
msgstr ""
|
6958
|
+
|
6344
6959
|
msgid "Updates"
|
6345
6960
|
msgstr "Atualizações"
|
6346
6961
|
|
@@ -6366,9 +6981,9 @@ msgid "Updating repository authentication configuration"
|
|
6366
6981
|
msgstr "Atualizando a configuração de autenticação do repositório"
|
6367
6982
|
|
6368
6983
|
msgid "Upgradable"
|
6369
|
-
msgstr ""
|
6984
|
+
msgstr "Pode ter upgrade"
|
6370
6985
|
|
6371
|
-
msgid "Upgradable
|
6986
|
+
msgid "Upgradable to"
|
6372
6987
|
msgstr ""
|
6373
6988
|
|
6374
6989
|
msgid "Upgrade"
|
@@ -6401,9 +7016,18 @@ msgstr ""
|
|
6401
7016
|
msgid "Upload request id"
|
6402
7017
|
msgstr "Carregar ID de requisição"
|
6403
7018
|
|
7019
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7020
|
+
msgstr ""
|
7021
|
+
|
7022
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7023
|
+
msgstr ""
|
7024
|
+
|
6404
7025
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6405
7026
|
msgstr "O Nome upstream não pode ficar em branco quando a URL do Repositório é fornecida."
|
6406
7027
|
|
7028
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7029
|
+
msgstr ""
|
7030
|
+
|
6407
7031
|
msgid "Upstream identity certificate not available"
|
6408
7032
|
msgstr "O certificado de identidade de upstream não está disponível."
|
6409
7033
|
|
@@ -6416,15 +7040,12 @@ msgstr ""
|
|
6416
7040
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6417
7041
|
msgstr ""
|
6418
7042
|
|
6419
|
-
msgid "Upstream organization to sync CDN content from"
|
7043
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6420
7044
|
msgstr ""
|
6421
7045
|
|
6422
7046
|
msgid "Upstream password requires upstream username be set."
|
6423
7047
|
msgstr "A senha upstream requer que o nome de usuário upstream seja definido."
|
6424
7048
|
|
6425
|
-
msgid "Upstream server to sync CDN content from"
|
6426
|
-
msgstr ""
|
6427
|
-
|
6428
7049
|
msgid "Upstream username and password may only be set on custom repositories."
|
6429
7050
|
msgstr "O nome de usuário e a senha upstream só podem ser definidos em repositórios personalizados."
|
6430
7051
|
|
@@ -6465,9 +7086,9 @@ msgid "User must be logged in."
|
|
6465
7086
|
msgstr "Usuário deve estar autenticado."
|
6466
7087
|
|
6467
7088
|
msgid "Username"
|
6468
|
-
msgstr ""
|
7089
|
+
msgstr "Nome do usuário"
|
6469
7090
|
|
6470
|
-
msgid "Username for authentication"
|
7091
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6471
7092
|
msgstr ""
|
6472
7093
|
|
6473
7094
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6479,7 +7100,7 @@ msgstr "Nome de usuário para acessar a URL"
|
|
6479
7100
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6480
7101
|
msgstr ""
|
6481
7102
|
|
6482
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7103
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6483
7104
|
msgstr ""
|
6484
7105
|
|
6485
7106
|
msgid "Valid"
|
@@ -6524,6 +7145,15 @@ msgstr ""
|
|
6524
7145
|
msgid "Versions"
|
6525
7146
|
msgstr "Versões"
|
6526
7147
|
|
7148
|
+
msgid "Versions "
|
7149
|
+
msgstr ""
|
7150
|
+
|
7151
|
+
msgid "Versions to exclusively include in the action"
|
7152
|
+
msgstr ""
|
7153
|
+
|
7154
|
+
msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
|
7155
|
+
msgstr ""
|
7156
|
+
|
6527
7157
|
msgid "Versions will appear here when the content view is published."
|
6528
7158
|
msgstr ""
|
6529
7159
|
|
@@ -6536,16 +7166,22 @@ msgstr "Exibir um relatório dos hosts afetados"
|
|
6536
7166
|
msgid "View matching content"
|
6537
7167
|
msgstr ""
|
6538
7168
|
|
6539
|
-
msgid "
|
6540
|
-
msgstr "
|
7169
|
+
msgid "View tasks "
|
7170
|
+
msgstr ""
|
6541
7171
|
|
6542
|
-
msgid "
|
7172
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6543
7173
|
msgstr ""
|
6544
7174
|
|
7175
|
+
msgid "Virtual"
|
7176
|
+
msgstr "Virtual"
|
7177
|
+
|
6545
7178
|
msgid "Waiting to start."
|
6546
7179
|
msgstr ""
|
6547
7180
|
|
6548
7181
|
msgid "Warning"
|
7182
|
+
msgstr "Aviso"
|
7183
|
+
|
7184
|
+
msgid "What's next?"
|
6549
7185
|
msgstr ""
|
6550
7186
|
|
6551
7187
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
@@ -6569,8 +7205,8 @@ msgstr "Ao cancelar o registro de um host via subscription-manager, exclua tamb
|
|
6569
7205
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6570
7206
|
msgstr "Se a coleção de hosts pode possuir ou não hosts ilimitados"
|
6571
7207
|
|
6572
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
6573
|
-
msgstr "
|
7208
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
7209
|
+
msgstr ""
|
6574
7210
|
|
6575
7211
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
6576
7212
|
msgstr "Verificar ou não o status dos serviços de backend, tais como pulp e candlepin, antes de desempenhar algumas ações. "
|
@@ -6599,9 +7235,6 @@ msgstr "Estado vazio Yay"
|
|
6599
7235
|
msgid "Yes"
|
6600
7236
|
msgstr "Sim"
|
6601
7237
|
|
6602
|
-
msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
|
6603
|
-
msgstr "Você está atualmente operando em modo desconectado, no qual o acesso ao Red Hat Subcription Management é proibido. Se quiser alterar isso, atualize a configuração de conteúdo 'Modo desconectado'."
|
6604
|
-
|
6605
7238
|
msgid "You are not allowed to promote to Environments %s"
|
6606
7239
|
msgstr "Você não pode promover para Environments %s"
|
6607
7240
|
|
@@ -6626,6 +7259,9 @@ msgstr ""
|
|
6626
7259
|
msgid "You currently don't have any Content views."
|
6627
7260
|
msgstr ""
|
6628
7261
|
|
7262
|
+
msgid "You currently don't have any alternate content sources."
|
7263
|
+
msgstr ""
|
7264
|
+
|
6629
7265
|
msgid "You currently don't have any filters for this content view."
|
6630
7266
|
msgstr ""
|
6631
7267
|
|
@@ -6659,6 +7295,9 @@ msgstr "Você tem subscrições que expiram em %s dias"
|
|
6659
7295
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6660
7296
|
msgstr "Você tem mudanças não salvas. Quer sair sem salvar suas alterações?"
|
6661
7297
|
|
7298
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7299
|
+
msgstr ""
|
7300
|
+
|
6662
7301
|
msgid "You were not allowed to add %s"
|
6663
7302
|
msgstr "Você pode adicionar %s"
|
6664
7303
|
|
@@ -6680,6 +7319,9 @@ msgstr "Sua consulta de pesquisa era inválida. Revise-a e tente novamente. O er
|
|
6680
7319
|
msgid "Your search returned no matching "
|
6681
7320
|
msgstr ""
|
6682
7321
|
|
7322
|
+
msgid "Your search returned no matching Module streams."
|
7323
|
+
msgstr ""
|
7324
|
+
|
6683
7325
|
msgid "Your search returned no matching RPMs."
|
6684
7326
|
msgstr ""
|
6685
7327
|
|
@@ -6794,6 +7436,9 @@ msgstr "a chave de ativação pode ter hosts ilimitados"
|
|
6794
7436
|
msgid "can't be blank"
|
6795
7437
|
msgstr "não pode estar em branco"
|
6796
7438
|
|
7439
|
+
msgid "cannot add filter to generated content views"
|
7440
|
+
msgstr ""
|
7441
|
+
|
6797
7442
|
msgid "cannot add filter to import-only view"
|
6798
7443
|
msgstr ""
|
6799
7444
|
|
@@ -6848,6 +7493,9 @@ msgstr "verificando o status das tarefas do Candlepin "
|
|
6848
7493
|
msgid "checking Pulp task status"
|
6849
7494
|
msgstr "verificando o status das tarefas do Pulp"
|
6850
7495
|
|
7496
|
+
msgid "click here"
|
7497
|
+
msgstr ""
|
7498
|
+
|
6851
7499
|
msgid "composite content view identifier"
|
6852
7500
|
msgstr "identificador de coleção de visualização de conteúdo"
|
6853
7501
|
|
@@ -6866,6 +7514,9 @@ msgstr ""
|
|
6866
7514
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6867
7515
|
msgstr ""
|
6868
7516
|
|
7517
|
+
msgid "content view Dependency Solving Default"
|
7518
|
+
msgstr ""
|
7519
|
+
|
6869
7520
|
msgid "content view component ID. Identifier of the component association"
|
6870
7521
|
msgstr "ID de componente de visualização de conteúdo. Identificador da associação do componente"
|
6871
7522
|
|
@@ -6941,7 +7592,7 @@ msgstr "descrição do filtro"
|
|
6941
7592
|
msgid "description of the repository"
|
6942
7593
|
msgstr "descrição do repositório"
|
6943
7594
|
|
6944
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7595
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6945
7596
|
msgstr ""
|
6946
7597
|
|
6947
7598
|
msgid "enables or disables synchronization"
|
@@ -7016,6 +7667,9 @@ msgstr "filtrar identificador"
|
|
7016
7667
|
msgid "filter identifiers"
|
7017
7668
|
msgstr ""
|
7018
7669
|
|
7670
|
+
msgid "filter only environments containing this label"
|
7671
|
+
msgstr ""
|
7672
|
+
|
7019
7673
|
msgid "filter only environments containing this name"
|
7020
7674
|
msgstr "filstrar somente ambientes contendo este nome"
|
7021
7675
|
|
@@ -7079,6 +7733,9 @@ msgstr "instalando errata..."
|
|
7079
7733
|
msgid "installing erratum..."
|
7080
7734
|
msgstr "instalando erratum..."
|
7081
7735
|
|
7736
|
+
msgid "installing or updating packages"
|
7737
|
+
msgstr ""
|
7738
|
+
|
7082
7739
|
msgid "installing package group..."
|
7083
7740
|
msgstr "instalando grupo de pacote..."
|
7084
7741
|
|
@@ -7106,9 +7763,18 @@ msgstr "já está anexado à capsula"
|
|
7106
7763
|
msgid "is invalid"
|
7107
7764
|
msgstr "é inválido"
|
7108
7765
|
|
7766
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7767
|
+
msgstr ""
|
7768
|
+
|
7769
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7770
|
+
msgstr ""
|
7771
|
+
|
7109
7772
|
msgid "is not enabled. must be one of the following: %s"
|
7110
7773
|
msgstr ""
|
7111
7774
|
|
7775
|
+
msgid "is only allowed for Yum repositories."
|
7776
|
+
msgstr ""
|
7777
|
+
|
7112
7778
|
msgid "label of the environment"
|
7113
7779
|
msgstr "rotular o ambiente"
|
7114
7780
|
|
@@ -7181,6 +7847,9 @@ msgstr "deve conter uma Chave GPG Pública válida"
|
|
7181
7847
|
msgid "must contain valid Public GPG Key"
|
7182
7848
|
msgstr "deve conter uma Chave GPG Pública válida"
|
7183
7849
|
|
7850
|
+
msgid "must not be a negative value."
|
7851
|
+
msgstr ""
|
7852
|
+
|
7184
7853
|
msgid "must not contain leading or trailing white spaces."
|
7185
7854
|
msgstr "não deve conter espaços em branco de trilha ou líder "
|
7186
7855
|
|
@@ -7277,6 +7946,9 @@ msgstr "pacote: versão"
|
|
7277
7946
|
msgid "package_ids is not an array"
|
7278
7947
|
msgstr "package_ids não é uma matriz"
|
7279
7948
|
|
7949
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7950
|
+
msgstr ""
|
7951
|
+
|
7280
7952
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7281
7953
|
msgstr ""
|
7282
7954
|
|
@@ -7394,6 +8066,12 @@ msgstr "substituir temporariamente o URL do feed para sincronização "
|
|
7394
8066
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7395
8067
|
msgstr "os seguintes atributos não podem ser atualizados para o provedor da Red Hat: [ %s ]"
|
7396
8068
|
|
8069
|
+
msgid "to"
|
8070
|
+
msgstr ""
|
8071
|
+
|
8072
|
+
msgid "to update configuration on all hosts, or"
|
8073
|
+
msgstr ""
|
8074
|
+
|
7397
8075
|
msgid "true if the latest version of the component's content view is desired"
|
7398
8076
|
msgstr "verdadeiro se a última versão da visualização de conteúdo do componente for desejada"
|
7399
8077
|
|
@@ -7418,9 +8096,15 @@ msgstr "tipos de filtros"
|
|
7418
8096
|
msgid "unknown permission for %s"
|
7419
8097
|
msgstr "permissão desconhecida para %s"
|
7420
8098
|
|
8099
|
+
msgid "unlimited"
|
8100
|
+
msgstr ""
|
8101
|
+
|
7421
8102
|
msgid "update a filter"
|
7422
8103
|
msgstr "atualizar um filtro"
|
7423
8104
|
|
8105
|
+
msgid "update configuration on the hosts manually:"
|
8106
|
+
msgstr ""
|
8107
|
+
|
7424
8108
|
msgid "updating package group..."
|
7425
8109
|
msgstr "atualizando o grupo do pacote..."
|
7426
8110
|
|
@@ -7433,6 +8117,9 @@ msgstr "atualizando pacotes..."
|
|
7433
8117
|
msgid "updating packages..."
|
7434
8118
|
msgstr "atualizando pacotes..."
|
7435
8119
|
|
8120
|
+
msgid "upstream Foreman server"
|
8121
|
+
msgstr ""
|
8122
|
+
|
7436
8123
|
msgid "url not defined."
|
7437
8124
|
msgstr "url não definida"
|
7438
8125
|
|
@@ -7440,7 +8127,7 @@ msgid "via customized remote execution"
|
|
7440
8127
|
msgstr ""
|
7441
8128
|
|
7442
8129
|
msgid "via remote execution"
|
7443
|
-
msgstr ""
|
8130
|
+
msgstr "via execução remota"
|
7444
8131
|
|
7445
8132
|
msgid "view content view tabs."
|
7446
8133
|
msgstr ""
|
@@ -7477,3 +8164,30 @@ msgstr "sim"
|
|
7477
8164
|
|
7478
8165
|
msgid "{0} items selected"
|
7479
8166
|
msgstr "{0} itens selecionados"
|
8167
|
+
|
8168
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8169
|
+
msgstr ""
|
8170
|
+
|
8171
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8172
|
+
msgstr ""
|
8173
|
+
|
8174
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8175
|
+
msgstr ""
|
8176
|
+
|
8177
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8178
|
+
msgstr ""
|
8179
|
+
|
8180
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8181
|
+
msgstr ""
|
8182
|
+
|
8183
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8184
|
+
msgstr ""
|
8185
|
+
|
8186
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8187
|
+
msgstr ""
|
8188
|
+
|
8189
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8190
|
+
msgstr ""
|
8191
|
+
|
8192
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8193
|
+
msgstr ""
|