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/ru/katello.po
CHANGED
@@ -5,20 +5,20 @@
|
|
5
5
|
#
|
6
6
|
# Translators:
|
7
7
|
# Alexander Savchenko, 2017
|
8
|
-
#
|
9
|
-
#
|
10
|
-
# 0868a4d1af5275b3f70b0a6dac4c99a4,
|
11
|
-
# Andrei Burd <burdandrei@gmail.com>,
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
8
|
+
# KotUchoniy <yosho1@yandex.ru>, 2021
|
9
|
+
# Denis Denis <stereodenis@gmail.com>, 2022
|
10
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
11
|
+
# Andrei Burd <burdandrei@gmail.com>, 2022
|
12
|
+
# Vladimir Pavlov <v.pavlov@i-teco.ru>, 2022
|
13
|
+
# Yulia <yulia.poyarkova@redhat.com>, 2022
|
14
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
15
15
|
#
|
16
16
|
msgid ""
|
17
17
|
msgstr ""
|
18
18
|
"Project-Id-Version: katello 2.5.0\n"
|
19
19
|
"Report-Msgid-Bugs-To: \n"
|
20
20
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
21
|
-
"Last-Translator:
|
21
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
|
22
22
|
"Language-Team: Russian (https://www.transifex.com/foreman/teams/114/ru/)\n"
|
23
23
|
"MIME-Version: 1.0\n"
|
24
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -60,6 +60,9 @@ msgstr ""
|
|
60
60
|
msgid " ago."
|
61
61
|
msgstr ""
|
62
62
|
|
63
|
+
msgid " and"
|
64
|
+
msgstr ""
|
65
|
+
|
63
66
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
64
67
|
msgstr ""
|
65
68
|
|
@@ -122,6 +125,9 @@ msgstr ""
|
|
122
125
|
msgid "%s is not a valid package name"
|
123
126
|
msgstr "Недопустимое имя пакета: %s"
|
124
127
|
|
128
|
+
msgid "%s is not a valid path"
|
129
|
+
msgstr ""
|
130
|
+
|
125
131
|
msgid "%s is required"
|
126
132
|
msgstr ""
|
127
133
|
|
@@ -336,10 +342,10 @@ msgid ":a_resource identifier"
|
|
336
342
|
msgstr ""
|
337
343
|
|
338
344
|
msgid "<b>PROMOTION</b> SUMMARY"
|
339
|
-
msgstr ""
|
345
|
+
msgstr "СВОДКА <b>ПЕРЕНОСОВ</b> "
|
340
346
|
|
341
347
|
msgid "<b>SYNC</b> SUMMARY"
|
342
|
-
msgstr ""
|
348
|
+
msgstr "СВОДКА <b>СИНХРОНИЗАЦИИ</b>"
|
343
349
|
|
344
350
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
345
351
|
msgstr ""
|
@@ -371,9 +377,6 @@ msgstr ""
|
|
371
377
|
msgid "A post-promotion summary of hosts with installable errata"
|
372
378
|
msgstr "Сводный отчет после переноса представлений со списком узлов, для которых доступны исправления"
|
373
379
|
|
374
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
375
|
-
msgstr ""
|
376
|
-
|
377
380
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
378
381
|
msgstr "Уровень обслуживания для автоматического восстановления (например, SELF-SUPPORT)"
|
379
382
|
|
@@ -392,12 +395,18 @@ msgstr ""
|
|
392
395
|
msgid "About page"
|
393
396
|
msgstr ""
|
394
397
|
|
398
|
+
msgid "Abstract"
|
399
|
+
msgstr ""
|
400
|
+
|
395
401
|
msgid "Abstract async task"
|
396
402
|
msgstr "Абстрактная асинхронная задача"
|
397
403
|
|
398
404
|
msgid "Accept action timeout"
|
399
405
|
msgstr ""
|
400
406
|
|
407
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
408
|
+
msgstr ""
|
409
|
+
|
401
410
|
msgid "Account Number"
|
402
411
|
msgstr "Номер учетной записи"
|
403
412
|
|
@@ -411,17 +420,17 @@ msgid "Action unauthorized to be performed in this organization."
|
|
411
420
|
msgstr ""
|
412
421
|
|
413
422
|
msgid "Action unauthorized to be performed on selected hosts."
|
414
|
-
msgstr ""
|
423
|
+
msgstr "Попытка выполнения несанкционированных действий над выбранными узлами."
|
415
424
|
|
416
425
|
msgid "Action with sub plans"
|
417
426
|
msgstr "Действия с подпланами"
|
418
427
|
|
419
|
-
msgid "Actions"
|
420
|
-
msgstr ""
|
421
|
-
|
422
428
|
msgid "Activation Keys"
|
423
429
|
msgstr "Ключи активации"
|
424
430
|
|
431
|
+
msgid "Activation key"
|
432
|
+
msgstr ""
|
433
|
+
|
425
434
|
msgid "Activation key ID"
|
426
435
|
msgstr "Идентификатор ключа активации"
|
427
436
|
|
@@ -453,7 +462,7 @@ msgid "Add"
|
|
453
462
|
msgstr "Добавить"
|
454
463
|
|
455
464
|
msgid "Add Bookmark"
|
456
|
-
msgstr ""
|
465
|
+
msgstr "Добавить закладку"
|
457
466
|
|
458
467
|
msgid "Add RPM rule"
|
459
468
|
msgstr ""
|
@@ -488,6 +497,12 @@ msgstr ""
|
|
488
497
|
msgid "Add filters using the 'Add filter' button above."
|
489
498
|
msgstr ""
|
490
499
|
|
500
|
+
msgid "Add host to collections"
|
501
|
+
msgstr ""
|
502
|
+
|
503
|
+
msgid "Add host to host collections"
|
504
|
+
msgstr ""
|
505
|
+
|
491
506
|
msgid "Add host to the host collection"
|
492
507
|
msgstr "Добавить узел в коллекцию"
|
493
508
|
|
@@ -498,7 +513,7 @@ msgid "Add new bookmark"
|
|
498
513
|
msgstr ""
|
499
514
|
|
500
515
|
msgid "Add one or more host collections to one or more hosts"
|
501
|
-
msgstr ""
|
516
|
+
msgstr "Добавить узлы в коллекции"
|
502
517
|
|
503
518
|
msgid "Add ons"
|
504
519
|
msgstr ""
|
@@ -512,6 +527,9 @@ msgstr ""
|
|
512
527
|
msgid "Add rule"
|
513
528
|
msgstr ""
|
514
529
|
|
530
|
+
msgid "Add source"
|
531
|
+
msgstr ""
|
532
|
+
|
515
533
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
516
534
|
msgstr ""
|
517
535
|
|
@@ -524,9 +542,6 @@ msgstr ""
|
|
524
542
|
msgid "Add to this filter using the 'Add filter rule' button."
|
525
543
|
msgstr ""
|
526
544
|
|
527
|
-
msgid "Add traces by applying updates on this host."
|
528
|
-
msgstr ""
|
529
|
-
|
530
545
|
msgid "Added"
|
531
546
|
msgstr ""
|
532
547
|
|
@@ -549,19 +564,19 @@ msgid "Affected repositories"
|
|
549
564
|
msgstr ""
|
550
565
|
|
551
566
|
msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
|
552
|
-
msgstr ""
|
567
|
+
msgstr "После генерации инкрементного обновления применить изменения к выбранным системам. В настоящее время поддерживаются только исправления."
|
553
568
|
|
554
569
|
msgid "Agent action"
|
555
570
|
msgstr ""
|
556
571
|
|
557
572
|
msgid "All"
|
558
|
-
msgstr ""
|
573
|
+
msgstr "Все"
|
559
574
|
|
560
575
|
msgid "All Media"
|
561
|
-
msgstr ""
|
576
|
+
msgstr "Все носители"
|
562
577
|
|
563
578
|
msgid "All Repositories"
|
564
|
-
msgstr ""
|
579
|
+
msgstr "Все репозитории"
|
565
580
|
|
566
581
|
msgid "All available architectures for this repo are enabled."
|
567
582
|
msgstr ""
|
@@ -569,29 +584,53 @@ msgstr ""
|
|
569
584
|
msgid "All errata applied"
|
570
585
|
msgstr "Все исправления применены"
|
571
586
|
|
587
|
+
msgid "All errata up-to-date"
|
588
|
+
msgstr ""
|
589
|
+
|
590
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
591
|
+
msgstr ""
|
592
|
+
|
572
593
|
msgid "All versions"
|
573
594
|
msgstr ""
|
574
595
|
|
575
596
|
msgid "All versions will be removed from these environments"
|
576
597
|
msgstr ""
|
577
598
|
|
578
|
-
msgid "Allow
|
599
|
+
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)"
|
600
|
+
msgstr ""
|
601
|
+
|
602
|
+
msgid "Allow deleting repositories in published content views"
|
579
603
|
msgstr ""
|
580
604
|
|
581
|
-
msgid "Allow
|
605
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
582
606
|
msgstr ""
|
583
607
|
|
584
608
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
585
609
|
msgstr ""
|
586
610
|
|
587
|
-
msgid "Allow new
|
611
|
+
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."
|
588
612
|
msgstr ""
|
589
613
|
|
590
614
|
msgid "Also include the latest upgradable package version for each host package"
|
591
615
|
msgstr ""
|
592
616
|
|
593
|
-
msgid "Alter a
|
594
|
-
msgstr "
|
617
|
+
msgid "Alter a host's host collections"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
msgid "Alternate Content Sources"
|
621
|
+
msgstr ""
|
622
|
+
|
623
|
+
msgid "Alternate content source ${name} created"
|
624
|
+
msgstr ""
|
625
|
+
|
626
|
+
msgid "Alternate content source ID"
|
627
|
+
msgstr ""
|
628
|
+
|
629
|
+
msgid "Alternate content source deleted"
|
630
|
+
msgstr ""
|
631
|
+
|
632
|
+
msgid "Alternate content sources"
|
633
|
+
msgstr ""
|
595
634
|
|
596
635
|
msgid "Always Use Latest (currently %{version})"
|
597
636
|
msgstr ""
|
@@ -602,6 +641,9 @@ msgstr ""
|
|
602
641
|
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."
|
603
642
|
msgstr ""
|
604
643
|
|
644
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
645
|
+
msgstr ""
|
646
|
+
|
605
647
|
msgid "An environment is missing a prior"
|
606
648
|
msgstr ""
|
607
649
|
|
@@ -645,10 +687,10 @@ msgid "Applicable Content Hosts"
|
|
645
687
|
msgstr ""
|
646
688
|
|
647
689
|
msgid "Application"
|
648
|
-
msgstr ""
|
690
|
+
msgstr "Программа"
|
649
691
|
|
650
692
|
msgid "Apply"
|
651
|
-
msgstr ""
|
693
|
+
msgstr "Применить"
|
652
694
|
|
653
695
|
msgid "Apply Erratum"
|
654
696
|
msgstr ""
|
@@ -745,6 +787,9 @@ msgstr ""
|
|
745
787
|
msgid "Associated location IDs"
|
746
788
|
msgstr ""
|
747
789
|
|
790
|
+
msgid "Associated version"
|
791
|
+
msgstr ""
|
792
|
+
|
748
793
|
msgid "Associations"
|
749
794
|
msgstr "Связи"
|
750
795
|
|
@@ -811,6 +856,9 @@ msgstr ""
|
|
811
856
|
msgid "Backend System Status"
|
812
857
|
msgstr "Состояние базовой системы"
|
813
858
|
|
859
|
+
msgid "Base URL for finding alternate content"
|
860
|
+
msgstr ""
|
861
|
+
|
814
862
|
msgid "Base URL to perform repo discovery on"
|
815
863
|
msgstr ""
|
816
864
|
|
@@ -820,9 +868,21 @@ msgstr "Исключить $basearch"
|
|
820
868
|
msgid "Basearch to enable"
|
821
869
|
msgstr "Включить $basearch"
|
822
870
|
|
871
|
+
msgid "Basic authentication password"
|
872
|
+
msgstr ""
|
873
|
+
|
874
|
+
msgid "Basic authentication username"
|
875
|
+
msgstr ""
|
876
|
+
|
823
877
|
msgid "Batch size to sync repositories in."
|
824
878
|
msgstr ""
|
825
879
|
|
880
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
881
|
+
msgstr ""
|
882
|
+
|
883
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
884
|
+
msgstr ""
|
885
|
+
|
826
886
|
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."
|
827
887
|
msgstr ""
|
828
888
|
|
@@ -836,7 +896,7 @@ msgid "Bind entitlements to an allocation"
|
|
836
896
|
msgstr ""
|
837
897
|
|
838
898
|
msgid "Bookmark this search"
|
839
|
-
msgstr ""
|
899
|
+
msgstr "Добавить в закладки"
|
840
900
|
|
841
901
|
msgid "Bookmarks marked as public are available to all users"
|
842
902
|
msgstr ""
|
@@ -859,6 +919,9 @@ msgstr ""
|
|
859
919
|
msgid "Bulk generate applicability for hosts"
|
860
920
|
msgstr ""
|
861
921
|
|
922
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
923
|
+
msgstr ""
|
924
|
+
|
862
925
|
msgid "CDN Configuration"
|
863
926
|
msgstr ""
|
864
927
|
|
@@ -871,6 +934,12 @@ msgstr ""
|
|
871
934
|
msgid "CDN SSL version"
|
872
935
|
msgstr ""
|
873
936
|
|
937
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
938
|
+
msgstr ""
|
939
|
+
|
940
|
+
msgid "CDN configuration type. One of %s."
|
941
|
+
msgstr ""
|
942
|
+
|
874
943
|
msgid "CDN loading error: %s not found"
|
875
944
|
msgstr ""
|
876
945
|
|
@@ -884,7 +953,7 @@ msgid "CVE identifier"
|
|
884
953
|
msgstr "Идентификатор CVE"
|
885
954
|
|
886
955
|
msgid "CVEs"
|
887
|
-
msgstr ""
|
956
|
+
msgstr "CVE"
|
888
957
|
|
889
958
|
msgid "Calculate Applicable Errata based on a particular Content View"
|
890
959
|
msgstr "Определить подходящие исправления для заданного представления"
|
@@ -892,7 +961,10 @@ msgstr "Определить подходящие исправления для
|
|
892
961
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
893
962
|
msgstr "Определить подходящие исправления для заданного окружения"
|
894
963
|
|
895
|
-
msgid "Calculate errata host status based only on errata in a
|
964
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
965
|
+
msgstr ""
|
966
|
+
|
967
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
896
968
|
msgstr ""
|
897
969
|
|
898
970
|
msgid "Can not add product %s because it is disabled."
|
@@ -1015,6 +1087,9 @@ msgstr ""
|
|
1015
1087
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1016
1088
|
msgstr "Невозможно выполнить инкрементное обновление для сложного представления (%{name}, версия %{version}"
|
1017
1089
|
|
1090
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1091
|
+
msgstr ""
|
1092
|
+
|
1018
1093
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1019
1094
|
msgstr "Представление должно продвигаться последовательно по цепочке. Чтобы снять ограничения, включите принудительный режим."
|
1020
1095
|
|
@@ -1066,6 +1141,18 @@ msgstr ""
|
|
1066
1141
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1067
1142
|
msgstr ""
|
1068
1143
|
|
1144
|
+
msgid "Capacity"
|
1145
|
+
msgstr ""
|
1146
|
+
|
1147
|
+
msgid "Change Content Source"
|
1148
|
+
msgstr ""
|
1149
|
+
|
1150
|
+
msgid "Change content source"
|
1151
|
+
msgstr ""
|
1152
|
+
|
1153
|
+
msgid "Change host content source"
|
1154
|
+
msgstr ""
|
1155
|
+
|
1069
1156
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1070
1157
|
msgstr ""
|
1071
1158
|
|
@@ -1078,6 +1165,9 @@ msgstr ""
|
|
1078
1165
|
msgid "Checksum"
|
1079
1166
|
msgstr "Контрольная сумма"
|
1080
1167
|
|
1168
|
+
msgid "Checksum is a required parameter."
|
1169
|
+
msgstr ""
|
1170
|
+
|
1081
1171
|
msgid "Checksum of file to upload"
|
1082
1172
|
msgstr ""
|
1083
1173
|
|
@@ -1093,6 +1183,9 @@ msgstr ""
|
|
1093
1183
|
msgid "Click here to go to the tasks page for the task."
|
1094
1184
|
msgstr ""
|
1095
1185
|
|
1186
|
+
msgid "Click {update} below to save changes."
|
1187
|
+
msgstr ""
|
1188
|
+
|
1096
1189
|
msgid "Clone"
|
1097
1190
|
msgstr "Клонировать"
|
1098
1191
|
|
@@ -1108,7 +1201,13 @@ msgstr ""
|
|
1108
1201
|
msgid "Combined Profile Update for %s"
|
1109
1202
|
msgstr ""
|
1110
1203
|
|
1111
|
-
msgid "Comma-separated list of tags to
|
1204
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1205
|
+
msgstr ""
|
1206
|
+
|
1207
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1208
|
+
msgstr ""
|
1209
|
+
|
1210
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1112
1211
|
msgstr ""
|
1113
1212
|
|
1114
1213
|
msgid "Component"
|
@@ -1124,10 +1223,10 @@ msgid "Component content views"
|
|
1124
1223
|
msgstr ""
|
1125
1224
|
|
1126
1225
|
msgid "Components"
|
1127
|
-
msgstr ""
|
1226
|
+
msgstr "Компоненты"
|
1128
1227
|
|
1129
1228
|
msgid "Composite"
|
1130
|
-
msgstr ""
|
1229
|
+
msgstr "Составное"
|
1131
1230
|
|
1132
1231
|
msgid "Composite Content View"
|
1133
1232
|
msgstr ""
|
@@ -1195,6 +1294,9 @@ msgstr ""
|
|
1195
1294
|
msgid "Container manifests"
|
1196
1295
|
msgstr ""
|
1197
1296
|
|
1297
|
+
msgid "Container tags"
|
1298
|
+
msgstr ""
|
1299
|
+
|
1198
1300
|
msgid "Content"
|
1199
1301
|
msgstr "Содержимое"
|
1200
1302
|
|
@@ -1207,7 +1309,7 @@ msgstr ""
|
|
1207
1309
|
msgid "Content Credential numeric identifier"
|
1208
1310
|
msgstr ""
|
1209
1311
|
|
1210
|
-
msgid "Content Credential to use for SSL CA"
|
1312
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1211
1313
|
msgstr ""
|
1212
1314
|
|
1213
1315
|
msgid "Content Credentials"
|
@@ -1240,9 +1342,6 @@ msgstr "Представление"
|
|
1240
1342
|
msgid "Content View %{view}: Versions: %{versions}"
|
1241
1343
|
msgstr ""
|
1242
1344
|
|
1243
|
-
msgid "Content View Dependency Solving Default"
|
1244
|
-
msgstr ""
|
1245
|
-
|
1246
1345
|
msgid "Content View Details"
|
1247
1346
|
msgstr ""
|
1248
1347
|
|
@@ -1253,13 +1352,10 @@ msgid "Content View Filter identifier"
|
|
1253
1352
|
msgstr ""
|
1254
1353
|
|
1255
1354
|
msgid "Content View ID"
|
1256
|
-
msgstr ""
|
1257
|
-
|
1258
|
-
msgid "Content View Label"
|
1259
|
-
msgstr ""
|
1355
|
+
msgstr "Идентификатор представления"
|
1260
1356
|
|
1261
1357
|
msgid "Content View Name"
|
1262
|
-
msgstr ""
|
1358
|
+
msgstr "Имя представления"
|
1263
1359
|
|
1264
1360
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
1265
1361
|
msgstr "Версия %{id} не входит в состав всех окружений %{envs}"
|
@@ -1282,6 +1378,9 @@ msgstr "Для регистрации необходимо представит
|
|
1282
1378
|
msgid "Content View id"
|
1283
1379
|
msgstr ""
|
1284
1380
|
|
1381
|
+
msgid "Content View label not provided."
|
1382
|
+
msgstr ""
|
1383
|
+
|
1285
1384
|
msgid "Content Views"
|
1286
1385
|
msgstr "Представления"
|
1287
1386
|
|
@@ -1294,15 +1393,21 @@ msgstr ""
|
|
1294
1393
|
msgid "Content hosts"
|
1295
1394
|
msgstr ""
|
1296
1395
|
|
1297
|
-
msgid "Content imported
|
1396
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1298
1397
|
msgstr ""
|
1299
1398
|
|
1300
1399
|
msgid "Content not uploaded to pulp"
|
1301
1400
|
msgstr ""
|
1302
1401
|
|
1402
|
+
msgid "Content override search parameters"
|
1403
|
+
msgstr ""
|
1404
|
+
|
1303
1405
|
msgid "Content source ID"
|
1304
1406
|
msgstr ""
|
1305
1407
|
|
1408
|
+
msgid "Content source successfully updated."
|
1409
|
+
msgstr ""
|
1410
|
+
|
1306
1411
|
msgid "Content source was not set for host '%{host}'"
|
1307
1412
|
msgstr ""
|
1308
1413
|
|
@@ -1378,6 +1483,9 @@ msgstr "Контракт"
|
|
1378
1483
|
msgid "Contract Number"
|
1379
1484
|
msgstr "Номер контракта"
|
1380
1485
|
|
1486
|
+
msgid "Copied to clipboard"
|
1487
|
+
msgstr ""
|
1488
|
+
|
1381
1489
|
msgid "Copy"
|
1382
1490
|
msgstr ""
|
1383
1491
|
|
@@ -1387,6 +1495,9 @@ msgstr "Копировать ключ активации"
|
|
1387
1495
|
msgid "Copy content view"
|
1388
1496
|
msgstr ""
|
1389
1497
|
|
1498
|
+
msgid "Copy to clipboard"
|
1499
|
+
msgstr ""
|
1500
|
+
|
1390
1501
|
msgid "Copy version units to library"
|
1391
1502
|
msgstr ""
|
1392
1503
|
|
@@ -1498,18 +1609,24 @@ msgstr "Продукт с ID «%s» не найден."
|
|
1498
1609
|
msgid "Couldn't find repository '%s'"
|
1499
1610
|
msgstr "Репозиторий «%s» не найден."
|
1500
1611
|
|
1501
|
-
msgid "Couldn't find
|
1612
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1502
1613
|
msgstr ""
|
1503
1614
|
|
1615
|
+
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1616
|
+
msgstr "Не удалось найти указанное представление и окружение жизненного цикла."
|
1617
|
+
|
1504
1618
|
msgid "Couldn't find subject of synchronization"
|
1505
1619
|
msgstr "Не удалось найти объект синхронизации"
|
1506
1620
|
|
1507
1621
|
msgid "Count"
|
1508
|
-
msgstr ""
|
1622
|
+
msgstr "Счётчик"
|
1509
1623
|
|
1510
1624
|
msgid "Create"
|
1511
1625
|
msgstr "Создать"
|
1512
1626
|
|
1627
|
+
msgid "Create Alternate Content Source"
|
1628
|
+
msgstr ""
|
1629
|
+
|
1513
1630
|
msgid "Create Export History"
|
1514
1631
|
msgstr ""
|
1515
1632
|
|
@@ -1546,6 +1663,9 @@ msgstr "Создать продукт"
|
|
1546
1663
|
msgid "Create a sync plan"
|
1547
1664
|
msgstr "Создать план синхронизации"
|
1548
1665
|
|
1666
|
+
msgid "Create an ACS"
|
1667
|
+
msgstr ""
|
1668
|
+
|
1549
1669
|
msgid "Create an activation key"
|
1550
1670
|
msgstr "Создать ключ активации"
|
1551
1671
|
|
@@ -1568,7 +1688,7 @@ msgid "Create organization"
|
|
1568
1688
|
msgstr "Создать организацию"
|
1569
1689
|
|
1570
1690
|
msgid "Critical"
|
1571
|
-
msgstr ""
|
1691
|
+
msgstr "Критично"
|
1572
1692
|
|
1573
1693
|
msgid "Cron expression is not valid!"
|
1574
1694
|
msgstr ""
|
@@ -1591,6 +1711,9 @@ msgstr ""
|
|
1591
1711
|
msgid "Custom repositories cannot be disabled."
|
1592
1712
|
msgstr "Дополнительно настроенные репозитории не могут быть отключены."
|
1593
1713
|
|
1714
|
+
msgid "Customize with Rex"
|
1715
|
+
msgstr ""
|
1716
|
+
|
1594
1717
|
msgid "Database connection"
|
1595
1718
|
msgstr "Подключение к базе данных"
|
1596
1719
|
|
@@ -1627,13 +1750,10 @@ msgstr ""
|
|
1627
1750
|
msgid "Default Custom Repository download policy"
|
1628
1751
|
msgstr ""
|
1629
1752
|
|
1630
|
-
msgid "Default HTTP Proxy
|
1753
|
+
msgid "Default HTTP Proxy"
|
1631
1754
|
msgstr ""
|
1632
1755
|
|
1633
|
-
msgid "Default HTTP proxy"
|
1634
|
-
msgstr ""
|
1635
|
-
|
1636
|
-
msgid "Default Location subscribed hosts"
|
1756
|
+
msgid "Default HTTP proxy for syncing content"
|
1637
1757
|
msgstr ""
|
1638
1758
|
|
1639
1759
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1678,6 +1798,9 @@ msgstr ""
|
|
1678
1798
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1679
1799
|
msgstr ""
|
1680
1800
|
|
1801
|
+
msgid "Default location for subscribed hosts"
|
1802
|
+
msgstr ""
|
1803
|
+
|
1681
1804
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1682
1805
|
msgstr ""
|
1683
1806
|
|
@@ -1780,6 +1903,9 @@ msgstr ""
|
|
1780
1903
|
msgid "Delete version"
|
1781
1904
|
msgstr ""
|
1782
1905
|
|
1906
|
+
msgid "Delete versions"
|
1907
|
+
msgstr ""
|
1908
|
+
|
1783
1909
|
msgid "Deleted consumer '%s'"
|
1784
1910
|
msgstr "«%s» удален."
|
1785
1911
|
|
@@ -1795,9 +1921,18 @@ msgstr ""
|
|
1795
1921
|
msgid "Deleting manifest in '%{subject}' failed."
|
1796
1922
|
msgstr ""
|
1797
1923
|
|
1924
|
+
msgid "Deleting version {versionList}"
|
1925
|
+
msgstr ""
|
1926
|
+
|
1927
|
+
msgid "Deleting versions: {versionList}"
|
1928
|
+
msgstr ""
|
1929
|
+
|
1798
1930
|
msgid "Description"
|
1799
1931
|
msgstr "Описание"
|
1800
1932
|
|
1933
|
+
msgid "Description for the alternate content source"
|
1934
|
+
msgstr ""
|
1935
|
+
|
1801
1936
|
msgid "Description for the content view"
|
1802
1937
|
msgstr "Описание представления"
|
1803
1938
|
|
@@ -1819,6 +1954,9 @@ msgstr ""
|
|
1819
1954
|
msgid "Destroy"
|
1820
1955
|
msgstr "Удалить"
|
1821
1956
|
|
1957
|
+
msgid "Destroy Alternate Content Source"
|
1958
|
+
msgstr ""
|
1959
|
+
|
1822
1960
|
msgid "Destroy Content Host"
|
1823
1961
|
msgstr "Удалить узел"
|
1824
1962
|
|
@@ -1843,6 +1981,9 @@ msgstr "Удалить план синхронизации"
|
|
1843
1981
|
msgid "Destroy an activation key"
|
1844
1982
|
msgstr "Удалить ключ активации"
|
1845
1983
|
|
1984
|
+
msgid "Destroy an alternate content source"
|
1985
|
+
msgstr ""
|
1986
|
+
|
1846
1987
|
msgid "Destroy an environment"
|
1847
1988
|
msgstr "Удалить окружение"
|
1848
1989
|
|
@@ -1850,7 +1991,7 @@ msgid "Destroy an environment in an organization"
|
|
1850
1991
|
msgstr "Удалить окружение из организации"
|
1851
1992
|
|
1852
1993
|
msgid "Destroy one or more hosts"
|
1853
|
-
msgstr ""
|
1994
|
+
msgstr "Уничтожить один или несколько узлов"
|
1854
1995
|
|
1855
1996
|
msgid "Destroy one or more products"
|
1856
1997
|
msgstr "Удалить продукты"
|
@@ -1882,18 +2023,18 @@ msgstr ""
|
|
1882
2023
|
msgid "Disable a repository from the set"
|
1883
2024
|
msgstr ""
|
1884
2025
|
|
2026
|
+
msgid "Disable module stream"
|
2027
|
+
msgstr ""
|
2028
|
+
|
1885
2029
|
msgid "Disable simple content access for a manifest"
|
1886
2030
|
msgstr ""
|
1887
2031
|
|
1888
2032
|
msgid "Disabled"
|
1889
|
-
msgstr ""
|
2033
|
+
msgstr "Отключено"
|
1890
2034
|
|
1891
2035
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1892
2036
|
msgstr ""
|
1893
2037
|
|
1894
|
-
msgid "Disconnected mode"
|
1895
|
-
msgstr ""
|
1896
|
-
|
1897
2038
|
msgid "Discover"
|
1898
2039
|
msgstr "Поиск"
|
1899
2040
|
|
@@ -1909,9 +2050,6 @@ msgstr ""
|
|
1909
2050
|
msgid "Do not wait for the update action to finish. Default: true"
|
1910
2051
|
msgstr ""
|
1911
2052
|
|
1912
|
-
msgid "Docker Tags"
|
1913
|
-
msgstr ""
|
1914
|
-
|
1915
2053
|
msgid "Domain IDs"
|
1916
2054
|
msgstr "Идентификаторы доменов"
|
1917
2055
|
|
@@ -1921,6 +2059,9 @@ msgstr ""
|
|
1921
2059
|
msgid "Download a debug certificate"
|
1922
2060
|
msgstr "Загрузить сертификат отладки"
|
1923
2061
|
|
2062
|
+
msgid "Download rate limit"
|
2063
|
+
msgstr ""
|
2064
|
+
|
1924
2065
|
msgid "Duplicate artifact detected"
|
1925
2066
|
msgstr ""
|
1926
2067
|
|
@@ -1928,7 +2069,7 @@ msgid "Duration"
|
|
1928
2069
|
msgstr "Продолжительность"
|
1929
2070
|
|
1930
2071
|
msgid "ERRATA ADVISORY"
|
1931
|
-
msgstr ""
|
2072
|
+
msgstr "РЕКОМЕНДАЦИИ ИСПРАВЛЕНИЙ"
|
1932
2073
|
|
1933
2074
|
msgid "Edit"
|
1934
2075
|
msgstr "Изменить"
|
@@ -1936,6 +2077,9 @@ msgstr "Изменить"
|
|
1936
2077
|
msgid "Edit RPM rule"
|
1937
2078
|
msgstr ""
|
1938
2079
|
|
2080
|
+
msgid "Edit content view assignment"
|
2081
|
+
msgstr ""
|
2082
|
+
|
1939
2083
|
msgid "Edit filter rule"
|
1940
2084
|
msgstr ""
|
1941
2085
|
|
@@ -1999,6 +2143,9 @@ msgstr ""
|
|
1999
2143
|
msgid "End Date"
|
2000
2144
|
msgstr "Срок действия"
|
2001
2145
|
|
2146
|
+
msgid "End date"
|
2147
|
+
msgstr ""
|
2148
|
+
|
2002
2149
|
msgid "Ends"
|
2003
2150
|
msgstr "Заканчивается"
|
2004
2151
|
|
@@ -2008,6 +2155,9 @@ msgstr "Расширенные функции"
|
|
2008
2155
|
msgid "Enter a name"
|
2009
2156
|
msgstr ""
|
2010
2157
|
|
2158
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2159
|
+
msgstr ""
|
2160
|
+
|
2011
2161
|
msgid "Entitlements"
|
2012
2162
|
msgstr ""
|
2013
2163
|
|
@@ -2026,6 +2176,9 @@ msgstr ""
|
|
2026
2176
|
msgid "Environments"
|
2027
2177
|
msgstr "Окружения"
|
2028
2178
|
|
2179
|
+
msgid "Epoch"
|
2180
|
+
msgstr ""
|
2181
|
+
|
2029
2182
|
msgid "Equal to"
|
2030
2183
|
msgstr ""
|
2031
2184
|
|
@@ -2083,6 +2236,9 @@ msgstr "Произошла ошибка при подключении к сер
|
|
2083
2236
|
msgid "Error connecting. Got: %s"
|
2084
2237
|
msgstr ""
|
2085
2238
|
|
2239
|
+
msgid "Error loading content views"
|
2240
|
+
msgstr ""
|
2241
|
+
|
2086
2242
|
msgid "Error refreshing status for %s: "
|
2087
2243
|
msgstr ""
|
2088
2244
|
|
@@ -2099,7 +2255,7 @@ msgid "Exclude all Module Streams with no errata."
|
|
2099
2255
|
msgstr ""
|
2100
2256
|
|
2101
2257
|
msgid "Exclude all RPMs with no errata."
|
2102
|
-
msgstr ""
|
2258
|
+
msgstr "Исключить RPM без исправлений"
|
2103
2259
|
|
2104
2260
|
msgid "Exclude filter"
|
2105
2261
|
msgstr ""
|
@@ -2131,6 +2287,12 @@ msgstr ""
|
|
2131
2287
|
msgid "Export Library"
|
2132
2288
|
msgstr ""
|
2133
2289
|
|
2290
|
+
msgid "Export Repository"
|
2291
|
+
msgstr ""
|
2292
|
+
|
2293
|
+
msgid "Export Sync"
|
2294
|
+
msgstr ""
|
2295
|
+
|
2134
2296
|
msgid "Export Types"
|
2135
2297
|
msgstr ""
|
2136
2298
|
|
@@ -2141,10 +2303,10 @@ msgid "Export history identifier used for incremental export. If not provided th
|
|
2141
2303
|
msgstr ""
|
2142
2304
|
|
2143
2305
|
msgid "Exported content view"
|
2144
|
-
msgstr ""
|
2306
|
+
msgstr "Экспортируемое представление"
|
2145
2307
|
|
2146
2308
|
msgid "Exported version"
|
2147
|
-
msgstr ""
|
2309
|
+
msgstr "Экспорт версии"
|
2148
2310
|
|
2149
2311
|
msgid "Facts successfully updated."
|
2150
2312
|
msgstr "Системная статистика обновлена."
|
@@ -2155,6 +2317,9 @@ msgstr "Сбой"
|
|
2155
2317
|
msgid "Failed to delete %{host}: %{errors}"
|
2156
2318
|
msgstr ""
|
2157
2319
|
|
2320
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2321
|
+
msgstr ""
|
2322
|
+
|
2158
2323
|
msgid "Failed to download %s package."
|
2159
2324
|
msgid_plural "Failed to download %s packages."
|
2160
2325
|
msgstr[0] ""
|
@@ -2188,16 +2353,16 @@ msgid "Field to sort the results on"
|
|
2188
2353
|
msgstr "Поле сортировки"
|
2189
2354
|
|
2190
2355
|
msgid "File"
|
2191
|
-
msgstr ""
|
2356
|
+
msgstr "Файл"
|
2192
2357
|
|
2193
2358
|
msgid "File contents"
|
2194
2359
|
msgstr ""
|
2195
2360
|
|
2196
2361
|
msgid "Filename"
|
2197
|
-
msgstr ""
|
2362
|
+
msgstr "Имя файла"
|
2198
2363
|
|
2199
2364
|
msgid "Files"
|
2200
|
-
msgstr ""
|
2365
|
+
msgstr "Файлы"
|
2201
2366
|
|
2202
2367
|
msgid "Filter by Product"
|
2203
2368
|
msgstr ""
|
@@ -2212,13 +2377,13 @@ msgid "Filter created"
|
|
2212
2377
|
msgstr "Фильтр создан"
|
2213
2378
|
|
2214
2379
|
msgid "Filter deleted"
|
2215
|
-
msgstr ""
|
2380
|
+
msgstr "Фильтр удален"
|
2216
2381
|
|
2217
2382
|
msgid "Filter edited"
|
2218
2383
|
msgstr ""
|
2219
2384
|
|
2220
2385
|
msgid "Filter only composite content views"
|
2221
|
-
msgstr ""
|
2386
|
+
msgstr "Показать только сложные представления"
|
2222
2387
|
|
2223
2388
|
msgid "Filter out composite content views"
|
2224
2389
|
msgstr "Исключить сложные представления"
|
@@ -2281,7 +2446,7 @@ msgid "Finish action timeout"
|
|
2281
2446
|
msgstr ""
|
2282
2447
|
|
2283
2448
|
msgid "Finished"
|
2284
|
-
msgstr ""
|
2449
|
+
msgstr "Готово"
|
2285
2450
|
|
2286
2451
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2287
2452
|
msgstr ""
|
@@ -2342,6 +2507,15 @@ msgstr ""
|
|
2342
2507
|
msgid "Generate repository applicability"
|
2343
2508
|
msgstr ""
|
2344
2509
|
|
2510
|
+
msgid "Generated"
|
2511
|
+
msgstr ""
|
2512
|
+
|
2513
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2514
|
+
msgstr ""
|
2515
|
+
|
2516
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2517
|
+
msgstr ""
|
2518
|
+
|
2345
2519
|
msgid "Get all content available, not just that provided by subscriptions"
|
2346
2520
|
msgstr ""
|
2347
2521
|
|
@@ -2349,7 +2523,7 @@ msgid "Get all content available, not just that provided by subscriptions."
|
|
2349
2523
|
msgstr ""
|
2350
2524
|
|
2351
2525
|
msgid "Get content and overrides for the host"
|
2352
|
-
msgstr ""
|
2526
|
+
msgstr "Возвращает список переопределений для заданного узла"
|
2353
2527
|
|
2354
2528
|
msgid "Get current smart proxy synchronization status"
|
2355
2529
|
msgstr ""
|
@@ -2367,7 +2541,7 @@ msgid "Get status of synchronisation for given repository"
|
|
2367
2541
|
msgstr "Получить статус синхронизации для выбранного репозитория"
|
2368
2542
|
|
2369
2543
|
msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
|
2370
|
-
msgstr ""
|
2544
|
+
msgstr "В качестве исходных данных принимает список узлов и исправлений и возвращает список версий представлений и окружения, которые могут быть обновлены."
|
2371
2545
|
|
2372
2546
|
msgid "Given criteria doesn't match any RPMs. Try changing your rule."
|
2373
2547
|
msgstr ""
|
@@ -2378,6 +2552,9 @@ msgstr ""
|
|
2378
2552
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2379
2553
|
msgstr ""
|
2380
2554
|
|
2555
|
+
msgid "Go to job details"
|
2556
|
+
msgstr ""
|
2557
|
+
|
2381
2558
|
msgid "Go to task page"
|
2382
2559
|
msgstr ""
|
2383
2560
|
|
@@ -2385,7 +2562,7 @@ msgid "Greater than"
|
|
2385
2562
|
msgstr ""
|
2386
2563
|
|
2387
2564
|
msgid "Group %{id} already created."
|
2388
|
-
msgstr ""
|
2565
|
+
msgstr "Группа %{id} уже существует."
|
2389
2566
|
|
2390
2567
|
msgid "Guests of"
|
2391
2568
|
msgstr "Гости"
|
@@ -2402,6 +2579,12 @@ msgstr ""
|
|
2402
2579
|
msgid "Helper"
|
2403
2580
|
msgstr ""
|
2404
2581
|
|
2582
|
+
msgid "Hide affected activation keys"
|
2583
|
+
msgstr ""
|
2584
|
+
|
2585
|
+
msgid "Hide affected hosts"
|
2586
|
+
msgstr ""
|
2587
|
+
|
2405
2588
|
msgid "Hide description"
|
2406
2589
|
msgstr ""
|
2407
2590
|
|
@@ -2415,7 +2598,7 @@ msgid "Host"
|
|
2415
2598
|
msgstr "Узел"
|
2416
2599
|
|
2417
2600
|
msgid "Host %s has not been registered with subscription-manager."
|
2418
|
-
msgstr ""
|
2601
|
+
msgstr "%s не был зарегистрирован в subscription-manager"
|
2419
2602
|
|
2420
2603
|
msgid "Host %{name} cannot be assigned release version %{release_version}."
|
2421
2604
|
msgstr ""
|
@@ -2436,7 +2619,7 @@ msgid "Host Duplicate DMI UUIDs"
|
|
2436
2619
|
msgstr ""
|
2437
2620
|
|
2438
2621
|
msgid "Host Errata Advisory"
|
2439
|
-
msgstr ""
|
2622
|
+
msgstr "Рекомендации для узла"
|
2440
2623
|
|
2441
2624
|
msgid "Host ID"
|
2442
2625
|
msgstr "Идентификатор узла"
|
@@ -2453,15 +2636,27 @@ msgstr ""
|
|
2453
2636
|
msgid "Host Tasks Workers Pool Size"
|
2454
2637
|
msgstr ""
|
2455
2638
|
|
2639
|
+
msgid "Host collection"
|
2640
|
+
msgstr ""
|
2641
|
+
|
2456
2642
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2457
2643
|
msgstr "Коллекция «%{name}» превысила максимально допустимое ограничение %{limit}"
|
2458
2644
|
|
2459
2645
|
msgid "Host collection is empty."
|
2460
2646
|
msgstr "Пустая коллекция."
|
2461
2647
|
|
2648
|
+
msgid "Host collections"
|
2649
|
+
msgstr ""
|
2650
|
+
|
2651
|
+
msgid "Host collections updated"
|
2652
|
+
msgstr ""
|
2653
|
+
|
2462
2654
|
msgid "Host content and subscription details"
|
2463
2655
|
msgstr "Свойства подписки и содержимого"
|
2464
2656
|
|
2657
|
+
msgid "Host content view and environment updated"
|
2658
|
+
msgstr ""
|
2659
|
+
|
2465
2660
|
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."
|
2466
2661
|
msgstr ""
|
2467
2662
|
|
@@ -2481,7 +2676,7 @@ msgid "Host has not been registered with subscription-manager"
|
|
2481
2676
|
msgstr "Узел не был зарегистрирован в subscription-manager"
|
2482
2677
|
|
2483
2678
|
msgid "Host has not been registered with subscription-manager."
|
2484
|
-
msgstr ""
|
2679
|
+
msgstr "Узел не был зарегистрирован в subscription-manager."
|
2485
2680
|
|
2486
2681
|
msgid "Host id to list applicable deb packages for"
|
2487
2682
|
msgstr ""
|
@@ -2505,7 +2700,7 @@ msgid "Host with ID %s not found."
|
|
2505
2700
|
msgstr ""
|
2506
2701
|
|
2507
2702
|
msgid "Hosts"
|
2508
|
-
msgstr ""
|
2703
|
+
msgstr "Узлы"
|
2509
2704
|
|
2510
2705
|
msgid "Hosts with Installable Errata"
|
2511
2706
|
msgstr "Узлы с доступными для установки исправлениями"
|
@@ -2513,7 +2708,7 @@ msgstr "Узлы с доступными для установки исправ
|
|
2513
2708
|
msgid "Hosts: "
|
2514
2709
|
msgstr ""
|
2515
2710
|
|
2516
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2711
|
+
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."
|
2517
2712
|
msgstr ""
|
2518
2713
|
|
2519
2714
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2576,12 +2771,18 @@ msgstr ""
|
|
2576
2771
|
msgid "ID of the repository set to enable"
|
2577
2772
|
msgstr "Идентификатор набора репозиториев для активации"
|
2578
2773
|
|
2774
|
+
msgid "ID of the repository within the set to disable"
|
2775
|
+
msgstr ""
|
2776
|
+
|
2579
2777
|
msgid "ID of the sync plan"
|
2580
2778
|
msgstr "Идентификатор плана синхронизации"
|
2581
2779
|
|
2582
2780
|
msgid "ID: %s doesn't exist "
|
2583
2781
|
msgstr ""
|
2584
2782
|
|
2783
|
+
msgid "Id"
|
2784
|
+
msgstr ""
|
2785
|
+
|
2585
2786
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2586
2787
|
msgstr ""
|
2587
2788
|
|
@@ -2598,7 +2799,7 @@ msgid "Id of an erratum to find repositories that contain the erratum"
|
|
2598
2799
|
msgstr "Идентификатор исправления для получения списка репозиториев"
|
2599
2800
|
|
2600
2801
|
msgid "Id of the content host"
|
2601
|
-
msgstr ""
|
2802
|
+
msgstr "Идентификатор узла содержимого"
|
2602
2803
|
|
2603
2804
|
msgid "Id of the content view to limit the synchronization on"
|
2604
2805
|
msgstr ""
|
@@ -2654,16 +2855,22 @@ msgstr ""
|
|
2654
2855
|
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"
|
2655
2856
|
msgstr ""
|
2656
2857
|
|
2858
|
+
msgid "Ids of smart proxies to associate"
|
2859
|
+
msgstr ""
|
2860
|
+
|
2657
2861
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2658
2862
|
msgstr ""
|
2659
2863
|
|
2660
|
-
msgid "If
|
2864
|
+
msgid "If SSL should be verified for the upstream URL"
|
2865
|
+
msgstr ""
|
2866
|
+
|
2867
|
+
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."
|
2661
2868
|
msgstr ""
|
2662
2869
|
|
2663
2870
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2664
2871
|
msgstr "Если задано, удалить указанное число подписок в соответствии с заданным идентификатором"
|
2665
2872
|
|
2666
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2873
|
+
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."
|
2667
2874
|
msgstr ""
|
2668
2875
|
|
2669
2876
|
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"
|
@@ -2672,6 +2879,9 @@ msgstr ""
|
|
2672
2879
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2673
2880
|
msgstr ""
|
2674
2881
|
|
2882
|
+
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."
|
2883
|
+
msgstr ""
|
2884
|
+
|
2675
2885
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2676
2886
|
msgstr ""
|
2677
2887
|
|
@@ -2687,6 +2897,9 @@ msgstr ""
|
|
2687
2897
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2688
2898
|
msgstr ""
|
2689
2899
|
|
2900
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2901
|
+
msgstr ""
|
2902
|
+
|
2690
2903
|
msgid "Ignorable content can be only set for Yum repositories."
|
2691
2904
|
msgstr ""
|
2692
2905
|
|
@@ -2703,7 +2916,7 @@ msgid "Ignore subscriptions that are unavailable to the specified host"
|
|
2703
2916
|
msgstr "Показать доступные подписки для указанного узла"
|
2704
2917
|
|
2705
2918
|
msgid "Immediate"
|
2706
|
-
msgstr ""
|
2919
|
+
msgstr "Немедленный"
|
2707
2920
|
|
2708
2921
|
msgid "Import"
|
2709
2922
|
msgstr "Импорт"
|
@@ -2721,6 +2934,9 @@ msgid "Import New Manifest"
|
|
2721
2934
|
msgstr ""
|
2722
2935
|
|
2723
2936
|
msgid "Import Puppet classes"
|
2937
|
+
msgstr "Импорт классов Puppet"
|
2938
|
+
|
2939
|
+
msgid "Import Repository"
|
2724
2940
|
msgstr ""
|
2725
2941
|
|
2726
2942
|
msgid "Import Types"
|
@@ -2744,12 +2960,18 @@ msgstr ""
|
|
2744
2960
|
msgid "Import a content view version to the library"
|
2745
2961
|
msgstr ""
|
2746
2962
|
|
2963
|
+
msgid "Import a repository"
|
2964
|
+
msgstr ""
|
2965
|
+
|
2747
2966
|
msgid "Import facts"
|
2748
2967
|
msgstr "Импорт фактов"
|
2749
2968
|
|
2750
2969
|
msgid "Import only"
|
2751
2970
|
msgstr ""
|
2752
2971
|
|
2972
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2973
|
+
msgstr ""
|
2974
|
+
|
2753
2975
|
msgid "Import uploads into a repository"
|
2754
2976
|
msgstr "Импорт новых компонентов из репозитория"
|
2755
2977
|
|
@@ -2759,9 +2981,12 @@ msgstr ""
|
|
2759
2981
|
msgid "Import-only content views can not be published directly"
|
2760
2982
|
msgstr ""
|
2761
2983
|
|
2762
|
-
msgid "
|
2984
|
+
msgid "Import/Export"
|
2763
2985
|
msgstr ""
|
2764
2986
|
|
2987
|
+
msgid "Important"
|
2988
|
+
msgstr "Важно"
|
2989
|
+
|
2765
2990
|
msgid "Importing manifest into '%{subject}' failed."
|
2766
2991
|
msgstr ""
|
2767
2992
|
|
@@ -2778,6 +3003,9 @@ msgid "Include all Module Streams with no errata."
|
|
2778
3003
|
msgstr ""
|
2779
3004
|
|
2780
3005
|
msgid "Include all RPMs with no errata."
|
3006
|
+
msgstr "Включить пакеты без исправлений"
|
3007
|
+
|
3008
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2781
3009
|
msgstr ""
|
2782
3010
|
|
2783
3011
|
msgid "Include filter"
|
@@ -2840,18 +3068,24 @@ msgstr ""
|
|
2840
3068
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2841
3069
|
msgstr "Инициировать синхронизацию продуктов в соответствии с планом синхронизации"
|
2842
3070
|
|
3071
|
+
msgid "Install"
|
3072
|
+
msgstr ""
|
3073
|
+
|
2843
3074
|
msgid "Install Applicable Errata"
|
2844
3075
|
msgstr "Установить исправления"
|
2845
3076
|
|
2846
3077
|
msgid "Install Applicable Errata on %s"
|
2847
|
-
msgstr ""
|
3078
|
+
msgstr "Установить применимые исправления на %s"
|
2848
3079
|
|
2849
3080
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2850
3081
|
msgstr ""
|
2851
3082
|
|
2852
|
-
msgid "Install errata
|
3083
|
+
msgid "Install errata using scoped search query"
|
2853
3084
|
msgstr ""
|
2854
3085
|
|
3086
|
+
msgid "Install errata via Katello interface"
|
3087
|
+
msgstr "Установить исправления с помощью Katello"
|
3088
|
+
|
2855
3089
|
msgid "Install erratum"
|
2856
3090
|
msgstr "Установить исправление"
|
2857
3091
|
|
@@ -2868,24 +3102,36 @@ msgid "Install package group"
|
|
2868
3102
|
msgstr "Установить группу пакетов"
|
2869
3103
|
|
2870
3104
|
msgid "Install package group via Katello interface"
|
2871
|
-
msgstr ""
|
3105
|
+
msgstr "Установить пакет с помощью Katello"
|
2872
3106
|
|
2873
3107
|
msgid "Install package via Katello interface"
|
3108
|
+
msgstr "Установить пакет с помощью Katello"
|
3109
|
+
|
3110
|
+
msgid "Install packages"
|
2874
3111
|
msgstr ""
|
2875
3112
|
|
2876
3113
|
msgid "Install packages remotely using katello-agent. %s"
|
2877
3114
|
msgstr ""
|
2878
3115
|
|
2879
|
-
msgid "
|
3116
|
+
msgid "Install packages via Katello interface"
|
3117
|
+
msgstr ""
|
3118
|
+
|
3119
|
+
msgid "Install via customized remote execution"
|
3120
|
+
msgstr ""
|
3121
|
+
|
3122
|
+
msgid "Install via katello-agent"
|
2880
3123
|
msgstr ""
|
2881
3124
|
|
2882
|
-
msgid "
|
3125
|
+
msgid "Install via remote execution"
|
2883
3126
|
msgstr ""
|
2884
3127
|
|
2885
|
-
msgid "Installable
|
3128
|
+
msgid "Installable"
|
3129
|
+
msgstr "Доступно для установки"
|
3130
|
+
|
3131
|
+
msgid "Installable errata"
|
2886
3132
|
msgstr ""
|
2887
3133
|
|
2888
|
-
msgid "Installable errata
|
3134
|
+
msgid "Installable errata from content view"
|
2889
3135
|
msgstr ""
|
2890
3136
|
|
2891
3137
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2897,10 +3143,22 @@ msgstr ""
|
|
2897
3143
|
msgid "Installation of package(s) requested: %{packages}"
|
2898
3144
|
msgstr ""
|
2899
3145
|
|
3146
|
+
msgid "Installation status"
|
3147
|
+
msgstr ""
|
3148
|
+
|
2900
3149
|
msgid "Installed Packages"
|
2901
3150
|
msgstr "Установленные пакеты"
|
2902
3151
|
|
2903
|
-
msgid "Installed
|
3152
|
+
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."
|
3153
|
+
msgstr ""
|
3154
|
+
|
3155
|
+
msgid "Installed products"
|
3156
|
+
msgstr ""
|
3157
|
+
|
3158
|
+
msgid "Installed profile"
|
3159
|
+
msgstr ""
|
3160
|
+
|
3161
|
+
msgid "Installed version"
|
2904
3162
|
msgstr ""
|
2905
3163
|
|
2906
3164
|
msgid "Installing Erratum..."
|
@@ -2981,6 +3239,9 @@ msgstr "Неверные значения параметров. Параметр
|
|
2981
3239
|
msgid "Invalid params provided - date_type must be one of %s"
|
2982
3240
|
msgstr "Неверные значения параметров. Параметр date_type может принимать следующие значения: %s"
|
2983
3241
|
|
3242
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3243
|
+
msgstr ""
|
3244
|
+
|
2984
3245
|
msgid "Invalid value specified for Container Image repositories."
|
2985
3246
|
msgstr ""
|
2986
3247
|
|
@@ -2991,6 +3252,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
|
|
2991
3252
|
msgstr ""
|
2992
3253
|
|
2993
3254
|
msgid "Issued"
|
3255
|
+
msgstr "Опубликовано"
|
3256
|
+
|
3257
|
+
msgid "Issued from"
|
3258
|
+
msgstr ""
|
3259
|
+
|
3260
|
+
msgid "Job ${description} has started."
|
2994
3261
|
msgstr ""
|
2995
3262
|
|
2996
3263
|
msgid "Katello ID of local pool to update"
|
@@ -3005,6 +3272,12 @@ msgstr ""
|
|
3005
3272
|
msgid "Katello: Install Package Group"
|
3006
3273
|
msgstr ""
|
3007
3274
|
|
3275
|
+
msgid "Katello: Install errata by search query"
|
3276
|
+
msgstr ""
|
3277
|
+
|
3278
|
+
msgid "Katello: Install packages by search query"
|
3279
|
+
msgstr ""
|
3280
|
+
|
3008
3281
|
msgid "Katello: Module Stream Actions"
|
3009
3282
|
msgstr ""
|
3010
3283
|
|
@@ -3014,6 +3287,9 @@ msgstr ""
|
|
3014
3287
|
msgid "Katello: Remove Package Group"
|
3015
3288
|
msgstr ""
|
3016
3289
|
|
3290
|
+
msgid "Katello: Remove Packages by search query"
|
3291
|
+
msgstr ""
|
3292
|
+
|
3017
3293
|
msgid "Katello: Resolve Traces"
|
3018
3294
|
msgstr ""
|
3019
3295
|
|
@@ -3026,9 +3302,12 @@ msgstr ""
|
|
3026
3302
|
msgid "Katello: Update Package Group"
|
3027
3303
|
msgstr ""
|
3028
3304
|
|
3029
|
-
msgid "
|
3305
|
+
msgid "Katello: Update Packages by search query"
|
3030
3306
|
msgstr ""
|
3031
3307
|
|
3308
|
+
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3309
|
+
msgstr "Пары ключей и их значений, содержащих факты для subscription-manager. В качестве разделителя для вложенных фактов используется точка."
|
3310
|
+
|
3032
3311
|
msgid "Kickstart"
|
3033
3312
|
msgstr ""
|
3034
3313
|
|
@@ -3047,6 +3326,9 @@ msgstr "Метка"
|
|
3047
3326
|
msgid "Label of the content"
|
3048
3327
|
msgstr "Метка содержимого"
|
3049
3328
|
|
3329
|
+
msgid "Label of the content view"
|
3330
|
+
msgstr ""
|
3331
|
+
|
3050
3332
|
msgid "Last published"
|
3051
3333
|
msgstr ""
|
3052
3334
|
|
@@ -3065,13 +3347,10 @@ msgstr ""
|
|
3065
3347
|
msgid "Learn more about adding Subscription Manifests"
|
3066
3348
|
msgstr ""
|
3067
3349
|
|
3068
|
-
msgid "
|
3069
|
-
msgstr ""
|
3070
|
-
|
3071
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3350
|
+
msgid "Less than"
|
3072
3351
|
msgstr ""
|
3073
3352
|
|
3074
|
-
msgid "
|
3353
|
+
msgid "Library"
|
3075
3354
|
msgstr ""
|
3076
3355
|
|
3077
3356
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3093,7 +3372,7 @@ msgid "Lifecycle Environment %s has associated Hosts. Please unregister or move
|
|
3093
3372
|
msgstr ""
|
3094
3373
|
|
3095
3374
|
msgid "Lifecycle Environment ID"
|
3096
|
-
msgstr ""
|
3375
|
+
msgstr "Идентификатор окружения жизненного цикла"
|
3097
3376
|
|
3098
3377
|
msgid "Lifecycle Environment Label"
|
3099
3378
|
msgstr ""
|
@@ -3116,9 +3395,15 @@ msgstr ""
|
|
3116
3395
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3117
3396
|
msgstr ""
|
3118
3397
|
|
3398
|
+
msgid "Lifecycle environment: {lce}"
|
3399
|
+
msgstr ""
|
3400
|
+
|
3119
3401
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3120
3402
|
msgstr ""
|
3121
3403
|
|
3404
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3405
|
+
msgstr ""
|
3406
|
+
|
3122
3407
|
msgid "Limit content to just that available in the activation key's content view version"
|
3123
3408
|
msgstr ""
|
3124
3409
|
|
@@ -3227,6 +3512,9 @@ msgstr ""
|
|
3227
3512
|
msgid "List of Products for sync plan"
|
3228
3513
|
msgstr "Список продуктов в плане синхронизации"
|
3229
3514
|
|
3515
|
+
msgid "List of alternate_content_sources"
|
3516
|
+
msgstr ""
|
3517
|
+
|
3230
3518
|
msgid "List of component content view version ids for composite views"
|
3231
3519
|
msgstr "Список идентификаторов версий компонентов для сложных представлений"
|
3232
3520
|
|
@@ -3267,10 +3555,10 @@ msgid "List of host id to list available module streams for"
|
|
3267
3555
|
msgstr ""
|
3268
3556
|
|
3269
3557
|
msgid "List of host ids to exclude and not run an action on"
|
3270
|
-
msgstr ""
|
3558
|
+
msgstr "Список идентификаторов узлов, которые должны быть исключены при выполнении действия"
|
3271
3559
|
|
3272
3560
|
msgid "List of host ids to perform an action on"
|
3273
|
-
msgstr ""
|
3561
|
+
msgstr "Список идентификаторов узлов, над которыми будет выполняться действие"
|
3274
3562
|
|
3275
3563
|
msgid "List of host ids to replace the hosts in host collection"
|
3276
3564
|
msgstr "Список идентификаторов узлов в составе коллекции"
|
@@ -3297,7 +3585,7 @@ msgid "List of products in an organization"
|
|
3297
3585
|
msgstr "Список продуктов в организации"
|
3298
3586
|
|
3299
3587
|
msgid "List of products installed on the host"
|
3300
|
-
msgstr ""
|
3588
|
+
msgstr "Список установленных на узле продуктов"
|
3301
3589
|
|
3302
3590
|
msgid "List of repositories belonging to a product in an environment"
|
3303
3591
|
msgstr ""
|
@@ -3323,11 +3611,17 @@ msgstr "Список продуктов для указанной подписк
|
|
3323
3611
|
msgid "List of subscription products in an activation key"
|
3324
3612
|
msgstr "Список продуктов подписки для ключа активации"
|
3325
3613
|
|
3614
|
+
msgid "List of versions to exclude and not run an action on"
|
3615
|
+
msgstr ""
|
3616
|
+
|
3617
|
+
msgid "List of versions to perform an action on"
|
3618
|
+
msgstr ""
|
3619
|
+
|
3326
3620
|
msgid "List organization subscriptions"
|
3327
3621
|
msgstr "Возвращает список подписок организации"
|
3328
3622
|
|
3329
3623
|
msgid "List packages"
|
3330
|
-
msgstr ""
|
3624
|
+
msgstr "Показать пакеты"
|
3331
3625
|
|
3332
3626
|
msgid "List packages installed on the host"
|
3333
3627
|
msgstr "Возвращает список установленных на узле пакетов"
|
@@ -3368,6 +3662,12 @@ msgstr "Загружается"
|
|
3368
3662
|
msgid "Loading versions"
|
3369
3663
|
msgstr ""
|
3370
3664
|
|
3665
|
+
msgid "Loading..."
|
3666
|
+
msgstr ""
|
3667
|
+
|
3668
|
+
msgid "Low"
|
3669
|
+
msgstr ""
|
3670
|
+
|
3371
3671
|
msgid "Make copy of a content view"
|
3372
3672
|
msgstr "Создать копию представления"
|
3373
3673
|
|
@@ -3423,6 +3723,9 @@ msgid "Max %(maxQuantity)s"
|
|
3423
3723
|
msgstr ""
|
3424
3724
|
|
3425
3725
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3726
|
+
msgstr "Достигнуто максимальное число узлов (%{limit}) для ключа «%{name}»."
|
3727
|
+
|
3728
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3426
3729
|
msgstr ""
|
3427
3730
|
|
3428
3731
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
@@ -3471,7 +3774,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
|
|
3471
3774
|
msgstr "Отсутствуют аргументы %{substitutions} для %{content_url}"
|
3472
3775
|
|
3473
3776
|
msgid "Moderate"
|
3474
|
-
msgstr ""
|
3777
|
+
msgstr "Средний"
|
3475
3778
|
|
3476
3779
|
msgid "Modular"
|
3477
3780
|
msgstr ""
|
@@ -3491,6 +3794,9 @@ msgstr ""
|
|
3491
3794
|
msgid "Module streams"
|
3492
3795
|
msgstr ""
|
3493
3796
|
|
3797
|
+
msgid "Module streams will appear here when available."
|
3798
|
+
msgstr ""
|
3799
|
+
|
3494
3800
|
msgid "Multi-entitlement"
|
3495
3801
|
msgstr "Многократные полномочия"
|
3496
3802
|
|
@@ -3516,7 +3822,13 @@ msgid ""
|
|
3516
3822
|
" %{repos}"
|
3517
3823
|
msgstr ""
|
3518
3824
|
|
3825
|
+
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."
|
3826
|
+
msgstr ""
|
3827
|
+
|
3519
3828
|
msgid "Name"
|
3829
|
+
msgstr "Имя"
|
3830
|
+
|
3831
|
+
msgid "Name is a required parameter."
|
3520
3832
|
msgstr ""
|
3521
3833
|
|
3522
3834
|
msgid "Name of new activation key"
|
@@ -3525,11 +3837,14 @@ msgstr "Имя нового ключа активации"
|
|
3525
3837
|
msgid "Name of the Content Credential"
|
3526
3838
|
msgstr ""
|
3527
3839
|
|
3840
|
+
msgid "Name of the alternate content source"
|
3841
|
+
msgstr ""
|
3842
|
+
|
3528
3843
|
msgid "Name of the content view"
|
3529
3844
|
msgstr "Имя представления"
|
3530
3845
|
|
3531
3846
|
msgid "Name of the host"
|
3532
|
-
msgstr ""
|
3847
|
+
msgstr "Имя узла"
|
3533
3848
|
|
3534
3849
|
msgid "Name of the repository"
|
3535
3850
|
msgstr ""
|
@@ -3546,6 +3861,9 @@ msgstr ""
|
|
3546
3861
|
msgid "Nest"
|
3547
3862
|
msgstr "Вложить"
|
3548
3863
|
|
3864
|
+
msgid "Network Sync"
|
3865
|
+
msgstr ""
|
3866
|
+
|
3549
3867
|
msgid "Never Synced"
|
3550
3868
|
msgstr "Никогда"
|
3551
3869
|
|
@@ -3612,12 +3930,21 @@ msgstr ""
|
|
3612
3930
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3613
3931
|
msgstr "Нет версий представления %{component} в версии %{version} сложного представления %{composite}"
|
3614
3932
|
|
3933
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3934
|
+
msgstr ""
|
3935
|
+
|
3936
|
+
msgid "No action required"
|
3937
|
+
msgstr ""
|
3938
|
+
|
3615
3939
|
msgid "No applicable errata"
|
3616
3940
|
msgstr ""
|
3617
3941
|
|
3618
3942
|
msgid "No applicable errata for %s, skipping"
|
3619
3943
|
msgstr ""
|
3620
3944
|
|
3945
|
+
msgid "No applications to restart"
|
3946
|
+
msgstr ""
|
3947
|
+
|
3621
3948
|
msgid "No artifacts to show"
|
3622
3949
|
msgstr ""
|
3623
3950
|
|
@@ -3639,6 +3966,9 @@ msgstr "Нет событий."
|
|
3639
3966
|
msgid "No content views available"
|
3640
3967
|
msgstr ""
|
3641
3968
|
|
3969
|
+
msgid "No content views available for the selected environment"
|
3970
|
+
msgstr ""
|
3971
|
+
|
3642
3972
|
msgid "No content views belong to ${label}"
|
3643
3973
|
msgstr ""
|
3644
3974
|
|
@@ -3648,6 +3978,9 @@ msgstr "Параметр content_view_version_ids не определен"
|
|
3648
3978
|
msgid "No description"
|
3649
3979
|
msgstr ""
|
3650
3980
|
|
3981
|
+
msgid "No description provided"
|
3982
|
+
msgstr ""
|
3983
|
+
|
3651
3984
|
msgid "No enabled repositories match your search criteria."
|
3652
3985
|
msgstr ""
|
3653
3986
|
|
@@ -3672,13 +4005,19 @@ msgstr ""
|
|
3672
4005
|
msgid "No file uploaded"
|
3673
4006
|
msgstr "Нет отправленных файлов"
|
3674
4007
|
|
4008
|
+
msgid "No host collections"
|
4009
|
+
msgstr ""
|
4010
|
+
|
3675
4011
|
msgid "No host collections found."
|
3676
4012
|
msgstr "Нет коллекций."
|
3677
4013
|
|
3678
4014
|
msgid "No hosts have been specified."
|
3679
|
-
msgstr ""
|
4015
|
+
msgstr "Не задан ни один узел."
|
3680
4016
|
|
3681
4017
|
msgid "No hosts registered with subscription-manager found in selection."
|
4018
|
+
msgstr "Среди выбранных узлов нет узлов, зарегистрированных с помощью subscription-manager"
|
4019
|
+
|
4020
|
+
msgid "No hosts with content source found!"
|
3682
4021
|
msgstr ""
|
3683
4022
|
|
3684
4023
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
@@ -3705,6 +4044,9 @@ msgstr ""
|
|
3705
4044
|
msgid "No matching activation keys found."
|
3706
4045
|
msgstr ""
|
3707
4046
|
|
4047
|
+
msgid "No matching alternate content sources found"
|
4048
|
+
msgstr ""
|
4049
|
+
|
3708
4050
|
msgid "No matching content views found"
|
3709
4051
|
msgstr ""
|
3710
4052
|
|
@@ -3720,6 +4062,9 @@ msgstr ""
|
|
3720
4062
|
msgid "No matching history record found"
|
3721
4063
|
msgstr ""
|
3722
4064
|
|
4065
|
+
msgid "No matching host collections found"
|
4066
|
+
msgstr ""
|
4067
|
+
|
3723
4068
|
msgid "No matching hosts found."
|
3724
4069
|
msgstr ""
|
3725
4070
|
|
@@ -3750,6 +4095,12 @@ msgstr "Нет новых пакетов."
|
|
3750
4095
|
msgid "No packages"
|
3751
4096
|
msgstr ""
|
3752
4097
|
|
4098
|
+
msgid "No packages available to install"
|
4099
|
+
msgstr ""
|
4100
|
+
|
4101
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4102
|
+
msgstr ""
|
4103
|
+
|
3753
4104
|
msgid "No packages removed"
|
3754
4105
|
msgstr "Удаление пакетов не производилось"
|
3755
4106
|
|
@@ -3771,9 +4122,6 @@ msgstr ""
|
|
3771
4122
|
msgid "No products are enabled."
|
3772
4123
|
msgstr ""
|
3773
4124
|
|
3774
|
-
msgid "No profiles to show"
|
3775
|
-
msgstr ""
|
3776
|
-
|
3777
4125
|
msgid "No pulp workers running."
|
3778
4126
|
msgstr "Нет работающих обработчиков Pulp."
|
3779
4127
|
|
@@ -3840,9 +4188,6 @@ msgstr "Нет"
|
|
3840
4188
|
msgid "None provided"
|
3841
4189
|
msgstr ""
|
3842
4190
|
|
3843
|
-
msgid "Not Specified"
|
3844
|
-
msgstr ""
|
3845
|
-
|
3846
4191
|
msgid "Not a number"
|
3847
4192
|
msgstr ""
|
3848
4193
|
|
@@ -3855,6 +4200,9 @@ msgstr ""
|
|
3855
4200
|
msgid "Not running"
|
3856
4201
|
msgstr ""
|
3857
4202
|
|
4203
|
+
msgid "Not specified"
|
4204
|
+
msgstr ""
|
4205
|
+
|
3858
4206
|
msgid "Not yet published"
|
3859
4207
|
msgstr "Нет"
|
3860
4208
|
|
@@ -3880,7 +4228,7 @@ msgid "Number to Allocate"
|
|
3880
4228
|
msgstr ""
|
3881
4229
|
|
3882
4230
|
msgid "OSTree Branch"
|
3883
|
-
msgstr ""
|
4231
|
+
msgstr "Ветвь OSTree"
|
3884
4232
|
|
3885
4233
|
msgid "OSTree Ref"
|
3886
4234
|
msgstr ""
|
@@ -3898,7 +4246,7 @@ msgid "Object to show subscriptions available for, either 'host' or 'activation_
|
|
3898
4246
|
msgstr "Ограничивает результаты только теми подписками, которые доступны для указанного здесь объекта. Допустимые значения: «host», «activation_key»."
|
3899
4247
|
|
3900
4248
|
msgid "On Demand"
|
3901
|
-
msgstr ""
|
4249
|
+
msgstr "По требованию"
|
3902
4250
|
|
3903
4251
|
msgid "On-disk location for exported repositories"
|
3904
4252
|
msgstr "Расположение экспортируемых репозиториев на диске"
|
@@ -3954,9 +4302,6 @@ msgstr ""
|
|
3954
4302
|
msgid "Organization Information not provided."
|
3955
4303
|
msgstr ""
|
3956
4304
|
|
3957
|
-
msgid "Organization Label"
|
3958
|
-
msgstr ""
|
3959
|
-
|
3960
4305
|
msgid "Organization cannot be blank."
|
3961
4306
|
msgstr "Организация не может быть пустой."
|
3962
4307
|
|
@@ -4161,9 +4506,6 @@ msgstr ""
|
|
4161
4506
|
msgid "Packages"
|
4162
4507
|
msgstr "Пакеты"
|
4163
4508
|
|
4164
|
-
msgid "Packages management functionality on this page is incomplete"
|
4165
|
-
msgstr ""
|
4166
|
-
|
4167
4509
|
msgid "Packages must be provided"
|
4168
4510
|
msgstr "Необходимо указать пакеты"
|
4169
4511
|
|
@@ -4183,9 +4525,9 @@ msgid "Partition template IDs"
|
|
4183
4525
|
msgstr "Код шаблона таблицы разделов"
|
4184
4526
|
|
4185
4527
|
msgid "Password"
|
4186
|
-
msgstr ""
|
4528
|
+
msgstr "Пароль"
|
4187
4529
|
|
4188
|
-
msgid "Password for authentication"
|
4530
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4189
4531
|
msgstr ""
|
4190
4532
|
|
4191
4533
|
msgid "Password of the upstream authentication token."
|
@@ -4198,12 +4540,15 @@ msgid "Password to access URL"
|
|
4198
4540
|
msgstr ""
|
4199
4541
|
|
4200
4542
|
msgid "Path"
|
4201
|
-
msgstr ""
|
4543
|
+
msgstr "Путь"
|
4202
4544
|
|
4203
4545
|
msgid "Path for ssl cert used for pulp server auth"
|
4204
|
-
msgstr ""
|
4546
|
+
msgstr "Путь к сертификату SSL для аутентификации на сервере Pulp"
|
4205
4547
|
|
4206
4548
|
msgid "Path for ssl key used for pulp server auth"
|
4549
|
+
msgstr "Путь к ключу SSL для аутентификации на сервере Pulp"
|
4550
|
+
|
4551
|
+
msgid "Path suffixes for finding alternate content"
|
4207
4552
|
msgstr ""
|
4208
4553
|
|
4209
4554
|
msgid "Paused"
|
@@ -4224,6 +4569,12 @@ msgstr ""
|
|
4224
4569
|
msgid "Performs a full-export of the repositories in library."
|
4225
4570
|
msgstr ""
|
4226
4571
|
|
4572
|
+
msgid "Performs a full-export of the repository in library."
|
4573
|
+
msgstr ""
|
4574
|
+
|
4575
|
+
msgid "Performs a incremental-export of the repository in library."
|
4576
|
+
msgstr ""
|
4577
|
+
|
4227
4578
|
msgid "Performs an incremental-export of a content view version."
|
4228
4579
|
msgstr ""
|
4229
4580
|
|
@@ -4257,6 +4608,12 @@ msgstr ""
|
|
4257
4608
|
msgid "Please select a content source before assigning a kickstart repository"
|
4258
4609
|
msgstr ""
|
4259
4610
|
|
4611
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4612
|
+
msgstr ""
|
4613
|
+
|
4614
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4615
|
+
msgstr ""
|
4616
|
+
|
4260
4617
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4261
4618
|
msgstr ""
|
4262
4619
|
|
@@ -4278,9 +4635,39 @@ msgstr ""
|
|
4278
4635
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4279
4636
|
msgstr ""
|
4280
4637
|
|
4638
|
+
msgid "Prefer registered through proxy for remote execution"
|
4639
|
+
msgstr ""
|
4640
|
+
|
4641
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4642
|
+
msgstr ""
|
4643
|
+
|
4644
|
+
msgid "Prevent from further updates"
|
4645
|
+
msgstr ""
|
4646
|
+
|
4281
4647
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4282
4648
|
msgstr ""
|
4283
4649
|
|
4650
|
+
msgid "Problem searching"
|
4651
|
+
msgstr ""
|
4652
|
+
|
4653
|
+
msgid "Problem searching errata"
|
4654
|
+
msgstr ""
|
4655
|
+
|
4656
|
+
msgid "Problem searching host collections"
|
4657
|
+
msgstr ""
|
4658
|
+
|
4659
|
+
msgid "Problem searching module streams"
|
4660
|
+
msgstr ""
|
4661
|
+
|
4662
|
+
msgid "Problem searching packages"
|
4663
|
+
msgstr ""
|
4664
|
+
|
4665
|
+
msgid "Problem searching repository sets"
|
4666
|
+
msgstr ""
|
4667
|
+
|
4668
|
+
msgid "Problem searching traces"
|
4669
|
+
msgstr ""
|
4670
|
+
|
4284
4671
|
msgid "Processing metadata"
|
4285
4672
|
msgstr "Обработка метаданных..."
|
4286
4673
|
|
@@ -4294,13 +4681,13 @@ msgid "Product Content"
|
|
4294
4681
|
msgstr "Содержание продукта"
|
4295
4682
|
|
4296
4683
|
msgid "Product Create"
|
4297
|
-
msgstr ""
|
4684
|
+
msgstr "Создать продукт"
|
4298
4685
|
|
4299
4686
|
msgid "Product ID"
|
4300
4687
|
msgstr "Идентификатор продукта"
|
4301
4688
|
|
4302
4689
|
msgid "Product Name"
|
4303
|
-
msgstr ""
|
4690
|
+
msgstr "Имя продукта"
|
4304
4691
|
|
4305
4692
|
msgid "Product and Repositories"
|
4306
4693
|
msgstr "Продукты и репозитории"
|
@@ -4320,7 +4707,7 @@ msgid "Product name"
|
|
4320
4707
|
msgstr "Название продукта"
|
4321
4708
|
|
4322
4709
|
msgid "Product name as listed from a host's installed products"
|
4323
|
-
msgstr ""
|
4710
|
+
msgstr "Название продукта в соответствии с указанным в списке установленных продуктов"
|
4324
4711
|
|
4325
4712
|
msgid "Product the repository belongs to"
|
4326
4713
|
msgstr "Продукт, с которым будет ассоциирован новый репозиторий"
|
@@ -4337,11 +4724,8 @@ msgstr ""
|
|
4337
4724
|
msgid "Products"
|
4338
4725
|
msgstr "Продукты"
|
4339
4726
|
|
4340
|
-
msgid "Profiles"
|
4341
|
-
msgstr ""
|
4342
|
-
|
4343
4727
|
msgid "Promote"
|
4344
|
-
msgstr ""
|
4728
|
+
msgstr "Продвижение"
|
4345
4729
|
|
4346
4730
|
msgid "Promote a content view version"
|
4347
4731
|
msgstr "Продвинуть версию представления"
|
@@ -4359,14 +4743,17 @@ msgid "Promoted to %{environment}"
|
|
4359
4743
|
msgstr "Продвинуто в %{environment}"
|
4360
4744
|
|
4361
4745
|
msgid "Promotion Summary"
|
4362
|
-
msgstr ""
|
4746
|
+
msgstr "Сводка переносов"
|
4363
4747
|
|
4364
4748
|
msgid "Promotion Summary for %{content_view}"
|
4365
|
-
msgstr ""
|
4749
|
+
msgstr "Сводка переносов %{content_view}"
|
4366
4750
|
|
4367
4751
|
msgid "Promotion to Environment"
|
4368
4752
|
msgstr ""
|
4369
4753
|
|
4754
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4755
|
+
msgstr ""
|
4756
|
+
|
4370
4757
|
msgid "Provided Products"
|
4371
4758
|
msgstr "Продукты"
|
4372
4759
|
|
@@ -4377,10 +4764,10 @@ msgid "Provisioning template IDs"
|
|
4377
4764
|
msgstr "Идентификаторы шаблонов"
|
4378
4765
|
|
4379
4766
|
msgid "Proxies"
|
4380
|
-
msgstr ""
|
4767
|
+
msgstr "Прокси"
|
4381
4768
|
|
4382
4769
|
msgid "Public"
|
4383
|
-
msgstr ""
|
4770
|
+
msgstr "Общее"
|
4384
4771
|
|
4385
4772
|
msgid "Public key block in DER encoding or certificate content"
|
4386
4773
|
msgstr ""
|
@@ -4529,18 +4916,27 @@ msgstr ""
|
|
4529
4916
|
msgid "RPM name"
|
4530
4917
|
msgstr ""
|
4531
4918
|
|
4919
|
+
msgid "RPM packages"
|
4920
|
+
msgstr ""
|
4921
|
+
|
4532
4922
|
msgid "RPMs"
|
4533
4923
|
msgstr "RPM"
|
4534
4924
|
|
4535
4925
|
msgid "Range"
|
4536
|
-
msgstr ""
|
4926
|
+
msgstr "диапазон"
|
4537
4927
|
|
4538
4928
|
msgid "Realm IDs"
|
4539
4929
|
msgstr "Идентификаторы областей"
|
4540
4930
|
|
4931
|
+
msgid "Reassign affected activation key"
|
4932
|
+
msgstr ""
|
4933
|
+
|
4541
4934
|
msgid "Reassign affected activation keys"
|
4542
4935
|
msgstr ""
|
4543
4936
|
|
4937
|
+
msgid "Reassign affected host"
|
4938
|
+
msgstr ""
|
4939
|
+
|
4544
4940
|
msgid "Reassign affected hosts"
|
4545
4941
|
msgstr ""
|
4546
4942
|
|
@@ -4568,6 +4964,9 @@ msgstr ""
|
|
4568
4964
|
msgid "Recommended Repositories"
|
4569
4965
|
msgstr ""
|
4570
4966
|
|
4967
|
+
msgid "Red Hat CDN"
|
4968
|
+
msgstr ""
|
4969
|
+
|
4571
4970
|
msgid "Red Hat CDN URL"
|
4572
4971
|
msgstr "Сеть доставки содержимого Red Hat"
|
4573
4972
|
|
@@ -4575,6 +4974,15 @@ msgid "Red Hat Repositories"
|
|
4575
4974
|
msgstr "Репозитории Red Hat"
|
4576
4975
|
|
4577
4976
|
msgid "Red Hat Repositories page"
|
4977
|
+
msgstr "репозитории Red Hat"
|
4978
|
+
|
4979
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4980
|
+
msgstr ""
|
4981
|
+
|
4982
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4983
|
+
msgstr ""
|
4984
|
+
|
4985
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4578
4986
|
msgstr ""
|
4579
4987
|
|
4580
4988
|
msgid "Red Hat products cannot be manipulated."
|
@@ -4607,6 +5015,18 @@ msgstr ""
|
|
4607
5015
|
msgid "Register host '%s' before attaching subscriptions"
|
4608
5016
|
msgstr ""
|
4609
5017
|
|
5018
|
+
msgid "Registered by"
|
5019
|
+
msgstr ""
|
5020
|
+
|
5021
|
+
msgid "Registered on"
|
5022
|
+
msgstr ""
|
5023
|
+
|
5024
|
+
msgid "Registered through"
|
5025
|
+
msgstr ""
|
5026
|
+
|
5027
|
+
msgid "Registration details"
|
5028
|
+
msgstr ""
|
5029
|
+
|
4610
5030
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4611
5031
|
msgstr ""
|
4612
5032
|
|
@@ -4635,7 +5055,7 @@ msgid "Related content views will appear here when created."
|
|
4635
5055
|
msgstr ""
|
4636
5056
|
|
4637
5057
|
msgid "Release"
|
4638
|
-
msgstr ""
|
5058
|
+
msgstr "Релиз"
|
4639
5059
|
|
4640
5060
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
4641
5061
|
msgstr ""
|
@@ -4697,15 +5117,24 @@ msgstr ""
|
|
4697
5117
|
msgid "Remove from environments"
|
4698
5118
|
msgstr ""
|
4699
5119
|
|
5120
|
+
msgid "Remove host from collections"
|
5121
|
+
msgstr ""
|
5122
|
+
|
5123
|
+
msgid "Remove host from host collections"
|
5124
|
+
msgstr ""
|
5125
|
+
|
4700
5126
|
msgid "Remove hosts from the host collection"
|
4701
5127
|
msgstr "Удалить узлы из коллекции"
|
4702
5128
|
|
4703
5129
|
msgid "Remove lifecycle environments from the smart proxy"
|
4704
5130
|
msgstr ""
|
4705
5131
|
|
4706
|
-
msgid "Remove
|
5132
|
+
msgid "Remove module stream"
|
4707
5133
|
msgstr ""
|
4708
5134
|
|
5135
|
+
msgid "Remove one or more host collections from one or more hosts"
|
5136
|
+
msgstr "Удалить узлы из коллекций"
|
5137
|
+
|
4709
5138
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
4710
5139
|
msgstr ""
|
4711
5140
|
|
@@ -4719,9 +5148,12 @@ msgid "Remove package group"
|
|
4719
5148
|
msgstr "Удалить группу пакетов"
|
4720
5149
|
|
4721
5150
|
msgid "Remove package group via Katello interface"
|
4722
|
-
msgstr ""
|
5151
|
+
msgstr "Удалить группу пакетов с помощью Katello"
|
4723
5152
|
|
4724
5153
|
msgid "Remove package via Katello interface"
|
5154
|
+
msgstr "Удалить пакет с помощью Katello"
|
5155
|
+
|
5156
|
+
msgid "Remove packages via Katello interface"
|
4725
5157
|
msgstr ""
|
4726
5158
|
|
4727
5159
|
msgid "Remove products from sync plan"
|
@@ -4763,6 +5195,9 @@ msgstr "Тип репозитория"
|
|
4763
5195
|
msgid "Repositories"
|
4764
5196
|
msgstr "Репозитории"
|
4765
5197
|
|
5198
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5199
|
+
msgstr ""
|
5200
|
+
|
4766
5201
|
msgid "Repositories from published Content Views are not allowed."
|
4767
5202
|
msgstr "Нельзя использовать репозитории из опубликованных представлений."
|
4768
5203
|
|
@@ -4794,7 +5229,7 @@ msgid "Repository id"
|
|
4794
5229
|
msgstr "ID репозитория"
|
4795
5230
|
|
4796
5231
|
msgid "Repository identifier"
|
4797
|
-
msgstr ""
|
5232
|
+
msgstr "Идентификатор репозитория"
|
4798
5233
|
|
4799
5234
|
msgid "Repository label '%s' is not associated with content view."
|
4800
5235
|
msgstr ""
|
@@ -4838,9 +5273,6 @@ msgstr ""
|
|
4838
5273
|
msgid "Repository sets will appear here when available."
|
4839
5274
|
msgstr ""
|
4840
5275
|
|
4841
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4842
|
-
msgstr ""
|
4843
|
-
|
4844
5276
|
msgid "Republish Repositories of %{name} %{version}"
|
4845
5277
|
msgstr ""
|
4846
5278
|
|
@@ -4862,10 +5294,19 @@ msgstr ""
|
|
4862
5294
|
msgid "Requires Virt-Who"
|
4863
5295
|
msgstr ""
|
4864
5296
|
|
5297
|
+
msgid "Reset"
|
5298
|
+
msgstr ""
|
5299
|
+
|
4865
5300
|
msgid "Reset filters"
|
4866
5301
|
msgstr ""
|
4867
5302
|
|
5303
|
+
msgid "Reset module stream"
|
5304
|
+
msgstr ""
|
5305
|
+
|
4868
5306
|
msgid "Reset to default"
|
5307
|
+
msgstr "Восстановить исходные"
|
5308
|
+
|
5309
|
+
msgid "Reset to the default state"
|
4869
5310
|
msgstr ""
|
4870
5311
|
|
4871
5312
|
msgid "Resolve traces"
|
@@ -4892,7 +5333,7 @@ msgstr ""
|
|
4892
5333
|
msgid "Restart via remote execution"
|
4893
5334
|
msgstr ""
|
4894
5335
|
|
4895
|
-
msgid "Restrict
|
5336
|
+
msgid "Restrict composite content view promotion"
|
4896
5337
|
msgstr ""
|
4897
5338
|
|
4898
5339
|
msgid "Result"
|
@@ -4982,7 +5423,10 @@ msgstr ""
|
|
4982
5423
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4983
5424
|
msgstr ""
|
4984
5425
|
|
4985
|
-
msgid "Review
|
5426
|
+
msgid "Review affected environment"
|
5427
|
+
msgstr ""
|
5428
|
+
|
5429
|
+
msgid "Review affected environments"
|
4986
5430
|
msgstr ""
|
4987
5431
|
|
4988
5432
|
msgid "Review details"
|
@@ -5000,15 +5444,15 @@ msgstr ""
|
|
5000
5444
|
msgid "Roles"
|
5001
5445
|
msgstr "Роли"
|
5002
5446
|
|
5003
|
-
msgid "Rpm packages"
|
5004
|
-
msgstr ""
|
5005
|
-
|
5006
5447
|
msgid "Rules to be added"
|
5007
5448
|
msgstr ""
|
5008
5449
|
|
5009
5450
|
msgid "Run Sync Plan:"
|
5010
5451
|
msgstr ""
|
5011
5452
|
|
5453
|
+
msgid "Run job invocation"
|
5454
|
+
msgstr ""
|
5455
|
+
|
5012
5456
|
msgid "Running"
|
5013
5457
|
msgstr "Работает"
|
5014
5458
|
|
@@ -5045,6 +5489,12 @@ msgstr "Поиск"
|
|
5045
5489
|
msgid "Search Query"
|
5046
5490
|
msgstr ""
|
5047
5491
|
|
5492
|
+
msgid "Search available packages"
|
5493
|
+
msgstr ""
|
5494
|
+
|
5495
|
+
msgid "Search host collections"
|
5496
|
+
msgstr ""
|
5497
|
+
|
5048
5498
|
msgid "Search pattern (defaults to '*')"
|
5049
5499
|
msgstr ""
|
5050
5500
|
|
@@ -5055,11 +5505,14 @@ msgid "Search string for erratum to perform an action on"
|
|
5055
5505
|
msgstr ""
|
5056
5506
|
|
5057
5507
|
msgid "Search string for host to perform an action on"
|
5058
|
-
msgstr ""
|
5508
|
+
msgstr "Строка поиска для выбора узлов, над которыми будет выполняться действие"
|
5059
5509
|
|
5060
5510
|
msgid "Search string for hosts to perform an action on"
|
5061
5511
|
msgstr ""
|
5062
5512
|
|
5513
|
+
msgid "Search string for versions to perform an action on"
|
5514
|
+
msgstr ""
|
5515
|
+
|
5063
5516
|
msgid "Security"
|
5064
5517
|
msgstr "Безопасность"
|
5065
5518
|
|
@@ -5072,6 +5525,9 @@ msgstr ""
|
|
5072
5525
|
msgid "Select"
|
5073
5526
|
msgstr "Выбрать"
|
5074
5527
|
|
5528
|
+
msgid "Select ..."
|
5529
|
+
msgstr ""
|
5530
|
+
|
5075
5531
|
msgid "Select All"
|
5076
5532
|
msgstr "Выбрать все"
|
5077
5533
|
|
@@ -5090,6 +5546,12 @@ msgstr ""
|
|
5090
5546
|
msgid "Select a content view"
|
5091
5547
|
msgstr ""
|
5092
5548
|
|
5549
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5550
|
+
msgstr ""
|
5551
|
+
|
5552
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5553
|
+
msgstr ""
|
5554
|
+
|
5093
5555
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5094
5556
|
msgstr ""
|
5095
5557
|
|
@@ -5105,6 +5567,12 @@ msgstr ""
|
|
5105
5567
|
msgid "Select an Organization"
|
5106
5568
|
msgstr "Выберите организацию"
|
5107
5569
|
|
5570
|
+
msgid "Select an environment"
|
5571
|
+
msgstr ""
|
5572
|
+
|
5573
|
+
msgid "Select an environment above"
|
5574
|
+
msgstr ""
|
5575
|
+
|
5108
5576
|
msgid "Select an organization"
|
5109
5577
|
msgstr ""
|
5110
5578
|
|
@@ -5117,6 +5585,15 @@ msgstr ""
|
|
5117
5585
|
msgid "Select content view"
|
5118
5586
|
msgstr ""
|
5119
5587
|
|
5588
|
+
msgid "Select environment"
|
5589
|
+
msgstr ""
|
5590
|
+
|
5591
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5592
|
+
msgstr ""
|
5593
|
+
|
5594
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5595
|
+
msgstr ""
|
5596
|
+
|
5120
5597
|
msgid "Select hosts to assign to %s"
|
5121
5598
|
msgstr "Выберите узлы для сопоставления %s"
|
5122
5599
|
|
@@ -5129,6 +5606,9 @@ msgstr ""
|
|
5129
5606
|
msgid "Select one"
|
5130
5607
|
msgstr ""
|
5131
5608
|
|
5609
|
+
msgid "Select packages to install to the host {hostName}."
|
5610
|
+
msgstr ""
|
5611
|
+
|
5132
5612
|
msgid "Select page"
|
5133
5613
|
msgstr ""
|
5134
5614
|
|
@@ -5136,7 +5616,7 @@ msgid "Select row"
|
|
5136
5616
|
msgstr ""
|
5137
5617
|
|
5138
5618
|
msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
|
5139
|
-
msgstr ""
|
5619
|
+
msgstr "Выберите установочный носитель для этого узла. Выберите «Синхронизация содержимого», чтобы использовать репозитории для синхронизированного кикстарта, или «Все носители», чтобы настроить другие носители."
|
5140
5620
|
|
5141
5621
|
msgid "Selected environment "
|
5142
5622
|
msgstr ""
|
@@ -5147,15 +5627,15 @@ msgstr ""
|
|
5147
5627
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5148
5628
|
msgstr ""
|
5149
5629
|
|
5150
|
-
msgid "Service Level"
|
5151
|
-
msgstr "Уровень обслуживания"
|
5152
|
-
|
5153
5630
|
msgid "Service Level %s"
|
5154
5631
|
msgstr "Уровень обслуживания %s"
|
5155
5632
|
|
5156
5633
|
msgid "Service Level (SLA)"
|
5157
5634
|
msgstr ""
|
5158
5635
|
|
5636
|
+
msgid "Service level"
|
5637
|
+
msgstr ""
|
5638
|
+
|
5159
5639
|
msgid "Service level of host"
|
5160
5640
|
msgstr ""
|
5161
5641
|
|
@@ -5163,11 +5643,14 @@ msgid "Service level to be used for autoheal"
|
|
5163
5643
|
msgstr ""
|
5164
5644
|
|
5165
5645
|
msgid "Set content overrides for the host"
|
5166
|
-
msgstr ""
|
5646
|
+
msgstr "Настроить переопределения для содержимого узла"
|
5167
5647
|
|
5168
5648
|
msgid "Set content overrides to one or more hosts"
|
5169
5649
|
msgstr ""
|
5170
5650
|
|
5651
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5652
|
+
msgstr ""
|
5653
|
+
|
5171
5654
|
msgid "Set true to remove an override and reset it to 'default'"
|
5172
5655
|
msgstr ""
|
5173
5656
|
|
@@ -5214,7 +5697,7 @@ msgid "Show a product"
|
|
5214
5697
|
msgstr "Показать продукт"
|
5215
5698
|
|
5216
5699
|
msgid "Show a repository"
|
5217
|
-
msgstr ""
|
5700
|
+
msgstr "Показать репозиторий"
|
5218
5701
|
|
5219
5702
|
msgid "Show a subscription"
|
5220
5703
|
msgstr "Показать подписку"
|
@@ -5222,12 +5705,21 @@ msgstr "Показать подписку"
|
|
5222
5705
|
msgid "Show a sync plan"
|
5223
5706
|
msgstr "Показать план синхронизации"
|
5224
5707
|
|
5708
|
+
msgid "Show affected activation keys"
|
5709
|
+
msgstr ""
|
5710
|
+
|
5711
|
+
msgid "Show affected hosts"
|
5712
|
+
msgstr ""
|
5713
|
+
|
5225
5714
|
msgid "Show all"
|
5226
5715
|
msgstr ""
|
5227
5716
|
|
5228
5717
|
msgid "Show an activation key"
|
5229
5718
|
msgstr "Показать ключ активации"
|
5230
5719
|
|
5720
|
+
msgid "Show an alternate content source"
|
5721
|
+
msgstr ""
|
5722
|
+
|
5231
5723
|
msgid "Show an environment"
|
5232
5724
|
msgstr "Показать окружение"
|
5233
5725
|
|
@@ -5295,7 +5787,7 @@ msgid "Sockets: %s"
|
|
5295
5787
|
msgstr ""
|
5296
5788
|
|
5297
5789
|
msgid "Solution"
|
5298
|
-
msgstr ""
|
5790
|
+
msgstr "Решение"
|
5299
5791
|
|
5300
5792
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
5301
5793
|
msgstr ""
|
@@ -5303,6 +5795,9 @@ msgstr ""
|
|
5303
5795
|
msgid "Solve dependencies"
|
5304
5796
|
msgstr ""
|
5305
5797
|
|
5798
|
+
msgid "Some hosts are ignored!"
|
5799
|
+
msgstr ""
|
5800
|
+
|
5306
5801
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5307
5802
|
msgstr ""
|
5308
5803
|
|
@@ -5330,9 +5825,15 @@ msgstr ""
|
|
5330
5825
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5331
5826
|
msgstr ""
|
5332
5827
|
|
5828
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5829
|
+
msgstr ""
|
5830
|
+
|
5333
5831
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5334
5832
|
msgstr ""
|
5335
5833
|
|
5834
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5835
|
+
msgstr ""
|
5836
|
+
|
5336
5837
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5337
5838
|
msgstr ""
|
5338
5839
|
|
@@ -5351,10 +5852,10 @@ msgstr ""
|
|
5351
5852
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5352
5853
|
msgstr ""
|
5353
5854
|
|
5354
|
-
msgid "Something went wrong while getting
|
5855
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5355
5856
|
msgstr ""
|
5356
5857
|
|
5357
|
-
msgid "Something went wrong while getting
|
5858
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5358
5859
|
msgstr ""
|
5359
5860
|
|
5360
5861
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5366,9 +5867,15 @@ msgstr ""
|
|
5366
5867
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5367
5868
|
msgstr ""
|
5368
5869
|
|
5870
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5871
|
+
msgstr ""
|
5872
|
+
|
5369
5873
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5370
5874
|
msgstr ""
|
5371
5875
|
|
5876
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5877
|
+
msgstr ""
|
5878
|
+
|
5372
5879
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5373
5880
|
msgstr ""
|
5374
5881
|
|
@@ -5405,6 +5912,9 @@ msgstr ""
|
|
5405
5912
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5406
5913
|
msgstr ""
|
5407
5914
|
|
5915
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5916
|
+
msgstr ""
|
5917
|
+
|
5408
5918
|
msgid "Something went wrong! Please check server logs!"
|
5409
5919
|
msgstr ""
|
5410
5920
|
|
@@ -5415,7 +5925,7 @@ msgid "Source RPM"
|
|
5415
5925
|
msgstr "Исходный код"
|
5416
5926
|
|
5417
5927
|
msgid "Source RPMs"
|
5418
|
-
msgstr ""
|
5928
|
+
msgstr "Исходные RPM"
|
5419
5929
|
|
5420
5930
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5421
5931
|
msgstr ""
|
@@ -5438,9 +5948,15 @@ msgstr "Дата и время начала не могут быть пусты
|
|
5438
5948
|
msgid "Start Time"
|
5439
5949
|
msgstr "Время начала"
|
5440
5950
|
|
5951
|
+
msgid "Start date"
|
5952
|
+
msgstr ""
|
5953
|
+
|
5441
5954
|
msgid "Starts"
|
5442
5955
|
msgstr "Начало"
|
5443
5956
|
|
5957
|
+
msgid "State"
|
5958
|
+
msgstr ""
|
5959
|
+
|
5444
5960
|
msgid "Status"
|
5445
5961
|
msgstr "Статус"
|
5446
5962
|
|
@@ -5453,6 +5969,12 @@ msgstr "Хранение данных"
|
|
5453
5969
|
msgid "Stream"
|
5454
5970
|
msgstr ""
|
5455
5971
|
|
5972
|
+
msgid "Streamed"
|
5973
|
+
msgstr ""
|
5974
|
+
|
5975
|
+
msgid "Streams based on the host based on the installation status"
|
5976
|
+
msgstr ""
|
5977
|
+
|
5456
5978
|
msgid "Streams based on the host based on their status"
|
5457
5979
|
msgstr ""
|
5458
5980
|
|
@@ -5493,11 +6015,17 @@ msgid "Subscription Pool uuid"
|
|
5493
6015
|
msgstr "UUID пула подписок"
|
5494
6016
|
|
5495
6017
|
msgid "Subscription Status"
|
6018
|
+
msgstr "Состояние"
|
6019
|
+
|
6020
|
+
msgid "Subscription UUID"
|
5496
6021
|
msgstr ""
|
5497
6022
|
|
5498
6023
|
msgid "Subscription Watch"
|
5499
6024
|
msgstr ""
|
5500
6025
|
|
6026
|
+
msgid "Subscription connection enabled"
|
6027
|
+
msgstr ""
|
6028
|
+
|
5501
6029
|
msgid "Subscription expiration notification"
|
5502
6030
|
msgstr ""
|
5503
6031
|
|
@@ -5576,7 +6104,7 @@ msgstr ""
|
|
5576
6104
|
msgid "Sync Canceled"
|
5577
6105
|
msgstr "Синхронизация отменена"
|
5578
6106
|
|
5579
|
-
msgid "Sync
|
6107
|
+
msgid "Sync Connect Timeout"
|
5580
6108
|
msgstr ""
|
5581
6109
|
|
5582
6110
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5600,16 +6128,25 @@ msgstr "План синхронизации"
|
|
5600
6128
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5601
6129
|
msgstr ""
|
5602
6130
|
|
5603
|
-
msgid "Sync Smart Proxies after
|
6131
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6132
|
+
msgstr ""
|
6133
|
+
|
6134
|
+
msgid "Sync Sock Connect Timeout"
|
6135
|
+
msgstr ""
|
6136
|
+
|
6137
|
+
msgid "Sync Sock Read Timeout"
|
5604
6138
|
msgstr ""
|
5605
6139
|
|
5606
6140
|
msgid "Sync Status"
|
5607
6141
|
msgstr "Статус синхронизации"
|
5608
6142
|
|
5609
6143
|
msgid "Sync Summary"
|
5610
|
-
msgstr ""
|
6144
|
+
msgstr "Сводка синхронизации"
|
5611
6145
|
|
5612
6146
|
msgid "Sync Summary for %s"
|
6147
|
+
msgstr "Сводка синхронизации для %s"
|
6148
|
+
|
6149
|
+
msgid "Sync Total Timeout"
|
5613
6150
|
msgstr ""
|
5614
6151
|
|
5615
6152
|
msgid "Sync a repository"
|
@@ -5640,7 +6177,7 @@ msgid "Synced "
|
|
5640
6177
|
msgstr ""
|
5641
6178
|
|
5642
6179
|
msgid "Synced Content"
|
5643
|
-
msgstr ""
|
6180
|
+
msgstr "Синхронизация содержимого"
|
5644
6181
|
|
5645
6182
|
msgid "Synced to smart proxy"
|
5646
6183
|
msgstr ""
|
@@ -5681,6 +6218,9 @@ msgstr ""
|
|
5681
6218
|
msgid "System Status"
|
5682
6219
|
msgstr "Состояние систем"
|
5683
6220
|
|
6221
|
+
msgid "System purpose"
|
6222
|
+
msgstr ""
|
6223
|
+
|
5684
6224
|
msgid "Tag name"
|
5685
6225
|
msgstr ""
|
5686
6226
|
|
@@ -5688,7 +6228,7 @@ msgid "Tags"
|
|
5688
6228
|
msgstr "Метки"
|
5689
6229
|
|
5690
6230
|
msgid "Task"
|
5691
|
-
msgstr ""
|
6231
|
+
msgstr "Задача"
|
5692
6232
|
|
5693
6233
|
msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
|
5694
6234
|
msgstr ""
|
@@ -5708,6 +6248,9 @@ msgstr "Временные"
|
|
5708
6248
|
msgid "The '%s' environment cannot contain a changeset!"
|
5709
6249
|
msgstr "Окружение «%s» не может содержать набор изменений."
|
5710
6250
|
|
6251
|
+
msgid "The Alternate Content Source type"
|
6252
|
+
msgstr ""
|
6253
|
+
|
5711
6254
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5712
6255
|
msgstr ""
|
5713
6256
|
|
@@ -5720,6 +6263,9 @@ msgstr ""
|
|
5720
6263
|
msgid "The actual file contents"
|
5721
6264
|
msgstr "Содержимое файла"
|
5722
6265
|
|
6266
|
+
msgid "The content type for the Alternate Content Source"
|
6267
|
+
msgstr ""
|
6268
|
+
|
5723
6269
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5724
6270
|
msgstr "Текущая организация не может быть удалена. Перейдите в другую организацию и повторите попытку."
|
5725
6271
|
|
@@ -5729,7 +6275,7 @@ msgstr "Исходное представление не может быть и
|
|
5729
6275
|
msgid "The default content view cannot be promoted"
|
5730
6276
|
msgstr "Используемое по умолчанию представление не может переноситься."
|
5731
6277
|
|
5732
|
-
msgid "The default dependency solving value for new
|
6278
|
+
msgid "The default dependency solving value for new content views."
|
5733
6279
|
msgstr ""
|
5734
6280
|
|
5735
6281
|
msgid "The description for the content view version"
|
@@ -5759,6 +6305,9 @@ msgstr ""
|
|
5759
6305
|
msgid "The field to sort the data by. Defaults to the created date."
|
5760
6306
|
msgstr ""
|
5761
6307
|
|
6308
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6309
|
+
msgstr ""
|
6310
|
+
|
5762
6311
|
msgid "The following hosts have errata that apply to them: "
|
5763
6312
|
msgstr ""
|
5764
6313
|
|
@@ -5767,15 +6316,39 @@ msgid ""
|
|
5767
6316
|
" %{repos}"
|
5768
6317
|
msgstr ""
|
5769
6318
|
|
6319
|
+
msgid "The id of the content source"
|
6320
|
+
msgstr ""
|
6321
|
+
|
6322
|
+
msgid "The id of the content view"
|
6323
|
+
msgstr ""
|
6324
|
+
|
5770
6325
|
msgid "The id of the host to alter"
|
5771
6326
|
msgstr "Идентификатор узла"
|
5772
6327
|
|
6328
|
+
msgid "The id of the lifecycle environment"
|
6329
|
+
msgstr ""
|
6330
|
+
|
6331
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6332
|
+
msgstr ""
|
6333
|
+
|
5773
6334
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5774
6335
|
msgstr ""
|
5775
6336
|
|
5776
6337
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5777
6338
|
msgstr ""
|
5778
6339
|
|
6340
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6341
|
+
msgstr ""
|
6342
|
+
|
6343
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6344
|
+
msgstr ""
|
6345
|
+
|
6346
|
+
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."
|
6347
|
+
msgstr ""
|
6348
|
+
|
6349
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6350
|
+
msgstr ""
|
6351
|
+
|
5779
6352
|
msgid "The maximum number of versions of each package to keep."
|
5780
6353
|
msgstr ""
|
5781
6354
|
|
@@ -5862,9 +6435,18 @@ msgstr ""
|
|
5862
6435
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5863
6436
|
msgstr "Нет исправлений для зарегистрированных систем."
|
5864
6437
|
|
6438
|
+
msgid "There are no host collections available to add."
|
6439
|
+
msgstr ""
|
6440
|
+
|
5865
6441
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5866
6442
|
msgstr "Нет продуктов и репозиториев. Настройте их на странице %{custom} или %{redhat}."
|
5867
6443
|
|
6444
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6445
|
+
msgstr ""
|
6446
|
+
|
6447
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6448
|
+
msgstr ""
|
6449
|
+
|
5868
6450
|
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."
|
5869
6451
|
msgstr "Окружения и версии не заданы или определены неверно. Проверьте параметры environment_ids и content_view_version_ids."
|
5870
6452
|
|
@@ -5877,6 +6459,12 @@ msgstr ""
|
|
5877
6459
|
msgid "There is nothing to see here"
|
5878
6460
|
msgstr ""
|
5879
6461
|
|
6462
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6463
|
+
msgstr ""
|
6464
|
+
|
6465
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6466
|
+
msgstr ""
|
6467
|
+
|
5880
6468
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5881
6469
|
msgstr ""
|
5882
6470
|
|
@@ -5925,13 +6513,13 @@ msgstr ""
|
|
5925
6513
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5926
6514
|
msgstr ""
|
5927
6515
|
|
5928
|
-
msgid "This host
|
6516
|
+
msgid "This host does not have any Module streams."
|
5929
6517
|
msgstr ""
|
5930
6518
|
|
5931
|
-
msgid "This host does not have any
|
6519
|
+
msgid "This host does not have any packages."
|
5932
6520
|
msgstr ""
|
5933
6521
|
|
5934
|
-
msgid "This host
|
6522
|
+
msgid "This host has errata that are applicable, but not installable."
|
5935
6523
|
msgstr ""
|
5936
6524
|
|
5937
6525
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5964,6 +6552,9 @@ msgstr ""
|
|
5964
6552
|
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}."
|
5965
6553
|
msgstr ""
|
5966
6554
|
|
6555
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6556
|
+
msgstr ""
|
6557
|
+
|
5967
6558
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5968
6559
|
msgstr ""
|
5969
6560
|
|
@@ -5997,11 +6588,11 @@ msgstr ""
|
|
5997
6588
|
msgid "Time in minutes to consider orphan content as orphaned."
|
5998
6589
|
msgstr ""
|
5999
6590
|
|
6000
|
-
msgid "Time in seconds to wait for a
|
6001
|
-
msgstr "
|
6591
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
6592
|
+
msgstr ""
|
6002
6593
|
|
6003
|
-
msgid "Time in seconds to wait for a
|
6004
|
-
msgstr "
|
6594
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
6595
|
+
msgstr ""
|
6005
6596
|
|
6006
6597
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
6007
6598
|
msgstr ""
|
@@ -6018,9 +6609,6 @@ msgstr ""
|
|
6018
6609
|
msgid "Total steps: "
|
6019
6610
|
msgstr ""
|
6020
6611
|
|
6021
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6022
|
-
msgstr ""
|
6023
|
-
|
6024
6612
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6025
6613
|
msgstr ""
|
6026
6614
|
|
@@ -6036,6 +6624,9 @@ msgstr ""
|
|
6036
6624
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6037
6625
|
msgstr ""
|
6038
6626
|
|
6627
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6628
|
+
msgstr ""
|
6629
|
+
|
6039
6630
|
msgid "Traces that require logout cannot be restarted remotely"
|
6040
6631
|
msgstr ""
|
6041
6632
|
|
@@ -6058,7 +6649,7 @@ msgid "Trying to cancel the synchronization..."
|
|
6058
6649
|
msgstr "Попытка отмены синхронизации..."
|
6059
6650
|
|
6060
6651
|
msgid "Type"
|
6061
|
-
msgstr ""
|
6652
|
+
msgstr "Тип"
|
6062
6653
|
|
6063
6654
|
msgid "Type must be one of: %s"
|
6064
6655
|
msgstr ""
|
@@ -6070,7 +6661,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
6070
6661
|
msgstr ""
|
6071
6662
|
|
6072
6663
|
msgid "URL"
|
6073
|
-
msgstr ""
|
6664
|
+
msgstr "URL"
|
6074
6665
|
|
6075
6666
|
msgid "URL needs to have a trailing /"
|
6076
6667
|
msgstr ""
|
@@ -6094,13 +6685,13 @@ msgid "UUID of the system"
|
|
6094
6685
|
msgstr "UUID системы"
|
6095
6686
|
|
6096
6687
|
msgid "UUID to use for registered host, random uuid is generated if not provided"
|
6097
|
-
msgstr ""
|
6688
|
+
msgstr "UUID регистрируемого узла. Если не определен, будет сгенерирован случайный UUID."
|
6098
6689
|
|
6099
6690
|
msgid "UUIDs of the virtual guests from the host's hypervisor"
|
6100
|
-
msgstr ""
|
6691
|
+
msgstr "Идентификаторы UUID виртуальных машин, находящихся под контролем гипервизора узла"
|
6101
6692
|
|
6102
6693
|
msgid "Unable to connect"
|
6103
|
-
msgstr ""
|
6694
|
+
msgstr "Не удалось подключиться"
|
6104
6695
|
|
6105
6696
|
msgid "Unable to connect. Got: %s"
|
6106
6697
|
msgstr ""
|
@@ -6117,9 +6708,15 @@ msgstr ""
|
|
6117
6708
|
msgid "Unable to get users"
|
6118
6709
|
msgstr ""
|
6119
6710
|
|
6711
|
+
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. "
|
6712
|
+
msgstr ""
|
6713
|
+
|
6120
6714
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6121
6715
|
msgstr ""
|
6122
6716
|
|
6717
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6718
|
+
msgstr ""
|
6719
|
+
|
6123
6720
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6124
6721
|
msgstr "Не удалось переназначить ключи активации. Проверьте activation_key_content_view_id и activation_key_environment_id."
|
6125
6722
|
|
@@ -6162,6 +6759,9 @@ msgstr "Без полномочий"
|
|
6162
6759
|
msgid "Unfiltered params array: %s."
|
6163
6760
|
msgstr ""
|
6164
6761
|
|
6762
|
+
msgid "Uninstall and reset"
|
6763
|
+
msgstr ""
|
6764
|
+
|
6165
6765
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6166
6766
|
msgstr ""
|
6167
6767
|
|
@@ -6190,7 +6790,7 @@ msgid "Unregister host %s before assigning an organization"
|
|
6190
6790
|
msgstr ""
|
6191
6791
|
|
6192
6792
|
msgid "Unregister the host as a subscription consumer"
|
6193
|
-
msgstr ""
|
6793
|
+
msgstr "Отменить регистрацию узла"
|
6194
6794
|
|
6195
6795
|
msgid "Unspecified"
|
6196
6796
|
msgstr ""
|
@@ -6216,6 +6816,9 @@ msgstr ""
|
|
6216
6816
|
msgid "Update"
|
6217
6817
|
msgstr "Обновить"
|
6218
6818
|
|
6819
|
+
msgid "Update Alternate Content Source"
|
6820
|
+
msgstr ""
|
6821
|
+
|
6219
6822
|
msgid "Update CDN Configuration"
|
6220
6823
|
msgstr ""
|
6221
6824
|
|
@@ -6255,6 +6858,9 @@ msgstr "Обновить план синхронизации"
|
|
6255
6858
|
msgid "Update an activation key"
|
6256
6859
|
msgstr "Обновить ключ активации"
|
6257
6860
|
|
6861
|
+
msgid "Update an alternate content source"
|
6862
|
+
msgstr ""
|
6863
|
+
|
6258
6864
|
msgid "Update an environment"
|
6259
6865
|
msgstr "Обновить окружение"
|
6260
6866
|
|
@@ -6298,14 +6904,17 @@ msgid "Update package for %s"
|
|
6298
6904
|
msgstr ""
|
6299
6905
|
|
6300
6906
|
msgid "Update package group via Katello interface"
|
6301
|
-
msgstr ""
|
6907
|
+
msgstr "Обновить группу пакетов с помощью Katello"
|
6302
6908
|
|
6303
6909
|
msgid "Update package via Katello interface"
|
6304
|
-
msgstr ""
|
6910
|
+
msgstr "Обновить пакеты с помощью Katello"
|
6305
6911
|
|
6306
6912
|
msgid "Update packages remotely using katello-agent. %s"
|
6307
6913
|
msgstr ""
|
6308
6914
|
|
6915
|
+
msgid "Update packages via Katello interface"
|
6916
|
+
msgstr ""
|
6917
|
+
|
6309
6918
|
msgid "Update redhat repository"
|
6310
6919
|
msgstr ""
|
6311
6920
|
|
@@ -6324,6 +6933,9 @@ msgstr ""
|
|
6324
6933
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6325
6934
|
msgstr ""
|
6326
6935
|
|
6936
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6937
|
+
msgstr ""
|
6938
|
+
|
6327
6939
|
msgid "Update the information about enabled repositories"
|
6328
6940
|
msgstr "Обновить информацию о подключенных репозиториях"
|
6329
6941
|
|
@@ -6339,14 +6951,17 @@ msgstr "Обновлено"
|
|
6339
6951
|
msgid "Updated component details"
|
6340
6952
|
msgstr ""
|
6341
6953
|
|
6342
|
-
msgid "
|
6954
|
+
msgid "Updated from"
|
6343
6955
|
msgstr ""
|
6344
6956
|
|
6957
|
+
msgid "Updates"
|
6958
|
+
msgstr "Обновления"
|
6959
|
+
|
6345
6960
|
msgid "Updates a product"
|
6346
6961
|
msgstr "Обновить продукт"
|
6347
6962
|
|
6348
6963
|
msgid "Updates all packages on the host(s)"
|
6349
|
-
msgstr ""
|
6964
|
+
msgstr "Обновляет все пакеты на узлах"
|
6350
6965
|
|
6351
6966
|
msgid "Updating Package..."
|
6352
6967
|
msgstr "Обновление пакета..."
|
@@ -6366,7 +6981,7 @@ msgstr ""
|
|
6366
6981
|
msgid "Upgradable"
|
6367
6982
|
msgstr ""
|
6368
6983
|
|
6369
|
-
msgid "Upgradable
|
6984
|
+
msgid "Upgradable to"
|
6370
6985
|
msgstr ""
|
6371
6986
|
|
6372
6987
|
msgid "Upgrade"
|
@@ -6399,9 +7014,18 @@ msgstr ""
|
|
6399
7014
|
msgid "Upload request id"
|
6400
7015
|
msgstr "Отправить ID запроса"
|
6401
7016
|
|
7017
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7018
|
+
msgstr ""
|
7019
|
+
|
7020
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7021
|
+
msgstr ""
|
7022
|
+
|
6402
7023
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6403
7024
|
msgstr ""
|
6404
7025
|
|
7026
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7027
|
+
msgstr ""
|
7028
|
+
|
6405
7029
|
msgid "Upstream identity certificate not available"
|
6406
7030
|
msgstr "Официальный сертификат недоступен"
|
6407
7031
|
|
@@ -6414,15 +7038,12 @@ msgstr ""
|
|
6414
7038
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6415
7039
|
msgstr ""
|
6416
7040
|
|
6417
|
-
msgid "Upstream organization to sync CDN content from"
|
7041
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6418
7042
|
msgstr ""
|
6419
7043
|
|
6420
7044
|
msgid "Upstream password requires upstream username be set."
|
6421
7045
|
msgstr ""
|
6422
7046
|
|
6423
|
-
msgid "Upstream server to sync CDN content from"
|
6424
|
-
msgstr ""
|
6425
|
-
|
6426
7047
|
msgid "Upstream username and password may only be set on custom repositories."
|
6427
7048
|
msgstr ""
|
6428
7049
|
|
@@ -6463,9 +7084,9 @@ msgid "User must be logged in."
|
|
6463
7084
|
msgstr "Пользователь должен быть авторизован."
|
6464
7085
|
|
6465
7086
|
msgid "Username"
|
6466
|
-
msgstr ""
|
7087
|
+
msgstr "Имя"
|
6467
7088
|
|
6468
|
-
msgid "Username for authentication"
|
7089
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6469
7090
|
msgstr ""
|
6470
7091
|
|
6471
7092
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6477,7 +7098,7 @@ msgstr ""
|
|
6477
7098
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6478
7099
|
msgstr ""
|
6479
7100
|
|
6480
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7101
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6481
7102
|
msgstr ""
|
6482
7103
|
|
6483
7104
|
msgid "Valid"
|
@@ -6522,6 +7143,15 @@ msgstr ""
|
|
6522
7143
|
msgid "Versions"
|
6523
7144
|
msgstr "Версия"
|
6524
7145
|
|
7146
|
+
msgid "Versions "
|
7147
|
+
msgstr ""
|
7148
|
+
|
7149
|
+
msgid "Versions to exclusively include in the action"
|
7150
|
+
msgstr ""
|
7151
|
+
|
7152
|
+
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."
|
7153
|
+
msgstr ""
|
7154
|
+
|
6525
7155
|
msgid "Versions will appear here when the content view is published."
|
6526
7156
|
msgstr ""
|
6527
7157
|
|
@@ -6534,16 +7164,22 @@ msgstr ""
|
|
6534
7164
|
msgid "View matching content"
|
6535
7165
|
msgstr ""
|
6536
7166
|
|
6537
|
-
msgid "
|
6538
|
-
msgstr "
|
7167
|
+
msgid "View tasks "
|
7168
|
+
msgstr ""
|
6539
7169
|
|
6540
|
-
msgid "
|
7170
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6541
7171
|
msgstr ""
|
6542
7172
|
|
7173
|
+
msgid "Virtual"
|
7174
|
+
msgstr "Виртуальный"
|
7175
|
+
|
6543
7176
|
msgid "Waiting to start."
|
6544
7177
|
msgstr ""
|
6545
7178
|
|
6546
7179
|
msgid "Warning"
|
7180
|
+
msgstr "Предупреждение"
|
7181
|
+
|
7182
|
+
msgid "What's next?"
|
6547
7183
|
msgstr ""
|
6548
7184
|
|
6549
7185
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
@@ -6567,7 +7203,7 @@ msgstr ""
|
|
6567
7203
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6568
7204
|
msgstr "Позволяет снять ограничение на количество узлов в коллекции"
|
6569
7205
|
|
6570
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7206
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6571
7207
|
msgstr ""
|
6572
7208
|
|
6573
7209
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6597,9 +7233,6 @@ msgstr ""
|
|
6597
7233
|
msgid "Yes"
|
6598
7234
|
msgstr "Да"
|
6599
7235
|
|
6600
|
-
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'."
|
6601
|
-
msgstr ""
|
6602
|
-
|
6603
7236
|
msgid "You are not allowed to promote to Environments %s"
|
6604
7237
|
msgstr "Недостаточно разрешений для переноса в окружения %s"
|
6605
7238
|
|
@@ -6624,6 +7257,9 @@ msgstr ""
|
|
6624
7257
|
msgid "You currently don't have any Content views."
|
6625
7258
|
msgstr ""
|
6626
7259
|
|
7260
|
+
msgid "You currently don't have any alternate content sources."
|
7261
|
+
msgstr ""
|
7262
|
+
|
6627
7263
|
msgid "You currently don't have any filters for this content view."
|
6628
7264
|
msgstr ""
|
6629
7265
|
|
@@ -6657,6 +7293,9 @@ msgstr ""
|
|
6657
7293
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6658
7294
|
msgstr ""
|
6659
7295
|
|
7296
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7297
|
+
msgstr ""
|
7298
|
+
|
6660
7299
|
msgid "You were not allowed to add %s"
|
6661
7300
|
msgstr "Недостаточно разрешений для добавления %s"
|
6662
7301
|
|
@@ -6678,6 +7317,9 @@ msgstr ""
|
|
6678
7317
|
msgid "Your search returned no matching "
|
6679
7318
|
msgstr ""
|
6680
7319
|
|
7320
|
+
msgid "Your search returned no matching Module streams."
|
7321
|
+
msgstr ""
|
7322
|
+
|
6681
7323
|
msgid "Your search returned no matching RPMs."
|
6682
7324
|
msgstr ""
|
6683
7325
|
|
@@ -6697,7 +7339,7 @@ msgid "a deb package"
|
|
6697
7339
|
msgstr ""
|
6698
7340
|
|
6699
7341
|
msgid "a docker manifest"
|
6700
|
-
msgstr ""
|
7342
|
+
msgstr "манифест Docker"
|
6701
7343
|
|
6702
7344
|
msgid "a docker manifest list"
|
6703
7345
|
msgstr ""
|
@@ -6787,11 +7429,14 @@ msgid "bulk delete filter rules"
|
|
6787
7429
|
msgstr ""
|
6788
7430
|
|
6789
7431
|
msgid "can the activation key have unlimited hosts"
|
6790
|
-
msgstr ""
|
7432
|
+
msgstr "снимает ограничение на число узлов, накладываемое ключом активации"
|
6791
7433
|
|
6792
7434
|
msgid "can't be blank"
|
6793
7435
|
msgstr "не может быть пустым"
|
6794
7436
|
|
7437
|
+
msgid "cannot add filter to generated content views"
|
7438
|
+
msgstr ""
|
7439
|
+
|
6795
7440
|
msgid "cannot add filter to import-only view"
|
6796
7441
|
msgstr ""
|
6797
7442
|
|
@@ -6820,7 +7465,7 @@ msgid "cannot be nil"
|
|
6820
7465
|
msgstr "не может быть пустым"
|
6821
7466
|
|
6822
7467
|
msgid "cannot be set because unlimited hosts is set"
|
6823
|
-
msgstr ""
|
7468
|
+
msgstr "не настраивается, если не установлено ограничение на число узлов"
|
6824
7469
|
|
6825
7470
|
msgid "cannot be set for non-yum repositories."
|
6826
7471
|
msgstr "может настраиваться только для репозиториев yum."
|
@@ -6846,6 +7491,9 @@ msgstr "проверка состояния задачи Candlepin"
|
|
6846
7491
|
msgid "checking Pulp task status"
|
6847
7492
|
msgstr "проверка состояния задачи Pulp"
|
6848
7493
|
|
7494
|
+
msgid "click here"
|
7495
|
+
msgstr ""
|
7496
|
+
|
6849
7497
|
msgid "composite content view identifier"
|
6850
7498
|
msgstr ""
|
6851
7499
|
|
@@ -6864,6 +7512,9 @@ msgstr ""
|
|
6864
7512
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6865
7513
|
msgstr ""
|
6866
7514
|
|
7515
|
+
msgid "content view Dependency Solving Default"
|
7516
|
+
msgstr ""
|
7517
|
+
|
6867
7518
|
msgid "content view component ID. Identifier of the component association"
|
6868
7519
|
msgstr ""
|
6869
7520
|
|
@@ -6939,7 +7590,7 @@ msgstr "описание фильтра"
|
|
6939
7590
|
msgid "description of the repository"
|
6940
7591
|
msgstr ""
|
6941
7592
|
|
6942
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7593
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6943
7594
|
msgstr ""
|
6944
7595
|
|
6945
7596
|
msgid "enables or disables synchronization"
|
@@ -7014,6 +7665,9 @@ msgstr "идентификатор фильтра"
|
|
7014
7665
|
msgid "filter identifiers"
|
7015
7666
|
msgstr ""
|
7016
7667
|
|
7668
|
+
msgid "filter only environments containing this label"
|
7669
|
+
msgstr ""
|
7670
|
+
|
7017
7671
|
msgid "filter only environments containing this name"
|
7018
7672
|
msgstr "выбрать окружения с заданным именем"
|
7019
7673
|
|
@@ -7042,7 +7696,7 @@ msgid "host collection name to filter by"
|
|
7042
7696
|
msgstr "фильтр по имени коллекции"
|
7043
7697
|
|
7044
7698
|
msgid "hosts"
|
7045
|
-
msgstr ""
|
7699
|
+
msgstr "узлу(ам)"
|
7046
7700
|
|
7047
7701
|
msgid "how often synchronization should run"
|
7048
7702
|
msgstr "частота синхронизации"
|
@@ -7077,6 +7731,9 @@ msgstr "установка исправлений..."
|
|
7077
7731
|
msgid "installing erratum..."
|
7078
7732
|
msgstr "установка исправления..."
|
7079
7733
|
|
7734
|
+
msgid "installing or updating packages"
|
7735
|
+
msgstr ""
|
7736
|
+
|
7080
7737
|
msgid "installing package group..."
|
7081
7738
|
msgstr "установка группы пакетов..."
|
7082
7739
|
|
@@ -7104,9 +7761,18 @@ msgstr "уже связан с капсулой"
|
|
7104
7761
|
msgid "is invalid"
|
7105
7762
|
msgstr "неверно."
|
7106
7763
|
|
7764
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7765
|
+
msgstr ""
|
7766
|
+
|
7767
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7768
|
+
msgstr ""
|
7769
|
+
|
7107
7770
|
msgid "is not enabled. must be one of the following: %s"
|
7108
7771
|
msgstr ""
|
7109
7772
|
|
7773
|
+
msgid "is only allowed for Yum repositories."
|
7774
|
+
msgstr ""
|
7775
|
+
|
7110
7776
|
msgid "label of the environment"
|
7111
7777
|
msgstr "метка окружения"
|
7112
7778
|
|
@@ -7114,7 +7780,7 @@ msgid "label of the repository"
|
|
7114
7780
|
msgstr ""
|
7115
7781
|
|
7116
7782
|
msgid "limit to only repositories of this type"
|
7117
|
-
msgstr ""
|
7783
|
+
msgstr "ограничить репозиториями заданного типа"
|
7118
7784
|
|
7119
7785
|
msgid "limit to only repositories with this download policy"
|
7120
7786
|
msgstr ""
|
@@ -7179,6 +7845,9 @@ msgstr "должен содержать действительный откры
|
|
7179
7845
|
msgid "must contain valid Public GPG Key"
|
7180
7846
|
msgstr "должен содержать действительный открытый ключ GPG"
|
7181
7847
|
|
7848
|
+
msgid "must not be a negative value."
|
7849
|
+
msgstr ""
|
7850
|
+
|
7182
7851
|
msgid "must not contain leading or trailing white spaces."
|
7183
7852
|
msgstr "не может начинаться и заканчиваться пробелом."
|
7184
7853
|
|
@@ -7275,6 +7944,9 @@ msgstr ""
|
|
7275
7944
|
msgid "package_ids is not an array"
|
7276
7945
|
msgstr "package_ids не содержит массив"
|
7277
7946
|
|
7947
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7948
|
+
msgstr ""
|
7949
|
+
|
7278
7950
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7279
7951
|
msgstr ""
|
7280
7952
|
|
@@ -7282,7 +7954,7 @@ msgid "pattern for container image names"
|
|
7282
7954
|
msgstr ""
|
7283
7955
|
|
7284
7956
|
msgid "perform an incremental import"
|
7285
|
-
msgstr ""
|
7957
|
+
msgstr "разрешить инкрементный импорт"
|
7286
7958
|
|
7287
7959
|
msgid "policies for HTTP proxy for content sync"
|
7288
7960
|
msgstr ""
|
@@ -7392,6 +8064,12 @@ msgstr "временно переопределить URL-адрес источ
|
|
7392
8064
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7393
8065
|
msgstr ""
|
7394
8066
|
|
8067
|
+
msgid "to"
|
8068
|
+
msgstr ""
|
8069
|
+
|
8070
|
+
msgid "to update configuration on all hosts, or"
|
8071
|
+
msgstr ""
|
8072
|
+
|
7395
8073
|
msgid "true if the latest version of the component's content view is desired"
|
7396
8074
|
msgstr ""
|
7397
8075
|
|
@@ -7416,9 +8094,15 @@ msgstr ""
|
|
7416
8094
|
msgid "unknown permission for %s"
|
7417
8095
|
msgstr "неизвестное разрешение для %s"
|
7418
8096
|
|
8097
|
+
msgid "unlimited"
|
8098
|
+
msgstr ""
|
8099
|
+
|
7419
8100
|
msgid "update a filter"
|
7420
8101
|
msgstr "изменить фильтр"
|
7421
8102
|
|
8103
|
+
msgid "update configuration on the hosts manually:"
|
8104
|
+
msgstr ""
|
8105
|
+
|
7422
8106
|
msgid "updating package group..."
|
7423
8107
|
msgstr "обновление группы пакетов..."
|
7424
8108
|
|
@@ -7431,6 +8115,9 @@ msgstr "обновление пакета..."
|
|
7431
8115
|
msgid "updating packages..."
|
7432
8116
|
msgstr "обновление пакетов..."
|
7433
8117
|
|
8118
|
+
msgid "upstream Foreman server"
|
8119
|
+
msgstr ""
|
8120
|
+
|
7434
8121
|
msgid "url not defined."
|
7435
8122
|
msgstr "URL не задан."
|
7436
8123
|
|
@@ -7438,7 +8125,7 @@ msgid "via customized remote execution"
|
|
7438
8125
|
msgstr ""
|
7439
8126
|
|
7440
8127
|
msgid "via remote execution"
|
7441
|
-
msgstr ""
|
8128
|
+
msgstr "удаленное выполнение"
|
7442
8129
|
|
7443
8130
|
msgid "view content view tabs."
|
7444
8131
|
msgstr ""
|
@@ -7468,10 +8155,37 @@ msgid "whitespace-separated list of repo components to be synced from deb-archiv
|
|
7468
8155
|
msgstr ""
|
7469
8156
|
|
7470
8157
|
msgid "with"
|
7471
|
-
msgstr ""
|
8158
|
+
msgstr "на"
|
7472
8159
|
|
7473
8160
|
msgid "yes"
|
7474
8161
|
msgstr "да"
|
7475
8162
|
|
7476
8163
|
msgid "{0} items selected"
|
7477
8164
|
msgstr ""
|
8165
|
+
|
8166
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8167
|
+
msgstr ""
|
8168
|
+
|
8169
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8170
|
+
msgstr ""
|
8171
|
+
|
8172
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8173
|
+
msgstr ""
|
8174
|
+
|
8175
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8176
|
+
msgstr ""
|
8177
|
+
|
8178
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8179
|
+
msgstr ""
|
8180
|
+
|
8181
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8182
|
+
msgstr ""
|
8183
|
+
|
8184
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8185
|
+
msgstr ""
|
8186
|
+
|
8187
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8188
|
+
msgstr ""
|
8189
|
+
|
8190
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8191
|
+
msgstr ""
|