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/ta/katello.po
CHANGED
@@ -4,14 +4,14 @@
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
# Translators:
|
7
|
-
# Bryan Kearney <bryan.kearney@gmail.com>,
|
7
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
8
8
|
#
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: katello 2.5.0\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
13
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
14
|
-
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>,
|
14
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
|
15
15
|
"Language-Team: Tamil (https://www.transifex.com/foreman/teams/114/ta/)\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -51,6 +51,9 @@ msgstr ""
|
|
51
51
|
msgid " ago."
|
52
52
|
msgstr ""
|
53
53
|
|
54
|
+
msgid " and"
|
55
|
+
msgstr ""
|
56
|
+
|
54
57
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
55
58
|
msgstr ""
|
56
59
|
|
@@ -113,6 +116,9 @@ msgstr ""
|
|
113
116
|
msgid "%s is not a valid package name"
|
114
117
|
msgstr "%s ஒரு சரியான தொகுப்பு பெயர் இல்லை"
|
115
118
|
|
119
|
+
msgid "%s is not a valid path"
|
120
|
+
msgstr ""
|
121
|
+
|
116
122
|
msgid "%s is required"
|
117
123
|
msgstr ""
|
118
124
|
|
@@ -362,9 +368,6 @@ msgstr ""
|
|
362
368
|
msgid "A post-promotion summary of hosts with installable errata"
|
363
369
|
msgstr ""
|
364
370
|
|
365
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
366
|
-
msgstr ""
|
367
|
-
|
368
371
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
369
372
|
msgstr ""
|
370
373
|
|
@@ -383,12 +386,18 @@ msgstr ""
|
|
383
386
|
msgid "About page"
|
384
387
|
msgstr ""
|
385
388
|
|
389
|
+
msgid "Abstract"
|
390
|
+
msgstr ""
|
391
|
+
|
386
392
|
msgid "Abstract async task"
|
387
393
|
msgstr ""
|
388
394
|
|
389
395
|
msgid "Accept action timeout"
|
390
396
|
msgstr ""
|
391
397
|
|
398
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
399
|
+
msgstr ""
|
400
|
+
|
392
401
|
msgid "Account Number"
|
393
402
|
msgstr ""
|
394
403
|
|
@@ -407,12 +416,12 @@ msgstr ""
|
|
407
416
|
msgid "Action with sub plans"
|
408
417
|
msgstr ""
|
409
418
|
|
410
|
-
msgid "Actions"
|
411
|
-
msgstr ""
|
412
|
-
|
413
419
|
msgid "Activation Keys"
|
414
420
|
msgstr "செயல்பாட்டு விசைகள்"
|
415
421
|
|
422
|
+
msgid "Activation key"
|
423
|
+
msgstr ""
|
424
|
+
|
416
425
|
msgid "Activation key ID"
|
417
426
|
msgstr ""
|
418
427
|
|
@@ -479,6 +488,12 @@ msgstr ""
|
|
479
488
|
msgid "Add filters using the 'Add filter' button above."
|
480
489
|
msgstr ""
|
481
490
|
|
491
|
+
msgid "Add host to collections"
|
492
|
+
msgstr ""
|
493
|
+
|
494
|
+
msgid "Add host to host collections"
|
495
|
+
msgstr ""
|
496
|
+
|
482
497
|
msgid "Add host to the host collection"
|
483
498
|
msgstr ""
|
484
499
|
|
@@ -503,6 +518,9 @@ msgstr ""
|
|
503
518
|
msgid "Add rule"
|
504
519
|
msgstr ""
|
505
520
|
|
521
|
+
msgid "Add source"
|
522
|
+
msgstr ""
|
523
|
+
|
506
524
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
507
525
|
msgstr ""
|
508
526
|
|
@@ -515,9 +533,6 @@ msgstr ""
|
|
515
533
|
msgid "Add to this filter using the 'Add filter rule' button."
|
516
534
|
msgstr ""
|
517
535
|
|
518
|
-
msgid "Add traces by applying updates on this host."
|
519
|
-
msgstr ""
|
520
|
-
|
521
536
|
msgid "Added"
|
522
537
|
msgstr ""
|
523
538
|
|
@@ -560,28 +575,52 @@ msgstr ""
|
|
560
575
|
msgid "All errata applied"
|
561
576
|
msgstr ""
|
562
577
|
|
578
|
+
msgid "All errata up-to-date"
|
579
|
+
msgstr ""
|
580
|
+
|
581
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
582
|
+
msgstr ""
|
583
|
+
|
563
584
|
msgid "All versions"
|
564
585
|
msgstr ""
|
565
586
|
|
566
587
|
msgid "All versions will be removed from these environments"
|
567
588
|
msgstr ""
|
568
589
|
|
569
|
-
msgid "Allow
|
590
|
+
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)"
|
570
591
|
msgstr ""
|
571
592
|
|
572
|
-
msgid "Allow
|
593
|
+
msgid "Allow deleting repositories in published content views"
|
594
|
+
msgstr ""
|
595
|
+
|
596
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
573
597
|
msgstr ""
|
574
598
|
|
575
599
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
576
600
|
msgstr ""
|
577
601
|
|
578
|
-
msgid "Allow new
|
602
|
+
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."
|
579
603
|
msgstr ""
|
580
604
|
|
581
605
|
msgid "Also include the latest upgradable package version for each host package"
|
582
606
|
msgstr ""
|
583
607
|
|
584
|
-
msgid "Alter a
|
608
|
+
msgid "Alter a host's host collections"
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
msgid "Alternate Content Sources"
|
612
|
+
msgstr ""
|
613
|
+
|
614
|
+
msgid "Alternate content source ${name} created"
|
615
|
+
msgstr ""
|
616
|
+
|
617
|
+
msgid "Alternate content source ID"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
msgid "Alternate content source deleted"
|
621
|
+
msgstr ""
|
622
|
+
|
623
|
+
msgid "Alternate content sources"
|
585
624
|
msgstr ""
|
586
625
|
|
587
626
|
msgid "Always Use Latest (currently %{version})"
|
@@ -593,6 +632,9 @@ msgstr ""
|
|
593
632
|
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."
|
594
633
|
msgstr ""
|
595
634
|
|
635
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
636
|
+
msgstr ""
|
637
|
+
|
596
638
|
msgid "An environment is missing a prior"
|
597
639
|
msgstr ""
|
598
640
|
|
@@ -734,6 +776,9 @@ msgstr ""
|
|
734
776
|
msgid "Associated location IDs"
|
735
777
|
msgstr ""
|
736
778
|
|
779
|
+
msgid "Associated version"
|
780
|
+
msgstr ""
|
781
|
+
|
737
782
|
msgid "Associations"
|
738
783
|
msgstr ""
|
739
784
|
|
@@ -800,6 +845,9 @@ msgstr ""
|
|
800
845
|
msgid "Backend System Status"
|
801
846
|
msgstr ""
|
802
847
|
|
848
|
+
msgid "Base URL for finding alternate content"
|
849
|
+
msgstr ""
|
850
|
+
|
803
851
|
msgid "Base URL to perform repo discovery on"
|
804
852
|
msgstr ""
|
805
853
|
|
@@ -809,9 +857,21 @@ msgstr ""
|
|
809
857
|
msgid "Basearch to enable"
|
810
858
|
msgstr ""
|
811
859
|
|
860
|
+
msgid "Basic authentication password"
|
861
|
+
msgstr ""
|
862
|
+
|
863
|
+
msgid "Basic authentication username"
|
864
|
+
msgstr ""
|
865
|
+
|
812
866
|
msgid "Batch size to sync repositories in."
|
813
867
|
msgstr ""
|
814
868
|
|
869
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
870
|
+
msgstr ""
|
871
|
+
|
872
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
873
|
+
msgstr ""
|
874
|
+
|
815
875
|
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."
|
816
876
|
msgstr ""
|
817
877
|
|
@@ -848,6 +908,9 @@ msgstr ""
|
|
848
908
|
msgid "Bulk generate applicability for hosts"
|
849
909
|
msgstr ""
|
850
910
|
|
911
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
912
|
+
msgstr ""
|
913
|
+
|
851
914
|
msgid "CDN Configuration"
|
852
915
|
msgstr ""
|
853
916
|
|
@@ -860,6 +923,12 @@ msgstr ""
|
|
860
923
|
msgid "CDN SSL version"
|
861
924
|
msgstr ""
|
862
925
|
|
926
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
927
|
+
msgstr ""
|
928
|
+
|
929
|
+
msgid "CDN configuration type. One of %s."
|
930
|
+
msgstr ""
|
931
|
+
|
863
932
|
msgid "CDN loading error: %s not found"
|
864
933
|
msgstr "CDN ஏற்றும் பிழை: %s காணவில்லை"
|
865
934
|
|
@@ -881,7 +950,10 @@ msgstr ""
|
|
881
950
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
882
951
|
msgstr ""
|
883
952
|
|
884
|
-
msgid "Calculate errata host status based only on errata in a
|
953
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
954
|
+
msgstr ""
|
955
|
+
|
956
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
885
957
|
msgstr ""
|
886
958
|
|
887
959
|
msgid "Can not add product %s because it is disabled."
|
@@ -1004,6 +1076,9 @@ msgstr ""
|
|
1004
1076
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1005
1077
|
msgstr ""
|
1006
1078
|
|
1079
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1080
|
+
msgstr ""
|
1081
|
+
|
1007
1082
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1008
1083
|
msgstr ""
|
1009
1084
|
|
@@ -1055,6 +1130,18 @@ msgstr ""
|
|
1055
1130
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1056
1131
|
msgstr ""
|
1057
1132
|
|
1133
|
+
msgid "Capacity"
|
1134
|
+
msgstr ""
|
1135
|
+
|
1136
|
+
msgid "Change Content Source"
|
1137
|
+
msgstr ""
|
1138
|
+
|
1139
|
+
msgid "Change content source"
|
1140
|
+
msgstr ""
|
1141
|
+
|
1142
|
+
msgid "Change host content source"
|
1143
|
+
msgstr ""
|
1144
|
+
|
1058
1145
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1059
1146
|
msgstr ""
|
1060
1147
|
|
@@ -1067,6 +1154,9 @@ msgstr ""
|
|
1067
1154
|
msgid "Checksum"
|
1068
1155
|
msgstr ""
|
1069
1156
|
|
1157
|
+
msgid "Checksum is a required parameter."
|
1158
|
+
msgstr ""
|
1159
|
+
|
1070
1160
|
msgid "Checksum of file to upload"
|
1071
1161
|
msgstr ""
|
1072
1162
|
|
@@ -1082,6 +1172,9 @@ msgstr ""
|
|
1082
1172
|
msgid "Click here to go to the tasks page for the task."
|
1083
1173
|
msgstr ""
|
1084
1174
|
|
1175
|
+
msgid "Click {update} below to save changes."
|
1176
|
+
msgstr ""
|
1177
|
+
|
1085
1178
|
msgid "Clone"
|
1086
1179
|
msgstr "குளோன்"
|
1087
1180
|
|
@@ -1097,7 +1190,13 @@ msgstr ""
|
|
1097
1190
|
msgid "Combined Profile Update for %s"
|
1098
1191
|
msgstr ""
|
1099
1192
|
|
1100
|
-
msgid "Comma-separated list of tags to
|
1193
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1194
|
+
msgstr ""
|
1195
|
+
|
1196
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1197
|
+
msgstr ""
|
1198
|
+
|
1199
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1101
1200
|
msgstr ""
|
1102
1201
|
|
1103
1202
|
msgid "Component"
|
@@ -1184,6 +1283,9 @@ msgstr ""
|
|
1184
1283
|
msgid "Container manifests"
|
1185
1284
|
msgstr ""
|
1186
1285
|
|
1286
|
+
msgid "Container tags"
|
1287
|
+
msgstr ""
|
1288
|
+
|
1187
1289
|
msgid "Content"
|
1188
1290
|
msgstr "உள்ளடக்கம்"
|
1189
1291
|
|
@@ -1196,7 +1298,7 @@ msgstr ""
|
|
1196
1298
|
msgid "Content Credential numeric identifier"
|
1197
1299
|
msgstr ""
|
1198
1300
|
|
1199
|
-
msgid "Content Credential to use for SSL CA"
|
1301
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1200
1302
|
msgstr ""
|
1201
1303
|
|
1202
1304
|
msgid "Content Credentials"
|
@@ -1229,9 +1331,6 @@ msgstr "உள்ளடக்க பார்வை"
|
|
1229
1331
|
msgid "Content View %{view}: Versions: %{versions}"
|
1230
1332
|
msgstr ""
|
1231
1333
|
|
1232
|
-
msgid "Content View Dependency Solving Default"
|
1233
|
-
msgstr ""
|
1234
|
-
|
1235
1334
|
msgid "Content View Details"
|
1236
1335
|
msgstr ""
|
1237
1336
|
|
@@ -1244,9 +1343,6 @@ msgstr ""
|
|
1244
1343
|
msgid "Content View ID"
|
1245
1344
|
msgstr ""
|
1246
1345
|
|
1247
|
-
msgid "Content View Label"
|
1248
|
-
msgstr ""
|
1249
|
-
|
1250
1346
|
msgid "Content View Name"
|
1251
1347
|
msgstr ""
|
1252
1348
|
|
@@ -1271,6 +1367,9 @@ msgstr ""
|
|
1271
1367
|
msgid "Content View id"
|
1272
1368
|
msgstr ""
|
1273
1369
|
|
1370
|
+
msgid "Content View label not provided."
|
1371
|
+
msgstr ""
|
1372
|
+
|
1274
1373
|
msgid "Content Views"
|
1275
1374
|
msgstr "உள்ளடக்கக் காட்சிகள்"
|
1276
1375
|
|
@@ -1283,15 +1382,21 @@ msgstr ""
|
|
1283
1382
|
msgid "Content hosts"
|
1284
1383
|
msgstr ""
|
1285
1384
|
|
1286
|
-
msgid "Content imported
|
1385
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1287
1386
|
msgstr ""
|
1288
1387
|
|
1289
1388
|
msgid "Content not uploaded to pulp"
|
1290
1389
|
msgstr ""
|
1291
1390
|
|
1391
|
+
msgid "Content override search parameters"
|
1392
|
+
msgstr ""
|
1393
|
+
|
1292
1394
|
msgid "Content source ID"
|
1293
1395
|
msgstr ""
|
1294
1396
|
|
1397
|
+
msgid "Content source successfully updated."
|
1398
|
+
msgstr ""
|
1399
|
+
|
1295
1400
|
msgid "Content source was not set for host '%{host}'"
|
1296
1401
|
msgstr ""
|
1297
1402
|
|
@@ -1367,6 +1472,9 @@ msgstr ""
|
|
1367
1472
|
msgid "Contract Number"
|
1368
1473
|
msgstr ""
|
1369
1474
|
|
1475
|
+
msgid "Copied to clipboard"
|
1476
|
+
msgstr ""
|
1477
|
+
|
1370
1478
|
msgid "Copy"
|
1371
1479
|
msgstr ""
|
1372
1480
|
|
@@ -1376,6 +1484,9 @@ msgstr ""
|
|
1376
1484
|
msgid "Copy content view"
|
1377
1485
|
msgstr ""
|
1378
1486
|
|
1487
|
+
msgid "Copy to clipboard"
|
1488
|
+
msgstr ""
|
1489
|
+
|
1379
1490
|
msgid "Copy version units to library"
|
1380
1491
|
msgstr ""
|
1381
1492
|
|
@@ -1487,6 +1598,9 @@ msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பை
|
|
1487
1598
|
msgid "Couldn't find repository '%s'"
|
1488
1599
|
msgstr "தொகுப்பதிவகம் '%s' ஐ கண்டறிய முடியவில்லை"
|
1489
1600
|
|
1601
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1602
|
+
msgstr ""
|
1603
|
+
|
1490
1604
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1491
1605
|
msgstr ""
|
1492
1606
|
|
@@ -1499,6 +1613,9 @@ msgstr ""
|
|
1499
1613
|
msgid "Create"
|
1500
1614
|
msgstr "உருவாக்கு"
|
1501
1615
|
|
1616
|
+
msgid "Create Alternate Content Source"
|
1617
|
+
msgstr ""
|
1618
|
+
|
1502
1619
|
msgid "Create Export History"
|
1503
1620
|
msgstr ""
|
1504
1621
|
|
@@ -1535,6 +1652,9 @@ msgstr ""
|
|
1535
1652
|
msgid "Create a sync plan"
|
1536
1653
|
msgstr ""
|
1537
1654
|
|
1655
|
+
msgid "Create an ACS"
|
1656
|
+
msgstr ""
|
1657
|
+
|
1538
1658
|
msgid "Create an activation key"
|
1539
1659
|
msgstr ""
|
1540
1660
|
|
@@ -1580,6 +1700,9 @@ msgstr ""
|
|
1580
1700
|
msgid "Custom repositories cannot be disabled."
|
1581
1701
|
msgstr ""
|
1582
1702
|
|
1703
|
+
msgid "Customize with Rex"
|
1704
|
+
msgstr ""
|
1705
|
+
|
1583
1706
|
msgid "Database connection"
|
1584
1707
|
msgstr ""
|
1585
1708
|
|
@@ -1616,13 +1739,10 @@ msgstr ""
|
|
1616
1739
|
msgid "Default Custom Repository download policy"
|
1617
1740
|
msgstr ""
|
1618
1741
|
|
1619
|
-
msgid "Default HTTP Proxy
|
1742
|
+
msgid "Default HTTP Proxy"
|
1620
1743
|
msgstr ""
|
1621
1744
|
|
1622
|
-
msgid "Default HTTP proxy"
|
1623
|
-
msgstr ""
|
1624
|
-
|
1625
|
-
msgid "Default Location subscribed hosts"
|
1745
|
+
msgid "Default HTTP proxy for syncing content"
|
1626
1746
|
msgstr ""
|
1627
1747
|
|
1628
1748
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1667,6 +1787,9 @@ msgstr ""
|
|
1667
1787
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1668
1788
|
msgstr ""
|
1669
1789
|
|
1790
|
+
msgid "Default location for subscribed hosts"
|
1791
|
+
msgstr ""
|
1792
|
+
|
1670
1793
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1671
1794
|
msgstr ""
|
1672
1795
|
|
@@ -1769,6 +1892,9 @@ msgstr ""
|
|
1769
1892
|
msgid "Delete version"
|
1770
1893
|
msgstr ""
|
1771
1894
|
|
1895
|
+
msgid "Delete versions"
|
1896
|
+
msgstr ""
|
1897
|
+
|
1772
1898
|
msgid "Deleted consumer '%s'"
|
1773
1899
|
msgstr ""
|
1774
1900
|
|
@@ -1784,9 +1910,18 @@ msgstr ""
|
|
1784
1910
|
msgid "Deleting manifest in '%{subject}' failed."
|
1785
1911
|
msgstr ""
|
1786
1912
|
|
1913
|
+
msgid "Deleting version {versionList}"
|
1914
|
+
msgstr ""
|
1915
|
+
|
1916
|
+
msgid "Deleting versions: {versionList}"
|
1917
|
+
msgstr ""
|
1918
|
+
|
1787
1919
|
msgid "Description"
|
1788
1920
|
msgstr ""
|
1789
1921
|
|
1922
|
+
msgid "Description for the alternate content source"
|
1923
|
+
msgstr ""
|
1924
|
+
|
1790
1925
|
msgid "Description for the content view"
|
1791
1926
|
msgstr ""
|
1792
1927
|
|
@@ -1808,6 +1943,9 @@ msgstr ""
|
|
1808
1943
|
msgid "Destroy"
|
1809
1944
|
msgstr ""
|
1810
1945
|
|
1946
|
+
msgid "Destroy Alternate Content Source"
|
1947
|
+
msgstr ""
|
1948
|
+
|
1811
1949
|
msgid "Destroy Content Host"
|
1812
1950
|
msgstr ""
|
1813
1951
|
|
@@ -1832,6 +1970,9 @@ msgstr ""
|
|
1832
1970
|
msgid "Destroy an activation key"
|
1833
1971
|
msgstr ""
|
1834
1972
|
|
1973
|
+
msgid "Destroy an alternate content source"
|
1974
|
+
msgstr ""
|
1975
|
+
|
1835
1976
|
msgid "Destroy an environment"
|
1836
1977
|
msgstr ""
|
1837
1978
|
|
@@ -1871,6 +2012,9 @@ msgstr ""
|
|
1871
2012
|
msgid "Disable a repository from the set"
|
1872
2013
|
msgstr ""
|
1873
2014
|
|
2015
|
+
msgid "Disable module stream"
|
2016
|
+
msgstr ""
|
2017
|
+
|
1874
2018
|
msgid "Disable simple content access for a manifest"
|
1875
2019
|
msgstr ""
|
1876
2020
|
|
@@ -1880,9 +2024,6 @@ msgstr ""
|
|
1880
2024
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1881
2025
|
msgstr ""
|
1882
2026
|
|
1883
|
-
msgid "Disconnected mode"
|
1884
|
-
msgstr ""
|
1885
|
-
|
1886
2027
|
msgid "Discover"
|
1887
2028
|
msgstr ""
|
1888
2029
|
|
@@ -1898,9 +2039,6 @@ msgstr ""
|
|
1898
2039
|
msgid "Do not wait for the update action to finish. Default: true"
|
1899
2040
|
msgstr ""
|
1900
2041
|
|
1901
|
-
msgid "Docker Tags"
|
1902
|
-
msgstr ""
|
1903
|
-
|
1904
2042
|
msgid "Domain IDs"
|
1905
2043
|
msgstr ""
|
1906
2044
|
|
@@ -1910,6 +2048,9 @@ msgstr ""
|
|
1910
2048
|
msgid "Download a debug certificate"
|
1911
2049
|
msgstr ""
|
1912
2050
|
|
2051
|
+
msgid "Download rate limit"
|
2052
|
+
msgstr ""
|
2053
|
+
|
1913
2054
|
msgid "Duplicate artifact detected"
|
1914
2055
|
msgstr ""
|
1915
2056
|
|
@@ -1925,6 +2066,9 @@ msgstr ""
|
|
1925
2066
|
msgid "Edit RPM rule"
|
1926
2067
|
msgstr ""
|
1927
2068
|
|
2069
|
+
msgid "Edit content view assignment"
|
2070
|
+
msgstr ""
|
2071
|
+
|
1928
2072
|
msgid "Edit filter rule"
|
1929
2073
|
msgstr ""
|
1930
2074
|
|
@@ -1988,6 +2132,9 @@ msgstr ""
|
|
1988
2132
|
msgid "End Date"
|
1989
2133
|
msgstr ""
|
1990
2134
|
|
2135
|
+
msgid "End date"
|
2136
|
+
msgstr ""
|
2137
|
+
|
1991
2138
|
msgid "Ends"
|
1992
2139
|
msgstr ""
|
1993
2140
|
|
@@ -1997,6 +2144,9 @@ msgstr "மேம்படுத்தல்"
|
|
1997
2144
|
msgid "Enter a name"
|
1998
2145
|
msgstr ""
|
1999
2146
|
|
2147
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2148
|
+
msgstr ""
|
2149
|
+
|
2000
2150
|
msgid "Entitlements"
|
2001
2151
|
msgstr ""
|
2002
2152
|
|
@@ -2015,6 +2165,9 @@ msgstr ""
|
|
2015
2165
|
msgid "Environments"
|
2016
2166
|
msgstr ""
|
2017
2167
|
|
2168
|
+
msgid "Epoch"
|
2169
|
+
msgstr ""
|
2170
|
+
|
2018
2171
|
msgid "Equal to"
|
2019
2172
|
msgstr ""
|
2020
2173
|
|
@@ -2072,6 +2225,9 @@ msgstr ""
|
|
2072
2225
|
msgid "Error connecting. Got: %s"
|
2073
2226
|
msgstr ""
|
2074
2227
|
|
2228
|
+
msgid "Error loading content views"
|
2229
|
+
msgstr ""
|
2230
|
+
|
2075
2231
|
msgid "Error refreshing status for %s: "
|
2076
2232
|
msgstr ""
|
2077
2233
|
|
@@ -2120,6 +2276,12 @@ msgstr ""
|
|
2120
2276
|
msgid "Export Library"
|
2121
2277
|
msgstr ""
|
2122
2278
|
|
2279
|
+
msgid "Export Repository"
|
2280
|
+
msgstr ""
|
2281
|
+
|
2282
|
+
msgid "Export Sync"
|
2283
|
+
msgstr ""
|
2284
|
+
|
2123
2285
|
msgid "Export Types"
|
2124
2286
|
msgstr ""
|
2125
2287
|
|
@@ -2144,6 +2306,9 @@ msgstr "தோல்வியுற்றது"
|
|
2144
2306
|
msgid "Failed to delete %{host}: %{errors}"
|
2145
2307
|
msgstr ""
|
2146
2308
|
|
2309
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2310
|
+
msgstr ""
|
2311
|
+
|
2147
2312
|
msgid "Failed to download %s package."
|
2148
2313
|
msgid_plural "Failed to download %s packages."
|
2149
2314
|
msgstr[0] ""
|
@@ -2331,6 +2496,15 @@ msgstr ""
|
|
2331
2496
|
msgid "Generate repository applicability"
|
2332
2497
|
msgstr ""
|
2333
2498
|
|
2499
|
+
msgid "Generated"
|
2500
|
+
msgstr ""
|
2501
|
+
|
2502
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2503
|
+
msgstr ""
|
2504
|
+
|
2505
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2506
|
+
msgstr ""
|
2507
|
+
|
2334
2508
|
msgid "Get all content available, not just that provided by subscriptions"
|
2335
2509
|
msgstr ""
|
2336
2510
|
|
@@ -2367,6 +2541,9 @@ msgstr ""
|
|
2367
2541
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2368
2542
|
msgstr ""
|
2369
2543
|
|
2544
|
+
msgid "Go to job details"
|
2545
|
+
msgstr ""
|
2546
|
+
|
2370
2547
|
msgid "Go to task page"
|
2371
2548
|
msgstr ""
|
2372
2549
|
|
@@ -2391,6 +2568,12 @@ msgstr ""
|
|
2391
2568
|
msgid "Helper"
|
2392
2569
|
msgstr ""
|
2393
2570
|
|
2571
|
+
msgid "Hide affected activation keys"
|
2572
|
+
msgstr ""
|
2573
|
+
|
2574
|
+
msgid "Hide affected hosts"
|
2575
|
+
msgstr ""
|
2576
|
+
|
2394
2577
|
msgid "Hide description"
|
2395
2578
|
msgstr ""
|
2396
2579
|
|
@@ -2442,15 +2625,27 @@ msgstr ""
|
|
2442
2625
|
msgid "Host Tasks Workers Pool Size"
|
2443
2626
|
msgstr ""
|
2444
2627
|
|
2628
|
+
msgid "Host collection"
|
2629
|
+
msgstr ""
|
2630
|
+
|
2445
2631
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2446
2632
|
msgstr ""
|
2447
2633
|
|
2448
2634
|
msgid "Host collection is empty."
|
2449
2635
|
msgstr ""
|
2450
2636
|
|
2637
|
+
msgid "Host collections"
|
2638
|
+
msgstr ""
|
2639
|
+
|
2640
|
+
msgid "Host collections updated"
|
2641
|
+
msgstr ""
|
2642
|
+
|
2451
2643
|
msgid "Host content and subscription details"
|
2452
2644
|
msgstr ""
|
2453
2645
|
|
2646
|
+
msgid "Host content view and environment updated"
|
2647
|
+
msgstr ""
|
2648
|
+
|
2454
2649
|
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."
|
2455
2650
|
msgstr ""
|
2456
2651
|
|
@@ -2502,7 +2697,7 @@ msgstr ""
|
|
2502
2697
|
msgid "Hosts: "
|
2503
2698
|
msgstr ""
|
2504
2699
|
|
2505
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2700
|
+
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."
|
2506
2701
|
msgstr ""
|
2507
2702
|
|
2508
2703
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2565,12 +2760,18 @@ msgstr ""
|
|
2565
2760
|
msgid "ID of the repository set to enable"
|
2566
2761
|
msgstr ""
|
2567
2762
|
|
2763
|
+
msgid "ID of the repository within the set to disable"
|
2764
|
+
msgstr ""
|
2765
|
+
|
2568
2766
|
msgid "ID of the sync plan"
|
2569
2767
|
msgstr ""
|
2570
2768
|
|
2571
2769
|
msgid "ID: %s doesn't exist "
|
2572
2770
|
msgstr "ID: %s இல்லை "
|
2573
2771
|
|
2772
|
+
msgid "Id"
|
2773
|
+
msgstr ""
|
2774
|
+
|
2574
2775
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2575
2776
|
msgstr ""
|
2576
2777
|
|
@@ -2643,16 +2844,22 @@ msgstr ""
|
|
2643
2844
|
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"
|
2644
2845
|
msgstr ""
|
2645
2846
|
|
2847
|
+
msgid "Ids of smart proxies to associate"
|
2848
|
+
msgstr ""
|
2849
|
+
|
2646
2850
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2647
2851
|
msgstr ""
|
2648
2852
|
|
2649
|
-
msgid "If
|
2853
|
+
msgid "If SSL should be verified for the upstream URL"
|
2854
|
+
msgstr ""
|
2855
|
+
|
2856
|
+
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."
|
2650
2857
|
msgstr ""
|
2651
2858
|
|
2652
2859
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2653
2860
|
msgstr ""
|
2654
2861
|
|
2655
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2862
|
+
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."
|
2656
2863
|
msgstr ""
|
2657
2864
|
|
2658
2865
|
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"
|
@@ -2661,6 +2868,9 @@ msgstr ""
|
|
2661
2868
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2662
2869
|
msgstr ""
|
2663
2870
|
|
2871
|
+
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."
|
2872
|
+
msgstr ""
|
2873
|
+
|
2664
2874
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2665
2875
|
msgstr ""
|
2666
2876
|
|
@@ -2676,6 +2886,9 @@ msgstr ""
|
|
2676
2886
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2677
2887
|
msgstr ""
|
2678
2888
|
|
2889
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2890
|
+
msgstr ""
|
2891
|
+
|
2679
2892
|
msgid "Ignorable content can be only set for Yum repositories."
|
2680
2893
|
msgstr ""
|
2681
2894
|
|
@@ -2712,6 +2925,9 @@ msgstr ""
|
|
2712
2925
|
msgid "Import Puppet classes"
|
2713
2926
|
msgstr ""
|
2714
2927
|
|
2928
|
+
msgid "Import Repository"
|
2929
|
+
msgstr ""
|
2930
|
+
|
2715
2931
|
msgid "Import Types"
|
2716
2932
|
msgstr ""
|
2717
2933
|
|
@@ -2733,12 +2949,18 @@ msgstr ""
|
|
2733
2949
|
msgid "Import a content view version to the library"
|
2734
2950
|
msgstr ""
|
2735
2951
|
|
2952
|
+
msgid "Import a repository"
|
2953
|
+
msgstr ""
|
2954
|
+
|
2736
2955
|
msgid "Import facts"
|
2737
2956
|
msgstr ""
|
2738
2957
|
|
2739
2958
|
msgid "Import only"
|
2740
2959
|
msgstr ""
|
2741
2960
|
|
2961
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2962
|
+
msgstr ""
|
2963
|
+
|
2742
2964
|
msgid "Import uploads into a repository"
|
2743
2965
|
msgstr ""
|
2744
2966
|
|
@@ -2748,6 +2970,9 @@ msgstr ""
|
|
2748
2970
|
msgid "Import-only content views can not be published directly"
|
2749
2971
|
msgstr ""
|
2750
2972
|
|
2973
|
+
msgid "Import/Export"
|
2974
|
+
msgstr ""
|
2975
|
+
|
2751
2976
|
msgid "Important"
|
2752
2977
|
msgstr ""
|
2753
2978
|
|
@@ -2769,6 +2994,9 @@ msgstr ""
|
|
2769
2994
|
msgid "Include all RPMs with no errata."
|
2770
2995
|
msgstr ""
|
2771
2996
|
|
2997
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2998
|
+
msgstr ""
|
2999
|
+
|
2772
3000
|
msgid "Include filter"
|
2773
3001
|
msgstr ""
|
2774
3002
|
|
@@ -2829,6 +3057,9 @@ msgstr ""
|
|
2829
3057
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2830
3058
|
msgstr ""
|
2831
3059
|
|
3060
|
+
msgid "Install"
|
3061
|
+
msgstr ""
|
3062
|
+
|
2832
3063
|
msgid "Install Applicable Errata"
|
2833
3064
|
msgstr ""
|
2834
3065
|
|
@@ -2838,6 +3069,9 @@ msgstr ""
|
|
2838
3069
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2839
3070
|
msgstr ""
|
2840
3071
|
|
3072
|
+
msgid "Install errata using scoped search query"
|
3073
|
+
msgstr ""
|
3074
|
+
|
2841
3075
|
msgid "Install errata via Katello interface"
|
2842
3076
|
msgstr ""
|
2843
3077
|
|
@@ -2862,19 +3096,31 @@ msgstr ""
|
|
2862
3096
|
msgid "Install package via Katello interface"
|
2863
3097
|
msgstr ""
|
2864
3098
|
|
3099
|
+
msgid "Install packages"
|
3100
|
+
msgstr ""
|
3101
|
+
|
2865
3102
|
msgid "Install packages remotely using katello-agent. %s"
|
2866
3103
|
msgstr ""
|
2867
3104
|
|
2868
|
-
msgid "
|
3105
|
+
msgid "Install packages via Katello interface"
|
3106
|
+
msgstr ""
|
3107
|
+
|
3108
|
+
msgid "Install via customized remote execution"
|
3109
|
+
msgstr ""
|
3110
|
+
|
3111
|
+
msgid "Install via katello-agent"
|
3112
|
+
msgstr ""
|
3113
|
+
|
3114
|
+
msgid "Install via remote execution"
|
2869
3115
|
msgstr ""
|
2870
3116
|
|
2871
|
-
msgid "Installable
|
3117
|
+
msgid "Installable"
|
2872
3118
|
msgstr ""
|
2873
3119
|
|
2874
|
-
msgid "Installable errata
|
3120
|
+
msgid "Installable errata"
|
2875
3121
|
msgstr ""
|
2876
3122
|
|
2877
|
-
msgid "Installable errata
|
3123
|
+
msgid "Installable errata from content view"
|
2878
3124
|
msgstr ""
|
2879
3125
|
|
2880
3126
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2886,10 +3132,22 @@ msgstr ""
|
|
2886
3132
|
msgid "Installation of package(s) requested: %{packages}"
|
2887
3133
|
msgstr ""
|
2888
3134
|
|
3135
|
+
msgid "Installation status"
|
3136
|
+
msgstr ""
|
3137
|
+
|
2889
3138
|
msgid "Installed Packages"
|
2890
3139
|
msgstr "நிறுவப்பட்ட தொகுப்புகள்"
|
2891
3140
|
|
2892
|
-
msgid "Installed
|
3141
|
+
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."
|
3142
|
+
msgstr ""
|
3143
|
+
|
3144
|
+
msgid "Installed products"
|
3145
|
+
msgstr ""
|
3146
|
+
|
3147
|
+
msgid "Installed profile"
|
3148
|
+
msgstr ""
|
3149
|
+
|
3150
|
+
msgid "Installed version"
|
2893
3151
|
msgstr ""
|
2894
3152
|
|
2895
3153
|
msgid "Installing Erratum..."
|
@@ -2970,6 +3228,9 @@ msgstr ""
|
|
2970
3228
|
msgid "Invalid params provided - date_type must be one of %s"
|
2971
3229
|
msgstr ""
|
2972
3230
|
|
3231
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3232
|
+
msgstr ""
|
3233
|
+
|
2973
3234
|
msgid "Invalid value specified for Container Image repositories."
|
2974
3235
|
msgstr ""
|
2975
3236
|
|
@@ -2982,6 +3243,12 @@ msgstr ""
|
|
2982
3243
|
msgid "Issued"
|
2983
3244
|
msgstr ""
|
2984
3245
|
|
3246
|
+
msgid "Issued from"
|
3247
|
+
msgstr ""
|
3248
|
+
|
3249
|
+
msgid "Job ${description} has started."
|
3250
|
+
msgstr ""
|
3251
|
+
|
2985
3252
|
msgid "Katello ID of local pool to update"
|
2986
3253
|
msgstr ""
|
2987
3254
|
|
@@ -2994,6 +3261,12 @@ msgstr ""
|
|
2994
3261
|
msgid "Katello: Install Package Group"
|
2995
3262
|
msgstr ""
|
2996
3263
|
|
3264
|
+
msgid "Katello: Install errata by search query"
|
3265
|
+
msgstr ""
|
3266
|
+
|
3267
|
+
msgid "Katello: Install packages by search query"
|
3268
|
+
msgstr ""
|
3269
|
+
|
2997
3270
|
msgid "Katello: Module Stream Actions"
|
2998
3271
|
msgstr ""
|
2999
3272
|
|
@@ -3003,6 +3276,9 @@ msgstr ""
|
|
3003
3276
|
msgid "Katello: Remove Package Group"
|
3004
3277
|
msgstr ""
|
3005
3278
|
|
3279
|
+
msgid "Katello: Remove Packages by search query"
|
3280
|
+
msgstr ""
|
3281
|
+
|
3006
3282
|
msgid "Katello: Resolve Traces"
|
3007
3283
|
msgstr ""
|
3008
3284
|
|
@@ -3015,6 +3291,9 @@ msgstr ""
|
|
3015
3291
|
msgid "Katello: Update Package Group"
|
3016
3292
|
msgstr ""
|
3017
3293
|
|
3294
|
+
msgid "Katello: Update Packages by search query"
|
3295
|
+
msgstr ""
|
3296
|
+
|
3018
3297
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3019
3298
|
msgstr ""
|
3020
3299
|
|
@@ -3036,6 +3315,9 @@ msgstr ""
|
|
3036
3315
|
msgid "Label of the content"
|
3037
3316
|
msgstr ""
|
3038
3317
|
|
3318
|
+
msgid "Label of the content view"
|
3319
|
+
msgstr ""
|
3320
|
+
|
3039
3321
|
msgid "Last published"
|
3040
3322
|
msgstr ""
|
3041
3323
|
|
@@ -3054,13 +3336,10 @@ msgstr ""
|
|
3054
3336
|
msgid "Learn more about adding Subscription Manifests"
|
3055
3337
|
msgstr ""
|
3056
3338
|
|
3057
|
-
msgid "
|
3058
|
-
msgstr ""
|
3059
|
-
|
3060
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3339
|
+
msgid "Less than"
|
3061
3340
|
msgstr ""
|
3062
3341
|
|
3063
|
-
msgid "
|
3342
|
+
msgid "Library"
|
3064
3343
|
msgstr ""
|
3065
3344
|
|
3066
3345
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3105,9 +3384,15 @@ msgstr ""
|
|
3105
3384
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3106
3385
|
msgstr ""
|
3107
3386
|
|
3387
|
+
msgid "Lifecycle environment: {lce}"
|
3388
|
+
msgstr ""
|
3389
|
+
|
3108
3390
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3109
3391
|
msgstr ""
|
3110
3392
|
|
3393
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3394
|
+
msgstr ""
|
3395
|
+
|
3111
3396
|
msgid "Limit content to just that available in the activation key's content view version"
|
3112
3397
|
msgstr ""
|
3113
3398
|
|
@@ -3216,6 +3501,9 @@ msgstr ""
|
|
3216
3501
|
msgid "List of Products for sync plan"
|
3217
3502
|
msgstr ""
|
3218
3503
|
|
3504
|
+
msgid "List of alternate_content_sources"
|
3505
|
+
msgstr ""
|
3506
|
+
|
3219
3507
|
msgid "List of component content view version ids for composite views"
|
3220
3508
|
msgstr ""
|
3221
3509
|
|
@@ -3312,6 +3600,12 @@ msgstr ""
|
|
3312
3600
|
msgid "List of subscription products in an activation key"
|
3313
3601
|
msgstr ""
|
3314
3602
|
|
3603
|
+
msgid "List of versions to exclude and not run an action on"
|
3604
|
+
msgstr ""
|
3605
|
+
|
3606
|
+
msgid "List of versions to perform an action on"
|
3607
|
+
msgstr ""
|
3608
|
+
|
3315
3609
|
msgid "List organization subscriptions"
|
3316
3610
|
msgstr ""
|
3317
3611
|
|
@@ -3357,6 +3651,12 @@ msgstr ""
|
|
3357
3651
|
msgid "Loading versions"
|
3358
3652
|
msgstr ""
|
3359
3653
|
|
3654
|
+
msgid "Loading..."
|
3655
|
+
msgstr ""
|
3656
|
+
|
3657
|
+
msgid "Low"
|
3658
|
+
msgstr ""
|
3659
|
+
|
3360
3660
|
msgid "Make copy of a content view"
|
3361
3661
|
msgstr ""
|
3362
3662
|
|
@@ -3414,6 +3714,9 @@ msgstr ""
|
|
3414
3714
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3415
3715
|
msgstr ""
|
3416
3716
|
|
3717
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3718
|
+
msgstr ""
|
3719
|
+
|
3417
3720
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3418
3721
|
msgstr ""
|
3419
3722
|
|
@@ -3480,6 +3783,9 @@ msgstr ""
|
|
3480
3783
|
msgid "Module streams"
|
3481
3784
|
msgstr ""
|
3482
3785
|
|
3786
|
+
msgid "Module streams will appear here when available."
|
3787
|
+
msgstr ""
|
3788
|
+
|
3483
3789
|
msgid "Multi-entitlement"
|
3484
3790
|
msgstr ""
|
3485
3791
|
|
@@ -3505,15 +3811,24 @@ msgid ""
|
|
3505
3811
|
" %{repos}"
|
3506
3812
|
msgstr ""
|
3507
3813
|
|
3814
|
+
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."
|
3815
|
+
msgstr ""
|
3816
|
+
|
3508
3817
|
msgid "Name"
|
3509
3818
|
msgstr ""
|
3510
3819
|
|
3820
|
+
msgid "Name is a required parameter."
|
3821
|
+
msgstr ""
|
3822
|
+
|
3511
3823
|
msgid "Name of new activation key"
|
3512
3824
|
msgstr ""
|
3513
3825
|
|
3514
3826
|
msgid "Name of the Content Credential"
|
3515
3827
|
msgstr ""
|
3516
3828
|
|
3829
|
+
msgid "Name of the alternate content source"
|
3830
|
+
msgstr ""
|
3831
|
+
|
3517
3832
|
msgid "Name of the content view"
|
3518
3833
|
msgstr ""
|
3519
3834
|
|
@@ -3535,6 +3850,9 @@ msgstr ""
|
|
3535
3850
|
msgid "Nest"
|
3536
3851
|
msgstr ""
|
3537
3852
|
|
3853
|
+
msgid "Network Sync"
|
3854
|
+
msgstr ""
|
3855
|
+
|
3538
3856
|
msgid "Never Synced"
|
3539
3857
|
msgstr ""
|
3540
3858
|
|
@@ -3601,10 +3919,19 @@ msgstr ""
|
|
3601
3919
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3602
3920
|
msgstr ""
|
3603
3921
|
|
3604
|
-
msgid "No applicable errata"
|
3922
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3605
3923
|
msgstr ""
|
3606
3924
|
|
3607
|
-
msgid "No
|
3925
|
+
msgid "No action required"
|
3926
|
+
msgstr ""
|
3927
|
+
|
3928
|
+
msgid "No applicable errata"
|
3929
|
+
msgstr ""
|
3930
|
+
|
3931
|
+
msgid "No applicable errata for %s, skipping"
|
3932
|
+
msgstr ""
|
3933
|
+
|
3934
|
+
msgid "No applications to restart"
|
3608
3935
|
msgstr ""
|
3609
3936
|
|
3610
3937
|
msgid "No artifacts to show"
|
@@ -3628,6 +3955,9 @@ msgstr ""
|
|
3628
3955
|
msgid "No content views available"
|
3629
3956
|
msgstr ""
|
3630
3957
|
|
3958
|
+
msgid "No content views available for the selected environment"
|
3959
|
+
msgstr ""
|
3960
|
+
|
3631
3961
|
msgid "No content views belong to ${label}"
|
3632
3962
|
msgstr ""
|
3633
3963
|
|
@@ -3637,6 +3967,9 @@ msgstr ""
|
|
3637
3967
|
msgid "No description"
|
3638
3968
|
msgstr ""
|
3639
3969
|
|
3970
|
+
msgid "No description provided"
|
3971
|
+
msgstr ""
|
3972
|
+
|
3640
3973
|
msgid "No enabled repositories match your search criteria."
|
3641
3974
|
msgstr ""
|
3642
3975
|
|
@@ -3661,6 +3994,9 @@ msgstr ""
|
|
3661
3994
|
msgid "No file uploaded"
|
3662
3995
|
msgstr ""
|
3663
3996
|
|
3997
|
+
msgid "No host collections"
|
3998
|
+
msgstr ""
|
3999
|
+
|
3664
4000
|
msgid "No host collections found."
|
3665
4001
|
msgstr ""
|
3666
4002
|
|
@@ -3670,6 +4006,9 @@ msgstr ""
|
|
3670
4006
|
msgid "No hosts registered with subscription-manager found in selection."
|
3671
4007
|
msgstr ""
|
3672
4008
|
|
4009
|
+
msgid "No hosts with content source found!"
|
4010
|
+
msgstr ""
|
4011
|
+
|
3673
4012
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3674
4013
|
msgstr ""
|
3675
4014
|
|
@@ -3694,6 +4033,9 @@ msgstr ""
|
|
3694
4033
|
msgid "No matching activation keys found."
|
3695
4034
|
msgstr ""
|
3696
4035
|
|
4036
|
+
msgid "No matching alternate content sources found"
|
4037
|
+
msgstr ""
|
4038
|
+
|
3697
4039
|
msgid "No matching content views found"
|
3698
4040
|
msgstr ""
|
3699
4041
|
|
@@ -3709,6 +4051,9 @@ msgstr ""
|
|
3709
4051
|
msgid "No matching history record found"
|
3710
4052
|
msgstr ""
|
3711
4053
|
|
4054
|
+
msgid "No matching host collections found"
|
4055
|
+
msgstr ""
|
4056
|
+
|
3712
4057
|
msgid "No matching hosts found."
|
3713
4058
|
msgstr ""
|
3714
4059
|
|
@@ -3739,6 +4084,12 @@ msgstr ""
|
|
3739
4084
|
msgid "No packages"
|
3740
4085
|
msgstr ""
|
3741
4086
|
|
4087
|
+
msgid "No packages available to install"
|
4088
|
+
msgstr ""
|
4089
|
+
|
4090
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4091
|
+
msgstr ""
|
4092
|
+
|
3742
4093
|
msgid "No packages removed"
|
3743
4094
|
msgstr "தொகுப்புகள் எதுவும் நீக்கப்படவில்லை"
|
3744
4095
|
|
@@ -3760,9 +4111,6 @@ msgstr ""
|
|
3760
4111
|
msgid "No products are enabled."
|
3761
4112
|
msgstr ""
|
3762
4113
|
|
3763
|
-
msgid "No profiles to show"
|
3764
|
-
msgstr ""
|
3765
|
-
|
3766
4114
|
msgid "No pulp workers running."
|
3767
4115
|
msgstr ""
|
3768
4116
|
|
@@ -3829,9 +4177,6 @@ msgstr "ஒன்றுமில்லாத"
|
|
3829
4177
|
msgid "None provided"
|
3830
4178
|
msgstr ""
|
3831
4179
|
|
3832
|
-
msgid "Not Specified"
|
3833
|
-
msgstr ""
|
3834
|
-
|
3835
4180
|
msgid "Not a number"
|
3836
4181
|
msgstr ""
|
3837
4182
|
|
@@ -3844,6 +4189,9 @@ msgstr ""
|
|
3844
4189
|
msgid "Not running"
|
3845
4190
|
msgstr ""
|
3846
4191
|
|
4192
|
+
msgid "Not specified"
|
4193
|
+
msgstr ""
|
4194
|
+
|
3847
4195
|
msgid "Not yet published"
|
3848
4196
|
msgstr ""
|
3849
4197
|
|
@@ -3943,9 +4291,6 @@ msgstr ""
|
|
3943
4291
|
msgid "Organization Information not provided."
|
3944
4292
|
msgstr ""
|
3945
4293
|
|
3946
|
-
msgid "Organization Label"
|
3947
|
-
msgstr ""
|
3948
|
-
|
3949
4294
|
msgid "Organization cannot be blank."
|
3950
4295
|
msgstr "நிறுவனம் காலியாக இருக்காது."
|
3951
4296
|
|
@@ -4150,9 +4495,6 @@ msgstr ""
|
|
4150
4495
|
msgid "Packages"
|
4151
4496
|
msgstr "தொகுப்புகள்"
|
4152
4497
|
|
4153
|
-
msgid "Packages management functionality on this page is incomplete"
|
4154
|
-
msgstr ""
|
4155
|
-
|
4156
4498
|
msgid "Packages must be provided"
|
4157
4499
|
msgstr "தொகுப்புகள் வழங்கப்பட வேண்டும்"
|
4158
4500
|
|
@@ -4174,7 +4516,7 @@ msgstr ""
|
|
4174
4516
|
msgid "Password"
|
4175
4517
|
msgstr ""
|
4176
4518
|
|
4177
|
-
msgid "Password for authentication"
|
4519
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4178
4520
|
msgstr ""
|
4179
4521
|
|
4180
4522
|
msgid "Password of the upstream authentication token."
|
@@ -4195,6 +4537,9 @@ msgstr ""
|
|
4195
4537
|
msgid "Path for ssl key used for pulp server auth"
|
4196
4538
|
msgstr ""
|
4197
4539
|
|
4540
|
+
msgid "Path suffixes for finding alternate content"
|
4541
|
+
msgstr ""
|
4542
|
+
|
4198
4543
|
msgid "Paused"
|
4199
4544
|
msgstr ""
|
4200
4545
|
|
@@ -4213,6 +4558,12 @@ msgstr ""
|
|
4213
4558
|
msgid "Performs a full-export of the repositories in library."
|
4214
4559
|
msgstr ""
|
4215
4560
|
|
4561
|
+
msgid "Performs a full-export of the repository in library."
|
4562
|
+
msgstr ""
|
4563
|
+
|
4564
|
+
msgid "Performs a incremental-export of the repository in library."
|
4565
|
+
msgstr ""
|
4566
|
+
|
4216
4567
|
msgid "Performs an incremental-export of a content view version."
|
4217
4568
|
msgstr ""
|
4218
4569
|
|
@@ -4246,6 +4597,12 @@ msgstr ""
|
|
4246
4597
|
msgid "Please select a content source before assigning a kickstart repository"
|
4247
4598
|
msgstr ""
|
4248
4599
|
|
4600
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4601
|
+
msgstr ""
|
4602
|
+
|
4603
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4604
|
+
msgstr ""
|
4605
|
+
|
4249
4606
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4250
4607
|
msgstr ""
|
4251
4608
|
|
@@ -4267,9 +4624,39 @@ msgstr ""
|
|
4267
4624
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4268
4625
|
msgstr ""
|
4269
4626
|
|
4627
|
+
msgid "Prefer registered through proxy for remote execution"
|
4628
|
+
msgstr ""
|
4629
|
+
|
4630
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4631
|
+
msgstr ""
|
4632
|
+
|
4633
|
+
msgid "Prevent from further updates"
|
4634
|
+
msgstr ""
|
4635
|
+
|
4270
4636
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4271
4637
|
msgstr ""
|
4272
4638
|
|
4639
|
+
msgid "Problem searching"
|
4640
|
+
msgstr ""
|
4641
|
+
|
4642
|
+
msgid "Problem searching errata"
|
4643
|
+
msgstr ""
|
4644
|
+
|
4645
|
+
msgid "Problem searching host collections"
|
4646
|
+
msgstr ""
|
4647
|
+
|
4648
|
+
msgid "Problem searching module streams"
|
4649
|
+
msgstr ""
|
4650
|
+
|
4651
|
+
msgid "Problem searching packages"
|
4652
|
+
msgstr ""
|
4653
|
+
|
4654
|
+
msgid "Problem searching repository sets"
|
4655
|
+
msgstr ""
|
4656
|
+
|
4657
|
+
msgid "Problem searching traces"
|
4658
|
+
msgstr ""
|
4659
|
+
|
4273
4660
|
msgid "Processing metadata"
|
4274
4661
|
msgstr ""
|
4275
4662
|
|
@@ -4326,9 +4713,6 @@ msgstr ""
|
|
4326
4713
|
msgid "Products"
|
4327
4714
|
msgstr "தயாரிப்புகள்"
|
4328
4715
|
|
4329
|
-
msgid "Profiles"
|
4330
|
-
msgstr ""
|
4331
|
-
|
4332
4716
|
msgid "Promote"
|
4333
4717
|
msgstr ""
|
4334
4718
|
|
@@ -4356,6 +4740,9 @@ msgstr ""
|
|
4356
4740
|
msgid "Promotion to Environment"
|
4357
4741
|
msgstr ""
|
4358
4742
|
|
4743
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4744
|
+
msgstr ""
|
4745
|
+
|
4359
4746
|
msgid "Provided Products"
|
4360
4747
|
msgstr ""
|
4361
4748
|
|
@@ -4518,6 +4905,9 @@ msgstr ""
|
|
4518
4905
|
msgid "RPM name"
|
4519
4906
|
msgstr ""
|
4520
4907
|
|
4908
|
+
msgid "RPM packages"
|
4909
|
+
msgstr ""
|
4910
|
+
|
4521
4911
|
msgid "RPMs"
|
4522
4912
|
msgstr "RPMகள்"
|
4523
4913
|
|
@@ -4527,9 +4917,15 @@ msgstr ""
|
|
4527
4917
|
msgid "Realm IDs"
|
4528
4918
|
msgstr ""
|
4529
4919
|
|
4920
|
+
msgid "Reassign affected activation key"
|
4921
|
+
msgstr ""
|
4922
|
+
|
4530
4923
|
msgid "Reassign affected activation keys"
|
4531
4924
|
msgstr ""
|
4532
4925
|
|
4926
|
+
msgid "Reassign affected host"
|
4927
|
+
msgstr ""
|
4928
|
+
|
4533
4929
|
msgid "Reassign affected hosts"
|
4534
4930
|
msgstr ""
|
4535
4931
|
|
@@ -4557,6 +4953,9 @@ msgstr ""
|
|
4557
4953
|
msgid "Recommended Repositories"
|
4558
4954
|
msgstr ""
|
4559
4955
|
|
4956
|
+
msgid "Red Hat CDN"
|
4957
|
+
msgstr ""
|
4958
|
+
|
4560
4959
|
msgid "Red Hat CDN URL"
|
4561
4960
|
msgstr ""
|
4562
4961
|
|
@@ -4566,6 +4965,15 @@ msgstr "Red Hat தொகுப்பதிவகங்கள்"
|
|
4566
4965
|
msgid "Red Hat Repositories page"
|
4567
4966
|
msgstr ""
|
4568
4967
|
|
4968
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4969
|
+
msgstr ""
|
4970
|
+
|
4971
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4972
|
+
msgstr ""
|
4973
|
+
|
4974
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4975
|
+
msgstr ""
|
4976
|
+
|
4569
4977
|
msgid "Red Hat products cannot be manipulated."
|
4570
4978
|
msgstr ""
|
4571
4979
|
|
@@ -4596,6 +5004,18 @@ msgstr ""
|
|
4596
5004
|
msgid "Register host '%s' before attaching subscriptions"
|
4597
5005
|
msgstr ""
|
4598
5006
|
|
5007
|
+
msgid "Registered by"
|
5008
|
+
msgstr ""
|
5009
|
+
|
5010
|
+
msgid "Registered on"
|
5011
|
+
msgstr ""
|
5012
|
+
|
5013
|
+
msgid "Registered through"
|
5014
|
+
msgstr ""
|
5015
|
+
|
5016
|
+
msgid "Registration details"
|
5017
|
+
msgstr ""
|
5018
|
+
|
4599
5019
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4600
5020
|
msgstr ""
|
4601
5021
|
|
@@ -4686,12 +5106,21 @@ msgstr ""
|
|
4686
5106
|
msgid "Remove from environments"
|
4687
5107
|
msgstr ""
|
4688
5108
|
|
5109
|
+
msgid "Remove host from collections"
|
5110
|
+
msgstr ""
|
5111
|
+
|
5112
|
+
msgid "Remove host from host collections"
|
5113
|
+
msgstr ""
|
5114
|
+
|
4689
5115
|
msgid "Remove hosts from the host collection"
|
4690
5116
|
msgstr ""
|
4691
5117
|
|
4692
5118
|
msgid "Remove lifecycle environments from the smart proxy"
|
4693
5119
|
msgstr ""
|
4694
5120
|
|
5121
|
+
msgid "Remove module stream"
|
5122
|
+
msgstr ""
|
5123
|
+
|
4695
5124
|
msgid "Remove one or more host collections from one or more hosts"
|
4696
5125
|
msgstr ""
|
4697
5126
|
|
@@ -4713,6 +5142,9 @@ msgstr ""
|
|
4713
5142
|
msgid "Remove package via Katello interface"
|
4714
5143
|
msgstr ""
|
4715
5144
|
|
5145
|
+
msgid "Remove packages via Katello interface"
|
5146
|
+
msgstr ""
|
5147
|
+
|
4716
5148
|
msgid "Remove products from sync plan"
|
4717
5149
|
msgstr ""
|
4718
5150
|
|
@@ -4752,6 +5184,9 @@ msgstr ""
|
|
4752
5184
|
msgid "Repositories"
|
4753
5185
|
msgstr "தொகுப்பதிவகங்கள்"
|
4754
5186
|
|
5187
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5188
|
+
msgstr ""
|
5189
|
+
|
4755
5190
|
msgid "Repositories from published Content Views are not allowed."
|
4756
5191
|
msgstr ""
|
4757
5192
|
|
@@ -4827,9 +5262,6 @@ msgstr ""
|
|
4827
5262
|
msgid "Repository sets will appear here when available."
|
4828
5263
|
msgstr ""
|
4829
5264
|
|
4830
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4831
|
-
msgstr ""
|
4832
|
-
|
4833
5265
|
msgid "Republish Repositories of %{name} %{version}"
|
4834
5266
|
msgstr ""
|
4835
5267
|
|
@@ -4851,12 +5283,21 @@ msgstr ""
|
|
4851
5283
|
msgid "Requires Virt-Who"
|
4852
5284
|
msgstr ""
|
4853
5285
|
|
5286
|
+
msgid "Reset"
|
5287
|
+
msgstr ""
|
5288
|
+
|
4854
5289
|
msgid "Reset filters"
|
4855
5290
|
msgstr ""
|
4856
5291
|
|
5292
|
+
msgid "Reset module stream"
|
5293
|
+
msgstr ""
|
5294
|
+
|
4857
5295
|
msgid "Reset to default"
|
4858
5296
|
msgstr ""
|
4859
5297
|
|
5298
|
+
msgid "Reset to the default state"
|
5299
|
+
msgstr ""
|
5300
|
+
|
4860
5301
|
msgid "Resolve traces"
|
4861
5302
|
msgstr ""
|
4862
5303
|
|
@@ -4881,7 +5322,7 @@ msgstr ""
|
|
4881
5322
|
msgid "Restart via remote execution"
|
4882
5323
|
msgstr ""
|
4883
5324
|
|
4884
|
-
msgid "Restrict
|
5325
|
+
msgid "Restrict composite content view promotion"
|
4885
5326
|
msgstr ""
|
4886
5327
|
|
4887
5328
|
msgid "Result"
|
@@ -4971,7 +5412,10 @@ msgstr ""
|
|
4971
5412
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4972
5413
|
msgstr ""
|
4973
5414
|
|
4974
|
-
msgid "Review
|
5415
|
+
msgid "Review affected environment"
|
5416
|
+
msgstr ""
|
5417
|
+
|
5418
|
+
msgid "Review affected environments"
|
4975
5419
|
msgstr ""
|
4976
5420
|
|
4977
5421
|
msgid "Review details"
|
@@ -4989,15 +5433,15 @@ msgstr ""
|
|
4989
5433
|
msgid "Roles"
|
4990
5434
|
msgstr ""
|
4991
5435
|
|
4992
|
-
msgid "Rpm packages"
|
4993
|
-
msgstr ""
|
4994
|
-
|
4995
5436
|
msgid "Rules to be added"
|
4996
5437
|
msgstr ""
|
4997
5438
|
|
4998
5439
|
msgid "Run Sync Plan:"
|
4999
5440
|
msgstr ""
|
5000
5441
|
|
5442
|
+
msgid "Run job invocation"
|
5443
|
+
msgstr ""
|
5444
|
+
|
5001
5445
|
msgid "Running"
|
5002
5446
|
msgstr "இயங்குகிறது"
|
5003
5447
|
|
@@ -5034,6 +5478,12 @@ msgstr ""
|
|
5034
5478
|
msgid "Search Query"
|
5035
5479
|
msgstr ""
|
5036
5480
|
|
5481
|
+
msgid "Search available packages"
|
5482
|
+
msgstr ""
|
5483
|
+
|
5484
|
+
msgid "Search host collections"
|
5485
|
+
msgstr ""
|
5486
|
+
|
5037
5487
|
msgid "Search pattern (defaults to '*')"
|
5038
5488
|
msgstr ""
|
5039
5489
|
|
@@ -5049,6 +5499,9 @@ msgstr ""
|
|
5049
5499
|
msgid "Search string for hosts to perform an action on"
|
5050
5500
|
msgstr ""
|
5051
5501
|
|
5502
|
+
msgid "Search string for versions to perform an action on"
|
5503
|
+
msgstr ""
|
5504
|
+
|
5052
5505
|
msgid "Security"
|
5053
5506
|
msgstr "பாதுகாப்பு"
|
5054
5507
|
|
@@ -5061,6 +5514,9 @@ msgstr ""
|
|
5061
5514
|
msgid "Select"
|
5062
5515
|
msgstr ""
|
5063
5516
|
|
5517
|
+
msgid "Select ..."
|
5518
|
+
msgstr ""
|
5519
|
+
|
5064
5520
|
msgid "Select All"
|
5065
5521
|
msgstr "அனைத்தையும் தேர்ந்தெடு"
|
5066
5522
|
|
@@ -5079,6 +5535,12 @@ msgstr ""
|
|
5079
5535
|
msgid "Select a content view"
|
5080
5536
|
msgstr ""
|
5081
5537
|
|
5538
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5539
|
+
msgstr ""
|
5540
|
+
|
5541
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5542
|
+
msgstr ""
|
5543
|
+
|
5082
5544
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5083
5545
|
msgstr ""
|
5084
5546
|
|
@@ -5094,6 +5556,12 @@ msgstr ""
|
|
5094
5556
|
msgid "Select an Organization"
|
5095
5557
|
msgstr ""
|
5096
5558
|
|
5559
|
+
msgid "Select an environment"
|
5560
|
+
msgstr ""
|
5561
|
+
|
5562
|
+
msgid "Select an environment above"
|
5563
|
+
msgstr ""
|
5564
|
+
|
5097
5565
|
msgid "Select an organization"
|
5098
5566
|
msgstr ""
|
5099
5567
|
|
@@ -5106,6 +5574,15 @@ msgstr ""
|
|
5106
5574
|
msgid "Select content view"
|
5107
5575
|
msgstr ""
|
5108
5576
|
|
5577
|
+
msgid "Select environment"
|
5578
|
+
msgstr ""
|
5579
|
+
|
5580
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5581
|
+
msgstr ""
|
5582
|
+
|
5583
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5584
|
+
msgstr ""
|
5585
|
+
|
5109
5586
|
msgid "Select hosts to assign to %s"
|
5110
5587
|
msgstr ""
|
5111
5588
|
|
@@ -5118,6 +5595,9 @@ msgstr ""
|
|
5118
5595
|
msgid "Select one"
|
5119
5596
|
msgstr ""
|
5120
5597
|
|
5598
|
+
msgid "Select packages to install to the host {hostName}."
|
5599
|
+
msgstr ""
|
5600
|
+
|
5121
5601
|
msgid "Select page"
|
5122
5602
|
msgstr ""
|
5123
5603
|
|
@@ -5136,15 +5616,15 @@ msgstr ""
|
|
5136
5616
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5137
5617
|
msgstr ""
|
5138
5618
|
|
5139
|
-
msgid "Service Level"
|
5140
|
-
msgstr ""
|
5141
|
-
|
5142
5619
|
msgid "Service Level %s"
|
5143
5620
|
msgstr "சேவை நிலை %s"
|
5144
5621
|
|
5145
5622
|
msgid "Service Level (SLA)"
|
5146
5623
|
msgstr ""
|
5147
5624
|
|
5625
|
+
msgid "Service level"
|
5626
|
+
msgstr ""
|
5627
|
+
|
5148
5628
|
msgid "Service level of host"
|
5149
5629
|
msgstr ""
|
5150
5630
|
|
@@ -5157,6 +5637,9 @@ msgstr ""
|
|
5157
5637
|
msgid "Set content overrides to one or more hosts"
|
5158
5638
|
msgstr ""
|
5159
5639
|
|
5640
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5641
|
+
msgstr ""
|
5642
|
+
|
5160
5643
|
msgid "Set true to remove an override and reset it to 'default'"
|
5161
5644
|
msgstr ""
|
5162
5645
|
|
@@ -5211,12 +5694,21 @@ msgstr ""
|
|
5211
5694
|
msgid "Show a sync plan"
|
5212
5695
|
msgstr ""
|
5213
5696
|
|
5697
|
+
msgid "Show affected activation keys"
|
5698
|
+
msgstr ""
|
5699
|
+
|
5700
|
+
msgid "Show affected hosts"
|
5701
|
+
msgstr ""
|
5702
|
+
|
5214
5703
|
msgid "Show all"
|
5215
5704
|
msgstr ""
|
5216
5705
|
|
5217
5706
|
msgid "Show an activation key"
|
5218
5707
|
msgstr ""
|
5219
5708
|
|
5709
|
+
msgid "Show an alternate content source"
|
5710
|
+
msgstr ""
|
5711
|
+
|
5220
5712
|
msgid "Show an environment"
|
5221
5713
|
msgstr ""
|
5222
5714
|
|
@@ -5292,6 +5784,9 @@ msgstr ""
|
|
5292
5784
|
msgid "Solve dependencies"
|
5293
5785
|
msgstr ""
|
5294
5786
|
|
5787
|
+
msgid "Some hosts are ignored!"
|
5788
|
+
msgstr ""
|
5789
|
+
|
5295
5790
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5296
5791
|
msgstr ""
|
5297
5792
|
|
@@ -5319,9 +5814,15 @@ msgstr ""
|
|
5319
5814
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5320
5815
|
msgstr ""
|
5321
5816
|
|
5817
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5818
|
+
msgstr ""
|
5819
|
+
|
5322
5820
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5323
5821
|
msgstr ""
|
5324
5822
|
|
5823
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5824
|
+
msgstr ""
|
5825
|
+
|
5325
5826
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5326
5827
|
msgstr ""
|
5327
5828
|
|
@@ -5340,10 +5841,10 @@ msgstr ""
|
|
5340
5841
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5341
5842
|
msgstr ""
|
5342
5843
|
|
5343
|
-
msgid "Something went wrong while getting
|
5844
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5344
5845
|
msgstr ""
|
5345
5846
|
|
5346
|
-
msgid "Something went wrong while getting
|
5847
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5347
5848
|
msgstr ""
|
5348
5849
|
|
5349
5850
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5355,9 +5856,15 @@ msgstr ""
|
|
5355
5856
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5356
5857
|
msgstr ""
|
5357
5858
|
|
5859
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5860
|
+
msgstr ""
|
5861
|
+
|
5358
5862
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5359
5863
|
msgstr ""
|
5360
5864
|
|
5865
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5866
|
+
msgstr ""
|
5867
|
+
|
5361
5868
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5362
5869
|
msgstr ""
|
5363
5870
|
|
@@ -5394,6 +5901,9 @@ msgstr ""
|
|
5394
5901
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5395
5902
|
msgstr ""
|
5396
5903
|
|
5904
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5905
|
+
msgstr ""
|
5906
|
+
|
5397
5907
|
msgid "Something went wrong! Please check server logs!"
|
5398
5908
|
msgstr ""
|
5399
5909
|
|
@@ -5404,7 +5914,7 @@ msgid "Source RPM"
|
|
5404
5914
|
msgstr ""
|
5405
5915
|
|
5406
5916
|
msgid "Source RPMs"
|
5407
|
-
msgstr ""
|
5917
|
+
msgstr "மூல RPMகள்"
|
5408
5918
|
|
5409
5919
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5410
5920
|
msgstr ""
|
@@ -5427,9 +5937,15 @@ msgstr "துக்க தேதி மற்றும் நேரம் க
|
|
5427
5937
|
msgid "Start Time"
|
5428
5938
|
msgstr "துவக்க நேரம்"
|
5429
5939
|
|
5940
|
+
msgid "Start date"
|
5941
|
+
msgstr ""
|
5942
|
+
|
5430
5943
|
msgid "Starts"
|
5431
5944
|
msgstr ""
|
5432
5945
|
|
5946
|
+
msgid "State"
|
5947
|
+
msgstr ""
|
5948
|
+
|
5433
5949
|
msgid "Status"
|
5434
5950
|
msgstr "நிலை"
|
5435
5951
|
|
@@ -5442,6 +5958,12 @@ msgstr ""
|
|
5442
5958
|
msgid "Stream"
|
5443
5959
|
msgstr ""
|
5444
5960
|
|
5961
|
+
msgid "Streamed"
|
5962
|
+
msgstr ""
|
5963
|
+
|
5964
|
+
msgid "Streams based on the host based on the installation status"
|
5965
|
+
msgstr ""
|
5966
|
+
|
5445
5967
|
msgid "Streams based on the host based on their status"
|
5446
5968
|
msgstr ""
|
5447
5969
|
|
@@ -5484,9 +6006,15 @@ msgstr ""
|
|
5484
6006
|
msgid "Subscription Status"
|
5485
6007
|
msgstr ""
|
5486
6008
|
|
6009
|
+
msgid "Subscription UUID"
|
6010
|
+
msgstr ""
|
6011
|
+
|
5487
6012
|
msgid "Subscription Watch"
|
5488
6013
|
msgstr ""
|
5489
6014
|
|
6015
|
+
msgid "Subscription connection enabled"
|
6016
|
+
msgstr ""
|
6017
|
+
|
5490
6018
|
msgid "Subscription expiration notification"
|
5491
6019
|
msgstr ""
|
5492
6020
|
|
@@ -5565,7 +6093,7 @@ msgstr ""
|
|
5565
6093
|
msgid "Sync Canceled"
|
5566
6094
|
msgstr "ஒத்திசைவு ரத்து செய்யப்பட்டது"
|
5567
6095
|
|
5568
|
-
msgid "Sync
|
6096
|
+
msgid "Sync Connect Timeout"
|
5569
6097
|
msgstr ""
|
5570
6098
|
|
5571
6099
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5589,7 +6117,13 @@ msgstr "திட்டங்களை ஒத்திசை"
|
|
5589
6117
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5590
6118
|
msgstr ""
|
5591
6119
|
|
5592
|
-
msgid "Sync Smart Proxies after
|
6120
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6121
|
+
msgstr ""
|
6122
|
+
|
6123
|
+
msgid "Sync Sock Connect Timeout"
|
6124
|
+
msgstr ""
|
6125
|
+
|
6126
|
+
msgid "Sync Sock Read Timeout"
|
5593
6127
|
msgstr ""
|
5594
6128
|
|
5595
6129
|
msgid "Sync Status"
|
@@ -5601,6 +6135,9 @@ msgstr ""
|
|
5601
6135
|
msgid "Sync Summary for %s"
|
5602
6136
|
msgstr ""
|
5603
6137
|
|
6138
|
+
msgid "Sync Total Timeout"
|
6139
|
+
msgstr ""
|
6140
|
+
|
5604
6141
|
msgid "Sync a repository"
|
5605
6142
|
msgstr ""
|
5606
6143
|
|
@@ -5670,6 +6207,9 @@ msgstr ""
|
|
5670
6207
|
msgid "System Status"
|
5671
6208
|
msgstr ""
|
5672
6209
|
|
6210
|
+
msgid "System purpose"
|
6211
|
+
msgstr ""
|
6212
|
+
|
5673
6213
|
msgid "Tag name"
|
5674
6214
|
msgstr ""
|
5675
6215
|
|
@@ -5697,6 +6237,9 @@ msgstr ""
|
|
5697
6237
|
msgid "The '%s' environment cannot contain a changeset!"
|
5698
6238
|
msgstr "'%s' சூழல் changeset எதையும் கொண்டிருக்கவில்லை!"
|
5699
6239
|
|
6240
|
+
msgid "The Alternate Content Source type"
|
6241
|
+
msgstr ""
|
6242
|
+
|
5700
6243
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5701
6244
|
msgstr ""
|
5702
6245
|
|
@@ -5709,6 +6252,9 @@ msgstr ""
|
|
5709
6252
|
msgid "The actual file contents"
|
5710
6253
|
msgstr ""
|
5711
6254
|
|
6255
|
+
msgid "The content type for the Alternate Content Source"
|
6256
|
+
msgstr ""
|
6257
|
+
|
5712
6258
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5713
6259
|
msgstr "நடப்பு நிறுவனத்தை அழிக்க முடியாது. அழிப்பதற்கு முன் ஒரு வேறுபட்ட நிறுவனத்திற்கு மாற்றவும்."
|
5714
6260
|
|
@@ -5718,7 +6264,7 @@ msgstr ""
|
|
5718
6264
|
msgid "The default content view cannot be promoted"
|
5719
6265
|
msgstr ""
|
5720
6266
|
|
5721
|
-
msgid "The default dependency solving value for new
|
6267
|
+
msgid "The default dependency solving value for new content views."
|
5722
6268
|
msgstr ""
|
5723
6269
|
|
5724
6270
|
msgid "The description for the content view version"
|
@@ -5748,6 +6294,9 @@ msgstr ""
|
|
5748
6294
|
msgid "The field to sort the data by. Defaults to the created date."
|
5749
6295
|
msgstr ""
|
5750
6296
|
|
6297
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6298
|
+
msgstr ""
|
6299
|
+
|
5751
6300
|
msgid "The following hosts have errata that apply to them: "
|
5752
6301
|
msgstr ""
|
5753
6302
|
|
@@ -5756,15 +6305,39 @@ msgid ""
|
|
5756
6305
|
" %{repos}"
|
5757
6306
|
msgstr ""
|
5758
6307
|
|
6308
|
+
msgid "The id of the content source"
|
6309
|
+
msgstr ""
|
6310
|
+
|
6311
|
+
msgid "The id of the content view"
|
6312
|
+
msgstr ""
|
6313
|
+
|
5759
6314
|
msgid "The id of the host to alter"
|
5760
6315
|
msgstr ""
|
5761
6316
|
|
6317
|
+
msgid "The id of the lifecycle environment"
|
6318
|
+
msgstr ""
|
6319
|
+
|
6320
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6321
|
+
msgstr ""
|
6322
|
+
|
5762
6323
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5763
6324
|
msgstr ""
|
5764
6325
|
|
5765
6326
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5766
6327
|
msgstr ""
|
5767
6328
|
|
6329
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6330
|
+
msgstr ""
|
6331
|
+
|
6332
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6333
|
+
msgstr ""
|
6334
|
+
|
6335
|
+
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."
|
6336
|
+
msgstr ""
|
6337
|
+
|
6338
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6339
|
+
msgstr ""
|
6340
|
+
|
5768
6341
|
msgid "The maximum number of versions of each package to keep."
|
5769
6342
|
msgstr ""
|
5770
6343
|
|
@@ -5851,9 +6424,18 @@ msgstr ""
|
|
5851
6424
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5852
6425
|
msgstr ""
|
5853
6426
|
|
6427
|
+
msgid "There are no host collections available to add."
|
6428
|
+
msgstr ""
|
6429
|
+
|
5854
6430
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5855
6431
|
msgstr "தயாரிப்புகள் அல்லது தொகுப்புதிவகங்கள் செயல்படுத்தப்படவில்லை. %{custom} அல்லது%{redhat} மூலம் செயல்படுத்த முயற்சிக்கவும்."
|
5856
6432
|
|
6433
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6434
|
+
msgstr ""
|
6435
|
+
|
6436
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6437
|
+
msgstr ""
|
6438
|
+
|
5857
6439
|
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."
|
5858
6440
|
msgstr ""
|
5859
6441
|
|
@@ -5866,6 +6448,12 @@ msgstr ""
|
|
5866
6448
|
msgid "There is nothing to see here"
|
5867
6449
|
msgstr ""
|
5868
6450
|
|
6451
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6452
|
+
msgstr ""
|
6453
|
+
|
6454
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6455
|
+
msgstr ""
|
6456
|
+
|
5869
6457
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5870
6458
|
msgstr ""
|
5871
6459
|
|
@@ -5914,13 +6502,13 @@ msgstr ""
|
|
5914
6502
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5915
6503
|
msgstr ""
|
5916
6504
|
|
5917
|
-
msgid "This host
|
6505
|
+
msgid "This host does not have any Module streams."
|
5918
6506
|
msgstr ""
|
5919
6507
|
|
5920
|
-
msgid "This host does not have any
|
6508
|
+
msgid "This host does not have any packages."
|
5921
6509
|
msgstr ""
|
5922
6510
|
|
5923
|
-
msgid "This host
|
6511
|
+
msgid "This host has errata that are applicable, but not installable."
|
5924
6512
|
msgstr ""
|
5925
6513
|
|
5926
6514
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5953,6 +6541,9 @@ msgstr ""
|
|
5953
6541
|
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}."
|
5954
6542
|
msgstr ""
|
5955
6543
|
|
6544
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6545
|
+
msgstr ""
|
6546
|
+
|
5956
6547
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5957
6548
|
msgstr ""
|
5958
6549
|
|
@@ -5986,10 +6577,10 @@ msgstr ""
|
|
5986
6577
|
msgid "Time in minutes to consider orphan content as orphaned."
|
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 finish a katello-agent action"
|
5990
6581
|
msgstr ""
|
5991
6582
|
|
5992
|
-
msgid "Time in seconds to wait for a
|
6583
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
5993
6584
|
msgstr ""
|
5994
6585
|
|
5995
6586
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
@@ -6007,9 +6598,6 @@ msgstr ""
|
|
6007
6598
|
msgid "Total steps: "
|
6008
6599
|
msgstr ""
|
6009
6600
|
|
6010
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6011
|
-
msgstr ""
|
6012
|
-
|
6013
6601
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6014
6602
|
msgstr ""
|
6015
6603
|
|
@@ -6025,6 +6613,9 @@ msgstr ""
|
|
6025
6613
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6026
6614
|
msgstr ""
|
6027
6615
|
|
6616
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6617
|
+
msgstr ""
|
6618
|
+
|
6028
6619
|
msgid "Traces that require logout cannot be restarted remotely"
|
6029
6620
|
msgstr ""
|
6030
6621
|
|
@@ -6106,9 +6697,15 @@ msgstr ""
|
|
6106
6697
|
msgid "Unable to get users"
|
6107
6698
|
msgstr ""
|
6108
6699
|
|
6700
|
+
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. "
|
6701
|
+
msgstr ""
|
6702
|
+
|
6109
6703
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6110
6704
|
msgstr ""
|
6111
6705
|
|
6706
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6707
|
+
msgstr ""
|
6708
|
+
|
6112
6709
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6113
6710
|
msgstr ""
|
6114
6711
|
|
@@ -6151,6 +6748,9 @@ msgstr ""
|
|
6151
6748
|
msgid "Unfiltered params array: %s."
|
6152
6749
|
msgstr ""
|
6153
6750
|
|
6751
|
+
msgid "Uninstall and reset"
|
6752
|
+
msgstr ""
|
6753
|
+
|
6154
6754
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6155
6755
|
msgstr ""
|
6156
6756
|
|
@@ -6205,6 +6805,9 @@ msgstr ""
|
|
6205
6805
|
msgid "Update"
|
6206
6806
|
msgstr "புதுப்பி"
|
6207
6807
|
|
6808
|
+
msgid "Update Alternate Content Source"
|
6809
|
+
msgstr ""
|
6810
|
+
|
6208
6811
|
msgid "Update CDN Configuration"
|
6209
6812
|
msgstr ""
|
6210
6813
|
|
@@ -6244,6 +6847,9 @@ msgstr ""
|
|
6244
6847
|
msgid "Update an activation key"
|
6245
6848
|
msgstr ""
|
6246
6849
|
|
6850
|
+
msgid "Update an alternate content source"
|
6851
|
+
msgstr ""
|
6852
|
+
|
6247
6853
|
msgid "Update an environment"
|
6248
6854
|
msgstr ""
|
6249
6855
|
|
@@ -6295,6 +6901,9 @@ msgstr ""
|
|
6295
6901
|
msgid "Update packages remotely using katello-agent. %s"
|
6296
6902
|
msgstr ""
|
6297
6903
|
|
6904
|
+
msgid "Update packages via Katello interface"
|
6905
|
+
msgstr ""
|
6906
|
+
|
6298
6907
|
msgid "Update redhat repository"
|
6299
6908
|
msgstr ""
|
6300
6909
|
|
@@ -6313,6 +6922,9 @@ msgstr ""
|
|
6313
6922
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6314
6923
|
msgstr ""
|
6315
6924
|
|
6925
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6926
|
+
msgstr ""
|
6927
|
+
|
6316
6928
|
msgid "Update the information about enabled repositories"
|
6317
6929
|
msgstr ""
|
6318
6930
|
|
@@ -6328,6 +6940,9 @@ msgstr ""
|
|
6328
6940
|
msgid "Updated component details"
|
6329
6941
|
msgstr ""
|
6330
6942
|
|
6943
|
+
msgid "Updated from"
|
6944
|
+
msgstr ""
|
6945
|
+
|
6331
6946
|
msgid "Updates"
|
6332
6947
|
msgstr ""
|
6333
6948
|
|
@@ -6355,7 +6970,7 @@ msgstr ""
|
|
6355
6970
|
msgid "Upgradable"
|
6356
6971
|
msgstr ""
|
6357
6972
|
|
6358
|
-
msgid "Upgradable
|
6973
|
+
msgid "Upgradable to"
|
6359
6974
|
msgstr ""
|
6360
6975
|
|
6361
6976
|
msgid "Upgrade"
|
@@ -6388,9 +7003,18 @@ msgstr ""
|
|
6388
7003
|
msgid "Upload request id"
|
6389
7004
|
msgstr ""
|
6390
7005
|
|
7006
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7007
|
+
msgstr ""
|
7008
|
+
|
7009
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7010
|
+
msgstr ""
|
7011
|
+
|
6391
7012
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6392
7013
|
msgstr ""
|
6393
7014
|
|
7015
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7016
|
+
msgstr ""
|
7017
|
+
|
6394
7018
|
msgid "Upstream identity certificate not available"
|
6395
7019
|
msgstr ""
|
6396
7020
|
|
@@ -6403,15 +7027,12 @@ msgstr ""
|
|
6403
7027
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6404
7028
|
msgstr ""
|
6405
7029
|
|
6406
|
-
msgid "Upstream organization to sync CDN content from"
|
7030
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6407
7031
|
msgstr ""
|
6408
7032
|
|
6409
7033
|
msgid "Upstream password requires upstream username be set."
|
6410
7034
|
msgstr ""
|
6411
7035
|
|
6412
|
-
msgid "Upstream server to sync CDN content from"
|
6413
|
-
msgstr ""
|
6414
|
-
|
6415
7036
|
msgid "Upstream username and password may only be set on custom repositories."
|
6416
7037
|
msgstr ""
|
6417
7038
|
|
@@ -6454,7 +7075,7 @@ msgstr ""
|
|
6454
7075
|
msgid "Username"
|
6455
7076
|
msgstr ""
|
6456
7077
|
|
6457
|
-
msgid "Username for authentication"
|
7078
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6458
7079
|
msgstr ""
|
6459
7080
|
|
6460
7081
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6466,7 +7087,7 @@ msgstr ""
|
|
6466
7087
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6467
7088
|
msgstr ""
|
6468
7089
|
|
6469
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7090
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6470
7091
|
msgstr ""
|
6471
7092
|
|
6472
7093
|
msgid "Valid"
|
@@ -6511,6 +7132,15 @@ msgstr ""
|
|
6511
7132
|
msgid "Versions"
|
6512
7133
|
msgstr ""
|
6513
7134
|
|
7135
|
+
msgid "Versions "
|
7136
|
+
msgstr ""
|
7137
|
+
|
7138
|
+
msgid "Versions to exclusively include in the action"
|
7139
|
+
msgstr ""
|
7140
|
+
|
7141
|
+
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."
|
7142
|
+
msgstr ""
|
7143
|
+
|
6514
7144
|
msgid "Versions will appear here when the content view is published."
|
6515
7145
|
msgstr ""
|
6516
7146
|
|
@@ -6523,10 +7153,13 @@ msgstr ""
|
|
6523
7153
|
msgid "View matching content"
|
6524
7154
|
msgstr ""
|
6525
7155
|
|
6526
|
-
msgid "
|
7156
|
+
msgid "View tasks "
|
7157
|
+
msgstr ""
|
7158
|
+
|
7159
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6527
7160
|
msgstr ""
|
6528
7161
|
|
6529
|
-
msgid "
|
7162
|
+
msgid "Virtual"
|
6530
7163
|
msgstr ""
|
6531
7164
|
|
6532
7165
|
msgid "Waiting to start."
|
@@ -6535,6 +7168,9 @@ msgstr ""
|
|
6535
7168
|
msgid "Warning"
|
6536
7169
|
msgstr ""
|
6537
7170
|
|
7171
|
+
msgid "What's next?"
|
7172
|
+
msgstr ""
|
7173
|
+
|
6538
7174
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
6539
7175
|
msgstr ""
|
6540
7176
|
|
@@ -6556,7 +7192,7 @@ msgstr ""
|
|
6556
7192
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6557
7193
|
msgstr ""
|
6558
7194
|
|
6559
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7195
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6560
7196
|
msgstr ""
|
6561
7197
|
|
6562
7198
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6586,9 +7222,6 @@ msgstr ""
|
|
6586
7222
|
msgid "Yes"
|
6587
7223
|
msgstr ""
|
6588
7224
|
|
6589
|
-
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'."
|
6590
|
-
msgstr ""
|
6591
|
-
|
6592
7225
|
msgid "You are not allowed to promote to Environments %s"
|
6593
7226
|
msgstr ""
|
6594
7227
|
|
@@ -6613,6 +7246,9 @@ msgstr ""
|
|
6613
7246
|
msgid "You currently don't have any Content views."
|
6614
7247
|
msgstr ""
|
6615
7248
|
|
7249
|
+
msgid "You currently don't have any alternate content sources."
|
7250
|
+
msgstr ""
|
7251
|
+
|
6616
7252
|
msgid "You currently don't have any filters for this content view."
|
6617
7253
|
msgstr ""
|
6618
7254
|
|
@@ -6646,6 +7282,9 @@ msgstr ""
|
|
6646
7282
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6647
7283
|
msgstr ""
|
6648
7284
|
|
7285
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7286
|
+
msgstr ""
|
7287
|
+
|
6649
7288
|
msgid "You were not allowed to add %s"
|
6650
7289
|
msgstr ""
|
6651
7290
|
|
@@ -6667,6 +7306,9 @@ msgstr ""
|
|
6667
7306
|
msgid "Your search returned no matching "
|
6668
7307
|
msgstr ""
|
6669
7308
|
|
7309
|
+
msgid "Your search returned no matching Module streams."
|
7310
|
+
msgstr ""
|
7311
|
+
|
6670
7312
|
msgid "Your search returned no matching RPMs."
|
6671
7313
|
msgstr ""
|
6672
7314
|
|
@@ -6781,6 +7423,9 @@ msgstr ""
|
|
6781
7423
|
msgid "can't be blank"
|
6782
7424
|
msgstr "காலியாக இல்லை"
|
6783
7425
|
|
7426
|
+
msgid "cannot add filter to generated content views"
|
7427
|
+
msgstr ""
|
7428
|
+
|
6784
7429
|
msgid "cannot add filter to import-only view"
|
6785
7430
|
msgstr ""
|
6786
7431
|
|
@@ -6835,6 +7480,9 @@ msgstr ""
|
|
6835
7480
|
msgid "checking Pulp task status"
|
6836
7481
|
msgstr ""
|
6837
7482
|
|
7483
|
+
msgid "click here"
|
7484
|
+
msgstr ""
|
7485
|
+
|
6838
7486
|
msgid "composite content view identifier"
|
6839
7487
|
msgstr ""
|
6840
7488
|
|
@@ -6853,6 +7501,9 @@ msgstr ""
|
|
6853
7501
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6854
7502
|
msgstr ""
|
6855
7503
|
|
7504
|
+
msgid "content view Dependency Solving Default"
|
7505
|
+
msgstr ""
|
7506
|
+
|
6856
7507
|
msgid "content view component ID. Identifier of the component association"
|
6857
7508
|
msgstr ""
|
6858
7509
|
|
@@ -6928,7 +7579,7 @@ msgstr ""
|
|
6928
7579
|
msgid "description of the repository"
|
6929
7580
|
msgstr ""
|
6930
7581
|
|
6931
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7582
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6932
7583
|
msgstr ""
|
6933
7584
|
|
6934
7585
|
msgid "enables or disables synchronization"
|
@@ -7003,6 +7654,9 @@ msgstr ""
|
|
7003
7654
|
msgid "filter identifiers"
|
7004
7655
|
msgstr ""
|
7005
7656
|
|
7657
|
+
msgid "filter only environments containing this label"
|
7658
|
+
msgstr ""
|
7659
|
+
|
7006
7660
|
msgid "filter only environments containing this name"
|
7007
7661
|
msgstr ""
|
7008
7662
|
|
@@ -7066,6 +7720,9 @@ msgstr "பிழையை நிறுவுகிறது..."
|
|
7066
7720
|
msgid "installing erratum..."
|
7067
7721
|
msgstr "பிழையை நிறுவுகிறது..."
|
7068
7722
|
|
7723
|
+
msgid "installing or updating packages"
|
7724
|
+
msgstr ""
|
7725
|
+
|
7069
7726
|
msgid "installing package group..."
|
7070
7727
|
msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
|
7071
7728
|
|
@@ -7093,9 +7750,18 @@ msgstr ""
|
|
7093
7750
|
msgid "is invalid"
|
7094
7751
|
msgstr "தவறானது"
|
7095
7752
|
|
7753
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7754
|
+
msgstr ""
|
7755
|
+
|
7756
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7757
|
+
msgstr ""
|
7758
|
+
|
7096
7759
|
msgid "is not enabled. must be one of the following: %s"
|
7097
7760
|
msgstr ""
|
7098
7761
|
|
7762
|
+
msgid "is only allowed for Yum repositories."
|
7763
|
+
msgstr ""
|
7764
|
+
|
7099
7765
|
msgid "label of the environment"
|
7100
7766
|
msgstr ""
|
7101
7767
|
|
@@ -7168,6 +7834,9 @@ msgstr ""
|
|
7168
7834
|
msgid "must contain valid Public GPG Key"
|
7169
7835
|
msgstr ""
|
7170
7836
|
|
7837
|
+
msgid "must not be a negative value."
|
7838
|
+
msgstr ""
|
7839
|
+
|
7171
7840
|
msgid "must not contain leading or trailing white spaces."
|
7172
7841
|
msgstr "முன்னணி அல்லது வெள்ளை இடங்களில் முன்னிலை கொண்டிருக்க கூடாது."
|
7173
7842
|
|
@@ -7264,6 +7933,9 @@ msgstr ""
|
|
7264
7933
|
msgid "package_ids is not an array"
|
7265
7934
|
msgstr ""
|
7266
7935
|
|
7936
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7937
|
+
msgstr ""
|
7938
|
+
|
7267
7939
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7268
7940
|
msgstr ""
|
7269
7941
|
|
@@ -7381,6 +8053,12 @@ msgstr ""
|
|
7381
8053
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7382
8054
|
msgstr "Red Hat வழங்குநருக்காக பின்வரும் பண்புகளுக்காக புதுப்பிக்கப்படவில்லை: [ %s ]"
|
7383
8055
|
|
8056
|
+
msgid "to"
|
8057
|
+
msgstr ""
|
8058
|
+
|
8059
|
+
msgid "to update configuration on all hosts, or"
|
8060
|
+
msgstr ""
|
8061
|
+
|
7384
8062
|
msgid "true if the latest version of the component's content view is desired"
|
7385
8063
|
msgstr ""
|
7386
8064
|
|
@@ -7405,9 +8083,15 @@ msgstr ""
|
|
7405
8083
|
msgid "unknown permission for %s"
|
7406
8084
|
msgstr ""
|
7407
8085
|
|
8086
|
+
msgid "unlimited"
|
8087
|
+
msgstr ""
|
8088
|
+
|
7408
8089
|
msgid "update a filter"
|
7409
8090
|
msgstr ""
|
7410
8091
|
|
8092
|
+
msgid "update configuration on the hosts manually:"
|
8093
|
+
msgstr ""
|
8094
|
+
|
7411
8095
|
msgid "updating package group..."
|
7412
8096
|
msgstr "தொகுப்பு குழுவை புதுப்பிக்கிறது..."
|
7413
8097
|
|
@@ -7420,6 +8104,9 @@ msgstr "தொகுப்பை புதுப்பிக்கிறது..
|
|
7420
8104
|
msgid "updating packages..."
|
7421
8105
|
msgstr "தொகுப்புகளை புதுப்பிக்கிறது..."
|
7422
8106
|
|
8107
|
+
msgid "upstream Foreman server"
|
8108
|
+
msgstr ""
|
8109
|
+
|
7423
8110
|
msgid "url not defined."
|
7424
8111
|
msgstr ""
|
7425
8112
|
|
@@ -7464,3 +8151,30 @@ msgstr ""
|
|
7464
8151
|
|
7465
8152
|
msgid "{0} items selected"
|
7466
8153
|
msgstr ""
|
8154
|
+
|
8155
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8156
|
+
msgstr ""
|
8157
|
+
|
8158
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8159
|
+
msgstr ""
|
8160
|
+
|
8161
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8162
|
+
msgstr ""
|
8163
|
+
|
8164
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8165
|
+
msgstr ""
|
8166
|
+
|
8167
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8168
|
+
msgstr ""
|
8169
|
+
|
8170
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8171
|
+
msgstr ""
|
8172
|
+
|
8173
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8174
|
+
msgstr ""
|
8175
|
+
|
8176
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8177
|
+
msgstr ""
|
8178
|
+
|
8179
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8180
|
+
msgstr ""
|