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/es/katello.po
CHANGED
@@ -22,6 +22,11 @@ msgstr ""
|
|
22
22
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23
23
|
"X-Generator: Zanata 3.6.0\n"
|
24
24
|
|
25
|
+
msgid ""
|
26
|
+
"\n"
|
27
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
28
|
+
msgstr ""
|
29
|
+
|
25
30
|
msgid " %{errata_count} Errata"
|
26
31
|
msgstr ""
|
27
32
|
|
@@ -345,12 +350,18 @@ msgstr ""
|
|
345
350
|
msgid "Action with sub plans"
|
346
351
|
msgstr ""
|
347
352
|
|
353
|
+
msgid "Activation Key(s)"
|
354
|
+
msgstr ""
|
355
|
+
|
348
356
|
msgid "Activation Keys"
|
349
357
|
msgstr "Llaves de activación"
|
350
358
|
|
351
359
|
msgid "Activation key ID"
|
352
360
|
msgstr "ID de llave de activación"
|
353
361
|
|
362
|
+
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."
|
363
|
+
msgstr ""
|
364
|
+
|
354
365
|
msgid "Activation keys and subscriptions can be managed"
|
355
366
|
msgstr "Pueden administrarse llaves de activación y suscripciones "
|
356
367
|
|
@@ -402,6 +413,9 @@ msgstr "Contenido agregado:"
|
|
402
413
|
msgid "Adding content units"
|
403
414
|
msgstr ""
|
404
415
|
|
416
|
+
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}"
|
417
|
+
msgstr ""
|
418
|
+
|
405
419
|
msgid "Addons"
|
406
420
|
msgstr ""
|
407
421
|
|
@@ -506,6 +520,9 @@ msgstr ""
|
|
506
520
|
msgid "Artifacts"
|
507
521
|
msgstr ""
|
508
522
|
|
523
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
524
|
+
msgstr ""
|
525
|
+
|
509
526
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
510
527
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
511
528
|
msgstr[0] "Asignar el host %{count} sin %{taxonomy_single} a %{taxonomy_name}"
|
@@ -551,9 +568,6 @@ msgstr ""
|
|
551
568
|
msgid "Author"
|
552
569
|
msgstr ""
|
553
570
|
|
554
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
555
|
-
msgstr ""
|
556
|
-
|
557
571
|
msgid "Auto Publish - Triggered by '%s'"
|
558
572
|
msgstr ""
|
559
573
|
|
@@ -764,6 +778,9 @@ msgstr ""
|
|
764
778
|
msgid "Cannot delete view while it exists in environments"
|
765
779
|
msgstr "No se puede borrar vista mientras existan entornos"
|
766
780
|
|
781
|
+
msgid "Cannot import a composite content view"
|
782
|
+
msgstr ""
|
783
|
+
|
767
784
|
msgid "Cannot import a custom subscription from a redhat product."
|
768
785
|
msgstr ""
|
769
786
|
|
@@ -819,12 +836,18 @@ msgstr ""
|
|
819
836
|
msgid "Cannot upload Container Image content."
|
820
837
|
msgstr ""
|
821
838
|
|
839
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
840
|
+
msgstr ""
|
841
|
+
|
822
842
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
823
843
|
msgstr ""
|
824
844
|
|
825
845
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
826
846
|
msgstr ""
|
827
847
|
|
848
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
849
|
+
msgstr ""
|
850
|
+
|
828
851
|
msgid "Check services before actions"
|
829
852
|
msgstr ""
|
830
853
|
|
@@ -860,7 +883,7 @@ msgstr ""
|
|
860
883
|
msgid "Combined Profile Update for %s"
|
861
884
|
msgstr ""
|
862
885
|
|
863
|
-
msgid "Comma
|
886
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
864
887
|
msgstr ""
|
865
888
|
|
866
889
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330, author agarcia
|
@@ -916,10 +939,16 @@ msgstr ""
|
|
916
939
|
msgid "Content Download URL"
|
917
940
|
msgstr ""
|
918
941
|
|
942
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
943
|
+
msgstr ""
|
944
|
+
|
919
945
|
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
920
946
|
msgid "Content Hosts"
|
921
947
|
msgstr "Hosts de contenido"
|
922
948
|
|
949
|
+
msgid "Content Migration"
|
950
|
+
msgstr ""
|
951
|
+
|
923
952
|
msgid "Content Source"
|
924
953
|
msgstr "Fuente de contenido"
|
925
954
|
|
@@ -971,9 +1000,15 @@ msgstr ""
|
|
971
1000
|
msgid "Content View Version not set"
|
972
1001
|
msgstr ""
|
973
1002
|
|
1003
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1004
|
+
msgstr ""
|
1005
|
+
|
974
1006
|
msgid "Content View and Environment not set for registration."
|
975
1007
|
msgstr ""
|
976
1008
|
|
1009
|
+
msgid "Content View id"
|
1010
|
+
msgstr ""
|
1011
|
+
|
977
1012
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author gguerrer
|
978
1013
|
msgid "Content Views"
|
979
1014
|
msgstr "Vistas de contenido"
|
@@ -1012,6 +1047,9 @@ msgstr "Etiqueta de la vista de contenido"
|
|
1012
1047
|
msgid "Content view numeric identifier"
|
1013
1048
|
msgstr "Identificador numérico de la vista de contenido"
|
1014
1049
|
|
1050
|
+
msgid "Content view version export history identifier"
|
1051
|
+
msgstr ""
|
1052
|
+
|
1015
1053
|
msgid "Content view version identifier"
|
1016
1054
|
msgstr "Identificador de versión de la vista de contenido"
|
1017
1055
|
|
@@ -1033,13 +1071,13 @@ msgstr ""
|
|
1033
1071
|
msgid "Copy an activation key"
|
1034
1072
|
msgstr "Copiar llave de activación"
|
1035
1073
|
|
1074
|
+
msgid "Copy version units to library"
|
1075
|
+
msgstr ""
|
1076
|
+
|
1036
1077
|
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
1037
1078
|
msgid "Cores: %s"
|
1038
1079
|
msgstr "Núcleos: %s"
|
1039
1080
|
|
1040
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1041
|
-
msgstr ""
|
1042
|
-
|
1043
1081
|
msgid "Could not delete organization '%s'."
|
1044
1082
|
msgstr "No se puede borrar organización '%s'."
|
1045
1083
|
|
@@ -1049,6 +1087,12 @@ msgstr "No se encontró %{content} con ID '%{id}' en repositorio."
|
|
1049
1087
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1050
1088
|
msgstr ""
|
1051
1089
|
|
1090
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1091
|
+
msgstr ""
|
1092
|
+
|
1093
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1094
|
+
msgstr ""
|
1095
|
+
|
1052
1096
|
msgid "Could not find Environment with ids: %s"
|
1053
1097
|
msgstr "No se encontró entorno con los ID: %s"
|
1054
1098
|
|
@@ -1082,9 +1126,6 @@ msgstr ""
|
|
1082
1126
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1083
1127
|
msgstr "No se encontró filtro %{type} con ID %{id}"
|
1084
1128
|
|
1085
|
-
msgid "Couldn't find Content Credential '%s'"
|
1086
|
-
msgstr ""
|
1087
|
-
|
1088
1129
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1089
1130
|
msgstr "No se encontró ContentViewFilter con ID=%s"
|
1090
1131
|
|
@@ -1133,12 +1174,6 @@ msgstr "No se encontró el entorno '%s'"
|
|
1133
1174
|
msgid "Couldn't find errata ids '%s'"
|
1134
1175
|
msgstr "No se encontraron ID de erratas '%s'"
|
1135
1176
|
|
1136
|
-
msgid "Couldn't find gpg key '%s'"
|
1137
|
-
msgstr "No se encontró la llave GPG '%s'"
|
1138
|
-
|
1139
|
-
msgid "Couldn't find host '%s'"
|
1140
|
-
msgstr ""
|
1141
|
-
|
1142
1177
|
msgid "Couldn't find host collection '%s'"
|
1143
1178
|
msgstr "No se encontró la recopilación de hosts '%s'"
|
1144
1179
|
|
@@ -1151,9 +1186,6 @@ msgstr "No se encontró la organización '%s'"
|
|
1151
1186
|
msgid "Couldn't find prior-environment '%s'"
|
1152
1187
|
msgstr "No se encontró el entorno anterior '%s'"
|
1153
1188
|
|
1154
|
-
msgid "Couldn't find product '%s'"
|
1155
|
-
msgstr "No se encontró el producto '%s'"
|
1156
|
-
|
1157
1189
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1158
1190
|
msgid "Couldn't find product with id '%s'"
|
1159
1191
|
msgstr "No se encontró el producto con ID '%s'"
|
@@ -1161,27 +1193,12 @@ msgstr "No se encontró el producto con ID '%s'"
|
|
1161
1193
|
msgid "Couldn't find repository '%s'"
|
1162
1194
|
msgstr "No se encontró el repositorio '%s'"
|
1163
1195
|
|
1164
|
-
msgid "Couldn't find repository set with id '%s'."
|
1165
|
-
msgstr "No se encontró el set de repositorios con ID '%s'"
|
1166
|
-
|
1167
1196
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1168
1197
|
msgstr ""
|
1169
1198
|
|
1170
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1171
|
-
msgstr ""
|
1172
|
-
|
1173
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1174
|
-
msgstr ""
|
1175
|
-
|
1176
|
-
msgid "Couldn't find ssl client key '%s'"
|
1177
|
-
msgstr ""
|
1178
|
-
|
1179
1199
|
msgid "Couldn't find subject of synchronization"
|
1180
1200
|
msgstr "No se encontró asunto de sincronización"
|
1181
1201
|
|
1182
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1183
|
-
msgstr "No se encontró plan de sincronización '%{plan}' en la organización %{org}'"
|
1184
|
-
|
1185
1202
|
msgid "Count"
|
1186
1203
|
msgstr ""
|
1187
1204
|
|
@@ -1252,6 +1269,9 @@ msgstr ""
|
|
1252
1269
|
msgid "Current organization not set."
|
1253
1270
|
msgstr ""
|
1254
1271
|
|
1272
|
+
msgid "Custom"
|
1273
|
+
msgstr ""
|
1274
|
+
|
1255
1275
|
msgid "Custom Content Repositories"
|
1256
1276
|
msgstr "Personalizar repositorios de contenido"
|
1257
1277
|
|
@@ -1459,9 +1479,15 @@ msgstr "Descripción para la nueva versión de vista de contenido publicada"
|
|
1459
1479
|
msgid "Description of the repository"
|
1460
1480
|
msgstr ""
|
1461
1481
|
|
1482
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1483
|
+
msgstr ""
|
1484
|
+
|
1462
1485
|
msgid "Desired quantity of the pool"
|
1463
1486
|
msgstr ""
|
1464
1487
|
|
1488
|
+
msgid "Destination Server name"
|
1489
|
+
msgstr ""
|
1490
|
+
|
1465
1491
|
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
|
1466
1492
|
msgid "Destroy"
|
1467
1493
|
msgstr "Destruir"
|
@@ -1514,6 +1540,9 @@ msgstr "Información"
|
|
1514
1540
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1515
1541
|
msgstr ""
|
1516
1542
|
|
1543
|
+
msgid "Directory containing the exported Content View Version"
|
1544
|
+
msgstr ""
|
1545
|
+
|
1517
1546
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author gguerrer
|
1518
1547
|
msgid "Disable"
|
1519
1548
|
msgstr "Inhabilitar"
|
@@ -1530,6 +1559,9 @@ msgstr ""
|
|
1530
1559
|
msgid "Disable simple content access for a manifest"
|
1531
1560
|
msgstr ""
|
1532
1561
|
|
1562
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1563
|
+
msgstr ""
|
1564
|
+
|
1533
1565
|
msgid "Disconnected mode"
|
1534
1566
|
msgstr ""
|
1535
1567
|
|
@@ -1613,6 +1645,9 @@ msgstr ""
|
|
1613
1645
|
msgid "Enabled Repositories"
|
1614
1646
|
msgstr ""
|
1615
1647
|
|
1648
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1649
|
+
msgstr ""
|
1650
|
+
|
1616
1651
|
msgid "End Date"
|
1617
1652
|
msgstr ""
|
1618
1653
|
|
@@ -1722,7 +1757,10 @@ msgstr ""
|
|
1722
1757
|
msgid "Export CSV"
|
1723
1758
|
msgstr ""
|
1724
1759
|
|
1725
|
-
msgid "Export
|
1760
|
+
msgid "Export Library"
|
1761
|
+
msgstr ""
|
1762
|
+
|
1763
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1726
1764
|
msgstr ""
|
1727
1765
|
|
1728
1766
|
msgid "Export a repository"
|
@@ -1731,9 +1769,15 @@ msgstr ""
|
|
1731
1769
|
msgid "Export as CSV"
|
1732
1770
|
msgstr ""
|
1733
1771
|
|
1772
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1773
|
+
msgstr ""
|
1774
|
+
|
1734
1775
|
msgid "Export to ISO format"
|
1735
1776
|
msgstr ""
|
1736
1777
|
|
1778
|
+
msgid "Export to ISO format."
|
1779
|
+
msgstr ""
|
1780
|
+
|
1737
1781
|
msgid "Exported version"
|
1738
1782
|
msgstr ""
|
1739
1783
|
|
@@ -1875,10 +1919,6 @@ msgstr ""
|
|
1875
1919
|
msgid "GPG Key URL"
|
1876
1920
|
msgstr ""
|
1877
1921
|
|
1878
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1879
|
-
msgid "GPG Keys"
|
1880
|
-
msgstr "llaves GPG"
|
1881
|
-
|
1882
1922
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Gladys Guerrero Lozano
|
1883
1923
|
msgid "Generate and Download"
|
1884
1924
|
msgstr "Generar y descargar"
|
@@ -1985,6 +2025,9 @@ msgstr "La recopilación de hosts está vacía."
|
|
1985
2025
|
msgid "Host content and subscription details"
|
1986
2026
|
msgstr "Detalles del contenido y la suscripción del host"
|
1987
2027
|
|
2028
|
+
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."
|
2029
|
+
msgstr ""
|
2030
|
+
|
1988
2031
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1989
2032
|
msgstr ""
|
1990
2033
|
|
@@ -2009,6 +2052,9 @@ msgstr ""
|
|
2009
2052
|
msgid "Host id to list applicable packages for"
|
2010
2053
|
msgstr ""
|
2011
2054
|
|
2055
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2056
|
+
msgstr ""
|
2057
|
+
|
2012
2058
|
msgid "Host with ID %s already exists in the host collection."
|
2013
2059
|
msgstr ""
|
2014
2060
|
|
@@ -2162,6 +2208,9 @@ msgstr ""
|
|
2162
2208
|
msgid "Identifiers for Lifecycle Environment"
|
2163
2209
|
msgstr ""
|
2164
2210
|
|
2211
|
+
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"
|
2212
|
+
msgstr ""
|
2213
|
+
|
2165
2214
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2166
2215
|
msgstr ""
|
2167
2216
|
|
@@ -2204,6 +2253,15 @@ msgstr ""
|
|
2204
2253
|
msgid "Immediate"
|
2205
2254
|
msgstr ""
|
2206
2255
|
|
2256
|
+
msgid "Import"
|
2257
|
+
msgstr ""
|
2258
|
+
|
2259
|
+
msgid "Import Content View Version"
|
2260
|
+
msgstr ""
|
2261
|
+
|
2262
|
+
msgid "Import Default Content View"
|
2263
|
+
msgstr ""
|
2264
|
+
|
2207
2265
|
msgid "Import Manifest"
|
2208
2266
|
msgstr "Importar manifiesto: "
|
2209
2267
|
|
@@ -2225,12 +2283,27 @@ msgstr ""
|
|
2225
2283
|
msgid "Import a Manifest using the manifest tab above."
|
2226
2284
|
msgstr ""
|
2227
2285
|
|
2286
|
+
msgid "Import a content view version"
|
2287
|
+
msgstr ""
|
2288
|
+
|
2289
|
+
msgid "Import a content view version to the library"
|
2290
|
+
msgstr ""
|
2291
|
+
|
2228
2292
|
msgid "Import facts"
|
2229
2293
|
msgstr "Eventos de importación"
|
2230
2294
|
|
2231
2295
|
msgid "Import uploads into a repository"
|
2232
2296
|
msgstr "Importar cargas a un repositorio"
|
2233
2297
|
|
2298
|
+
msgid "Import-only can not be changed after creation"
|
2299
|
+
msgstr ""
|
2300
|
+
|
2301
|
+
msgid "Import-only content views can not be published directly"
|
2302
|
+
msgstr ""
|
2303
|
+
|
2304
|
+
msgid "Import-only content views will be available in a future version."
|
2305
|
+
msgstr ""
|
2306
|
+
|
2234
2307
|
msgid "Importing manifest into '%{subject}' failed."
|
2235
2308
|
msgstr ""
|
2236
2309
|
|
@@ -2405,6 +2478,9 @@ msgstr ""
|
|
2405
2478
|
msgid "Invalid params provided - date_type must be one of %s"
|
2406
2479
|
msgstr ""
|
2407
2480
|
|
2481
|
+
msgid "Invalid path specified."
|
2482
|
+
msgstr ""
|
2483
|
+
|
2408
2484
|
msgid ""
|
2409
2485
|
"Invalid puppet module parameters specified. \\\n"
|
2410
2486
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2413,6 +2489,12 @@ msgstr ""
|
|
2413
2489
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2414
2490
|
msgstr "Módulo puppet no válido. Asegúrese de que el módulo puppet contiene un archivo metadata.json y está comprimido correctamente."
|
2415
2491
|
|
2492
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2493
|
+
msgstr ""
|
2494
|
+
|
2495
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2496
|
+
msgstr ""
|
2497
|
+
|
2416
2498
|
msgid "Invalid value specified for Container Image repositories."
|
2417
2499
|
msgstr ""
|
2418
2500
|
|
@@ -2422,6 +2504,9 @@ msgstr ""
|
|
2422
2504
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2423
2505
|
msgstr ""
|
2424
2506
|
|
2507
|
+
msgid "Katello"
|
2508
|
+
msgstr ""
|
2509
|
+
|
2425
2510
|
msgid "Katello ID of local pool to update"
|
2426
2511
|
msgstr ""
|
2427
2512
|
|
@@ -2482,9 +2567,6 @@ msgstr ""
|
|
2482
2567
|
msgid "Learn more about adding Subscription Manifests"
|
2483
2568
|
msgstr ""
|
2484
2569
|
|
2485
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2486
|
-
msgstr ""
|
2487
|
-
|
2488
2570
|
msgid "Library lifecycle environments may not be deleted."
|
2489
2571
|
msgstr "La biblioteca de entornos de ciclo de vida puede borrarse."
|
2490
2572
|
|
@@ -2585,6 +2667,9 @@ msgstr "Mostrar erratas"
|
|
2585
2667
|
msgid "List errata available for the content host"
|
2586
2668
|
msgstr "Mostrar erratas disponibles para el host de contenido"
|
2587
2669
|
|
2670
|
+
msgid "List export histories"
|
2671
|
+
msgstr ""
|
2672
|
+
|
2588
2673
|
msgid "List filter rules"
|
2589
2674
|
msgstr "Mostrar reglas de filtro"
|
2590
2675
|
|
@@ -2738,6 +2823,9 @@ msgstr ""
|
|
2738
2823
|
msgid "List srpms"
|
2739
2824
|
msgstr ""
|
2740
2825
|
|
2826
|
+
msgid "List subscriptions"
|
2827
|
+
msgstr ""
|
2828
|
+
|
2741
2829
|
msgid "List sync plans"
|
2742
2830
|
msgstr "Mostrar planes de sincronización"
|
2743
2831
|
|
@@ -2826,6 +2914,9 @@ msgstr "Mensaje"
|
|
2826
2914
|
msgid "Messaging connection"
|
2827
2915
|
msgstr ""
|
2828
2916
|
|
2917
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2918
|
+
msgstr ""
|
2919
|
+
|
2829
2920
|
msgid "Mismatched"
|
2830
2921
|
msgstr ""
|
2831
2922
|
|
@@ -2957,6 +3048,9 @@ msgstr ""
|
|
2957
3048
|
msgid "No errors"
|
2958
3049
|
msgstr "No hay errores"
|
2959
3050
|
|
3051
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3052
|
+
msgstr ""
|
3053
|
+
|
2960
3054
|
msgid "No file uploaded"
|
2961
3055
|
msgstr "No se ha cargado ningún archivo"
|
2962
3056
|
|
@@ -2969,12 +3063,18 @@ msgstr ""
|
|
2969
3063
|
msgid "No hosts registered with subscription-manager found in selection."
|
2970
3064
|
msgstr ""
|
2971
3065
|
|
3066
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3067
|
+
msgstr ""
|
3068
|
+
|
2972
3069
|
msgid "No manifest file uploaded"
|
2973
3070
|
msgstr "No se ha cargado ningún archivo de manifiesto"
|
2974
3071
|
|
2975
3072
|
msgid "No matching content views found"
|
2976
3073
|
msgstr ""
|
2977
3074
|
|
3075
|
+
msgid "No matching repositories found"
|
3076
|
+
msgstr ""
|
3077
|
+
|
2978
3078
|
msgid "No new packages installed"
|
2979
3079
|
msgstr "No hay paquetes nuevos instalados"
|
2980
3080
|
|
@@ -3110,6 +3210,9 @@ msgstr ""
|
|
3110
3210
|
msgid "On-disk location for exported repositories"
|
3111
3211
|
msgstr ""
|
3112
3212
|
|
3213
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3214
|
+
msgstr ""
|
3215
|
+
|
3113
3216
|
msgid "One of parameters [ %s ] required but not specified."
|
3114
3217
|
msgstr "Se necesita uno de los parámetros [ %s ] pero no está especificado."
|
3115
3218
|
|
@@ -3141,6 +3244,9 @@ msgstr "Operadores"
|
|
3141
3244
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3142
3245
|
msgstr ""
|
3143
3246
|
|
3247
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3248
|
+
msgstr ""
|
3249
|
+
|
3144
3250
|
msgid "Organization"
|
3145
3251
|
msgstr "Organización"
|
3146
3252
|
|
@@ -3380,6 +3486,18 @@ msgstr ""
|
|
3380
3486
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3381
3487
|
msgstr "Realizar una actualización incremental en uno o más versiones de vista de contenido"
|
3382
3488
|
|
3489
|
+
msgid "Performs a full-export of a content view version."
|
3490
|
+
msgstr ""
|
3491
|
+
|
3492
|
+
msgid "Performs a full-export of the repositories in library."
|
3493
|
+
msgstr ""
|
3494
|
+
|
3495
|
+
msgid "Performs an incremental-export of a content view version."
|
3496
|
+
msgstr ""
|
3497
|
+
|
3498
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3499
|
+
msgstr ""
|
3500
|
+
|
3383
3501
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3384
3502
|
msgstr "Permiso denegado. El usuario '%{user}' no tiene permiso para acceder a la organización '%{org}'."
|
3385
3503
|
|
@@ -3390,6 +3508,9 @@ msgstr "Físicos"
|
|
3390
3508
|
msgid "Plan numeric identifier"
|
3391
3509
|
msgstr "Identificador numérico del plan"
|
3392
3510
|
|
3511
|
+
msgid "Please add some repositories."
|
3512
|
+
msgstr ""
|
3513
|
+
|
3393
3514
|
msgid "Please enter a positive number above zero"
|
3394
3515
|
msgstr ""
|
3395
3516
|
|
@@ -3417,6 +3538,9 @@ msgstr ""
|
|
3417
3538
|
msgid "Please select one from the list below and you will be redirected."
|
3418
3539
|
msgstr ""
|
3419
3540
|
|
3541
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3542
|
+
msgstr ""
|
3543
|
+
|
3420
3544
|
msgid "Processing metadata"
|
3421
3545
|
msgstr "Procesando metadatos"
|
3422
3546
|
|
@@ -3523,6 +3647,9 @@ msgstr ""
|
|
3523
3647
|
msgid "Pulp"
|
3524
3648
|
msgstr ""
|
3525
3649
|
|
3650
|
+
msgid "Pulp 3 export destination filepath"
|
3651
|
+
msgstr ""
|
3652
|
+
|
3526
3653
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3527
3654
|
msgstr ""
|
3528
3655
|
|
@@ -3577,6 +3704,12 @@ msgstr ""
|
|
3577
3704
|
msgid "Pulp task error"
|
3578
3705
|
msgstr "Error de tarea de Pulp"
|
3579
3706
|
|
3707
|
+
msgid "Pulp user or group unable to read '%s'."
|
3708
|
+
msgstr ""
|
3709
|
+
|
3710
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3711
|
+
msgstr ""
|
3712
|
+
|
3580
3713
|
msgid "Pulpcore"
|
3581
3714
|
msgstr ""
|
3582
3715
|
|
@@ -3653,6 +3786,9 @@ msgstr ""
|
|
3653
3786
|
msgid "Recommended Repositories"
|
3654
3787
|
msgstr ""
|
3655
3788
|
|
3789
|
+
msgid "Red Hat"
|
3790
|
+
msgstr ""
|
3791
|
+
|
3656
3792
|
msgid "Red Hat CDN URL"
|
3657
3793
|
msgstr "Red Hat CDN URL"
|
3658
3794
|
|
@@ -3875,6 +4011,9 @@ msgstr ""
|
|
3875
4011
|
msgid "Resolve Traces"
|
3876
4012
|
msgstr ""
|
3877
4013
|
|
4014
|
+
msgid "Resolve traces for one or more hosts"
|
4015
|
+
msgstr ""
|
4016
|
+
|
3878
4017
|
msgid "Resource"
|
3879
4018
|
msgstr ""
|
3880
4019
|
|
@@ -3954,6 +4093,9 @@ msgstr "Devolver el contenido de una llave GPG de repositorio, que utiliza direc
|
|
3954
4093
|
msgid "Role"
|
3955
4094
|
msgstr ""
|
3956
4095
|
|
4096
|
+
msgid "Role of host"
|
4097
|
+
msgstr ""
|
4098
|
+
|
3957
4099
|
msgid "Run Sync Plan:"
|
3958
4100
|
msgstr ""
|
3959
4101
|
|
@@ -4054,6 +4196,9 @@ msgstr "Nivel de servicio %s"
|
|
4054
4196
|
msgid "Service Level (SLA)"
|
4055
4197
|
msgstr ""
|
4056
4198
|
|
4199
|
+
msgid "Service level of host"
|
4200
|
+
msgstr ""
|
4201
|
+
|
4057
4202
|
msgid "Service level to be used for autoheal"
|
4058
4203
|
msgstr ""
|
4059
4204
|
|
@@ -4158,6 +4303,15 @@ msgstr "Muestra información de versión"
|
|
4158
4303
|
msgid "Simple Content Access"
|
4159
4304
|
msgstr ""
|
4160
4305
|
|
4306
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4307
|
+
msgstr ""
|
4308
|
+
|
4309
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4310
|
+
msgstr ""
|
4311
|
+
|
4312
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4313
|
+
msgstr ""
|
4314
|
+
|
4161
4315
|
msgid "Size of file to upload"
|
4162
4316
|
msgstr ""
|
4163
4317
|
|
@@ -4192,6 +4346,9 @@ msgstr ""
|
|
4192
4346
|
msgid "Specify the list of units in each repo"
|
4193
4347
|
msgstr ""
|
4194
4348
|
|
4349
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4350
|
+
msgstr ""
|
4351
|
+
|
4195
4352
|
msgid "Stacking ID"
|
4196
4353
|
msgstr ""
|
4197
4354
|
|
@@ -4400,6 +4557,9 @@ msgstr "Sincronizar uno o más productos"
|
|
4400
4557
|
msgid "Sync plan identifier to attach"
|
4401
4558
|
msgstr "Identificador del plan de sincronización para vincular"
|
4402
4559
|
|
4560
|
+
msgid "Sync state"
|
4561
|
+
msgstr ""
|
4562
|
+
|
4403
4563
|
msgid "Synced Content"
|
4404
4564
|
msgstr ""
|
4405
4565
|
|
@@ -4462,6 +4622,9 @@ msgstr "¡El entorno '%s' no puede contener un changeset!"
|
|
4462
4622
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4463
4623
|
msgstr ""
|
4464
4624
|
|
4625
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4626
|
+
msgstr ""
|
4627
|
+
|
4465
4628
|
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."
|
4466
4629
|
msgstr ""
|
4467
4630
|
|
@@ -4501,15 +4664,26 @@ msgstr "La fecha de inicio de la regla de filtro de errata tiene un formato o ti
|
|
4501
4664
|
msgid "The erratum type must be an array. Invalid value provided"
|
4502
4665
|
msgstr "El tipo de errata debe ser una matriz. Se ha proporcionado un valor no válido"
|
4503
4666
|
|
4667
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4668
|
+
msgstr ""
|
4669
|
+
|
4504
4670
|
msgid "The field to sort the data by. Defaults to the created date."
|
4505
4671
|
msgstr ""
|
4506
4672
|
|
4507
4673
|
msgid "The following hosts have errata that apply to them: "
|
4508
4674
|
msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
|
4509
4675
|
|
4676
|
+
msgid ""
|
4677
|
+
"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"
|
4678
|
+
" %{repos}"
|
4679
|
+
msgstr ""
|
4680
|
+
|
4510
4681
|
msgid "The id of the host to alter"
|
4511
4682
|
msgstr ""
|
4512
4683
|
|
4684
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4685
|
+
msgstr ""
|
4686
|
+
|
4513
4687
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4514
4688
|
msgstr ""
|
4515
4689
|
|
@@ -4558,6 +4732,9 @@ msgstr ""
|
|
4558
4732
|
msgid "The requested resource does not belong to the specified organization"
|
4559
4733
|
msgstr ""
|
4560
4734
|
|
4735
|
+
msgid "The requested traces were not found for this host"
|
4736
|
+
msgstr ""
|
4737
|
+
|
4561
4738
|
msgid "The selected content source and lifecycle environment do not match"
|
4562
4739
|
msgstr ""
|
4563
4740
|
|
@@ -4621,6 +4798,9 @@ msgstr ""
|
|
4621
4798
|
msgid "There's no running synchronization for this smart proxy."
|
4622
4799
|
msgstr ""
|
4623
4800
|
|
4801
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4802
|
+
msgstr ""
|
4803
|
+
|
4624
4804
|
msgid "This Host is not currently registered with subscription-manager."
|
4625
4805
|
msgstr ""
|
4626
4806
|
|
@@ -4630,6 +4810,9 @@ msgstr ""
|
|
4630
4810
|
msgid "This action doesn't support package groups"
|
4631
4811
|
msgstr ""
|
4632
4812
|
|
4813
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4814
|
+
msgstr ""
|
4815
|
+
|
4633
4816
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4634
4817
|
msgstr "Este certificado permite al usuario ver los repositorios en cualquier entorno desde un navegador."
|
4635
4818
|
|
@@ -4760,10 +4943,16 @@ msgstr ""
|
|
4760
4943
|
msgid "Unable to detect puppet path"
|
4761
4944
|
msgstr ""
|
4762
4945
|
|
4763
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4946
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4764
4947
|
msgstr ""
|
4765
4948
|
|
4766
|
-
msgid "Unable to export
|
4949
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4950
|
+
msgstr ""
|
4951
|
+
|
4952
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4953
|
+
msgstr ""
|
4954
|
+
|
4955
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4767
4956
|
msgstr ""
|
4768
4957
|
|
4769
4958
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4978,6 +5167,12 @@ msgstr ""
|
|
4978
5167
|
msgid "Updating Package..."
|
4979
5168
|
msgstr "Actualizando el paquete..."
|
4980
5169
|
|
5170
|
+
msgid "Updating System Purpose for host"
|
5171
|
+
msgstr ""
|
5172
|
+
|
5173
|
+
msgid "Updating System Purpose for host %s"
|
5174
|
+
msgstr ""
|
5175
|
+
|
4981
5176
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Gladys Guerrero Lozano
|
4982
5177
|
msgid "Updating package group..."
|
4983
5178
|
msgstr "Actualización de grupo de paquetes..."
|
@@ -5033,9 +5228,15 @@ msgstr ""
|
|
5033
5228
|
msgid "Usage Type"
|
5034
5229
|
msgstr ""
|
5035
5230
|
|
5231
|
+
msgid "Usage of host"
|
5232
|
+
msgstr ""
|
5233
|
+
|
5036
5234
|
msgid "Use remote execution by default"
|
5037
5235
|
msgstr ""
|
5038
5236
|
|
5237
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5238
|
+
msgstr ""
|
5239
|
+
|
5039
5240
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5040
5241
|
msgstr "El usuario '%s' no ha especificado un ID de organización y no tiene una organización predeterminada."
|
5041
5242
|
|
@@ -5060,6 +5261,15 @@ msgstr ""
|
|
5060
5261
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5061
5262
|
msgstr ""
|
5062
5263
|
|
5264
|
+
msgid "Verify checksum"
|
5265
|
+
msgstr ""
|
5266
|
+
|
5267
|
+
msgid "Verify checksum for one or more products"
|
5268
|
+
msgstr ""
|
5269
|
+
|
5270
|
+
msgid "Verify checksum of repository contents"
|
5271
|
+
msgstr ""
|
5272
|
+
|
5063
5273
|
msgid "Version"
|
5064
5274
|
msgstr ""
|
5065
5275
|
|
@@ -5077,7 +5287,7 @@ msgstr ""
|
|
5077
5287
|
msgid "Virtual"
|
5078
5288
|
msgstr "Virtual"
|
5079
5289
|
|
5080
|
-
msgid "When Simple Content Access is enabled, hosts
|
5290
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5081
5291
|
msgstr ""
|
5082
5292
|
|
5083
5293
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5146,6 +5356,9 @@ msgstr "No puede establecer un parent_id de organización. Esta funcionalidad es
|
|
5146
5356
|
msgid "You currently don't have any Content Views."
|
5147
5357
|
msgstr ""
|
5148
5358
|
|
5359
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5360
|
+
msgstr ""
|
5361
|
+
|
5149
5362
|
msgid "You do not have permissions to delete %s"
|
5150
5363
|
msgstr "No tiene permisos para borrar %s"
|
5151
5364
|
|
@@ -5253,6 +5466,9 @@ msgstr "una organización"
|
|
5253
5466
|
msgid "an ostree branch"
|
5254
5467
|
msgstr ""
|
5255
5468
|
|
5469
|
+
msgid "are only allowed for Yum repositories."
|
5470
|
+
msgstr ""
|
5471
|
+
|
5256
5472
|
msgid "attempted to sync without a feed URL"
|
5257
5473
|
msgstr ""
|
5258
5474
|
|
@@ -5271,6 +5487,9 @@ msgstr ""
|
|
5271
5487
|
msgid "can't be blank"
|
5272
5488
|
msgstr "No se puede dejar en blanco"
|
5273
5489
|
|
5490
|
+
msgid "cannot add filter to import-only view"
|
5491
|
+
msgstr ""
|
5492
|
+
|
5274
5493
|
msgid "cannot be a binary file."
|
5275
5494
|
msgstr "No puede ser un archivo binario."
|
5276
5495
|
|
@@ -5327,13 +5546,13 @@ msgstr ""
|
|
5327
5546
|
msgid "checking Pulp task status"
|
5328
5547
|
msgstr ""
|
5329
5548
|
|
5330
|
-
msgid "comma
|
5549
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5331
5550
|
msgstr ""
|
5332
5551
|
|
5333
|
-
msgid "comma
|
5552
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5334
5553
|
msgstr ""
|
5335
5554
|
|
5336
|
-
msgid "comma
|
5555
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5337
5556
|
msgstr ""
|
5338
5557
|
|
5339
5558
|
msgid "composite content view identifier"
|
@@ -5563,9 +5782,6 @@ msgstr ""
|
|
5563
5782
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5564
5783
|
msgstr ""
|
5565
5784
|
|
5566
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5567
|
-
msgstr ""
|
5568
|
-
|
5569
5785
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5570
5786
|
msgstr ""
|
5571
5787
|
|
@@ -5599,6 +5815,9 @@ msgstr ""
|
|
5599
5815
|
msgid "invalid container image name"
|
5600
5816
|
msgstr ""
|
5601
5817
|
|
5818
|
+
msgid "invalid: Repositories can only require one OS version."
|
5819
|
+
msgstr ""
|
5820
|
+
|
5602
5821
|
msgid "is already attached to the capsule"
|
5603
5822
|
msgstr "ya está asociada a la Capsule"
|
5604
5823
|
|
@@ -5638,6 +5857,9 @@ msgstr "número máximo de hosts de contenido registrados"
|
|
5638
5857
|
msgid "maximum size of each ISO in MB"
|
5639
5858
|
msgstr ""
|
5640
5859
|
|
5860
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5861
|
+
msgstr ""
|
5862
|
+
|
5641
5863
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5642
5864
|
msgstr ""
|
5643
5865
|
|
@@ -5659,6 +5881,9 @@ msgstr "Debe ser un valor entero positivo."
|
|
5659
5881
|
msgid "must be one of the following: %s"
|
5660
5882
|
msgstr "debe ser uno de lo siguiente: %s"
|
5661
5883
|
|
5884
|
+
msgid "must be one of: %s"
|
5885
|
+
msgstr ""
|
5886
|
+
|
5662
5887
|
msgid "must be unique within one organization"
|
5663
5888
|
msgstr "Debe ser único dentro de una organización"
|
5664
5889
|
|
@@ -5916,6 +6141,9 @@ msgstr ""
|
|
5916
6141
|
msgid "the uuid of the puppet module to associate"
|
5917
6142
|
msgstr "el UUID del módulo Puppet a asociar"
|
5918
6143
|
|
6144
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6145
|
+
msgstr ""
|
6146
|
+
|
5919
6147
|
msgid "true if the latest version of the component's content view is desired"
|
5920
6148
|
msgstr ""
|
5921
6149
|
|