katello 3.17.0 → 3.18.0
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/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
- data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_controller.rb +9 -9
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
- data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +9 -9
- data/app/lib/actions/katello/content_view_version/import.rb +8 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
- data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +4 -1
- data/app/lib/actions/katello/repository/remove_content.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +3 -1
- data/app/lib/actions/katello/repository/update.rb +5 -1
- data/app/lib/actions/katello/repository/upload_files.rb +1 -0
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
- data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
- data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
- data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
- data/app/lib/actions/pulp3/content_migration.rb +10 -0
- data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/import_migration.rb +6 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
- data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/content_view_filter.rb +15 -0
- data/app/models/katello/authorization/content_view_version.rb +25 -2
- data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/organization.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
- data/app/models/katello/content_migration_progress.rb +4 -0
- data/app/models/katello/content_view.rb +30 -4
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_filter.rb +5 -0
- data/app/models/katello/content_view_history.rb +2 -1
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/content_view_puppet_module.rb +8 -0
- data/app/models/katello/content_view_repository.rb +13 -1
- data/app/models/katello/content_view_version_export_history.rb +8 -1
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/ping.rb +8 -3
- data/app/models/katello/repository.rb +33 -0
- data/app/models/katello/root_repository.rb +26 -1
- data/app/models/katello/smart_proxy_sync_history.rb +8 -0
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/api/docker.rb +4 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
- data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/docker_manifest.rb +1 -0
- data/app/services/katello/pulp3/docker_tag.rb +1 -0
- data/app/services/katello/pulp3/migration.rb +51 -10
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository.rb +10 -4
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +9 -0
- data/app/services/katello/pulp3/repository/yum.rb +14 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +4 -0
- data/app/services/katello/pulp3/task_group.rb +4 -0
- data/app/services/katello/repository_type.rb +2 -1
- data/app/services/katello/smart_proxy_helper.rb +9 -0
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/foreman/hosts/_registration.html.erb +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/katello/layouts/react.html.erb +3 -2
- data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +24 -2
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
- data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +2 -0
- data/lib/katello/permission_creator.rb +98 -69
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +10 -2
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_migration.rake +17 -3
- data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +51 -44
- data/locale/bn/katello.po +279 -55
- data/locale/cs/katello.po +278 -51
- data/locale/de/katello.po +279 -52
- data/locale/en/katello.po +278 -49
- data/locale/es/katello.po +279 -51
- data/locale/fr/katello.po +279 -51
- data/locale/gu/katello.po +279 -55
- data/locale/hi/katello.po +279 -55
- data/locale/it/katello.po +279 -51
- data/locale/ja/katello.po +279 -52
- data/locale/katello.pot +1379 -971
- data/locale/kn/katello.po +279 -55
- data/locale/ko/katello.po +279 -51
- data/locale/mr/katello.po +279 -55
- data/locale/or/katello.po +279 -55
- data/locale/pa/katello.po +279 -55
- data/locale/pt/katello.po +278 -52
- data/locale/pt_BR/katello.po +279 -51
- data/locale/ru/katello.po +279 -51
- data/locale/ta/katello.po +279 -55
- data/locale/te/katello.po +279 -55
- data/locale/zh_CN/katello.po +279 -51
- data/locale/zh_TW/katello.po +279 -52
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
- metadata +74 -13
- data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
data/locale/pt_BR/katello.po
CHANGED
@@ -26,6 +26,11 @@ msgstr ""
|
|
26
26
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
27
27
|
"X-Generator: Zanata 3.6.0\n"
|
28
28
|
|
29
|
+
msgid ""
|
30
|
+
"\n"
|
31
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
32
|
+
msgstr ""
|
33
|
+
|
29
34
|
msgid " %{errata_count} Errata"
|
30
35
|
msgstr ""
|
31
36
|
|
@@ -346,12 +351,18 @@ msgstr ""
|
|
346
351
|
msgid "Action with sub plans"
|
347
352
|
msgstr ""
|
348
353
|
|
354
|
+
msgid "Activation Key(s)"
|
355
|
+
msgstr ""
|
356
|
+
|
349
357
|
msgid "Activation Keys"
|
350
358
|
msgstr "Chaves de Ativação"
|
351
359
|
|
352
360
|
msgid "Activation key ID"
|
353
361
|
msgstr "Ativação do ID da chave"
|
354
362
|
|
363
|
+
msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
364
|
+
msgstr ""
|
365
|
+
|
355
366
|
msgid "Activation keys and subscriptions can be managed"
|
356
367
|
msgstr "Chave de Ativação e subscrições podem ser gerenciadas"
|
357
368
|
|
@@ -403,6 +414,9 @@ msgstr "Conteúdo adicionado:"
|
|
403
414
|
msgid "Adding content units"
|
404
415
|
msgstr ""
|
405
416
|
|
417
|
+
msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
|
418
|
+
msgstr ""
|
419
|
+
|
406
420
|
msgid "Addons"
|
407
421
|
msgstr ""
|
408
422
|
|
@@ -507,6 +521,9 @@ msgstr ""
|
|
507
521
|
msgid "Artifacts"
|
508
522
|
msgstr ""
|
509
523
|
|
524
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
525
|
+
msgstr ""
|
526
|
+
|
510
527
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
511
528
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
512
529
|
msgstr[0] "Atribuir o host %{count} sem um %{taxonomy_single} ao %{taxonomy_name}"
|
@@ -552,9 +569,6 @@ msgstr ""
|
|
552
569
|
msgid "Author"
|
553
570
|
msgstr ""
|
554
571
|
|
555
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
556
|
-
msgstr ""
|
557
|
-
|
558
572
|
msgid "Auto Publish - Triggered by '%s'"
|
559
573
|
msgstr ""
|
560
574
|
|
@@ -763,6 +777,9 @@ msgstr ""
|
|
763
777
|
msgid "Cannot delete view while it exists in environments"
|
764
778
|
msgstr "Não foi possível remover visualização enquanto ele existir nos ambientes."
|
765
779
|
|
780
|
+
msgid "Cannot import a composite content view"
|
781
|
+
msgstr ""
|
782
|
+
|
766
783
|
msgid "Cannot import a custom subscription from a redhat product."
|
767
784
|
msgstr ""
|
768
785
|
|
@@ -817,12 +834,18 @@ msgstr ""
|
|
817
834
|
msgid "Cannot upload Container Image content."
|
818
835
|
msgstr ""
|
819
836
|
|
837
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
838
|
+
msgstr ""
|
839
|
+
|
820
840
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
821
841
|
msgstr ""
|
822
842
|
|
823
843
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
824
844
|
msgstr ""
|
825
845
|
|
846
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
847
|
+
msgstr ""
|
848
|
+
|
826
849
|
msgid "Check services before actions"
|
827
850
|
msgstr ""
|
828
851
|
|
@@ -858,7 +881,7 @@ msgstr ""
|
|
858
881
|
msgid "Combined Profile Update for %s"
|
859
882
|
msgstr ""
|
860
883
|
|
861
|
-
msgid "Comma
|
884
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
862
885
|
msgstr ""
|
863
886
|
|
864
887
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330
|
@@ -914,9 +937,15 @@ msgstr ""
|
|
914
937
|
msgid "Content Download URL"
|
915
938
|
msgstr ""
|
916
939
|
|
940
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
941
|
+
msgstr ""
|
942
|
+
|
917
943
|
msgid "Content Hosts"
|
918
944
|
msgstr "Hosts de Conteúdo"
|
919
945
|
|
946
|
+
msgid "Content Migration"
|
947
|
+
msgstr ""
|
948
|
+
|
920
949
|
msgid "Content Source"
|
921
950
|
msgstr "Fonte de Conteúdo"
|
922
951
|
|
@@ -968,9 +997,15 @@ msgstr ""
|
|
968
997
|
msgid "Content View Version not set"
|
969
998
|
msgstr ""
|
970
999
|
|
1000
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1001
|
+
msgstr ""
|
1002
|
+
|
971
1003
|
msgid "Content View and Environment not set for registration."
|
972
1004
|
msgstr ""
|
973
1005
|
|
1006
|
+
msgid "Content View id"
|
1007
|
+
msgstr ""
|
1008
|
+
|
974
1009
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author gcintra
|
975
1010
|
msgid "Content Views"
|
976
1011
|
msgstr "Visualização de Conteúdo"
|
@@ -1009,6 +1044,9 @@ msgstr "Rótulo de Visualização de Conteúdo"
|
|
1009
1044
|
msgid "Content view numeric identifier"
|
1010
1045
|
msgstr "Identificador numérico de visualização de conteúdo"
|
1011
1046
|
|
1047
|
+
msgid "Content view version export history identifier"
|
1048
|
+
msgstr ""
|
1049
|
+
|
1012
1050
|
msgid "Content view version identifier"
|
1013
1051
|
msgstr "Identificador da versão de visualização de conteúdo"
|
1014
1052
|
|
@@ -1030,12 +1068,12 @@ msgstr ""
|
|
1030
1068
|
msgid "Copy an activation key"
|
1031
1069
|
msgstr "Copiar uma chave de ativação"
|
1032
1070
|
|
1071
|
+
msgid "Copy version units to library"
|
1072
|
+
msgstr ""
|
1073
|
+
|
1033
1074
|
msgid "Cores: %s"
|
1034
1075
|
msgstr "Núcleos: %s"
|
1035
1076
|
|
1036
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1037
|
-
msgstr ""
|
1038
|
-
|
1039
1077
|
msgid "Could not delete organization '%s'."
|
1040
1078
|
msgstr "Não foi possível remover organização \"\\%s\\\"."
|
1041
1079
|
|
@@ -1045,6 +1083,12 @@ msgstr "Não foi possível encontrar %{content} com o id '%{id}' no repositório
|
|
1045
1083
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1046
1084
|
msgstr ""
|
1047
1085
|
|
1086
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1089
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1090
|
+
msgstr ""
|
1091
|
+
|
1048
1092
|
msgid "Could not find Environment with ids: %s"
|
1049
1093
|
msgstr "Não foi possível encontrar Ambiente com ids: %s"
|
1050
1094
|
|
@@ -1078,9 +1122,6 @@ msgstr ""
|
|
1078
1122
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1079
1123
|
msgstr "Não' foi possível encontrar o Filtro %{type} com o id %{id}"
|
1080
1124
|
|
1081
|
-
msgid "Couldn't find Content Credential '%s'"
|
1082
|
-
msgstr ""
|
1083
|
-
|
1084
1125
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1085
1126
|
msgstr "Não foi possível encontrar ContentViewFilter with id=%s"
|
1086
1127
|
|
@@ -1127,12 +1168,6 @@ msgstr "Não foi possível encontrar ambiente \"%s\""
|
|
1127
1168
|
msgid "Couldn't find errata ids '%s'"
|
1128
1169
|
msgstr "Não foi possível encontrar id de errata \"%s\""
|
1129
1170
|
|
1130
|
-
msgid "Couldn't find gpg key '%s'"
|
1131
|
-
msgstr "Não foi possível encontrar chave GPG \"%s\" "
|
1132
|
-
|
1133
|
-
msgid "Couldn't find host '%s'"
|
1134
|
-
msgstr ""
|
1135
|
-
|
1136
1171
|
msgid "Couldn't find host collection '%s'"
|
1137
1172
|
msgstr "Não foi possível encontrar coleção de host '%s'."
|
1138
1173
|
|
@@ -1145,36 +1180,18 @@ msgstr "Não foi possível encontrar organização \"\\%s\\\""
|
|
1145
1180
|
msgid "Couldn't find prior-environment '%s'"
|
1146
1181
|
msgstr "Não foi possível encontrar ambiente anterior \"%s\""
|
1147
1182
|
|
1148
|
-
msgid "Couldn't find product '%s'"
|
1149
|
-
msgstr "Não foi possível encontrar produto \"%s\""
|
1150
|
-
|
1151
1183
|
msgid "Couldn't find product with id '%s'"
|
1152
1184
|
msgstr "Não foi possível encontrar produto com ID \"%s\""
|
1153
1185
|
|
1154
1186
|
msgid "Couldn't find repository '%s'"
|
1155
1187
|
msgstr "Não foi possível encontrar repositório \"%s\""
|
1156
1188
|
|
1157
|
-
msgid "Couldn't find repository set with id '%s'."
|
1158
|
-
msgstr "Não foi possível encontrar conjunto de repositório com a id\"%s\""
|
1159
|
-
|
1160
1189
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1161
1190
|
msgstr ""
|
1162
1191
|
|
1163
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1164
|
-
msgstr ""
|
1165
|
-
|
1166
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1167
|
-
msgstr ""
|
1168
|
-
|
1169
|
-
msgid "Couldn't find ssl client key '%s'"
|
1170
|
-
msgstr ""
|
1171
|
-
|
1172
1192
|
msgid "Couldn't find subject of synchronization"
|
1173
1193
|
msgstr "Não foi possível encontrar tópico de sincronização"
|
1174
1194
|
|
1175
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1176
|
-
msgstr "Não foi' possível encontrar plano de sincronização '%{plan}' na organização '%{org}'"
|
1177
|
-
|
1178
1195
|
msgid "Count"
|
1179
1196
|
msgstr ""
|
1180
1197
|
|
@@ -1246,6 +1263,9 @@ msgstr ""
|
|
1246
1263
|
msgid "Current organization not set."
|
1247
1264
|
msgstr ""
|
1248
1265
|
|
1266
|
+
msgid "Custom"
|
1267
|
+
msgstr ""
|
1268
|
+
|
1249
1269
|
msgid "Custom Content Repositories"
|
1250
1270
|
msgstr "Repositórios de Conteúdo Padronizado"
|
1251
1271
|
|
@@ -1453,9 +1473,15 @@ msgstr "Descrição para nova versão da visualização de conteúdo publicada"
|
|
1453
1473
|
msgid "Description of the repository"
|
1454
1474
|
msgstr ""
|
1455
1475
|
|
1476
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1477
|
+
msgstr ""
|
1478
|
+
|
1456
1479
|
msgid "Desired quantity of the pool"
|
1457
1480
|
msgstr ""
|
1458
1481
|
|
1482
|
+
msgid "Destination Server name"
|
1483
|
+
msgstr ""
|
1484
|
+
|
1459
1485
|
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1460
1486
|
msgid "Destroy"
|
1461
1487
|
msgstr "Destruir"
|
@@ -1508,6 +1534,9 @@ msgstr "Detalhes"
|
|
1508
1534
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1509
1535
|
msgstr ""
|
1510
1536
|
|
1537
|
+
msgid "Directory containing the exported Content View Version"
|
1538
|
+
msgstr ""
|
1539
|
+
|
1511
1540
|
msgid "Disable"
|
1512
1541
|
msgstr "Desativar "
|
1513
1542
|
|
@@ -1523,6 +1552,9 @@ msgstr ""
|
|
1523
1552
|
msgid "Disable simple content access for a manifest"
|
1524
1553
|
msgstr ""
|
1525
1554
|
|
1555
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1556
|
+
msgstr ""
|
1557
|
+
|
1526
1558
|
msgid "Disconnected mode"
|
1527
1559
|
msgstr ""
|
1528
1560
|
|
@@ -1607,6 +1639,9 @@ msgstr ""
|
|
1607
1639
|
msgid "Enabled Repositories"
|
1608
1640
|
msgstr ""
|
1609
1641
|
|
1642
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1643
|
+
msgstr ""
|
1644
|
+
|
1610
1645
|
msgid "End Date"
|
1611
1646
|
msgstr ""
|
1612
1647
|
|
@@ -1716,7 +1751,10 @@ msgstr ""
|
|
1716
1751
|
msgid "Export CSV"
|
1717
1752
|
msgstr ""
|
1718
1753
|
|
1719
|
-
msgid "Export
|
1754
|
+
msgid "Export Library"
|
1755
|
+
msgstr ""
|
1756
|
+
|
1757
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1720
1758
|
msgstr ""
|
1721
1759
|
|
1722
1760
|
msgid "Export a repository"
|
@@ -1725,9 +1763,15 @@ msgstr ""
|
|
1725
1763
|
msgid "Export as CSV"
|
1726
1764
|
msgstr ""
|
1727
1765
|
|
1766
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1767
|
+
msgstr ""
|
1768
|
+
|
1728
1769
|
msgid "Export to ISO format"
|
1729
1770
|
msgstr ""
|
1730
1771
|
|
1772
|
+
msgid "Export to ISO format."
|
1773
|
+
msgstr ""
|
1774
|
+
|
1731
1775
|
msgid "Exported version"
|
1732
1776
|
msgstr ""
|
1733
1777
|
|
@@ -1869,10 +1913,6 @@ msgstr ""
|
|
1869
1913
|
msgid "GPG Key URL"
|
1870
1914
|
msgstr ""
|
1871
1915
|
|
1872
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author gcintra
|
1873
|
-
msgid "GPG Keys"
|
1874
|
-
msgstr "Chaves GPG"
|
1875
|
-
|
1876
1916
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author gcintra
|
1877
1917
|
msgid "Generate and Download"
|
1878
1918
|
msgstr "Gerar e Baixar"
|
@@ -1979,6 +2019,9 @@ msgstr "Coleção do Host está vazia. "
|
|
1979
2019
|
msgid "Host content and subscription details"
|
1980
2020
|
msgstr "Host de conteúdo e detalhes da subscrição"
|
1981
2021
|
|
2022
|
+
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."
|
2023
|
+
msgstr ""
|
2024
|
+
|
1982
2025
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1983
2026
|
msgstr ""
|
1984
2027
|
|
@@ -2003,6 +2046,9 @@ msgstr ""
|
|
2003
2046
|
msgid "Host id to list applicable packages for"
|
2004
2047
|
msgstr ""
|
2005
2048
|
|
2049
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2050
|
+
msgstr ""
|
2051
|
+
|
2006
2052
|
msgid "Host with ID %s already exists in the host collection."
|
2007
2053
|
msgstr ""
|
2008
2054
|
|
@@ -2156,6 +2202,9 @@ msgstr ""
|
|
2156
2202
|
msgid "Identifiers for Lifecycle Environment"
|
2157
2203
|
msgstr ""
|
2158
2204
|
|
2205
|
+
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"
|
2206
|
+
msgstr ""
|
2207
|
+
|
2159
2208
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2160
2209
|
msgstr ""
|
2161
2210
|
|
@@ -2198,6 +2247,15 @@ msgstr ""
|
|
2198
2247
|
msgid "Immediate"
|
2199
2248
|
msgstr ""
|
2200
2249
|
|
2250
|
+
msgid "Import"
|
2251
|
+
msgstr ""
|
2252
|
+
|
2253
|
+
msgid "Import Content View Version"
|
2254
|
+
msgstr ""
|
2255
|
+
|
2256
|
+
msgid "Import Default Content View"
|
2257
|
+
msgstr ""
|
2258
|
+
|
2201
2259
|
msgid "Import Manifest"
|
2202
2260
|
msgstr "Importar Manifesto"
|
2203
2261
|
|
@@ -2219,12 +2277,27 @@ msgstr ""
|
|
2219
2277
|
msgid "Import a Manifest using the manifest tab above."
|
2220
2278
|
msgstr ""
|
2221
2279
|
|
2280
|
+
msgid "Import a content view version"
|
2281
|
+
msgstr ""
|
2282
|
+
|
2283
|
+
msgid "Import a content view version to the library"
|
2284
|
+
msgstr ""
|
2285
|
+
|
2222
2286
|
msgid "Import facts"
|
2223
2287
|
msgstr "Importar fatos"
|
2224
2288
|
|
2225
2289
|
msgid "Import uploads into a repository"
|
2226
2290
|
msgstr "Importar carregamentos para um repositório"
|
2227
2291
|
|
2292
|
+
msgid "Import-only can not be changed after creation"
|
2293
|
+
msgstr ""
|
2294
|
+
|
2295
|
+
msgid "Import-only content views can not be published directly"
|
2296
|
+
msgstr ""
|
2297
|
+
|
2298
|
+
msgid "Import-only content views will be available in a future version."
|
2299
|
+
msgstr ""
|
2300
|
+
|
2228
2301
|
msgid "Importing manifest into '%{subject}' failed."
|
2229
2302
|
msgstr ""
|
2230
2303
|
|
@@ -2399,6 +2472,9 @@ msgstr ""
|
|
2399
2472
|
msgid "Invalid params provided - date_type must be one of %s"
|
2400
2473
|
msgstr ""
|
2401
2474
|
|
2475
|
+
msgid "Invalid path specified."
|
2476
|
+
msgstr ""
|
2477
|
+
|
2402
2478
|
msgid ""
|
2403
2479
|
"Invalid puppet module parameters specified. \\\n"
|
2404
2480
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2407,6 +2483,12 @@ msgstr ""
|
|
2407
2483
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2408
2484
|
msgstr "Módulo puppet inválido. Por favor, certifique-se de que o módulo puppet contém um arquivo metadata.json e está devidamente compactado. "
|
2409
2485
|
|
2486
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2487
|
+
msgstr ""
|
2488
|
+
|
2489
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2490
|
+
msgstr ""
|
2491
|
+
|
2410
2492
|
msgid "Invalid value specified for Container Image repositories."
|
2411
2493
|
msgstr ""
|
2412
2494
|
|
@@ -2416,6 +2498,9 @@ msgstr ""
|
|
2416
2498
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2417
2499
|
msgstr ""
|
2418
2500
|
|
2501
|
+
msgid "Katello"
|
2502
|
+
msgstr ""
|
2503
|
+
|
2419
2504
|
msgid "Katello ID of local pool to update"
|
2420
2505
|
msgstr ""
|
2421
2506
|
|
@@ -2476,9 +2561,6 @@ msgstr ""
|
|
2476
2561
|
msgid "Learn more about adding Subscription Manifests"
|
2477
2562
|
msgstr ""
|
2478
2563
|
|
2479
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2480
|
-
msgstr ""
|
2481
|
-
|
2482
2564
|
msgid "Library lifecycle environments may not be deleted."
|
2483
2565
|
msgstr "Ambientes de ciclo de vida de biblioteca podem não ser removidos."
|
2484
2566
|
|
@@ -2580,6 +2662,9 @@ msgstr "Listar errata"
|
|
2580
2662
|
msgid "List errata available for the content host"
|
2581
2663
|
msgstr "Listar errata disponível para o host de conteúdo"
|
2582
2664
|
|
2665
|
+
msgid "List export histories"
|
2666
|
+
msgstr ""
|
2667
|
+
|
2583
2668
|
msgid "List filter rules"
|
2584
2669
|
msgstr "Listar regras de filtro"
|
2585
2670
|
|
@@ -2733,6 +2818,9 @@ msgstr ""
|
|
2733
2818
|
msgid "List srpms"
|
2734
2819
|
msgstr ""
|
2735
2820
|
|
2821
|
+
msgid "List subscriptions"
|
2822
|
+
msgstr ""
|
2823
|
+
|
2736
2824
|
msgid "List sync plans"
|
2737
2825
|
msgstr "Listar planos de sinc"
|
2738
2826
|
|
@@ -2821,6 +2909,9 @@ msgstr "Mensagem"
|
|
2821
2909
|
msgid "Messaging connection"
|
2822
2910
|
msgstr ""
|
2823
2911
|
|
2912
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2913
|
+
msgstr ""
|
2914
|
+
|
2824
2915
|
msgid "Mismatched"
|
2825
2916
|
msgstr ""
|
2826
2917
|
|
@@ -2952,6 +3043,9 @@ msgstr ""
|
|
2952
3043
|
msgid "No errors"
|
2953
3044
|
msgstr "Sem erros "
|
2954
3045
|
|
3046
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3047
|
+
msgstr ""
|
3048
|
+
|
2955
3049
|
msgid "No file uploaded"
|
2956
3050
|
msgstr "Nenhum arquivo carregado"
|
2957
3051
|
|
@@ -2964,12 +3058,18 @@ msgstr ""
|
|
2964
3058
|
msgid "No hosts registered with subscription-manager found in selection."
|
2965
3059
|
msgstr ""
|
2966
3060
|
|
3061
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3062
|
+
msgstr ""
|
3063
|
+
|
2967
3064
|
msgid "No manifest file uploaded"
|
2968
3065
|
msgstr "Nenhum arquivo de manifesto carregado"
|
2969
3066
|
|
2970
3067
|
msgid "No matching content views found"
|
2971
3068
|
msgstr ""
|
2972
3069
|
|
3070
|
+
msgid "No matching repositories found"
|
3071
|
+
msgstr ""
|
3072
|
+
|
2973
3073
|
msgid "No new packages installed"
|
2974
3074
|
msgstr "Nenhum pacote novo instalado"
|
2975
3075
|
|
@@ -3105,6 +3205,9 @@ msgstr ""
|
|
3105
3205
|
msgid "On-disk location for exported repositories"
|
3106
3206
|
msgstr ""
|
3107
3207
|
|
3208
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3209
|
+
msgstr ""
|
3210
|
+
|
3108
3211
|
msgid "One of parameters [ %s ] required but not specified."
|
3109
3212
|
msgstr "Um dos parâmetros [ %s ] requerido mas não especificado"
|
3110
3213
|
|
@@ -3136,6 +3239,9 @@ msgstr "Operadores"
|
|
3136
3239
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3137
3240
|
msgstr ""
|
3138
3241
|
|
3242
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3243
|
+
msgstr ""
|
3244
|
+
|
3139
3245
|
msgid "Organization"
|
3140
3246
|
msgstr "Organização"
|
3141
3247
|
|
@@ -3371,6 +3477,18 @@ msgstr ""
|
|
3371
3477
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3372
3478
|
msgstr "Realizar uma Atualização Adicional em um ou mais Versões de Visualização de Conteúdo"
|
3373
3479
|
|
3480
|
+
msgid "Performs a full-export of a content view version."
|
3481
|
+
msgstr ""
|
3482
|
+
|
3483
|
+
msgid "Performs a full-export of the repositories in library."
|
3484
|
+
msgstr ""
|
3485
|
+
|
3486
|
+
msgid "Performs an incremental-export of a content view version."
|
3487
|
+
msgstr ""
|
3488
|
+
|
3489
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3490
|
+
msgstr ""
|
3491
|
+
|
3374
3492
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3375
3493
|
msgstr "Permissão negada. Usuário '%{user}' não tem permissões para acessar a organização '%{org}'."
|
3376
3494
|
|
@@ -3381,6 +3499,9 @@ msgstr "Físico "
|
|
3381
3499
|
msgid "Plan numeric identifier"
|
3382
3500
|
msgstr "Identificador numérico de plano"
|
3383
3501
|
|
3502
|
+
msgid "Please add some repositories."
|
3503
|
+
msgstr ""
|
3504
|
+
|
3384
3505
|
msgid "Please enter a positive number above zero"
|
3385
3506
|
msgstr ""
|
3386
3507
|
|
@@ -3408,6 +3529,9 @@ msgstr ""
|
|
3408
3529
|
msgid "Please select one from the list below and you will be redirected."
|
3409
3530
|
msgstr ""
|
3410
3531
|
|
3532
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3533
|
+
msgstr ""
|
3534
|
+
|
3411
3535
|
msgid "Processing metadata"
|
3412
3536
|
msgstr "Processando metadados"
|
3413
3537
|
|
@@ -3514,6 +3638,9 @@ msgstr ""
|
|
3514
3638
|
msgid "Pulp"
|
3515
3639
|
msgstr ""
|
3516
3640
|
|
3641
|
+
msgid "Pulp 3 export destination filepath"
|
3642
|
+
msgstr ""
|
3643
|
+
|
3517
3644
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3518
3645
|
msgstr ""
|
3519
3646
|
|
@@ -3568,6 +3695,12 @@ msgstr ""
|
|
3568
3695
|
msgid "Pulp task error"
|
3569
3696
|
msgstr "Erro de tarefa Pulp"
|
3570
3697
|
|
3698
|
+
msgid "Pulp user or group unable to read '%s'."
|
3699
|
+
msgstr ""
|
3700
|
+
|
3701
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3702
|
+
msgstr ""
|
3703
|
+
|
3571
3704
|
msgid "Pulpcore"
|
3572
3705
|
msgstr ""
|
3573
3706
|
|
@@ -3646,6 +3779,9 @@ msgstr ""
|
|
3646
3779
|
msgid "Recommended Repositories"
|
3647
3780
|
msgstr ""
|
3648
3781
|
|
3782
|
+
msgid "Red Hat"
|
3783
|
+
msgstr ""
|
3784
|
+
|
3649
3785
|
msgid "Red Hat CDN URL"
|
3650
3786
|
msgstr "Red Hat CDN URL"
|
3651
3787
|
|
@@ -3866,6 +4002,9 @@ msgstr ""
|
|
3866
4002
|
msgid "Resolve Traces"
|
3867
4003
|
msgstr ""
|
3868
4004
|
|
4005
|
+
msgid "Resolve traces for one or more hosts"
|
4006
|
+
msgstr ""
|
4007
|
+
|
3869
4008
|
msgid "Resource"
|
3870
4009
|
msgstr ""
|
3871
4010
|
|
@@ -3945,6 +4084,9 @@ msgstr "Retornar o conteúdo de uma chave gpg repo, usada diretamente pelo yum "
|
|
3945
4084
|
msgid "Role"
|
3946
4085
|
msgstr ""
|
3947
4086
|
|
4087
|
+
msgid "Role of host"
|
4088
|
+
msgstr ""
|
4089
|
+
|
3948
4090
|
msgid "Run Sync Plan:"
|
3949
4091
|
msgstr ""
|
3950
4092
|
|
@@ -4045,6 +4187,9 @@ msgstr "Nível de Serviço %s"
|
|
4045
4187
|
msgid "Service Level (SLA)"
|
4046
4188
|
msgstr ""
|
4047
4189
|
|
4190
|
+
msgid "Service level of host"
|
4191
|
+
msgstr ""
|
4192
|
+
|
4048
4193
|
msgid "Service level to be used for autoheal"
|
4049
4194
|
msgstr ""
|
4050
4195
|
|
@@ -4148,6 +4293,15 @@ msgstr "Exibir informações da versão"
|
|
4148
4293
|
msgid "Simple Content Access"
|
4149
4294
|
msgstr ""
|
4150
4295
|
|
4296
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4297
|
+
msgstr ""
|
4298
|
+
|
4299
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4300
|
+
msgstr ""
|
4301
|
+
|
4302
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4303
|
+
msgstr ""
|
4304
|
+
|
4151
4305
|
msgid "Size of file to upload"
|
4152
4306
|
msgstr ""
|
4153
4307
|
|
@@ -4182,6 +4336,9 @@ msgstr ""
|
|
4182
4336
|
msgid "Specify the list of units in each repo"
|
4183
4337
|
msgstr ""
|
4184
4338
|
|
4339
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4340
|
+
msgstr ""
|
4341
|
+
|
4185
4342
|
msgid "Stacking ID"
|
4186
4343
|
msgstr ""
|
4187
4344
|
|
@@ -4390,6 +4547,9 @@ msgstr "Sincronizar um ou mais produtos "
|
|
4390
4547
|
msgid "Sync plan identifier to attach"
|
4391
4548
|
msgstr "Identificador de plano de sinc a ser anexado"
|
4392
4549
|
|
4550
|
+
msgid "Sync state"
|
4551
|
+
msgstr ""
|
4552
|
+
|
4393
4553
|
msgid "Synced Content"
|
4394
4554
|
msgstr ""
|
4395
4555
|
|
@@ -4452,6 +4612,9 @@ msgstr "O ambiente \\\"%s\\\" não pode conter um changeset!"
|
|
4452
4612
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4453
4613
|
msgstr ""
|
4454
4614
|
|
4615
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4616
|
+
msgstr ""
|
4617
|
+
|
4455
4618
|
msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
|
4456
4619
|
msgstr ""
|
4457
4620
|
|
@@ -4491,15 +4654,26 @@ msgstr "A data inicial da regra de filtro de errata está em formato ou tipo inv
|
|
4491
4654
|
msgid "The erratum type must be an array. Invalid value provided"
|
4492
4655
|
msgstr "O tipo de errata deve ser uma matriz. O valor inválido é fornecido."
|
4493
4656
|
|
4657
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4658
|
+
msgstr ""
|
4659
|
+
|
4494
4660
|
msgid "The field to sort the data by. Defaults to the created date."
|
4495
4661
|
msgstr ""
|
4496
4662
|
|
4497
4663
|
msgid "The following hosts have errata that apply to them: "
|
4498
4664
|
msgstr "Os hosts a seguir possuem errata que se aplicam à eles:"
|
4499
4665
|
|
4666
|
+
msgid ""
|
4667
|
+
"The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
|
4668
|
+
" %{repos}"
|
4669
|
+
msgstr ""
|
4670
|
+
|
4500
4671
|
msgid "The id of the host to alter"
|
4501
4672
|
msgstr ""
|
4502
4673
|
|
4674
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4675
|
+
msgstr ""
|
4676
|
+
|
4503
4677
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4504
4678
|
msgstr ""
|
4505
4679
|
|
@@ -4548,6 +4722,9 @@ msgstr ""
|
|
4548
4722
|
msgid "The requested resource does not belong to the specified organization"
|
4549
4723
|
msgstr ""
|
4550
4724
|
|
4725
|
+
msgid "The requested traces were not found for this host"
|
4726
|
+
msgstr ""
|
4727
|
+
|
4551
4728
|
msgid "The selected content source and lifecycle environment do not match"
|
4552
4729
|
msgstr ""
|
4553
4730
|
|
@@ -4611,6 +4788,9 @@ msgstr ""
|
|
4611
4788
|
msgid "There's no running synchronization for this smart proxy."
|
4612
4789
|
msgstr ""
|
4613
4790
|
|
4791
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4792
|
+
msgstr ""
|
4793
|
+
|
4614
4794
|
msgid "This Host is not currently registered with subscription-manager."
|
4615
4795
|
msgstr ""
|
4616
4796
|
|
@@ -4620,6 +4800,9 @@ msgstr ""
|
|
4620
4800
|
msgid "This action doesn't support package groups"
|
4621
4801
|
msgstr ""
|
4622
4802
|
|
4803
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4804
|
+
msgstr ""
|
4805
|
+
|
4623
4806
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4624
4807
|
msgstr "Este certificado de depuração permite que um usuário visualize os repositórios em qualquer ambiente de um navegador."
|
4625
4808
|
|
@@ -4750,10 +4933,16 @@ msgstr ""
|
|
4750
4933
|
msgid "Unable to detect puppet path"
|
4751
4934
|
msgstr ""
|
4752
4935
|
|
4753
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4936
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4754
4937
|
msgstr ""
|
4755
4938
|
|
4756
|
-
msgid "Unable to export
|
4939
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4940
|
+
msgstr ""
|
4941
|
+
|
4942
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4943
|
+
msgstr ""
|
4944
|
+
|
4945
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4757
4946
|
msgstr ""
|
4758
4947
|
|
4759
4948
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4968,6 +5157,12 @@ msgstr ""
|
|
4968
5157
|
msgid "Updating Package..."
|
4969
5158
|
msgstr "Atualizando Pacote..."
|
4970
5159
|
|
5160
|
+
msgid "Updating System Purpose for host"
|
5161
|
+
msgstr ""
|
5162
|
+
|
5163
|
+
msgid "Updating System Purpose for host %s"
|
5164
|
+
msgstr ""
|
5165
|
+
|
4971
5166
|
msgid "Updating package group..."
|
4972
5167
|
msgstr "Atualizando grupo do pacotes..."
|
4973
5168
|
|
@@ -5022,9 +5217,15 @@ msgstr ""
|
|
5022
5217
|
msgid "Usage Type"
|
5023
5218
|
msgstr ""
|
5024
5219
|
|
5220
|
+
msgid "Usage of host"
|
5221
|
+
msgstr ""
|
5222
|
+
|
5025
5223
|
msgid "Use remote execution by default"
|
5026
5224
|
msgstr ""
|
5027
5225
|
|
5226
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5227
|
+
msgstr ""
|
5228
|
+
|
5028
5229
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5029
5230
|
msgstr "Usuário '%s' não especificou um ID de organização e não possui uma organização padrão."
|
5030
5231
|
|
@@ -5049,6 +5250,15 @@ msgstr ""
|
|
5049
5250
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5050
5251
|
msgstr ""
|
5051
5252
|
|
5253
|
+
msgid "Verify checksum"
|
5254
|
+
msgstr ""
|
5255
|
+
|
5256
|
+
msgid "Verify checksum for one or more products"
|
5257
|
+
msgstr ""
|
5258
|
+
|
5259
|
+
msgid "Verify checksum of repository contents"
|
5260
|
+
msgstr ""
|
5261
|
+
|
5052
5262
|
msgid "Version"
|
5053
5263
|
msgstr ""
|
5054
5264
|
|
@@ -5066,7 +5276,7 @@ msgstr ""
|
|
5066
5276
|
msgid "Virtual"
|
5067
5277
|
msgstr "Virtual"
|
5068
5278
|
|
5069
|
-
msgid "When Simple Content Access is enabled, hosts
|
5279
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5070
5280
|
msgstr ""
|
5071
5281
|
|
5072
5282
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5135,6 +5345,9 @@ msgstr "Você não pode definir um parent_id de organização. Este recurso est
|
|
5135
5345
|
msgid "You currently don't have any Content Views."
|
5136
5346
|
msgstr ""
|
5137
5347
|
|
5348
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5349
|
+
msgstr ""
|
5350
|
+
|
5138
5351
|
msgid "You do not have permissions to delete %s"
|
5139
5352
|
msgstr "Você não possui permissão para excluir %s"
|
5140
5353
|
|
@@ -5240,6 +5453,9 @@ msgstr "uma organização"
|
|
5240
5453
|
msgid "an ostree branch"
|
5241
5454
|
msgstr ""
|
5242
5455
|
|
5456
|
+
msgid "are only allowed for Yum repositories."
|
5457
|
+
msgstr ""
|
5458
|
+
|
5243
5459
|
msgid "attempted to sync without a feed URL"
|
5244
5460
|
msgstr ""
|
5245
5461
|
|
@@ -5258,6 +5474,9 @@ msgstr ""
|
|
5258
5474
|
msgid "can't be blank"
|
5259
5475
|
msgstr "não pode estar em branco"
|
5260
5476
|
|
5477
|
+
msgid "cannot add filter to import-only view"
|
5478
|
+
msgstr ""
|
5479
|
+
|
5261
5480
|
msgid "cannot be a binary file."
|
5262
5481
|
msgstr "não é possível ser um arquivo binário."
|
5263
5482
|
|
@@ -5313,13 +5532,13 @@ msgstr ""
|
|
5313
5532
|
msgid "checking Pulp task status"
|
5314
5533
|
msgstr ""
|
5315
5534
|
|
5316
|
-
msgid "comma
|
5535
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5317
5536
|
msgstr ""
|
5318
5537
|
|
5319
|
-
msgid "comma
|
5538
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5320
5539
|
msgstr ""
|
5321
5540
|
|
5322
|
-
msgid "comma
|
5541
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5323
5542
|
msgstr ""
|
5324
5543
|
|
5325
5544
|
msgid "composite content view identifier"
|
@@ -5549,9 +5768,6 @@ msgstr ""
|
|
5549
5768
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5550
5769
|
msgstr ""
|
5551
5770
|
|
5552
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5553
|
-
msgstr ""
|
5554
|
-
|
5555
5771
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5556
5772
|
msgstr ""
|
5557
5773
|
|
@@ -5585,6 +5801,9 @@ msgstr ""
|
|
5585
5801
|
msgid "invalid container image name"
|
5586
5802
|
msgstr ""
|
5587
5803
|
|
5804
|
+
msgid "invalid: Repositories can only require one OS version."
|
5805
|
+
msgstr ""
|
5806
|
+
|
5588
5807
|
msgid "is already attached to the capsule"
|
5589
5808
|
msgstr "já está anexado à capsula"
|
5590
5809
|
|
@@ -5624,6 +5843,9 @@ msgstr "O número máximo de hosts de conteúdo registrados"
|
|
5624
5843
|
msgid "maximum size of each ISO in MB"
|
5625
5844
|
msgstr ""
|
5626
5845
|
|
5846
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5847
|
+
msgstr ""
|
5848
|
+
|
5627
5849
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5628
5850
|
msgstr ""
|
5629
5851
|
|
@@ -5645,6 +5867,9 @@ msgstr "precisa ser um valor inteiro positivo"
|
|
5645
5867
|
msgid "must be one of the following: %s"
|
5646
5868
|
msgstr "deve ser um destes a seguir %s "
|
5647
5869
|
|
5870
|
+
msgid "must be one of: %s"
|
5871
|
+
msgstr ""
|
5872
|
+
|
5648
5873
|
msgid "must be unique within one organization"
|
5649
5874
|
msgstr "deve ser único dentro de uma organização"
|
5650
5875
|
|
@@ -5899,6 +6124,9 @@ msgstr ""
|
|
5899
6124
|
msgid "the uuid of the puppet module to associate"
|
5900
6125
|
msgstr "o uuid do módulo puppet a associar"
|
5901
6126
|
|
6127
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6128
|
+
msgstr ""
|
6129
|
+
|
5902
6130
|
msgid "true if the latest version of the component's content view is desired"
|
5903
6131
|
msgstr ""
|
5904
6132
|
|