katello 4.0.3 → 4.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +0 -33
- data/app/assets/stylesheets/katello/contents.scss +1 -1
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -11
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -9
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -24
- data/app/controllers/katello/api/v2/api_controller.rb +15 -3
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_exports_controller.rb +1 -14
- data/app/controllers/katello/api/v2/content_imports_controller.rb +38 -15
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +22 -1
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +6 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -59
- data/app/controllers/katello/api/v2/content_views_controller.rb +3 -58
- data/app/controllers/katello/api/v2/host_errata_controller.rb +7 -6
- data/app/controllers/katello/api/v2/host_packages_controller.rb +4 -4
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +18 -22
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +16 -16
- data/app/controllers/katello/api/v2/organizations_controller.rb +2 -1
- data/app/controllers/katello/api/v2/package_groups_controller.rb +4 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +13 -12
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +50 -4
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +7 -1
- data/app/controllers/katello/concerns/api/api_controller.rb +10 -0
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +46 -0
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +8 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +31 -22
- data/app/controllers/katello/concerns/hosts_controller_extensions.rb +0 -8
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +1 -1
- data/app/controllers/katello/concerns/registration_commands_controller_extensions.rb +34 -0
- data/app/helpers/katello/katello_urls_helper.rb +23 -0
- data/app/lib/actions/candlepin/owner/import.rb +10 -3
- data/app/lib/actions/candlepin/product/content_update.rb +1 -1
- data/app/lib/actions/foreman/environment/destroy.rb +2 -2
- data/app/lib/actions/katello/agent_action.rb +1 -6
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +0 -7
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
- data/app/lib/actions/katello/content_view/add_to_environment.rb +9 -7
- data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -10
- data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -3
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -4
- data/app/lib/actions/katello/content_view/publish.rb +21 -31
- data/app/lib/actions/katello/content_view_environment/destroy.rb +0 -5
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +22 -0
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +22 -0
- data/app/lib/actions/katello/content_view_version/destroy.rb +0 -10
- data/app/lib/actions/katello/content_view_version/export.rb +20 -22
- data/app/lib/actions/katello/content_view_version/import.rb +27 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +4 -2
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +12 -67
- data/app/lib/actions/katello/content_view_version/republish_repositories.rb +0 -4
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +11 -0
- data/app/lib/actions/katello/foreman/content_update.rb +0 -3
- data/app/lib/actions/katello/host/auto_attach_subscriptions.rb +0 -4
- data/app/lib/actions/katello/organization/manifest_import.rb +7 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +28 -7
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +2 -2
- data/app/lib/actions/katello/product/create.rb +0 -1
- data/app/lib/actions/katello/repository/check_matching_content.rb +4 -3
- data/app/lib/actions/katello/repository/destroy.rb +1 -1
- data/app/lib/actions/katello/repository/discover.rb +1 -1
- data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -4
- data/app/lib/actions/katello/repository/import_upload.rb +0 -1
- data/app/lib/actions/katello/repository/update.rb +0 -1
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +0 -5
- data/app/lib/actions/pulp/repository/create.rb +1 -7
- data/app/lib/actions/pulp/repository/distributor_publish.rb +2 -10
- data/app/lib/actions/pulp/repository/sync.rb +1 -3
- data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
- data/app/lib/actions/pulp3/content_guard/refresh.rb +10 -6
- data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +57 -0
- data/app/lib/actions/pulp3/content_view_version/create_import_history.rb +34 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +34 -51
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +2 -2
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +13 -1
- data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/sync.rb +1 -0
- data/app/lib/actions/pulp3/repository/refresh_remote.rb +17 -0
- data/app/lib/katello/agent/client_message_handler.rb +3 -11
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +117 -3
- data/app/lib/katello/errors.rb +6 -11
- data/app/lib/katello/event_daemon/monitor.rb +0 -1
- data/app/lib/katello/event_daemon/runner.rb +2 -2
- data/app/lib/katello/event_daemon/services/agent_event_receiver.rb +10 -6
- data/app/lib/katello/http_resource.rb +1 -6
- data/app/lib/katello/logging.rb +11 -6
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/repo_discovery.rb +15 -1
- data/app/lib/katello/resources/candlepin/owner.rb +3 -2
- data/app/lib/katello/resources/candlepin/pool.rb +6 -2
- data/app/lib/katello/resources/candlepin.rb +10 -0
- data/app/lib/katello/util/package.rb +1 -1
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb +0 -6
- data/app/models/katello/authorization/content_view.rb +8 -0
- data/app/models/katello/authorization/content_view_version_import_history.rb +11 -0
- data/app/models/katello/concerns/content_facet_host_extensions.rb +1 -1
- data/app/models/katello/concerns/content_view_filter_rule_common.rb +2 -2
- data/app/models/katello/concerns/host_managed_extensions.rb +1 -32
- data/app/models/katello/concerns/hostgroup_extensions.rb +2 -9
- data/app/models/katello/concerns/http_proxy_extensions.rb +2 -4
- data/app/models/katello/concerns/location_extensions.rb +2 -25
- data/app/models/katello/concerns/operatingsystem_extensions.rb +0 -2
- data/app/models/katello/concerns/organization_extensions.rb +4 -18
- data/app/models/katello/concerns/redhat_extensions.rb +10 -18
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -31
- data/app/models/katello/content_view.rb +17 -113
- data/app/models/katello/content_view_component.rb +5 -0
- data/app/models/katello/content_view_docker_filter_rule.rb +1 -0
- data/app/models/katello/content_view_package_filter_rule.rb +4 -0
- data/app/models/katello/content_view_package_group_filter.rb +1 -0
- data/app/models/katello/content_view_repository.rb +4 -5
- data/app/models/katello/content_view_version.rb +9 -33
- data/app/models/katello/content_view_version_export_history.rb +18 -4
- data/app/models/katello/content_view_version_import_history.rb +42 -0
- data/app/models/katello/erratum.rb +1 -1
- data/app/models/katello/events/delete_pool.rb +19 -0
- data/app/models/katello/glue/candlepin/environment.rb +7 -0
- data/app/models/katello/glue/candlepin/owner.rb +12 -1
- data/app/models/katello/glue/candlepin/pool.rb +42 -25
- data/app/models/katello/glue/provider.rb +3 -6
- data/app/models/katello/glue/pulp/repo.rb +19 -9
- data/app/models/katello/host/content_facet.rb +1 -0
- data/app/models/katello/host/subscription_facet.rb +3 -1
- data/app/models/katello/kt_environment.rb +0 -6
- data/app/models/katello/package_group.rb +4 -0
- data/app/models/katello/ping.rb +15 -4
- data/app/models/katello/pool.rb +9 -0
- data/app/models/katello/product.rb +0 -6
- data/app/models/katello/product_content.rb +3 -1
- data/app/models/katello/pulp_sync_status.rb +0 -10
- data/app/models/katello/repository.rb +20 -35
- data/app/models/katello/root_repository.rb +0 -5
- data/app/models/katello/subscription.rb +10 -0
- data/app/models/katello/sync_plan.rb +7 -0
- data/app/models/setting/content.rb +7 -8
- data/app/presenters/katello/content_view_version_compare_presenter.rb +2 -6
- data/app/presenters/katello/product_content_presenter.rb +3 -5
- data/app/services/cert/certs.rb +3 -7
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/event_handler.rb +22 -22
- data/app/services/katello/candlepin/message_handler.rb +24 -15
- data/app/services/katello/content_view_manager.rb +24 -0
- data/app/services/katello/event_monitor/poller_thread.rb +25 -20
- data/app/services/katello/managed_content_medium_provider.rb +4 -0
- data/app/services/katello/organization_creator.rb +120 -0
- data/app/services/katello/product_content_finder.rb +5 -1
- data/app/services/katello/pulp/pulp_content_unit.rb +6 -6
- data/app/services/katello/pulp/smart_proxy_repository.rb +2 -17
- data/app/services/katello/pulp3/api/ansible_collection.rb +14 -2
- data/app/services/katello/pulp3/api/apt.rb +1 -1
- data/app/services/katello/pulp3/api/content_guard.rb +6 -40
- data/app/services/katello/pulp3/api/core.rb +27 -2
- data/app/services/katello/pulp3/api/docker.rb +1 -1
- data/app/services/katello/pulp3/api/file.rb +5 -1
- data/app/services/katello/pulp3/api/yum.rb +9 -1
- data/app/services/katello/pulp3/content_view_version/export.rb +18 -40
- data/app/services/katello/pulp3/content_view_version/import.rb +75 -30
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +32 -0
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +53 -21
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +47 -0
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +52 -0
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +99 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +1 -1
- data/app/services/katello/pulp3/repository/ansible_collection.rb +5 -1
- data/app/services/katello/pulp3/repository/apt.rb +2 -1
- data/app/services/katello/pulp3/repository/yum.rb +0 -16
- data/app/services/katello/pulp3/repository.rb +20 -1
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +12 -5
- data/app/services/katello/pulp3/task_group.rb +10 -5
- data/app/services/katello/smart_proxy_helper.rb +1 -8
- data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +0 -1
- data/app/services/katello/ui_notifications/system_error.rb +25 -0
- data/app/views/katello/api/v2/content_view_components/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_filters/show.json.rabl +0 -1
- data/app/views/katello/api/v2/{puppet_modules → content_view_version_import_histories}/index.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_import_histories/show.json.rabl +14 -0
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +2 -2
- data/app/views/katello/api/v2/content_view_versions/show.json.rabl +0 -7
- data/app/views/katello/api/v2/content_views/base.json.rabl +20 -9
- data/app/views/katello/api/v2/environments/show.json.rabl +0 -1
- data/app/views/katello/api/v2/package_groups/index.json.rabl +4 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +0 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repository_sets/index.json.rabl +4 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +22 -0
- data/app/views/katello/api/v2/subscriptions/show.json.rabl +1 -1
- data/app/views/overrides/activation_keys/_host_media_type_select.html.erb +1 -1
- data/app/views/overrides/smart_proxies/_download_policy.erb +1 -1
- data/config/initializers/monkeys.rb +0 -1
- data/config/katello.yaml.example +0 -1
- data/config/routes/api/v2.rb +9 -21
- data/config/routes/overrides.rb +1 -2
- data/db/migrate/20140422000001_update_products_add_organization.rb +3 -2
- data/db/migrate/20160701180402_add_sortable_version_to_puppet_modules.rb +2 -0
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +1 -1
- data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +14 -20
- data/db/migrate/20210224160921_remove_disabled_products_from_sync_plans.rb +6 -0
- data/db/migrate/20210302165636_remove_katello_puppet_modules.rb +62 -0
- data/db/migrate/20210309160925_create_katello_content_view_version_import_histories.rb +13 -0
- data/db/migrate/20210318204533_add_import_type_to_import_histories.rb +8 -0
- data/db/migrate/20210319123300_add_foreign_keys_to_import_export_histories.rb +6 -0
- data/db/migrate/20210322142311_add_auth_url_token_to_root_repositories.rb +6 -0
- data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +16 -0
- data/db/migrate/20210409033915_add_created_in_katello_to_taxonomy.rb +9 -0
- data/db/seeds.d/101-locations.rb +0 -3
- data/db/seeds.d/102-organizations.rb +1 -5
- data/db/seeds.d/109-katello-notification-blueprints.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +3 -2
- data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +325 -156
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-route/angular-route.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +21 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +9 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +11 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +18 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +10 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-actions.controller.js +5 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +6 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +14 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +5 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +0 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js +9 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +2 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +3 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -56
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +2 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +21 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +71 -311
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +13 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +21 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +3 -3
- data/lib/katello/engine.rb +16 -15
- data/lib/katello/middleware/organization_created_enforcer.rb +22 -0
- data/lib/katello/permission_creator.rb +12 -28
- data/lib/katello/permissions/host_permissions.rb +3 -2
- data/lib/katello/plugin.rb +6 -19
- data/lib/katello/repository_types/ansible_collection.rb +1 -1
- data/lib/katello/repository_types/deb.rb +1 -1
- data/lib/katello/repository_types/docker.rb +1 -1
- data/lib/katello/repository_types/file.rb +1 -1
- data/lib/katello/repository_types/yum.rb +1 -1
- data/lib/katello/tasks/clean_backend_objects.rake +25 -0
- data/lib/katello/tasks/jenkins.rake +6 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -3
- data/lib/katello/tasks/reimport.rake +0 -1
- data/lib/katello/tasks/repository.rake +0 -30
- data/lib/katello/tasks/update_subscription_facet_backend_data.rake +3 -3
- data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +2 -4
- data/lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake +62 -0
- data/lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake +15 -0
- data/lib/katello/version.rb +1 -1
- data/lib/katello.rb +1 -1
- data/locale/action_names.rb +65 -63
- data/locale/bn/katello.edit.po +1357 -1606
- data/locale/bn/katello.po +465 -744
- data/locale/cs/katello.edit.po +1213 -1087
- data/locale/cs/katello.po +307 -219
- data/locale/de/katello.edit.po +1498 -1520
- data/locale/de/katello.po +589 -625
- data/locale/en/katello.edit.po +1198 -1074
- data/locale/en/katello.po +304 -213
- data/locale/es/katello.edit.po +2344 -2304
- data/locale/es/katello.po +1407 -1407
- data/locale/fr/katello.edit.po +2720 -2642
- data/locale/fr/katello.po +1703 -1750
- data/locale/gu/katello.edit.po +1546 -1797
- data/locale/gu/katello.po +654 -935
- data/locale/hi/katello.edit.po +1545 -1793
- data/locale/hi/katello.po +653 -931
- data/locale/it/katello.edit.po +1323 -1310
- data/locale/it/katello.po +407 -409
- data/locale/ja/katello.edit.po +2645 -2557
- data/locale/ja/katello.po +1646 -1664
- data/locale/katello.pot +1435 -1289
- data/locale/kn/katello.edit.po +1546 -1795
- data/locale/kn/katello.po +654 -933
- data/locale/ko/katello.edit.po +1464 -1449
- data/locale/ko/katello.po +554 -554
- data/locale/mr/katello.edit.po +1545 -1758
- data/locale/mr/katello.po +653 -896
- data/locale/or/katello.edit.po +1546 -1795
- data/locale/or/katello.po +654 -933
- data/locale/pa/katello.edit.po +1541 -1775
- data/locale/pa/katello.po +649 -913
- data/locale/pt/katello.edit.po +1289 -1255
- data/locale/pt/katello.po +398 -394
- data/locale/pt_BR/katello.edit.po +2370 -2315
- data/locale/pt_BR/katello.po +1435 -1421
- data/locale/ru/katello.edit.po +1611 -1608
- data/locale/ru/katello.po +704 -716
- data/locale/ta/katello.edit.po +1358 -1605
- data/locale/ta/katello.po +465 -742
- data/locale/te/katello.edit.po +1545 -1792
- data/locale/te/katello.po +653 -930
- data/locale/zh_CN/katello.edit.po +3052 -2930
- data/locale/zh_CN/katello.po +2055 -2039
- data/locale/zh_TW/katello.edit.po +1571 -1669
- data/locale/zh_TW/katello.po +649 -777
- data/package.json +2 -2
- data/webpack/{scenes/ContentViews/Details/Repositories/RepoAddedStatus.js → components/AddedStatusLabel.js} +5 -5
- data/webpack/components/RoutedTabs/RoutedTabs.js +91 -0
- data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +32 -0
- data/webpack/components/RoutedTabs/index.js +4 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageConstants.js +2 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageSelectors.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/ActivationKeys.test.js +18 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/Force.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/IgnoreSubmanErrors.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/LifeCycleEnvironment.test.js +11 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +58 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +27 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +99 -0
- data/webpack/components/extensions/RegistrationCommands/fields/Force.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +56 -0
- data/webpack/components/extensions/RegistrationCommands/index.js +81 -0
- data/webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js +23 -24
- data/webpack/components/pf3Table/formatters/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +3 -1
- data/webpack/components/pf3Table/formatters/entitlementsValueFormatter.js +16 -0
- data/webpack/containers/Application/overrides.scss +3 -0
- data/webpack/fills_index.js +3 -0
- data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +0 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -1
- data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +28 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +45 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +124 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +161 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +163 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/unpublishedCVComponents.fixtures.json +64 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +67 -7
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +61 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +34 -11
- data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +33 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +117 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +115 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +7 -10
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +49 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +56 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +3 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterPackageGroups.fixtures.json +69 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +103 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json +147 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json +30 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +136 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json +370 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +94 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +0 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +106 -13
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +11 -5
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +5 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +138 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +1 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +57 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +73 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +31 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +64 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +8 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +105 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +728 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +154 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/emptyCVVersion.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -1
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Table/ContentViewVersionCell.js +33 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +17 -22
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +51 -102
- data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +5 -3
- data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +30 -5
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +95 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +11 -5
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +16 -0
- data/webpack/scenes/ContentViews/components/IconWithCount.js +1 -1
- data/webpack/scenes/ContentViews/components/InactiveText.js +15 -0
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +19 -1
- data/webpack/scenes/Subscriptions/Details/SubscriptionPurposeAttributes.js +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +17 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +144 -0
- data/webpack/scenes/Tasks/helpers.js +2 -2
- data/webpack/test-utils/react-testing-lib-wrapper.js +11 -3
- data/webpack/utils/__tests__/useParamsWithHash.test.js +22 -0
- data/webpack/utils/helpers.js +2 -0
- data/webpack/utils/paramsFromHash.js +16 -0
- data/webpack/utils/useUrlParams.js +14 -0
- metadata +122 -206
- data/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb +0 -82
- data/app/controllers/katello/api/v2/puppet_modules_controller.rb +0 -19
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +0 -16
- data/app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb +0 -20
- data/app/lib/actions/candlepin/owner/create.rb +0 -16
- data/app/lib/actions/katello/content_view_puppet_environment/clear.rb +0 -11
- data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +0 -78
- data/app/lib/actions/katello/content_view_puppet_environment/clone_content_for_version.rb +0 -20
- data/app/lib/actions/katello/content_view_puppet_environment/create.rb +0 -34
- data/app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb +0 -23
- data/app/lib/actions/katello/content_view_puppet_environment/destroy.rb +0 -28
- data/app/lib/actions/katello/content_view_puppet_module/destroy.rb +0 -46
- data/app/lib/actions/katello/environment/library_create.rb +0 -35
- data/app/lib/actions/katello/organization/create.rb +0 -38
- data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +0 -36
- data/app/lib/actions/pulp/content_view_puppet_environment/index_content.rb +0 -19
- data/app/lib/actions/pulp/repository/presenters/puppet_presenter.rb +0 -54
- data/app/lib/actions/pulp3/content_migration.rb +0 -31
- data/app/lib/actions/pulp3/content_migration_presenter.rb +0 -59
- data/app/lib/actions/pulp3/content_migration_reset.rb +0 -22
- data/app/lib/katello/foreman.rb +0 -32
- data/app/lib/katello/mapping.rb +0 -31
- data/app/lib/katello/util/hostgroup_facets_helper.rb +0 -126
- data/app/lib/katello/validators/content_view_puppet_module_validator.rb +0 -32
- data/app/models/katello/concerns/environment_extensions.rb +0 -74
- data/app/models/katello/content_view_puppet_environment.rb +0 -116
- data/app/models/katello/content_view_puppet_environment_puppet_module.rb +0 -11
- data/app/models/katello/content_view_puppet_module.rb +0 -63
- data/app/models/katello/puppet_module.rb +0 -77
- data/app/models/katello/repository_puppet_module.rb +0 -7
- data/app/services/katello/pulp/puppet_module.rb +0 -21
- data/app/services/katello/pulp/repository/puppet.rb +0 -68
- data/app/services/katello/pulp3/migration.rb +0 -329
- data/app/services/katello/pulp3/migration_plan.rb +0 -178
- data/app/services/katello/pulp3/migration_switchover.rb +0 -126
- data/app/services/katello/puppet_class_importer_extensions.rb +0 -32
- data/app/views/foreman/hosts/_registration.html.erb +0 -12
- data/app/views/katello/api/v2/activation_keys/product_content.json.rabl +0 -30
- data/app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl +0 -3
- data/app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl +0 -7
- data/app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl +0 -9
- data/app/views/katello/api/v2/content_views/puppet_modules.json.rabl +0 -7
- data/app/views/katello/api/v2/host_subscriptions/content_override.json.rabl +0 -3
- data/app/views/katello/api/v2/host_subscriptions/product_content.json.rabl +0 -29
- data/app/views/katello/api/v2/puppet_modules/backend.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/base.json.rabl +0 -9
- data/app/views/katello/api/v2/puppet_modules/compare.json.rabl +0 -10
- data/app/views/katello/api/v2/puppet_modules/name.json.rabl +0 -3
- data/app/views/katello/api/v2/puppet_modules/names.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/show.json.rabl +0 -4
- data/db/migrate/20210512192745_fix_red_hat_root_repository_arch.rb +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +0 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +0 -38
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +0 -45
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +0 -61
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js +0 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +0 -74
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html +0 -57
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html +0 -64
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html +0 -54
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html +0 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +0 -6903
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +0 -7094
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +0 -7303
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +0 -6895
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +0 -6865
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +0 -6720
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +0 -7077
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +0 -6832
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +0 -6766
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +0 -6703
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html +0 -41
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html +0 -32
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html +0 -52
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html +0 -37
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +0 -35
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js +0 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js +0 -71
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html +0 -47
- data/lib/katello/repository_types/puppet.rb +0 -5
- data/lib/katello/tasks/fix_hostgroup_facets.rake +0 -8
- data/lib/katello/tasks/pulp3_content_switchover.rake +0 -32
- data/lib/katello/tasks/pulp3_migration.rake +0 -41
- data/lib/katello/tasks/pulp3_migration_abort.rake +0 -22
- data/lib/katello/tasks/pulp3_migration_reset.rake +0 -26
- data/lib/katello/tasks/pulp3_migration_stats.rake +0 -41
- data/lib/katello/tasks/pulp3_post_migration_check.rake +0 -51
- data/lib/monkeys/passenger_tee_input.rb +0 -20
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/webpack/components/TabWrapper/TabWrapper.js +0 -26
- data/webpack/components/TabWrapper/index.js +0 -3
- data/webpack/components/TabbedView/TabbedView.js +0 -38
- data/webpack/components/TabbedView/TabbedView.scss +0 -3
- data/webpack/components/TabbedView/index.js +0 -3
- data/webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js +0 -19
- data/webpack/scenes/ContentViews/expansions/VersionsExpansion.js +0 -11
data/locale/it/katello.po
CHANGED
@@ -1,30 +1,30 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the
|
3
|
+
# This file is distributed under the same license as the katello package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
5
|
#
|
5
6
|
# Translators:
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
7
|
+
# Marco Calamaro <ottopodo@gmail.com>, 2020
|
8
|
+
# Andrea Perotti, 2021
|
9
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
10
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
11
|
+
#
|
11
12
|
msgid ""
|
12
13
|
msgstr ""
|
13
|
-
"Project-Id-Version:
|
14
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
14
15
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"PO-Revision-Date:
|
16
|
-
"Last-Translator:
|
17
|
-
"Language-Team:
|
18
|
-
"Language: it\n"
|
16
|
+
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
17
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2021\n"
|
18
|
+
"Language-Team: Italian (https://www.transifex.com/foreman/teams/114/it/)\n"
|
19
19
|
"MIME-Version: 1.0\n"
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
22
|
+
"Language: it\n"
|
22
23
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23
|
-
"X-Generator: Zanata 3.6.0\n"
|
24
24
|
|
25
25
|
msgid ""
|
26
26
|
"\n"
|
27
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
27
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
28
28
|
msgstr ""
|
29
29
|
|
30
30
|
msgid " %{errata_count} Errata"
|
@@ -36,16 +36,15 @@ msgstr ""
|
|
36
36
|
msgid " %{package_count} Package(s)"
|
37
37
|
msgstr ""
|
38
38
|
|
39
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
40
|
-
msgstr ""
|
41
|
-
|
42
39
|
msgid " Content view updated."
|
43
40
|
msgstr ""
|
44
41
|
|
45
42
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
46
43
|
msgstr ""
|
47
44
|
|
48
|
-
|
45
|
+
msgid " RPMs"
|
46
|
+
msgstr ""
|
47
|
+
|
49
48
|
msgid " environment cannot be set to an environment already on its path"
|
50
49
|
msgstr "l'ambiente non può essere impostato su un ambiente già presente nel proprio percorso"
|
51
50
|
|
@@ -279,7 +278,6 @@ msgstr ""
|
|
279
278
|
msgid ", must be unique to major and version id version."
|
280
279
|
msgstr ""
|
281
280
|
|
282
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
283
281
|
msgid ": '%s' is a built-in environment"
|
284
282
|
msgstr ": '%s' è un ambiente interno"
|
285
283
|
|
@@ -295,6 +293,9 @@ msgstr ""
|
|
295
293
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
296
294
|
msgstr ""
|
297
295
|
|
296
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
297
|
+
msgstr ""
|
298
|
+
|
298
299
|
msgid "A backend service [ %s ] is unreachable"
|
299
300
|
msgstr "Impossibile raggiungere un servizio backend [ %s ]"
|
300
301
|
|
@@ -314,7 +315,7 @@ msgid "A list of subscriptions expiring soon"
|
|
314
315
|
msgstr ""
|
315
316
|
|
316
317
|
msgid "A post-promotion summary of hosts with installable errata"
|
317
|
-
msgstr ""
|
318
|
+
msgstr "Un sommario post-avanzamento di host con errata installabili"
|
318
319
|
|
319
320
|
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
320
321
|
msgstr ""
|
@@ -331,6 +332,9 @@ msgstr "Un sommario di errata disponibili e applicabili per gli host"
|
|
331
332
|
msgid "A summary of new errata after a repository is synchronized"
|
332
333
|
msgstr "Un sommario di nuovi errata dopo la sincronizzazione di un repository"
|
333
334
|
|
335
|
+
msgid "About page"
|
336
|
+
msgstr ""
|
337
|
+
|
334
338
|
msgid "Abstract async task"
|
335
339
|
msgstr "Evento asinc astratto"
|
336
340
|
|
@@ -338,18 +342,21 @@ msgid "Accept action timeout"
|
|
338
342
|
msgstr ""
|
339
343
|
|
340
344
|
msgid "Account Number"
|
341
|
-
msgstr ""
|
345
|
+
msgstr "Numero account"
|
346
|
+
|
347
|
+
msgid "Action"
|
348
|
+
msgstr "Azione"
|
342
349
|
|
343
350
|
msgid "Action not allowed for the default smart proxy."
|
344
351
|
msgstr ""
|
345
352
|
|
346
|
-
msgid "Action unauthorized to be performed
|
353
|
+
msgid "Action unauthorized to be performed in this organization."
|
347
354
|
msgstr ""
|
348
355
|
|
349
|
-
msgid "Action
|
356
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
350
357
|
msgstr ""
|
351
358
|
|
352
|
-
msgid "
|
359
|
+
msgid "Action with sub plans"
|
353
360
|
msgstr ""
|
354
361
|
|
355
362
|
msgid "Activation Keys"
|
@@ -358,24 +365,30 @@ msgstr "Chiavi di attivazione"
|
|
358
365
|
msgid "Activation key ID"
|
359
366
|
msgstr "ID chiave di attivazione"
|
360
367
|
|
361
|
-
msgid "Activation key
|
368
|
+
msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
369
|
+
msgstr ""
|
370
|
+
|
371
|
+
msgid "Activation key(s) for Subscription Manager."
|
372
|
+
msgstr ""
|
373
|
+
|
374
|
+
msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
|
362
375
|
msgstr ""
|
363
376
|
|
364
377
|
msgid "Activation keys and subscriptions can be managed"
|
365
378
|
msgstr "È possibile gestire le chiavi di attivazione e le sottoscrizioni."
|
366
379
|
|
367
|
-
msgid "
|
380
|
+
msgid "Activation keys: "
|
368
381
|
msgstr ""
|
369
382
|
|
383
|
+
msgid "Active Subscriptions"
|
384
|
+
msgstr "Sottoscrizioni attive"
|
385
|
+
|
370
386
|
msgid "Active only"
|
371
387
|
msgstr "Solo attivo"
|
372
388
|
|
373
389
|
msgid "Add Subscriptions"
|
374
390
|
msgstr ""
|
375
391
|
|
376
|
-
msgid "Add a puppet module to the content view"
|
377
|
-
msgstr "Aggiungi un modulo puppet alla visualizzazione del contenuto"
|
378
|
-
|
379
392
|
msgid "Add a subscription to a host"
|
380
393
|
msgstr ""
|
381
394
|
|
@@ -409,13 +422,22 @@ msgstr ""
|
|
409
422
|
msgid "Add subscriptions to one or more hosts"
|
410
423
|
msgstr ""
|
411
424
|
|
425
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
426
|
+
msgstr ""
|
427
|
+
|
428
|
+
msgid "Add to this filter using the 'Add package group' button."
|
429
|
+
msgstr ""
|
430
|
+
|
431
|
+
msgid "Added"
|
432
|
+
msgstr ""
|
433
|
+
|
412
434
|
msgid "Added Content:"
|
413
435
|
msgstr "Contenuto aggiunto:"
|
414
436
|
|
415
437
|
msgid "Adding content units"
|
416
438
|
msgstr ""
|
417
439
|
|
418
|
-
msgid "
|
440
|
+
msgid "Additional content"
|
419
441
|
msgstr ""
|
420
442
|
|
421
443
|
msgid "Addons"
|
@@ -475,13 +497,16 @@ msgid "Applicability Batch Size"
|
|
475
497
|
msgstr ""
|
476
498
|
|
477
499
|
msgid "Arch"
|
500
|
+
msgstr "Arch"
|
501
|
+
|
502
|
+
msgid "Architecture"
|
478
503
|
msgstr ""
|
479
504
|
|
480
505
|
msgid "Architecture of content in the repository"
|
481
506
|
msgstr ""
|
482
507
|
|
483
508
|
msgid "Architecture(s)"
|
484
|
-
msgstr ""
|
509
|
+
msgstr "Architetture"
|
485
510
|
|
486
511
|
msgid "Are you sure you want to delete the manifest?"
|
487
512
|
msgstr ""
|
@@ -546,7 +571,7 @@ msgid "Associated location IDs"
|
|
546
571
|
msgstr ""
|
547
572
|
|
548
573
|
msgid "Associations"
|
549
|
-
msgstr ""
|
574
|
+
msgstr "Associazioni"
|
550
575
|
|
551
576
|
msgid "At least one Content View Version must be specified"
|
552
577
|
msgstr "Specificare almeno una versione della visualizzazione dei contenuti"
|
@@ -560,7 +585,6 @@ msgstr "Almeno una chiave di attivazione deve avere un ambiente ciclo di vita e
|
|
560
585
|
msgid "At least one organization must exist."
|
561
586
|
msgstr "Deve essere presente almeno una organizzazione."
|
562
587
|
|
563
|
-
# translation auto-copied from project rhsm-web, version 0.0, document management, author fvalen
|
564
588
|
msgid "Attach a subscription"
|
565
589
|
msgstr "Aggiungi una sottoscrizione "
|
566
590
|
|
@@ -574,7 +598,7 @@ msgid "Attempted to destroy consumer %s from candlepin, but consumer does not ex
|
|
574
598
|
msgstr ""
|
575
599
|
|
576
600
|
msgid "Author"
|
577
|
-
msgstr ""
|
601
|
+
msgstr "Autore"
|
578
602
|
|
579
603
|
msgid "Auto Publish"
|
580
604
|
msgstr ""
|
@@ -618,7 +642,6 @@ msgstr "Architettura di base da abilitare"
|
|
618
642
|
msgid "Batch size to sync repositories in."
|
619
643
|
msgstr ""
|
620
644
|
|
621
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
622
645
|
msgid "Beta"
|
623
646
|
msgstr "Beta"
|
624
647
|
|
@@ -634,11 +657,9 @@ msgstr ""
|
|
634
657
|
msgid "Branches updated"
|
635
658
|
msgstr ""
|
636
659
|
|
637
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
638
660
|
msgid "Bug Fix"
|
639
661
|
msgstr "Bug Fix"
|
640
662
|
|
641
|
-
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
642
663
|
msgid "Bugfix"
|
643
664
|
msgstr "Bugfix"
|
644
665
|
|
@@ -681,11 +702,9 @@ msgstr "È possibile rimuovere il contenuto solo da una Visualizzazione del cont
|
|
681
702
|
msgid "Can only upload to Yum Repositories."
|
682
703
|
msgstr ""
|
683
704
|
|
684
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
685
705
|
msgid "Can't update the '%s' environment"
|
686
706
|
msgstr "Impossibile aggiornare l'ambiente '%s'"
|
687
707
|
|
688
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
689
708
|
msgid "Cancel"
|
690
709
|
msgstr "Cancella"
|
691
710
|
|
@@ -695,10 +714,8 @@ msgstr "Cancella scoperta repositorio"
|
|
695
714
|
msgid "Cancel running smart proxy synchronization"
|
696
715
|
msgstr ""
|
697
716
|
|
698
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
699
|
-
#, fuzzy
|
700
717
|
msgid "Canceled"
|
701
|
-
msgstr "
|
718
|
+
msgstr "Annullato"
|
702
719
|
|
703
720
|
msgid "Cancelled"
|
704
721
|
msgstr ""
|
@@ -754,7 +771,6 @@ msgstr "Impossibile rimuovere '%{view}' a causa di %{dependent} associato: %{nam
|
|
754
771
|
msgid "Cannot delete Red Hat product: %{product}"
|
755
772
|
msgstr ""
|
756
773
|
|
757
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
758
774
|
msgid "Cannot delete from %s, view does not exist there."
|
759
775
|
msgstr "Impossibile eseguire la rimozione da %s, la visuale non esiste."
|
760
776
|
|
@@ -767,13 +783,10 @@ msgstr "Impossibile rimuovere un provider con i rispettivi prodotti"
|
|
767
783
|
msgid "Cannot delete redhat product content"
|
768
784
|
msgstr ""
|
769
785
|
|
770
|
-
msgid "Cannot delete the default Location for Puppet content. If you no longer want this Location, change the default Location for Puppet content under Administer > Settings, tab Content."
|
771
|
-
msgstr ""
|
772
|
-
|
773
786
|
msgid "Cannot delete the default Location for subscribed hosts. If you no longer want this Location, change the default Location for subscribed hosts under Administer > Settings, tab Content."
|
774
787
|
msgstr ""
|
775
788
|
|
776
|
-
msgid "Cannot delete the last Location.
|
789
|
+
msgid "Cannot delete the last Location."
|
777
790
|
msgstr ""
|
778
791
|
|
779
792
|
msgid "Cannot delete version while it is in environment %s"
|
@@ -812,7 +825,6 @@ msgstr ""
|
|
812
825
|
msgid "Cannot publish default content view"
|
813
826
|
msgstr "Impossibile pubblicare la visualizzazione del contenuto predefinita"
|
814
827
|
|
815
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
816
828
|
msgid "Cannot register a system to the '%s' environment"
|
817
829
|
msgstr "Impossibile registrare un sistema con l'ambiente '%s'"
|
818
830
|
|
@@ -840,15 +852,12 @@ msgstr "Impossibile specificare i componenti per visualizzazioni non composite"
|
|
840
852
|
msgid "Cannot specify content for composite views"
|
841
853
|
msgstr "Impossibile specificare il contenuto per le visualizzazioni composite"
|
842
854
|
|
843
|
-
msgid "Cannot sync file:// repositories with On Demand
|
855
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
844
856
|
msgstr ""
|
845
857
|
|
846
858
|
msgid "Cannot upload Container Image content."
|
847
859
|
msgstr ""
|
848
860
|
|
849
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
850
|
-
msgstr ""
|
851
|
-
|
852
861
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
853
862
|
msgstr ""
|
854
863
|
|
@@ -862,7 +871,7 @@ msgid "Check services before actions"
|
|
862
871
|
msgstr ""
|
863
872
|
|
864
873
|
msgid "Checksum"
|
865
|
-
msgstr ""
|
874
|
+
msgstr "Checksum"
|
866
875
|
|
867
876
|
msgid "Checksum of file to upload"
|
868
877
|
msgstr ""
|
@@ -873,17 +882,18 @@ msgstr ""
|
|
873
882
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
874
883
|
msgstr ""
|
875
884
|
|
885
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
886
|
+
msgstr ""
|
887
|
+
|
876
888
|
msgid "Click here to go to the tasks page for the task."
|
877
889
|
msgstr ""
|
878
890
|
|
879
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
880
891
|
msgid "Clone"
|
881
892
|
msgstr "Clona"
|
882
893
|
|
883
894
|
msgid "Close"
|
884
|
-
msgstr ""
|
895
|
+
msgstr "Chiudi"
|
885
896
|
|
886
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
887
897
|
msgid "Collapse All"
|
888
898
|
msgstr "Comprimi tutto"
|
889
899
|
|
@@ -896,7 +906,6 @@ msgstr ""
|
|
896
906
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
897
907
|
msgstr ""
|
898
908
|
|
899
|
-
# translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
|
900
909
|
msgid "Component"
|
901
910
|
msgstr "Componente"
|
902
911
|
|
@@ -913,7 +922,7 @@ msgid "Composite content view"
|
|
913
922
|
msgstr "Visualizzazione contenuto composita"
|
914
923
|
|
915
924
|
msgid "Compute resource IDs"
|
916
|
-
msgstr ""
|
925
|
+
msgstr "ID risorsa di calcolo"
|
917
926
|
|
918
927
|
msgid "Confirm Deletion"
|
919
928
|
msgstr ""
|
@@ -925,7 +934,7 @@ msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to so
|
|
925
934
|
msgstr ""
|
926
935
|
|
927
936
|
msgid "Consumed"
|
928
|
-
msgstr ""
|
937
|
+
msgstr "Consumati"
|
929
938
|
|
930
939
|
msgid "Container Image Manifest"
|
931
940
|
msgstr ""
|
@@ -948,7 +957,6 @@ msgstr ""
|
|
948
957
|
msgid "Container image tag"
|
949
958
|
msgstr ""
|
950
959
|
|
951
|
-
# translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document appe-Glossary_of_Terms, author fvalen
|
952
960
|
msgid "Content"
|
953
961
|
msgstr "Contenuto"
|
954
962
|
|
@@ -962,7 +970,7 @@ msgid "Content Credentials"
|
|
962
970
|
msgstr ""
|
963
971
|
|
964
972
|
msgid "Content Download URL"
|
965
|
-
msgstr ""
|
973
|
+
msgstr "URL per scaricare il contenuto"
|
966
974
|
|
967
975
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
968
976
|
msgstr ""
|
@@ -970,12 +978,6 @@ msgstr ""
|
|
970
978
|
msgid "Content Hosts"
|
971
979
|
msgstr "Host di contenuto"
|
972
980
|
|
973
|
-
msgid "Content Migration"
|
974
|
-
msgstr ""
|
975
|
-
|
976
|
-
msgid "Content Migration Reset"
|
977
|
-
msgstr ""
|
978
|
-
|
979
981
|
msgid "Content Source"
|
980
982
|
msgstr "Sorgente contenuto"
|
981
983
|
|
@@ -985,13 +987,9 @@ msgstr ""
|
|
985
987
|
msgid "Content Types"
|
986
988
|
msgstr ""
|
987
989
|
|
988
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
989
990
|
msgid "Content View"
|
990
991
|
msgstr "Visualizzazione contenuto"
|
991
992
|
|
992
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
993
|
-
msgstr ""
|
994
|
-
|
995
993
|
msgid "Content View %{view}: Versions: %{versions}"
|
996
994
|
msgstr ""
|
997
995
|
|
@@ -1004,8 +1002,6 @@ msgstr ""
|
|
1004
1002
|
msgid "Content View Details"
|
1005
1003
|
msgstr ""
|
1006
1004
|
|
1007
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
1008
|
-
#, fuzzy
|
1009
1005
|
msgid "Content View Filter id"
|
1010
1006
|
msgstr "Panoramica visualizzazioni contenuto"
|
1011
1007
|
|
@@ -1036,7 +1032,6 @@ msgstr ""
|
|
1036
1032
|
msgid "Content View id"
|
1037
1033
|
msgstr ""
|
1038
1034
|
|
1039
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
1040
1035
|
msgid "Content Views"
|
1041
1036
|
msgstr "Visualizzazioni contenuto"
|
1042
1037
|
|
@@ -1046,6 +1041,9 @@ msgstr "File di contenuto da caricare. Può essere un file singolo o un insieme
|
|
1046
1041
|
msgid "Content host must be unregistered before performing this action."
|
1047
1042
|
msgstr ""
|
1048
1043
|
|
1044
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1045
|
+
msgstr ""
|
1046
|
+
|
1049
1047
|
msgid "Content source ID"
|
1050
1048
|
msgstr ""
|
1051
1049
|
|
@@ -1061,7 +1059,6 @@ msgstr ""
|
|
1061
1059
|
msgid "Content view ${name} created"
|
1062
1060
|
msgstr ""
|
1063
1061
|
|
1064
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
1065
1062
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1066
1063
|
msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente '%{env}'"
|
1067
1064
|
|
@@ -1080,6 +1077,9 @@ msgstr "Indentificatore visualizzazione del contenuto"
|
|
1080
1077
|
msgid "Content view label"
|
1081
1078
|
msgstr "Etichetta visualizzazione del contenuto"
|
1082
1079
|
|
1080
|
+
msgid "Content view not provided in the metadata"
|
1081
|
+
msgstr ""
|
1082
|
+
|
1083
1083
|
msgid "Content view numeric identifier"
|
1084
1084
|
msgstr "Indentificatore numerico per la visualizzazione del contenuto"
|
1085
1085
|
|
@@ -1089,6 +1089,9 @@ msgstr ""
|
|
1089
1089
|
msgid "Content view version identifier"
|
1090
1090
|
msgstr "Indentificatore versione della visualizzazione del contenuto"
|
1091
1091
|
|
1092
|
+
msgid "Content view version import history identifier"
|
1093
|
+
msgstr ""
|
1094
|
+
|
1092
1095
|
msgid "Content_Host_Status"
|
1093
1096
|
msgstr ""
|
1094
1097
|
|
@@ -1099,10 +1102,10 @@ msgid "Context"
|
|
1099
1102
|
msgstr ""
|
1100
1103
|
|
1101
1104
|
msgid "Contract"
|
1102
|
-
msgstr ""
|
1105
|
+
msgstr "Contratto"
|
1103
1106
|
|
1104
1107
|
msgid "Contract Number"
|
1105
|
-
msgstr ""
|
1108
|
+
msgstr "Numero contratto"
|
1106
1109
|
|
1107
1110
|
msgid "Copy an activation key"
|
1108
1111
|
msgstr "Copia una chiave di attivazione"
|
@@ -1134,9 +1137,6 @@ msgstr "Impossibile trovare l'ambiente con id: %s"
|
|
1134
1137
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1135
1138
|
msgstr "Impossibile trovare l'ambiente ciclo di vita con id '%{id}'."
|
1136
1139
|
|
1137
|
-
msgid "Could not find Repository for module %s."
|
1138
|
-
msgstr "Impossibile trovare il repositorio per il modulo %s."
|
1139
|
-
|
1140
1140
|
msgid "Could not find a host with id %s"
|
1141
1141
|
msgstr ""
|
1142
1142
|
|
@@ -1152,9 +1152,6 @@ msgstr ""
|
|
1152
1152
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1153
1153
|
msgstr ""
|
1154
1154
|
|
1155
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1156
|
-
msgstr "Impossibile rimuovere l'archivio del modulo puppet. Assicurarsi di aver compresso correttamente il modulo puppet."
|
1157
|
-
|
1158
1155
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1159
1156
|
msgstr ""
|
1160
1157
|
|
@@ -1167,9 +1164,6 @@ msgstr "Impossibile trovare ContentViewFilter con id=%s"
|
|
1167
1164
|
msgid "Couldn't find Organization '%s'."
|
1168
1165
|
msgstr "Impossibile trovare l'organizzazione '%s'."
|
1169
1166
|
|
1170
|
-
msgid "Couldn't find Puppet Module with id '%s'"
|
1171
|
-
msgstr "Impossibile trovare il modulo puppet con id '%s'"
|
1172
|
-
|
1173
1167
|
msgid "Couldn't find activation key '%s'"
|
1174
1168
|
msgstr "Impossibile trovare la chiave di attivazione '%s'"
|
1175
1169
|
|
@@ -1188,7 +1182,6 @@ msgstr "Impossibile trovare l'id '%s' per la visualizzazione del contenuto dell'
|
|
1188
1182
|
msgid "Couldn't find content host environment '%s'"
|
1189
1183
|
msgstr "Impossibile trovare l'ambiente dell'host di contenuto '%s'"
|
1190
1184
|
|
1191
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
1192
1185
|
msgid "Couldn't find content view '%s'"
|
1193
1186
|
msgstr "Impossibile trovare la visualizzazione del contenuto '%s'"
|
1194
1187
|
|
@@ -1231,10 +1224,15 @@ msgstr "Impossibile trovare il soggetto della sincronizzazione"
|
|
1231
1224
|
msgid "Count"
|
1232
1225
|
msgstr ""
|
1233
1226
|
|
1234
|
-
# translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author fvalen
|
1235
1227
|
msgid "Create"
|
1236
1228
|
msgstr "Crea"
|
1237
1229
|
|
1230
|
+
msgid "Create Export History"
|
1231
|
+
msgstr ""
|
1232
|
+
|
1233
|
+
msgid "Create Import History"
|
1234
|
+
msgstr ""
|
1235
|
+
|
1238
1236
|
msgid "Create Package Group"
|
1239
1237
|
msgstr ""
|
1240
1238
|
|
@@ -1295,9 +1293,6 @@ msgstr ""
|
|
1295
1293
|
msgid "Current organization not set."
|
1296
1294
|
msgstr ""
|
1297
1295
|
|
1298
|
-
msgid "Custom"
|
1299
|
-
msgstr ""
|
1300
|
-
|
1301
1296
|
msgid "Custom Content Repositories"
|
1302
1297
|
msgstr "Repositori del contenuto personalizzati"
|
1303
1298
|
|
@@ -1310,6 +1305,9 @@ msgstr "Impossibile disabilitare i repositori personalizzati."
|
|
1310
1305
|
msgid "Database connection"
|
1311
1306
|
msgstr ""
|
1312
1307
|
|
1308
|
+
msgid "Date"
|
1309
|
+
msgstr "Data"
|
1310
|
+
|
1313
1311
|
msgid "Date format is incorrect."
|
1314
1312
|
msgstr "Il formato della data non è corretto."
|
1315
1313
|
|
@@ -1325,7 +1323,6 @@ msgstr ""
|
|
1325
1323
|
msgid "Deb Packages"
|
1326
1324
|
msgstr ""
|
1327
1325
|
|
1328
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
1329
1326
|
msgid "Debug Certificate"
|
1330
1327
|
msgstr "Certificato di debug"
|
1331
1328
|
|
@@ -1341,15 +1338,9 @@ msgstr ""
|
|
1341
1338
|
msgid "Default HTTP proxy"
|
1342
1339
|
msgstr ""
|
1343
1340
|
|
1344
|
-
msgid "Default Location Puppet content"
|
1345
|
-
msgstr ""
|
1346
|
-
|
1347
1341
|
msgid "Default Location subscribed hosts"
|
1348
1342
|
msgstr ""
|
1349
1343
|
|
1350
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1351
|
-
msgstr ""
|
1352
|
-
|
1353
1344
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1354
1345
|
msgstr ""
|
1355
1346
|
|
@@ -1434,7 +1425,6 @@ msgstr ""
|
|
1434
1425
|
msgid "Default user data for new Operating Systems created from synced content"
|
1435
1426
|
msgstr ""
|
1436
1427
|
|
1437
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1438
1428
|
msgid "Delete"
|
1439
1429
|
msgstr "Cancella"
|
1440
1430
|
|
@@ -1447,7 +1437,6 @@ msgstr ""
|
|
1447
1437
|
msgid "Delete Lifecycle Environment"
|
1448
1438
|
msgstr "Cancella ambiente ciclo di vita"
|
1449
1439
|
|
1450
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
1451
1440
|
msgid "Delete Manifest"
|
1452
1441
|
msgstr "Cancella il manifesto"
|
1453
1442
|
|
@@ -1494,7 +1483,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1494
1483
|
msgstr ""
|
1495
1484
|
|
1496
1485
|
msgid "Description"
|
1497
|
-
msgstr ""
|
1486
|
+
msgstr "Descrizione"
|
1498
1487
|
|
1499
1488
|
msgid "Description for the content view"
|
1500
1489
|
msgstr "Descrizione visualizzazione del contenuto"
|
@@ -1565,7 +1554,6 @@ msgstr ""
|
|
1565
1554
|
msgid "Directory containing the exported Content View Version"
|
1566
1555
|
msgstr ""
|
1567
1556
|
|
1568
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
|
1569
1557
|
msgid "Disable"
|
1570
1558
|
msgstr "Disabilita"
|
1571
1559
|
|
@@ -1588,7 +1576,7 @@ msgid "Disconnected mode"
|
|
1588
1576
|
msgstr ""
|
1589
1577
|
|
1590
1578
|
msgid "Discover"
|
1591
|
-
msgstr ""
|
1579
|
+
msgstr "Trova"
|
1592
1580
|
|
1593
1581
|
msgid "Discover Repositories"
|
1594
1582
|
msgstr "Trova repositori"
|
@@ -1603,7 +1591,7 @@ msgid "Do not wait for the update action to finish. Default: true"
|
|
1603
1591
|
msgstr ""
|
1604
1592
|
|
1605
1593
|
msgid "Domain IDs"
|
1606
|
-
msgstr ""
|
1594
|
+
msgstr "ID del dominio"
|
1607
1595
|
|
1608
1596
|
msgid "Download Policy of the capsule, must be one of %s"
|
1609
1597
|
msgstr ""
|
@@ -1614,14 +1602,12 @@ msgstr "Scarica un certificato di debug"
|
|
1614
1602
|
msgid "Duplicate branches specified - %{branches}"
|
1615
1603
|
msgstr ""
|
1616
1604
|
|
1617
|
-
# translation auto-copied from project totem, version 3.8.2, document totem
|
1618
1605
|
msgid "Duration"
|
1619
1606
|
msgstr "Durata"
|
1620
1607
|
|
1621
1608
|
msgid "ERRATA ADVISORY"
|
1622
1609
|
msgstr ""
|
1623
1610
|
|
1624
|
-
# translation auto-copied from project nm-applet, version 0.8.1, document nm-applet
|
1625
1611
|
msgid "Edit"
|
1626
1612
|
msgstr "Modifica"
|
1627
1613
|
|
@@ -1646,7 +1632,6 @@ msgstr ""
|
|
1646
1632
|
msgid "Either set the latest content view or the content view version. Cannot set both"
|
1647
1633
|
msgstr ""
|
1648
1634
|
|
1649
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
|
1650
1635
|
msgid "Enable"
|
1651
1636
|
msgstr "Abilita"
|
1652
1637
|
|
@@ -1663,21 +1648,20 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1663
1648
|
msgstr ""
|
1664
1649
|
|
1665
1650
|
msgid "Enabled"
|
1666
|
-
msgstr ""
|
1651
|
+
msgstr "Abilitato"
|
1667
1652
|
|
1668
1653
|
msgid "Enabled Repositories"
|
1669
|
-
msgstr ""
|
1654
|
+
msgstr "Repositori abilitati"
|
1670
1655
|
|
1671
1656
|
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1672
1657
|
msgstr ""
|
1673
1658
|
|
1674
1659
|
msgid "End Date"
|
1675
|
-
msgstr ""
|
1660
|
+
msgstr "Data di fine"
|
1676
1661
|
|
1677
1662
|
msgid "Ends"
|
1678
|
-
msgstr ""
|
1663
|
+
msgstr "Termina"
|
1679
1664
|
|
1680
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1681
1665
|
msgid "Enhancement"
|
1682
1666
|
msgstr "Miglioramenti"
|
1683
1667
|
|
@@ -1688,7 +1672,7 @@ msgid "Environment"
|
|
1688
1672
|
msgstr "Ambiente"
|
1689
1673
|
|
1690
1674
|
msgid "Environment IDs"
|
1691
|
-
msgstr ""
|
1675
|
+
msgstr "ID ambiente"
|
1692
1676
|
|
1693
1677
|
msgid "Environment cannot be in its own promotion path"
|
1694
1678
|
msgstr "L'ambiente non può trovarsi sul proprio percorso di avanzamento"
|
@@ -1697,12 +1681,11 @@ msgid "Environment identifier"
|
|
1697
1681
|
msgstr ""
|
1698
1682
|
|
1699
1683
|
msgid "Environments"
|
1700
|
-
msgstr ""
|
1684
|
+
msgstr "Ambienti"
|
1701
1685
|
|
1702
1686
|
msgid "Errata"
|
1703
1687
|
msgstr "Errata"
|
1704
1688
|
|
1705
|
-
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
1706
1689
|
msgid "Errata ID"
|
1707
1690
|
msgstr "ID errata"
|
1708
1691
|
|
@@ -1724,7 +1707,6 @@ msgstr ""
|
|
1724
1707
|
msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
|
1725
1708
|
msgstr ""
|
1726
1709
|
|
1727
|
-
# translation auto-copied from project Katello, version 0.1v, document app, author fvalen
|
1728
1710
|
msgid "Erratum"
|
1729
1711
|
msgstr "Erratum"
|
1730
1712
|
|
@@ -1740,7 +1722,6 @@ msgstr "installazione erratum fallita"
|
|
1740
1722
|
msgid "Erratum Install Timed Out"
|
1741
1723
|
msgstr "installazione erratum scaduta"
|
1742
1724
|
|
1743
|
-
# translation auto-copied from project passwd, version 0.79, document passwd
|
1744
1725
|
msgid "Error"
|
1745
1726
|
msgstr "Errore"
|
1746
1727
|
|
@@ -1759,10 +1740,15 @@ msgstr ""
|
|
1759
1740
|
msgid "Exceeds available quantity"
|
1760
1741
|
msgstr ""
|
1761
1742
|
|
1743
|
+
msgid "Exclude"
|
1744
|
+
msgstr "Escludi"
|
1745
|
+
|
1746
|
+
msgid "Excluded"
|
1747
|
+
msgstr ""
|
1748
|
+
|
1762
1749
|
msgid "Exit"
|
1763
1750
|
msgstr ""
|
1764
1751
|
|
1765
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
1766
1752
|
msgid "Expand All"
|
1767
1753
|
msgstr "Espandi tutti"
|
1768
1754
|
|
@@ -1770,7 +1756,7 @@ msgid "Expire soon days"
|
|
1770
1756
|
msgstr ""
|
1771
1757
|
|
1772
1758
|
msgid "Export"
|
1773
|
-
msgstr ""
|
1759
|
+
msgstr "Esporta"
|
1774
1760
|
|
1775
1761
|
msgid "Export CSV"
|
1776
1762
|
msgstr ""
|
@@ -1781,9 +1767,6 @@ msgstr ""
|
|
1781
1767
|
msgid "Export Types"
|
1782
1768
|
msgstr ""
|
1783
1769
|
|
1784
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1785
|
-
msgstr ""
|
1786
|
-
|
1787
1770
|
msgid "Export a repository"
|
1788
1771
|
msgstr ""
|
1789
1772
|
|
@@ -1796,9 +1779,6 @@ msgstr ""
|
|
1796
1779
|
msgid "Export to ISO format"
|
1797
1780
|
msgstr ""
|
1798
1781
|
|
1799
|
-
msgid "Export to ISO format."
|
1800
|
-
msgstr ""
|
1801
|
-
|
1802
1782
|
msgid "Exported version"
|
1803
1783
|
msgstr ""
|
1804
1784
|
|
@@ -1814,11 +1794,6 @@ msgstr ""
|
|
1814
1794
|
msgid "Failed to delete %{host}: %{errors}"
|
1815
1795
|
msgstr ""
|
1816
1796
|
|
1817
|
-
msgid "Failed to download %s module."
|
1818
|
-
msgid_plural "Failed to download %s modules."
|
1819
|
-
msgstr[0] "Impossibile scaricare %s modulo."
|
1820
|
-
msgstr[1] "Impossibile scaricare %s moduli."
|
1821
|
-
|
1822
1797
|
msgid "Failed to download %s package."
|
1823
1798
|
msgid_plural "Failed to download %s packages."
|
1824
1799
|
msgstr[0] "Impossibile scaricare %s pacchetto."
|
@@ -1896,9 +1871,6 @@ msgstr ""
|
|
1896
1871
|
msgid "Filter versions by environment"
|
1897
1872
|
msgstr "Filtra versioni per ambiente"
|
1898
1873
|
|
1899
|
-
msgid "Filter versions by puppet module"
|
1900
|
-
msgstr ""
|
1901
|
-
|
1902
1874
|
msgid "Filter versions by version number"
|
1903
1875
|
msgstr "Filtra versioni per numero della versione"
|
1904
1876
|
|
@@ -1909,7 +1881,7 @@ msgid "Filtered index content"
|
|
1909
1881
|
msgstr ""
|
1910
1882
|
|
1911
1883
|
msgid "Filters"
|
1912
|
-
msgstr ""
|
1884
|
+
msgstr "Filtri"
|
1913
1885
|
|
1914
1886
|
msgid "Finish action timeout"
|
1915
1887
|
msgstr ""
|
@@ -1920,6 +1892,9 @@ msgstr ""
|
|
1920
1892
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
1921
1893
|
msgstr ""
|
1922
1894
|
|
1895
|
+
msgid "Force"
|
1896
|
+
msgstr ""
|
1897
|
+
|
1923
1898
|
msgid ""
|
1924
1899
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
1925
1900
|
" On Demand download policy) are skipped."
|
@@ -1947,9 +1922,8 @@ msgid "Fully entitled"
|
|
1947
1922
|
msgstr ""
|
1948
1923
|
|
1949
1924
|
msgid "GPG Key URL"
|
1950
|
-
msgstr ""
|
1925
|
+
msgstr "URL chiave GPG"
|
1951
1926
|
|
1952
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
1953
1927
|
msgid "Generate and Download"
|
1954
1928
|
msgstr "Genera e scarica"
|
1955
1929
|
|
@@ -1962,6 +1936,9 @@ msgstr ""
|
|
1962
1936
|
msgid "Get all content available, not just that provided by subscriptions"
|
1963
1937
|
msgstr ""
|
1964
1938
|
|
1939
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1940
|
+
msgstr ""
|
1941
|
+
|
1965
1942
|
msgid "Get content and overrides for the host"
|
1966
1943
|
msgstr ""
|
1967
1944
|
|
@@ -1974,12 +1951,6 @@ msgstr "Ottieni le informazioni su un insieme di repositori"
|
|
1974
1951
|
msgid "Get list of available repositories for the repository set"
|
1975
1952
|
msgstr ""
|
1976
1953
|
|
1977
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
1978
|
-
msgstr "Ottieni i nomi dei moduli puppet disponibili da aggiungere alla visualizzazione del contenuto"
|
1979
|
-
|
1980
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
1981
|
-
msgstr "Ottieni i moduli puppet disponibili da aggiungere alla visualizzazione del contenuto"
|
1982
|
-
|
1983
1954
|
msgid "Get status of repo synchronisation for given product"
|
1984
1955
|
msgstr "Ottieni lo stato della sincronizzazione del repositorio per un dato prodotto"
|
1985
1956
|
|
@@ -1996,7 +1967,7 @@ msgid "Group %{id} already created."
|
|
1996
1967
|
msgstr ""
|
1997
1968
|
|
1998
1969
|
msgid "Guests of"
|
1999
|
-
msgstr ""
|
1970
|
+
msgstr "Guest di"
|
2000
1971
|
|
2001
1972
|
msgid "HTTP Proxies"
|
2002
1973
|
msgstr ""
|
@@ -2008,6 +1979,9 @@ msgid "Has to be > 0"
|
|
2008
1979
|
msgstr ""
|
2009
1980
|
|
2010
1981
|
msgid "History"
|
1982
|
+
msgstr "Cronologia"
|
1983
|
+
|
1984
|
+
msgid "History will appear here when the content view is published or promoted."
|
2011
1985
|
msgstr ""
|
2012
1986
|
|
2013
1987
|
msgid "Host"
|
@@ -2068,7 +2042,7 @@ msgid "Host errata advisory"
|
|
2068
2042
|
msgstr ""
|
2069
2043
|
|
2070
2044
|
msgid "Host group IDs"
|
2071
|
-
msgstr ""
|
2045
|
+
msgstr "ID gruppo di host"
|
2072
2046
|
|
2073
2047
|
msgid "Host has not been registered with subscription-manager"
|
2074
2048
|
msgstr ""
|
@@ -2097,6 +2071,9 @@ msgstr ""
|
|
2097
2071
|
msgid "Hosts with Installable Errata"
|
2098
2072
|
msgstr "Host con errata installabili"
|
2099
2073
|
|
2074
|
+
msgid "Hosts: "
|
2075
|
+
msgstr ""
|
2076
|
+
|
2100
2077
|
msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
|
2101
2078
|
msgstr ""
|
2102
2079
|
|
@@ -2250,7 +2227,7 @@ msgstr ""
|
|
2250
2227
|
msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
|
2251
2228
|
msgstr ""
|
2252
2229
|
|
2253
|
-
msgid "If set to true, use
|
2230
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2254
2231
|
msgstr ""
|
2255
2232
|
|
2256
2233
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2277,6 +2254,15 @@ msgstr ""
|
|
2277
2254
|
msgid "Ignorable content can be only set for Yum repositories."
|
2278
2255
|
msgstr ""
|
2279
2256
|
|
2257
|
+
msgid "Ignore errors"
|
2258
|
+
msgstr ""
|
2259
|
+
|
2260
|
+
msgid "Ignore subscription manager errors"
|
2261
|
+
msgstr ""
|
2262
|
+
|
2263
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2264
|
+
msgstr ""
|
2265
|
+
|
2280
2266
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2281
2267
|
msgstr ""
|
2282
2268
|
|
@@ -2284,7 +2270,7 @@ msgid "Immediate"
|
|
2284
2270
|
msgstr ""
|
2285
2271
|
|
2286
2272
|
msgid "Import"
|
2287
|
-
msgstr ""
|
2273
|
+
msgstr "Importa"
|
2288
2274
|
|
2289
2275
|
msgid "Import Content View Version"
|
2290
2276
|
msgstr ""
|
@@ -2302,6 +2288,9 @@ msgid "Import Only"
|
|
2302
2288
|
msgstr ""
|
2303
2289
|
|
2304
2290
|
msgid "Import Puppet classes"
|
2291
|
+
msgstr "Importa classi Puppet"
|
2292
|
+
|
2293
|
+
msgid "Import Types"
|
2305
2294
|
msgstr ""
|
2306
2295
|
|
2307
2296
|
msgid "Import a Manifest"
|
@@ -2334,16 +2323,21 @@ msgstr ""
|
|
2334
2323
|
msgid "Import-only content views can not be published directly"
|
2335
2324
|
msgstr ""
|
2336
2325
|
|
2337
|
-
msgid "Import-only content views will be available in a future version."
|
2338
|
-
msgstr ""
|
2339
|
-
|
2340
2326
|
msgid "Importing manifest into '%{subject}' failed."
|
2341
2327
|
msgstr ""
|
2342
2328
|
|
2343
|
-
# translation auto-copied from project evolution, version 3.8.5, document evolution-3.8
|
2344
2329
|
msgid "In Progress"
|
2345
2330
|
msgstr "In corso"
|
2346
2331
|
|
2332
|
+
msgid "Include"
|
2333
|
+
msgstr "Includi"
|
2334
|
+
|
2335
|
+
msgid "Included"
|
2336
|
+
msgstr ""
|
2337
|
+
|
2338
|
+
msgid "Includes associated content view filter ids in response"
|
2339
|
+
msgstr ""
|
2340
|
+
|
2347
2341
|
msgid "Inclusion type"
|
2348
2342
|
msgstr ""
|
2349
2343
|
|
@@ -2392,7 +2386,7 @@ msgstr "Installa errata applicabile"
|
|
2392
2386
|
msgid "Install Applicable Errata on %s"
|
2393
2387
|
msgstr ""
|
2394
2388
|
|
2395
|
-
msgid "Install content on one or more hosts"
|
2389
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2396
2390
|
msgstr ""
|
2397
2391
|
|
2398
2392
|
msgid "Install errata via Katello interface"
|
@@ -2419,8 +2413,8 @@ msgstr ""
|
|
2419
2413
|
msgid "Install package via Katello interface"
|
2420
2414
|
msgstr ""
|
2421
2415
|
|
2422
|
-
msgid "Install packages remotely"
|
2423
|
-
msgstr "
|
2416
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2417
|
+
msgstr ""
|
2424
2418
|
|
2425
2419
|
msgid "Installable errata from Content View"
|
2426
2420
|
msgstr ""
|
@@ -2434,7 +2428,6 @@ msgstr ""
|
|
2434
2428
|
msgid "Installation of package(s) requested: %{packages}"
|
2435
2429
|
msgstr ""
|
2436
2430
|
|
2437
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
2438
2431
|
msgid "Installed Packages"
|
2439
2432
|
msgstr "Pacchetti installati"
|
2440
2433
|
|
@@ -2451,7 +2444,7 @@ msgid "Instance update"
|
|
2451
2444
|
msgstr ""
|
2452
2445
|
|
2453
2446
|
msgid "Instance-based"
|
2454
|
-
msgstr ""
|
2447
|
+
msgstr "Basato sull'istanza"
|
2455
2448
|
|
2456
2449
|
msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
|
2457
2450
|
msgstr ""
|
@@ -2466,7 +2459,7 @@ msgid "Interval not set correctly"
|
|
2466
2459
|
msgstr ""
|
2467
2460
|
|
2468
2461
|
msgid "Invalid"
|
2469
|
-
msgstr ""
|
2462
|
+
msgstr "Non valido"
|
2470
2463
|
|
2471
2464
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2472
2465
|
msgstr ""
|
@@ -2504,7 +2497,6 @@ msgstr "La regola del filtro specificata non è valida, 'version' non può esser
|
|
2504
2497
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2505
2498
|
msgstr "Parametri non validi inviati nella richiesta per questa operazione. Contattare un amministratore di sistema."
|
2506
2499
|
|
2507
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
2508
2500
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2509
2501
|
msgstr "Inviati parametri non validi. Potrebbe esserci stato un errore di battitura dell'indirizzo. Se continui ad avere problemi contatta un Amministratore."
|
2510
2502
|
|
@@ -2514,20 +2506,6 @@ msgstr ""
|
|
2514
2506
|
msgid "Invalid params provided - date_type must be one of %s"
|
2515
2507
|
msgstr ""
|
2516
2508
|
|
2517
|
-
msgid ""
|
2518
|
-
"Invalid puppet module parameters specified. \\\n"
|
2519
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2520
|
-
msgstr ""
|
2521
|
-
|
2522
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2523
|
-
msgstr "Modulo puppet non valido. Assicurarsi che il modulo puppet contenga il file metadata.json e che lo stesso sia stato compresso correttamente."
|
2524
|
-
|
2525
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2526
|
-
msgstr ""
|
2527
|
-
|
2528
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2529
|
-
msgstr ""
|
2530
|
-
|
2531
2509
|
msgid "Invalid value specified for Container Image repositories."
|
2532
2510
|
msgstr ""
|
2533
2511
|
|
@@ -2537,9 +2515,6 @@ msgstr ""
|
|
2537
2515
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2538
2516
|
msgstr ""
|
2539
2517
|
|
2540
|
-
msgid "Katello"
|
2541
|
-
msgstr ""
|
2542
|
-
|
2543
2518
|
msgid "Katello ID of local pool to update"
|
2544
2519
|
msgstr ""
|
2545
2520
|
|
@@ -2586,7 +2561,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
|
|
2586
2561
|
msgstr ""
|
2587
2562
|
|
2588
2563
|
msgid "Label"
|
2589
|
-
msgstr ""
|
2564
|
+
msgstr "Etichetta"
|
2590
2565
|
|
2591
2566
|
msgid "Label of the content"
|
2592
2567
|
msgstr "Etichetta del contenuto"
|
@@ -2594,9 +2569,18 @@ msgstr "Etichetta del contenuto"
|
|
2594
2569
|
msgid "Last published"
|
2595
2570
|
msgstr ""
|
2596
2571
|
|
2572
|
+
msgid "Last task"
|
2573
|
+
msgstr ""
|
2574
|
+
|
2575
|
+
msgid "Latest (automatically updates)"
|
2576
|
+
msgstr ""
|
2577
|
+
|
2597
2578
|
msgid "Latest Errata"
|
2598
2579
|
msgstr ""
|
2599
2580
|
|
2581
|
+
msgid "Latest version"
|
2582
|
+
msgstr ""
|
2583
|
+
|
2600
2584
|
msgid "Learn more about adding Subscription Manifests"
|
2601
2585
|
msgstr ""
|
2602
2586
|
|
@@ -2624,12 +2608,18 @@ msgstr ""
|
|
2624
2608
|
msgid "Lifecycle Environments"
|
2625
2609
|
msgstr "Ambienti Ciclo di vita"
|
2626
2610
|
|
2611
|
+
msgid "Lifecycle environment"
|
2612
|
+
msgstr ""
|
2613
|
+
|
2627
2614
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2628
2615
|
msgstr "Ambiente ciclo di vita '%{environment}' non assegnato a questo capsule"
|
2629
2616
|
|
2630
2617
|
msgid "Lifecycle environment ID"
|
2631
2618
|
msgstr ""
|
2632
2619
|
|
2620
|
+
msgid "Lifecycle environment for the host."
|
2621
|
+
msgstr ""
|
2622
|
+
|
2633
2623
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2634
2624
|
msgstr ""
|
2635
2625
|
|
@@ -2639,11 +2629,14 @@ msgstr ""
|
|
2639
2629
|
msgid "Limit content to just that available in the activation key's content view version"
|
2640
2630
|
msgstr ""
|
2641
2631
|
|
2632
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2633
|
+
msgstr ""
|
2634
|
+
|
2642
2635
|
msgid "Limit content to just that available in the host's content view version"
|
2643
2636
|
msgstr ""
|
2644
2637
|
|
2645
2638
|
msgid "Limits"
|
2646
|
-
msgstr ""
|
2639
|
+
msgstr "Limiti"
|
2647
2640
|
|
2648
2641
|
msgid "List :resource_id"
|
2649
2642
|
msgstr "Elenca :resource_id"
|
@@ -2675,9 +2668,6 @@ msgstr ""
|
|
2675
2668
|
msgid "List components attached to this content view"
|
2676
2669
|
msgstr ""
|
2677
2670
|
|
2678
|
-
msgid "List content view puppet modules"
|
2679
|
-
msgstr "Elenca i moduli puppet per la visualizzazione del contenuto"
|
2680
|
-
|
2681
2671
|
msgid "List content view versions"
|
2682
2672
|
msgstr "Elenca le versioni della visualizzazione del contenuto"
|
2683
2673
|
|
@@ -2717,6 +2707,9 @@ msgstr ""
|
|
2717
2707
|
msgid "List host collections within an organization"
|
2718
2708
|
msgstr "Elenca gli insiemi di host all'interno di una organizzazione"
|
2719
2709
|
|
2710
|
+
msgid "List import histories"
|
2711
|
+
msgstr ""
|
2712
|
+
|
2720
2713
|
msgid "List module streams available to the host"
|
2721
2714
|
msgstr ""
|
2722
2715
|
|
@@ -2865,7 +2858,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2865
2858
|
msgstr ""
|
2866
2859
|
|
2867
2860
|
msgid "Loading"
|
2868
|
-
msgstr ""
|
2861
|
+
msgstr "Caricamento in corso"
|
2869
2862
|
|
2870
2863
|
msgid "Make copy of a content view"
|
2871
2864
|
msgstr "Esegui una copia di una visualizzazione del contenuto"
|
@@ -2877,13 +2870,13 @@ msgid "Make sure all the component content views are published before publishing
|
|
2877
2870
|
msgstr ""
|
2878
2871
|
|
2879
2872
|
msgid "Manage Manifest"
|
2880
|
-
msgstr ""
|
2873
|
+
msgstr "Gestisci il manifesto"
|
2881
2874
|
|
2882
2875
|
msgid "Manifest"
|
2883
2876
|
msgstr ""
|
2884
2877
|
|
2885
2878
|
msgid "Manifest History"
|
2886
|
-
msgstr ""
|
2879
|
+
msgstr "Cronologia del manifesto"
|
2887
2880
|
|
2888
2881
|
msgid "Manifest deleted"
|
2889
2882
|
msgstr ""
|
@@ -2933,10 +2926,12 @@ msgstr "Impossibile aggiungere una regola sulle date o sulla tipologia, ad un fi
|
|
2933
2926
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
2934
2927
|
msgstr "Impossibile aggiungere una regola per l'id ad un filtro con una regola esistente sulle date o sulla tipologia."
|
2935
2928
|
|
2929
|
+
msgid "Media Selection"
|
2930
|
+
msgstr ""
|
2931
|
+
|
2936
2932
|
msgid "Medium IDs"
|
2937
2933
|
msgstr ""
|
2938
2934
|
|
2939
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
2940
2935
|
msgid "Message"
|
2941
2936
|
msgstr "Messaggio"
|
2942
2937
|
|
@@ -2965,12 +2960,18 @@ msgid "Module stream"
|
|
2965
2960
|
msgstr ""
|
2966
2961
|
|
2967
2962
|
msgid "Multi-entitlement"
|
2968
|
-
msgstr ""
|
2963
|
+
msgstr "Entitlement-multipli"
|
2969
2964
|
|
2970
2965
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
2971
2966
|
msgstr ""
|
2972
2967
|
|
2968
|
+
msgid "N/A"
|
2969
|
+
msgstr ""
|
2970
|
+
|
2973
2971
|
msgid "NA"
|
2972
|
+
msgstr "NA"
|
2973
|
+
|
2974
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2974
2975
|
msgstr ""
|
2975
2976
|
|
2976
2977
|
msgid ""
|
@@ -3040,23 +3041,33 @@ msgstr "Nuovo nome per la visualizzazione del contenuto"
|
|
3040
3041
|
msgid "New packages: %{count} (%{size})."
|
3041
3042
|
msgstr "Nuovi pacchetti: %{count} (%{size})."
|
3042
3043
|
|
3044
|
+
msgid "New version is available: Version ${latestVersion}"
|
3045
|
+
msgstr ""
|
3046
|
+
|
3043
3047
|
msgid "No"
|
3048
|
+
msgstr "No"
|
3049
|
+
|
3050
|
+
msgid "No Activation Keys selected"
|
3051
|
+
msgstr ""
|
3052
|
+
|
3053
|
+
msgid "No Activation keys to select"
|
3044
3054
|
msgstr ""
|
3045
3055
|
|
3046
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
3047
3056
|
msgid "No Content View"
|
3048
3057
|
msgstr "Nessuna visualizzazione del contenuto"
|
3049
3058
|
|
3050
3059
|
msgid "No Content found"
|
3051
3060
|
msgstr ""
|
3052
3061
|
|
3062
|
+
msgid "No Lifecycle environment to select"
|
3063
|
+
msgstr ""
|
3064
|
+
|
3053
3065
|
msgid "No Manifest Uploaded"
|
3054
3066
|
msgstr ""
|
3055
3067
|
|
3056
3068
|
msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
|
3057
3069
|
msgstr ""
|
3058
3070
|
|
3059
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3060
3071
|
msgid "No Service Level Preference"
|
3061
3072
|
msgstr "Nessuna preferenza del livello del servizio"
|
3062
3073
|
|
@@ -3081,12 +3092,24 @@ msgstr ""
|
|
3081
3092
|
msgid "No content view history events found."
|
3082
3093
|
msgstr "Non è stato trovato alcun evento per la cronologia della visualizzazione del contenuto."
|
3083
3094
|
|
3095
|
+
msgid "No content views belong to ${label}"
|
3096
|
+
msgstr ""
|
3097
|
+
|
3084
3098
|
msgid "No content_view_version_ids provided"
|
3085
3099
|
msgstr "Nessun content_view_version_ids fornito"
|
3086
3100
|
|
3101
|
+
msgid "No description"
|
3102
|
+
msgstr ""
|
3103
|
+
|
3087
3104
|
msgid "No enabled repositories match your search criteria."
|
3088
3105
|
msgstr ""
|
3089
3106
|
|
3107
|
+
msgid "No environment"
|
3108
|
+
msgstr ""
|
3109
|
+
|
3110
|
+
msgid "No environments"
|
3111
|
+
msgstr ""
|
3112
|
+
|
3090
3113
|
msgid "No errata has been specified."
|
3091
3114
|
msgstr ""
|
3092
3115
|
|
@@ -3120,15 +3143,30 @@ msgstr ""
|
|
3120
3143
|
msgid "No matching filters found"
|
3121
3144
|
msgstr ""
|
3122
3145
|
|
3146
|
+
msgid "No matching history record found"
|
3147
|
+
msgstr ""
|
3148
|
+
|
3149
|
+
msgid "No matching package groups found."
|
3150
|
+
msgstr ""
|
3151
|
+
|
3123
3152
|
msgid "No matching repositories found"
|
3124
3153
|
msgstr ""
|
3125
3154
|
|
3155
|
+
msgid "No matching rules found."
|
3156
|
+
msgstr ""
|
3157
|
+
|
3158
|
+
msgid "No matching version found"
|
3159
|
+
msgstr ""
|
3160
|
+
|
3126
3161
|
msgid "No new packages installed"
|
3127
3162
|
msgstr "Nessun nuovo pacchetto installato"
|
3128
3163
|
|
3129
3164
|
msgid "No new packages."
|
3130
3165
|
msgstr "Nessun nuovo pacchetto."
|
3131
3166
|
|
3167
|
+
msgid "No package groups have been added to this filter."
|
3168
|
+
msgstr ""
|
3169
|
+
|
3132
3170
|
msgid "No packages removed"
|
3133
3171
|
msgstr "Nessun pacchetto rimosso"
|
3134
3172
|
|
@@ -3174,6 +3212,9 @@ msgstr ""
|
|
3174
3212
|
msgid "No repository sets match your search criteria."
|
3175
3213
|
msgstr ""
|
3176
3214
|
|
3215
|
+
msgid "No rules have been added to this filter."
|
3216
|
+
msgstr ""
|
3217
|
+
|
3177
3218
|
msgid "No services defined, is this class extended?"
|
3178
3219
|
msgstr ""
|
3179
3220
|
|
@@ -3210,12 +3251,18 @@ msgstr ""
|
|
3210
3251
|
msgid "Not a number"
|
3211
3252
|
msgstr ""
|
3212
3253
|
|
3254
|
+
msgid "Not added"
|
3255
|
+
msgstr ""
|
3256
|
+
|
3213
3257
|
msgid "Not all necessary pulp workers running at %s."
|
3214
3258
|
msgstr ""
|
3215
3259
|
|
3216
3260
|
msgid "Not running"
|
3217
3261
|
msgstr ""
|
3218
3262
|
|
3263
|
+
msgid "Not yet published"
|
3264
|
+
msgstr ""
|
3265
|
+
|
3219
3266
|
msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
|
3220
3267
|
msgstr "Nota bene: Il numero di parentesi riflette tutti gli errata applicabili dell'ambiente Libreria e disponibili all'host. Sarà necessario promuovere questo contenuto alla visualizzazione del contenuto rilevante per renderlo disponibile."
|
3221
3268
|
|
@@ -3285,16 +3332,12 @@ msgstr "Per una organizzazione è permesso solo un provider di Red Hat"
|
|
3285
3332
|
msgid "Only returns id and quantity fields"
|
3286
3333
|
msgstr ""
|
3287
3334
|
|
3288
|
-
# translation auto-copied from project [RHEL] [SECURITY] Security Guide, version 6.4, document Tcp_Wrappers, author fvalen
|
3289
3335
|
msgid "Operators"
|
3290
3336
|
msgstr "Operatori"
|
3291
3337
|
|
3292
3338
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3293
3339
|
msgstr ""
|
3294
3340
|
|
3295
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3296
|
-
msgstr ""
|
3297
|
-
|
3298
3341
|
msgid "Organization"
|
3299
3342
|
msgstr "Organizzazione"
|
3300
3343
|
|
@@ -3307,6 +3350,9 @@ msgstr "ID organizzazione"
|
|
3307
3350
|
msgid "Organization ID is required"
|
3308
3351
|
msgstr ""
|
3309
3352
|
|
3353
|
+
msgid "Organization Information not provided."
|
3354
|
+
msgstr ""
|
3355
|
+
|
3310
3356
|
msgid "Organization cannot be blank."
|
3311
3357
|
msgstr "L'Organizzazione non può essere vuota."
|
3312
3358
|
|
@@ -3325,7 +3371,6 @@ msgstr ""
|
|
3325
3371
|
msgid "Organization required"
|
3326
3372
|
msgstr "Organizzazione necessaria"
|
3327
3373
|
|
3328
|
-
# translation auto-copied from project control-center, version 3.8.6, document gnome-control-center-2.0
|
3329
3374
|
msgid "Other"
|
3330
3375
|
msgstr "Altro"
|
3331
3376
|
|
@@ -3350,11 +3395,9 @@ msgstr ""
|
|
3350
3395
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3351
3396
|
msgstr ""
|
3352
3397
|
|
3353
|
-
# translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
|
3354
3398
|
msgid "Package"
|
3355
3399
|
msgstr "Pacchetto"
|
3356
3400
|
|
3357
|
-
# translation auto-copied from project Katello, version 0.1v, document app, author fvalen
|
3358
3401
|
msgid "Package Group"
|
3359
3402
|
msgstr "Gruppo di pacchetti"
|
3360
3403
|
|
@@ -3463,22 +3506,21 @@ msgstr "Aggiornamento pacchetto scaduto"
|
|
3463
3506
|
msgid "Package Update scheduled by %s"
|
3464
3507
|
msgstr "Aggiornamento pacchetto programmato per il %s"
|
3465
3508
|
|
3466
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
3467
3509
|
msgid "Package group update canceled"
|
3468
3510
|
msgstr "Aggiornamento gruppo di pacchetti cancellato"
|
3469
3511
|
|
3470
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
3471
3512
|
msgid "Package group update complete"
|
3472
3513
|
msgstr "Aggiornamento gruppo di pacchetti completato"
|
3473
3514
|
|
3474
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
3475
3515
|
msgid "Package group update failed"
|
3476
3516
|
msgstr "Aggiornamento gruppo di pacchetti fallito"
|
3477
3517
|
|
3478
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
3479
3518
|
msgid "Package group update timed out"
|
3480
3519
|
msgstr "Aggiornamento gruppo di pacchetti scaduto"
|
3481
3520
|
|
3521
|
+
msgid "Package groups"
|
3522
|
+
msgstr ""
|
3523
|
+
|
3482
3524
|
msgid "Package identifiers to filter content by"
|
3483
3525
|
msgstr ""
|
3484
3526
|
|
@@ -3504,7 +3546,7 @@ msgid "Partially entitled"
|
|
3504
3546
|
msgstr ""
|
3505
3547
|
|
3506
3548
|
msgid "Partition template IDs"
|
3507
|
-
msgstr ""
|
3549
|
+
msgstr "ID template di partizione"
|
3508
3550
|
|
3509
3551
|
msgid "Password of the upstream repository user used for authentication"
|
3510
3552
|
msgstr ""
|
@@ -3518,11 +3560,9 @@ msgstr ""
|
|
3518
3560
|
msgid "Path for ssl key used for pulp server auth"
|
3519
3561
|
msgstr ""
|
3520
3562
|
|
3521
|
-
# translation auto-copied from project virt-manager, version 0.10.0, document virt-manager
|
3522
3563
|
msgid "Paused"
|
3523
3564
|
msgstr "In pausa"
|
3524
3565
|
|
3525
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3526
3566
|
msgid "Pending"
|
3527
3567
|
msgstr "In attesa"
|
3528
3568
|
|
@@ -3547,13 +3587,15 @@ msgstr ""
|
|
3547
3587
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3548
3588
|
msgstr "Permesso negato. L'utente '%{user}' non presenta alcun permesso per accedere all'organizzazione '%{org}'. "
|
3549
3589
|
|
3550
|
-
# translation auto-copied from project subscription-manager, version 1.10.10, document keys
|
3551
3590
|
msgid "Physical"
|
3552
3591
|
msgstr "Fisico"
|
3553
3592
|
|
3554
3593
|
msgid "Plan numeric identifier"
|
3555
3594
|
msgstr "Identificatore numerico della programmazione"
|
3556
3595
|
|
3596
|
+
msgid "Please add some content views."
|
3597
|
+
msgstr ""
|
3598
|
+
|
3557
3599
|
msgid "Please add some repositories."
|
3558
3600
|
msgstr ""
|
3559
3601
|
|
@@ -3582,7 +3624,7 @@ msgid "Please select an organization to view subscription totals."
|
|
3582
3624
|
msgstr ""
|
3583
3625
|
|
3584
3626
|
msgid "Please select one from the list below and you will be redirected."
|
3585
|
-
msgstr ""
|
3627
|
+
msgstr "Selezionarne uno dall'elenco di seguito riportato e verrai ridirezionato."
|
3586
3628
|
|
3587
3629
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3588
3630
|
msgstr ""
|
@@ -3593,18 +3635,17 @@ msgstr "Processazione metadati"
|
|
3593
3635
|
msgid "Processing metadata."
|
3594
3636
|
msgstr "Processazione metadati."
|
3595
3637
|
|
3596
|
-
# translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author fvalen
|
3597
3638
|
msgid "Product"
|
3598
3639
|
msgstr "Prodotto"
|
3599
3640
|
|
3600
3641
|
msgid "Product Content"
|
3601
|
-
msgstr ""
|
3642
|
+
msgstr "Contenuto del prodotto"
|
3602
3643
|
|
3603
3644
|
msgid "Product Create"
|
3604
3645
|
msgstr ""
|
3605
3646
|
|
3606
3647
|
msgid "Product ID"
|
3607
|
-
msgstr ""
|
3648
|
+
msgstr "ID del prodotto"
|
3608
3649
|
|
3609
3650
|
msgid "Product and Repositories"
|
3610
3651
|
msgstr "Prodotto e repositori"
|
@@ -3666,13 +3707,13 @@ msgid "Promotion to Environment"
|
|
3666
3707
|
msgstr ""
|
3667
3708
|
|
3668
3709
|
msgid "Provided Products"
|
3669
|
-
msgstr ""
|
3710
|
+
msgstr "Prodotti forniti"
|
3670
3711
|
|
3671
3712
|
msgid "Provided pool with id %s has no upstream entitlement"
|
3672
3713
|
msgstr ""
|
3673
3714
|
|
3674
3715
|
msgid "Provisioning template IDs"
|
3675
|
-
msgstr ""
|
3716
|
+
msgstr "ID template di provisioning"
|
3676
3717
|
|
3677
3718
|
msgid "Proxies"
|
3678
3719
|
msgstr ""
|
@@ -3680,7 +3721,6 @@ msgstr ""
|
|
3680
3721
|
msgid "Public key block in DER encoding or certificate content"
|
3681
3722
|
msgstr ""
|
3682
3723
|
|
3683
|
-
# translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
|
3684
3724
|
msgid "Publish"
|
3685
3725
|
msgstr "Pubblica"
|
3686
3726
|
|
@@ -3697,20 +3737,20 @@ msgid "Pulling remote branches. Downloaded %s units."
|
|
3697
3737
|
msgstr ""
|
3698
3738
|
|
3699
3739
|
msgid "Pulp"
|
3700
|
-
msgstr ""
|
3740
|
+
msgstr "Pulp"
|
3701
3741
|
|
3702
3742
|
msgid "Pulp 3 export destination filepath"
|
3703
3743
|
msgstr ""
|
3704
3744
|
|
3705
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3706
|
-
msgstr ""
|
3707
|
-
|
3708
3745
|
msgid "Pulp Consumer %s has already been removed"
|
3709
3746
|
msgstr ""
|
3710
3747
|
|
3711
3748
|
msgid "Pulp Docker registry port"
|
3712
3749
|
msgstr ""
|
3713
3750
|
|
3751
|
+
msgid "Pulp bulk load size"
|
3752
|
+
msgstr ""
|
3753
|
+
|
3714
3754
|
msgid "Pulp client cert"
|
3715
3755
|
msgstr ""
|
3716
3756
|
|
@@ -3759,35 +3799,8 @@ msgstr "Errore attività di Pulp"
|
|
3759
3799
|
msgid "Pulpcore"
|
3760
3800
|
msgstr ""
|
3761
3801
|
|
3762
|
-
msgid "Puppet Environment"
|
3763
|
-
msgstr "Ambiente puppet"
|
3764
|
-
|
3765
|
-
msgid "Puppet Module"
|
3766
|
-
msgstr "Modulo puppet"
|
3767
|
-
|
3768
|
-
msgid ""
|
3769
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3770
|
-
" '%{name}'"
|
3771
|
-
msgstr ""
|
3772
|
-
|
3773
|
-
msgid ""
|
3774
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3775
|
-
" not exist"
|
3776
|
-
msgstr ""
|
3777
|
-
|
3778
|
-
msgid ""
|
3779
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3780
|
-
" exist"
|
3781
|
-
msgstr ""
|
3782
|
-
|
3783
|
-
msgid "Puppet Modules"
|
3784
|
-
msgstr "Moduli puppet"
|
3785
|
-
|
3786
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3787
|
-
msgstr "Conflitto modulo puppet: '%{mod}' è in %{versions}."
|
3788
|
-
|
3789
3802
|
msgid "Quantity"
|
3790
|
-
msgstr ""
|
3803
|
+
msgstr "Quantità"
|
3791
3804
|
|
3792
3805
|
msgid "Quantity must not be above ${pool.available}"
|
3793
3806
|
msgstr ""
|
@@ -3816,12 +3829,14 @@ msgstr ""
|
|
3816
3829
|
msgid "RPM"
|
3817
3830
|
msgstr ""
|
3818
3831
|
|
3819
|
-
|
3832
|
+
msgid "RPM name"
|
3833
|
+
msgstr ""
|
3834
|
+
|
3820
3835
|
msgid "RPMs"
|
3821
3836
|
msgstr "RPM"
|
3822
3837
|
|
3823
3838
|
msgid "Realm IDs"
|
3824
|
-
msgstr ""
|
3839
|
+
msgstr "ID realm"
|
3825
3840
|
|
3826
3841
|
msgid "Reboot required"
|
3827
3842
|
msgstr ""
|
@@ -3832,14 +3847,11 @@ msgstr ""
|
|
3832
3847
|
msgid "Recommended Repositories"
|
3833
3848
|
msgstr ""
|
3834
3849
|
|
3835
|
-
msgid "Red Hat"
|
3836
|
-
msgstr ""
|
3837
|
-
|
3838
3850
|
msgid "Red Hat CDN URL"
|
3839
3851
|
msgstr "Red Hat CDN URL"
|
3840
3852
|
|
3841
3853
|
msgid "Red Hat Provider Details"
|
3842
|
-
msgstr ""
|
3854
|
+
msgstr "Dettagli sul provider di Red Hat"
|
3843
3855
|
|
3844
3856
|
msgid "Red Hat Repositories"
|
3845
3857
|
msgstr "Repositori di Red Hat"
|
@@ -3854,7 +3866,7 @@ msgid "Red Hat repositories cannot be manipulated."
|
|
3854
3866
|
msgstr "I repositori di Red Hat non possono essere alterati."
|
3855
3867
|
|
3856
3868
|
msgid "Refresh"
|
3857
|
-
msgstr ""
|
3869
|
+
msgstr "Aggiorna"
|
3858
3870
|
|
3859
3871
|
msgid "Refresh Manifest"
|
3860
3872
|
msgstr "Aggiorna il manifesto"
|
@@ -3896,7 +3908,7 @@ msgid "Reload data"
|
|
3896
3908
|
msgstr "Ricarica i dati"
|
3897
3909
|
|
3898
3910
|
msgid "Remote action:"
|
3899
|
-
msgstr ""
|
3911
|
+
msgstr "Azione remota:"
|
3900
3912
|
|
3901
3913
|
msgid "Removal of package group(s) requested: %{groups}"
|
3902
3914
|
msgstr ""
|
@@ -3916,13 +3928,13 @@ msgstr "Rimuovi le versioni e le associazioni"
|
|
3916
3928
|
msgid "Remove a content view from an environment"
|
3917
3929
|
msgstr "Rimuovi una visualizzazione del contenuto da un ambiente"
|
3918
3930
|
|
3919
|
-
msgid "Remove
|
3920
|
-
msgstr "
|
3931
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
3932
|
+
msgstr ""
|
3921
3933
|
|
3922
3934
|
msgid "Remove components from the content view"
|
3923
3935
|
msgstr ""
|
3924
3936
|
|
3925
|
-
msgid "Remove content on one or more hosts"
|
3937
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
3926
3938
|
msgstr ""
|
3927
3939
|
|
3928
3940
|
msgid "Remove content view version"
|
@@ -3980,16 +3992,14 @@ msgid "Removing Package..."
|
|
3980
3992
|
msgstr "Rimozione pacchetto in corso..."
|
3981
3993
|
|
3982
3994
|
msgid "Repo Type"
|
3983
|
-
msgstr ""
|
3995
|
+
msgstr "Tipo di repository"
|
3984
3996
|
|
3985
|
-
# translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author fvalen
|
3986
3997
|
msgid "Repositories"
|
3987
|
-
msgstr "
|
3998
|
+
msgstr "Repository"
|
3988
3999
|
|
3989
4000
|
msgid "Repositories from published Content Views are not allowed."
|
3990
4001
|
msgstr "Non sono permessi i repository delle Visualizzazioni del contenuto pubblicate."
|
3991
4002
|
|
3992
|
-
# translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document appe-Glossary_of_Terms
|
3993
4003
|
msgid "Repository"
|
3994
4004
|
msgstr "Repository"
|
3995
4005
|
|
@@ -4017,7 +4027,6 @@ msgstr "Il repositorio non può essere disabilitato poichè è stato già promos
|
|
4017
4027
|
msgid "Repository content type must be 'yum' to export."
|
4018
4028
|
msgstr ""
|
4019
4029
|
|
4020
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
4021
4030
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4022
4031
|
msgstr "Il repositorio è già stato clonato per %{cv_name} nell'ambiente %{to_env}"
|
4023
4032
|
|
@@ -4039,7 +4048,6 @@ msgstr "Repositorio non trovato"
|
|
4039
4048
|
msgid "Repository set name to search on"
|
4040
4049
|
msgstr "Nome insieme repositori da cercare"
|
4041
4050
|
|
4042
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
4043
4051
|
msgid "Repository sets are not available for custom products."
|
4044
4052
|
msgstr "Gli insiemi di repositori non sono applicabili ai prodotti personalizzati."
|
4045
4053
|
|
@@ -4052,9 +4060,6 @@ msgstr ""
|
|
4052
4060
|
msgid "Requires Virt-Who"
|
4053
4061
|
msgstr ""
|
4054
4062
|
|
4055
|
-
msgid "Reset Puppet Environment"
|
4056
|
-
msgstr ""
|
4057
|
-
|
4058
4063
|
msgid "Resolve Traces"
|
4059
4064
|
msgstr ""
|
4060
4065
|
|
@@ -4062,7 +4067,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4062
4067
|
msgstr ""
|
4063
4068
|
|
4064
4069
|
msgid "Resource"
|
4065
|
-
msgstr ""
|
4070
|
+
msgstr "Risorsa"
|
4066
4071
|
|
4067
4072
|
msgid "Restart Services via Katello interface"
|
4068
4073
|
msgstr ""
|
@@ -4070,7 +4075,6 @@ msgstr ""
|
|
4070
4075
|
msgid "Restrict Composite Content View promotion"
|
4071
4076
|
msgstr ""
|
4072
4077
|
|
4073
|
-
# translation auto-copied from project CFSE-cli, version sam-1.2, document keys, author fvalen
|
4074
4078
|
msgid "Result"
|
4075
4079
|
msgstr "Risultato"
|
4076
4080
|
|
@@ -4134,16 +4138,21 @@ msgstr ""
|
|
4134
4138
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4135
4139
|
msgstr "Ritorna il contenuto di una chiave gpg del repositorio usata direttamente da yum"
|
4136
4140
|
|
4137
|
-
msgid "
|
4141
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4138
4142
|
msgstr ""
|
4139
4143
|
|
4144
|
+
msgid "Role"
|
4145
|
+
msgstr "Ruolo"
|
4146
|
+
|
4140
4147
|
msgid "Role of host"
|
4141
4148
|
msgstr ""
|
4142
4149
|
|
4150
|
+
msgid "Roles"
|
4151
|
+
msgstr "Ruoli"
|
4152
|
+
|
4143
4153
|
msgid "Run Sync Plan:"
|
4144
4154
|
msgstr ""
|
4145
4155
|
|
4146
|
-
# translation auto-copied from project virt-manager, version 0.10.0, document virt-manager
|
4147
4156
|
msgid "Running"
|
4148
4157
|
msgstr "In esecuzione"
|
4149
4158
|
|
@@ -4160,13 +4169,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4160
4169
|
msgstr ""
|
4161
4170
|
|
4162
4171
|
msgid "Save"
|
4163
|
-
msgstr ""
|
4172
|
+
msgstr "Salva"
|
4164
4173
|
|
4165
|
-
msgid "Schedule errata for installation"
|
4166
|
-
msgstr "
|
4174
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4175
|
+
msgstr ""
|
4167
4176
|
|
4168
4177
|
msgid "Search"
|
4169
|
-
msgstr ""
|
4178
|
+
msgstr "Cerca"
|
4170
4179
|
|
4171
4180
|
msgid "Search pattern (defaults to '*')"
|
4172
4181
|
msgstr ""
|
@@ -4183,7 +4192,6 @@ msgstr ""
|
|
4183
4192
|
msgid "Search string for hosts to perform an action on"
|
4184
4193
|
msgstr ""
|
4185
4194
|
|
4186
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4187
4195
|
msgid "Security"
|
4188
4196
|
msgstr "Sicurezza"
|
4189
4197
|
|
@@ -4194,21 +4202,19 @@ msgid "Security errata installable"
|
|
4194
4202
|
msgstr ""
|
4195
4203
|
|
4196
4204
|
msgid "Select"
|
4197
|
-
msgstr ""
|
4205
|
+
msgstr "Seleziona"
|
4198
4206
|
|
4199
|
-
# translation auto-copied from project gnote, version 3.8.1, document gnote, author fvalen
|
4200
4207
|
msgid "Select All"
|
4201
4208
|
msgstr "Seleziona tutto"
|
4202
4209
|
|
4203
4210
|
msgid "Select Content View"
|
4204
4211
|
msgstr "Seleziona visualizzazione contenuto"
|
4205
4212
|
|
4206
|
-
# translation auto-copied from project gnote, version 3.8.1, document gnote, author fvalen
|
4207
4213
|
msgid "Select None"
|
4208
4214
|
msgstr "Seleziona nessuno"
|
4209
4215
|
|
4210
4216
|
msgid "Select Organization"
|
4211
|
-
msgstr ""
|
4217
|
+
msgstr "Seleziona organizzazione"
|
4212
4218
|
|
4213
4219
|
msgid "Select Value"
|
4214
4220
|
msgstr ""
|
@@ -4232,7 +4238,7 @@ msgid "Select the installation media that will be used to provision this host. C
|
|
4232
4238
|
msgstr ""
|
4233
4239
|
|
4234
4240
|
msgid "Service Level"
|
4235
|
-
msgstr ""
|
4241
|
+
msgstr "Livello di servizio"
|
4236
4242
|
|
4237
4243
|
msgid "Service Level %s"
|
4238
4244
|
msgstr "Livello %s del servizio"
|
@@ -4264,13 +4270,9 @@ msgstr ""
|
|
4264
4270
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4265
4271
|
msgstr ""
|
4266
4272
|
|
4267
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4268
|
-
msgstr ""
|
4269
|
-
|
4270
4273
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4271
4274
|
msgstr ""
|
4272
4275
|
|
4273
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4274
4276
|
msgid "Severity"
|
4275
4277
|
msgstr "Severità"
|
4276
4278
|
|
@@ -4286,9 +4288,6 @@ msgstr "Mostra una visualzizazione del contenuto"
|
|
4286
4288
|
msgid "Show a content view component"
|
4287
4289
|
msgstr ""
|
4288
4290
|
|
4289
|
-
msgid "Show a content view puppet module"
|
4290
|
-
msgstr "Mostra un modulo puppet per la visualizzazione del contenuto"
|
4291
|
-
|
4292
4291
|
msgid "Show a content view's history"
|
4293
4292
|
msgstr "Mostra la cronologia di una visualizzazione del contenuto"
|
4294
4293
|
|
@@ -4362,9 +4361,8 @@ msgid "Skipped pulp_auth check after failed pulp check"
|
|
4362
4361
|
msgstr ""
|
4363
4362
|
|
4364
4363
|
msgid "Smart proxy IDs"
|
4365
|
-
msgstr ""
|
4364
|
+
msgstr "ID Smart proxy"
|
4366
4365
|
|
4367
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4368
4366
|
msgid "Sockets: %s"
|
4369
4367
|
msgstr "Socket: %s"
|
4370
4368
|
|
@@ -4380,10 +4378,28 @@ msgstr ""
|
|
4380
4378
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4381
4379
|
msgstr ""
|
4382
4380
|
|
4383
|
-
msgid "
|
4381
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4384
4382
|
msgstr ""
|
4385
4383
|
|
4386
|
-
msgid "Something went wrong while retrieving the
|
4384
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
|
+
msgstr ""
|
4386
|
+
|
4387
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4388
|
+
msgstr ""
|
4389
|
+
|
4390
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4391
|
+
msgstr ""
|
4392
|
+
|
4393
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4394
|
+
msgstr ""
|
4395
|
+
|
4396
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4397
|
+
msgstr ""
|
4398
|
+
|
4399
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4400
|
+
msgstr ""
|
4401
|
+
|
4402
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4387
4403
|
msgstr ""
|
4388
4404
|
|
4389
4405
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4399,28 +4415,25 @@ msgid "Split the exported content into archives no greater than the specified si
|
|
4399
4415
|
msgstr ""
|
4400
4416
|
|
4401
4417
|
msgid "Stacking ID"
|
4402
|
-
msgstr ""
|
4418
|
+
msgstr "ID dello stack"
|
4403
4419
|
|
4404
|
-
# translation auto-copied from project subscription-manager, version 1.10.10, document keys
|
4405
4420
|
msgid "Start Date"
|
4406
4421
|
msgstr "Data d'inizio"
|
4407
4422
|
|
4408
4423
|
msgid "Start Date and Time can't be blank"
|
4409
4424
|
msgstr "La data e l'ora d'inizio non possono essere lasciati vuoti"
|
4410
4425
|
|
4411
|
-
# translation auto-copied from project Katello, version 0.1v, document app, author fvalen
|
4412
4426
|
msgid "Start Time"
|
4413
4427
|
msgstr "Ora d'inizio"
|
4414
4428
|
|
4415
4429
|
msgid "Starts"
|
4416
|
-
msgstr ""
|
4430
|
+
msgstr "Inizia"
|
4417
4431
|
|
4418
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
4419
4432
|
msgid "Status"
|
4420
4433
|
msgstr "Stato"
|
4421
4434
|
|
4422
4435
|
msgid "Storage"
|
4423
|
-
msgstr ""
|
4436
|
+
msgstr "Storage"
|
4424
4437
|
|
4425
4438
|
msgid "Stream"
|
4426
4439
|
msgstr ""
|
@@ -4429,12 +4442,11 @@ msgid "Streams based on the host based on their status"
|
|
4429
4442
|
msgstr ""
|
4430
4443
|
|
4431
4444
|
msgid "Submit"
|
4432
|
-
msgstr ""
|
4445
|
+
msgstr "Invia"
|
4433
4446
|
|
4434
4447
|
msgid "Subnet IDs"
|
4435
|
-
msgstr ""
|
4448
|
+
msgstr "ID sottoreti"
|
4436
4449
|
|
4437
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
4438
4450
|
msgid "Subscription"
|
4439
4451
|
msgstr "Sottoscrizione"
|
4440
4452
|
|
@@ -4442,16 +4454,16 @@ msgid "Subscription Allocation"
|
|
4442
4454
|
msgstr ""
|
4443
4455
|
|
4444
4456
|
msgid "Subscription Details"
|
4445
|
-
msgstr ""
|
4457
|
+
msgstr "Informazioni sulla sottoscrizione"
|
4446
4458
|
|
4447
4459
|
msgid "Subscription ID"
|
4448
4460
|
msgstr "ID sottoscrizione"
|
4449
4461
|
|
4450
4462
|
msgid "Subscription Info"
|
4451
|
-
msgstr ""
|
4463
|
+
msgstr "Informazioni sottoscrizione"
|
4452
4464
|
|
4453
4465
|
msgid "Subscription Manifest"
|
4454
|
-
msgstr ""
|
4466
|
+
msgstr "Manifesto della sottoscrizione"
|
4455
4467
|
|
4456
4468
|
msgid "Subscription Manifest validity check"
|
4457
4469
|
msgstr ""
|
@@ -4496,7 +4508,7 @@ msgid "Subscription was not persisted - %{error_message}"
|
|
4496
4508
|
msgstr ""
|
4497
4509
|
|
4498
4510
|
msgid "Subscriptions"
|
4499
|
-
msgstr ""
|
4511
|
+
msgstr "Sottoscrizioni"
|
4500
4512
|
|
4501
4513
|
msgid "Subscriptions Expiring in 120 Days"
|
4502
4514
|
msgstr ""
|
@@ -4537,37 +4549,36 @@ msgstr "Rimossi con successo %{count} host di contenuto dall'insieme %{host_col
|
|
4537
4549
|
msgid "Successfully synchronized."
|
4538
4550
|
msgstr ""
|
4539
4551
|
|
4540
|
-
# translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author fvalen
|
4541
4552
|
msgid "Summary"
|
4542
4553
|
msgstr "Sommario"
|
4543
4554
|
|
4544
4555
|
msgid "Support Type"
|
4545
|
-
msgstr ""
|
4556
|
+
msgstr "Tipo di supporto"
|
4546
4557
|
|
4547
4558
|
msgid "Supported Content Types"
|
4548
4559
|
msgstr ""
|
4549
4560
|
|
4550
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4551
4561
|
msgid "Sync Canceled"
|
4552
4562
|
msgstr "Sincronizzazione cancellata"
|
4553
4563
|
|
4564
|
+
msgid "Sync Connection Timeout"
|
4565
|
+
msgstr ""
|
4566
|
+
|
4554
4567
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4555
4568
|
msgstr ""
|
4556
4569
|
|
4557
4570
|
msgid "Sync Incomplete"
|
4558
4571
|
msgstr "Sincronizzazione non completata"
|
4559
4572
|
|
4560
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4561
4573
|
msgid "Sync Overview"
|
4562
4574
|
msgstr "Panoramica sincronizzazione"
|
4563
4575
|
|
4564
4576
|
msgid "Sync Plan"
|
4565
|
-
msgstr ""
|
4577
|
+
msgstr "Programmazione di sincronizzazione"
|
4566
4578
|
|
4567
4579
|
msgid "Sync Plan: "
|
4568
4580
|
msgstr ""
|
4569
4581
|
|
4570
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4571
4582
|
msgid "Sync Plans"
|
4572
4583
|
msgstr "Programmazione sincronizzazione"
|
4573
4584
|
|
@@ -4577,7 +4588,6 @@ msgstr ""
|
|
4577
4588
|
msgid "Sync Smart Proxies after Content View promotion"
|
4578
4589
|
msgstr ""
|
4579
4590
|
|
4580
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4581
4591
|
msgid "Sync Status"
|
4582
4592
|
msgstr "Stato della sincronizzazione"
|
4583
4593
|
|
@@ -4596,7 +4606,6 @@ msgstr ""
|
|
4596
4606
|
msgid "Sync capsule"
|
4597
4607
|
msgstr ""
|
4598
4608
|
|
4599
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4600
4609
|
msgid "Sync complete."
|
4601
4610
|
msgstr "Sincronizzazione completa."
|
4602
4611
|
|
@@ -4621,7 +4630,6 @@ msgstr ""
|
|
4621
4630
|
msgid "Synchronize"
|
4622
4631
|
msgstr "Sincronizza"
|
4623
4632
|
|
4624
|
-
# translation auto-copied from project Katello, version 0.1v, document app, author fvalen
|
4625
4633
|
msgid "Synchronize Now"
|
4626
4634
|
msgstr "Sincronizza ora"
|
4627
4635
|
|
@@ -4649,9 +4657,12 @@ msgstr "Sincronizzazione completata"
|
|
4649
4657
|
msgid "System Purpose"
|
4650
4658
|
msgstr ""
|
4651
4659
|
|
4652
|
-
msgid "
|
4660
|
+
msgid "System Status"
|
4653
4661
|
msgstr ""
|
4654
4662
|
|
4663
|
+
msgid "Tags"
|
4664
|
+
msgstr "Tag"
|
4665
|
+
|
4655
4666
|
msgid "Task"
|
4656
4667
|
msgstr ""
|
4657
4668
|
|
@@ -4665,15 +4676,17 @@ msgid "Task detail"
|
|
4665
4676
|
msgstr ""
|
4666
4677
|
|
4667
4678
|
msgid "Temporary"
|
4668
|
-
msgstr ""
|
4679
|
+
msgstr "Temporaneo"
|
4669
4680
|
|
4670
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4671
4681
|
msgid "The '%s' environment cannot contain a changeset!"
|
4672
4682
|
msgstr "L'ambiente '%s' non può contenere un changeset!"
|
4673
4683
|
|
4674
4684
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4675
4685
|
msgstr ""
|
4676
4686
|
|
4687
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4688
|
+
msgstr ""
|
4689
|
+
|
4677
4690
|
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."
|
4678
4691
|
msgstr ""
|
4679
4692
|
|
@@ -4704,6 +4717,12 @@ msgstr "Descrizione per le nuove versioni della visualizzazione del contenuto ge
|
|
4704
4717
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4705
4718
|
msgstr ""
|
4706
4719
|
|
4720
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4721
|
+
msgstr ""
|
4722
|
+
|
4723
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4724
|
+
msgstr ""
|
4725
|
+
|
4707
4726
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4708
4727
|
msgstr "La data di fine della regola del filtro dell'erratum non ha un formato o una tipologia valida."
|
4709
4728
|
|
@@ -4727,6 +4746,11 @@ msgid ""
|
|
4727
4746
|
" %{repos}"
|
4728
4747
|
msgstr ""
|
4729
4748
|
|
4749
|
+
msgid ""
|
4750
|
+
"The following repositories provided in the import metadata have an incorrect content type or provider type. Make sure the export and import repositories are of the same type before importing\n"
|
4751
|
+
" %{repos}"
|
4752
|
+
msgstr ""
|
4753
|
+
|
4730
4754
|
msgid "The id of the host to alter"
|
4731
4755
|
msgstr ""
|
4732
4756
|
|
@@ -4739,6 +4763,9 @@ msgstr ""
|
|
4739
4763
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4740
4764
|
msgstr ""
|
4741
4765
|
|
4766
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4767
|
+
msgstr ""
|
4768
|
+
|
4742
4769
|
msgid "The offset in the file where the content starts"
|
4743
4770
|
msgstr "L'offset nel file all'inizio del contenuto"
|
4744
4771
|
|
@@ -4746,7 +4773,7 @@ msgid "The order to sort the results in. ['asc', 'desc'] Defaults to 'desc'."
|
|
4746
4773
|
msgstr ""
|
4747
4774
|
|
4748
4775
|
msgid "The page you are attempting to access requires selecting a specific organization."
|
4749
|
-
msgstr ""
|
4776
|
+
msgstr "Per accedere alla pagina desiderata selezionare una organizzazione specifica."
|
4750
4777
|
|
4751
4778
|
msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
|
4752
4779
|
msgstr ""
|
@@ -4760,12 +4787,6 @@ msgstr "L'avanzamento di %{content_view} in %{environment} è terminato. Sono di
|
|
4760
4787
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4761
4788
|
msgstr "L'avanzamento di %{content_view} in <b>%{environment}</b> è terminato. È possibile installare %{count} errata necessari sugli host."
|
4762
4789
|
|
4763
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4764
|
-
msgstr "L'ambiente puppet %{name} è utilizzato da %{count} gruppi di host, incluso %{names}"
|
4765
|
-
|
4766
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4767
|
-
msgstr "L'ambiente puppet %{name} è utilizzato da %{count} host, incluso %{names}"
|
4768
|
-
|
4769
4790
|
msgid "The repository is already enabled"
|
4770
4791
|
msgstr "Il repository è già abilitato"
|
4771
4792
|
|
@@ -4781,9 +4802,6 @@ msgstr ""
|
|
4781
4802
|
msgid "The requested traces were not found for this host"
|
4782
4803
|
msgstr ""
|
4783
4804
|
|
4784
|
-
msgid "The selected content source and lifecycle environment do not match"
|
4785
|
-
msgstr ""
|
4786
|
-
|
4787
4805
|
msgid ""
|
4788
4806
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
4789
4807
|
" content source, operating system, and architecture"
|
@@ -4801,6 +4819,9 @@ msgstr ""
|
|
4801
4819
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
4802
4820
|
msgstr "Il processo di sincronizzazione di \"%s\" è terminato. Di seguito viene riportato un sommario del nuovo errata."
|
4803
4821
|
|
4822
|
+
msgid "The token key to use for authentication."
|
4823
|
+
msgstr ""
|
4824
|
+
|
4804
4825
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
4805
4826
|
msgstr "Il tipo di contenuto. Sono supportati i seguenti tipi: 'package' e 'package_group."
|
4806
4827
|
|
@@ -4816,16 +4837,12 @@ msgstr ""
|
|
4816
4837
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4817
4838
|
msgstr "Non è presente alcun errata da applicare agli host di contenuto registrati."
|
4818
4839
|
|
4819
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
4820
4840
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4821
4841
|
msgstr "Non è stato abilitato alcun prodotto o repositorio. Provare ad abilitarli tramite %{custom} o %{redhat}."
|
4822
4842
|
|
4823
4843
|
msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
|
4824
4844
|
msgstr "Molto probabilmente non è stato specificato alcun ambiente o versione, oppure sono stati specificati ambienti/versioni non validi. Controllare i parametri environment_ids e content_view_version_ids."
|
4825
4845
|
|
4826
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
4827
|
-
msgstr ""
|
4828
|
-
|
4829
4846
|
msgid "There is no Manifest History to display."
|
4830
4847
|
msgstr ""
|
4831
4848
|
|
@@ -4856,15 +4873,12 @@ msgstr ""
|
|
4856
4873
|
msgid "This action doesn't support package groups"
|
4857
4874
|
msgstr ""
|
4858
4875
|
|
4859
|
-
msgid "This action
|
4876
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
4860
4877
|
msgstr ""
|
4861
4878
|
|
4862
4879
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4863
4880
|
msgstr "Questo certificato permette all'utente di visualizzare i repositori in qualsiasi ambiente del browser."
|
4864
4881
|
|
4865
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
4866
|
-
msgstr ""
|
4867
|
-
|
4868
4882
|
msgid "This content view version doesn't have a history."
|
4869
4883
|
msgstr ""
|
4870
4884
|
|
@@ -4928,19 +4942,18 @@ msgstr ""
|
|
4928
4942
|
msgid "Timestamp"
|
4929
4943
|
msgstr ""
|
4930
4944
|
|
4931
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
4932
4945
|
msgid "Title"
|
4933
4946
|
msgstr "Titolo"
|
4934
4947
|
|
4935
4948
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4936
4949
|
msgstr ""
|
4937
4950
|
|
4938
|
-
msgid "Total module count: %s."
|
4939
|
-
msgstr "Conteggio totale dei moduli: %s."
|
4940
|
-
|
4941
4951
|
msgid "Total steps: "
|
4942
4952
|
msgstr ""
|
4943
4953
|
|
4954
|
+
msgid "Total timeout in seconds for connections when syncing"
|
4955
|
+
msgstr ""
|
4956
|
+
|
4944
4957
|
msgid "Tracer profile uploaded successfully"
|
4945
4958
|
msgstr ""
|
4946
4959
|
|
@@ -4969,7 +4982,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
4969
4982
|
msgstr ""
|
4970
4983
|
|
4971
4984
|
msgid "UUID"
|
4972
|
-
msgstr ""
|
4985
|
+
msgstr "UUID"
|
4973
4986
|
|
4974
4987
|
msgid "UUID of the consumer"
|
4975
4988
|
msgstr ""
|
@@ -5001,13 +5014,13 @@ msgstr ""
|
|
5001
5014
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5002
5015
|
msgstr ""
|
5003
5016
|
|
5004
|
-
msgid "Unable to
|
5017
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5005
5018
|
msgstr ""
|
5006
5019
|
|
5007
|
-
msgid "Unable to
|
5020
|
+
msgid "Unable to get users"
|
5008
5021
|
msgstr ""
|
5009
5022
|
|
5010
|
-
msgid "Unable to
|
5023
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5011
5024
|
msgstr ""
|
5012
5025
|
|
5013
5026
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5031,6 +5044,12 @@ msgstr ""
|
|
5031
5044
|
msgid "Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url."
|
5032
5045
|
msgstr "Impossibile sincronizzare qualsiasi repository. Probabilmente non sei in possesso dei permessi necessari per la sincronizzazione, oppure i repository selezionati non dispongono di un url del feed."
|
5033
5046
|
|
5047
|
+
msgid "Unable to update the repository list"
|
5048
|
+
msgstr ""
|
5049
|
+
|
5050
|
+
msgid "Unable to update the user-repository mapping"
|
5051
|
+
msgstr ""
|
5052
|
+
|
5034
5053
|
msgid "Unapplied Errata"
|
5035
5054
|
msgstr "Errata non applicato"
|
5036
5055
|
|
@@ -5041,15 +5060,14 @@ msgid "Unattach a subscription"
|
|
5041
5060
|
msgstr "Rimuovi una sottoscrizione"
|
5042
5061
|
|
5043
5062
|
msgid "Unentitled"
|
5044
|
-
msgstr ""
|
5063
|
+
msgstr "Senza entitlement"
|
5045
5064
|
|
5046
5065
|
msgid "Unfiltered params array: %s."
|
5047
5066
|
msgstr ""
|
5048
5067
|
|
5049
|
-
msgid "Uninstall packages remotely"
|
5050
|
-
msgstr "
|
5068
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5069
|
+
msgstr ""
|
5051
5070
|
|
5052
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author fvalen
|
5053
5071
|
msgid "Unknown"
|
5054
5072
|
msgstr "Sconosciuto"
|
5055
5073
|
|
@@ -5069,7 +5087,7 @@ msgid "Unknown traces status"
|
|
5069
5087
|
msgstr ""
|
5070
5088
|
|
5071
5089
|
msgid "Unlimited"
|
5072
|
-
msgstr ""
|
5090
|
+
msgstr "Illimitato"
|
5073
5091
|
|
5074
5092
|
msgid "Unregister host %s before assigning an organization"
|
5075
5093
|
msgstr ""
|
@@ -5086,7 +5104,6 @@ msgstr ""
|
|
5086
5104
|
msgid "Unsubscribed hypervisor"
|
5087
5105
|
msgstr ""
|
5088
5106
|
|
5089
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
5090
5107
|
msgid "Unsupported URL protocol %s."
|
5091
5108
|
msgstr "Protocollo URL non supportato %s."
|
5092
5109
|
|
@@ -5123,9 +5140,6 @@ msgstr "Aggiorna regola per il filtro. I parametri inclusi devono basarsi sul ti
|
|
5123
5140
|
msgid "Update a host collection"
|
5124
5141
|
msgstr "Aggiorna un insieme di host"
|
5125
5142
|
|
5126
|
-
msgid "Update a puppet module associated with the content view"
|
5127
|
-
msgstr "Aggiorna un modulo puppet associato con la visualizzazione del contenuto"
|
5128
|
-
|
5129
5143
|
msgid "Update a repository"
|
5130
5144
|
msgstr "Aggiorna un repositorio"
|
5131
5145
|
|
@@ -5141,7 +5155,7 @@ msgstr "Aggiorna un ambiente"
|
|
5141
5155
|
msgid "Update an environment in an organization"
|
5142
5156
|
msgstr "Aggiorna ambiente in una organizzazione"
|
5143
5157
|
|
5144
|
-
msgid "Update content on one or more hosts"
|
5158
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5145
5159
|
msgstr ""
|
5146
5160
|
|
5147
5161
|
msgid "Update content urls"
|
@@ -5183,8 +5197,8 @@ msgstr ""
|
|
5183
5197
|
msgid "Update package via Katello interface"
|
5184
5198
|
msgstr ""
|
5185
5199
|
|
5186
|
-
msgid "Update packages remotely"
|
5187
|
-
msgstr "
|
5200
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5201
|
+
msgstr ""
|
5188
5202
|
|
5189
5203
|
msgid "Update redhat repository"
|
5190
5204
|
msgstr ""
|
@@ -5208,7 +5222,7 @@ msgid "Update the quantity of one or more subscriptions on an upstream allocatio
|
|
5208
5222
|
msgstr ""
|
5209
5223
|
|
5210
5224
|
msgid "Updated"
|
5211
|
-
msgstr ""
|
5225
|
+
msgstr "Aggiornato"
|
5212
5226
|
|
5213
5227
|
msgid "Updates"
|
5214
5228
|
msgstr ""
|
@@ -5228,7 +5242,6 @@ msgstr ""
|
|
5228
5242
|
msgid "Updating System Purpose for host %s"
|
5229
5243
|
msgstr ""
|
5230
5244
|
|
5231
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
5232
5245
|
msgid "Updating package group..."
|
5233
5246
|
msgstr "Aggiornamento gruppo di pacchetti..."
|
5234
5247
|
|
@@ -5289,6 +5302,9 @@ msgstr ""
|
|
5289
5302
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5290
5303
|
msgstr ""
|
5291
5304
|
|
5305
|
+
msgid "User"
|
5306
|
+
msgstr "Utente"
|
5307
|
+
|
5292
5308
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5293
5309
|
msgstr "L'utente '%s' non ha specificato alcun ID per l'organizzazione e non ha alcuna organizzazione predefinita."
|
5294
5310
|
|
@@ -5296,7 +5312,7 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
|
|
5296
5312
|
msgstr "L'utente '%{user}' non appartiene all'organizzazione '%{organization}'."
|
5297
5313
|
|
5298
5314
|
msgid "User IDs"
|
5299
|
-
msgstr ""
|
5315
|
+
msgstr "ID Utenti"
|
5300
5316
|
|
5301
5317
|
msgid "User must be logged in."
|
5302
5318
|
msgstr "L'utente deve essere registrato."
|
@@ -5308,7 +5324,7 @@ msgid "Username to access URL"
|
|
5308
5324
|
msgstr ""
|
5309
5325
|
|
5310
5326
|
msgid "Valid"
|
5311
|
-
msgstr ""
|
5327
|
+
msgstr "Valido"
|
5312
5328
|
|
5313
5329
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5314
5330
|
msgstr ""
|
@@ -5323,19 +5339,20 @@ msgid "Verify checksum of repository contents"
|
|
5323
5339
|
msgstr ""
|
5324
5340
|
|
5325
5341
|
msgid "Version"
|
5326
|
-
msgstr ""
|
5342
|
+
msgstr "Versione"
|
5327
5343
|
|
5328
5344
|
msgid "Versions"
|
5345
|
+
msgstr "Versioni"
|
5346
|
+
|
5347
|
+
msgid "Versions will appear here when the content view is published."
|
5329
5348
|
msgstr ""
|
5330
5349
|
|
5331
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
|
5332
5350
|
msgid "View %{view} has not been promoted to %{env}"
|
5333
5351
|
msgstr "La visualizzazione %{view} non è stata avanzata su %{env}"
|
5334
5352
|
|
5335
5353
|
msgid "View a report of the affected hosts"
|
5336
5354
|
msgstr ""
|
5337
5355
|
|
5338
|
-
# translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author fvalen
|
5339
5356
|
msgid "Virtual"
|
5340
5357
|
msgstr "Virtuale"
|
5341
5358
|
|
@@ -5382,7 +5399,7 @@ msgid "Yay empty state"
|
|
5382
5399
|
msgstr ""
|
5383
5400
|
|
5384
5401
|
msgid "Yes"
|
5385
|
-
msgstr ""
|
5402
|
+
msgstr "Si"
|
5386
5403
|
|
5387
5404
|
msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
|
5388
5405
|
msgstr ""
|
@@ -5411,9 +5428,15 @@ msgstr ""
|
|
5411
5428
|
msgid "You currently don't have any filters for this content view."
|
5412
5429
|
msgstr ""
|
5413
5430
|
|
5431
|
+
msgid "You currently don't have any history for this content view."
|
5432
|
+
msgstr ""
|
5433
|
+
|
5414
5434
|
msgid "You currently don't have any repositories to add to this content view."
|
5415
5435
|
msgstr ""
|
5416
5436
|
|
5437
|
+
msgid "You currently don't have any versions for this content view."
|
5438
|
+
msgstr ""
|
5439
|
+
|
5417
5440
|
msgid "You do not have permissions to delete %s"
|
5418
5441
|
msgstr "Non sei in possesso dei permessi necessari per eliminare %s"
|
5419
5442
|
|
@@ -5462,6 +5485,9 @@ msgstr "Un tag per il Docker"
|
|
5462
5485
|
msgid "a file"
|
5463
5486
|
msgstr ""
|
5464
5487
|
|
5488
|
+
msgid "a future release"
|
5489
|
+
msgstr ""
|
5490
|
+
|
5465
5491
|
msgid "a module stream"
|
5466
5492
|
msgstr ""
|
5467
5493
|
|
@@ -5471,9 +5497,6 @@ msgstr "un pacchetto"
|
|
5471
5497
|
msgid "a package group"
|
5472
5498
|
msgstr "Un gruppo di pacchetti"
|
5473
5499
|
|
5474
|
-
msgid "a puppet module"
|
5475
|
-
msgstr "Un modulo puppet"
|
5476
|
-
|
5477
5500
|
msgid "actions not found"
|
5478
5501
|
msgstr ""
|
5479
5502
|
|
@@ -5504,6 +5527,9 @@ msgstr "aggiornamento di tutti i pacchetti fallito"
|
|
5504
5527
|
msgid "allow unauthenticed pull of container images"
|
5505
5528
|
msgstr ""
|
5506
5529
|
|
5530
|
+
msgid "already belongs to the content view"
|
5531
|
+
msgstr ""
|
5532
|
+
|
5507
5533
|
msgid "already taken"
|
5508
5534
|
msgstr "già selezionato"
|
5509
5535
|
|
@@ -5525,9 +5551,6 @@ msgstr ""
|
|
5525
5551
|
msgid "attempted to sync without a feed URL"
|
5526
5552
|
msgstr ""
|
5527
5553
|
|
5528
|
-
msgid "author of the puppet module"
|
5529
|
-
msgstr "autore del modulo puppet"
|
5530
|
-
|
5531
5554
|
msgid "auto attach subscriptions upon registration"
|
5532
5555
|
msgstr "esegui l'auto attach delle sottoscrizioni previa registrazione"
|
5533
5556
|
|
@@ -5588,7 +5611,6 @@ msgstr "non può contenere filtri se in visualizzazione composita"
|
|
5588
5611
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5589
5612
|
msgstr "non può contenere i filtri dei repositori che non appartengono a questa visualizzazione del contenuto"
|
5590
5613
|
|
5591
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
5592
5614
|
msgid "cannot contain more than %s characters"
|
5593
5615
|
msgstr "non può avere più di %s caratteri"
|
5594
5616
|
|
@@ -5598,15 +5620,6 @@ msgstr ""
|
|
5598
5620
|
msgid "checking Pulp task status"
|
5599
5621
|
msgstr ""
|
5600
5622
|
|
5601
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5602
|
-
msgstr ""
|
5603
|
-
|
5604
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5605
|
-
msgstr ""
|
5606
|
-
|
5607
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5608
|
-
msgstr ""
|
5609
|
-
|
5610
5623
|
msgid "composite content view identifier"
|
5611
5624
|
msgstr ""
|
5612
5625
|
|
@@ -5619,7 +5632,7 @@ msgstr ""
|
|
5619
5632
|
msgid "content release version"
|
5620
5633
|
msgstr "Versione release del contenuto"
|
5621
5634
|
|
5622
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5635
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5623
5636
|
msgstr ""
|
5624
5637
|
|
5625
5638
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5682,7 +5695,6 @@ msgstr ""
|
|
5682
5695
|
msgid "delete a filter"
|
5683
5696
|
msgstr ""
|
5684
5697
|
|
5685
|
-
# translation auto-copied from project webkitgtk3, version 2.0.3, document webkitgtk3, author fvalen
|
5686
5698
|
msgid "description"
|
5687
5699
|
msgstr "descrizione"
|
5688
5700
|
|
@@ -5896,15 +5908,9 @@ msgstr "numero massimo degli host di contenuto registrati"
|
|
5896
5908
|
msgid "maximum size of each ISO in MB"
|
5897
5909
|
msgstr ""
|
5898
5910
|
|
5899
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5900
|
-
msgstr ""
|
5901
|
-
|
5902
5911
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5903
5912
|
msgstr ""
|
5904
5913
|
|
5905
|
-
msgid "module name to restrict modules for"
|
5906
|
-
msgstr "nome del modulo per il quale limitare i moduli"
|
5907
|
-
|
5908
5914
|
msgid "module stream ids"
|
5909
5915
|
msgstr ""
|
5910
5916
|
|
@@ -5926,7 +5932,6 @@ msgstr ""
|
|
5926
5932
|
msgid "must be unique within one organization"
|
5927
5933
|
msgstr "deve essere unico all'interno di una organizzazione"
|
5928
5934
|
|
5929
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
5930
5935
|
msgid "must contain '%s'"
|
5931
5936
|
msgstr "deve avere '%s'"
|
5932
5937
|
|
@@ -5942,11 +5947,9 @@ msgstr "deve avere una chiave GPG pubblica valida"
|
|
5942
5947
|
msgid "must contain valid Public GPG Key"
|
5943
5948
|
msgstr "deve avere una chiave GPG pubblica valida"
|
5944
5949
|
|
5945
|
-
# translation auto-copied from project Katello, version 0.1v, document app, author fvalen
|
5946
5950
|
msgid "must not contain leading or trailing white spaces."
|
5947
5951
|
msgstr "non deve avere spazi iniziali o finali."
|
5948
5952
|
|
5949
|
-
# translation auto-copied from project anaconda, version 19.31.34, document anaconda
|
5950
5953
|
msgid "name"
|
5951
5954
|
msgstr "nome"
|
5952
5955
|
|
@@ -5968,12 +5971,12 @@ msgstr "nome del filtro"
|
|
5968
5971
|
msgid "name of the organization"
|
5969
5972
|
msgstr "nome dell'organizzazione"
|
5970
5973
|
|
5971
|
-
msgid "name of the puppet module"
|
5972
|
-
msgstr "nome del modulo puppet"
|
5973
|
-
|
5974
5974
|
msgid "name of the repository"
|
5975
5975
|
msgstr "nome del repositorio"
|
5976
5976
|
|
5977
|
+
msgid "name of the subscription"
|
5978
|
+
msgstr ""
|
5979
|
+
|
5977
5980
|
msgid "name: %s doesn't exist "
|
5978
5981
|
msgstr "nome: %s non esiste"
|
5979
5982
|
|
@@ -5984,7 +5987,7 @@ msgid "new name to be given to the environment"
|
|
5984
5987
|
msgstr "nuovo nome da conferire all'ambiente"
|
5985
5988
|
|
5986
5989
|
msgid "no"
|
5987
|
-
msgstr ""
|
5990
|
+
msgstr "no"
|
5988
5991
|
|
5989
5992
|
msgid "no global default"
|
5990
5993
|
msgstr ""
|
@@ -5992,13 +5995,15 @@ msgstr ""
|
|
5992
5995
|
msgid "obtain manifest history for subscriptions"
|
5993
5996
|
msgstr "ottieni la cronologia del manifesto per le sottoscrizioni"
|
5994
5997
|
|
5995
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
5996
5998
|
msgid "of environment must be unique within one organization"
|
5997
5999
|
msgstr "ambiente deve essere unico all'interno di una organizzazione"
|
5998
6000
|
|
5999
6001
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6000
6002
|
msgstr ""
|
6001
6003
|
|
6004
|
+
msgid "only show the repositories readable by this user with this username"
|
6005
|
+
msgstr ""
|
6006
|
+
|
6002
6007
|
msgid "optional package names to include in the package group"
|
6003
6008
|
msgstr ""
|
6004
6009
|
|
@@ -6038,6 +6043,9 @@ msgstr "pacchetto: versione"
|
|
6038
6043
|
msgid "package_ids is not an array"
|
6039
6044
|
msgstr "package_ids non è un array"
|
6040
6045
|
|
6046
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6047
|
+
msgstr ""
|
6048
|
+
|
6041
6049
|
msgid "pattern for container image names"
|
6042
6050
|
msgstr ""
|
6043
6051
|
|
@@ -6059,12 +6067,6 @@ msgstr ""
|
|
6059
6067
|
msgid "product numeric identifier"
|
6060
6068
|
msgstr "idenificatore numerico del prodotto"
|
6061
6069
|
|
6062
|
-
msgid "puppet module ID"
|
6063
|
-
msgstr "ID modulo puppet"
|
6064
|
-
|
6065
|
-
msgid "puppet_module_ids is not an array"
|
6066
|
-
msgstr "puppet_module_ids non è un array"
|
6067
|
-
|
6068
6070
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6069
6071
|
msgstr ""
|
6070
6072
|
|
@@ -6077,7 +6079,6 @@ msgstr "rimozione gruppi di pacchetti in corso..."
|
|
6077
6079
|
msgid "removing package..."
|
6078
6080
|
msgstr "Rimozione pacchetto in corso..."
|
6079
6081
|
|
6080
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
|
6081
6082
|
msgid "removing packages..."
|
6082
6083
|
msgstr "Rimozione pacchetti in corso..."
|
6083
6084
|
|
@@ -6162,15 +6163,6 @@ msgstr ""
|
|
6162
6163
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6163
6164
|
msgstr "i seguenti attributi non possono essere caricati per il provider di Red Hat: [ %s ]"
|
6164
6165
|
|
6165
|
-
msgid "the id of the puppet module to associate"
|
6166
|
-
msgstr ""
|
6167
|
-
|
6168
|
-
msgid "the uuid of the puppet module to associate"
|
6169
|
-
msgstr "uuid del modulo puppet da associare"
|
6170
|
-
|
6171
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6172
|
-
msgstr ""
|
6173
|
-
|
6174
6166
|
msgid "true if the latest version of the component's content view is desired"
|
6175
6167
|
msgstr ""
|
6176
6168
|
|
@@ -6187,13 +6179,13 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
|
|
6187
6179
|
msgstr ""
|
6188
6180
|
|
6189
6181
|
msgid "type of repo"
|
6190
|
-
msgstr "
|
6182
|
+
msgstr ""
|
6191
6183
|
|
6192
6184
|
msgid "types of filters"
|
6193
6185
|
msgstr ""
|
6194
6186
|
|
6195
6187
|
msgid "unknown permission for %s"
|
6196
|
-
msgstr ""
|
6188
|
+
msgstr "permesso sconosciuto per %s"
|
6197
6189
|
|
6198
6190
|
msgid "update a filter"
|
6199
6191
|
msgstr ""
|
@@ -6213,9 +6205,6 @@ msgstr "Aggiornamento pacchetti in corso..."
|
|
6213
6205
|
msgid "url not defined."
|
6214
6206
|
msgstr "url non definito."
|
6215
6207
|
|
6216
|
-
msgid "uuid of the puppet module"
|
6217
|
-
msgstr ""
|
6218
|
-
|
6219
6208
|
msgid "waiting for Candlepin to finish the task"
|
6220
6209
|
msgstr ""
|
6221
6210
|
|
@@ -6225,11 +6214,20 @@ msgstr ""
|
|
6225
6214
|
msgid "waiting for Pulp to start the task"
|
6226
6215
|
msgstr ""
|
6227
6216
|
|
6217
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6218
|
+
msgstr ""
|
6219
|
+
|
6220
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6221
|
+
msgstr ""
|
6222
|
+
|
6223
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6224
|
+
msgstr ""
|
6225
|
+
|
6228
6226
|
msgid "with"
|
6229
6227
|
msgstr ""
|
6230
6228
|
|
6231
6229
|
msgid "yes"
|
6232
|
-
msgstr ""
|
6230
|
+
msgstr "si"
|
6233
6231
|
|
6234
6232
|
msgid "{0} items selected"
|
6235
6233
|
msgstr ""
|