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/cs/katello.po
CHANGED
@@ -50,6 +50,9 @@ msgstr ""
|
|
50
50
|
msgid " ago."
|
51
51
|
msgstr ""
|
52
52
|
|
53
|
+
msgid " and"
|
54
|
+
msgstr ""
|
55
|
+
|
53
56
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
54
57
|
msgstr ""
|
55
58
|
|
@@ -113,6 +116,9 @@ msgstr ""
|
|
113
116
|
msgid "%s is not a valid package name"
|
114
117
|
msgstr ""
|
115
118
|
|
119
|
+
msgid "%s is not a valid path"
|
120
|
+
msgstr ""
|
121
|
+
|
116
122
|
msgid "%s is required"
|
117
123
|
msgstr ""
|
118
124
|
|
@@ -384,9 +390,6 @@ msgstr ""
|
|
384
390
|
msgid "A post-promotion summary of hosts with installable errata"
|
385
391
|
msgstr ""
|
386
392
|
|
387
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
388
|
-
msgstr ""
|
389
|
-
|
390
393
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
391
394
|
msgstr ""
|
392
395
|
|
@@ -405,12 +408,18 @@ msgstr ""
|
|
405
408
|
msgid "About page"
|
406
409
|
msgstr ""
|
407
410
|
|
411
|
+
msgid "Abstract"
|
412
|
+
msgstr ""
|
413
|
+
|
408
414
|
msgid "Abstract async task"
|
409
415
|
msgstr ""
|
410
416
|
|
411
417
|
msgid "Accept action timeout"
|
412
418
|
msgstr ""
|
413
419
|
|
420
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
421
|
+
msgstr ""
|
422
|
+
|
414
423
|
msgid "Account Number"
|
415
424
|
msgstr ""
|
416
425
|
|
@@ -429,12 +438,12 @@ msgstr ""
|
|
429
438
|
msgid "Action with sub plans"
|
430
439
|
msgstr ""
|
431
440
|
|
432
|
-
msgid "Actions"
|
433
|
-
msgstr ""
|
434
|
-
|
435
441
|
msgid "Activation Keys"
|
436
442
|
msgstr "Aktivační klíče"
|
437
443
|
|
444
|
+
msgid "Activation key"
|
445
|
+
msgstr ""
|
446
|
+
|
438
447
|
#, fuzzy
|
439
448
|
msgid "Activation key ID"
|
440
449
|
msgstr "Aktivační klíče"
|
@@ -503,6 +512,12 @@ msgstr ""
|
|
503
512
|
msgid "Add filters using the 'Add filter' button above."
|
504
513
|
msgstr ""
|
505
514
|
|
515
|
+
msgid "Add host to collections"
|
516
|
+
msgstr ""
|
517
|
+
|
518
|
+
msgid "Add host to host collections"
|
519
|
+
msgstr ""
|
520
|
+
|
506
521
|
msgid "Add host to the host collection"
|
507
522
|
msgstr ""
|
508
523
|
|
@@ -527,6 +542,9 @@ msgstr ""
|
|
527
542
|
msgid "Add rule"
|
528
543
|
msgstr ""
|
529
544
|
|
545
|
+
msgid "Add source"
|
546
|
+
msgstr ""
|
547
|
+
|
530
548
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
531
549
|
msgstr ""
|
532
550
|
|
@@ -539,9 +557,6 @@ msgstr ""
|
|
539
557
|
msgid "Add to this filter using the 'Add filter rule' button."
|
540
558
|
msgstr ""
|
541
559
|
|
542
|
-
msgid "Add traces by applying updates on this host."
|
543
|
-
msgstr ""
|
544
|
-
|
545
560
|
msgid "Added"
|
546
561
|
msgstr ""
|
547
562
|
|
@@ -584,28 +599,52 @@ msgstr ""
|
|
584
599
|
msgid "All errata applied"
|
585
600
|
msgstr ""
|
586
601
|
|
602
|
+
msgid "All errata up-to-date"
|
603
|
+
msgstr ""
|
604
|
+
|
605
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
606
|
+
msgstr ""
|
607
|
+
|
587
608
|
msgid "All versions"
|
588
609
|
msgstr ""
|
589
610
|
|
590
611
|
msgid "All versions will be removed from these environments"
|
591
612
|
msgstr ""
|
592
613
|
|
593
|
-
msgid "Allow
|
614
|
+
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)"
|
594
615
|
msgstr ""
|
595
616
|
|
596
|
-
msgid "Allow
|
617
|
+
msgid "Allow deleting repositories in published content views"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
597
621
|
msgstr ""
|
598
622
|
|
599
623
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
600
624
|
msgstr ""
|
601
625
|
|
602
|
-
msgid "Allow new
|
626
|
+
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."
|
603
627
|
msgstr ""
|
604
628
|
|
605
629
|
msgid "Also include the latest upgradable package version for each host package"
|
606
630
|
msgstr ""
|
607
631
|
|
608
|
-
msgid "Alter a
|
632
|
+
msgid "Alter a host's host collections"
|
633
|
+
msgstr ""
|
634
|
+
|
635
|
+
msgid "Alternate Content Sources"
|
636
|
+
msgstr ""
|
637
|
+
|
638
|
+
msgid "Alternate content source ${name} created"
|
639
|
+
msgstr ""
|
640
|
+
|
641
|
+
msgid "Alternate content source ID"
|
642
|
+
msgstr ""
|
643
|
+
|
644
|
+
msgid "Alternate content source deleted"
|
645
|
+
msgstr ""
|
646
|
+
|
647
|
+
msgid "Alternate content sources"
|
609
648
|
msgstr ""
|
610
649
|
|
611
650
|
msgid "Always Use Latest (currently %{version})"
|
@@ -617,6 +656,9 @@ msgstr ""
|
|
617
656
|
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."
|
618
657
|
msgstr ""
|
619
658
|
|
659
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
660
|
+
msgstr ""
|
661
|
+
|
620
662
|
msgid "An environment is missing a prior"
|
621
663
|
msgstr ""
|
622
664
|
|
@@ -758,6 +800,9 @@ msgstr ""
|
|
758
800
|
msgid "Associated location IDs"
|
759
801
|
msgstr ""
|
760
802
|
|
803
|
+
msgid "Associated version"
|
804
|
+
msgstr ""
|
805
|
+
|
761
806
|
msgid "Associations"
|
762
807
|
msgstr ""
|
763
808
|
|
@@ -828,6 +873,9 @@ msgstr ""
|
|
828
873
|
msgid "Backend System Status"
|
829
874
|
msgstr "Systém"
|
830
875
|
|
876
|
+
msgid "Base URL for finding alternate content"
|
877
|
+
msgstr ""
|
878
|
+
|
831
879
|
msgid "Base URL to perform repo discovery on"
|
832
880
|
msgstr ""
|
833
881
|
|
@@ -837,9 +885,21 @@ msgstr ""
|
|
837
885
|
msgid "Basearch to enable"
|
838
886
|
msgstr ""
|
839
887
|
|
888
|
+
msgid "Basic authentication password"
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
msgid "Basic authentication username"
|
892
|
+
msgstr ""
|
893
|
+
|
840
894
|
msgid "Batch size to sync repositories in."
|
841
895
|
msgstr ""
|
842
896
|
|
897
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
898
|
+
msgstr ""
|
899
|
+
|
900
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
901
|
+
msgstr ""
|
902
|
+
|
843
903
|
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."
|
844
904
|
msgstr ""
|
845
905
|
|
@@ -876,6 +936,9 @@ msgstr ""
|
|
876
936
|
msgid "Bulk generate applicability for hosts"
|
877
937
|
msgstr ""
|
878
938
|
|
939
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
940
|
+
msgstr ""
|
941
|
+
|
879
942
|
msgid "CDN Configuration"
|
880
943
|
msgstr ""
|
881
944
|
|
@@ -888,6 +951,12 @@ msgstr ""
|
|
888
951
|
msgid "CDN SSL version"
|
889
952
|
msgstr ""
|
890
953
|
|
954
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
955
|
+
msgstr ""
|
956
|
+
|
957
|
+
msgid "CDN configuration type. One of %s."
|
958
|
+
msgstr ""
|
959
|
+
|
891
960
|
msgid "CDN loading error: %s not found"
|
892
961
|
msgstr ""
|
893
962
|
|
@@ -909,7 +978,10 @@ msgstr ""
|
|
909
978
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
910
979
|
msgstr ""
|
911
980
|
|
912
|
-
msgid "Calculate errata host status based only on errata in a
|
981
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
982
|
+
msgstr ""
|
983
|
+
|
984
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
913
985
|
msgstr ""
|
914
986
|
|
915
987
|
msgid "Can not add product %s because it is disabled."
|
@@ -1037,6 +1109,9 @@ msgstr ""
|
|
1037
1109
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1038
1110
|
msgstr ""
|
1039
1111
|
|
1112
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1113
|
+
msgstr ""
|
1114
|
+
|
1040
1115
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1041
1116
|
msgstr ""
|
1042
1117
|
|
@@ -1088,6 +1163,18 @@ msgstr ""
|
|
1088
1163
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1089
1164
|
msgstr ""
|
1090
1165
|
|
1166
|
+
msgid "Capacity"
|
1167
|
+
msgstr ""
|
1168
|
+
|
1169
|
+
msgid "Change Content Source"
|
1170
|
+
msgstr ""
|
1171
|
+
|
1172
|
+
msgid "Change content source"
|
1173
|
+
msgstr ""
|
1174
|
+
|
1175
|
+
msgid "Change host content source"
|
1176
|
+
msgstr ""
|
1177
|
+
|
1091
1178
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1092
1179
|
msgstr ""
|
1093
1180
|
|
@@ -1100,6 +1187,9 @@ msgstr ""
|
|
1100
1187
|
msgid "Checksum"
|
1101
1188
|
msgstr ""
|
1102
1189
|
|
1190
|
+
msgid "Checksum is a required parameter."
|
1191
|
+
msgstr ""
|
1192
|
+
|
1103
1193
|
msgid "Checksum of file to upload"
|
1104
1194
|
msgstr ""
|
1105
1195
|
|
@@ -1115,6 +1205,9 @@ msgstr ""
|
|
1115
1205
|
msgid "Click here to go to the tasks page for the task."
|
1116
1206
|
msgstr ""
|
1117
1207
|
|
1208
|
+
msgid "Click {update} below to save changes."
|
1209
|
+
msgstr ""
|
1210
|
+
|
1118
1211
|
msgid "Clone"
|
1119
1212
|
msgstr ""
|
1120
1213
|
|
@@ -1130,7 +1223,13 @@ msgstr ""
|
|
1130
1223
|
msgid "Combined Profile Update for %s"
|
1131
1224
|
msgstr ""
|
1132
1225
|
|
1133
|
-
msgid "Comma-separated list of tags to
|
1226
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1227
|
+
msgstr ""
|
1228
|
+
|
1229
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1230
|
+
msgstr ""
|
1231
|
+
|
1232
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1134
1233
|
msgstr ""
|
1135
1234
|
|
1136
1235
|
msgid "Component"
|
@@ -1218,6 +1317,9 @@ msgstr ""
|
|
1218
1317
|
msgid "Container manifests"
|
1219
1318
|
msgstr ""
|
1220
1319
|
|
1320
|
+
msgid "Container tags"
|
1321
|
+
msgstr ""
|
1322
|
+
|
1221
1323
|
#, fuzzy
|
1222
1324
|
msgid "Content"
|
1223
1325
|
msgstr "Vyhledat obsah"
|
@@ -1231,7 +1333,7 @@ msgstr ""
|
|
1231
1333
|
msgid "Content Credential numeric identifier"
|
1232
1334
|
msgstr ""
|
1233
1335
|
|
1234
|
-
msgid "Content Credential to use for SSL CA"
|
1336
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1235
1337
|
msgstr ""
|
1236
1338
|
|
1237
1339
|
msgid "Content Credentials"
|
@@ -1267,9 +1369,6 @@ msgstr "Vyhledat obsah"
|
|
1267
1369
|
msgid "Content View %{view}: Versions: %{versions}"
|
1268
1370
|
msgstr ""
|
1269
1371
|
|
1270
|
-
msgid "Content View Dependency Solving Default"
|
1271
|
-
msgstr ""
|
1272
|
-
|
1273
1372
|
msgid "Content View Details"
|
1274
1373
|
msgstr ""
|
1275
1374
|
|
@@ -1283,9 +1382,6 @@ msgstr ""
|
|
1283
1382
|
msgid "Content View ID"
|
1284
1383
|
msgstr ""
|
1285
1384
|
|
1286
|
-
msgid "Content View Label"
|
1287
|
-
msgstr ""
|
1288
|
-
|
1289
1385
|
msgid "Content View Name"
|
1290
1386
|
msgstr ""
|
1291
1387
|
|
@@ -1310,6 +1406,9 @@ msgstr ""
|
|
1310
1406
|
msgid "Content View id"
|
1311
1407
|
msgstr ""
|
1312
1408
|
|
1409
|
+
msgid "Content View label not provided."
|
1410
|
+
msgstr ""
|
1411
|
+
|
1313
1412
|
#, fuzzy
|
1314
1413
|
msgid "Content Views"
|
1315
1414
|
msgstr "Vyhledat obsah"
|
@@ -1323,15 +1422,21 @@ msgstr ""
|
|
1323
1422
|
msgid "Content hosts"
|
1324
1423
|
msgstr ""
|
1325
1424
|
|
1326
|
-
msgid "Content imported
|
1425
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1327
1426
|
msgstr ""
|
1328
1427
|
|
1329
1428
|
msgid "Content not uploaded to pulp"
|
1330
1429
|
msgstr ""
|
1331
1430
|
|
1431
|
+
msgid "Content override search parameters"
|
1432
|
+
msgstr ""
|
1433
|
+
|
1332
1434
|
msgid "Content source ID"
|
1333
1435
|
msgstr ""
|
1334
1436
|
|
1437
|
+
msgid "Content source successfully updated."
|
1438
|
+
msgstr ""
|
1439
|
+
|
1335
1440
|
msgid "Content source was not set for host '%{host}'"
|
1336
1441
|
msgstr ""
|
1337
1442
|
|
@@ -1409,6 +1514,9 @@ msgstr ""
|
|
1409
1514
|
msgid "Contract Number"
|
1410
1515
|
msgstr ""
|
1411
1516
|
|
1517
|
+
msgid "Copied to clipboard"
|
1518
|
+
msgstr ""
|
1519
|
+
|
1412
1520
|
msgid "Copy"
|
1413
1521
|
msgstr ""
|
1414
1522
|
|
@@ -1419,6 +1527,9 @@ msgstr "Číst aktivační klíče"
|
|
1419
1527
|
msgid "Copy content view"
|
1420
1528
|
msgstr ""
|
1421
1529
|
|
1530
|
+
msgid "Copy to clipboard"
|
1531
|
+
msgstr ""
|
1532
|
+
|
1422
1533
|
msgid "Copy version units to library"
|
1423
1534
|
msgstr ""
|
1424
1535
|
|
@@ -1536,6 +1647,9 @@ msgstr ""
|
|
1536
1647
|
msgid "Couldn't find repository '%s'"
|
1537
1648
|
msgstr ""
|
1538
1649
|
|
1650
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1651
|
+
msgstr ""
|
1652
|
+
|
1539
1653
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1540
1654
|
msgstr ""
|
1541
1655
|
|
@@ -1548,6 +1662,9 @@ msgstr ""
|
|
1548
1662
|
msgid "Create"
|
1549
1663
|
msgstr ""
|
1550
1664
|
|
1665
|
+
msgid "Create Alternate Content Source"
|
1666
|
+
msgstr ""
|
1667
|
+
|
1551
1668
|
msgid "Create Export History"
|
1552
1669
|
msgstr ""
|
1553
1670
|
|
@@ -1586,6 +1703,9 @@ msgstr "Smazat poskytovatele"
|
|
1586
1703
|
msgid "Create a sync plan"
|
1587
1704
|
msgstr ""
|
1588
1705
|
|
1706
|
+
msgid "Create an ACS"
|
1707
|
+
msgstr ""
|
1708
|
+
|
1589
1709
|
#, fuzzy
|
1590
1710
|
msgid "Create an activation key"
|
1591
1711
|
msgstr "Číst aktivační klíče"
|
@@ -1636,6 +1756,9 @@ msgstr ""
|
|
1636
1756
|
msgid "Custom repositories cannot be disabled."
|
1637
1757
|
msgstr "Neznámý štítek repozitáře: %s"
|
1638
1758
|
|
1759
|
+
msgid "Customize with Rex"
|
1760
|
+
msgstr ""
|
1761
|
+
|
1639
1762
|
msgid "Database connection"
|
1640
1763
|
msgstr ""
|
1641
1764
|
|
@@ -1672,13 +1795,10 @@ msgstr ""
|
|
1672
1795
|
msgid "Default Custom Repository download policy"
|
1673
1796
|
msgstr ""
|
1674
1797
|
|
1675
|
-
msgid "Default HTTP Proxy
|
1798
|
+
msgid "Default HTTP Proxy"
|
1676
1799
|
msgstr ""
|
1677
1800
|
|
1678
|
-
msgid "Default HTTP proxy"
|
1679
|
-
msgstr ""
|
1680
|
-
|
1681
|
-
msgid "Default Location subscribed hosts"
|
1801
|
+
msgid "Default HTTP proxy for syncing content"
|
1682
1802
|
msgstr ""
|
1683
1803
|
|
1684
1804
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1723,6 +1843,9 @@ msgstr ""
|
|
1723
1843
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1724
1844
|
msgstr ""
|
1725
1845
|
|
1846
|
+
msgid "Default location for subscribed hosts"
|
1847
|
+
msgstr ""
|
1848
|
+
|
1726
1849
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1727
1850
|
msgstr ""
|
1728
1851
|
|
@@ -1833,6 +1956,9 @@ msgstr ""
|
|
1833
1956
|
msgid "Delete version"
|
1834
1957
|
msgstr ""
|
1835
1958
|
|
1959
|
+
msgid "Delete versions"
|
1960
|
+
msgstr ""
|
1961
|
+
|
1836
1962
|
#, fuzzy
|
1837
1963
|
msgid "Deleted consumer '%s'"
|
1838
1964
|
msgstr "Vybrat distribuci"
|
@@ -1850,9 +1976,18 @@ msgstr ""
|
|
1850
1976
|
msgid "Deleting manifest in '%{subject}' failed."
|
1851
1977
|
msgstr ""
|
1852
1978
|
|
1979
|
+
msgid "Deleting version {versionList}"
|
1980
|
+
msgstr ""
|
1981
|
+
|
1982
|
+
msgid "Deleting versions: {versionList}"
|
1983
|
+
msgstr ""
|
1984
|
+
|
1853
1985
|
msgid "Description"
|
1854
1986
|
msgstr ""
|
1855
1987
|
|
1988
|
+
msgid "Description for the alternate content source"
|
1989
|
+
msgstr ""
|
1990
|
+
|
1856
1991
|
msgid "Description for the content view"
|
1857
1992
|
msgstr ""
|
1858
1993
|
|
@@ -1874,6 +2009,9 @@ msgstr ""
|
|
1874
2009
|
msgid "Destroy"
|
1875
2010
|
msgstr ""
|
1876
2011
|
|
2012
|
+
msgid "Destroy Alternate Content Source"
|
2013
|
+
msgstr ""
|
2014
|
+
|
1877
2015
|
#, fuzzy
|
1878
2016
|
msgid "Destroy Content Host"
|
1879
2017
|
msgstr "Smazat systémy"
|
@@ -1899,6 +2037,9 @@ msgstr ""
|
|
1899
2037
|
msgid "Destroy an activation key"
|
1900
2038
|
msgstr ""
|
1901
2039
|
|
2040
|
+
msgid "Destroy an alternate content source"
|
2041
|
+
msgstr ""
|
2042
|
+
|
1902
2043
|
#, fuzzy
|
1903
2044
|
msgid "Destroy an environment"
|
1904
2045
|
msgstr "prostředí"
|
@@ -1939,6 +2080,9 @@ msgstr ""
|
|
1939
2080
|
msgid "Disable a repository from the set"
|
1940
2081
|
msgstr ""
|
1941
2082
|
|
2083
|
+
msgid "Disable module stream"
|
2084
|
+
msgstr ""
|
2085
|
+
|
1942
2086
|
msgid "Disable simple content access for a manifest"
|
1943
2087
|
msgstr ""
|
1944
2088
|
|
@@ -1948,9 +2092,6 @@ msgstr ""
|
|
1948
2092
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1949
2093
|
msgstr ""
|
1950
2094
|
|
1951
|
-
msgid "Disconnected mode"
|
1952
|
-
msgstr ""
|
1953
|
-
|
1954
2095
|
msgid "Discover"
|
1955
2096
|
msgstr ""
|
1956
2097
|
|
@@ -1967,9 +2108,6 @@ msgstr ""
|
|
1967
2108
|
msgid "Do not wait for the update action to finish. Default: true"
|
1968
2109
|
msgstr ""
|
1969
2110
|
|
1970
|
-
msgid "Docker Tags"
|
1971
|
-
msgstr ""
|
1972
|
-
|
1973
2111
|
msgid "Domain IDs"
|
1974
2112
|
msgstr ""
|
1975
2113
|
|
@@ -1979,6 +2117,9 @@ msgstr ""
|
|
1979
2117
|
msgid "Download a debug certificate"
|
1980
2118
|
msgstr ""
|
1981
2119
|
|
2120
|
+
msgid "Download rate limit"
|
2121
|
+
msgstr ""
|
2122
|
+
|
1982
2123
|
msgid "Duplicate artifact detected"
|
1983
2124
|
msgstr ""
|
1984
2125
|
|
@@ -1995,6 +2136,9 @@ msgstr ""
|
|
1995
2136
|
msgid "Edit RPM rule"
|
1996
2137
|
msgstr ""
|
1997
2138
|
|
2139
|
+
msgid "Edit content view assignment"
|
2140
|
+
msgstr ""
|
2141
|
+
|
1998
2142
|
msgid "Edit filter rule"
|
1999
2143
|
msgstr ""
|
2000
2144
|
|
@@ -2058,6 +2202,9 @@ msgstr ""
|
|
2058
2202
|
msgid "End Date"
|
2059
2203
|
msgstr ""
|
2060
2204
|
|
2205
|
+
msgid "End date"
|
2206
|
+
msgstr ""
|
2207
|
+
|
2061
2208
|
msgid "Ends"
|
2062
2209
|
msgstr ""
|
2063
2210
|
|
@@ -2067,6 +2214,9 @@ msgstr ""
|
|
2067
2214
|
msgid "Enter a name"
|
2068
2215
|
msgstr ""
|
2069
2216
|
|
2217
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2218
|
+
msgstr ""
|
2219
|
+
|
2070
2220
|
msgid "Entitlements"
|
2071
2221
|
msgstr ""
|
2072
2222
|
|
@@ -2085,6 +2235,9 @@ msgstr ""
|
|
2085
2235
|
msgid "Environments"
|
2086
2236
|
msgstr ""
|
2087
2237
|
|
2238
|
+
msgid "Epoch"
|
2239
|
+
msgstr ""
|
2240
|
+
|
2088
2241
|
msgid "Equal to"
|
2089
2242
|
msgstr ""
|
2090
2243
|
|
@@ -2146,6 +2299,9 @@ msgstr ""
|
|
2146
2299
|
msgid "Error connecting. Got: %s"
|
2147
2300
|
msgstr ""
|
2148
2301
|
|
2302
|
+
msgid "Error loading content views"
|
2303
|
+
msgstr ""
|
2304
|
+
|
2149
2305
|
msgid "Error refreshing status for %s: "
|
2150
2306
|
msgstr ""
|
2151
2307
|
|
@@ -2194,6 +2350,12 @@ msgstr ""
|
|
2194
2350
|
msgid "Export Library"
|
2195
2351
|
msgstr ""
|
2196
2352
|
|
2353
|
+
msgid "Export Repository"
|
2354
|
+
msgstr ""
|
2355
|
+
|
2356
|
+
msgid "Export Sync"
|
2357
|
+
msgstr ""
|
2358
|
+
|
2197
2359
|
msgid "Export Types"
|
2198
2360
|
msgstr ""
|
2199
2361
|
|
@@ -2219,6 +2381,9 @@ msgstr ""
|
|
2219
2381
|
msgid "Failed to delete %{host}: %{errors}"
|
2220
2382
|
msgstr ""
|
2221
2383
|
|
2384
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2385
|
+
msgstr ""
|
2386
|
+
|
2222
2387
|
msgid "Failed to download %s package."
|
2223
2388
|
msgid_plural "Failed to download %s packages."
|
2224
2389
|
msgstr[0] ""
|
@@ -2406,6 +2571,15 @@ msgstr ""
|
|
2406
2571
|
msgid "Generate repository applicability"
|
2407
2572
|
msgstr ""
|
2408
2573
|
|
2574
|
+
msgid "Generated"
|
2575
|
+
msgstr ""
|
2576
|
+
|
2577
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2578
|
+
msgstr ""
|
2579
|
+
|
2580
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2581
|
+
msgstr ""
|
2582
|
+
|
2409
2583
|
msgid "Get all content available, not just that provided by subscriptions"
|
2410
2584
|
msgstr ""
|
2411
2585
|
|
@@ -2442,6 +2616,9 @@ msgstr ""
|
|
2442
2616
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2443
2617
|
msgstr ""
|
2444
2618
|
|
2619
|
+
msgid "Go to job details"
|
2620
|
+
msgstr ""
|
2621
|
+
|
2445
2622
|
msgid "Go to task page"
|
2446
2623
|
msgstr ""
|
2447
2624
|
|
@@ -2466,6 +2643,12 @@ msgstr ""
|
|
2466
2643
|
msgid "Helper"
|
2467
2644
|
msgstr ""
|
2468
2645
|
|
2646
|
+
msgid "Hide affected activation keys"
|
2647
|
+
msgstr ""
|
2648
|
+
|
2649
|
+
msgid "Hide affected hosts"
|
2650
|
+
msgstr ""
|
2651
|
+
|
2469
2652
|
msgid "Hide description"
|
2470
2653
|
msgstr ""
|
2471
2654
|
|
@@ -2519,15 +2702,27 @@ msgstr ""
|
|
2519
2702
|
msgid "Host Tasks Workers Pool Size"
|
2520
2703
|
msgstr ""
|
2521
2704
|
|
2705
|
+
msgid "Host collection"
|
2706
|
+
msgstr ""
|
2707
|
+
|
2522
2708
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2523
2709
|
msgstr ""
|
2524
2710
|
|
2525
2711
|
msgid "Host collection is empty."
|
2526
2712
|
msgstr ""
|
2527
2713
|
|
2714
|
+
msgid "Host collections"
|
2715
|
+
msgstr ""
|
2716
|
+
|
2717
|
+
msgid "Host collections updated"
|
2718
|
+
msgstr ""
|
2719
|
+
|
2528
2720
|
msgid "Host content and subscription details"
|
2529
2721
|
msgstr ""
|
2530
2722
|
|
2723
|
+
msgid "Host content view and environment updated"
|
2724
|
+
msgstr ""
|
2725
|
+
|
2531
2726
|
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."
|
2532
2727
|
msgstr ""
|
2533
2728
|
|
@@ -2579,7 +2774,7 @@ msgstr ""
|
|
2579
2774
|
msgid "Hosts: "
|
2580
2775
|
msgstr ""
|
2581
2776
|
|
2582
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2777
|
+
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."
|
2583
2778
|
msgstr ""
|
2584
2779
|
|
2585
2780
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2644,12 +2839,18 @@ msgstr ""
|
|
2644
2839
|
msgid "ID of the repository set to enable"
|
2645
2840
|
msgstr ""
|
2646
2841
|
|
2842
|
+
msgid "ID of the repository within the set to disable"
|
2843
|
+
msgstr ""
|
2844
|
+
|
2647
2845
|
msgid "ID of the sync plan"
|
2648
2846
|
msgstr ""
|
2649
2847
|
|
2650
2848
|
msgid "ID: %s doesn't exist "
|
2651
2849
|
msgstr ""
|
2652
2850
|
|
2851
|
+
msgid "Id"
|
2852
|
+
msgstr ""
|
2853
|
+
|
2653
2854
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2654
2855
|
msgstr ""
|
2655
2856
|
|
@@ -2722,16 +2923,22 @@ msgstr ""
|
|
2722
2923
|
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"
|
2723
2924
|
msgstr ""
|
2724
2925
|
|
2926
|
+
msgid "Ids of smart proxies to associate"
|
2927
|
+
msgstr ""
|
2928
|
+
|
2725
2929
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2726
2930
|
msgstr ""
|
2727
2931
|
|
2728
|
-
msgid "If
|
2932
|
+
msgid "If SSL should be verified for the upstream URL"
|
2933
|
+
msgstr ""
|
2934
|
+
|
2935
|
+
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."
|
2729
2936
|
msgstr ""
|
2730
2937
|
|
2731
2938
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2732
2939
|
msgstr ""
|
2733
2940
|
|
2734
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2941
|
+
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."
|
2735
2942
|
msgstr ""
|
2736
2943
|
|
2737
2944
|
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"
|
@@ -2740,6 +2947,9 @@ msgstr ""
|
|
2740
2947
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2741
2948
|
msgstr ""
|
2742
2949
|
|
2950
|
+
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."
|
2951
|
+
msgstr ""
|
2952
|
+
|
2743
2953
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2744
2954
|
msgstr ""
|
2745
2955
|
|
@@ -2755,6 +2965,9 @@ msgstr ""
|
|
2755
2965
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2756
2966
|
msgstr ""
|
2757
2967
|
|
2968
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2969
|
+
msgstr ""
|
2970
|
+
|
2758
2971
|
msgid "Ignorable content can be only set for Yum repositories."
|
2759
2972
|
msgstr ""
|
2760
2973
|
|
@@ -2792,6 +3005,9 @@ msgstr ""
|
|
2792
3005
|
msgid "Import Puppet classes"
|
2793
3006
|
msgstr ""
|
2794
3007
|
|
3008
|
+
msgid "Import Repository"
|
3009
|
+
msgstr ""
|
3010
|
+
|
2795
3011
|
msgid "Import Types"
|
2796
3012
|
msgstr ""
|
2797
3013
|
|
@@ -2813,6 +3029,9 @@ msgstr ""
|
|
2813
3029
|
msgid "Import a content view version to the library"
|
2814
3030
|
msgstr ""
|
2815
3031
|
|
3032
|
+
msgid "Import a repository"
|
3033
|
+
msgstr ""
|
3034
|
+
|
2816
3035
|
#, fuzzy
|
2817
3036
|
msgid "Import facts"
|
2818
3037
|
msgstr "Import historie"
|
@@ -2820,6 +3039,9 @@ msgstr "Import historie"
|
|
2820
3039
|
msgid "Import only"
|
2821
3040
|
msgstr ""
|
2822
3041
|
|
3042
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
3043
|
+
msgstr ""
|
3044
|
+
|
2823
3045
|
msgid "Import uploads into a repository"
|
2824
3046
|
msgstr ""
|
2825
3047
|
|
@@ -2829,6 +3051,9 @@ msgstr ""
|
|
2829
3051
|
msgid "Import-only content views can not be published directly"
|
2830
3052
|
msgstr ""
|
2831
3053
|
|
3054
|
+
msgid "Import/Export"
|
3055
|
+
msgstr ""
|
3056
|
+
|
2832
3057
|
msgid "Important"
|
2833
3058
|
msgstr ""
|
2834
3059
|
|
@@ -2850,6 +3075,9 @@ msgstr ""
|
|
2850
3075
|
msgid "Include all RPMs with no errata."
|
2851
3076
|
msgstr ""
|
2852
3077
|
|
3078
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
3079
|
+
msgstr ""
|
3080
|
+
|
2853
3081
|
msgid "Include filter"
|
2854
3082
|
msgstr ""
|
2855
3083
|
|
@@ -2911,6 +3139,9 @@ msgstr ""
|
|
2911
3139
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2912
3140
|
msgstr ""
|
2913
3141
|
|
3142
|
+
msgid "Install"
|
3143
|
+
msgstr ""
|
3144
|
+
|
2914
3145
|
msgid "Install Applicable Errata"
|
2915
3146
|
msgstr ""
|
2916
3147
|
|
@@ -2920,6 +3151,9 @@ msgstr ""
|
|
2920
3151
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2921
3152
|
msgstr ""
|
2922
3153
|
|
3154
|
+
msgid "Install errata using scoped search query"
|
3155
|
+
msgstr ""
|
3156
|
+
|
2923
3157
|
msgid "Install errata via Katello interface"
|
2924
3158
|
msgstr ""
|
2925
3159
|
|
@@ -2947,19 +3181,31 @@ msgstr ""
|
|
2947
3181
|
msgid "Install package via Katello interface"
|
2948
3182
|
msgstr ""
|
2949
3183
|
|
3184
|
+
msgid "Install packages"
|
3185
|
+
msgstr ""
|
3186
|
+
|
2950
3187
|
msgid "Install packages remotely using katello-agent. %s"
|
2951
3188
|
msgstr ""
|
2952
3189
|
|
2953
|
-
msgid "
|
3190
|
+
msgid "Install packages via Katello interface"
|
3191
|
+
msgstr ""
|
3192
|
+
|
3193
|
+
msgid "Install via customized remote execution"
|
3194
|
+
msgstr ""
|
3195
|
+
|
3196
|
+
msgid "Install via katello-agent"
|
3197
|
+
msgstr ""
|
3198
|
+
|
3199
|
+
msgid "Install via remote execution"
|
2954
3200
|
msgstr ""
|
2955
3201
|
|
2956
|
-
msgid "Installable
|
3202
|
+
msgid "Installable"
|
2957
3203
|
msgstr ""
|
2958
3204
|
|
2959
|
-
msgid "Installable errata
|
3205
|
+
msgid "Installable errata"
|
2960
3206
|
msgstr ""
|
2961
3207
|
|
2962
|
-
msgid "Installable errata
|
3208
|
+
msgid "Installable errata from content view"
|
2963
3209
|
msgstr ""
|
2964
3210
|
|
2965
3211
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2971,11 +3217,23 @@ msgstr ""
|
|
2971
3217
|
msgid "Installation of package(s) requested: %{packages}"
|
2972
3218
|
msgstr ""
|
2973
3219
|
|
3220
|
+
msgid "Installation status"
|
3221
|
+
msgstr ""
|
3222
|
+
|
2974
3223
|
#, fuzzy
|
2975
3224
|
msgid "Installed Packages"
|
2976
3225
|
msgstr "všechny balíčky"
|
2977
3226
|
|
2978
|
-
msgid "Installed
|
3227
|
+
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."
|
3228
|
+
msgstr ""
|
3229
|
+
|
3230
|
+
msgid "Installed products"
|
3231
|
+
msgstr ""
|
3232
|
+
|
3233
|
+
msgid "Installed profile"
|
3234
|
+
msgstr ""
|
3235
|
+
|
3236
|
+
msgid "Installed version"
|
2979
3237
|
msgstr ""
|
2980
3238
|
|
2981
3239
|
msgid "Installing Erratum..."
|
@@ -3060,6 +3318,9 @@ msgstr ""
|
|
3060
3318
|
msgid "Invalid params provided - date_type must be one of %s"
|
3061
3319
|
msgstr ""
|
3062
3320
|
|
3321
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3322
|
+
msgstr ""
|
3323
|
+
|
3063
3324
|
msgid "Invalid value specified for Container Image repositories."
|
3064
3325
|
msgstr ""
|
3065
3326
|
|
@@ -3072,6 +3333,12 @@ msgstr ""
|
|
3072
3333
|
msgid "Issued"
|
3073
3334
|
msgstr ""
|
3074
3335
|
|
3336
|
+
msgid "Issued from"
|
3337
|
+
msgstr ""
|
3338
|
+
|
3339
|
+
msgid "Job ${description} has started."
|
3340
|
+
msgstr ""
|
3341
|
+
|
3075
3342
|
msgid "Katello ID of local pool to update"
|
3076
3343
|
msgstr ""
|
3077
3344
|
|
@@ -3084,6 +3351,12 @@ msgstr ""
|
|
3084
3351
|
msgid "Katello: Install Package Group"
|
3085
3352
|
msgstr ""
|
3086
3353
|
|
3354
|
+
msgid "Katello: Install errata by search query"
|
3355
|
+
msgstr ""
|
3356
|
+
|
3357
|
+
msgid "Katello: Install packages by search query"
|
3358
|
+
msgstr ""
|
3359
|
+
|
3087
3360
|
msgid "Katello: Module Stream Actions"
|
3088
3361
|
msgstr ""
|
3089
3362
|
|
@@ -3093,6 +3366,9 @@ msgstr ""
|
|
3093
3366
|
msgid "Katello: Remove Package Group"
|
3094
3367
|
msgstr ""
|
3095
3368
|
|
3369
|
+
msgid "Katello: Remove Packages by search query"
|
3370
|
+
msgstr ""
|
3371
|
+
|
3096
3372
|
msgid "Katello: Resolve Traces"
|
3097
3373
|
msgstr ""
|
3098
3374
|
|
@@ -3105,6 +3381,9 @@ msgstr ""
|
|
3105
3381
|
msgid "Katello: Update Package Group"
|
3106
3382
|
msgstr ""
|
3107
3383
|
|
3384
|
+
msgid "Katello: Update Packages by search query"
|
3385
|
+
msgstr ""
|
3386
|
+
|
3108
3387
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3109
3388
|
msgstr ""
|
3110
3389
|
|
@@ -3126,6 +3405,9 @@ msgstr ""
|
|
3126
3405
|
msgid "Label of the content"
|
3127
3406
|
msgstr ""
|
3128
3407
|
|
3408
|
+
msgid "Label of the content view"
|
3409
|
+
msgstr ""
|
3410
|
+
|
3129
3411
|
msgid "Last published"
|
3130
3412
|
msgstr ""
|
3131
3413
|
|
@@ -3144,13 +3426,10 @@ msgstr ""
|
|
3144
3426
|
msgid "Learn more about adding Subscription Manifests"
|
3145
3427
|
msgstr ""
|
3146
3428
|
|
3147
|
-
msgid "
|
3148
|
-
msgstr ""
|
3149
|
-
|
3150
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3429
|
+
msgid "Less than"
|
3151
3430
|
msgstr ""
|
3152
3431
|
|
3153
|
-
msgid "
|
3432
|
+
msgid "Library"
|
3154
3433
|
msgstr ""
|
3155
3434
|
|
3156
3435
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3197,9 +3476,15 @@ msgstr ""
|
|
3197
3476
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3198
3477
|
msgstr ""
|
3199
3478
|
|
3479
|
+
msgid "Lifecycle environment: {lce}"
|
3480
|
+
msgstr ""
|
3481
|
+
|
3200
3482
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3201
3483
|
msgstr ""
|
3202
3484
|
|
3485
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3486
|
+
msgstr ""
|
3487
|
+
|
3203
3488
|
msgid "Limit content to just that available in the activation key's content view version"
|
3204
3489
|
msgstr ""
|
3205
3490
|
|
@@ -3314,6 +3599,9 @@ msgstr ""
|
|
3314
3599
|
msgid "List of Products for sync plan"
|
3315
3600
|
msgstr ""
|
3316
3601
|
|
3602
|
+
msgid "List of alternate_content_sources"
|
3603
|
+
msgstr ""
|
3604
|
+
|
3317
3605
|
msgid "List of component content view version ids for composite views"
|
3318
3606
|
msgstr ""
|
3319
3607
|
|
@@ -3413,6 +3701,12 @@ msgstr ""
|
|
3413
3701
|
msgid "List of subscription products in an activation key"
|
3414
3702
|
msgstr ""
|
3415
3703
|
|
3704
|
+
msgid "List of versions to exclude and not run an action on"
|
3705
|
+
msgstr ""
|
3706
|
+
|
3707
|
+
msgid "List of versions to perform an action on"
|
3708
|
+
msgstr ""
|
3709
|
+
|
3416
3710
|
msgid "List organization subscriptions"
|
3417
3711
|
msgstr ""
|
3418
3712
|
|
@@ -3460,6 +3754,12 @@ msgstr ""
|
|
3460
3754
|
msgid "Loading versions"
|
3461
3755
|
msgstr ""
|
3462
3756
|
|
3757
|
+
msgid "Loading..."
|
3758
|
+
msgstr ""
|
3759
|
+
|
3760
|
+
msgid "Low"
|
3761
|
+
msgstr ""
|
3762
|
+
|
3463
3763
|
msgid "Make copy of a content view"
|
3464
3764
|
msgstr ""
|
3465
3765
|
|
@@ -3517,6 +3817,9 @@ msgstr ""
|
|
3517
3817
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3518
3818
|
msgstr ""
|
3519
3819
|
|
3820
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3821
|
+
msgstr ""
|
3822
|
+
|
3520
3823
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3521
3824
|
msgstr ""
|
3522
3825
|
|
@@ -3583,6 +3886,9 @@ msgstr ""
|
|
3583
3886
|
msgid "Module streams"
|
3584
3887
|
msgstr ""
|
3585
3888
|
|
3889
|
+
msgid "Module streams will appear here when available."
|
3890
|
+
msgstr ""
|
3891
|
+
|
3586
3892
|
msgid "Multi-entitlement"
|
3587
3893
|
msgstr ""
|
3588
3894
|
|
@@ -3608,15 +3914,24 @@ msgid ""
|
|
3608
3914
|
" %{repos}"
|
3609
3915
|
msgstr ""
|
3610
3916
|
|
3917
|
+
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."
|
3918
|
+
msgstr ""
|
3919
|
+
|
3611
3920
|
msgid "Name"
|
3612
3921
|
msgstr ""
|
3613
3922
|
|
3923
|
+
msgid "Name is a required parameter."
|
3924
|
+
msgstr ""
|
3925
|
+
|
3614
3926
|
msgid "Name of new activation key"
|
3615
3927
|
msgstr ""
|
3616
3928
|
|
3617
3929
|
msgid "Name of the Content Credential"
|
3618
3930
|
msgstr ""
|
3619
3931
|
|
3932
|
+
msgid "Name of the alternate content source"
|
3933
|
+
msgstr ""
|
3934
|
+
|
3620
3935
|
msgid "Name of the content view"
|
3621
3936
|
msgstr ""
|
3622
3937
|
|
@@ -3639,6 +3954,9 @@ msgstr ""
|
|
3639
3954
|
msgid "Nest"
|
3640
3955
|
msgstr "Host"
|
3641
3956
|
|
3957
|
+
msgid "Network Sync"
|
3958
|
+
msgstr ""
|
3959
|
+
|
3642
3960
|
msgid "Never Synced"
|
3643
3961
|
msgstr ""
|
3644
3962
|
|
@@ -3710,10 +4028,19 @@ msgstr ""
|
|
3710
4028
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3711
4029
|
msgstr ""
|
3712
4030
|
|
3713
|
-
msgid "No applicable errata"
|
4031
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3714
4032
|
msgstr ""
|
3715
4033
|
|
3716
|
-
msgid "No
|
4034
|
+
msgid "No action required"
|
4035
|
+
msgstr ""
|
4036
|
+
|
4037
|
+
msgid "No applicable errata"
|
4038
|
+
msgstr ""
|
4039
|
+
|
4040
|
+
msgid "No applicable errata for %s, skipping"
|
4041
|
+
msgstr ""
|
4042
|
+
|
4043
|
+
msgid "No applications to restart"
|
3717
4044
|
msgstr ""
|
3718
4045
|
|
3719
4046
|
msgid "No artifacts to show"
|
@@ -3739,6 +4066,9 @@ msgstr "Vyhledat obsah"
|
|
3739
4066
|
msgid "No content views available"
|
3740
4067
|
msgstr ""
|
3741
4068
|
|
4069
|
+
msgid "No content views available for the selected environment"
|
4070
|
+
msgstr ""
|
4071
|
+
|
3742
4072
|
msgid "No content views belong to ${label}"
|
3743
4073
|
msgstr ""
|
3744
4074
|
|
@@ -3748,6 +4078,9 @@ msgstr ""
|
|
3748
4078
|
msgid "No description"
|
3749
4079
|
msgstr ""
|
3750
4080
|
|
4081
|
+
msgid "No description provided"
|
4082
|
+
msgstr ""
|
4083
|
+
|
3751
4084
|
msgid "No enabled repositories match your search criteria."
|
3752
4085
|
msgstr ""
|
3753
4086
|
|
@@ -3773,6 +4106,9 @@ msgstr ""
|
|
3773
4106
|
msgid "No file uploaded"
|
3774
4107
|
msgstr ""
|
3775
4108
|
|
4109
|
+
msgid "No host collections"
|
4110
|
+
msgstr ""
|
4111
|
+
|
3776
4112
|
#, fuzzy
|
3777
4113
|
msgid "No host collections found."
|
3778
4114
|
msgstr "Vyhledat obsah"
|
@@ -3783,6 +4119,9 @@ msgstr ""
|
|
3783
4119
|
msgid "No hosts registered with subscription-manager found in selection."
|
3784
4120
|
msgstr ""
|
3785
4121
|
|
4122
|
+
msgid "No hosts with content source found!"
|
4123
|
+
msgstr ""
|
4124
|
+
|
3786
4125
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3787
4126
|
msgstr ""
|
3788
4127
|
|
@@ -3807,6 +4146,9 @@ msgstr ""
|
|
3807
4146
|
msgid "No matching activation keys found."
|
3808
4147
|
msgstr ""
|
3809
4148
|
|
4149
|
+
msgid "No matching alternate content sources found"
|
4150
|
+
msgstr ""
|
4151
|
+
|
3810
4152
|
msgid "No matching content views found"
|
3811
4153
|
msgstr ""
|
3812
4154
|
|
@@ -3822,6 +4164,9 @@ msgstr ""
|
|
3822
4164
|
msgid "No matching history record found"
|
3823
4165
|
msgstr ""
|
3824
4166
|
|
4167
|
+
msgid "No matching host collections found"
|
4168
|
+
msgstr ""
|
4169
|
+
|
3825
4170
|
msgid "No matching hosts found."
|
3826
4171
|
msgstr ""
|
3827
4172
|
|
@@ -3853,6 +4198,12 @@ msgstr "Žádné nové instalační balíčky"
|
|
3853
4198
|
msgid "No packages"
|
3854
4199
|
msgstr ""
|
3855
4200
|
|
4201
|
+
msgid "No packages available to install"
|
4202
|
+
msgstr ""
|
4203
|
+
|
4204
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4205
|
+
msgstr ""
|
4206
|
+
|
3856
4207
|
#, fuzzy
|
3857
4208
|
msgid "No packages removed"
|
3858
4209
|
msgstr "Balíček přesunut"
|
@@ -3876,9 +4227,6 @@ msgstr ""
|
|
3876
4227
|
msgid "No products are enabled."
|
3877
4228
|
msgstr ""
|
3878
4229
|
|
3879
|
-
msgid "No profiles to show"
|
3880
|
-
msgstr ""
|
3881
|
-
|
3882
4230
|
msgid "No pulp workers running."
|
3883
4231
|
msgstr ""
|
3884
4232
|
|
@@ -3946,9 +4294,6 @@ msgstr ""
|
|
3946
4294
|
msgid "None provided"
|
3947
4295
|
msgstr ""
|
3948
4296
|
|
3949
|
-
msgid "Not Specified"
|
3950
|
-
msgstr ""
|
3951
|
-
|
3952
4297
|
msgid "Not a number"
|
3953
4298
|
msgstr ""
|
3954
4299
|
|
@@ -3961,6 +4306,9 @@ msgstr ""
|
|
3961
4306
|
msgid "Not running"
|
3962
4307
|
msgstr ""
|
3963
4308
|
|
4309
|
+
msgid "Not specified"
|
4310
|
+
msgstr ""
|
4311
|
+
|
3964
4312
|
msgid "Not yet published"
|
3965
4313
|
msgstr ""
|
3966
4314
|
|
@@ -4062,9 +4410,6 @@ msgstr ""
|
|
4062
4410
|
msgid "Organization Information not provided."
|
4063
4411
|
msgstr ""
|
4064
4412
|
|
4065
|
-
msgid "Organization Label"
|
4066
|
-
msgstr ""
|
4067
|
-
|
4068
4413
|
#, fuzzy
|
4069
4414
|
msgid "Organization cannot be blank."
|
4070
4415
|
msgstr "Název nesmí být prázdný."
|
@@ -4311,9 +4656,6 @@ msgstr ""
|
|
4311
4656
|
msgid "Packages"
|
4312
4657
|
msgstr "Skupiny balíčků"
|
4313
4658
|
|
4314
|
-
msgid "Packages management functionality on this page is incomplete"
|
4315
|
-
msgstr ""
|
4316
|
-
|
4317
4659
|
#, fuzzy
|
4318
4660
|
msgid "Packages must be provided"
|
4319
4661
|
msgstr "Musí existovat alespoň jedna organizace."
|
@@ -4336,7 +4678,7 @@ msgstr ""
|
|
4336
4678
|
msgid "Password"
|
4337
4679
|
msgstr ""
|
4338
4680
|
|
4339
|
-
msgid "Password for authentication"
|
4681
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4340
4682
|
msgstr ""
|
4341
4683
|
|
4342
4684
|
msgid "Password of the upstream authentication token."
|
@@ -4357,6 +4699,9 @@ msgstr ""
|
|
4357
4699
|
msgid "Path for ssl key used for pulp server auth"
|
4358
4700
|
msgstr ""
|
4359
4701
|
|
4702
|
+
msgid "Path suffixes for finding alternate content"
|
4703
|
+
msgstr ""
|
4704
|
+
|
4360
4705
|
msgid "Paused"
|
4361
4706
|
msgstr ""
|
4362
4707
|
|
@@ -4375,6 +4720,12 @@ msgstr ""
|
|
4375
4720
|
msgid "Performs a full-export of the repositories in library."
|
4376
4721
|
msgstr ""
|
4377
4722
|
|
4723
|
+
msgid "Performs a full-export of the repository in library."
|
4724
|
+
msgstr ""
|
4725
|
+
|
4726
|
+
msgid "Performs a incremental-export of the repository in library."
|
4727
|
+
msgstr ""
|
4728
|
+
|
4378
4729
|
msgid "Performs an incremental-export of a content view version."
|
4379
4730
|
msgstr ""
|
4380
4731
|
|
@@ -4408,6 +4759,12 @@ msgstr ""
|
|
4408
4759
|
msgid "Please select a content source before assigning a kickstart repository"
|
4409
4760
|
msgstr ""
|
4410
4761
|
|
4762
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4763
|
+
msgstr ""
|
4764
|
+
|
4765
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4766
|
+
msgstr ""
|
4767
|
+
|
4411
4768
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4412
4769
|
msgstr ""
|
4413
4770
|
|
@@ -4429,9 +4786,39 @@ msgstr ""
|
|
4429
4786
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4430
4787
|
msgstr ""
|
4431
4788
|
|
4789
|
+
msgid "Prefer registered through proxy for remote execution"
|
4790
|
+
msgstr ""
|
4791
|
+
|
4792
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4793
|
+
msgstr ""
|
4794
|
+
|
4795
|
+
msgid "Prevent from further updates"
|
4796
|
+
msgstr ""
|
4797
|
+
|
4432
4798
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4433
4799
|
msgstr ""
|
4434
4800
|
|
4801
|
+
msgid "Problem searching"
|
4802
|
+
msgstr ""
|
4803
|
+
|
4804
|
+
msgid "Problem searching errata"
|
4805
|
+
msgstr ""
|
4806
|
+
|
4807
|
+
msgid "Problem searching host collections"
|
4808
|
+
msgstr ""
|
4809
|
+
|
4810
|
+
msgid "Problem searching module streams"
|
4811
|
+
msgstr ""
|
4812
|
+
|
4813
|
+
msgid "Problem searching packages"
|
4814
|
+
msgstr ""
|
4815
|
+
|
4816
|
+
msgid "Problem searching repository sets"
|
4817
|
+
msgstr ""
|
4818
|
+
|
4819
|
+
msgid "Problem searching traces"
|
4820
|
+
msgstr ""
|
4821
|
+
|
4435
4822
|
msgid "Processing metadata"
|
4436
4823
|
msgstr ""
|
4437
4824
|
|
@@ -4492,9 +4879,6 @@ msgstr ""
|
|
4492
4879
|
msgid "Products"
|
4493
4880
|
msgstr "Produkty"
|
4494
4881
|
|
4495
|
-
msgid "Profiles"
|
4496
|
-
msgstr ""
|
4497
|
-
|
4498
4882
|
msgid "Promote"
|
4499
4883
|
msgstr ""
|
4500
4884
|
|
@@ -4522,6 +4906,9 @@ msgstr ""
|
|
4522
4906
|
msgid "Promotion to Environment"
|
4523
4907
|
msgstr ""
|
4524
4908
|
|
4909
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4910
|
+
msgstr ""
|
4911
|
+
|
4525
4912
|
msgid "Provided Products"
|
4526
4913
|
msgstr ""
|
4527
4914
|
|
@@ -4685,6 +5072,9 @@ msgstr ""
|
|
4685
5072
|
msgid "RPM name"
|
4686
5073
|
msgstr ""
|
4687
5074
|
|
5075
|
+
msgid "RPM packages"
|
5076
|
+
msgstr ""
|
5077
|
+
|
4688
5078
|
msgid "RPMs"
|
4689
5079
|
msgstr ""
|
4690
5080
|
|
@@ -4694,9 +5084,15 @@ msgstr ""
|
|
4694
5084
|
msgid "Realm IDs"
|
4695
5085
|
msgstr ""
|
4696
5086
|
|
5087
|
+
msgid "Reassign affected activation key"
|
5088
|
+
msgstr ""
|
5089
|
+
|
4697
5090
|
msgid "Reassign affected activation keys"
|
4698
5091
|
msgstr ""
|
4699
5092
|
|
5093
|
+
msgid "Reassign affected host"
|
5094
|
+
msgstr ""
|
5095
|
+
|
4700
5096
|
msgid "Reassign affected hosts"
|
4701
5097
|
msgstr ""
|
4702
5098
|
|
@@ -4724,6 +5120,9 @@ msgstr ""
|
|
4724
5120
|
msgid "Recommended Repositories"
|
4725
5121
|
msgstr ""
|
4726
5122
|
|
5123
|
+
msgid "Red Hat CDN"
|
5124
|
+
msgstr ""
|
5125
|
+
|
4727
5126
|
#, fuzzy
|
4728
5127
|
msgid "Red Hat CDN URL"
|
4729
5128
|
msgstr "Produkty"
|
@@ -4735,6 +5134,15 @@ msgstr "Repozitáře"
|
|
4735
5134
|
msgid "Red Hat Repositories page"
|
4736
5135
|
msgstr ""
|
4737
5136
|
|
5137
|
+
msgid "Red Hat content will be consumed from an {type}."
|
5138
|
+
msgstr ""
|
5139
|
+
|
5140
|
+
msgid "Red Hat content will be consumed from the {type}."
|
5141
|
+
msgstr ""
|
5142
|
+
|
5143
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
5144
|
+
msgstr ""
|
5145
|
+
|
4738
5146
|
msgid "Red Hat products cannot be manipulated."
|
4739
5147
|
msgstr ""
|
4740
5148
|
|
@@ -4766,6 +5174,18 @@ msgstr ""
|
|
4766
5174
|
msgid "Register host '%s' before attaching subscriptions"
|
4767
5175
|
msgstr ""
|
4768
5176
|
|
5177
|
+
msgid "Registered by"
|
5178
|
+
msgstr ""
|
5179
|
+
|
5180
|
+
msgid "Registered on"
|
5181
|
+
msgstr ""
|
5182
|
+
|
5183
|
+
msgid "Registered through"
|
5184
|
+
msgstr ""
|
5185
|
+
|
5186
|
+
msgid "Registration details"
|
5187
|
+
msgstr ""
|
5188
|
+
|
4769
5189
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4770
5190
|
msgstr ""
|
4771
5191
|
|
@@ -4860,12 +5280,21 @@ msgstr ""
|
|
4860
5280
|
msgid "Remove from environments"
|
4861
5281
|
msgstr ""
|
4862
5282
|
|
5283
|
+
msgid "Remove host from collections"
|
5284
|
+
msgstr ""
|
5285
|
+
|
5286
|
+
msgid "Remove host from host collections"
|
5287
|
+
msgstr ""
|
5288
|
+
|
4863
5289
|
msgid "Remove hosts from the host collection"
|
4864
5290
|
msgstr ""
|
4865
5291
|
|
4866
5292
|
msgid "Remove lifecycle environments from the smart proxy"
|
4867
5293
|
msgstr ""
|
4868
5294
|
|
5295
|
+
msgid "Remove module stream"
|
5296
|
+
msgstr ""
|
5297
|
+
|
4869
5298
|
msgid "Remove one or more host collections from one or more hosts"
|
4870
5299
|
msgstr ""
|
4871
5300
|
|
@@ -4889,6 +5318,9 @@ msgstr ""
|
|
4889
5318
|
msgid "Remove package via Katello interface"
|
4890
5319
|
msgstr ""
|
4891
5320
|
|
5321
|
+
msgid "Remove packages via Katello interface"
|
5322
|
+
msgstr ""
|
5323
|
+
|
4892
5324
|
msgid "Remove products from sync plan"
|
4893
5325
|
msgstr ""
|
4894
5326
|
|
@@ -4931,6 +5363,9 @@ msgstr ""
|
|
4931
5363
|
msgid "Repositories"
|
4932
5364
|
msgstr "Repozitáře"
|
4933
5365
|
|
5366
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5367
|
+
msgstr ""
|
5368
|
+
|
4934
5369
|
msgid "Repositories from published Content Views are not allowed."
|
4935
5370
|
msgstr ""
|
4936
5371
|
|
@@ -5009,9 +5444,6 @@ msgstr ""
|
|
5009
5444
|
msgid "Repository sets will appear here when available."
|
5010
5445
|
msgstr ""
|
5011
5446
|
|
5012
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
5013
|
-
msgstr ""
|
5014
|
-
|
5015
5447
|
msgid "Republish Repositories of %{name} %{version}"
|
5016
5448
|
msgstr ""
|
5017
5449
|
|
@@ -5033,12 +5465,21 @@ msgstr ""
|
|
5033
5465
|
msgid "Requires Virt-Who"
|
5034
5466
|
msgstr ""
|
5035
5467
|
|
5468
|
+
msgid "Reset"
|
5469
|
+
msgstr ""
|
5470
|
+
|
5036
5471
|
msgid "Reset filters"
|
5037
5472
|
msgstr ""
|
5038
5473
|
|
5474
|
+
msgid "Reset module stream"
|
5475
|
+
msgstr ""
|
5476
|
+
|
5039
5477
|
msgid "Reset to default"
|
5040
5478
|
msgstr ""
|
5041
5479
|
|
5480
|
+
msgid "Reset to the default state"
|
5481
|
+
msgstr ""
|
5482
|
+
|
5042
5483
|
msgid "Resolve traces"
|
5043
5484
|
msgstr ""
|
5044
5485
|
|
@@ -5063,7 +5504,7 @@ msgstr ""
|
|
5063
5504
|
msgid "Restart via remote execution"
|
5064
5505
|
msgstr ""
|
5065
5506
|
|
5066
|
-
msgid "Restrict
|
5507
|
+
msgid "Restrict composite content view promotion"
|
5067
5508
|
msgstr ""
|
5068
5509
|
|
5069
5510
|
msgid "Result"
|
@@ -5153,7 +5594,10 @@ msgstr ""
|
|
5153
5594
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
5154
5595
|
msgstr ""
|
5155
5596
|
|
5156
|
-
msgid "Review
|
5597
|
+
msgid "Review affected environment"
|
5598
|
+
msgstr ""
|
5599
|
+
|
5600
|
+
msgid "Review affected environments"
|
5157
5601
|
msgstr ""
|
5158
5602
|
|
5159
5603
|
msgid "Review details"
|
@@ -5171,15 +5615,15 @@ msgstr ""
|
|
5171
5615
|
msgid "Roles"
|
5172
5616
|
msgstr ""
|
5173
5617
|
|
5174
|
-
msgid "Rpm packages"
|
5175
|
-
msgstr ""
|
5176
|
-
|
5177
5618
|
msgid "Rules to be added"
|
5178
5619
|
msgstr ""
|
5179
5620
|
|
5180
5621
|
msgid "Run Sync Plan:"
|
5181
5622
|
msgstr ""
|
5182
5623
|
|
5624
|
+
msgid "Run job invocation"
|
5625
|
+
msgstr ""
|
5626
|
+
|
5183
5627
|
msgid "Running"
|
5184
5628
|
msgstr ""
|
5185
5629
|
|
@@ -5216,6 +5660,12 @@ msgstr ""
|
|
5216
5660
|
msgid "Search Query"
|
5217
5661
|
msgstr ""
|
5218
5662
|
|
5663
|
+
msgid "Search available packages"
|
5664
|
+
msgstr ""
|
5665
|
+
|
5666
|
+
msgid "Search host collections"
|
5667
|
+
msgstr ""
|
5668
|
+
|
5219
5669
|
msgid "Search pattern (defaults to '*')"
|
5220
5670
|
msgstr ""
|
5221
5671
|
|
@@ -5232,6 +5682,9 @@ msgstr ""
|
|
5232
5682
|
msgid "Search string for hosts to perform an action on"
|
5233
5683
|
msgstr ""
|
5234
5684
|
|
5685
|
+
msgid "Search string for versions to perform an action on"
|
5686
|
+
msgstr ""
|
5687
|
+
|
5235
5688
|
#, fuzzy
|
5236
5689
|
msgid "Security"
|
5237
5690
|
msgstr "Smazat systémy"
|
@@ -5245,6 +5698,9 @@ msgstr ""
|
|
5245
5698
|
msgid "Select"
|
5246
5699
|
msgstr ""
|
5247
5700
|
|
5701
|
+
msgid "Select ..."
|
5702
|
+
msgstr ""
|
5703
|
+
|
5248
5704
|
msgid "Select All"
|
5249
5705
|
msgstr ""
|
5250
5706
|
|
@@ -5265,6 +5721,12 @@ msgstr ""
|
|
5265
5721
|
msgid "Select a content view"
|
5266
5722
|
msgstr ""
|
5267
5723
|
|
5724
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5725
|
+
msgstr ""
|
5726
|
+
|
5727
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5728
|
+
msgstr ""
|
5729
|
+
|
5268
5730
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5269
5731
|
msgstr ""
|
5270
5732
|
|
@@ -5281,6 +5743,12 @@ msgstr ""
|
|
5281
5743
|
msgid "Select an Organization"
|
5282
5744
|
msgstr "Vybrat organizaci"
|
5283
5745
|
|
5746
|
+
msgid "Select an environment"
|
5747
|
+
msgstr ""
|
5748
|
+
|
5749
|
+
msgid "Select an environment above"
|
5750
|
+
msgstr ""
|
5751
|
+
|
5284
5752
|
msgid "Select an organization"
|
5285
5753
|
msgstr ""
|
5286
5754
|
|
@@ -5293,6 +5761,15 @@ msgstr ""
|
|
5293
5761
|
msgid "Select content view"
|
5294
5762
|
msgstr ""
|
5295
5763
|
|
5764
|
+
msgid "Select environment"
|
5765
|
+
msgstr ""
|
5766
|
+
|
5767
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5768
|
+
msgstr ""
|
5769
|
+
|
5770
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5771
|
+
msgstr ""
|
5772
|
+
|
5296
5773
|
msgid "Select hosts to assign to %s"
|
5297
5774
|
msgstr ""
|
5298
5775
|
|
@@ -5305,6 +5782,9 @@ msgstr ""
|
|
5305
5782
|
msgid "Select one"
|
5306
5783
|
msgstr ""
|
5307
5784
|
|
5785
|
+
msgid "Select packages to install to the host {hostName}."
|
5786
|
+
msgstr ""
|
5787
|
+
|
5308
5788
|
msgid "Select page"
|
5309
5789
|
msgstr ""
|
5310
5790
|
|
@@ -5323,15 +5803,15 @@ msgstr ""
|
|
5323
5803
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5324
5804
|
msgstr ""
|
5325
5805
|
|
5326
|
-
msgid "Service Level"
|
5327
|
-
msgstr ""
|
5328
|
-
|
5329
5806
|
msgid "Service Level %s"
|
5330
5807
|
msgstr ""
|
5331
5808
|
|
5332
5809
|
msgid "Service Level (SLA)"
|
5333
5810
|
msgstr ""
|
5334
5811
|
|
5812
|
+
msgid "Service level"
|
5813
|
+
msgstr ""
|
5814
|
+
|
5335
5815
|
msgid "Service level of host"
|
5336
5816
|
msgstr ""
|
5337
5817
|
|
@@ -5344,6 +5824,9 @@ msgstr ""
|
|
5344
5824
|
msgid "Set content overrides to one or more hosts"
|
5345
5825
|
msgstr ""
|
5346
5826
|
|
5827
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5828
|
+
msgstr ""
|
5829
|
+
|
5347
5830
|
msgid "Set true to remove an override and reset it to 'default'"
|
5348
5831
|
msgstr ""
|
5349
5832
|
|
@@ -5404,6 +5887,12 @@ msgstr "organizace"
|
|
5404
5887
|
msgid "Show a sync plan"
|
5405
5888
|
msgstr "+ Nový plán"
|
5406
5889
|
|
5890
|
+
msgid "Show affected activation keys"
|
5891
|
+
msgstr ""
|
5892
|
+
|
5893
|
+
msgid "Show affected hosts"
|
5894
|
+
msgstr ""
|
5895
|
+
|
5407
5896
|
msgid "Show all"
|
5408
5897
|
msgstr ""
|
5409
5898
|
|
@@ -5411,6 +5900,9 @@ msgstr ""
|
|
5411
5900
|
msgid "Show an activation key"
|
5412
5901
|
msgstr "Číst aktivační klíče"
|
5413
5902
|
|
5903
|
+
msgid "Show an alternate content source"
|
5904
|
+
msgstr ""
|
5905
|
+
|
5414
5906
|
#, fuzzy
|
5415
5907
|
msgid "Show an environment"
|
5416
5908
|
msgstr "prostředí"
|
@@ -5488,6 +5980,9 @@ msgstr ""
|
|
5488
5980
|
msgid "Solve dependencies"
|
5489
5981
|
msgstr ""
|
5490
5982
|
|
5983
|
+
msgid "Some hosts are ignored!"
|
5984
|
+
msgstr ""
|
5985
|
+
|
5491
5986
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5492
5987
|
msgstr ""
|
5493
5988
|
|
@@ -5515,9 +6010,15 @@ msgstr ""
|
|
5515
6010
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5516
6011
|
msgstr ""
|
5517
6012
|
|
6013
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
6014
|
+
msgstr ""
|
6015
|
+
|
5518
6016
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5519
6017
|
msgstr ""
|
5520
6018
|
|
6019
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
6020
|
+
msgstr ""
|
6021
|
+
|
5521
6022
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5522
6023
|
msgstr ""
|
5523
6024
|
|
@@ -5536,10 +6037,10 @@ msgstr ""
|
|
5536
6037
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5537
6038
|
msgstr ""
|
5538
6039
|
|
5539
|
-
msgid "Something went wrong while getting
|
6040
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5540
6041
|
msgstr ""
|
5541
6042
|
|
5542
|
-
msgid "Something went wrong while getting
|
6043
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5543
6044
|
msgstr ""
|
5544
6045
|
|
5545
6046
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5551,9 +6052,15 @@ msgstr ""
|
|
5551
6052
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5552
6053
|
msgstr ""
|
5553
6054
|
|
6055
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
6056
|
+
msgstr ""
|
6057
|
+
|
5554
6058
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5555
6059
|
msgstr ""
|
5556
6060
|
|
6061
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
6062
|
+
msgstr ""
|
6063
|
+
|
5557
6064
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5558
6065
|
msgstr ""
|
5559
6066
|
|
@@ -5590,6 +6097,9 @@ msgstr ""
|
|
5590
6097
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5591
6098
|
msgstr ""
|
5592
6099
|
|
6100
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
6101
|
+
msgstr ""
|
6102
|
+
|
5593
6103
|
msgid "Something went wrong! Please check server logs!"
|
5594
6104
|
msgstr ""
|
5595
6105
|
|
@@ -5624,9 +6134,15 @@ msgstr "Název nesmí být prázdný."
|
|
5624
6134
|
msgid "Start Time"
|
5625
6135
|
msgstr ""
|
5626
6136
|
|
6137
|
+
msgid "Start date"
|
6138
|
+
msgstr ""
|
6139
|
+
|
5627
6140
|
msgid "Starts"
|
5628
6141
|
msgstr ""
|
5629
6142
|
|
6143
|
+
msgid "State"
|
6144
|
+
msgstr ""
|
6145
|
+
|
5630
6146
|
msgid "Status"
|
5631
6147
|
msgstr ""
|
5632
6148
|
|
@@ -5639,6 +6155,12 @@ msgstr ""
|
|
5639
6155
|
msgid "Stream"
|
5640
6156
|
msgstr ""
|
5641
6157
|
|
6158
|
+
msgid "Streamed"
|
6159
|
+
msgstr ""
|
6160
|
+
|
6161
|
+
msgid "Streams based on the host based on the installation status"
|
6162
|
+
msgstr ""
|
6163
|
+
|
5642
6164
|
msgid "Streams based on the host based on their status"
|
5643
6165
|
msgstr ""
|
5644
6166
|
|
@@ -5684,9 +6206,15 @@ msgstr "organizace"
|
|
5684
6206
|
msgid "Subscription Status"
|
5685
6207
|
msgstr ""
|
5686
6208
|
|
6209
|
+
msgid "Subscription UUID"
|
6210
|
+
msgstr ""
|
6211
|
+
|
5687
6212
|
msgid "Subscription Watch"
|
5688
6213
|
msgstr ""
|
5689
6214
|
|
6215
|
+
msgid "Subscription connection enabled"
|
6216
|
+
msgstr ""
|
6217
|
+
|
5690
6218
|
msgid "Subscription expiration notification"
|
5691
6219
|
msgstr ""
|
5692
6220
|
|
@@ -5767,7 +6295,7 @@ msgstr ""
|
|
5767
6295
|
msgid "Sync Canceled"
|
5768
6296
|
msgstr "Stornováno."
|
5769
6297
|
|
5770
|
-
msgid "Sync
|
6298
|
+
msgid "Sync Connect Timeout"
|
5771
6299
|
msgstr ""
|
5772
6300
|
|
5773
6301
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5794,7 +6322,13 @@ msgstr "+ Nový plán"
|
|
5794
6322
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5795
6323
|
msgstr ""
|
5796
6324
|
|
5797
|
-
msgid "Sync Smart Proxies after
|
6325
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6326
|
+
msgstr ""
|
6327
|
+
|
6328
|
+
msgid "Sync Sock Connect Timeout"
|
6329
|
+
msgstr ""
|
6330
|
+
|
6331
|
+
msgid "Sync Sock Read Timeout"
|
5798
6332
|
msgstr ""
|
5799
6333
|
|
5800
6334
|
#, fuzzy
|
@@ -5807,6 +6341,9 @@ msgstr ""
|
|
5807
6341
|
msgid "Sync Summary for %s"
|
5808
6342
|
msgstr ""
|
5809
6343
|
|
6344
|
+
msgid "Sync Total Timeout"
|
6345
|
+
msgstr ""
|
6346
|
+
|
5810
6347
|
#, fuzzy
|
5811
6348
|
msgid "Sync a repository"
|
5812
6349
|
msgstr "Vybrat organizaci"
|
@@ -5879,6 +6416,9 @@ msgstr ""
|
|
5879
6416
|
msgid "System Status"
|
5880
6417
|
msgstr ""
|
5881
6418
|
|
6419
|
+
msgid "System purpose"
|
6420
|
+
msgstr ""
|
6421
|
+
|
5882
6422
|
msgid "Tag name"
|
5883
6423
|
msgstr ""
|
5884
6424
|
|
@@ -5907,6 +6447,9 @@ msgstr ""
|
|
5907
6447
|
msgid "The '%s' environment cannot contain a changeset!"
|
5908
6448
|
msgstr ""
|
5909
6449
|
|
6450
|
+
msgid "The Alternate Content Source type"
|
6451
|
+
msgstr ""
|
6452
|
+
|
5910
6453
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5911
6454
|
msgstr ""
|
5912
6455
|
|
@@ -5919,6 +6462,9 @@ msgstr ""
|
|
5919
6462
|
msgid "The actual file contents"
|
5920
6463
|
msgstr ""
|
5921
6464
|
|
6465
|
+
msgid "The content type for the Alternate Content Source"
|
6466
|
+
msgstr ""
|
6467
|
+
|
5922
6468
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5923
6469
|
msgstr ""
|
5924
6470
|
|
@@ -5928,7 +6474,7 @@ msgstr ""
|
|
5928
6474
|
msgid "The default content view cannot be promoted"
|
5929
6475
|
msgstr ""
|
5930
6476
|
|
5931
|
-
msgid "The default dependency solving value for new
|
6477
|
+
msgid "The default dependency solving value for new content views."
|
5932
6478
|
msgstr ""
|
5933
6479
|
|
5934
6480
|
msgid "The description for the content view version"
|
@@ -5958,6 +6504,9 @@ msgstr ""
|
|
5958
6504
|
msgid "The field to sort the data by. Defaults to the created date."
|
5959
6505
|
msgstr ""
|
5960
6506
|
|
6507
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6508
|
+
msgstr ""
|
6509
|
+
|
5961
6510
|
msgid "The following hosts have errata that apply to them: "
|
5962
6511
|
msgstr ""
|
5963
6512
|
|
@@ -5966,15 +6515,39 @@ msgid ""
|
|
5966
6515
|
" %{repos}"
|
5967
6516
|
msgstr ""
|
5968
6517
|
|
6518
|
+
msgid "The id of the content source"
|
6519
|
+
msgstr ""
|
6520
|
+
|
6521
|
+
msgid "The id of the content view"
|
6522
|
+
msgstr ""
|
6523
|
+
|
5969
6524
|
msgid "The id of the host to alter"
|
5970
6525
|
msgstr ""
|
5971
6526
|
|
6527
|
+
msgid "The id of the lifecycle environment"
|
6528
|
+
msgstr ""
|
6529
|
+
|
6530
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6531
|
+
msgstr ""
|
6532
|
+
|
5972
6533
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5973
6534
|
msgstr ""
|
5974
6535
|
|
5975
6536
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5976
6537
|
msgstr ""
|
5977
6538
|
|
6539
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6540
|
+
msgstr ""
|
6541
|
+
|
6542
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6543
|
+
msgstr ""
|
6544
|
+
|
6545
|
+
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."
|
6546
|
+
msgstr ""
|
6547
|
+
|
6548
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6549
|
+
msgstr ""
|
6550
|
+
|
5978
6551
|
msgid "The maximum number of versions of each package to keep."
|
5979
6552
|
msgstr ""
|
5980
6553
|
|
@@ -6062,9 +6635,18 @@ msgstr ""
|
|
6062
6635
|
msgid "There are no errata that need to be applied to registered content hosts."
|
6063
6636
|
msgstr ""
|
6064
6637
|
|
6638
|
+
msgid "There are no host collections available to add."
|
6639
|
+
msgstr ""
|
6640
|
+
|
6065
6641
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
6066
6642
|
msgstr ""
|
6067
6643
|
|
6644
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6645
|
+
msgstr ""
|
6646
|
+
|
6647
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6648
|
+
msgstr ""
|
6649
|
+
|
6068
6650
|
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."
|
6069
6651
|
msgstr ""
|
6070
6652
|
|
@@ -6077,6 +6659,12 @@ msgstr ""
|
|
6077
6659
|
msgid "There is nothing to see here"
|
6078
6660
|
msgstr ""
|
6079
6661
|
|
6662
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6663
|
+
msgstr ""
|
6664
|
+
|
6665
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6666
|
+
msgstr ""
|
6667
|
+
|
6080
6668
|
msgid "There was a problem retrieving Activation Key data from the server."
|
6081
6669
|
msgstr ""
|
6082
6670
|
|
@@ -6125,13 +6713,13 @@ msgstr ""
|
|
6125
6713
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
6126
6714
|
msgstr ""
|
6127
6715
|
|
6128
|
-
msgid "This host
|
6716
|
+
msgid "This host does not have any Module streams."
|
6129
6717
|
msgstr ""
|
6130
6718
|
|
6131
|
-
msgid "This host does not have any
|
6719
|
+
msgid "This host does not have any packages."
|
6132
6720
|
msgstr ""
|
6133
6721
|
|
6134
|
-
msgid "This host
|
6722
|
+
msgid "This host has errata that are applicable, but not installable."
|
6135
6723
|
msgstr ""
|
6136
6724
|
|
6137
6725
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -6164,6 +6752,9 @@ msgstr ""
|
|
6164
6752
|
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}."
|
6165
6753
|
msgstr ""
|
6166
6754
|
|
6755
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6756
|
+
msgstr ""
|
6757
|
+
|
6167
6758
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
6168
6759
|
msgstr ""
|
6169
6760
|
|
@@ -6197,10 +6788,10 @@ msgstr ""
|
|
6197
6788
|
msgid "Time in minutes to consider orphan content as orphaned."
|
6198
6789
|
msgstr ""
|
6199
6790
|
|
6200
|
-
msgid "Time in seconds to wait for a
|
6791
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
6201
6792
|
msgstr ""
|
6202
6793
|
|
6203
|
-
msgid "Time in seconds to wait for a
|
6794
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
6204
6795
|
msgstr ""
|
6205
6796
|
|
6206
6797
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
@@ -6218,9 +6809,6 @@ msgstr ""
|
|
6218
6809
|
msgid "Total steps: "
|
6219
6810
|
msgstr ""
|
6220
6811
|
|
6221
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6222
|
-
msgstr ""
|
6223
|
-
|
6224
6812
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6225
6813
|
msgstr ""
|
6226
6814
|
|
@@ -6236,6 +6824,9 @@ msgstr ""
|
|
6236
6824
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6237
6825
|
msgstr ""
|
6238
6826
|
|
6827
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6828
|
+
msgstr ""
|
6829
|
+
|
6239
6830
|
msgid "Traces that require logout cannot be restarted remotely"
|
6240
6831
|
msgstr ""
|
6241
6832
|
|
@@ -6317,9 +6908,15 @@ msgstr ""
|
|
6317
6908
|
msgid "Unable to get users"
|
6318
6909
|
msgstr ""
|
6319
6910
|
|
6911
|
+
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. "
|
6912
|
+
msgstr ""
|
6913
|
+
|
6320
6914
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6321
6915
|
msgstr ""
|
6322
6916
|
|
6917
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6918
|
+
msgstr ""
|
6919
|
+
|
6323
6920
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6324
6921
|
msgstr ""
|
6325
6922
|
|
@@ -6363,6 +6960,9 @@ msgstr ""
|
|
6363
6960
|
msgid "Unfiltered params array: %s."
|
6364
6961
|
msgstr ""
|
6365
6962
|
|
6963
|
+
msgid "Uninstall and reset"
|
6964
|
+
msgstr ""
|
6965
|
+
|
6366
6966
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6367
6967
|
msgstr ""
|
6368
6968
|
|
@@ -6418,6 +7018,9 @@ msgstr ""
|
|
6418
7018
|
msgid "Update"
|
6419
7019
|
msgstr "Balíček aktualizován"
|
6420
7020
|
|
7021
|
+
msgid "Update Alternate Content Source"
|
7022
|
+
msgstr ""
|
7023
|
+
|
6421
7024
|
msgid "Update CDN Configuration"
|
6422
7025
|
msgstr ""
|
6423
7026
|
|
@@ -6460,6 +7063,9 @@ msgstr ""
|
|
6460
7063
|
msgid "Update an activation key"
|
6461
7064
|
msgstr "Číst aktivační klíče"
|
6462
7065
|
|
7066
|
+
msgid "Update an alternate content source"
|
7067
|
+
msgstr ""
|
7068
|
+
|
6463
7069
|
#, fuzzy
|
6464
7070
|
msgid "Update an environment"
|
6465
7071
|
msgstr "prostředí"
|
@@ -6514,6 +7120,9 @@ msgstr ""
|
|
6514
7120
|
msgid "Update packages remotely using katello-agent. %s"
|
6515
7121
|
msgstr ""
|
6516
7122
|
|
7123
|
+
msgid "Update packages via Katello interface"
|
7124
|
+
msgstr ""
|
7125
|
+
|
6517
7126
|
msgid "Update redhat repository"
|
6518
7127
|
msgstr ""
|
6519
7128
|
|
@@ -6532,6 +7141,9 @@ msgstr ""
|
|
6532
7141
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6533
7142
|
msgstr ""
|
6534
7143
|
|
7144
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
7145
|
+
msgstr ""
|
7146
|
+
|
6535
7147
|
msgid "Update the information about enabled repositories"
|
6536
7148
|
msgstr ""
|
6537
7149
|
|
@@ -6547,6 +7159,9 @@ msgstr ""
|
|
6547
7159
|
msgid "Updated component details"
|
6548
7160
|
msgstr ""
|
6549
7161
|
|
7162
|
+
msgid "Updated from"
|
7163
|
+
msgstr ""
|
7164
|
+
|
6550
7165
|
msgid "Updates"
|
6551
7166
|
msgstr ""
|
6552
7167
|
|
@@ -6577,7 +7192,7 @@ msgstr ""
|
|
6577
7192
|
msgid "Upgradable"
|
6578
7193
|
msgstr ""
|
6579
7194
|
|
6580
|
-
msgid "Upgradable
|
7195
|
+
msgid "Upgradable to"
|
6581
7196
|
msgstr ""
|
6582
7197
|
|
6583
7198
|
msgid "Upgrade"
|
@@ -6610,9 +7225,18 @@ msgstr ""
|
|
6610
7225
|
msgid "Upload request id"
|
6611
7226
|
msgstr ""
|
6612
7227
|
|
7228
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7229
|
+
msgstr ""
|
7230
|
+
|
7231
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7232
|
+
msgstr ""
|
7233
|
+
|
6613
7234
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6614
7235
|
msgstr ""
|
6615
7236
|
|
7237
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7238
|
+
msgstr ""
|
7239
|
+
|
6616
7240
|
msgid "Upstream identity certificate not available"
|
6617
7241
|
msgstr ""
|
6618
7242
|
|
@@ -6625,15 +7249,12 @@ msgstr ""
|
|
6625
7249
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6626
7250
|
msgstr ""
|
6627
7251
|
|
6628
|
-
msgid "Upstream organization to sync CDN content from"
|
7252
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6629
7253
|
msgstr ""
|
6630
7254
|
|
6631
7255
|
msgid "Upstream password requires upstream username be set."
|
6632
7256
|
msgstr ""
|
6633
7257
|
|
6634
|
-
msgid "Upstream server to sync CDN content from"
|
6635
|
-
msgstr ""
|
6636
|
-
|
6637
7258
|
msgid "Upstream username and password may only be set on custom repositories."
|
6638
7259
|
msgstr ""
|
6639
7260
|
|
@@ -6676,7 +7297,7 @@ msgstr ""
|
|
6676
7297
|
msgid "Username"
|
6677
7298
|
msgstr ""
|
6678
7299
|
|
6679
|
-
msgid "Username for authentication"
|
7300
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6680
7301
|
msgstr ""
|
6681
7302
|
|
6682
7303
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6688,7 +7309,7 @@ msgstr ""
|
|
6688
7309
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6689
7310
|
msgstr ""
|
6690
7311
|
|
6691
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7312
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6692
7313
|
msgstr ""
|
6693
7314
|
|
6694
7315
|
msgid "Valid"
|
@@ -6733,6 +7354,15 @@ msgstr ""
|
|
6733
7354
|
msgid "Versions"
|
6734
7355
|
msgstr ""
|
6735
7356
|
|
7357
|
+
msgid "Versions "
|
7358
|
+
msgstr ""
|
7359
|
+
|
7360
|
+
msgid "Versions to exclusively include in the action"
|
7361
|
+
msgstr ""
|
7362
|
+
|
7363
|
+
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."
|
7364
|
+
msgstr ""
|
7365
|
+
|
6736
7366
|
msgid "Versions will appear here when the content view is published."
|
6737
7367
|
msgstr ""
|
6738
7368
|
|
@@ -6745,19 +7375,25 @@ msgstr ""
|
|
6745
7375
|
msgid "View matching content"
|
6746
7376
|
msgstr ""
|
6747
7377
|
|
7378
|
+
msgid "View tasks "
|
7379
|
+
msgstr ""
|
7380
|
+
|
7381
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
7382
|
+
msgstr ""
|
7383
|
+
|
6748
7384
|
#, fuzzy
|
6749
7385
|
msgid "Virtual"
|
6750
7386
|
msgstr "Virtuální"
|
6751
7387
|
|
6752
|
-
msgid "Visit the previous Packages page"
|
6753
|
-
msgstr ""
|
6754
|
-
|
6755
7388
|
msgid "Waiting to start."
|
6756
7389
|
msgstr ""
|
6757
7390
|
|
6758
7391
|
msgid "Warning"
|
6759
7392
|
msgstr ""
|
6760
7393
|
|
7394
|
+
msgid "What's next?"
|
7395
|
+
msgstr ""
|
7396
|
+
|
6761
7397
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
6762
7398
|
msgstr ""
|
6763
7399
|
|
@@ -6779,7 +7415,7 @@ msgstr ""
|
|
6779
7415
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6780
7416
|
msgstr ""
|
6781
7417
|
|
6782
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7418
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6783
7419
|
msgstr ""
|
6784
7420
|
|
6785
7421
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6809,9 +7445,6 @@ msgstr ""
|
|
6809
7445
|
msgid "Yes"
|
6810
7446
|
msgstr ""
|
6811
7447
|
|
6812
|
-
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'."
|
6813
|
-
msgstr ""
|
6814
|
-
|
6815
7448
|
msgid "You are not allowed to promote to Environments %s"
|
6816
7449
|
msgstr ""
|
6817
7450
|
|
@@ -6836,6 +7469,9 @@ msgstr ""
|
|
6836
7469
|
msgid "You currently don't have any Content views."
|
6837
7470
|
msgstr ""
|
6838
7471
|
|
7472
|
+
msgid "You currently don't have any alternate content sources."
|
7473
|
+
msgstr ""
|
7474
|
+
|
6839
7475
|
msgid "You currently don't have any filters for this content view."
|
6840
7476
|
msgstr ""
|
6841
7477
|
|
@@ -6869,6 +7505,9 @@ msgstr ""
|
|
6869
7505
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6870
7506
|
msgstr ""
|
6871
7507
|
|
7508
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7509
|
+
msgstr ""
|
7510
|
+
|
6872
7511
|
msgid "You were not allowed to add %s"
|
6873
7512
|
msgstr ""
|
6874
7513
|
|
@@ -6890,6 +7529,9 @@ msgstr ""
|
|
6890
7529
|
msgid "Your search returned no matching "
|
6891
7530
|
msgstr ""
|
6892
7531
|
|
7532
|
+
msgid "Your search returned no matching Module streams."
|
7533
|
+
msgstr ""
|
7534
|
+
|
6893
7535
|
msgid "Your search returned no matching RPMs."
|
6894
7536
|
msgstr ""
|
6895
7537
|
|
@@ -7010,6 +7652,9 @@ msgstr ""
|
|
7010
7652
|
msgid "can't be blank"
|
7011
7653
|
msgstr "nemůže být prázdné"
|
7012
7654
|
|
7655
|
+
msgid "cannot add filter to generated content views"
|
7656
|
+
msgstr ""
|
7657
|
+
|
7013
7658
|
msgid "cannot add filter to import-only view"
|
7014
7659
|
msgstr ""
|
7015
7660
|
|
@@ -7070,6 +7715,9 @@ msgstr ""
|
|
7070
7715
|
msgid "checking Pulp task status"
|
7071
7716
|
msgstr ""
|
7072
7717
|
|
7718
|
+
msgid "click here"
|
7719
|
+
msgstr ""
|
7720
|
+
|
7073
7721
|
msgid "composite content view identifier"
|
7074
7722
|
msgstr ""
|
7075
7723
|
|
@@ -7089,6 +7737,9 @@ msgstr ""
|
|
7089
7737
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
7090
7738
|
msgstr ""
|
7091
7739
|
|
7740
|
+
msgid "content view Dependency Solving Default"
|
7741
|
+
msgstr ""
|
7742
|
+
|
7092
7743
|
msgid "content view component ID. Identifier of the component association"
|
7093
7744
|
msgstr ""
|
7094
7745
|
|
@@ -7169,7 +7820,7 @@ msgstr ""
|
|
7169
7820
|
msgid "description of the repository"
|
7170
7821
|
msgstr ""
|
7171
7822
|
|
7172
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7823
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
7173
7824
|
msgstr ""
|
7174
7825
|
|
7175
7826
|
msgid "enables or disables synchronization"
|
@@ -7248,6 +7899,9 @@ msgstr ""
|
|
7248
7899
|
msgid "filter identifiers"
|
7249
7900
|
msgstr ""
|
7250
7901
|
|
7902
|
+
msgid "filter only environments containing this label"
|
7903
|
+
msgstr ""
|
7904
|
+
|
7251
7905
|
msgid "filter only environments containing this name"
|
7252
7906
|
msgstr ""
|
7253
7907
|
|
@@ -7312,6 +7966,9 @@ msgstr ""
|
|
7312
7966
|
msgid "installing erratum..."
|
7313
7967
|
msgstr ""
|
7314
7968
|
|
7969
|
+
msgid "installing or updating packages"
|
7970
|
+
msgstr ""
|
7971
|
+
|
7315
7972
|
#, fuzzy
|
7316
7973
|
msgid "installing package group..."
|
7317
7974
|
msgstr "všechny balíčky"
|
@@ -7343,9 +8000,18 @@ msgstr ""
|
|
7343
8000
|
msgid "is invalid"
|
7344
8001
|
msgstr ""
|
7345
8002
|
|
8003
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
8004
|
+
msgstr ""
|
8005
|
+
|
8006
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
8007
|
+
msgstr ""
|
8008
|
+
|
7346
8009
|
msgid "is not enabled. must be one of the following: %s"
|
7347
8010
|
msgstr ""
|
7348
8011
|
|
8012
|
+
msgid "is only allowed for Yum repositories."
|
8013
|
+
msgstr ""
|
8014
|
+
|
7349
8015
|
msgid "label of the environment"
|
7350
8016
|
msgstr ""
|
7351
8017
|
|
@@ -7421,6 +8087,9 @@ msgstr ""
|
|
7421
8087
|
msgid "must contain valid Public GPG Key"
|
7422
8088
|
msgstr ""
|
7423
8089
|
|
8090
|
+
msgid "must not be a negative value."
|
8091
|
+
msgstr ""
|
8092
|
+
|
7424
8093
|
#, fuzzy
|
7425
8094
|
msgid "must not contain leading or trailing white spaces."
|
7426
8095
|
msgstr "nesmí obsahovat více než %s znaků"
|
@@ -7526,6 +8195,9 @@ msgstr ""
|
|
7526
8195
|
msgid "package_ids is not an array"
|
7527
8196
|
msgstr ""
|
7528
8197
|
|
8198
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
8199
|
+
msgstr ""
|
8200
|
+
|
7529
8201
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7530
8202
|
msgstr ""
|
7531
8203
|
|
@@ -7652,6 +8324,12 @@ msgstr ""
|
|
7652
8324
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7653
8325
|
msgstr ""
|
7654
8326
|
|
8327
|
+
msgid "to"
|
8328
|
+
msgstr ""
|
8329
|
+
|
8330
|
+
msgid "to update configuration on all hosts, or"
|
8331
|
+
msgstr ""
|
8332
|
+
|
7655
8333
|
msgid "true if the latest version of the component's content view is desired"
|
7656
8334
|
msgstr ""
|
7657
8335
|
|
@@ -7676,9 +8354,15 @@ msgstr ""
|
|
7676
8354
|
msgid "unknown permission for %s"
|
7677
8355
|
msgstr ""
|
7678
8356
|
|
8357
|
+
msgid "unlimited"
|
8358
|
+
msgstr ""
|
8359
|
+
|
7679
8360
|
msgid "update a filter"
|
7680
8361
|
msgstr ""
|
7681
8362
|
|
8363
|
+
msgid "update configuration on the hosts manually:"
|
8364
|
+
msgstr ""
|
8365
|
+
|
7682
8366
|
msgid "updating package group..."
|
7683
8367
|
msgstr ""
|
7684
8368
|
|
@@ -7692,6 +8376,9 @@ msgstr ""
|
|
7692
8376
|
msgid "updating packages..."
|
7693
8377
|
msgstr "všechny balíčky"
|
7694
8378
|
|
8379
|
+
msgid "upstream Foreman server"
|
8380
|
+
msgstr ""
|
8381
|
+
|
7695
8382
|
msgid "url not defined."
|
7696
8383
|
msgstr ""
|
7697
8384
|
|
@@ -7736,3 +8423,30 @@ msgstr ""
|
|
7736
8423
|
|
7737
8424
|
msgid "{0} items selected"
|
7738
8425
|
msgstr ""
|
8426
|
+
|
8427
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8428
|
+
msgstr ""
|
8429
|
+
|
8430
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8431
|
+
msgstr ""
|
8432
|
+
|
8433
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8434
|
+
msgstr ""
|
8435
|
+
|
8436
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8437
|
+
msgstr ""
|
8438
|
+
|
8439
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8440
|
+
msgstr ""
|
8441
|
+
|
8442
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8443
|
+
msgstr ""
|
8444
|
+
|
8445
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8446
|
+
msgstr ""
|
8447
|
+
|
8448
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8449
|
+
msgstr ""
|
8450
|
+
|
8451
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8452
|
+
msgstr ""
|