katello 4.4.2.2 → 4.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
- data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
- data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
- data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
- data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
- data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
- data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
- data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
- data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
- data/app/lib/actions/katello/content_view/destroy.rb +2 -1
- data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
- data/app/lib/actions/katello/content_view/publish.rb +7 -9
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
- data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/import.rb +25 -22
- data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
- data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
- data/app/lib/actions/katello/product/content_create.rb +10 -8
- data/app/lib/actions/katello/repository/destroy.rb +36 -12
- data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
- data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
- data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
- data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
- data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
- data/app/lib/katello/api/v2/error_handling.rb +1 -0
- data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
- data/app/lib/katello/util/errata.rb +2 -3
- data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
- data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
- data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
- data/app/models/katello/alternate_content_source.rb +66 -0
- data/app/models/katello/authorization/alternate_content_source.rb +33 -0
- data/app/models/katello/authorization/repository.rb +3 -3
- data/app/models/katello/candlepin/repository_mapper.rb +13 -6
- data/app/models/katello/cdn_configuration.rb +15 -15
- data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
- data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -2
- data/app/models/katello/concerns/setting_extensions.rb +14 -0
- data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
- data/app/models/katello/content.rb +1 -0
- data/app/models/katello/content_credential.rb +6 -0
- data/app/models/katello/content_override.rb +7 -3
- data/app/models/katello/content_view.rb +33 -2
- data/app/models/katello/content_view_erratum_filter.rb +26 -12
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_version.rb +12 -0
- data/app/models/katello/content_view_version_export_history.rb +3 -1
- data/app/models/katello/erratum.rb +9 -5
- data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
- data/app/models/katello/host/content_facet.rb +14 -0
- data/app/models/katello/host_available_module_stream.rb +12 -0
- data/app/models/katello/product_content.rb +1 -0
- data/app/models/katello/purpose_sla_status.rb +1 -1
- data/app/models/katello/purpose_status.rb +2 -2
- data/app/models/katello/repository.rb +7 -4
- data/app/models/katello/root_repository.rb +1 -1
- data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
- data/app/models/katello/sync_plan.rb +1 -1
- data/app/presenters/katello/product_content_presenter.rb +15 -0
- data/app/services/katello/applicable_host_queue.rb +1 -1
- data/app/services/katello/content_unit_indexer.rb +2 -1
- data/app/services/katello/product_content_finder.rb +12 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
- data/app/services/katello/pulp3/api/file.rb +8 -0
- data/app/services/katello/pulp3/api/yum.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
- data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
- data/app/services/katello/pulp3/repository/yum.rb +70 -12
- data/app/services/katello/pulp3/repository.rb +7 -91
- data/app/services/katello/pulp3/service_common.rb +66 -0
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
- data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
- data/app/views/foreman/job_templates/change_content_source.erb +1 -1
- data/app/views/foreman/job_templates/install_errata.erb +5 -5
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
- data/app/views/foreman/job_templates/install_group.erb +4 -4
- data/app/views/foreman/job_templates/install_package.erb +4 -4
- data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/remove_group.erb +4 -4
- data/app/views/foreman/job_templates/remove_package.erb +4 -4
- data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
- data/app/views/foreman/job_templates/restart_services.erb +3 -3
- data/app/views/foreman/job_templates/update_group.erb +4 -4
- data/app/views/foreman/job_templates/update_package.erb +4 -4
- data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
- data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
- data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
- data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
- data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
- data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
- data/app/views/katello/sync_management/_repo.html.erb +8 -29
- data/config/routes/api/v2.rb +7 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
- data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
- data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
- data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
- data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
- data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
- data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
- data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
- data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
- data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
- data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
- data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
- data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
- data/db/seeds.d/110-content-view-autopublish.rb +13 -0
- data/db/seeds.d/150-module_job_templates.rb +1 -1
- data/engines/bastion/README.md +1 -0
- data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
- data/lib/katello/engine.rb +1 -5
- data/lib/katello/permission_creator.rb +32 -4
- data/lib/katello/plugin.rb +378 -4
- data/lib/katello/tasks/reset.rake.bak +67 -0
- data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +47 -41
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/bn/katello.po +820 -106
- data/locale/bn/katello.po.time_stamp +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/katello.po +818 -104
- data/locale/cs/katello.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/katello.po +893 -179
- data/locale/de/katello.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/katello.po +817 -103
- data/locale/en/katello.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/katello.po +882 -168
- data/locale/es/katello.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/katello.po +1219 -505
- data/locale/fr/katello.po.time_stamp +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/katello.po +826 -112
- data/locale/gu/katello.po.time_stamp +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/katello.po +826 -112
- data/locale/hi/katello.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/katello.po +863 -148
- data/locale/it/katello.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/katello.po +1216 -499
- data/locale/ja/katello.po.time_stamp +0 -0
- data/locale/katello.pot +3847 -2507
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/katello.po +826 -112
- data/locale/kn/katello.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/katello.po +912 -198
- data/locale/ko/katello.po.time_stamp +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/katello.po +826 -112
- data/locale/mr/katello.po.time_stamp +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/katello.po +826 -112
- data/locale/or/katello.po.time_stamp +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/katello.po +826 -112
- data/locale/pa/katello.po.time_stamp +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/katello.po +817 -103
- data/locale/pt/katello.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/katello.po +879 -165
- data/locale/pt_BR/katello.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/katello.po +927 -213
- data/locale/ru/katello.po.time_stamp +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/katello.po +820 -106
- data/locale/ta/katello.po.time_stamp +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/katello.po +826 -112
- data/locale/te/katello.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/katello.po +1202 -486
- data/locale/zh_CN/katello.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/katello.po +856 -142
- data/locale/zh_TW/katello.po.time_stamp +0 -0
- data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
- data/webpack/components/Errata/index.js +38 -8
- data/webpack/components/Packages/index.js +1 -4
- data/webpack/components/Search/Search.js +18 -3
- data/webpack/components/SelectAllCheckbox/index.js +1 -0
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
- data/webpack/components/Table/EmptyStateMessage.js +21 -7
- data/webpack/components/Table/MainTable.js +29 -4
- data/webpack/components/Table/TableHooks.js +63 -19
- data/webpack/components/Table/TableWrapper.js +4 -2
- data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
- data/webpack/components/Table/components/TranslatedPlural.js +57 -0
- data/webpack/components/TypeAhead/TypeAhead.js +8 -0
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
- data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
- data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
- data/webpack/containers/Application/config.js +5 -0
- data/webpack/global_index.js +30 -7
- data/webpack/global_test_setup.js +13 -0
- data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
- data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
- data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
- data/webpack/scenes/AlternateContentSources/index.js +4 -0
- data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
- data/webpack/scenes/Content/Table/ContentTable.js +1 -0
- data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
- data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
- data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
- data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
- data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
- data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
- data/webpack/scenes/ContentViews/helpers.js +3 -0
- data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
- data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
- data/webpack/scenes/Tasks/TaskActions.js +6 -0
- data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
- data/webpack/scenes/Tasks/helpers.js +33 -5
- data/webpack/utils/helpers.js +2 -0
- metadata +158 -40
- data/app/models/setting/content.rb +0 -201
- data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
- data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/it/katello.po
CHANGED
@@ -6,15 +6,16 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Marco Calamaro <ottopodo@gmail.com>, 2020
|
8
8
|
# Andrea Perotti, 2021
|
9
|
-
#
|
10
|
-
#
|
9
|
+
# Giuseppe Pignataro <rogepix@gmail.com>, 2022
|
10
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
11
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
11
12
|
#
|
12
13
|
msgid ""
|
13
14
|
msgstr ""
|
14
15
|
"Project-Id-Version: katello 2.5.0\n"
|
15
16
|
"Report-Msgid-Bugs-To: \n"
|
16
17
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
17
|
-
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>,
|
18
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
|
18
19
|
"Language-Team: Italian (https://www.transifex.com/foreman/teams/114/it/)\n"
|
19
20
|
"MIME-Version: 1.0\n"
|
20
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -54,6 +55,9 @@ msgstr ""
|
|
54
55
|
msgid " ago."
|
55
56
|
msgstr ""
|
56
57
|
|
58
|
+
msgid " and"
|
59
|
+
msgstr ""
|
60
|
+
|
57
61
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
58
62
|
msgstr ""
|
59
63
|
|
@@ -116,6 +120,9 @@ msgstr ""
|
|
116
120
|
msgid "%s is not a valid package name"
|
117
121
|
msgstr "%s non è un nome del pacchetto valido "
|
118
122
|
|
123
|
+
msgid "%s is not a valid path"
|
124
|
+
msgstr ""
|
125
|
+
|
119
126
|
msgid "%s is required"
|
120
127
|
msgstr ""
|
121
128
|
|
@@ -365,9 +372,6 @@ msgstr ""
|
|
365
372
|
msgid "A post-promotion summary of hosts with installable errata"
|
366
373
|
msgstr "Un sommario post-avanzamento di host con errata installabili"
|
367
374
|
|
368
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
369
|
-
msgstr ""
|
370
|
-
|
371
375
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
372
376
|
msgstr "Un livello di servizio per il processo auto-healing, es. SELF-SUPPORT"
|
373
377
|
|
@@ -386,12 +390,18 @@ msgstr ""
|
|
386
390
|
msgid "About page"
|
387
391
|
msgstr ""
|
388
392
|
|
393
|
+
msgid "Abstract"
|
394
|
+
msgstr ""
|
395
|
+
|
389
396
|
msgid "Abstract async task"
|
390
397
|
msgstr "Evento asinc astratto"
|
391
398
|
|
392
399
|
msgid "Accept action timeout"
|
393
400
|
msgstr ""
|
394
401
|
|
402
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
403
|
+
msgstr ""
|
404
|
+
|
395
405
|
msgid "Account Number"
|
396
406
|
msgstr "Numero account"
|
397
407
|
|
@@ -410,12 +420,12 @@ msgstr ""
|
|
410
420
|
msgid "Action with sub plans"
|
411
421
|
msgstr ""
|
412
422
|
|
413
|
-
msgid "Actions"
|
414
|
-
msgstr ""
|
415
|
-
|
416
423
|
msgid "Activation Keys"
|
417
424
|
msgstr "Chiavi di attivazione"
|
418
425
|
|
426
|
+
msgid "Activation key"
|
427
|
+
msgstr ""
|
428
|
+
|
419
429
|
msgid "Activation key ID"
|
420
430
|
msgstr "ID chiave di attivazione"
|
421
431
|
|
@@ -447,7 +457,7 @@ msgid "Add"
|
|
447
457
|
msgstr "Aggiungi"
|
448
458
|
|
449
459
|
msgid "Add Bookmark"
|
450
|
-
msgstr ""
|
460
|
+
msgstr "Aggiungi segnalibro"
|
451
461
|
|
452
462
|
msgid "Add RPM rule"
|
453
463
|
msgstr ""
|
@@ -482,6 +492,12 @@ msgstr ""
|
|
482
492
|
msgid "Add filters using the 'Add filter' button above."
|
483
493
|
msgstr ""
|
484
494
|
|
495
|
+
msgid "Add host to collections"
|
496
|
+
msgstr ""
|
497
|
+
|
498
|
+
msgid "Add host to host collections"
|
499
|
+
msgstr ""
|
500
|
+
|
485
501
|
msgid "Add host to the host collection"
|
486
502
|
msgstr ""
|
487
503
|
|
@@ -506,6 +522,9 @@ msgstr ""
|
|
506
522
|
msgid "Add rule"
|
507
523
|
msgstr ""
|
508
524
|
|
525
|
+
msgid "Add source"
|
526
|
+
msgstr ""
|
527
|
+
|
509
528
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
510
529
|
msgstr ""
|
511
530
|
|
@@ -518,9 +537,6 @@ msgstr ""
|
|
518
537
|
msgid "Add to this filter using the 'Add filter rule' button."
|
519
538
|
msgstr ""
|
520
539
|
|
521
|
-
msgid "Add traces by applying updates on this host."
|
522
|
-
msgstr ""
|
523
|
-
|
524
540
|
msgid "Added"
|
525
541
|
msgstr ""
|
526
542
|
|
@@ -549,13 +565,13 @@ msgid "Agent action"
|
|
549
565
|
msgstr ""
|
550
566
|
|
551
567
|
msgid "All"
|
552
|
-
msgstr ""
|
568
|
+
msgstr "Tutte"
|
553
569
|
|
554
570
|
msgid "All Media"
|
555
571
|
msgstr ""
|
556
572
|
|
557
573
|
msgid "All Repositories"
|
558
|
-
msgstr ""
|
574
|
+
msgstr "Tutti i repositori"
|
559
575
|
|
560
576
|
msgid "All available architectures for this repo are enabled."
|
561
577
|
msgstr ""
|
@@ -563,28 +579,52 @@ msgstr ""
|
|
563
579
|
msgid "All errata applied"
|
564
580
|
msgstr ""
|
565
581
|
|
582
|
+
msgid "All errata up-to-date"
|
583
|
+
msgstr ""
|
584
|
+
|
585
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
586
|
+
msgstr ""
|
587
|
+
|
566
588
|
msgid "All versions"
|
567
589
|
msgstr ""
|
568
590
|
|
569
591
|
msgid "All versions will be removed from these environments"
|
570
592
|
msgstr ""
|
571
593
|
|
572
|
-
msgid "Allow
|
594
|
+
msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
|
573
595
|
msgstr ""
|
574
596
|
|
575
|
-
msgid "Allow
|
597
|
+
msgid "Allow deleting repositories in published content views"
|
598
|
+
msgstr ""
|
599
|
+
|
600
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
576
601
|
msgstr ""
|
577
602
|
|
578
603
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
579
604
|
msgstr ""
|
580
605
|
|
581
|
-
msgid "Allow new
|
606
|
+
msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
|
582
607
|
msgstr ""
|
583
608
|
|
584
609
|
msgid "Also include the latest upgradable package version for each host package"
|
585
610
|
msgstr ""
|
586
611
|
|
587
|
-
msgid "Alter a
|
612
|
+
msgid "Alter a host's host collections"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
msgid "Alternate Content Sources"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Alternate content source ${name} created"
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Alternate content source ID"
|
622
|
+
msgstr ""
|
623
|
+
|
624
|
+
msgid "Alternate content source deleted"
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
msgid "Alternate content sources"
|
588
628
|
msgstr ""
|
589
629
|
|
590
630
|
msgid "Always Use Latest (currently %{version})"
|
@@ -596,6 +636,9 @@ msgstr ""
|
|
596
636
|
msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
|
597
637
|
msgstr ""
|
598
638
|
|
639
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
640
|
+
msgstr ""
|
641
|
+
|
599
642
|
msgid "An environment is missing a prior"
|
600
643
|
msgstr ""
|
601
644
|
|
@@ -637,10 +680,10 @@ msgid "Applicable Content Hosts"
|
|
637
680
|
msgstr ""
|
638
681
|
|
639
682
|
msgid "Application"
|
640
|
-
msgstr ""
|
683
|
+
msgstr "Applicazione"
|
641
684
|
|
642
685
|
msgid "Apply"
|
643
|
-
msgstr ""
|
686
|
+
msgstr "Applica"
|
644
687
|
|
645
688
|
msgid "Apply Erratum"
|
646
689
|
msgstr ""
|
@@ -737,6 +780,9 @@ msgstr ""
|
|
737
780
|
msgid "Associated location IDs"
|
738
781
|
msgstr ""
|
739
782
|
|
783
|
+
msgid "Associated version"
|
784
|
+
msgstr ""
|
785
|
+
|
740
786
|
msgid "Associations"
|
741
787
|
msgstr "Associazioni"
|
742
788
|
|
@@ -803,6 +849,9 @@ msgstr ""
|
|
803
849
|
msgid "Backend System Status"
|
804
850
|
msgstr "Stato sistema di backend"
|
805
851
|
|
852
|
+
msgid "Base URL for finding alternate content"
|
853
|
+
msgstr ""
|
854
|
+
|
806
855
|
msgid "Base URL to perform repo discovery on"
|
807
856
|
msgstr ""
|
808
857
|
|
@@ -812,9 +861,21 @@ msgstr "Architettura di base da disabilitare"
|
|
812
861
|
msgid "Basearch to enable"
|
813
862
|
msgstr "Architettura di base da abilitare"
|
814
863
|
|
864
|
+
msgid "Basic authentication password"
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
msgid "Basic authentication username"
|
868
|
+
msgstr ""
|
869
|
+
|
815
870
|
msgid "Batch size to sync repositories in."
|
816
871
|
msgstr ""
|
817
872
|
|
873
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
874
|
+
msgstr ""
|
875
|
+
|
876
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
877
|
+
msgstr ""
|
878
|
+
|
818
879
|
msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
|
819
880
|
msgstr ""
|
820
881
|
|
@@ -828,7 +889,7 @@ msgid "Bind entitlements to an allocation"
|
|
828
889
|
msgstr ""
|
829
890
|
|
830
891
|
msgid "Bookmark this search"
|
831
|
-
msgstr ""
|
892
|
+
msgstr "Inserire nel segnalibro questa ricerca"
|
832
893
|
|
833
894
|
msgid "Bookmarks marked as public are available to all users"
|
834
895
|
msgstr ""
|
@@ -851,6 +912,9 @@ msgstr ""
|
|
851
912
|
msgid "Bulk generate applicability for hosts"
|
852
913
|
msgstr ""
|
853
914
|
|
915
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
916
|
+
msgstr ""
|
917
|
+
|
854
918
|
msgid "CDN Configuration"
|
855
919
|
msgstr ""
|
856
920
|
|
@@ -863,6 +927,12 @@ msgstr ""
|
|
863
927
|
msgid "CDN SSL version"
|
864
928
|
msgstr ""
|
865
929
|
|
930
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
931
|
+
msgstr ""
|
932
|
+
|
933
|
+
msgid "CDN configuration type. One of %s."
|
934
|
+
msgstr ""
|
935
|
+
|
866
936
|
msgid "CDN loading error: %s not found"
|
867
937
|
msgstr "Errore di caricamento di CDN: %s non trovato"
|
868
938
|
|
@@ -876,7 +946,7 @@ msgid "CVE identifier"
|
|
876
946
|
msgstr "Indetificatore CVE"
|
877
947
|
|
878
948
|
msgid "CVEs"
|
879
|
-
msgstr ""
|
949
|
+
msgstr "CVE"
|
880
950
|
|
881
951
|
msgid "Calculate Applicable Errata based on a particular Content View"
|
882
952
|
msgstr "Calcola l'Errata applicabile in base ad una visualizzazione del contenuto particolare"
|
@@ -884,7 +954,10 @@ msgstr "Calcola l'Errata applicabile in base ad una visualizzazione del contenut
|
|
884
954
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
885
955
|
msgstr "Calcola l'Errata applicabile in base ad un ambiente particolare"
|
886
956
|
|
887
|
-
msgid "Calculate errata host status based only on errata in a
|
957
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
958
|
+
msgstr ""
|
959
|
+
|
960
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
888
961
|
msgstr ""
|
889
962
|
|
890
963
|
msgid "Can not add product %s because it is disabled."
|
@@ -1007,6 +1080,9 @@ msgstr ""
|
|
1007
1080
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1008
1081
|
msgstr "Impossibile eseguire un aggiornamento incrementale su una versione della Visualizzazione del contenuto composita (%{name} version version %{version}"
|
1009
1082
|
|
1083
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1084
|
+
msgstr ""
|
1085
|
+
|
1010
1086
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1011
1087
|
msgstr "Impossibile avanzare l'ambiente fuori sequenza. Forza questa operazione per bypassare le restrizioni."
|
1012
1088
|
|
@@ -1058,6 +1134,18 @@ msgstr ""
|
|
1058
1134
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1059
1135
|
msgstr ""
|
1060
1136
|
|
1137
|
+
msgid "Capacity"
|
1138
|
+
msgstr ""
|
1139
|
+
|
1140
|
+
msgid "Change Content Source"
|
1141
|
+
msgstr ""
|
1142
|
+
|
1143
|
+
msgid "Change content source"
|
1144
|
+
msgstr ""
|
1145
|
+
|
1146
|
+
msgid "Change host content source"
|
1147
|
+
msgstr ""
|
1148
|
+
|
1061
1149
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1062
1150
|
msgstr ""
|
1063
1151
|
|
@@ -1070,6 +1158,9 @@ msgstr ""
|
|
1070
1158
|
msgid "Checksum"
|
1071
1159
|
msgstr "Checksum"
|
1072
1160
|
|
1161
|
+
msgid "Checksum is a required parameter."
|
1162
|
+
msgstr ""
|
1163
|
+
|
1073
1164
|
msgid "Checksum of file to upload"
|
1074
1165
|
msgstr ""
|
1075
1166
|
|
@@ -1085,6 +1176,9 @@ msgstr ""
|
|
1085
1176
|
msgid "Click here to go to the tasks page for the task."
|
1086
1177
|
msgstr ""
|
1087
1178
|
|
1179
|
+
msgid "Click {update} below to save changes."
|
1180
|
+
msgstr ""
|
1181
|
+
|
1088
1182
|
msgid "Clone"
|
1089
1183
|
msgstr "Clona"
|
1090
1184
|
|
@@ -1100,7 +1194,13 @@ msgstr ""
|
|
1100
1194
|
msgid "Combined Profile Update for %s"
|
1101
1195
|
msgstr ""
|
1102
1196
|
|
1103
|
-
msgid "Comma-separated list of tags to
|
1197
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1198
|
+
msgstr ""
|
1199
|
+
|
1200
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1201
|
+
msgstr ""
|
1202
|
+
|
1203
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1104
1204
|
msgstr ""
|
1105
1205
|
|
1106
1206
|
msgid "Component"
|
@@ -1116,10 +1216,10 @@ msgid "Component content views"
|
|
1116
1216
|
msgstr ""
|
1117
1217
|
|
1118
1218
|
msgid "Components"
|
1119
|
-
msgstr ""
|
1219
|
+
msgstr "Componenti"
|
1120
1220
|
|
1121
1221
|
msgid "Composite"
|
1122
|
-
msgstr ""
|
1222
|
+
msgstr "Composita"
|
1123
1223
|
|
1124
1224
|
msgid "Composite Content View"
|
1125
1225
|
msgstr ""
|
@@ -1187,6 +1287,9 @@ msgstr ""
|
|
1187
1287
|
msgid "Container manifests"
|
1188
1288
|
msgstr ""
|
1189
1289
|
|
1290
|
+
msgid "Container tags"
|
1291
|
+
msgstr ""
|
1292
|
+
|
1190
1293
|
msgid "Content"
|
1191
1294
|
msgstr "Contenuto"
|
1192
1295
|
|
@@ -1199,7 +1302,7 @@ msgstr ""
|
|
1199
1302
|
msgid "Content Credential numeric identifier"
|
1200
1303
|
msgstr ""
|
1201
1304
|
|
1202
|
-
msgid "Content Credential to use for SSL CA"
|
1305
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1203
1306
|
msgstr ""
|
1204
1307
|
|
1205
1308
|
msgid "Content Credentials"
|
@@ -1232,9 +1335,6 @@ msgstr "Visualizzazione contenuto"
|
|
1232
1335
|
msgid "Content View %{view}: Versions: %{versions}"
|
1233
1336
|
msgstr ""
|
1234
1337
|
|
1235
|
-
msgid "Content View Dependency Solving Default"
|
1236
|
-
msgstr ""
|
1237
|
-
|
1238
1338
|
msgid "Content View Details"
|
1239
1339
|
msgstr ""
|
1240
1340
|
|
@@ -1245,13 +1345,10 @@ msgid "Content View Filter identifier"
|
|
1245
1345
|
msgstr ""
|
1246
1346
|
|
1247
1347
|
msgid "Content View ID"
|
1248
|
-
msgstr ""
|
1249
|
-
|
1250
|
-
msgid "Content View Label"
|
1251
|
-
msgstr ""
|
1348
|
+
msgstr "ID visualizzazione del contenuto"
|
1252
1349
|
|
1253
1350
|
msgid "Content View Name"
|
1254
|
-
msgstr ""
|
1351
|
+
msgstr "Nome visualizzazione del contenuto"
|
1255
1352
|
|
1256
1353
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
1257
1354
|
msgstr "La versione della visualizzazione del contenuto %{id} non è presente in tutti gli ambienti %{envs} specificati"
|
@@ -1274,6 +1371,9 @@ msgstr ""
|
|
1274
1371
|
msgid "Content View id"
|
1275
1372
|
msgstr ""
|
1276
1373
|
|
1374
|
+
msgid "Content View label not provided."
|
1375
|
+
msgstr ""
|
1376
|
+
|
1277
1377
|
msgid "Content Views"
|
1278
1378
|
msgstr "Visualizzazioni contenuto"
|
1279
1379
|
|
@@ -1286,15 +1386,21 @@ msgstr ""
|
|
1286
1386
|
msgid "Content hosts"
|
1287
1387
|
msgstr ""
|
1288
1388
|
|
1289
|
-
msgid "Content imported
|
1389
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1290
1390
|
msgstr ""
|
1291
1391
|
|
1292
1392
|
msgid "Content not uploaded to pulp"
|
1293
1393
|
msgstr ""
|
1294
1394
|
|
1395
|
+
msgid "Content override search parameters"
|
1396
|
+
msgstr ""
|
1397
|
+
|
1295
1398
|
msgid "Content source ID"
|
1296
1399
|
msgstr ""
|
1297
1400
|
|
1401
|
+
msgid "Content source successfully updated."
|
1402
|
+
msgstr ""
|
1403
|
+
|
1298
1404
|
msgid "Content source was not set for host '%{host}'"
|
1299
1405
|
msgstr ""
|
1300
1406
|
|
@@ -1370,6 +1476,9 @@ msgstr "Contratto"
|
|
1370
1476
|
msgid "Contract Number"
|
1371
1477
|
msgstr "Numero contratto"
|
1372
1478
|
|
1479
|
+
msgid "Copied to clipboard"
|
1480
|
+
msgstr ""
|
1481
|
+
|
1373
1482
|
msgid "Copy"
|
1374
1483
|
msgstr ""
|
1375
1484
|
|
@@ -1379,6 +1488,9 @@ msgstr "Copia una chiave di attivazione"
|
|
1379
1488
|
msgid "Copy content view"
|
1380
1489
|
msgstr ""
|
1381
1490
|
|
1491
|
+
msgid "Copy to clipboard"
|
1492
|
+
msgstr ""
|
1493
|
+
|
1382
1494
|
msgid "Copy version units to library"
|
1383
1495
|
msgstr ""
|
1384
1496
|
|
@@ -1490,6 +1602,9 @@ msgstr "Impossibile trovare il prodotto con id '%s'"
|
|
1490
1602
|
msgid "Couldn't find repository '%s'"
|
1491
1603
|
msgstr "Impossibile trovare il repositorio '%s'"
|
1492
1604
|
|
1605
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1606
|
+
msgstr ""
|
1607
|
+
|
1493
1608
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1494
1609
|
msgstr ""
|
1495
1610
|
|
@@ -1497,11 +1612,14 @@ msgid "Couldn't find subject of synchronization"
|
|
1497
1612
|
msgstr "Impossibile trovare il soggetto della sincronizzazione"
|
1498
1613
|
|
1499
1614
|
msgid "Count"
|
1500
|
-
msgstr ""
|
1615
|
+
msgstr "Conteggio"
|
1501
1616
|
|
1502
1617
|
msgid "Create"
|
1503
1618
|
msgstr "Crea"
|
1504
1619
|
|
1620
|
+
msgid "Create Alternate Content Source"
|
1621
|
+
msgstr ""
|
1622
|
+
|
1505
1623
|
msgid "Create Export History"
|
1506
1624
|
msgstr ""
|
1507
1625
|
|
@@ -1538,6 +1656,9 @@ msgstr "Crea un prodotto"
|
|
1538
1656
|
msgid "Create a sync plan"
|
1539
1657
|
msgstr "Crea programmazione per la sincronizzazione"
|
1540
1658
|
|
1659
|
+
msgid "Create an ACS"
|
1660
|
+
msgstr ""
|
1661
|
+
|
1541
1662
|
msgid "Create an activation key"
|
1542
1663
|
msgstr "Crea una chiave di attivazione"
|
1543
1664
|
|
@@ -1560,7 +1681,7 @@ msgid "Create organization"
|
|
1560
1681
|
msgstr "Crea organizzazione"
|
1561
1682
|
|
1562
1683
|
msgid "Critical"
|
1563
|
-
msgstr ""
|
1684
|
+
msgstr "Critico"
|
1564
1685
|
|
1565
1686
|
msgid "Cron expression is not valid!"
|
1566
1687
|
msgstr ""
|
@@ -1583,6 +1704,9 @@ msgstr ""
|
|
1583
1704
|
msgid "Custom repositories cannot be disabled."
|
1584
1705
|
msgstr "Impossibile disabilitare i repositori personalizzati."
|
1585
1706
|
|
1707
|
+
msgid "Customize with Rex"
|
1708
|
+
msgstr ""
|
1709
|
+
|
1586
1710
|
msgid "Database connection"
|
1587
1711
|
msgstr ""
|
1588
1712
|
|
@@ -1619,13 +1743,10 @@ msgstr ""
|
|
1619
1743
|
msgid "Default Custom Repository download policy"
|
1620
1744
|
msgstr ""
|
1621
1745
|
|
1622
|
-
msgid "Default HTTP Proxy
|
1623
|
-
msgstr ""
|
1624
|
-
|
1625
|
-
msgid "Default HTTP proxy"
|
1746
|
+
msgid "Default HTTP Proxy"
|
1626
1747
|
msgstr ""
|
1627
1748
|
|
1628
|
-
msgid "Default
|
1749
|
+
msgid "Default HTTP proxy for syncing content"
|
1629
1750
|
msgstr ""
|
1630
1751
|
|
1631
1752
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1670,6 +1791,9 @@ msgstr ""
|
|
1670
1791
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1671
1792
|
msgstr ""
|
1672
1793
|
|
1794
|
+
msgid "Default location for subscribed hosts"
|
1795
|
+
msgstr ""
|
1796
|
+
|
1673
1797
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1674
1798
|
msgstr ""
|
1675
1799
|
|
@@ -1772,6 +1896,9 @@ msgstr ""
|
|
1772
1896
|
msgid "Delete version"
|
1773
1897
|
msgstr ""
|
1774
1898
|
|
1899
|
+
msgid "Delete versions"
|
1900
|
+
msgstr ""
|
1901
|
+
|
1775
1902
|
msgid "Deleted consumer '%s'"
|
1776
1903
|
msgstr "Utenza '%s' rimossa"
|
1777
1904
|
|
@@ -1787,9 +1914,18 @@ msgstr ""
|
|
1787
1914
|
msgid "Deleting manifest in '%{subject}' failed."
|
1788
1915
|
msgstr ""
|
1789
1916
|
|
1917
|
+
msgid "Deleting version {versionList}"
|
1918
|
+
msgstr ""
|
1919
|
+
|
1920
|
+
msgid "Deleting versions: {versionList}"
|
1921
|
+
msgstr ""
|
1922
|
+
|
1790
1923
|
msgid "Description"
|
1791
1924
|
msgstr "Descrizione"
|
1792
1925
|
|
1926
|
+
msgid "Description for the alternate content source"
|
1927
|
+
msgstr ""
|
1928
|
+
|
1793
1929
|
msgid "Description for the content view"
|
1794
1930
|
msgstr "Descrizione visualizzazione del contenuto"
|
1795
1931
|
|
@@ -1811,6 +1947,9 @@ msgstr ""
|
|
1811
1947
|
msgid "Destroy"
|
1812
1948
|
msgstr "Elimina"
|
1813
1949
|
|
1950
|
+
msgid "Destroy Alternate Content Source"
|
1951
|
+
msgstr ""
|
1952
|
+
|
1814
1953
|
msgid "Destroy Content Host"
|
1815
1954
|
msgstr "Elimina host di contenuto"
|
1816
1955
|
|
@@ -1835,6 +1974,9 @@ msgstr "Elimina programmazione sincronizzazione"
|
|
1835
1974
|
msgid "Destroy an activation key"
|
1836
1975
|
msgstr "Elimina chiave di attivazione"
|
1837
1976
|
|
1977
|
+
msgid "Destroy an alternate content source"
|
1978
|
+
msgstr ""
|
1979
|
+
|
1838
1980
|
msgid "Destroy an environment"
|
1839
1981
|
msgstr "Elimina un ambiente"
|
1840
1982
|
|
@@ -1874,18 +2016,18 @@ msgstr ""
|
|
1874
2016
|
msgid "Disable a repository from the set"
|
1875
2017
|
msgstr ""
|
1876
2018
|
|
2019
|
+
msgid "Disable module stream"
|
2020
|
+
msgstr ""
|
2021
|
+
|
1877
2022
|
msgid "Disable simple content access for a manifest"
|
1878
2023
|
msgstr ""
|
1879
2024
|
|
1880
2025
|
msgid "Disabled"
|
1881
|
-
msgstr ""
|
2026
|
+
msgstr "Disabilitato"
|
1882
2027
|
|
1883
2028
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1884
2029
|
msgstr ""
|
1885
2030
|
|
1886
|
-
msgid "Disconnected mode"
|
1887
|
-
msgstr ""
|
1888
|
-
|
1889
2031
|
msgid "Discover"
|
1890
2032
|
msgstr "Trova"
|
1891
2033
|
|
@@ -1901,9 +2043,6 @@ msgstr ""
|
|
1901
2043
|
msgid "Do not wait for the update action to finish. Default: true"
|
1902
2044
|
msgstr ""
|
1903
2045
|
|
1904
|
-
msgid "Docker Tags"
|
1905
|
-
msgstr ""
|
1906
|
-
|
1907
2046
|
msgid "Domain IDs"
|
1908
2047
|
msgstr "ID del dominio"
|
1909
2048
|
|
@@ -1913,6 +2052,9 @@ msgstr ""
|
|
1913
2052
|
msgid "Download a debug certificate"
|
1914
2053
|
msgstr "Scarica un certificato di debug"
|
1915
2054
|
|
2055
|
+
msgid "Download rate limit"
|
2056
|
+
msgstr ""
|
2057
|
+
|
1916
2058
|
msgid "Duplicate artifact detected"
|
1917
2059
|
msgstr ""
|
1918
2060
|
|
@@ -1928,6 +2070,9 @@ msgstr "Modifica"
|
|
1928
2070
|
msgid "Edit RPM rule"
|
1929
2071
|
msgstr ""
|
1930
2072
|
|
2073
|
+
msgid "Edit content view assignment"
|
2074
|
+
msgstr ""
|
2075
|
+
|
1931
2076
|
msgid "Edit filter rule"
|
1932
2077
|
msgstr ""
|
1933
2078
|
|
@@ -1991,6 +2136,9 @@ msgstr ""
|
|
1991
2136
|
msgid "End Date"
|
1992
2137
|
msgstr "Data di fine"
|
1993
2138
|
|
2139
|
+
msgid "End date"
|
2140
|
+
msgstr ""
|
2141
|
+
|
1994
2142
|
msgid "Ends"
|
1995
2143
|
msgstr "Termina"
|
1996
2144
|
|
@@ -2000,6 +2148,9 @@ msgstr "Miglioramenti"
|
|
2000
2148
|
msgid "Enter a name"
|
2001
2149
|
msgstr ""
|
2002
2150
|
|
2151
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2152
|
+
msgstr ""
|
2153
|
+
|
2003
2154
|
msgid "Entitlements"
|
2004
2155
|
msgstr ""
|
2005
2156
|
|
@@ -2018,6 +2169,9 @@ msgstr ""
|
|
2018
2169
|
msgid "Environments"
|
2019
2170
|
msgstr "Ambienti"
|
2020
2171
|
|
2172
|
+
msgid "Epoch"
|
2173
|
+
msgstr ""
|
2174
|
+
|
2021
2175
|
msgid "Equal to"
|
2022
2176
|
msgstr ""
|
2023
2177
|
|
@@ -2075,6 +2229,9 @@ msgstr ""
|
|
2075
2229
|
msgid "Error connecting. Got: %s"
|
2076
2230
|
msgstr ""
|
2077
2231
|
|
2232
|
+
msgid "Error loading content views"
|
2233
|
+
msgstr ""
|
2234
|
+
|
2078
2235
|
msgid "Error refreshing status for %s: "
|
2079
2236
|
msgstr ""
|
2080
2237
|
|
@@ -2123,6 +2280,12 @@ msgstr ""
|
|
2123
2280
|
msgid "Export Library"
|
2124
2281
|
msgstr ""
|
2125
2282
|
|
2283
|
+
msgid "Export Repository"
|
2284
|
+
msgstr ""
|
2285
|
+
|
2286
|
+
msgid "Export Sync"
|
2287
|
+
msgstr ""
|
2288
|
+
|
2126
2289
|
msgid "Export Types"
|
2127
2290
|
msgstr ""
|
2128
2291
|
|
@@ -2147,6 +2310,9 @@ msgstr "Fallita"
|
|
2147
2310
|
msgid "Failed to delete %{host}: %{errors}"
|
2148
2311
|
msgstr ""
|
2149
2312
|
|
2313
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2314
|
+
msgstr ""
|
2315
|
+
|
2150
2316
|
msgid "Failed to download %s package."
|
2151
2317
|
msgid_plural "Failed to download %s packages."
|
2152
2318
|
msgstr[0] "Impossibile scaricare %s pacchetto."
|
@@ -2180,16 +2346,16 @@ msgid "Field to sort the results on"
|
|
2180
2346
|
msgstr "Campo nel quale ordinare i risultati"
|
2181
2347
|
|
2182
2348
|
msgid "File"
|
2183
|
-
msgstr ""
|
2349
|
+
msgstr "File"
|
2184
2350
|
|
2185
2351
|
msgid "File contents"
|
2186
2352
|
msgstr ""
|
2187
2353
|
|
2188
2354
|
msgid "Filename"
|
2189
|
-
msgstr ""
|
2355
|
+
msgstr "Nome file"
|
2190
2356
|
|
2191
2357
|
msgid "Files"
|
2192
|
-
msgstr ""
|
2358
|
+
msgstr "File"
|
2193
2359
|
|
2194
2360
|
msgid "Filter by Product"
|
2195
2361
|
msgstr ""
|
@@ -2204,7 +2370,7 @@ msgid "Filter created"
|
|
2204
2370
|
msgstr "Filtro creato"
|
2205
2371
|
|
2206
2372
|
msgid "Filter deleted"
|
2207
|
-
msgstr ""
|
2373
|
+
msgstr "Filtro rimosso"
|
2208
2374
|
|
2209
2375
|
msgid "Filter edited"
|
2210
2376
|
msgstr ""
|
@@ -2273,7 +2439,7 @@ msgid "Finish action timeout"
|
|
2273
2439
|
msgstr ""
|
2274
2440
|
|
2275
2441
|
msgid "Finished"
|
2276
|
-
msgstr ""
|
2442
|
+
msgstr "Completato"
|
2277
2443
|
|
2278
2444
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2279
2445
|
msgstr ""
|
@@ -2334,6 +2500,15 @@ msgstr ""
|
|
2334
2500
|
msgid "Generate repository applicability"
|
2335
2501
|
msgstr ""
|
2336
2502
|
|
2503
|
+
msgid "Generated"
|
2504
|
+
msgstr ""
|
2505
|
+
|
2506
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2507
|
+
msgstr ""
|
2508
|
+
|
2509
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2510
|
+
msgstr ""
|
2511
|
+
|
2337
2512
|
msgid "Get all content available, not just that provided by subscriptions"
|
2338
2513
|
msgstr ""
|
2339
2514
|
|
@@ -2370,6 +2545,9 @@ msgstr ""
|
|
2370
2545
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2371
2546
|
msgstr ""
|
2372
2547
|
|
2548
|
+
msgid "Go to job details"
|
2549
|
+
msgstr ""
|
2550
|
+
|
2373
2551
|
msgid "Go to task page"
|
2374
2552
|
msgstr ""
|
2375
2553
|
|
@@ -2394,6 +2572,12 @@ msgstr ""
|
|
2394
2572
|
msgid "Helper"
|
2395
2573
|
msgstr ""
|
2396
2574
|
|
2575
|
+
msgid "Hide affected activation keys"
|
2576
|
+
msgstr ""
|
2577
|
+
|
2578
|
+
msgid "Hide affected hosts"
|
2579
|
+
msgstr ""
|
2580
|
+
|
2397
2581
|
msgid "Hide description"
|
2398
2582
|
msgstr ""
|
2399
2583
|
|
@@ -2445,15 +2629,27 @@ msgstr ""
|
|
2445
2629
|
msgid "Host Tasks Workers Pool Size"
|
2446
2630
|
msgstr ""
|
2447
2631
|
|
2632
|
+
msgid "Host collection"
|
2633
|
+
msgstr ""
|
2634
|
+
|
2448
2635
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2449
2636
|
msgstr "L'insieme di host '%{name}' eccede il limite di utilizzo massimo '%{limit}'"
|
2450
2637
|
|
2451
2638
|
msgid "Host collection is empty."
|
2452
2639
|
msgstr "L'insieme di host è vuoto."
|
2453
2640
|
|
2641
|
+
msgid "Host collections"
|
2642
|
+
msgstr ""
|
2643
|
+
|
2644
|
+
msgid "Host collections updated"
|
2645
|
+
msgstr ""
|
2646
|
+
|
2454
2647
|
msgid "Host content and subscription details"
|
2455
2648
|
msgstr "Contenuto host e informazioni sulla sottoscrizione"
|
2456
2649
|
|
2650
|
+
msgid "Host content view and environment updated"
|
2651
|
+
msgstr ""
|
2652
|
+
|
2457
2653
|
msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
|
2458
2654
|
msgstr ""
|
2459
2655
|
|
@@ -2497,7 +2693,7 @@ msgid "Host with ID %s not found."
|
|
2497
2693
|
msgstr ""
|
2498
2694
|
|
2499
2695
|
msgid "Hosts"
|
2500
|
-
msgstr ""
|
2696
|
+
msgstr "Hosts"
|
2501
2697
|
|
2502
2698
|
msgid "Hosts with Installable Errata"
|
2503
2699
|
msgstr "Host con errata installabili"
|
@@ -2505,7 +2701,7 @@ msgstr "Host con errata installabili"
|
|
2505
2701
|
msgid "Hosts: "
|
2506
2702
|
msgstr ""
|
2507
2703
|
|
2508
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2704
|
+
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."
|
2509
2705
|
msgstr ""
|
2510
2706
|
|
2511
2707
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2568,12 +2764,18 @@ msgstr ""
|
|
2568
2764
|
msgid "ID of the repository set to enable"
|
2569
2765
|
msgstr "ID dell'insieme di repositori da abilitare"
|
2570
2766
|
|
2767
|
+
msgid "ID of the repository within the set to disable"
|
2768
|
+
msgstr ""
|
2769
|
+
|
2571
2770
|
msgid "ID of the sync plan"
|
2572
2771
|
msgstr "ID del programma di sincronizzazione"
|
2573
2772
|
|
2574
2773
|
msgid "ID: %s doesn't exist "
|
2575
2774
|
msgstr "ID: %s non esiste"
|
2576
2775
|
|
2776
|
+
msgid "Id"
|
2777
|
+
msgstr ""
|
2778
|
+
|
2577
2779
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2578
2780
|
msgstr ""
|
2579
2781
|
|
@@ -2646,16 +2848,22 @@ msgstr ""
|
|
2646
2848
|
msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
|
2647
2849
|
msgstr ""
|
2648
2850
|
|
2851
|
+
msgid "Ids of smart proxies to associate"
|
2852
|
+
msgstr ""
|
2853
|
+
|
2649
2854
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2650
2855
|
msgstr ""
|
2651
2856
|
|
2652
|
-
msgid "If
|
2857
|
+
msgid "If SSL should be verified for the upstream URL"
|
2858
|
+
msgstr ""
|
2859
|
+
|
2860
|
+
msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
|
2653
2861
|
msgstr ""
|
2654
2862
|
|
2655
2863
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2656
2864
|
msgstr ""
|
2657
2865
|
|
2658
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2866
|
+
msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
|
2659
2867
|
msgstr ""
|
2660
2868
|
|
2661
2869
|
msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
|
@@ -2664,6 +2872,9 @@ msgstr ""
|
|
2664
2872
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2665
2873
|
msgstr ""
|
2666
2874
|
|
2875
|
+
msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
|
2876
|
+
msgstr ""
|
2877
|
+
|
2667
2878
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2668
2879
|
msgstr ""
|
2669
2880
|
|
@@ -2679,6 +2890,9 @@ msgstr ""
|
|
2679
2890
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2680
2891
|
msgstr ""
|
2681
2892
|
|
2893
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2894
|
+
msgstr ""
|
2895
|
+
|
2682
2896
|
msgid "Ignorable content can be only set for Yum repositories."
|
2683
2897
|
msgstr ""
|
2684
2898
|
|
@@ -2715,6 +2929,9 @@ msgstr ""
|
|
2715
2929
|
msgid "Import Puppet classes"
|
2716
2930
|
msgstr "Importa classi Puppet"
|
2717
2931
|
|
2932
|
+
msgid "Import Repository"
|
2933
|
+
msgstr ""
|
2934
|
+
|
2718
2935
|
msgid "Import Types"
|
2719
2936
|
msgstr ""
|
2720
2937
|
|
@@ -2736,12 +2953,18 @@ msgstr ""
|
|
2736
2953
|
msgid "Import a content view version to the library"
|
2737
2954
|
msgstr ""
|
2738
2955
|
|
2956
|
+
msgid "Import a repository"
|
2957
|
+
msgstr ""
|
2958
|
+
|
2739
2959
|
msgid "Import facts"
|
2740
2960
|
msgstr "Importa gli eventi"
|
2741
2961
|
|
2742
2962
|
msgid "Import only"
|
2743
2963
|
msgstr ""
|
2744
2964
|
|
2965
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2966
|
+
msgstr ""
|
2967
|
+
|
2745
2968
|
msgid "Import uploads into a repository"
|
2746
2969
|
msgstr "Importa caricamento in un repositorio"
|
2747
2970
|
|
@@ -2751,9 +2974,12 @@ msgstr ""
|
|
2751
2974
|
msgid "Import-only content views can not be published directly"
|
2752
2975
|
msgstr ""
|
2753
2976
|
|
2754
|
-
msgid "
|
2977
|
+
msgid "Import/Export"
|
2755
2978
|
msgstr ""
|
2756
2979
|
|
2980
|
+
msgid "Important"
|
2981
|
+
msgstr "Importante"
|
2982
|
+
|
2757
2983
|
msgid "Importing manifest into '%{subject}' failed."
|
2758
2984
|
msgstr ""
|
2759
2985
|
|
@@ -2772,6 +2998,9 @@ msgstr ""
|
|
2772
2998
|
msgid "Include all RPMs with no errata."
|
2773
2999
|
msgstr ""
|
2774
3000
|
|
3001
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
3002
|
+
msgstr ""
|
3003
|
+
|
2775
3004
|
msgid "Include filter"
|
2776
3005
|
msgstr ""
|
2777
3006
|
|
@@ -2832,6 +3061,9 @@ msgstr ""
|
|
2832
3061
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2833
3062
|
msgstr ""
|
2834
3063
|
|
3064
|
+
msgid "Install"
|
3065
|
+
msgstr ""
|
3066
|
+
|
2835
3067
|
msgid "Install Applicable Errata"
|
2836
3068
|
msgstr "Installa errata applicabile"
|
2837
3069
|
|
@@ -2841,6 +3073,9 @@ msgstr ""
|
|
2841
3073
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2842
3074
|
msgstr ""
|
2843
3075
|
|
3076
|
+
msgid "Install errata using scoped search query"
|
3077
|
+
msgstr ""
|
3078
|
+
|
2844
3079
|
msgid "Install errata via Katello interface"
|
2845
3080
|
msgstr ""
|
2846
3081
|
|
@@ -2865,19 +3100,31 @@ msgstr ""
|
|
2865
3100
|
msgid "Install package via Katello interface"
|
2866
3101
|
msgstr ""
|
2867
3102
|
|
3103
|
+
msgid "Install packages"
|
3104
|
+
msgstr ""
|
3105
|
+
|
2868
3106
|
msgid "Install packages remotely using katello-agent. %s"
|
2869
3107
|
msgstr ""
|
2870
3108
|
|
2871
|
-
msgid "
|
3109
|
+
msgid "Install packages via Katello interface"
|
3110
|
+
msgstr ""
|
3111
|
+
|
3112
|
+
msgid "Install via customized remote execution"
|
2872
3113
|
msgstr ""
|
2873
3114
|
|
2874
|
-
msgid "
|
3115
|
+
msgid "Install via katello-agent"
|
2875
3116
|
msgstr ""
|
2876
3117
|
|
2877
|
-
msgid "
|
3118
|
+
msgid "Install via remote execution"
|
2878
3119
|
msgstr ""
|
2879
3120
|
|
2880
|
-
msgid "Installable
|
3121
|
+
msgid "Installable"
|
3122
|
+
msgstr "Installabile"
|
3123
|
+
|
3124
|
+
msgid "Installable errata"
|
3125
|
+
msgstr ""
|
3126
|
+
|
3127
|
+
msgid "Installable errata from content view"
|
2881
3128
|
msgstr ""
|
2882
3129
|
|
2883
3130
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2889,10 +3136,22 @@ msgstr ""
|
|
2889
3136
|
msgid "Installation of package(s) requested: %{packages}"
|
2890
3137
|
msgstr ""
|
2891
3138
|
|
3139
|
+
msgid "Installation status"
|
3140
|
+
msgstr ""
|
3141
|
+
|
2892
3142
|
msgid "Installed Packages"
|
2893
3143
|
msgstr "Pacchetti installati"
|
2894
3144
|
|
2895
|
-
msgid "Installed
|
3145
|
+
msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
|
3146
|
+
msgstr ""
|
3147
|
+
|
3148
|
+
msgid "Installed products"
|
3149
|
+
msgstr ""
|
3150
|
+
|
3151
|
+
msgid "Installed profile"
|
3152
|
+
msgstr ""
|
3153
|
+
|
3154
|
+
msgid "Installed version"
|
2896
3155
|
msgstr ""
|
2897
3156
|
|
2898
3157
|
msgid "Installing Erratum..."
|
@@ -2973,6 +3232,9 @@ msgstr ""
|
|
2973
3232
|
msgid "Invalid params provided - date_type must be one of %s"
|
2974
3233
|
msgstr ""
|
2975
3234
|
|
3235
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3236
|
+
msgstr ""
|
3237
|
+
|
2976
3238
|
msgid "Invalid value specified for Container Image repositories."
|
2977
3239
|
msgstr ""
|
2978
3240
|
|
@@ -2983,6 +3245,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
|
|
2983
3245
|
msgstr ""
|
2984
3246
|
|
2985
3247
|
msgid "Issued"
|
3248
|
+
msgstr "Emesso"
|
3249
|
+
|
3250
|
+
msgid "Issued from"
|
3251
|
+
msgstr ""
|
3252
|
+
|
3253
|
+
msgid "Job ${description} has started."
|
2986
3254
|
msgstr ""
|
2987
3255
|
|
2988
3256
|
msgid "Katello ID of local pool to update"
|
@@ -2997,6 +3265,12 @@ msgstr ""
|
|
2997
3265
|
msgid "Katello: Install Package Group"
|
2998
3266
|
msgstr ""
|
2999
3267
|
|
3268
|
+
msgid "Katello: Install errata by search query"
|
3269
|
+
msgstr ""
|
3270
|
+
|
3271
|
+
msgid "Katello: Install packages by search query"
|
3272
|
+
msgstr ""
|
3273
|
+
|
3000
3274
|
msgid "Katello: Module Stream Actions"
|
3001
3275
|
msgstr ""
|
3002
3276
|
|
@@ -3006,6 +3280,9 @@ msgstr ""
|
|
3006
3280
|
msgid "Katello: Remove Package Group"
|
3007
3281
|
msgstr ""
|
3008
3282
|
|
3283
|
+
msgid "Katello: Remove Packages by search query"
|
3284
|
+
msgstr ""
|
3285
|
+
|
3009
3286
|
msgid "Katello: Resolve Traces"
|
3010
3287
|
msgstr ""
|
3011
3288
|
|
@@ -3018,6 +3295,9 @@ msgstr ""
|
|
3018
3295
|
msgid "Katello: Update Package Group"
|
3019
3296
|
msgstr ""
|
3020
3297
|
|
3298
|
+
msgid "Katello: Update Packages by search query"
|
3299
|
+
msgstr ""
|
3300
|
+
|
3021
3301
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3022
3302
|
msgstr ""
|
3023
3303
|
|
@@ -3039,6 +3319,9 @@ msgstr "Etichetta"
|
|
3039
3319
|
msgid "Label of the content"
|
3040
3320
|
msgstr "Etichetta del contenuto"
|
3041
3321
|
|
3322
|
+
msgid "Label of the content view"
|
3323
|
+
msgstr ""
|
3324
|
+
|
3042
3325
|
msgid "Last published"
|
3043
3326
|
msgstr ""
|
3044
3327
|
|
@@ -3057,13 +3340,10 @@ msgstr ""
|
|
3057
3340
|
msgid "Learn more about adding Subscription Manifests"
|
3058
3341
|
msgstr ""
|
3059
3342
|
|
3060
|
-
msgid "
|
3061
|
-
msgstr ""
|
3062
|
-
|
3063
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3343
|
+
msgid "Less than"
|
3064
3344
|
msgstr ""
|
3065
3345
|
|
3066
|
-
msgid "
|
3346
|
+
msgid "Library"
|
3067
3347
|
msgstr ""
|
3068
3348
|
|
3069
3349
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3108,9 +3388,15 @@ msgstr ""
|
|
3108
3388
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3109
3389
|
msgstr ""
|
3110
3390
|
|
3391
|
+
msgid "Lifecycle environment: {lce}"
|
3392
|
+
msgstr ""
|
3393
|
+
|
3111
3394
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3112
3395
|
msgstr ""
|
3113
3396
|
|
3397
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3398
|
+
msgstr ""
|
3399
|
+
|
3114
3400
|
msgid "Limit content to just that available in the activation key's content view version"
|
3115
3401
|
msgstr ""
|
3116
3402
|
|
@@ -3219,6 +3505,9 @@ msgstr ""
|
|
3219
3505
|
msgid "List of Products for sync plan"
|
3220
3506
|
msgstr ""
|
3221
3507
|
|
3508
|
+
msgid "List of alternate_content_sources"
|
3509
|
+
msgstr ""
|
3510
|
+
|
3222
3511
|
msgid "List of component content view version ids for composite views"
|
3223
3512
|
msgstr "Elenco id delle versioni per la visualizzazione del contenuto per il componente per le visualizzazioni composite"
|
3224
3513
|
|
@@ -3315,12 +3604,18 @@ msgstr "Elenco prodotti in una sottoscrizione"
|
|
3315
3604
|
msgid "List of subscription products in an activation key"
|
3316
3605
|
msgstr "Elenco prodotti della sottoscrizione in una chiave di attivazione"
|
3317
3606
|
|
3318
|
-
msgid "List
|
3319
|
-
msgstr "
|
3607
|
+
msgid "List of versions to exclude and not run an action on"
|
3608
|
+
msgstr ""
|
3320
3609
|
|
3321
|
-
msgid "List
|
3610
|
+
msgid "List of versions to perform an action on"
|
3322
3611
|
msgstr ""
|
3323
3612
|
|
3613
|
+
msgid "List organization subscriptions"
|
3614
|
+
msgstr "Elenca le sottoscrizioni dell'organizzazione"
|
3615
|
+
|
3616
|
+
msgid "List packages"
|
3617
|
+
msgstr "Elenca pacchetti"
|
3618
|
+
|
3324
3619
|
msgid "List packages installed on the host"
|
3325
3620
|
msgstr ""
|
3326
3621
|
|
@@ -3360,6 +3655,12 @@ msgstr "Caricamento in corso"
|
|
3360
3655
|
msgid "Loading versions"
|
3361
3656
|
msgstr ""
|
3362
3657
|
|
3658
|
+
msgid "Loading..."
|
3659
|
+
msgstr ""
|
3660
|
+
|
3661
|
+
msgid "Low"
|
3662
|
+
msgstr ""
|
3663
|
+
|
3363
3664
|
msgid "Make copy of a content view"
|
3364
3665
|
msgstr "Esegui una copia di una visualizzazione del contenuto"
|
3365
3666
|
|
@@ -3417,6 +3718,9 @@ msgstr ""
|
|
3417
3718
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3418
3719
|
msgstr ""
|
3419
3720
|
|
3721
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3722
|
+
msgstr ""
|
3723
|
+
|
3420
3724
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3421
3725
|
msgstr "Numero massimo di host di contenuto superato per gli insiemi di host: %s"
|
3422
3726
|
|
@@ -3463,7 +3767,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
|
|
3463
3767
|
msgstr ""
|
3464
3768
|
|
3465
3769
|
msgid "Moderate"
|
3466
|
-
msgstr ""
|
3770
|
+
msgstr "Moderato"
|
3467
3771
|
|
3468
3772
|
msgid "Modular"
|
3469
3773
|
msgstr ""
|
@@ -3483,6 +3787,9 @@ msgstr ""
|
|
3483
3787
|
msgid "Module streams"
|
3484
3788
|
msgstr ""
|
3485
3789
|
|
3790
|
+
msgid "Module streams will appear here when available."
|
3791
|
+
msgstr ""
|
3792
|
+
|
3486
3793
|
msgid "Multi-entitlement"
|
3487
3794
|
msgstr "Entitlement-multipli"
|
3488
3795
|
|
@@ -3508,7 +3815,13 @@ msgid ""
|
|
3508
3815
|
" %{repos}"
|
3509
3816
|
msgstr ""
|
3510
3817
|
|
3818
|
+
msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
|
3819
|
+
msgstr ""
|
3820
|
+
|
3511
3821
|
msgid "Name"
|
3822
|
+
msgstr "Nome"
|
3823
|
+
|
3824
|
+
msgid "Name is a required parameter."
|
3512
3825
|
msgstr ""
|
3513
3826
|
|
3514
3827
|
msgid "Name of new activation key"
|
@@ -3517,6 +3830,9 @@ msgstr "Nome della nuova chiave di attivazione"
|
|
3517
3830
|
msgid "Name of the Content Credential"
|
3518
3831
|
msgstr ""
|
3519
3832
|
|
3833
|
+
msgid "Name of the alternate content source"
|
3834
|
+
msgstr ""
|
3835
|
+
|
3520
3836
|
msgid "Name of the content view"
|
3521
3837
|
msgstr "Nome visualizzazione dei contenuti"
|
3522
3838
|
|
@@ -3538,6 +3854,9 @@ msgstr ""
|
|
3538
3854
|
msgid "Nest"
|
3539
3855
|
msgstr "Nido"
|
3540
3856
|
|
3857
|
+
msgid "Network Sync"
|
3858
|
+
msgstr ""
|
3859
|
+
|
3541
3860
|
msgid "Never Synced"
|
3542
3861
|
msgstr "Mai sincronizzato"
|
3543
3862
|
|
@@ -3604,12 +3923,21 @@ msgstr ""
|
|
3604
3923
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3605
3924
|
msgstr "Nessuna versione della visualizzazione del contenuto %{component} esiste già come componente della visualizzazione del contenuto composita %{composite} con versione %{version}"
|
3606
3925
|
|
3926
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3927
|
+
msgstr ""
|
3928
|
+
|
3929
|
+
msgid "No action required"
|
3930
|
+
msgstr ""
|
3931
|
+
|
3607
3932
|
msgid "No applicable errata"
|
3608
3933
|
msgstr ""
|
3609
3934
|
|
3610
3935
|
msgid "No applicable errata for %s, skipping"
|
3611
3936
|
msgstr ""
|
3612
3937
|
|
3938
|
+
msgid "No applications to restart"
|
3939
|
+
msgstr ""
|
3940
|
+
|
3613
3941
|
msgid "No artifacts to show"
|
3614
3942
|
msgstr ""
|
3615
3943
|
|
@@ -3631,6 +3959,9 @@ msgstr "Non è stato trovato alcun evento per la cronologia della visualizzazion
|
|
3631
3959
|
msgid "No content views available"
|
3632
3960
|
msgstr ""
|
3633
3961
|
|
3962
|
+
msgid "No content views available for the selected environment"
|
3963
|
+
msgstr ""
|
3964
|
+
|
3634
3965
|
msgid "No content views belong to ${label}"
|
3635
3966
|
msgstr ""
|
3636
3967
|
|
@@ -3640,6 +3971,9 @@ msgstr "Nessun content_view_version_ids fornito"
|
|
3640
3971
|
msgid "No description"
|
3641
3972
|
msgstr ""
|
3642
3973
|
|
3974
|
+
msgid "No description provided"
|
3975
|
+
msgstr ""
|
3976
|
+
|
3643
3977
|
msgid "No enabled repositories match your search criteria."
|
3644
3978
|
msgstr ""
|
3645
3979
|
|
@@ -3664,6 +3998,9 @@ msgstr ""
|
|
3664
3998
|
msgid "No file uploaded"
|
3665
3999
|
msgstr "Nessun file caricato"
|
3666
4000
|
|
4001
|
+
msgid "No host collections"
|
4002
|
+
msgstr ""
|
4003
|
+
|
3667
4004
|
msgid "No host collections found."
|
3668
4005
|
msgstr "Nessun insieme di host trovato."
|
3669
4006
|
|
@@ -3673,6 +4010,9 @@ msgstr ""
|
|
3673
4010
|
msgid "No hosts registered with subscription-manager found in selection."
|
3674
4011
|
msgstr ""
|
3675
4012
|
|
4013
|
+
msgid "No hosts with content source found!"
|
4014
|
+
msgstr ""
|
4015
|
+
|
3676
4016
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3677
4017
|
msgstr ""
|
3678
4018
|
|
@@ -3697,6 +4037,9 @@ msgstr ""
|
|
3697
4037
|
msgid "No matching activation keys found."
|
3698
4038
|
msgstr ""
|
3699
4039
|
|
4040
|
+
msgid "No matching alternate content sources found"
|
4041
|
+
msgstr ""
|
4042
|
+
|
3700
4043
|
msgid "No matching content views found"
|
3701
4044
|
msgstr ""
|
3702
4045
|
|
@@ -3712,6 +4055,9 @@ msgstr ""
|
|
3712
4055
|
msgid "No matching history record found"
|
3713
4056
|
msgstr ""
|
3714
4057
|
|
4058
|
+
msgid "No matching host collections found"
|
4059
|
+
msgstr ""
|
4060
|
+
|
3715
4061
|
msgid "No matching hosts found."
|
3716
4062
|
msgstr ""
|
3717
4063
|
|
@@ -3742,6 +4088,12 @@ msgstr "Nessun nuovo pacchetto."
|
|
3742
4088
|
msgid "No packages"
|
3743
4089
|
msgstr ""
|
3744
4090
|
|
4091
|
+
msgid "No packages available to install"
|
4092
|
+
msgstr ""
|
4093
|
+
|
4094
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4095
|
+
msgstr ""
|
4096
|
+
|
3745
4097
|
msgid "No packages removed"
|
3746
4098
|
msgstr "Nessun pacchetto rimosso"
|
3747
4099
|
|
@@ -3763,9 +4115,6 @@ msgstr ""
|
|
3763
4115
|
msgid "No products are enabled."
|
3764
4116
|
msgstr ""
|
3765
4117
|
|
3766
|
-
msgid "No profiles to show"
|
3767
|
-
msgstr ""
|
3768
|
-
|
3769
4118
|
msgid "No pulp workers running."
|
3770
4119
|
msgstr ""
|
3771
4120
|
|
@@ -3832,9 +4181,6 @@ msgstr "Nessuno"
|
|
3832
4181
|
msgid "None provided"
|
3833
4182
|
msgstr ""
|
3834
4183
|
|
3835
|
-
msgid "Not Specified"
|
3836
|
-
msgstr ""
|
3837
|
-
|
3838
4184
|
msgid "Not a number"
|
3839
4185
|
msgstr ""
|
3840
4186
|
|
@@ -3847,6 +4193,9 @@ msgstr ""
|
|
3847
4193
|
msgid "Not running"
|
3848
4194
|
msgstr ""
|
3849
4195
|
|
4196
|
+
msgid "Not specified"
|
4197
|
+
msgstr ""
|
4198
|
+
|
3850
4199
|
msgid "Not yet published"
|
3851
4200
|
msgstr "Non ancora pubblicato"
|
3852
4201
|
|
@@ -3946,9 +4295,6 @@ msgstr ""
|
|
3946
4295
|
msgid "Organization Information not provided."
|
3947
4296
|
msgstr ""
|
3948
4297
|
|
3949
|
-
msgid "Organization Label"
|
3950
|
-
msgstr ""
|
3951
|
-
|
3952
4298
|
msgid "Organization cannot be blank."
|
3953
4299
|
msgstr "L'Organizzazione non può essere vuota."
|
3954
4300
|
|
@@ -4153,9 +4499,6 @@ msgstr ""
|
|
4153
4499
|
msgid "Packages"
|
4154
4500
|
msgstr "Pacchetti"
|
4155
4501
|
|
4156
|
-
msgid "Packages management functionality on this page is incomplete"
|
4157
|
-
msgstr ""
|
4158
|
-
|
4159
4502
|
msgid "Packages must be provided"
|
4160
4503
|
msgstr "È necessario fornire i pacchetti"
|
4161
4504
|
|
@@ -4175,9 +4518,9 @@ msgid "Partition template IDs"
|
|
4175
4518
|
msgstr "ID template di partizione"
|
4176
4519
|
|
4177
4520
|
msgid "Password"
|
4178
|
-
msgstr ""
|
4521
|
+
msgstr "Password"
|
4179
4522
|
|
4180
|
-
msgid "Password for authentication"
|
4523
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4181
4524
|
msgstr ""
|
4182
4525
|
|
4183
4526
|
msgid "Password of the upstream authentication token."
|
@@ -4190,7 +4533,7 @@ msgid "Password to access URL"
|
|
4190
4533
|
msgstr ""
|
4191
4534
|
|
4192
4535
|
msgid "Path"
|
4193
|
-
msgstr ""
|
4536
|
+
msgstr "Percorso"
|
4194
4537
|
|
4195
4538
|
msgid "Path for ssl cert used for pulp server auth"
|
4196
4539
|
msgstr ""
|
@@ -4198,6 +4541,9 @@ msgstr ""
|
|
4198
4541
|
msgid "Path for ssl key used for pulp server auth"
|
4199
4542
|
msgstr ""
|
4200
4543
|
|
4544
|
+
msgid "Path suffixes for finding alternate content"
|
4545
|
+
msgstr ""
|
4546
|
+
|
4201
4547
|
msgid "Paused"
|
4202
4548
|
msgstr "In pausa"
|
4203
4549
|
|
@@ -4216,6 +4562,12 @@ msgstr ""
|
|
4216
4562
|
msgid "Performs a full-export of the repositories in library."
|
4217
4563
|
msgstr ""
|
4218
4564
|
|
4565
|
+
msgid "Performs a full-export of the repository in library."
|
4566
|
+
msgstr ""
|
4567
|
+
|
4568
|
+
msgid "Performs a incremental-export of the repository in library."
|
4569
|
+
msgstr ""
|
4570
|
+
|
4219
4571
|
msgid "Performs an incremental-export of a content view version."
|
4220
4572
|
msgstr ""
|
4221
4573
|
|
@@ -4249,6 +4601,12 @@ msgstr ""
|
|
4249
4601
|
msgid "Please select a content source before assigning a kickstart repository"
|
4250
4602
|
msgstr ""
|
4251
4603
|
|
4604
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4605
|
+
msgstr ""
|
4606
|
+
|
4607
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4608
|
+
msgstr ""
|
4609
|
+
|
4252
4610
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4253
4611
|
msgstr ""
|
4254
4612
|
|
@@ -4270,9 +4628,39 @@ msgstr ""
|
|
4270
4628
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4271
4629
|
msgstr ""
|
4272
4630
|
|
4631
|
+
msgid "Prefer registered through proxy for remote execution"
|
4632
|
+
msgstr ""
|
4633
|
+
|
4634
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4635
|
+
msgstr ""
|
4636
|
+
|
4637
|
+
msgid "Prevent from further updates"
|
4638
|
+
msgstr ""
|
4639
|
+
|
4273
4640
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4274
4641
|
msgstr ""
|
4275
4642
|
|
4643
|
+
msgid "Problem searching"
|
4644
|
+
msgstr ""
|
4645
|
+
|
4646
|
+
msgid "Problem searching errata"
|
4647
|
+
msgstr ""
|
4648
|
+
|
4649
|
+
msgid "Problem searching host collections"
|
4650
|
+
msgstr ""
|
4651
|
+
|
4652
|
+
msgid "Problem searching module streams"
|
4653
|
+
msgstr ""
|
4654
|
+
|
4655
|
+
msgid "Problem searching packages"
|
4656
|
+
msgstr ""
|
4657
|
+
|
4658
|
+
msgid "Problem searching repository sets"
|
4659
|
+
msgstr ""
|
4660
|
+
|
4661
|
+
msgid "Problem searching traces"
|
4662
|
+
msgstr ""
|
4663
|
+
|
4276
4664
|
msgid "Processing metadata"
|
4277
4665
|
msgstr "Processazione metadati"
|
4278
4666
|
|
@@ -4292,7 +4680,7 @@ msgid "Product ID"
|
|
4292
4680
|
msgstr "ID del prodotto"
|
4293
4681
|
|
4294
4682
|
msgid "Product Name"
|
4295
|
-
msgstr ""
|
4683
|
+
msgstr "Nome prodotto"
|
4296
4684
|
|
4297
4685
|
msgid "Product and Repositories"
|
4298
4686
|
msgstr "Prodotto e repositori"
|
@@ -4329,11 +4717,8 @@ msgstr ""
|
|
4329
4717
|
msgid "Products"
|
4330
4718
|
msgstr "Prodotti"
|
4331
4719
|
|
4332
|
-
msgid "Profiles"
|
4333
|
-
msgstr ""
|
4334
|
-
|
4335
4720
|
msgid "Promote"
|
4336
|
-
msgstr ""
|
4721
|
+
msgstr "Avanzamento"
|
4337
4722
|
|
4338
4723
|
msgid "Promote a content view version"
|
4339
4724
|
msgstr "Avanza una versione della visualizzazione del contenuto"
|
@@ -4359,6 +4744,9 @@ msgstr ""
|
|
4359
4744
|
msgid "Promotion to Environment"
|
4360
4745
|
msgstr ""
|
4361
4746
|
|
4747
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4748
|
+
msgstr ""
|
4749
|
+
|
4362
4750
|
msgid "Provided Products"
|
4363
4751
|
msgstr "Prodotti forniti"
|
4364
4752
|
|
@@ -4369,10 +4757,10 @@ msgid "Provisioning template IDs"
|
|
4369
4757
|
msgstr "ID template di provisioning"
|
4370
4758
|
|
4371
4759
|
msgid "Proxies"
|
4372
|
-
msgstr ""
|
4760
|
+
msgstr "Proxy"
|
4373
4761
|
|
4374
4762
|
msgid "Public"
|
4375
|
-
msgstr ""
|
4763
|
+
msgstr "Pubblica"
|
4376
4764
|
|
4377
4765
|
msgid "Public key block in DER encoding or certificate content"
|
4378
4766
|
msgstr ""
|
@@ -4521,18 +4909,27 @@ msgstr ""
|
|
4521
4909
|
msgid "RPM name"
|
4522
4910
|
msgstr ""
|
4523
4911
|
|
4912
|
+
msgid "RPM packages"
|
4913
|
+
msgstr ""
|
4914
|
+
|
4524
4915
|
msgid "RPMs"
|
4525
4916
|
msgstr "RPM"
|
4526
4917
|
|
4527
4918
|
msgid "Range"
|
4528
|
-
msgstr ""
|
4919
|
+
msgstr "Gamma"
|
4529
4920
|
|
4530
4921
|
msgid "Realm IDs"
|
4531
4922
|
msgstr "ID realm"
|
4532
4923
|
|
4924
|
+
msgid "Reassign affected activation key"
|
4925
|
+
msgstr ""
|
4926
|
+
|
4533
4927
|
msgid "Reassign affected activation keys"
|
4534
4928
|
msgstr ""
|
4535
4929
|
|
4930
|
+
msgid "Reassign affected host"
|
4931
|
+
msgstr ""
|
4932
|
+
|
4536
4933
|
msgid "Reassign affected hosts"
|
4537
4934
|
msgstr ""
|
4538
4935
|
|
@@ -4560,6 +4957,9 @@ msgstr ""
|
|
4560
4957
|
msgid "Recommended Repositories"
|
4561
4958
|
msgstr ""
|
4562
4959
|
|
4960
|
+
msgid "Red Hat CDN"
|
4961
|
+
msgstr ""
|
4962
|
+
|
4563
4963
|
msgid "Red Hat CDN URL"
|
4564
4964
|
msgstr "Red Hat CDN URL"
|
4565
4965
|
|
@@ -4567,6 +4967,15 @@ msgid "Red Hat Repositories"
|
|
4567
4967
|
msgstr "Repositori di Red Hat"
|
4568
4968
|
|
4569
4969
|
msgid "Red Hat Repositories page"
|
4970
|
+
msgstr "Pagina repositori di Red Hat"
|
4971
|
+
|
4972
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4973
|
+
msgstr ""
|
4974
|
+
|
4975
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4976
|
+
msgstr ""
|
4977
|
+
|
4978
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4570
4979
|
msgstr ""
|
4571
4980
|
|
4572
4981
|
msgid "Red Hat products cannot be manipulated."
|
@@ -4599,6 +5008,18 @@ msgstr ""
|
|
4599
5008
|
msgid "Register host '%s' before attaching subscriptions"
|
4600
5009
|
msgstr ""
|
4601
5010
|
|
5011
|
+
msgid "Registered by"
|
5012
|
+
msgstr ""
|
5013
|
+
|
5014
|
+
msgid "Registered on"
|
5015
|
+
msgstr ""
|
5016
|
+
|
5017
|
+
msgid "Registered through"
|
5018
|
+
msgstr ""
|
5019
|
+
|
5020
|
+
msgid "Registration details"
|
5021
|
+
msgstr ""
|
5022
|
+
|
4602
5023
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4603
5024
|
msgstr ""
|
4604
5025
|
|
@@ -4627,7 +5048,7 @@ msgid "Related content views will appear here when created."
|
|
4627
5048
|
msgstr ""
|
4628
5049
|
|
4629
5050
|
msgid "Release"
|
4630
|
-
msgstr ""
|
5051
|
+
msgstr "Release"
|
4631
5052
|
|
4632
5053
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
4633
5054
|
msgstr ""
|
@@ -4689,12 +5110,21 @@ msgstr ""
|
|
4689
5110
|
msgid "Remove from environments"
|
4690
5111
|
msgstr ""
|
4691
5112
|
|
5113
|
+
msgid "Remove host from collections"
|
5114
|
+
msgstr ""
|
5115
|
+
|
5116
|
+
msgid "Remove host from host collections"
|
5117
|
+
msgstr ""
|
5118
|
+
|
4692
5119
|
msgid "Remove hosts from the host collection"
|
4693
5120
|
msgstr ""
|
4694
5121
|
|
4695
5122
|
msgid "Remove lifecycle environments from the smart proxy"
|
4696
5123
|
msgstr ""
|
4697
5124
|
|
5125
|
+
msgid "Remove module stream"
|
5126
|
+
msgstr ""
|
5127
|
+
|
4698
5128
|
msgid "Remove one or more host collections from one or more hosts"
|
4699
5129
|
msgstr ""
|
4700
5130
|
|
@@ -4716,6 +5146,9 @@ msgstr ""
|
|
4716
5146
|
msgid "Remove package via Katello interface"
|
4717
5147
|
msgstr ""
|
4718
5148
|
|
5149
|
+
msgid "Remove packages via Katello interface"
|
5150
|
+
msgstr ""
|
5151
|
+
|
4719
5152
|
msgid "Remove products from sync plan"
|
4720
5153
|
msgstr "Rimuovi prodotti dalla programmazione per la sincronizzazione"
|
4721
5154
|
|
@@ -4755,6 +5188,9 @@ msgstr "Tipo di repository"
|
|
4755
5188
|
msgid "Repositories"
|
4756
5189
|
msgstr "Repository"
|
4757
5190
|
|
5191
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5192
|
+
msgstr ""
|
5193
|
+
|
4758
5194
|
msgid "Repositories from published Content Views are not allowed."
|
4759
5195
|
msgstr "Non sono permessi i repository delle Visualizzazioni del contenuto pubblicate."
|
4760
5196
|
|
@@ -4830,9 +5266,6 @@ msgstr ""
|
|
4830
5266
|
msgid "Repository sets will appear here when available."
|
4831
5267
|
msgstr ""
|
4832
5268
|
|
4833
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4834
|
-
msgstr ""
|
4835
|
-
|
4836
5269
|
msgid "Republish Repositories of %{name} %{version}"
|
4837
5270
|
msgstr ""
|
4838
5271
|
|
@@ -4854,10 +5287,19 @@ msgstr ""
|
|
4854
5287
|
msgid "Requires Virt-Who"
|
4855
5288
|
msgstr ""
|
4856
5289
|
|
5290
|
+
msgid "Reset"
|
5291
|
+
msgstr ""
|
5292
|
+
|
4857
5293
|
msgid "Reset filters"
|
4858
5294
|
msgstr ""
|
4859
5295
|
|
5296
|
+
msgid "Reset module stream"
|
5297
|
+
msgstr ""
|
5298
|
+
|
4860
5299
|
msgid "Reset to default"
|
5300
|
+
msgstr "Reimposta sui valori predefiniti"
|
5301
|
+
|
5302
|
+
msgid "Reset to the default state"
|
4861
5303
|
msgstr ""
|
4862
5304
|
|
4863
5305
|
msgid "Resolve traces"
|
@@ -4884,7 +5326,7 @@ msgstr ""
|
|
4884
5326
|
msgid "Restart via remote execution"
|
4885
5327
|
msgstr ""
|
4886
5328
|
|
4887
|
-
msgid "Restrict
|
5329
|
+
msgid "Restrict composite content view promotion"
|
4888
5330
|
msgstr ""
|
4889
5331
|
|
4890
5332
|
msgid "Result"
|
@@ -4974,7 +5416,10 @@ msgstr ""
|
|
4974
5416
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4975
5417
|
msgstr ""
|
4976
5418
|
|
4977
|
-
msgid "Review
|
5419
|
+
msgid "Review affected environment"
|
5420
|
+
msgstr ""
|
5421
|
+
|
5422
|
+
msgid "Review affected environments"
|
4978
5423
|
msgstr ""
|
4979
5424
|
|
4980
5425
|
msgid "Review details"
|
@@ -4992,15 +5437,15 @@ msgstr ""
|
|
4992
5437
|
msgid "Roles"
|
4993
5438
|
msgstr "Ruoli"
|
4994
5439
|
|
4995
|
-
msgid "Rpm packages"
|
4996
|
-
msgstr ""
|
4997
|
-
|
4998
5440
|
msgid "Rules to be added"
|
4999
5441
|
msgstr ""
|
5000
5442
|
|
5001
5443
|
msgid "Run Sync Plan:"
|
5002
5444
|
msgstr ""
|
5003
5445
|
|
5446
|
+
msgid "Run job invocation"
|
5447
|
+
msgstr ""
|
5448
|
+
|
5004
5449
|
msgid "Running"
|
5005
5450
|
msgstr "In esecuzione"
|
5006
5451
|
|
@@ -5037,6 +5482,12 @@ msgstr "Cerca"
|
|
5037
5482
|
msgid "Search Query"
|
5038
5483
|
msgstr ""
|
5039
5484
|
|
5485
|
+
msgid "Search available packages"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5488
|
+
msgid "Search host collections"
|
5489
|
+
msgstr ""
|
5490
|
+
|
5040
5491
|
msgid "Search pattern (defaults to '*')"
|
5041
5492
|
msgstr ""
|
5042
5493
|
|
@@ -5052,6 +5503,9 @@ msgstr ""
|
|
5052
5503
|
msgid "Search string for hosts to perform an action on"
|
5053
5504
|
msgstr ""
|
5054
5505
|
|
5506
|
+
msgid "Search string for versions to perform an action on"
|
5507
|
+
msgstr ""
|
5508
|
+
|
5055
5509
|
msgid "Security"
|
5056
5510
|
msgstr "Sicurezza"
|
5057
5511
|
|
@@ -5064,6 +5518,9 @@ msgstr ""
|
|
5064
5518
|
msgid "Select"
|
5065
5519
|
msgstr "Seleziona"
|
5066
5520
|
|
5521
|
+
msgid "Select ..."
|
5522
|
+
msgstr ""
|
5523
|
+
|
5067
5524
|
msgid "Select All"
|
5068
5525
|
msgstr "Seleziona tutto"
|
5069
5526
|
|
@@ -5082,6 +5539,12 @@ msgstr ""
|
|
5082
5539
|
msgid "Select a content view"
|
5083
5540
|
msgstr ""
|
5084
5541
|
|
5542
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5543
|
+
msgstr ""
|
5544
|
+
|
5545
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5546
|
+
msgstr ""
|
5547
|
+
|
5085
5548
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5086
5549
|
msgstr ""
|
5087
5550
|
|
@@ -5097,6 +5560,12 @@ msgstr ""
|
|
5097
5560
|
msgid "Select an Organization"
|
5098
5561
|
msgstr "Seleziona una organizzazione"
|
5099
5562
|
|
5563
|
+
msgid "Select an environment"
|
5564
|
+
msgstr ""
|
5565
|
+
|
5566
|
+
msgid "Select an environment above"
|
5567
|
+
msgstr ""
|
5568
|
+
|
5100
5569
|
msgid "Select an organization"
|
5101
5570
|
msgstr ""
|
5102
5571
|
|
@@ -5109,6 +5578,15 @@ msgstr ""
|
|
5109
5578
|
msgid "Select content view"
|
5110
5579
|
msgstr ""
|
5111
5580
|
|
5581
|
+
msgid "Select environment"
|
5582
|
+
msgstr ""
|
5583
|
+
|
5584
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5585
|
+
msgstr ""
|
5586
|
+
|
5587
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5588
|
+
msgstr ""
|
5589
|
+
|
5112
5590
|
msgid "Select hosts to assign to %s"
|
5113
5591
|
msgstr "Seleziona host da assegnare a %s"
|
5114
5592
|
|
@@ -5121,6 +5599,9 @@ msgstr ""
|
|
5121
5599
|
msgid "Select one"
|
5122
5600
|
msgstr ""
|
5123
5601
|
|
5602
|
+
msgid "Select packages to install to the host {hostName}."
|
5603
|
+
msgstr ""
|
5604
|
+
|
5124
5605
|
msgid "Select page"
|
5125
5606
|
msgstr ""
|
5126
5607
|
|
@@ -5139,15 +5620,15 @@ msgstr ""
|
|
5139
5620
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5140
5621
|
msgstr ""
|
5141
5622
|
|
5142
|
-
msgid "Service Level"
|
5143
|
-
msgstr "Livello di servizio"
|
5144
|
-
|
5145
5623
|
msgid "Service Level %s"
|
5146
5624
|
msgstr "Livello %s del servizio"
|
5147
5625
|
|
5148
5626
|
msgid "Service Level (SLA)"
|
5149
5627
|
msgstr ""
|
5150
5628
|
|
5629
|
+
msgid "Service level"
|
5630
|
+
msgstr ""
|
5631
|
+
|
5151
5632
|
msgid "Service level of host"
|
5152
5633
|
msgstr ""
|
5153
5634
|
|
@@ -5160,6 +5641,9 @@ msgstr ""
|
|
5160
5641
|
msgid "Set content overrides to one or more hosts"
|
5161
5642
|
msgstr ""
|
5162
5643
|
|
5644
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5645
|
+
msgstr ""
|
5646
|
+
|
5163
5647
|
msgid "Set true to remove an override and reset it to 'default'"
|
5164
5648
|
msgstr ""
|
5165
5649
|
|
@@ -5214,12 +5698,21 @@ msgstr "Mostra una sottoscrizione"
|
|
5214
5698
|
msgid "Show a sync plan"
|
5215
5699
|
msgstr "Mostra una programmazione della sincronizzazione"
|
5216
5700
|
|
5701
|
+
msgid "Show affected activation keys"
|
5702
|
+
msgstr ""
|
5703
|
+
|
5704
|
+
msgid "Show affected hosts"
|
5705
|
+
msgstr ""
|
5706
|
+
|
5217
5707
|
msgid "Show all"
|
5218
5708
|
msgstr ""
|
5219
5709
|
|
5220
5710
|
msgid "Show an activation key"
|
5221
5711
|
msgstr "Mostra una chiave di attivazione"
|
5222
5712
|
|
5713
|
+
msgid "Show an alternate content source"
|
5714
|
+
msgstr ""
|
5715
|
+
|
5223
5716
|
msgid "Show an environment"
|
5224
5717
|
msgstr "Mostra un ambiente"
|
5225
5718
|
|
@@ -5287,7 +5780,7 @@ msgid "Sockets: %s"
|
|
5287
5780
|
msgstr "Socket: %s"
|
5288
5781
|
|
5289
5782
|
msgid "Solution"
|
5290
|
-
msgstr ""
|
5783
|
+
msgstr "Soluzione"
|
5291
5784
|
|
5292
5785
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
5293
5786
|
msgstr ""
|
@@ -5295,6 +5788,9 @@ msgstr ""
|
|
5295
5788
|
msgid "Solve dependencies"
|
5296
5789
|
msgstr ""
|
5297
5790
|
|
5791
|
+
msgid "Some hosts are ignored!"
|
5792
|
+
msgstr ""
|
5793
|
+
|
5298
5794
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5299
5795
|
msgstr ""
|
5300
5796
|
|
@@ -5322,9 +5818,15 @@ msgstr ""
|
|
5322
5818
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5323
5819
|
msgstr ""
|
5324
5820
|
|
5821
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5822
|
+
msgstr ""
|
5823
|
+
|
5325
5824
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5326
5825
|
msgstr ""
|
5327
5826
|
|
5827
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5828
|
+
msgstr ""
|
5829
|
+
|
5328
5830
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5329
5831
|
msgstr ""
|
5330
5832
|
|
@@ -5343,10 +5845,10 @@ msgstr ""
|
|
5343
5845
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5344
5846
|
msgstr ""
|
5345
5847
|
|
5346
|
-
msgid "Something went wrong while getting
|
5848
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5347
5849
|
msgstr ""
|
5348
5850
|
|
5349
|
-
msgid "Something went wrong while getting
|
5851
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5350
5852
|
msgstr ""
|
5351
5853
|
|
5352
5854
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5358,9 +5860,15 @@ msgstr ""
|
|
5358
5860
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5359
5861
|
msgstr ""
|
5360
5862
|
|
5863
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5864
|
+
msgstr ""
|
5865
|
+
|
5361
5866
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5362
5867
|
msgstr ""
|
5363
5868
|
|
5869
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5870
|
+
msgstr ""
|
5871
|
+
|
5364
5872
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5365
5873
|
msgstr ""
|
5366
5874
|
|
@@ -5397,6 +5905,9 @@ msgstr ""
|
|
5397
5905
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5398
5906
|
msgstr ""
|
5399
5907
|
|
5908
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5909
|
+
msgstr ""
|
5910
|
+
|
5400
5911
|
msgid "Something went wrong! Please check server logs!"
|
5401
5912
|
msgstr ""
|
5402
5913
|
|
@@ -5407,7 +5918,7 @@ msgid "Source RPM"
|
|
5407
5918
|
msgstr ""
|
5408
5919
|
|
5409
5920
|
msgid "Source RPMs"
|
5410
|
-
msgstr ""
|
5921
|
+
msgstr "RPM sorgenti"
|
5411
5922
|
|
5412
5923
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5413
5924
|
msgstr ""
|
@@ -5430,9 +5941,15 @@ msgstr "La data e l'ora d'inizio non possono essere lasciati vuoti"
|
|
5430
5941
|
msgid "Start Time"
|
5431
5942
|
msgstr "Ora d'inizio"
|
5432
5943
|
|
5944
|
+
msgid "Start date"
|
5945
|
+
msgstr ""
|
5946
|
+
|
5433
5947
|
msgid "Starts"
|
5434
5948
|
msgstr "Inizia"
|
5435
5949
|
|
5950
|
+
msgid "State"
|
5951
|
+
msgstr ""
|
5952
|
+
|
5436
5953
|
msgid "Status"
|
5437
5954
|
msgstr "Stato"
|
5438
5955
|
|
@@ -5445,6 +5962,12 @@ msgstr "Storage"
|
|
5445
5962
|
msgid "Stream"
|
5446
5963
|
msgstr ""
|
5447
5964
|
|
5965
|
+
msgid "Streamed"
|
5966
|
+
msgstr ""
|
5967
|
+
|
5968
|
+
msgid "Streams based on the host based on the installation status"
|
5969
|
+
msgstr ""
|
5970
|
+
|
5448
5971
|
msgid "Streams based on the host based on their status"
|
5449
5972
|
msgstr ""
|
5450
5973
|
|
@@ -5485,11 +6008,17 @@ msgid "Subscription Pool uuid"
|
|
5485
6008
|
msgstr "uuid pool di sottoscrizioni"
|
5486
6009
|
|
5487
6010
|
msgid "Subscription Status"
|
6011
|
+
msgstr "Stato sottoscrizione"
|
6012
|
+
|
6013
|
+
msgid "Subscription UUID"
|
5488
6014
|
msgstr ""
|
5489
6015
|
|
5490
6016
|
msgid "Subscription Watch"
|
5491
6017
|
msgstr ""
|
5492
6018
|
|
6019
|
+
msgid "Subscription connection enabled"
|
6020
|
+
msgstr ""
|
6021
|
+
|
5493
6022
|
msgid "Subscription expiration notification"
|
5494
6023
|
msgstr ""
|
5495
6024
|
|
@@ -5568,7 +6097,7 @@ msgstr ""
|
|
5568
6097
|
msgid "Sync Canceled"
|
5569
6098
|
msgstr "Sincronizzazione cancellata"
|
5570
6099
|
|
5571
|
-
msgid "Sync
|
6100
|
+
msgid "Sync Connect Timeout"
|
5572
6101
|
msgstr ""
|
5573
6102
|
|
5574
6103
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5592,7 +6121,13 @@ msgstr "Programmazione sincronizzazione"
|
|
5592
6121
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5593
6122
|
msgstr ""
|
5594
6123
|
|
5595
|
-
msgid "Sync Smart Proxies after
|
6124
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6125
|
+
msgstr ""
|
6126
|
+
|
6127
|
+
msgid "Sync Sock Connect Timeout"
|
6128
|
+
msgstr ""
|
6129
|
+
|
6130
|
+
msgid "Sync Sock Read Timeout"
|
5596
6131
|
msgstr ""
|
5597
6132
|
|
5598
6133
|
msgid "Sync Status"
|
@@ -5604,6 +6139,9 @@ msgstr ""
|
|
5604
6139
|
msgid "Sync Summary for %s"
|
5605
6140
|
msgstr ""
|
5606
6141
|
|
6142
|
+
msgid "Sync Total Timeout"
|
6143
|
+
msgstr ""
|
6144
|
+
|
5607
6145
|
msgid "Sync a repository"
|
5608
6146
|
msgstr "Sincronizza un repositorio"
|
5609
6147
|
|
@@ -5673,6 +6211,9 @@ msgstr ""
|
|
5673
6211
|
msgid "System Status"
|
5674
6212
|
msgstr "Stato del sistema"
|
5675
6213
|
|
6214
|
+
msgid "System purpose"
|
6215
|
+
msgstr ""
|
6216
|
+
|
5676
6217
|
msgid "Tag name"
|
5677
6218
|
msgstr ""
|
5678
6219
|
|
@@ -5680,7 +6221,7 @@ msgid "Tags"
|
|
5680
6221
|
msgstr "Tag"
|
5681
6222
|
|
5682
6223
|
msgid "Task"
|
5683
|
-
msgstr ""
|
6224
|
+
msgstr "Attività"
|
5684
6225
|
|
5685
6226
|
msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
|
5686
6227
|
msgstr ""
|
@@ -5700,6 +6241,9 @@ msgstr "Temporaneo"
|
|
5700
6241
|
msgid "The '%s' environment cannot contain a changeset!"
|
5701
6242
|
msgstr "L'ambiente '%s' non può contenere un changeset!"
|
5702
6243
|
|
6244
|
+
msgid "The Alternate Content Source type"
|
6245
|
+
msgstr ""
|
6246
|
+
|
5703
6247
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5704
6248
|
msgstr ""
|
5705
6249
|
|
@@ -5712,6 +6256,9 @@ msgstr ""
|
|
5712
6256
|
msgid "The actual file contents"
|
5713
6257
|
msgstr "I contenuti del file"
|
5714
6258
|
|
6259
|
+
msgid "The content type for the Alternate Content Source"
|
6260
|
+
msgstr ""
|
6261
|
+
|
5715
6262
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5716
6263
|
msgstr "L'organizzazione attuale non può essere cancellata. Smistarsi su una organizzazione diversa prima di eseguire la rimozione."
|
5717
6264
|
|
@@ -5721,7 +6268,7 @@ msgstr "La visualizzazione del contenuto predefinita non può essere modificata,
|
|
5721
6268
|
msgid "The default content view cannot be promoted"
|
5722
6269
|
msgstr "Impossibile avanzare la visualizzazione del contenuto predefinita."
|
5723
6270
|
|
5724
|
-
msgid "The default dependency solving value for new
|
6271
|
+
msgid "The default dependency solving value for new content views."
|
5725
6272
|
msgstr ""
|
5726
6273
|
|
5727
6274
|
msgid "The description for the content view version"
|
@@ -5751,6 +6298,9 @@ msgstr ""
|
|
5751
6298
|
msgid "The field to sort the data by. Defaults to the created date."
|
5752
6299
|
msgstr ""
|
5753
6300
|
|
6301
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6302
|
+
msgstr ""
|
6303
|
+
|
5754
6304
|
msgid "The following hosts have errata that apply to them: "
|
5755
6305
|
msgstr "I seguenti host dispongono di errata da applicare:"
|
5756
6306
|
|
@@ -5759,15 +6309,39 @@ msgid ""
|
|
5759
6309
|
" %{repos}"
|
5760
6310
|
msgstr ""
|
5761
6311
|
|
6312
|
+
msgid "The id of the content source"
|
6313
|
+
msgstr ""
|
6314
|
+
|
6315
|
+
msgid "The id of the content view"
|
6316
|
+
msgstr ""
|
6317
|
+
|
5762
6318
|
msgid "The id of the host to alter"
|
5763
6319
|
msgstr ""
|
5764
6320
|
|
6321
|
+
msgid "The id of the lifecycle environment"
|
6322
|
+
msgstr ""
|
6323
|
+
|
6324
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6325
|
+
msgstr ""
|
6326
|
+
|
5765
6327
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5766
6328
|
msgstr ""
|
5767
6329
|
|
5768
6330
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5769
6331
|
msgstr ""
|
5770
6332
|
|
6333
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6334
|
+
msgstr ""
|
6335
|
+
|
6336
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6337
|
+
msgstr ""
|
6338
|
+
|
6339
|
+
msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
|
6340
|
+
msgstr ""
|
6341
|
+
|
6342
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6343
|
+
msgstr ""
|
6344
|
+
|
5771
6345
|
msgid "The maximum number of versions of each package to keep."
|
5772
6346
|
msgstr ""
|
5773
6347
|
|
@@ -5854,9 +6428,18 @@ msgstr ""
|
|
5854
6428
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5855
6429
|
msgstr "Non è presente alcun errata da applicare agli host di contenuto registrati."
|
5856
6430
|
|
6431
|
+
msgid "There are no host collections available to add."
|
6432
|
+
msgstr ""
|
6433
|
+
|
5857
6434
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5858
6435
|
msgstr "Non è stato abilitato alcun prodotto o repositorio. Provare ad abilitarli tramite %{custom} o %{redhat}."
|
5859
6436
|
|
6437
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6438
|
+
msgstr ""
|
6439
|
+
|
6440
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6441
|
+
msgstr ""
|
6442
|
+
|
5860
6443
|
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."
|
5861
6444
|
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."
|
5862
6445
|
|
@@ -5869,6 +6452,12 @@ msgstr ""
|
|
5869
6452
|
msgid "There is nothing to see here"
|
5870
6453
|
msgstr ""
|
5871
6454
|
|
6455
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6456
|
+
msgstr ""
|
6457
|
+
|
6458
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6459
|
+
msgstr ""
|
6460
|
+
|
5872
6461
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5873
6462
|
msgstr ""
|
5874
6463
|
|
@@ -5917,13 +6506,13 @@ msgstr ""
|
|
5917
6506
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5918
6507
|
msgstr ""
|
5919
6508
|
|
5920
|
-
msgid "This host
|
6509
|
+
msgid "This host does not have any Module streams."
|
5921
6510
|
msgstr ""
|
5922
6511
|
|
5923
|
-
msgid "This host does not have any
|
6512
|
+
msgid "This host does not have any packages."
|
5924
6513
|
msgstr ""
|
5925
6514
|
|
5926
|
-
msgid "This host
|
6515
|
+
msgid "This host has errata that are applicable, but not installable."
|
5927
6516
|
msgstr ""
|
5928
6517
|
|
5929
6518
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5956,6 +6545,9 @@ msgstr ""
|
|
5956
6545
|
msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
|
5957
6546
|
msgstr ""
|
5958
6547
|
|
6548
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6549
|
+
msgstr ""
|
6550
|
+
|
5959
6551
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5960
6552
|
msgstr ""
|
5961
6553
|
|
@@ -5981,7 +6573,7 @@ msgid "This version is not promoted to any environments."
|
|
5981
6573
|
msgstr ""
|
5982
6574
|
|
5983
6575
|
msgid "This version will be removed from:"
|
5984
|
-
msgstr ""
|
6576
|
+
msgstr "Questa versione verrà rimossa da:"
|
5985
6577
|
|
5986
6578
|
msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
|
5987
6579
|
msgstr ""
|
@@ -5989,10 +6581,10 @@ msgstr ""
|
|
5989
6581
|
msgid "Time in minutes to consider orphan content as orphaned."
|
5990
6582
|
msgstr ""
|
5991
6583
|
|
5992
|
-
msgid "Time in seconds to wait for a
|
6584
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
5993
6585
|
msgstr ""
|
5994
6586
|
|
5995
|
-
msgid "Time in seconds to wait for a
|
6587
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
5996
6588
|
msgstr ""
|
5997
6589
|
|
5998
6590
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
@@ -6010,9 +6602,6 @@ msgstr ""
|
|
6010
6602
|
msgid "Total steps: "
|
6011
6603
|
msgstr ""
|
6012
6604
|
|
6013
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6014
|
-
msgstr ""
|
6015
|
-
|
6016
6605
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6017
6606
|
msgstr ""
|
6018
6607
|
|
@@ -6028,6 +6617,9 @@ msgstr ""
|
|
6028
6617
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6029
6618
|
msgstr ""
|
6030
6619
|
|
6620
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6621
|
+
msgstr ""
|
6622
|
+
|
6031
6623
|
msgid "Traces that require logout cannot be restarted remotely"
|
6032
6624
|
msgstr ""
|
6033
6625
|
|
@@ -6050,7 +6642,7 @@ msgid "Trying to cancel the synchronization..."
|
|
6050
6642
|
msgstr ""
|
6051
6643
|
|
6052
6644
|
msgid "Type"
|
6053
|
-
msgstr ""
|
6645
|
+
msgstr "Tipo"
|
6054
6646
|
|
6055
6647
|
msgid "Type must be one of: %s"
|
6056
6648
|
msgstr ""
|
@@ -6062,7 +6654,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
6062
6654
|
msgstr ""
|
6063
6655
|
|
6064
6656
|
msgid "URL"
|
6065
|
-
msgstr ""
|
6657
|
+
msgstr "URL"
|
6066
6658
|
|
6067
6659
|
msgid "URL needs to have a trailing /"
|
6068
6660
|
msgstr ""
|
@@ -6092,7 +6684,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
6092
6684
|
msgstr ""
|
6093
6685
|
|
6094
6686
|
msgid "Unable to connect"
|
6095
|
-
msgstr ""
|
6687
|
+
msgstr "Impossibile collegarsi"
|
6096
6688
|
|
6097
6689
|
msgid "Unable to connect. Got: %s"
|
6098
6690
|
msgstr ""
|
@@ -6109,9 +6701,15 @@ msgstr ""
|
|
6109
6701
|
msgid "Unable to get users"
|
6110
6702
|
msgstr ""
|
6111
6703
|
|
6704
|
+
msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
|
6705
|
+
msgstr ""
|
6706
|
+
|
6112
6707
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6113
6708
|
msgstr ""
|
6114
6709
|
|
6710
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6711
|
+
msgstr ""
|
6712
|
+
|
6115
6713
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6116
6714
|
msgstr "Impossibile riassegnare activation_keys. Controllare activation_key_content_view_id e activation_key_environment_id."
|
6117
6715
|
|
@@ -6154,6 +6752,9 @@ msgstr "Senza entitlement"
|
|
6154
6752
|
msgid "Unfiltered params array: %s."
|
6155
6753
|
msgstr ""
|
6156
6754
|
|
6755
|
+
msgid "Uninstall and reset"
|
6756
|
+
msgstr ""
|
6757
|
+
|
6157
6758
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6158
6759
|
msgstr ""
|
6159
6760
|
|
@@ -6208,6 +6809,9 @@ msgstr ""
|
|
6208
6809
|
msgid "Update"
|
6209
6810
|
msgstr "Aggiorna"
|
6210
6811
|
|
6812
|
+
msgid "Update Alternate Content Source"
|
6813
|
+
msgstr ""
|
6814
|
+
|
6211
6815
|
msgid "Update CDN Configuration"
|
6212
6816
|
msgstr ""
|
6213
6817
|
|
@@ -6247,6 +6851,9 @@ msgstr "Aggiorna programmazione sincronizzazione"
|
|
6247
6851
|
msgid "Update an activation key"
|
6248
6852
|
msgstr "Aggiorna una chiave di attivazione"
|
6249
6853
|
|
6854
|
+
msgid "Update an alternate content source"
|
6855
|
+
msgstr ""
|
6856
|
+
|
6250
6857
|
msgid "Update an environment"
|
6251
6858
|
msgstr "Aggiorna un ambiente"
|
6252
6859
|
|
@@ -6298,6 +6905,9 @@ msgstr ""
|
|
6298
6905
|
msgid "Update packages remotely using katello-agent. %s"
|
6299
6906
|
msgstr ""
|
6300
6907
|
|
6908
|
+
msgid "Update packages via Katello interface"
|
6909
|
+
msgstr ""
|
6910
|
+
|
6301
6911
|
msgid "Update redhat repository"
|
6302
6912
|
msgstr ""
|
6303
6913
|
|
@@ -6316,6 +6926,9 @@ msgstr ""
|
|
6316
6926
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6317
6927
|
msgstr ""
|
6318
6928
|
|
6929
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6930
|
+
msgstr ""
|
6931
|
+
|
6319
6932
|
msgid "Update the information about enabled repositories"
|
6320
6933
|
msgstr "Aggiorna le informazioni sui repositori abilitati"
|
6321
6934
|
|
@@ -6331,9 +6944,12 @@ msgstr "Aggiornato"
|
|
6331
6944
|
msgid "Updated component details"
|
6332
6945
|
msgstr ""
|
6333
6946
|
|
6334
|
-
msgid "
|
6947
|
+
msgid "Updated from"
|
6335
6948
|
msgstr ""
|
6336
6949
|
|
6950
|
+
msgid "Updates"
|
6951
|
+
msgstr "Aggiornamenti"
|
6952
|
+
|
6337
6953
|
msgid "Updates a product"
|
6338
6954
|
msgstr "Aggiorna un prodotto"
|
6339
6955
|
|
@@ -6358,7 +6974,7 @@ msgstr ""
|
|
6358
6974
|
msgid "Upgradable"
|
6359
6975
|
msgstr ""
|
6360
6976
|
|
6361
|
-
msgid "Upgradable
|
6977
|
+
msgid "Upgradable to"
|
6362
6978
|
msgstr ""
|
6363
6979
|
|
6364
6980
|
msgid "Upgrade"
|
@@ -6391,9 +7007,18 @@ msgstr ""
|
|
6391
7007
|
msgid "Upload request id"
|
6392
7008
|
msgstr "Carica l'id delle richieste"
|
6393
7009
|
|
7010
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7011
|
+
msgstr ""
|
7012
|
+
|
7013
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7014
|
+
msgstr ""
|
7015
|
+
|
6394
7016
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6395
7017
|
msgstr ""
|
6396
7018
|
|
7019
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7020
|
+
msgstr ""
|
7021
|
+
|
6397
7022
|
msgid "Upstream identity certificate not available"
|
6398
7023
|
msgstr "Certificato identità upstream non disponibile"
|
6399
7024
|
|
@@ -6406,15 +7031,12 @@ msgstr ""
|
|
6406
7031
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6407
7032
|
msgstr ""
|
6408
7033
|
|
6409
|
-
msgid "Upstream organization to sync CDN content from"
|
7034
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6410
7035
|
msgstr ""
|
6411
7036
|
|
6412
7037
|
msgid "Upstream password requires upstream username be set."
|
6413
7038
|
msgstr ""
|
6414
7039
|
|
6415
|
-
msgid "Upstream server to sync CDN content from"
|
6416
|
-
msgstr ""
|
6417
|
-
|
6418
7040
|
msgid "Upstream username and password may only be set on custom repositories."
|
6419
7041
|
msgstr ""
|
6420
7042
|
|
@@ -6455,9 +7077,9 @@ msgid "User must be logged in."
|
|
6455
7077
|
msgstr "L'utente deve essere registrato."
|
6456
7078
|
|
6457
7079
|
msgid "Username"
|
6458
|
-
msgstr ""
|
7080
|
+
msgstr "Nome utente"
|
6459
7081
|
|
6460
|
-
msgid "Username for authentication"
|
7082
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6461
7083
|
msgstr ""
|
6462
7084
|
|
6463
7085
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6469,7 +7091,7 @@ msgstr ""
|
|
6469
7091
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6470
7092
|
msgstr ""
|
6471
7093
|
|
6472
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7094
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6473
7095
|
msgstr ""
|
6474
7096
|
|
6475
7097
|
msgid "Valid"
|
@@ -6514,6 +7136,15 @@ msgstr ""
|
|
6514
7136
|
msgid "Versions"
|
6515
7137
|
msgstr "Versioni"
|
6516
7138
|
|
7139
|
+
msgid "Versions "
|
7140
|
+
msgstr ""
|
7141
|
+
|
7142
|
+
msgid "Versions to exclusively include in the action"
|
7143
|
+
msgstr ""
|
7144
|
+
|
7145
|
+
msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
|
7146
|
+
msgstr ""
|
7147
|
+
|
6517
7148
|
msgid "Versions will appear here when the content view is published."
|
6518
7149
|
msgstr ""
|
6519
7150
|
|
@@ -6526,16 +7157,22 @@ msgstr ""
|
|
6526
7157
|
msgid "View matching content"
|
6527
7158
|
msgstr ""
|
6528
7159
|
|
6529
|
-
msgid "
|
6530
|
-
msgstr "
|
7160
|
+
msgid "View tasks "
|
7161
|
+
msgstr ""
|
6531
7162
|
|
6532
|
-
msgid "
|
7163
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6533
7164
|
msgstr ""
|
6534
7165
|
|
7166
|
+
msgid "Virtual"
|
7167
|
+
msgstr "Virtuale"
|
7168
|
+
|
6535
7169
|
msgid "Waiting to start."
|
6536
7170
|
msgstr ""
|
6537
7171
|
|
6538
7172
|
msgid "Warning"
|
7173
|
+
msgstr "Avvertenza"
|
7174
|
+
|
7175
|
+
msgid "What's next?"
|
6539
7176
|
msgstr ""
|
6540
7177
|
|
6541
7178
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
@@ -6559,7 +7196,7 @@ msgstr ""
|
|
6559
7196
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6560
7197
|
msgstr ""
|
6561
7198
|
|
6562
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7199
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6563
7200
|
msgstr ""
|
6564
7201
|
|
6565
7202
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6589,9 +7226,6 @@ msgstr ""
|
|
6589
7226
|
msgid "Yes"
|
6590
7227
|
msgstr "Si"
|
6591
7228
|
|
6592
|
-
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'."
|
6593
|
-
msgstr ""
|
6594
|
-
|
6595
7229
|
msgid "You are not allowed to promote to Environments %s"
|
6596
7230
|
msgstr "Non è possibile eseguire un avanzamanento negli ambienti %s"
|
6597
7231
|
|
@@ -6616,6 +7250,9 @@ msgstr ""
|
|
6616
7250
|
msgid "You currently don't have any Content views."
|
6617
7251
|
msgstr ""
|
6618
7252
|
|
7253
|
+
msgid "You currently don't have any alternate content sources."
|
7254
|
+
msgstr ""
|
7255
|
+
|
6619
7256
|
msgid "You currently don't have any filters for this content view."
|
6620
7257
|
msgstr ""
|
6621
7258
|
|
@@ -6649,6 +7286,9 @@ msgstr ""
|
|
6649
7286
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6650
7287
|
msgstr ""
|
6651
7288
|
|
7289
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7290
|
+
msgstr ""
|
7291
|
+
|
6652
7292
|
msgid "You were not allowed to add %s"
|
6653
7293
|
msgstr "Non puoi aggiungere %s"
|
6654
7294
|
|
@@ -6670,6 +7310,9 @@ msgstr ""
|
|
6670
7310
|
msgid "Your search returned no matching "
|
6671
7311
|
msgstr ""
|
6672
7312
|
|
7313
|
+
msgid "Your search returned no matching Module streams."
|
7314
|
+
msgstr ""
|
7315
|
+
|
6673
7316
|
msgid "Your search returned no matching RPMs."
|
6674
7317
|
msgstr ""
|
6675
7318
|
|
@@ -6784,6 +7427,9 @@ msgstr ""
|
|
6784
7427
|
msgid "can't be blank"
|
6785
7428
|
msgstr "non può essere vuoto"
|
6786
7429
|
|
7430
|
+
msgid "cannot add filter to generated content views"
|
7431
|
+
msgstr ""
|
7432
|
+
|
6787
7433
|
msgid "cannot add filter to import-only view"
|
6788
7434
|
msgstr ""
|
6789
7435
|
|
@@ -6838,6 +7484,9 @@ msgstr ""
|
|
6838
7484
|
msgid "checking Pulp task status"
|
6839
7485
|
msgstr ""
|
6840
7486
|
|
7487
|
+
msgid "click here"
|
7488
|
+
msgstr ""
|
7489
|
+
|
6841
7490
|
msgid "composite content view identifier"
|
6842
7491
|
msgstr ""
|
6843
7492
|
|
@@ -6856,6 +7505,9 @@ msgstr ""
|
|
6856
7505
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6857
7506
|
msgstr ""
|
6858
7507
|
|
7508
|
+
msgid "content view Dependency Solving Default"
|
7509
|
+
msgstr ""
|
7510
|
+
|
6859
7511
|
msgid "content view component ID. Identifier of the component association"
|
6860
7512
|
msgstr ""
|
6861
7513
|
|
@@ -6931,7 +7583,7 @@ msgstr "descrizione del filtro"
|
|
6931
7583
|
msgid "description of the repository"
|
6932
7584
|
msgstr ""
|
6933
7585
|
|
6934
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7586
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6935
7587
|
msgstr ""
|
6936
7588
|
|
6937
7589
|
msgid "enables or disables synchronization"
|
@@ -7006,6 +7658,9 @@ msgstr "identificatore filtro"
|
|
7006
7658
|
msgid "filter identifiers"
|
7007
7659
|
msgstr ""
|
7008
7660
|
|
7661
|
+
msgid "filter only environments containing this label"
|
7662
|
+
msgstr ""
|
7663
|
+
|
7009
7664
|
msgid "filter only environments containing this name"
|
7010
7665
|
msgstr "filtra solo gli ambienti con questo nome"
|
7011
7666
|
|
@@ -7069,6 +7724,9 @@ msgstr "installazione errata in corso..."
|
|
7069
7724
|
msgid "installing erratum..."
|
7070
7725
|
msgstr "installazione erratum in corso..."
|
7071
7726
|
|
7727
|
+
msgid "installing or updating packages"
|
7728
|
+
msgstr ""
|
7729
|
+
|
7072
7730
|
msgid "installing package group..."
|
7073
7731
|
msgstr "installazione gruppo di pacchetti in corso..."
|
7074
7732
|
|
@@ -7096,9 +7754,18 @@ msgstr "è già assegnato a questo capsule"
|
|
7096
7754
|
msgid "is invalid"
|
7097
7755
|
msgstr "non è valido"
|
7098
7756
|
|
7757
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7758
|
+
msgstr ""
|
7759
|
+
|
7760
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7761
|
+
msgstr ""
|
7762
|
+
|
7099
7763
|
msgid "is not enabled. must be one of the following: %s"
|
7100
7764
|
msgstr ""
|
7101
7765
|
|
7766
|
+
msgid "is only allowed for Yum repositories."
|
7767
|
+
msgstr ""
|
7768
|
+
|
7102
7769
|
msgid "label of the environment"
|
7103
7770
|
msgstr "etichetta dell'ambiente"
|
7104
7771
|
|
@@ -7171,6 +7838,9 @@ msgstr "deve avere una chiave GPG pubblica valida"
|
|
7171
7838
|
msgid "must contain valid Public GPG Key"
|
7172
7839
|
msgstr "deve avere una chiave GPG pubblica valida"
|
7173
7840
|
|
7841
|
+
msgid "must not be a negative value."
|
7842
|
+
msgstr ""
|
7843
|
+
|
7174
7844
|
msgid "must not contain leading or trailing white spaces."
|
7175
7845
|
msgstr "non deve avere spazi iniziali o finali."
|
7176
7846
|
|
@@ -7267,6 +7937,9 @@ msgstr "pacchetto: versione"
|
|
7267
7937
|
msgid "package_ids is not an array"
|
7268
7938
|
msgstr "package_ids non è un array"
|
7269
7939
|
|
7940
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7941
|
+
msgstr ""
|
7942
|
+
|
7270
7943
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7271
7944
|
msgstr ""
|
7272
7945
|
|
@@ -7384,6 +8057,12 @@ msgstr ""
|
|
7384
8057
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7385
8058
|
msgstr "i seguenti attributi non possono essere caricati per il provider di Red Hat: [ %s ]"
|
7386
8059
|
|
8060
|
+
msgid "to"
|
8061
|
+
msgstr ""
|
8062
|
+
|
8063
|
+
msgid "to update configuration on all hosts, or"
|
8064
|
+
msgstr ""
|
8065
|
+
|
7387
8066
|
msgid "true if the latest version of the component's content view is desired"
|
7388
8067
|
msgstr ""
|
7389
8068
|
|
@@ -7408,9 +8087,15 @@ msgstr ""
|
|
7408
8087
|
msgid "unknown permission for %s"
|
7409
8088
|
msgstr "permesso sconosciuto per %s"
|
7410
8089
|
|
8090
|
+
msgid "unlimited"
|
8091
|
+
msgstr ""
|
8092
|
+
|
7411
8093
|
msgid "update a filter"
|
7412
8094
|
msgstr ""
|
7413
8095
|
|
8096
|
+
msgid "update configuration on the hosts manually:"
|
8097
|
+
msgstr ""
|
8098
|
+
|
7414
8099
|
msgid "updating package group..."
|
7415
8100
|
msgstr "aggiornamento gruppo di pacchetti in corso..."
|
7416
8101
|
|
@@ -7423,6 +8108,9 @@ msgstr "Aggiornamento pacchetto in corso..."
|
|
7423
8108
|
msgid "updating packages..."
|
7424
8109
|
msgstr "Aggiornamento pacchetti in corso..."
|
7425
8110
|
|
8111
|
+
msgid "upstream Foreman server"
|
8112
|
+
msgstr ""
|
8113
|
+
|
7426
8114
|
msgid "url not defined."
|
7427
8115
|
msgstr "url non definito."
|
7428
8116
|
|
@@ -7460,10 +8148,37 @@ msgid "whitespace-separated list of repo components to be synced from deb-archiv
|
|
7460
8148
|
msgstr ""
|
7461
8149
|
|
7462
8150
|
msgid "with"
|
7463
|
-
msgstr ""
|
8151
|
+
msgstr "con"
|
7464
8152
|
|
7465
8153
|
msgid "yes"
|
7466
8154
|
msgstr "si"
|
7467
8155
|
|
7468
8156
|
msgid "{0} items selected"
|
7469
8157
|
msgstr ""
|
8158
|
+
|
8159
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8160
|
+
msgstr ""
|
8161
|
+
|
8162
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8163
|
+
msgstr ""
|
8164
|
+
|
8165
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8166
|
+
msgstr ""
|
8167
|
+
|
8168
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8169
|
+
msgstr ""
|
8170
|
+
|
8171
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8172
|
+
msgstr ""
|
8173
|
+
|
8174
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8175
|
+
msgstr ""
|
8176
|
+
|
8177
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8178
|
+
msgstr ""
|
8179
|
+
|
8180
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8181
|
+
msgstr ""
|
8182
|
+
|
8183
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8184
|
+
msgstr ""
|