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/en/katello.po
CHANGED
@@ -48,6 +48,9 @@ msgstr ""
|
|
48
48
|
msgid " ago."
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
+
msgid " and"
|
52
|
+
msgstr ""
|
53
|
+
|
51
54
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
52
55
|
msgstr ""
|
53
56
|
|
@@ -110,6 +113,9 @@ msgstr ""
|
|
110
113
|
msgid "%s is not a valid package name"
|
111
114
|
msgstr ""
|
112
115
|
|
116
|
+
msgid "%s is not a valid path"
|
117
|
+
msgstr ""
|
118
|
+
|
113
119
|
msgid "%s is required"
|
114
120
|
msgstr ""
|
115
121
|
|
@@ -359,9 +365,6 @@ msgstr ""
|
|
359
365
|
msgid "A post-promotion summary of hosts with installable errata"
|
360
366
|
msgstr ""
|
361
367
|
|
362
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
363
|
-
msgstr ""
|
364
|
-
|
365
368
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
366
369
|
msgstr ""
|
367
370
|
|
@@ -380,12 +383,18 @@ msgstr ""
|
|
380
383
|
msgid "About page"
|
381
384
|
msgstr ""
|
382
385
|
|
386
|
+
msgid "Abstract"
|
387
|
+
msgstr ""
|
388
|
+
|
383
389
|
msgid "Abstract async task"
|
384
390
|
msgstr ""
|
385
391
|
|
386
392
|
msgid "Accept action timeout"
|
387
393
|
msgstr ""
|
388
394
|
|
395
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
396
|
+
msgstr ""
|
397
|
+
|
389
398
|
msgid "Account Number"
|
390
399
|
msgstr ""
|
391
400
|
|
@@ -404,10 +413,10 @@ msgstr ""
|
|
404
413
|
msgid "Action with sub plans"
|
405
414
|
msgstr ""
|
406
415
|
|
407
|
-
msgid "
|
416
|
+
msgid "Activation Keys"
|
408
417
|
msgstr ""
|
409
418
|
|
410
|
-
msgid "Activation
|
419
|
+
msgid "Activation key"
|
411
420
|
msgstr ""
|
412
421
|
|
413
422
|
msgid "Activation key ID"
|
@@ -476,6 +485,12 @@ msgstr ""
|
|
476
485
|
msgid "Add filters using the 'Add filter' button above."
|
477
486
|
msgstr ""
|
478
487
|
|
488
|
+
msgid "Add host to collections"
|
489
|
+
msgstr ""
|
490
|
+
|
491
|
+
msgid "Add host to host collections"
|
492
|
+
msgstr ""
|
493
|
+
|
479
494
|
msgid "Add host to the host collection"
|
480
495
|
msgstr ""
|
481
496
|
|
@@ -500,6 +515,9 @@ msgstr ""
|
|
500
515
|
msgid "Add rule"
|
501
516
|
msgstr ""
|
502
517
|
|
518
|
+
msgid "Add source"
|
519
|
+
msgstr ""
|
520
|
+
|
503
521
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
504
522
|
msgstr ""
|
505
523
|
|
@@ -512,9 +530,6 @@ msgstr ""
|
|
512
530
|
msgid "Add to this filter using the 'Add filter rule' button."
|
513
531
|
msgstr ""
|
514
532
|
|
515
|
-
msgid "Add traces by applying updates on this host."
|
516
|
-
msgstr ""
|
517
|
-
|
518
533
|
msgid "Added"
|
519
534
|
msgstr ""
|
520
535
|
|
@@ -557,28 +572,52 @@ msgstr ""
|
|
557
572
|
msgid "All errata applied"
|
558
573
|
msgstr ""
|
559
574
|
|
575
|
+
msgid "All errata up-to-date"
|
576
|
+
msgstr ""
|
577
|
+
|
578
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
579
|
+
msgstr ""
|
580
|
+
|
560
581
|
msgid "All versions"
|
561
582
|
msgstr ""
|
562
583
|
|
563
584
|
msgid "All versions will be removed from these environments"
|
564
585
|
msgstr ""
|
565
586
|
|
566
|
-
msgid "Allow
|
587
|
+
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)"
|
567
588
|
msgstr ""
|
568
589
|
|
569
|
-
msgid "Allow
|
590
|
+
msgid "Allow deleting repositories in published content views"
|
591
|
+
msgstr ""
|
592
|
+
|
593
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
570
594
|
msgstr ""
|
571
595
|
|
572
596
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
573
597
|
msgstr ""
|
574
598
|
|
575
|
-
msgid "Allow new
|
599
|
+
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."
|
576
600
|
msgstr ""
|
577
601
|
|
578
602
|
msgid "Also include the latest upgradable package version for each host package"
|
579
603
|
msgstr ""
|
580
604
|
|
581
|
-
msgid "Alter a
|
605
|
+
msgid "Alter a host's host collections"
|
606
|
+
msgstr ""
|
607
|
+
|
608
|
+
msgid "Alternate Content Sources"
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
msgid "Alternate content source ${name} created"
|
612
|
+
msgstr ""
|
613
|
+
|
614
|
+
msgid "Alternate content source ID"
|
615
|
+
msgstr ""
|
616
|
+
|
617
|
+
msgid "Alternate content source deleted"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
msgid "Alternate content sources"
|
582
621
|
msgstr ""
|
583
622
|
|
584
623
|
msgid "Always Use Latest (currently %{version})"
|
@@ -590,6 +629,9 @@ msgstr ""
|
|
590
629
|
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."
|
591
630
|
msgstr ""
|
592
631
|
|
632
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
633
|
+
msgstr ""
|
634
|
+
|
593
635
|
msgid "An environment is missing a prior"
|
594
636
|
msgstr ""
|
595
637
|
|
@@ -731,6 +773,9 @@ msgstr ""
|
|
731
773
|
msgid "Associated location IDs"
|
732
774
|
msgstr ""
|
733
775
|
|
776
|
+
msgid "Associated version"
|
777
|
+
msgstr ""
|
778
|
+
|
734
779
|
msgid "Associations"
|
735
780
|
msgstr ""
|
736
781
|
|
@@ -797,6 +842,9 @@ msgstr ""
|
|
797
842
|
msgid "Backend System Status"
|
798
843
|
msgstr ""
|
799
844
|
|
845
|
+
msgid "Base URL for finding alternate content"
|
846
|
+
msgstr ""
|
847
|
+
|
800
848
|
msgid "Base URL to perform repo discovery on"
|
801
849
|
msgstr ""
|
802
850
|
|
@@ -806,9 +854,21 @@ msgstr ""
|
|
806
854
|
msgid "Basearch to enable"
|
807
855
|
msgstr ""
|
808
856
|
|
857
|
+
msgid "Basic authentication password"
|
858
|
+
msgstr ""
|
859
|
+
|
860
|
+
msgid "Basic authentication username"
|
861
|
+
msgstr ""
|
862
|
+
|
809
863
|
msgid "Batch size to sync repositories in."
|
810
864
|
msgstr ""
|
811
865
|
|
866
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
867
|
+
msgstr ""
|
868
|
+
|
869
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
870
|
+
msgstr ""
|
871
|
+
|
812
872
|
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."
|
813
873
|
msgstr ""
|
814
874
|
|
@@ -845,6 +905,9 @@ msgstr ""
|
|
845
905
|
msgid "Bulk generate applicability for hosts"
|
846
906
|
msgstr ""
|
847
907
|
|
908
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
909
|
+
msgstr ""
|
910
|
+
|
848
911
|
msgid "CDN Configuration"
|
849
912
|
msgstr ""
|
850
913
|
|
@@ -857,6 +920,12 @@ msgstr ""
|
|
857
920
|
msgid "CDN SSL version"
|
858
921
|
msgstr ""
|
859
922
|
|
923
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
924
|
+
msgstr ""
|
925
|
+
|
926
|
+
msgid "CDN configuration type. One of %s."
|
927
|
+
msgstr ""
|
928
|
+
|
860
929
|
msgid "CDN loading error: %s not found"
|
861
930
|
msgstr ""
|
862
931
|
|
@@ -878,7 +947,10 @@ msgstr ""
|
|
878
947
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
879
948
|
msgstr ""
|
880
949
|
|
881
|
-
msgid "Calculate errata host status based only on errata in a
|
950
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
951
|
+
msgstr ""
|
952
|
+
|
953
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
882
954
|
msgstr ""
|
883
955
|
|
884
956
|
msgid "Can not add product %s because it is disabled."
|
@@ -1001,6 +1073,9 @@ msgstr ""
|
|
1001
1073
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1002
1074
|
msgstr ""
|
1003
1075
|
|
1076
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1077
|
+
msgstr ""
|
1078
|
+
|
1004
1079
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1005
1080
|
msgstr ""
|
1006
1081
|
|
@@ -1052,6 +1127,18 @@ msgstr ""
|
|
1052
1127
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1053
1128
|
msgstr ""
|
1054
1129
|
|
1130
|
+
msgid "Capacity"
|
1131
|
+
msgstr ""
|
1132
|
+
|
1133
|
+
msgid "Change Content Source"
|
1134
|
+
msgstr ""
|
1135
|
+
|
1136
|
+
msgid "Change content source"
|
1137
|
+
msgstr ""
|
1138
|
+
|
1139
|
+
msgid "Change host content source"
|
1140
|
+
msgstr ""
|
1141
|
+
|
1055
1142
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1056
1143
|
msgstr ""
|
1057
1144
|
|
@@ -1064,6 +1151,9 @@ msgstr ""
|
|
1064
1151
|
msgid "Checksum"
|
1065
1152
|
msgstr ""
|
1066
1153
|
|
1154
|
+
msgid "Checksum is a required parameter."
|
1155
|
+
msgstr ""
|
1156
|
+
|
1067
1157
|
msgid "Checksum of file to upload"
|
1068
1158
|
msgstr ""
|
1069
1159
|
|
@@ -1079,6 +1169,9 @@ msgstr ""
|
|
1079
1169
|
msgid "Click here to go to the tasks page for the task."
|
1080
1170
|
msgstr ""
|
1081
1171
|
|
1172
|
+
msgid "Click {update} below to save changes."
|
1173
|
+
msgstr ""
|
1174
|
+
|
1082
1175
|
msgid "Clone"
|
1083
1176
|
msgstr ""
|
1084
1177
|
|
@@ -1094,7 +1187,13 @@ msgstr ""
|
|
1094
1187
|
msgid "Combined Profile Update for %s"
|
1095
1188
|
msgstr ""
|
1096
1189
|
|
1097
|
-
msgid "Comma-separated list of tags to
|
1190
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1191
|
+
msgstr ""
|
1192
|
+
|
1193
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1194
|
+
msgstr ""
|
1195
|
+
|
1196
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1098
1197
|
msgstr ""
|
1099
1198
|
|
1100
1199
|
msgid "Component"
|
@@ -1181,6 +1280,9 @@ msgstr ""
|
|
1181
1280
|
msgid "Container manifests"
|
1182
1281
|
msgstr ""
|
1183
1282
|
|
1283
|
+
msgid "Container tags"
|
1284
|
+
msgstr ""
|
1285
|
+
|
1184
1286
|
msgid "Content"
|
1185
1287
|
msgstr ""
|
1186
1288
|
|
@@ -1193,7 +1295,7 @@ msgstr ""
|
|
1193
1295
|
msgid "Content Credential numeric identifier"
|
1194
1296
|
msgstr ""
|
1195
1297
|
|
1196
|
-
msgid "Content Credential to use for SSL CA"
|
1298
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1197
1299
|
msgstr ""
|
1198
1300
|
|
1199
1301
|
msgid "Content Credentials"
|
@@ -1226,9 +1328,6 @@ msgstr ""
|
|
1226
1328
|
msgid "Content View %{view}: Versions: %{versions}"
|
1227
1329
|
msgstr ""
|
1228
1330
|
|
1229
|
-
msgid "Content View Dependency Solving Default"
|
1230
|
-
msgstr ""
|
1231
|
-
|
1232
1331
|
msgid "Content View Details"
|
1233
1332
|
msgstr ""
|
1234
1333
|
|
@@ -1241,9 +1340,6 @@ msgstr ""
|
|
1241
1340
|
msgid "Content View ID"
|
1242
1341
|
msgstr ""
|
1243
1342
|
|
1244
|
-
msgid "Content View Label"
|
1245
|
-
msgstr ""
|
1246
|
-
|
1247
1343
|
msgid "Content View Name"
|
1248
1344
|
msgstr ""
|
1249
1345
|
|
@@ -1268,6 +1364,9 @@ msgstr ""
|
|
1268
1364
|
msgid "Content View id"
|
1269
1365
|
msgstr ""
|
1270
1366
|
|
1367
|
+
msgid "Content View label not provided."
|
1368
|
+
msgstr ""
|
1369
|
+
|
1271
1370
|
msgid "Content Views"
|
1272
1371
|
msgstr ""
|
1273
1372
|
|
@@ -1280,15 +1379,21 @@ msgstr ""
|
|
1280
1379
|
msgid "Content hosts"
|
1281
1380
|
msgstr ""
|
1282
1381
|
|
1283
|
-
msgid "Content imported
|
1382
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1284
1383
|
msgstr ""
|
1285
1384
|
|
1286
1385
|
msgid "Content not uploaded to pulp"
|
1287
1386
|
msgstr ""
|
1288
1387
|
|
1388
|
+
msgid "Content override search parameters"
|
1389
|
+
msgstr ""
|
1390
|
+
|
1289
1391
|
msgid "Content source ID"
|
1290
1392
|
msgstr ""
|
1291
1393
|
|
1394
|
+
msgid "Content source successfully updated."
|
1395
|
+
msgstr ""
|
1396
|
+
|
1292
1397
|
msgid "Content source was not set for host '%{host}'"
|
1293
1398
|
msgstr ""
|
1294
1399
|
|
@@ -1364,6 +1469,9 @@ msgstr ""
|
|
1364
1469
|
msgid "Contract Number"
|
1365
1470
|
msgstr ""
|
1366
1471
|
|
1472
|
+
msgid "Copied to clipboard"
|
1473
|
+
msgstr ""
|
1474
|
+
|
1367
1475
|
msgid "Copy"
|
1368
1476
|
msgstr ""
|
1369
1477
|
|
@@ -1373,6 +1481,9 @@ msgstr ""
|
|
1373
1481
|
msgid "Copy content view"
|
1374
1482
|
msgstr ""
|
1375
1483
|
|
1484
|
+
msgid "Copy to clipboard"
|
1485
|
+
msgstr ""
|
1486
|
+
|
1376
1487
|
msgid "Copy version units to library"
|
1377
1488
|
msgstr ""
|
1378
1489
|
|
@@ -1484,6 +1595,9 @@ msgstr ""
|
|
1484
1595
|
msgid "Couldn't find repository '%s'"
|
1485
1596
|
msgstr ""
|
1486
1597
|
|
1598
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1599
|
+
msgstr ""
|
1600
|
+
|
1487
1601
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1488
1602
|
msgstr ""
|
1489
1603
|
|
@@ -1496,6 +1610,9 @@ msgstr ""
|
|
1496
1610
|
msgid "Create"
|
1497
1611
|
msgstr ""
|
1498
1612
|
|
1613
|
+
msgid "Create Alternate Content Source"
|
1614
|
+
msgstr ""
|
1615
|
+
|
1499
1616
|
msgid "Create Export History"
|
1500
1617
|
msgstr ""
|
1501
1618
|
|
@@ -1532,6 +1649,9 @@ msgstr ""
|
|
1532
1649
|
msgid "Create a sync plan"
|
1533
1650
|
msgstr ""
|
1534
1651
|
|
1652
|
+
msgid "Create an ACS"
|
1653
|
+
msgstr ""
|
1654
|
+
|
1535
1655
|
msgid "Create an activation key"
|
1536
1656
|
msgstr ""
|
1537
1657
|
|
@@ -1577,6 +1697,9 @@ msgstr ""
|
|
1577
1697
|
msgid "Custom repositories cannot be disabled."
|
1578
1698
|
msgstr ""
|
1579
1699
|
|
1700
|
+
msgid "Customize with Rex"
|
1701
|
+
msgstr ""
|
1702
|
+
|
1580
1703
|
msgid "Database connection"
|
1581
1704
|
msgstr ""
|
1582
1705
|
|
@@ -1613,13 +1736,10 @@ msgstr ""
|
|
1613
1736
|
msgid "Default Custom Repository download policy"
|
1614
1737
|
msgstr ""
|
1615
1738
|
|
1616
|
-
msgid "Default HTTP Proxy
|
1617
|
-
msgstr ""
|
1618
|
-
|
1619
|
-
msgid "Default HTTP proxy"
|
1739
|
+
msgid "Default HTTP Proxy"
|
1620
1740
|
msgstr ""
|
1621
1741
|
|
1622
|
-
msgid "Default
|
1742
|
+
msgid "Default HTTP proxy for syncing content"
|
1623
1743
|
msgstr ""
|
1624
1744
|
|
1625
1745
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1664,6 +1784,9 @@ msgstr ""
|
|
1664
1784
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1665
1785
|
msgstr ""
|
1666
1786
|
|
1787
|
+
msgid "Default location for subscribed hosts"
|
1788
|
+
msgstr ""
|
1789
|
+
|
1667
1790
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1668
1791
|
msgstr ""
|
1669
1792
|
|
@@ -1766,6 +1889,9 @@ msgstr ""
|
|
1766
1889
|
msgid "Delete version"
|
1767
1890
|
msgstr ""
|
1768
1891
|
|
1892
|
+
msgid "Delete versions"
|
1893
|
+
msgstr ""
|
1894
|
+
|
1769
1895
|
msgid "Deleted consumer '%s'"
|
1770
1896
|
msgstr ""
|
1771
1897
|
|
@@ -1781,9 +1907,18 @@ msgstr ""
|
|
1781
1907
|
msgid "Deleting manifest in '%{subject}' failed."
|
1782
1908
|
msgstr ""
|
1783
1909
|
|
1910
|
+
msgid "Deleting version {versionList}"
|
1911
|
+
msgstr ""
|
1912
|
+
|
1913
|
+
msgid "Deleting versions: {versionList}"
|
1914
|
+
msgstr ""
|
1915
|
+
|
1784
1916
|
msgid "Description"
|
1785
1917
|
msgstr ""
|
1786
1918
|
|
1919
|
+
msgid "Description for the alternate content source"
|
1920
|
+
msgstr ""
|
1921
|
+
|
1787
1922
|
msgid "Description for the content view"
|
1788
1923
|
msgstr ""
|
1789
1924
|
|
@@ -1805,6 +1940,9 @@ msgstr ""
|
|
1805
1940
|
msgid "Destroy"
|
1806
1941
|
msgstr ""
|
1807
1942
|
|
1943
|
+
msgid "Destroy Alternate Content Source"
|
1944
|
+
msgstr ""
|
1945
|
+
|
1808
1946
|
msgid "Destroy Content Host"
|
1809
1947
|
msgstr ""
|
1810
1948
|
|
@@ -1829,6 +1967,9 @@ msgstr ""
|
|
1829
1967
|
msgid "Destroy an activation key"
|
1830
1968
|
msgstr ""
|
1831
1969
|
|
1970
|
+
msgid "Destroy an alternate content source"
|
1971
|
+
msgstr ""
|
1972
|
+
|
1832
1973
|
msgid "Destroy an environment"
|
1833
1974
|
msgstr ""
|
1834
1975
|
|
@@ -1868,6 +2009,9 @@ msgstr ""
|
|
1868
2009
|
msgid "Disable a repository from the set"
|
1869
2010
|
msgstr ""
|
1870
2011
|
|
2012
|
+
msgid "Disable module stream"
|
2013
|
+
msgstr ""
|
2014
|
+
|
1871
2015
|
msgid "Disable simple content access for a manifest"
|
1872
2016
|
msgstr ""
|
1873
2017
|
|
@@ -1877,9 +2021,6 @@ msgstr ""
|
|
1877
2021
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1878
2022
|
msgstr ""
|
1879
2023
|
|
1880
|
-
msgid "Disconnected mode"
|
1881
|
-
msgstr ""
|
1882
|
-
|
1883
2024
|
msgid "Discover"
|
1884
2025
|
msgstr ""
|
1885
2026
|
|
@@ -1895,9 +2036,6 @@ msgstr ""
|
|
1895
2036
|
msgid "Do not wait for the update action to finish. Default: true"
|
1896
2037
|
msgstr ""
|
1897
2038
|
|
1898
|
-
msgid "Docker Tags"
|
1899
|
-
msgstr ""
|
1900
|
-
|
1901
2039
|
msgid "Domain IDs"
|
1902
2040
|
msgstr ""
|
1903
2041
|
|
@@ -1907,6 +2045,9 @@ msgstr ""
|
|
1907
2045
|
msgid "Download a debug certificate"
|
1908
2046
|
msgstr ""
|
1909
2047
|
|
2048
|
+
msgid "Download rate limit"
|
2049
|
+
msgstr ""
|
2050
|
+
|
1910
2051
|
msgid "Duplicate artifact detected"
|
1911
2052
|
msgstr ""
|
1912
2053
|
|
@@ -1922,6 +2063,9 @@ msgstr ""
|
|
1922
2063
|
msgid "Edit RPM rule"
|
1923
2064
|
msgstr ""
|
1924
2065
|
|
2066
|
+
msgid "Edit content view assignment"
|
2067
|
+
msgstr ""
|
2068
|
+
|
1925
2069
|
msgid "Edit filter rule"
|
1926
2070
|
msgstr ""
|
1927
2071
|
|
@@ -1985,6 +2129,9 @@ msgstr ""
|
|
1985
2129
|
msgid "End Date"
|
1986
2130
|
msgstr ""
|
1987
2131
|
|
2132
|
+
msgid "End date"
|
2133
|
+
msgstr ""
|
2134
|
+
|
1988
2135
|
msgid "Ends"
|
1989
2136
|
msgstr ""
|
1990
2137
|
|
@@ -1994,6 +2141,9 @@ msgstr ""
|
|
1994
2141
|
msgid "Enter a name"
|
1995
2142
|
msgstr ""
|
1996
2143
|
|
2144
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2145
|
+
msgstr ""
|
2146
|
+
|
1997
2147
|
msgid "Entitlements"
|
1998
2148
|
msgstr ""
|
1999
2149
|
|
@@ -2012,6 +2162,9 @@ msgstr ""
|
|
2012
2162
|
msgid "Environments"
|
2013
2163
|
msgstr ""
|
2014
2164
|
|
2165
|
+
msgid "Epoch"
|
2166
|
+
msgstr ""
|
2167
|
+
|
2015
2168
|
msgid "Equal to"
|
2016
2169
|
msgstr ""
|
2017
2170
|
|
@@ -2069,6 +2222,9 @@ msgstr ""
|
|
2069
2222
|
msgid "Error connecting. Got: %s"
|
2070
2223
|
msgstr ""
|
2071
2224
|
|
2225
|
+
msgid "Error loading content views"
|
2226
|
+
msgstr ""
|
2227
|
+
|
2072
2228
|
msgid "Error refreshing status for %s: "
|
2073
2229
|
msgstr ""
|
2074
2230
|
|
@@ -2117,6 +2273,12 @@ msgstr ""
|
|
2117
2273
|
msgid "Export Library"
|
2118
2274
|
msgstr ""
|
2119
2275
|
|
2276
|
+
msgid "Export Repository"
|
2277
|
+
msgstr ""
|
2278
|
+
|
2279
|
+
msgid "Export Sync"
|
2280
|
+
msgstr ""
|
2281
|
+
|
2120
2282
|
msgid "Export Types"
|
2121
2283
|
msgstr ""
|
2122
2284
|
|
@@ -2141,6 +2303,9 @@ msgstr ""
|
|
2141
2303
|
msgid "Failed to delete %{host}: %{errors}"
|
2142
2304
|
msgstr ""
|
2143
2305
|
|
2306
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2307
|
+
msgstr ""
|
2308
|
+
|
2144
2309
|
msgid "Failed to download %s package."
|
2145
2310
|
msgid_plural "Failed to download %s packages."
|
2146
2311
|
msgstr[0] ""
|
@@ -2328,6 +2493,15 @@ msgstr ""
|
|
2328
2493
|
msgid "Generate repository applicability"
|
2329
2494
|
msgstr ""
|
2330
2495
|
|
2496
|
+
msgid "Generated"
|
2497
|
+
msgstr ""
|
2498
|
+
|
2499
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2500
|
+
msgstr ""
|
2501
|
+
|
2502
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2503
|
+
msgstr ""
|
2504
|
+
|
2331
2505
|
msgid "Get all content available, not just that provided by subscriptions"
|
2332
2506
|
msgstr ""
|
2333
2507
|
|
@@ -2364,6 +2538,9 @@ msgstr ""
|
|
2364
2538
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2365
2539
|
msgstr ""
|
2366
2540
|
|
2541
|
+
msgid "Go to job details"
|
2542
|
+
msgstr ""
|
2543
|
+
|
2367
2544
|
msgid "Go to task page"
|
2368
2545
|
msgstr ""
|
2369
2546
|
|
@@ -2388,6 +2565,12 @@ msgstr ""
|
|
2388
2565
|
msgid "Helper"
|
2389
2566
|
msgstr ""
|
2390
2567
|
|
2568
|
+
msgid "Hide affected activation keys"
|
2569
|
+
msgstr ""
|
2570
|
+
|
2571
|
+
msgid "Hide affected hosts"
|
2572
|
+
msgstr ""
|
2573
|
+
|
2391
2574
|
msgid "Hide description"
|
2392
2575
|
msgstr ""
|
2393
2576
|
|
@@ -2439,15 +2622,27 @@ msgstr ""
|
|
2439
2622
|
msgid "Host Tasks Workers Pool Size"
|
2440
2623
|
msgstr ""
|
2441
2624
|
|
2625
|
+
msgid "Host collection"
|
2626
|
+
msgstr ""
|
2627
|
+
|
2442
2628
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2443
2629
|
msgstr ""
|
2444
2630
|
|
2445
2631
|
msgid "Host collection is empty."
|
2446
2632
|
msgstr ""
|
2447
2633
|
|
2634
|
+
msgid "Host collections"
|
2635
|
+
msgstr ""
|
2636
|
+
|
2637
|
+
msgid "Host collections updated"
|
2638
|
+
msgstr ""
|
2639
|
+
|
2448
2640
|
msgid "Host content and subscription details"
|
2449
2641
|
msgstr ""
|
2450
2642
|
|
2643
|
+
msgid "Host content view and environment updated"
|
2644
|
+
msgstr ""
|
2645
|
+
|
2451
2646
|
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."
|
2452
2647
|
msgstr ""
|
2453
2648
|
|
@@ -2499,7 +2694,7 @@ msgstr ""
|
|
2499
2694
|
msgid "Hosts: "
|
2500
2695
|
msgstr ""
|
2501
2696
|
|
2502
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2697
|
+
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."
|
2503
2698
|
msgstr ""
|
2504
2699
|
|
2505
2700
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2562,12 +2757,18 @@ msgstr ""
|
|
2562
2757
|
msgid "ID of the repository set to enable"
|
2563
2758
|
msgstr ""
|
2564
2759
|
|
2760
|
+
msgid "ID of the repository within the set to disable"
|
2761
|
+
msgstr ""
|
2762
|
+
|
2565
2763
|
msgid "ID of the sync plan"
|
2566
2764
|
msgstr ""
|
2567
2765
|
|
2568
2766
|
msgid "ID: %s doesn't exist "
|
2569
2767
|
msgstr ""
|
2570
2768
|
|
2769
|
+
msgid "Id"
|
2770
|
+
msgstr ""
|
2771
|
+
|
2571
2772
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2572
2773
|
msgstr ""
|
2573
2774
|
|
@@ -2640,16 +2841,22 @@ msgstr ""
|
|
2640
2841
|
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"
|
2641
2842
|
msgstr ""
|
2642
2843
|
|
2844
|
+
msgid "Ids of smart proxies to associate"
|
2845
|
+
msgstr ""
|
2846
|
+
|
2643
2847
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2644
2848
|
msgstr ""
|
2645
2849
|
|
2646
|
-
msgid "If
|
2850
|
+
msgid "If SSL should be verified for the upstream URL"
|
2851
|
+
msgstr ""
|
2852
|
+
|
2853
|
+
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."
|
2647
2854
|
msgstr ""
|
2648
2855
|
|
2649
2856
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2650
2857
|
msgstr ""
|
2651
2858
|
|
2652
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2859
|
+
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."
|
2653
2860
|
msgstr ""
|
2654
2861
|
|
2655
2862
|
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"
|
@@ -2658,6 +2865,9 @@ msgstr ""
|
|
2658
2865
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2659
2866
|
msgstr ""
|
2660
2867
|
|
2868
|
+
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."
|
2869
|
+
msgstr ""
|
2870
|
+
|
2661
2871
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2662
2872
|
msgstr ""
|
2663
2873
|
|
@@ -2673,6 +2883,9 @@ msgstr ""
|
|
2673
2883
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2674
2884
|
msgstr ""
|
2675
2885
|
|
2886
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2887
|
+
msgstr ""
|
2888
|
+
|
2676
2889
|
msgid "Ignorable content can be only set for Yum repositories."
|
2677
2890
|
msgstr ""
|
2678
2891
|
|
@@ -2709,6 +2922,9 @@ msgstr ""
|
|
2709
2922
|
msgid "Import Puppet classes"
|
2710
2923
|
msgstr ""
|
2711
2924
|
|
2925
|
+
msgid "Import Repository"
|
2926
|
+
msgstr ""
|
2927
|
+
|
2712
2928
|
msgid "Import Types"
|
2713
2929
|
msgstr ""
|
2714
2930
|
|
@@ -2730,12 +2946,18 @@ msgstr ""
|
|
2730
2946
|
msgid "Import a content view version to the library"
|
2731
2947
|
msgstr ""
|
2732
2948
|
|
2949
|
+
msgid "Import a repository"
|
2950
|
+
msgstr ""
|
2951
|
+
|
2733
2952
|
msgid "Import facts"
|
2734
2953
|
msgstr ""
|
2735
2954
|
|
2736
2955
|
msgid "Import only"
|
2737
2956
|
msgstr ""
|
2738
2957
|
|
2958
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2959
|
+
msgstr ""
|
2960
|
+
|
2739
2961
|
msgid "Import uploads into a repository"
|
2740
2962
|
msgstr ""
|
2741
2963
|
|
@@ -2745,6 +2967,9 @@ msgstr ""
|
|
2745
2967
|
msgid "Import-only content views can not be published directly"
|
2746
2968
|
msgstr ""
|
2747
2969
|
|
2970
|
+
msgid "Import/Export"
|
2971
|
+
msgstr ""
|
2972
|
+
|
2748
2973
|
msgid "Important"
|
2749
2974
|
msgstr ""
|
2750
2975
|
|
@@ -2766,6 +2991,9 @@ msgstr ""
|
|
2766
2991
|
msgid "Include all RPMs with no errata."
|
2767
2992
|
msgstr ""
|
2768
2993
|
|
2994
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2995
|
+
msgstr ""
|
2996
|
+
|
2769
2997
|
msgid "Include filter"
|
2770
2998
|
msgstr ""
|
2771
2999
|
|
@@ -2826,6 +3054,9 @@ msgstr ""
|
|
2826
3054
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2827
3055
|
msgstr ""
|
2828
3056
|
|
3057
|
+
msgid "Install"
|
3058
|
+
msgstr ""
|
3059
|
+
|
2829
3060
|
msgid "Install Applicable Errata"
|
2830
3061
|
msgstr ""
|
2831
3062
|
|
@@ -2835,6 +3066,9 @@ msgstr ""
|
|
2835
3066
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2836
3067
|
msgstr ""
|
2837
3068
|
|
3069
|
+
msgid "Install errata using scoped search query"
|
3070
|
+
msgstr ""
|
3071
|
+
|
2838
3072
|
msgid "Install errata via Katello interface"
|
2839
3073
|
msgstr ""
|
2840
3074
|
|
@@ -2859,19 +3093,31 @@ msgstr ""
|
|
2859
3093
|
msgid "Install package via Katello interface"
|
2860
3094
|
msgstr ""
|
2861
3095
|
|
3096
|
+
msgid "Install packages"
|
3097
|
+
msgstr ""
|
3098
|
+
|
2862
3099
|
msgid "Install packages remotely using katello-agent. %s"
|
2863
3100
|
msgstr ""
|
2864
3101
|
|
2865
|
-
msgid "
|
3102
|
+
msgid "Install packages via Katello interface"
|
3103
|
+
msgstr ""
|
3104
|
+
|
3105
|
+
msgid "Install via customized remote execution"
|
3106
|
+
msgstr ""
|
3107
|
+
|
3108
|
+
msgid "Install via katello-agent"
|
3109
|
+
msgstr ""
|
3110
|
+
|
3111
|
+
msgid "Install via remote execution"
|
2866
3112
|
msgstr ""
|
2867
3113
|
|
2868
|
-
msgid "Installable
|
3114
|
+
msgid "Installable"
|
2869
3115
|
msgstr ""
|
2870
3116
|
|
2871
|
-
msgid "Installable errata
|
3117
|
+
msgid "Installable errata"
|
2872
3118
|
msgstr ""
|
2873
3119
|
|
2874
|
-
msgid "Installable errata
|
3120
|
+
msgid "Installable errata from content view"
|
2875
3121
|
msgstr ""
|
2876
3122
|
|
2877
3123
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2883,10 +3129,22 @@ msgstr ""
|
|
2883
3129
|
msgid "Installation of package(s) requested: %{packages}"
|
2884
3130
|
msgstr ""
|
2885
3131
|
|
3132
|
+
msgid "Installation status"
|
3133
|
+
msgstr ""
|
3134
|
+
|
2886
3135
|
msgid "Installed Packages"
|
2887
3136
|
msgstr ""
|
2888
3137
|
|
2889
|
-
msgid "Installed
|
3138
|
+
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."
|
3139
|
+
msgstr ""
|
3140
|
+
|
3141
|
+
msgid "Installed products"
|
3142
|
+
msgstr ""
|
3143
|
+
|
3144
|
+
msgid "Installed profile"
|
3145
|
+
msgstr ""
|
3146
|
+
|
3147
|
+
msgid "Installed version"
|
2890
3148
|
msgstr ""
|
2891
3149
|
|
2892
3150
|
msgid "Installing Erratum..."
|
@@ -2967,6 +3225,9 @@ msgstr ""
|
|
2967
3225
|
msgid "Invalid params provided - date_type must be one of %s"
|
2968
3226
|
msgstr ""
|
2969
3227
|
|
3228
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3229
|
+
msgstr ""
|
3230
|
+
|
2970
3231
|
msgid "Invalid value specified for Container Image repositories."
|
2971
3232
|
msgstr ""
|
2972
3233
|
|
@@ -2979,6 +3240,12 @@ msgstr ""
|
|
2979
3240
|
msgid "Issued"
|
2980
3241
|
msgstr ""
|
2981
3242
|
|
3243
|
+
msgid "Issued from"
|
3244
|
+
msgstr ""
|
3245
|
+
|
3246
|
+
msgid "Job ${description} has started."
|
3247
|
+
msgstr ""
|
3248
|
+
|
2982
3249
|
msgid "Katello ID of local pool to update"
|
2983
3250
|
msgstr ""
|
2984
3251
|
|
@@ -2991,6 +3258,12 @@ msgstr ""
|
|
2991
3258
|
msgid "Katello: Install Package Group"
|
2992
3259
|
msgstr ""
|
2993
3260
|
|
3261
|
+
msgid "Katello: Install errata by search query"
|
3262
|
+
msgstr ""
|
3263
|
+
|
3264
|
+
msgid "Katello: Install packages by search query"
|
3265
|
+
msgstr ""
|
3266
|
+
|
2994
3267
|
msgid "Katello: Module Stream Actions"
|
2995
3268
|
msgstr ""
|
2996
3269
|
|
@@ -3000,6 +3273,9 @@ msgstr ""
|
|
3000
3273
|
msgid "Katello: Remove Package Group"
|
3001
3274
|
msgstr ""
|
3002
3275
|
|
3276
|
+
msgid "Katello: Remove Packages by search query"
|
3277
|
+
msgstr ""
|
3278
|
+
|
3003
3279
|
msgid "Katello: Resolve Traces"
|
3004
3280
|
msgstr ""
|
3005
3281
|
|
@@ -3012,6 +3288,9 @@ msgstr ""
|
|
3012
3288
|
msgid "Katello: Update Package Group"
|
3013
3289
|
msgstr ""
|
3014
3290
|
|
3291
|
+
msgid "Katello: Update Packages by search query"
|
3292
|
+
msgstr ""
|
3293
|
+
|
3015
3294
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3016
3295
|
msgstr ""
|
3017
3296
|
|
@@ -3033,6 +3312,9 @@ msgstr ""
|
|
3033
3312
|
msgid "Label of the content"
|
3034
3313
|
msgstr ""
|
3035
3314
|
|
3315
|
+
msgid "Label of the content view"
|
3316
|
+
msgstr ""
|
3317
|
+
|
3036
3318
|
msgid "Last published"
|
3037
3319
|
msgstr ""
|
3038
3320
|
|
@@ -3051,13 +3333,10 @@ msgstr ""
|
|
3051
3333
|
msgid "Learn more about adding Subscription Manifests"
|
3052
3334
|
msgstr ""
|
3053
3335
|
|
3054
|
-
msgid "
|
3055
|
-
msgstr ""
|
3056
|
-
|
3057
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3336
|
+
msgid "Less than"
|
3058
3337
|
msgstr ""
|
3059
3338
|
|
3060
|
-
msgid "
|
3339
|
+
msgid "Library"
|
3061
3340
|
msgstr ""
|
3062
3341
|
|
3063
3342
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3102,9 +3381,15 @@ msgstr ""
|
|
3102
3381
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3103
3382
|
msgstr ""
|
3104
3383
|
|
3384
|
+
msgid "Lifecycle environment: {lce}"
|
3385
|
+
msgstr ""
|
3386
|
+
|
3105
3387
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3106
3388
|
msgstr ""
|
3107
3389
|
|
3390
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3391
|
+
msgstr ""
|
3392
|
+
|
3108
3393
|
msgid "Limit content to just that available in the activation key's content view version"
|
3109
3394
|
msgstr ""
|
3110
3395
|
|
@@ -3213,6 +3498,9 @@ msgstr ""
|
|
3213
3498
|
msgid "List of Products for sync plan"
|
3214
3499
|
msgstr ""
|
3215
3500
|
|
3501
|
+
msgid "List of alternate_content_sources"
|
3502
|
+
msgstr ""
|
3503
|
+
|
3216
3504
|
msgid "List of component content view version ids for composite views"
|
3217
3505
|
msgstr ""
|
3218
3506
|
|
@@ -3309,6 +3597,12 @@ msgstr ""
|
|
3309
3597
|
msgid "List of subscription products in an activation key"
|
3310
3598
|
msgstr ""
|
3311
3599
|
|
3600
|
+
msgid "List of versions to exclude and not run an action on"
|
3601
|
+
msgstr ""
|
3602
|
+
|
3603
|
+
msgid "List of versions to perform an action on"
|
3604
|
+
msgstr ""
|
3605
|
+
|
3312
3606
|
msgid "List organization subscriptions"
|
3313
3607
|
msgstr ""
|
3314
3608
|
|
@@ -3354,6 +3648,12 @@ msgstr ""
|
|
3354
3648
|
msgid "Loading versions"
|
3355
3649
|
msgstr ""
|
3356
3650
|
|
3651
|
+
msgid "Loading..."
|
3652
|
+
msgstr ""
|
3653
|
+
|
3654
|
+
msgid "Low"
|
3655
|
+
msgstr ""
|
3656
|
+
|
3357
3657
|
msgid "Make copy of a content view"
|
3358
3658
|
msgstr ""
|
3359
3659
|
|
@@ -3411,6 +3711,9 @@ msgstr ""
|
|
3411
3711
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3412
3712
|
msgstr ""
|
3413
3713
|
|
3714
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3715
|
+
msgstr ""
|
3716
|
+
|
3414
3717
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3415
3718
|
msgstr ""
|
3416
3719
|
|
@@ -3477,6 +3780,9 @@ msgstr ""
|
|
3477
3780
|
msgid "Module streams"
|
3478
3781
|
msgstr ""
|
3479
3782
|
|
3783
|
+
msgid "Module streams will appear here when available."
|
3784
|
+
msgstr ""
|
3785
|
+
|
3480
3786
|
msgid "Multi-entitlement"
|
3481
3787
|
msgstr ""
|
3482
3788
|
|
@@ -3502,15 +3808,24 @@ msgid ""
|
|
3502
3808
|
" %{repos}"
|
3503
3809
|
msgstr ""
|
3504
3810
|
|
3811
|
+
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."
|
3812
|
+
msgstr ""
|
3813
|
+
|
3505
3814
|
msgid "Name"
|
3506
3815
|
msgstr ""
|
3507
3816
|
|
3817
|
+
msgid "Name is a required parameter."
|
3818
|
+
msgstr ""
|
3819
|
+
|
3508
3820
|
msgid "Name of new activation key"
|
3509
3821
|
msgstr ""
|
3510
3822
|
|
3511
3823
|
msgid "Name of the Content Credential"
|
3512
3824
|
msgstr ""
|
3513
3825
|
|
3826
|
+
msgid "Name of the alternate content source"
|
3827
|
+
msgstr ""
|
3828
|
+
|
3514
3829
|
msgid "Name of the content view"
|
3515
3830
|
msgstr ""
|
3516
3831
|
|
@@ -3532,6 +3847,9 @@ msgstr ""
|
|
3532
3847
|
msgid "Nest"
|
3533
3848
|
msgstr ""
|
3534
3849
|
|
3850
|
+
msgid "Network Sync"
|
3851
|
+
msgstr ""
|
3852
|
+
|
3535
3853
|
msgid "Never Synced"
|
3536
3854
|
msgstr ""
|
3537
3855
|
|
@@ -3598,13 +3916,22 @@ msgstr ""
|
|
3598
3916
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3599
3917
|
msgstr ""
|
3600
3918
|
|
3601
|
-
msgid "No applicable errata"
|
3919
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3602
3920
|
msgstr ""
|
3603
3921
|
|
3604
|
-
msgid "No
|
3922
|
+
msgid "No action required"
|
3605
3923
|
msgstr ""
|
3606
3924
|
|
3607
|
-
msgid "No
|
3925
|
+
msgid "No applicable errata"
|
3926
|
+
msgstr ""
|
3927
|
+
|
3928
|
+
msgid "No applicable errata for %s, skipping"
|
3929
|
+
msgstr ""
|
3930
|
+
|
3931
|
+
msgid "No applications to restart"
|
3932
|
+
msgstr ""
|
3933
|
+
|
3934
|
+
msgid "No artifacts to show"
|
3608
3935
|
msgstr ""
|
3609
3936
|
|
3610
3937
|
msgid "No content"
|
@@ -3625,6 +3952,9 @@ msgstr ""
|
|
3625
3952
|
msgid "No content views available"
|
3626
3953
|
msgstr ""
|
3627
3954
|
|
3955
|
+
msgid "No content views available for the selected environment"
|
3956
|
+
msgstr ""
|
3957
|
+
|
3628
3958
|
msgid "No content views belong to ${label}"
|
3629
3959
|
msgstr ""
|
3630
3960
|
|
@@ -3634,6 +3964,9 @@ msgstr ""
|
|
3634
3964
|
msgid "No description"
|
3635
3965
|
msgstr ""
|
3636
3966
|
|
3967
|
+
msgid "No description provided"
|
3968
|
+
msgstr ""
|
3969
|
+
|
3637
3970
|
msgid "No enabled repositories match your search criteria."
|
3638
3971
|
msgstr ""
|
3639
3972
|
|
@@ -3658,6 +3991,9 @@ msgstr ""
|
|
3658
3991
|
msgid "No file uploaded"
|
3659
3992
|
msgstr ""
|
3660
3993
|
|
3994
|
+
msgid "No host collections"
|
3995
|
+
msgstr ""
|
3996
|
+
|
3661
3997
|
msgid "No host collections found."
|
3662
3998
|
msgstr ""
|
3663
3999
|
|
@@ -3667,6 +4003,9 @@ msgstr ""
|
|
3667
4003
|
msgid "No hosts registered with subscription-manager found in selection."
|
3668
4004
|
msgstr ""
|
3669
4005
|
|
4006
|
+
msgid "No hosts with content source found!"
|
4007
|
+
msgstr ""
|
4008
|
+
|
3670
4009
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3671
4010
|
msgstr ""
|
3672
4011
|
|
@@ -3691,6 +4030,9 @@ msgstr ""
|
|
3691
4030
|
msgid "No matching activation keys found."
|
3692
4031
|
msgstr ""
|
3693
4032
|
|
4033
|
+
msgid "No matching alternate content sources found"
|
4034
|
+
msgstr ""
|
4035
|
+
|
3694
4036
|
msgid "No matching content views found"
|
3695
4037
|
msgstr ""
|
3696
4038
|
|
@@ -3706,6 +4048,9 @@ msgstr ""
|
|
3706
4048
|
msgid "No matching history record found"
|
3707
4049
|
msgstr ""
|
3708
4050
|
|
4051
|
+
msgid "No matching host collections found"
|
4052
|
+
msgstr ""
|
4053
|
+
|
3709
4054
|
msgid "No matching hosts found."
|
3710
4055
|
msgstr ""
|
3711
4056
|
|
@@ -3736,6 +4081,12 @@ msgstr ""
|
|
3736
4081
|
msgid "No packages"
|
3737
4082
|
msgstr ""
|
3738
4083
|
|
4084
|
+
msgid "No packages available to install"
|
4085
|
+
msgstr ""
|
4086
|
+
|
4087
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4088
|
+
msgstr ""
|
4089
|
+
|
3739
4090
|
msgid "No packages removed"
|
3740
4091
|
msgstr ""
|
3741
4092
|
|
@@ -3757,9 +4108,6 @@ msgstr ""
|
|
3757
4108
|
msgid "No products are enabled."
|
3758
4109
|
msgstr ""
|
3759
4110
|
|
3760
|
-
msgid "No profiles to show"
|
3761
|
-
msgstr ""
|
3762
|
-
|
3763
4111
|
msgid "No pulp workers running."
|
3764
4112
|
msgstr ""
|
3765
4113
|
|
@@ -3826,9 +4174,6 @@ msgstr ""
|
|
3826
4174
|
msgid "None provided"
|
3827
4175
|
msgstr ""
|
3828
4176
|
|
3829
|
-
msgid "Not Specified"
|
3830
|
-
msgstr ""
|
3831
|
-
|
3832
4177
|
msgid "Not a number"
|
3833
4178
|
msgstr ""
|
3834
4179
|
|
@@ -3841,6 +4186,9 @@ msgstr ""
|
|
3841
4186
|
msgid "Not running"
|
3842
4187
|
msgstr ""
|
3843
4188
|
|
4189
|
+
msgid "Not specified"
|
4190
|
+
msgstr ""
|
4191
|
+
|
3844
4192
|
msgid "Not yet published"
|
3845
4193
|
msgstr ""
|
3846
4194
|
|
@@ -3940,9 +4288,6 @@ msgstr ""
|
|
3940
4288
|
msgid "Organization Information not provided."
|
3941
4289
|
msgstr ""
|
3942
4290
|
|
3943
|
-
msgid "Organization Label"
|
3944
|
-
msgstr ""
|
3945
|
-
|
3946
4291
|
msgid "Organization cannot be blank."
|
3947
4292
|
msgstr ""
|
3948
4293
|
|
@@ -4147,9 +4492,6 @@ msgstr ""
|
|
4147
4492
|
msgid "Packages"
|
4148
4493
|
msgstr ""
|
4149
4494
|
|
4150
|
-
msgid "Packages management functionality on this page is incomplete"
|
4151
|
-
msgstr ""
|
4152
|
-
|
4153
4495
|
msgid "Packages must be provided"
|
4154
4496
|
msgstr ""
|
4155
4497
|
|
@@ -4171,7 +4513,7 @@ msgstr ""
|
|
4171
4513
|
msgid "Password"
|
4172
4514
|
msgstr ""
|
4173
4515
|
|
4174
|
-
msgid "Password for authentication"
|
4516
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4175
4517
|
msgstr ""
|
4176
4518
|
|
4177
4519
|
msgid "Password of the upstream authentication token."
|
@@ -4192,6 +4534,9 @@ msgstr ""
|
|
4192
4534
|
msgid "Path for ssl key used for pulp server auth"
|
4193
4535
|
msgstr ""
|
4194
4536
|
|
4537
|
+
msgid "Path suffixes for finding alternate content"
|
4538
|
+
msgstr ""
|
4539
|
+
|
4195
4540
|
msgid "Paused"
|
4196
4541
|
msgstr ""
|
4197
4542
|
|
@@ -4210,6 +4555,12 @@ msgstr ""
|
|
4210
4555
|
msgid "Performs a full-export of the repositories in library."
|
4211
4556
|
msgstr ""
|
4212
4557
|
|
4558
|
+
msgid "Performs a full-export of the repository in library."
|
4559
|
+
msgstr ""
|
4560
|
+
|
4561
|
+
msgid "Performs a incremental-export of the repository in library."
|
4562
|
+
msgstr ""
|
4563
|
+
|
4213
4564
|
msgid "Performs an incremental-export of a content view version."
|
4214
4565
|
msgstr ""
|
4215
4566
|
|
@@ -4243,6 +4594,12 @@ msgstr ""
|
|
4243
4594
|
msgid "Please select a content source before assigning a kickstart repository"
|
4244
4595
|
msgstr ""
|
4245
4596
|
|
4597
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4598
|
+
msgstr ""
|
4599
|
+
|
4600
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4601
|
+
msgstr ""
|
4602
|
+
|
4246
4603
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4247
4604
|
msgstr ""
|
4248
4605
|
|
@@ -4264,9 +4621,39 @@ msgstr ""
|
|
4264
4621
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4265
4622
|
msgstr ""
|
4266
4623
|
|
4624
|
+
msgid "Prefer registered through proxy for remote execution"
|
4625
|
+
msgstr ""
|
4626
|
+
|
4627
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4628
|
+
msgstr ""
|
4629
|
+
|
4630
|
+
msgid "Prevent from further updates"
|
4631
|
+
msgstr ""
|
4632
|
+
|
4267
4633
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4268
4634
|
msgstr ""
|
4269
4635
|
|
4636
|
+
msgid "Problem searching"
|
4637
|
+
msgstr ""
|
4638
|
+
|
4639
|
+
msgid "Problem searching errata"
|
4640
|
+
msgstr ""
|
4641
|
+
|
4642
|
+
msgid "Problem searching host collections"
|
4643
|
+
msgstr ""
|
4644
|
+
|
4645
|
+
msgid "Problem searching module streams"
|
4646
|
+
msgstr ""
|
4647
|
+
|
4648
|
+
msgid "Problem searching packages"
|
4649
|
+
msgstr ""
|
4650
|
+
|
4651
|
+
msgid "Problem searching repository sets"
|
4652
|
+
msgstr ""
|
4653
|
+
|
4654
|
+
msgid "Problem searching traces"
|
4655
|
+
msgstr ""
|
4656
|
+
|
4270
4657
|
msgid "Processing metadata"
|
4271
4658
|
msgstr ""
|
4272
4659
|
|
@@ -4323,9 +4710,6 @@ msgstr ""
|
|
4323
4710
|
msgid "Products"
|
4324
4711
|
msgstr ""
|
4325
4712
|
|
4326
|
-
msgid "Profiles"
|
4327
|
-
msgstr ""
|
4328
|
-
|
4329
4713
|
msgid "Promote"
|
4330
4714
|
msgstr ""
|
4331
4715
|
|
@@ -4353,6 +4737,9 @@ msgstr ""
|
|
4353
4737
|
msgid "Promotion to Environment"
|
4354
4738
|
msgstr ""
|
4355
4739
|
|
4740
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4741
|
+
msgstr ""
|
4742
|
+
|
4356
4743
|
msgid "Provided Products"
|
4357
4744
|
msgstr ""
|
4358
4745
|
|
@@ -4515,6 +4902,9 @@ msgstr ""
|
|
4515
4902
|
msgid "RPM name"
|
4516
4903
|
msgstr ""
|
4517
4904
|
|
4905
|
+
msgid "RPM packages"
|
4906
|
+
msgstr ""
|
4907
|
+
|
4518
4908
|
msgid "RPMs"
|
4519
4909
|
msgstr ""
|
4520
4910
|
|
@@ -4524,9 +4914,15 @@ msgstr ""
|
|
4524
4914
|
msgid "Realm IDs"
|
4525
4915
|
msgstr ""
|
4526
4916
|
|
4917
|
+
msgid "Reassign affected activation key"
|
4918
|
+
msgstr ""
|
4919
|
+
|
4527
4920
|
msgid "Reassign affected activation keys"
|
4528
4921
|
msgstr ""
|
4529
4922
|
|
4923
|
+
msgid "Reassign affected host"
|
4924
|
+
msgstr ""
|
4925
|
+
|
4530
4926
|
msgid "Reassign affected hosts"
|
4531
4927
|
msgstr ""
|
4532
4928
|
|
@@ -4554,6 +4950,9 @@ msgstr ""
|
|
4554
4950
|
msgid "Recommended Repositories"
|
4555
4951
|
msgstr ""
|
4556
4952
|
|
4953
|
+
msgid "Red Hat CDN"
|
4954
|
+
msgstr ""
|
4955
|
+
|
4557
4956
|
msgid "Red Hat CDN URL"
|
4558
4957
|
msgstr ""
|
4559
4958
|
|
@@ -4563,6 +4962,15 @@ msgstr ""
|
|
4563
4962
|
msgid "Red Hat Repositories page"
|
4564
4963
|
msgstr ""
|
4565
4964
|
|
4965
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4966
|
+
msgstr ""
|
4967
|
+
|
4968
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4969
|
+
msgstr ""
|
4970
|
+
|
4971
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4972
|
+
msgstr ""
|
4973
|
+
|
4566
4974
|
msgid "Red Hat products cannot be manipulated."
|
4567
4975
|
msgstr ""
|
4568
4976
|
|
@@ -4593,6 +5001,18 @@ msgstr ""
|
|
4593
5001
|
msgid "Register host '%s' before attaching subscriptions"
|
4594
5002
|
msgstr ""
|
4595
5003
|
|
5004
|
+
msgid "Registered by"
|
5005
|
+
msgstr ""
|
5006
|
+
|
5007
|
+
msgid "Registered on"
|
5008
|
+
msgstr ""
|
5009
|
+
|
5010
|
+
msgid "Registered through"
|
5011
|
+
msgstr ""
|
5012
|
+
|
5013
|
+
msgid "Registration details"
|
5014
|
+
msgstr ""
|
5015
|
+
|
4596
5016
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4597
5017
|
msgstr ""
|
4598
5018
|
|
@@ -4683,12 +5103,21 @@ msgstr ""
|
|
4683
5103
|
msgid "Remove from environments"
|
4684
5104
|
msgstr ""
|
4685
5105
|
|
5106
|
+
msgid "Remove host from collections"
|
5107
|
+
msgstr ""
|
5108
|
+
|
5109
|
+
msgid "Remove host from host collections"
|
5110
|
+
msgstr ""
|
5111
|
+
|
4686
5112
|
msgid "Remove hosts from the host collection"
|
4687
5113
|
msgstr ""
|
4688
5114
|
|
4689
5115
|
msgid "Remove lifecycle environments from the smart proxy"
|
4690
5116
|
msgstr ""
|
4691
5117
|
|
5118
|
+
msgid "Remove module stream"
|
5119
|
+
msgstr ""
|
5120
|
+
|
4692
5121
|
msgid "Remove one or more host collections from one or more hosts"
|
4693
5122
|
msgstr ""
|
4694
5123
|
|
@@ -4710,6 +5139,9 @@ msgstr ""
|
|
4710
5139
|
msgid "Remove package via Katello interface"
|
4711
5140
|
msgstr ""
|
4712
5141
|
|
5142
|
+
msgid "Remove packages via Katello interface"
|
5143
|
+
msgstr ""
|
5144
|
+
|
4713
5145
|
msgid "Remove products from sync plan"
|
4714
5146
|
msgstr ""
|
4715
5147
|
|
@@ -4749,6 +5181,9 @@ msgstr ""
|
|
4749
5181
|
msgid "Repositories"
|
4750
5182
|
msgstr ""
|
4751
5183
|
|
5184
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5185
|
+
msgstr ""
|
5186
|
+
|
4752
5187
|
msgid "Repositories from published Content Views are not allowed."
|
4753
5188
|
msgstr ""
|
4754
5189
|
|
@@ -4824,9 +5259,6 @@ msgstr ""
|
|
4824
5259
|
msgid "Repository sets will appear here when available."
|
4825
5260
|
msgstr ""
|
4826
5261
|
|
4827
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4828
|
-
msgstr ""
|
4829
|
-
|
4830
5262
|
msgid "Republish Repositories of %{name} %{version}"
|
4831
5263
|
msgstr ""
|
4832
5264
|
|
@@ -4848,12 +5280,21 @@ msgstr ""
|
|
4848
5280
|
msgid "Requires Virt-Who"
|
4849
5281
|
msgstr ""
|
4850
5282
|
|
5283
|
+
msgid "Reset"
|
5284
|
+
msgstr ""
|
5285
|
+
|
4851
5286
|
msgid "Reset filters"
|
4852
5287
|
msgstr ""
|
4853
5288
|
|
5289
|
+
msgid "Reset module stream"
|
5290
|
+
msgstr ""
|
5291
|
+
|
4854
5292
|
msgid "Reset to default"
|
4855
5293
|
msgstr ""
|
4856
5294
|
|
5295
|
+
msgid "Reset to the default state"
|
5296
|
+
msgstr ""
|
5297
|
+
|
4857
5298
|
msgid "Resolve traces"
|
4858
5299
|
msgstr ""
|
4859
5300
|
|
@@ -4878,7 +5319,7 @@ msgstr ""
|
|
4878
5319
|
msgid "Restart via remote execution"
|
4879
5320
|
msgstr ""
|
4880
5321
|
|
4881
|
-
msgid "Restrict
|
5322
|
+
msgid "Restrict composite content view promotion"
|
4882
5323
|
msgstr ""
|
4883
5324
|
|
4884
5325
|
msgid "Result"
|
@@ -4968,7 +5409,10 @@ msgstr ""
|
|
4968
5409
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4969
5410
|
msgstr ""
|
4970
5411
|
|
4971
|
-
msgid "Review
|
5412
|
+
msgid "Review affected environment"
|
5413
|
+
msgstr ""
|
5414
|
+
|
5415
|
+
msgid "Review affected environments"
|
4972
5416
|
msgstr ""
|
4973
5417
|
|
4974
5418
|
msgid "Review details"
|
@@ -4986,15 +5430,15 @@ msgstr ""
|
|
4986
5430
|
msgid "Roles"
|
4987
5431
|
msgstr ""
|
4988
5432
|
|
4989
|
-
msgid "Rpm packages"
|
4990
|
-
msgstr ""
|
4991
|
-
|
4992
5433
|
msgid "Rules to be added"
|
4993
5434
|
msgstr ""
|
4994
5435
|
|
4995
5436
|
msgid "Run Sync Plan:"
|
4996
5437
|
msgstr ""
|
4997
5438
|
|
5439
|
+
msgid "Run job invocation"
|
5440
|
+
msgstr ""
|
5441
|
+
|
4998
5442
|
msgid "Running"
|
4999
5443
|
msgstr ""
|
5000
5444
|
|
@@ -5031,6 +5475,12 @@ msgstr ""
|
|
5031
5475
|
msgid "Search Query"
|
5032
5476
|
msgstr ""
|
5033
5477
|
|
5478
|
+
msgid "Search available packages"
|
5479
|
+
msgstr ""
|
5480
|
+
|
5481
|
+
msgid "Search host collections"
|
5482
|
+
msgstr ""
|
5483
|
+
|
5034
5484
|
msgid "Search pattern (defaults to '*')"
|
5035
5485
|
msgstr ""
|
5036
5486
|
|
@@ -5046,6 +5496,9 @@ msgstr ""
|
|
5046
5496
|
msgid "Search string for hosts to perform an action on"
|
5047
5497
|
msgstr ""
|
5048
5498
|
|
5499
|
+
msgid "Search string for versions to perform an action on"
|
5500
|
+
msgstr ""
|
5501
|
+
|
5049
5502
|
msgid "Security"
|
5050
5503
|
msgstr ""
|
5051
5504
|
|
@@ -5058,6 +5511,9 @@ msgstr ""
|
|
5058
5511
|
msgid "Select"
|
5059
5512
|
msgstr ""
|
5060
5513
|
|
5514
|
+
msgid "Select ..."
|
5515
|
+
msgstr ""
|
5516
|
+
|
5061
5517
|
msgid "Select All"
|
5062
5518
|
msgstr ""
|
5063
5519
|
|
@@ -5076,6 +5532,12 @@ msgstr ""
|
|
5076
5532
|
msgid "Select a content view"
|
5077
5533
|
msgstr ""
|
5078
5534
|
|
5535
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5536
|
+
msgstr ""
|
5537
|
+
|
5538
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5539
|
+
msgstr ""
|
5540
|
+
|
5079
5541
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5080
5542
|
msgstr ""
|
5081
5543
|
|
@@ -5091,6 +5553,12 @@ msgstr ""
|
|
5091
5553
|
msgid "Select an Organization"
|
5092
5554
|
msgstr ""
|
5093
5555
|
|
5556
|
+
msgid "Select an environment"
|
5557
|
+
msgstr ""
|
5558
|
+
|
5559
|
+
msgid "Select an environment above"
|
5560
|
+
msgstr ""
|
5561
|
+
|
5094
5562
|
msgid "Select an organization"
|
5095
5563
|
msgstr ""
|
5096
5564
|
|
@@ -5103,6 +5571,15 @@ msgstr ""
|
|
5103
5571
|
msgid "Select content view"
|
5104
5572
|
msgstr ""
|
5105
5573
|
|
5574
|
+
msgid "Select environment"
|
5575
|
+
msgstr ""
|
5576
|
+
|
5577
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5578
|
+
msgstr ""
|
5579
|
+
|
5580
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5581
|
+
msgstr ""
|
5582
|
+
|
5106
5583
|
msgid "Select hosts to assign to %s"
|
5107
5584
|
msgstr ""
|
5108
5585
|
|
@@ -5115,6 +5592,9 @@ msgstr ""
|
|
5115
5592
|
msgid "Select one"
|
5116
5593
|
msgstr ""
|
5117
5594
|
|
5595
|
+
msgid "Select packages to install to the host {hostName}."
|
5596
|
+
msgstr ""
|
5597
|
+
|
5118
5598
|
msgid "Select page"
|
5119
5599
|
msgstr ""
|
5120
5600
|
|
@@ -5133,15 +5613,15 @@ msgstr ""
|
|
5133
5613
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5134
5614
|
msgstr ""
|
5135
5615
|
|
5136
|
-
msgid "Service Level"
|
5137
|
-
msgstr ""
|
5138
|
-
|
5139
5616
|
msgid "Service Level %s"
|
5140
5617
|
msgstr ""
|
5141
5618
|
|
5142
5619
|
msgid "Service Level (SLA)"
|
5143
5620
|
msgstr ""
|
5144
5621
|
|
5622
|
+
msgid "Service level"
|
5623
|
+
msgstr ""
|
5624
|
+
|
5145
5625
|
msgid "Service level of host"
|
5146
5626
|
msgstr ""
|
5147
5627
|
|
@@ -5154,6 +5634,9 @@ msgstr ""
|
|
5154
5634
|
msgid "Set content overrides to one or more hosts"
|
5155
5635
|
msgstr ""
|
5156
5636
|
|
5637
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5638
|
+
msgstr ""
|
5639
|
+
|
5157
5640
|
msgid "Set true to remove an override and reset it to 'default'"
|
5158
5641
|
msgstr ""
|
5159
5642
|
|
@@ -5208,12 +5691,21 @@ msgstr ""
|
|
5208
5691
|
msgid "Show a sync plan"
|
5209
5692
|
msgstr ""
|
5210
5693
|
|
5694
|
+
msgid "Show affected activation keys"
|
5695
|
+
msgstr ""
|
5696
|
+
|
5697
|
+
msgid "Show affected hosts"
|
5698
|
+
msgstr ""
|
5699
|
+
|
5211
5700
|
msgid "Show all"
|
5212
5701
|
msgstr ""
|
5213
5702
|
|
5214
5703
|
msgid "Show an activation key"
|
5215
5704
|
msgstr ""
|
5216
5705
|
|
5706
|
+
msgid "Show an alternate content source"
|
5707
|
+
msgstr ""
|
5708
|
+
|
5217
5709
|
msgid "Show an environment"
|
5218
5710
|
msgstr ""
|
5219
5711
|
|
@@ -5289,6 +5781,9 @@ msgstr ""
|
|
5289
5781
|
msgid "Solve dependencies"
|
5290
5782
|
msgstr ""
|
5291
5783
|
|
5784
|
+
msgid "Some hosts are ignored!"
|
5785
|
+
msgstr ""
|
5786
|
+
|
5292
5787
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5293
5788
|
msgstr ""
|
5294
5789
|
|
@@ -5316,9 +5811,15 @@ msgstr ""
|
|
5316
5811
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5317
5812
|
msgstr ""
|
5318
5813
|
|
5814
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5815
|
+
msgstr ""
|
5816
|
+
|
5319
5817
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5320
5818
|
msgstr ""
|
5321
5819
|
|
5820
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5821
|
+
msgstr ""
|
5822
|
+
|
5322
5823
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5323
5824
|
msgstr ""
|
5324
5825
|
|
@@ -5337,10 +5838,10 @@ msgstr ""
|
|
5337
5838
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5338
5839
|
msgstr ""
|
5339
5840
|
|
5340
|
-
msgid "Something went wrong while getting
|
5841
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5341
5842
|
msgstr ""
|
5342
5843
|
|
5343
|
-
msgid "Something went wrong while getting
|
5844
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5344
5845
|
msgstr ""
|
5345
5846
|
|
5346
5847
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5352,9 +5853,15 @@ msgstr ""
|
|
5352
5853
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5353
5854
|
msgstr ""
|
5354
5855
|
|
5856
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5857
|
+
msgstr ""
|
5858
|
+
|
5355
5859
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5356
5860
|
msgstr ""
|
5357
5861
|
|
5862
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5863
|
+
msgstr ""
|
5864
|
+
|
5358
5865
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5359
5866
|
msgstr ""
|
5360
5867
|
|
@@ -5391,6 +5898,9 @@ msgstr ""
|
|
5391
5898
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5392
5899
|
msgstr ""
|
5393
5900
|
|
5901
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5902
|
+
msgstr ""
|
5903
|
+
|
5394
5904
|
msgid "Something went wrong! Please check server logs!"
|
5395
5905
|
msgstr ""
|
5396
5906
|
|
@@ -5424,9 +5934,15 @@ msgstr ""
|
|
5424
5934
|
msgid "Start Time"
|
5425
5935
|
msgstr ""
|
5426
5936
|
|
5937
|
+
msgid "Start date"
|
5938
|
+
msgstr ""
|
5939
|
+
|
5427
5940
|
msgid "Starts"
|
5428
5941
|
msgstr ""
|
5429
5942
|
|
5943
|
+
msgid "State"
|
5944
|
+
msgstr ""
|
5945
|
+
|
5430
5946
|
msgid "Status"
|
5431
5947
|
msgstr ""
|
5432
5948
|
|
@@ -5439,6 +5955,12 @@ msgstr ""
|
|
5439
5955
|
msgid "Stream"
|
5440
5956
|
msgstr ""
|
5441
5957
|
|
5958
|
+
msgid "Streamed"
|
5959
|
+
msgstr ""
|
5960
|
+
|
5961
|
+
msgid "Streams based on the host based on the installation status"
|
5962
|
+
msgstr ""
|
5963
|
+
|
5442
5964
|
msgid "Streams based on the host based on their status"
|
5443
5965
|
msgstr ""
|
5444
5966
|
|
@@ -5481,9 +6003,15 @@ msgstr ""
|
|
5481
6003
|
msgid "Subscription Status"
|
5482
6004
|
msgstr ""
|
5483
6005
|
|
6006
|
+
msgid "Subscription UUID"
|
6007
|
+
msgstr ""
|
6008
|
+
|
5484
6009
|
msgid "Subscription Watch"
|
5485
6010
|
msgstr ""
|
5486
6011
|
|
6012
|
+
msgid "Subscription connection enabled"
|
6013
|
+
msgstr ""
|
6014
|
+
|
5487
6015
|
msgid "Subscription expiration notification"
|
5488
6016
|
msgstr ""
|
5489
6017
|
|
@@ -5562,7 +6090,7 @@ msgstr ""
|
|
5562
6090
|
msgid "Sync Canceled"
|
5563
6091
|
msgstr ""
|
5564
6092
|
|
5565
|
-
msgid "Sync
|
6093
|
+
msgid "Sync Connect Timeout"
|
5566
6094
|
msgstr ""
|
5567
6095
|
|
5568
6096
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5586,7 +6114,13 @@ msgstr ""
|
|
5586
6114
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5587
6115
|
msgstr ""
|
5588
6116
|
|
5589
|
-
msgid "Sync Smart Proxies after
|
6117
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6118
|
+
msgstr ""
|
6119
|
+
|
6120
|
+
msgid "Sync Sock Connect Timeout"
|
6121
|
+
msgstr ""
|
6122
|
+
|
6123
|
+
msgid "Sync Sock Read Timeout"
|
5590
6124
|
msgstr ""
|
5591
6125
|
|
5592
6126
|
msgid "Sync Status"
|
@@ -5598,6 +6132,9 @@ msgstr ""
|
|
5598
6132
|
msgid "Sync Summary for %s"
|
5599
6133
|
msgstr ""
|
5600
6134
|
|
6135
|
+
msgid "Sync Total Timeout"
|
6136
|
+
msgstr ""
|
6137
|
+
|
5601
6138
|
msgid "Sync a repository"
|
5602
6139
|
msgstr ""
|
5603
6140
|
|
@@ -5667,6 +6204,9 @@ msgstr ""
|
|
5667
6204
|
msgid "System Status"
|
5668
6205
|
msgstr ""
|
5669
6206
|
|
6207
|
+
msgid "System purpose"
|
6208
|
+
msgstr ""
|
6209
|
+
|
5670
6210
|
msgid "Tag name"
|
5671
6211
|
msgstr ""
|
5672
6212
|
|
@@ -5694,6 +6234,9 @@ msgstr ""
|
|
5694
6234
|
msgid "The '%s' environment cannot contain a changeset!"
|
5695
6235
|
msgstr ""
|
5696
6236
|
|
6237
|
+
msgid "The Alternate Content Source type"
|
6238
|
+
msgstr ""
|
6239
|
+
|
5697
6240
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5698
6241
|
msgstr ""
|
5699
6242
|
|
@@ -5706,6 +6249,9 @@ msgstr ""
|
|
5706
6249
|
msgid "The actual file contents"
|
5707
6250
|
msgstr ""
|
5708
6251
|
|
6252
|
+
msgid "The content type for the Alternate Content Source"
|
6253
|
+
msgstr ""
|
6254
|
+
|
5709
6255
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5710
6256
|
msgstr ""
|
5711
6257
|
|
@@ -5715,7 +6261,7 @@ msgstr ""
|
|
5715
6261
|
msgid "The default content view cannot be promoted"
|
5716
6262
|
msgstr ""
|
5717
6263
|
|
5718
|
-
msgid "The default dependency solving value for new
|
6264
|
+
msgid "The default dependency solving value for new content views."
|
5719
6265
|
msgstr ""
|
5720
6266
|
|
5721
6267
|
msgid "The description for the content view version"
|
@@ -5745,6 +6291,9 @@ msgstr ""
|
|
5745
6291
|
msgid "The field to sort the data by. Defaults to the created date."
|
5746
6292
|
msgstr ""
|
5747
6293
|
|
6294
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6295
|
+
msgstr ""
|
6296
|
+
|
5748
6297
|
msgid "The following hosts have errata that apply to them: "
|
5749
6298
|
msgstr ""
|
5750
6299
|
|
@@ -5753,15 +6302,39 @@ msgid ""
|
|
5753
6302
|
" %{repos}"
|
5754
6303
|
msgstr ""
|
5755
6304
|
|
6305
|
+
msgid "The id of the content source"
|
6306
|
+
msgstr ""
|
6307
|
+
|
6308
|
+
msgid "The id of the content view"
|
6309
|
+
msgstr ""
|
6310
|
+
|
5756
6311
|
msgid "The id of the host to alter"
|
5757
6312
|
msgstr ""
|
5758
6313
|
|
6314
|
+
msgid "The id of the lifecycle environment"
|
6315
|
+
msgstr ""
|
6316
|
+
|
6317
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6318
|
+
msgstr ""
|
6319
|
+
|
5759
6320
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5760
6321
|
msgstr ""
|
5761
6322
|
|
5762
6323
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5763
6324
|
msgstr ""
|
5764
6325
|
|
6326
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6327
|
+
msgstr ""
|
6328
|
+
|
6329
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6330
|
+
msgstr ""
|
6331
|
+
|
6332
|
+
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."
|
6333
|
+
msgstr ""
|
6334
|
+
|
6335
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6336
|
+
msgstr ""
|
6337
|
+
|
5765
6338
|
msgid "The maximum number of versions of each package to keep."
|
5766
6339
|
msgstr ""
|
5767
6340
|
|
@@ -5848,9 +6421,18 @@ msgstr ""
|
|
5848
6421
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5849
6422
|
msgstr ""
|
5850
6423
|
|
6424
|
+
msgid "There are no host collections available to add."
|
6425
|
+
msgstr ""
|
6426
|
+
|
5851
6427
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5852
6428
|
msgstr ""
|
5853
6429
|
|
6430
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6431
|
+
msgstr ""
|
6432
|
+
|
6433
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6434
|
+
msgstr ""
|
6435
|
+
|
5854
6436
|
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."
|
5855
6437
|
msgstr ""
|
5856
6438
|
|
@@ -5863,6 +6445,12 @@ msgstr ""
|
|
5863
6445
|
msgid "There is nothing to see here"
|
5864
6446
|
msgstr ""
|
5865
6447
|
|
6448
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6449
|
+
msgstr ""
|
6450
|
+
|
6451
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6452
|
+
msgstr ""
|
6453
|
+
|
5866
6454
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5867
6455
|
msgstr ""
|
5868
6456
|
|
@@ -5911,13 +6499,13 @@ msgstr ""
|
|
5911
6499
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5912
6500
|
msgstr ""
|
5913
6501
|
|
5914
|
-
msgid "This host
|
6502
|
+
msgid "This host does not have any Module streams."
|
5915
6503
|
msgstr ""
|
5916
6504
|
|
5917
|
-
msgid "This host does not have any
|
6505
|
+
msgid "This host does not have any packages."
|
5918
6506
|
msgstr ""
|
5919
6507
|
|
5920
|
-
msgid "This host
|
6508
|
+
msgid "This host has errata that are applicable, but not installable."
|
5921
6509
|
msgstr ""
|
5922
6510
|
|
5923
6511
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5950,6 +6538,9 @@ msgstr ""
|
|
5950
6538
|
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}."
|
5951
6539
|
msgstr ""
|
5952
6540
|
|
6541
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6542
|
+
msgstr ""
|
6543
|
+
|
5953
6544
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5954
6545
|
msgstr ""
|
5955
6546
|
|
@@ -5983,10 +6574,10 @@ msgstr ""
|
|
5983
6574
|
msgid "Time in minutes to consider orphan content as orphaned."
|
5984
6575
|
msgstr ""
|
5985
6576
|
|
5986
|
-
msgid "Time in seconds to wait for a
|
6577
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
5987
6578
|
msgstr ""
|
5988
6579
|
|
5989
|
-
msgid "Time in seconds to wait for a
|
6580
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
5990
6581
|
msgstr ""
|
5991
6582
|
|
5992
6583
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
@@ -6004,9 +6595,6 @@ msgstr ""
|
|
6004
6595
|
msgid "Total steps: "
|
6005
6596
|
msgstr ""
|
6006
6597
|
|
6007
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6008
|
-
msgstr ""
|
6009
|
-
|
6010
6598
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6011
6599
|
msgstr ""
|
6012
6600
|
|
@@ -6022,6 +6610,9 @@ msgstr ""
|
|
6022
6610
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6023
6611
|
msgstr ""
|
6024
6612
|
|
6613
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6614
|
+
msgstr ""
|
6615
|
+
|
6025
6616
|
msgid "Traces that require logout cannot be restarted remotely"
|
6026
6617
|
msgstr ""
|
6027
6618
|
|
@@ -6103,9 +6694,15 @@ msgstr ""
|
|
6103
6694
|
msgid "Unable to get users"
|
6104
6695
|
msgstr ""
|
6105
6696
|
|
6697
|
+
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. "
|
6698
|
+
msgstr ""
|
6699
|
+
|
6106
6700
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6107
6701
|
msgstr ""
|
6108
6702
|
|
6703
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6704
|
+
msgstr ""
|
6705
|
+
|
6109
6706
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6110
6707
|
msgstr ""
|
6111
6708
|
|
@@ -6148,6 +6745,9 @@ msgstr ""
|
|
6148
6745
|
msgid "Unfiltered params array: %s."
|
6149
6746
|
msgstr ""
|
6150
6747
|
|
6748
|
+
msgid "Uninstall and reset"
|
6749
|
+
msgstr ""
|
6750
|
+
|
6151
6751
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6152
6752
|
msgstr ""
|
6153
6753
|
|
@@ -6202,6 +6802,9 @@ msgstr ""
|
|
6202
6802
|
msgid "Update"
|
6203
6803
|
msgstr ""
|
6204
6804
|
|
6805
|
+
msgid "Update Alternate Content Source"
|
6806
|
+
msgstr ""
|
6807
|
+
|
6205
6808
|
msgid "Update CDN Configuration"
|
6206
6809
|
msgstr ""
|
6207
6810
|
|
@@ -6241,6 +6844,9 @@ msgstr ""
|
|
6241
6844
|
msgid "Update an activation key"
|
6242
6845
|
msgstr ""
|
6243
6846
|
|
6847
|
+
msgid "Update an alternate content source"
|
6848
|
+
msgstr ""
|
6849
|
+
|
6244
6850
|
msgid "Update an environment"
|
6245
6851
|
msgstr ""
|
6246
6852
|
|
@@ -6292,6 +6898,9 @@ msgstr ""
|
|
6292
6898
|
msgid "Update packages remotely using katello-agent. %s"
|
6293
6899
|
msgstr ""
|
6294
6900
|
|
6901
|
+
msgid "Update packages via Katello interface"
|
6902
|
+
msgstr ""
|
6903
|
+
|
6295
6904
|
msgid "Update redhat repository"
|
6296
6905
|
msgstr ""
|
6297
6906
|
|
@@ -6310,6 +6919,9 @@ msgstr ""
|
|
6310
6919
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6311
6920
|
msgstr ""
|
6312
6921
|
|
6922
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6923
|
+
msgstr ""
|
6924
|
+
|
6313
6925
|
msgid "Update the information about enabled repositories"
|
6314
6926
|
msgstr ""
|
6315
6927
|
|
@@ -6325,6 +6937,9 @@ msgstr ""
|
|
6325
6937
|
msgid "Updated component details"
|
6326
6938
|
msgstr ""
|
6327
6939
|
|
6940
|
+
msgid "Updated from"
|
6941
|
+
msgstr ""
|
6942
|
+
|
6328
6943
|
msgid "Updates"
|
6329
6944
|
msgstr ""
|
6330
6945
|
|
@@ -6352,7 +6967,7 @@ msgstr ""
|
|
6352
6967
|
msgid "Upgradable"
|
6353
6968
|
msgstr ""
|
6354
6969
|
|
6355
|
-
msgid "Upgradable
|
6970
|
+
msgid "Upgradable to"
|
6356
6971
|
msgstr ""
|
6357
6972
|
|
6358
6973
|
msgid "Upgrade"
|
@@ -6385,9 +7000,18 @@ msgstr ""
|
|
6385
7000
|
msgid "Upload request id"
|
6386
7001
|
msgstr ""
|
6387
7002
|
|
7003
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7004
|
+
msgstr ""
|
7005
|
+
|
7006
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7007
|
+
msgstr ""
|
7008
|
+
|
6388
7009
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6389
7010
|
msgstr ""
|
6390
7011
|
|
7012
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7013
|
+
msgstr ""
|
7014
|
+
|
6391
7015
|
msgid "Upstream identity certificate not available"
|
6392
7016
|
msgstr ""
|
6393
7017
|
|
@@ -6400,15 +7024,12 @@ msgstr ""
|
|
6400
7024
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6401
7025
|
msgstr ""
|
6402
7026
|
|
6403
|
-
msgid "Upstream organization to sync CDN content from"
|
7027
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6404
7028
|
msgstr ""
|
6405
7029
|
|
6406
7030
|
msgid "Upstream password requires upstream username be set."
|
6407
7031
|
msgstr ""
|
6408
7032
|
|
6409
|
-
msgid "Upstream server to sync CDN content from"
|
6410
|
-
msgstr ""
|
6411
|
-
|
6412
7033
|
msgid "Upstream username and password may only be set on custom repositories."
|
6413
7034
|
msgstr ""
|
6414
7035
|
|
@@ -6451,7 +7072,7 @@ msgstr ""
|
|
6451
7072
|
msgid "Username"
|
6452
7073
|
msgstr ""
|
6453
7074
|
|
6454
|
-
msgid "Username for authentication"
|
7075
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6455
7076
|
msgstr ""
|
6456
7077
|
|
6457
7078
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6463,7 +7084,7 @@ msgstr ""
|
|
6463
7084
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6464
7085
|
msgstr ""
|
6465
7086
|
|
6466
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7087
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6467
7088
|
msgstr ""
|
6468
7089
|
|
6469
7090
|
msgid "Valid"
|
@@ -6508,6 +7129,15 @@ msgstr ""
|
|
6508
7129
|
msgid "Versions"
|
6509
7130
|
msgstr ""
|
6510
7131
|
|
7132
|
+
msgid "Versions "
|
7133
|
+
msgstr ""
|
7134
|
+
|
7135
|
+
msgid "Versions to exclusively include in the action"
|
7136
|
+
msgstr ""
|
7137
|
+
|
7138
|
+
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."
|
7139
|
+
msgstr ""
|
7140
|
+
|
6511
7141
|
msgid "Versions will appear here when the content view is published."
|
6512
7142
|
msgstr ""
|
6513
7143
|
|
@@ -6520,10 +7150,13 @@ msgstr ""
|
|
6520
7150
|
msgid "View matching content"
|
6521
7151
|
msgstr ""
|
6522
7152
|
|
6523
|
-
msgid "
|
7153
|
+
msgid "View tasks "
|
7154
|
+
msgstr ""
|
7155
|
+
|
7156
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6524
7157
|
msgstr ""
|
6525
7158
|
|
6526
|
-
msgid "
|
7159
|
+
msgid "Virtual"
|
6527
7160
|
msgstr ""
|
6528
7161
|
|
6529
7162
|
msgid "Waiting to start."
|
@@ -6532,6 +7165,9 @@ msgstr ""
|
|
6532
7165
|
msgid "Warning"
|
6533
7166
|
msgstr ""
|
6534
7167
|
|
7168
|
+
msgid "What's next?"
|
7169
|
+
msgstr ""
|
7170
|
+
|
6535
7171
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
6536
7172
|
msgstr ""
|
6537
7173
|
|
@@ -6553,7 +7189,7 @@ msgstr ""
|
|
6553
7189
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6554
7190
|
msgstr ""
|
6555
7191
|
|
6556
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7192
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6557
7193
|
msgstr ""
|
6558
7194
|
|
6559
7195
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6583,9 +7219,6 @@ msgstr ""
|
|
6583
7219
|
msgid "Yes"
|
6584
7220
|
msgstr ""
|
6585
7221
|
|
6586
|
-
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'."
|
6587
|
-
msgstr ""
|
6588
|
-
|
6589
7222
|
msgid "You are not allowed to promote to Environments %s"
|
6590
7223
|
msgstr ""
|
6591
7224
|
|
@@ -6610,6 +7243,9 @@ msgstr ""
|
|
6610
7243
|
msgid "You currently don't have any Content views."
|
6611
7244
|
msgstr ""
|
6612
7245
|
|
7246
|
+
msgid "You currently don't have any alternate content sources."
|
7247
|
+
msgstr ""
|
7248
|
+
|
6613
7249
|
msgid "You currently don't have any filters for this content view."
|
6614
7250
|
msgstr ""
|
6615
7251
|
|
@@ -6643,6 +7279,9 @@ msgstr ""
|
|
6643
7279
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6644
7280
|
msgstr ""
|
6645
7281
|
|
7282
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7283
|
+
msgstr ""
|
7284
|
+
|
6646
7285
|
msgid "You were not allowed to add %s"
|
6647
7286
|
msgstr ""
|
6648
7287
|
|
@@ -6664,6 +7303,9 @@ msgstr ""
|
|
6664
7303
|
msgid "Your search returned no matching "
|
6665
7304
|
msgstr ""
|
6666
7305
|
|
7306
|
+
msgid "Your search returned no matching Module streams."
|
7307
|
+
msgstr ""
|
7308
|
+
|
6667
7309
|
msgid "Your search returned no matching RPMs."
|
6668
7310
|
msgstr ""
|
6669
7311
|
|
@@ -6778,6 +7420,9 @@ msgstr ""
|
|
6778
7420
|
msgid "can't be blank"
|
6779
7421
|
msgstr ""
|
6780
7422
|
|
7423
|
+
msgid "cannot add filter to generated content views"
|
7424
|
+
msgstr ""
|
7425
|
+
|
6781
7426
|
msgid "cannot add filter to import-only view"
|
6782
7427
|
msgstr ""
|
6783
7428
|
|
@@ -6832,6 +7477,9 @@ msgstr ""
|
|
6832
7477
|
msgid "checking Pulp task status"
|
6833
7478
|
msgstr ""
|
6834
7479
|
|
7480
|
+
msgid "click here"
|
7481
|
+
msgstr ""
|
7482
|
+
|
6835
7483
|
msgid "composite content view identifier"
|
6836
7484
|
msgstr ""
|
6837
7485
|
|
@@ -6850,6 +7498,9 @@ msgstr ""
|
|
6850
7498
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6851
7499
|
msgstr ""
|
6852
7500
|
|
7501
|
+
msgid "content view Dependency Solving Default"
|
7502
|
+
msgstr ""
|
7503
|
+
|
6853
7504
|
msgid "content view component ID. Identifier of the component association"
|
6854
7505
|
msgstr ""
|
6855
7506
|
|
@@ -6925,7 +7576,7 @@ msgstr ""
|
|
6925
7576
|
msgid "description of the repository"
|
6926
7577
|
msgstr ""
|
6927
7578
|
|
6928
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7579
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6929
7580
|
msgstr ""
|
6930
7581
|
|
6931
7582
|
msgid "enables or disables synchronization"
|
@@ -7000,6 +7651,9 @@ msgstr ""
|
|
7000
7651
|
msgid "filter identifiers"
|
7001
7652
|
msgstr ""
|
7002
7653
|
|
7654
|
+
msgid "filter only environments containing this label"
|
7655
|
+
msgstr ""
|
7656
|
+
|
7003
7657
|
msgid "filter only environments containing this name"
|
7004
7658
|
msgstr ""
|
7005
7659
|
|
@@ -7063,6 +7717,9 @@ msgstr ""
|
|
7063
7717
|
msgid "installing erratum..."
|
7064
7718
|
msgstr ""
|
7065
7719
|
|
7720
|
+
msgid "installing or updating packages"
|
7721
|
+
msgstr ""
|
7722
|
+
|
7066
7723
|
msgid "installing package group..."
|
7067
7724
|
msgstr ""
|
7068
7725
|
|
@@ -7090,9 +7747,18 @@ msgstr ""
|
|
7090
7747
|
msgid "is invalid"
|
7091
7748
|
msgstr ""
|
7092
7749
|
|
7750
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7751
|
+
msgstr ""
|
7752
|
+
|
7753
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7754
|
+
msgstr ""
|
7755
|
+
|
7093
7756
|
msgid "is not enabled. must be one of the following: %s"
|
7094
7757
|
msgstr ""
|
7095
7758
|
|
7759
|
+
msgid "is only allowed for Yum repositories."
|
7760
|
+
msgstr ""
|
7761
|
+
|
7096
7762
|
msgid "label of the environment"
|
7097
7763
|
msgstr ""
|
7098
7764
|
|
@@ -7165,6 +7831,9 @@ msgstr ""
|
|
7165
7831
|
msgid "must contain valid Public GPG Key"
|
7166
7832
|
msgstr ""
|
7167
7833
|
|
7834
|
+
msgid "must not be a negative value."
|
7835
|
+
msgstr ""
|
7836
|
+
|
7168
7837
|
msgid "must not contain leading or trailing white spaces."
|
7169
7838
|
msgstr ""
|
7170
7839
|
|
@@ -7261,6 +7930,9 @@ msgstr ""
|
|
7261
7930
|
msgid "package_ids is not an array"
|
7262
7931
|
msgstr ""
|
7263
7932
|
|
7933
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7934
|
+
msgstr ""
|
7935
|
+
|
7264
7936
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7265
7937
|
msgstr ""
|
7266
7938
|
|
@@ -7378,6 +8050,12 @@ msgstr ""
|
|
7378
8050
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7379
8051
|
msgstr ""
|
7380
8052
|
|
8053
|
+
msgid "to"
|
8054
|
+
msgstr ""
|
8055
|
+
|
8056
|
+
msgid "to update configuration on all hosts, or"
|
8057
|
+
msgstr ""
|
8058
|
+
|
7381
8059
|
msgid "true if the latest version of the component's content view is desired"
|
7382
8060
|
msgstr ""
|
7383
8061
|
|
@@ -7402,9 +8080,15 @@ msgstr ""
|
|
7402
8080
|
msgid "unknown permission for %s"
|
7403
8081
|
msgstr ""
|
7404
8082
|
|
8083
|
+
msgid "unlimited"
|
8084
|
+
msgstr ""
|
8085
|
+
|
7405
8086
|
msgid "update a filter"
|
7406
8087
|
msgstr ""
|
7407
8088
|
|
8089
|
+
msgid "update configuration on the hosts manually:"
|
8090
|
+
msgstr ""
|
8091
|
+
|
7408
8092
|
msgid "updating package group..."
|
7409
8093
|
msgstr ""
|
7410
8094
|
|
@@ -7417,6 +8101,9 @@ msgstr ""
|
|
7417
8101
|
msgid "updating packages..."
|
7418
8102
|
msgstr ""
|
7419
8103
|
|
8104
|
+
msgid "upstream Foreman server"
|
8105
|
+
msgstr ""
|
8106
|
+
|
7420
8107
|
msgid "url not defined."
|
7421
8108
|
msgstr ""
|
7422
8109
|
|
@@ -7461,3 +8148,30 @@ msgstr ""
|
|
7461
8148
|
|
7462
8149
|
msgid "{0} items selected"
|
7463
8150
|
msgstr ""
|
8151
|
+
|
8152
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8153
|
+
msgstr ""
|
8154
|
+
|
8155
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8156
|
+
msgstr ""
|
8157
|
+
|
8158
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8159
|
+
msgstr ""
|
8160
|
+
|
8161
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8162
|
+
msgstr ""
|
8163
|
+
|
8164
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8165
|
+
msgstr ""
|
8166
|
+
|
8167
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8168
|
+
msgstr ""
|
8169
|
+
|
8170
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8171
|
+
msgstr ""
|
8172
|
+
|
8173
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8174
|
+
msgstr ""
|
8175
|
+
|
8176
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8177
|
+
msgstr ""
|