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/ko/katello.po
CHANGED
@@ -4,15 +4,15 @@
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
# Translators:
|
7
|
-
# 0868a4d1af5275b3f70b0a6dac4c99a4,
|
8
|
-
# Bryan Kearney <bryan.kearney@gmail.com>,
|
7
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
8
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
9
9
|
#
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: katello 2.5.0\n"
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
14
14
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
15
|
-
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>,
|
15
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
|
16
16
|
"Language-Team: Korean (https://www.transifex.com/foreman/teams/114/ko/)\n"
|
17
17
|
"MIME-Version: 1.0\n"
|
18
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -52,6 +52,9 @@ msgstr ""
|
|
52
52
|
msgid " ago."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
+
msgid " and"
|
56
|
+
msgstr ""
|
57
|
+
|
55
58
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
56
59
|
msgstr ""
|
57
60
|
|
@@ -114,6 +117,9 @@ msgstr ""
|
|
114
117
|
msgid "%s is not a valid package name"
|
115
118
|
msgstr "%s은(는) 유효한 패키지 이름이 아닙니다 "
|
116
119
|
|
120
|
+
msgid "%s is not a valid path"
|
121
|
+
msgstr ""
|
122
|
+
|
117
123
|
msgid "%s is required"
|
118
124
|
msgstr ""
|
119
125
|
|
@@ -328,10 +334,10 @@ msgid ":a_resource identifier"
|
|
328
334
|
msgstr ":a_resource 식별자 "
|
329
335
|
|
330
336
|
msgid "<b>PROMOTION</b> SUMMARY"
|
331
|
-
msgstr ""
|
337
|
+
msgstr "<b>승격</b> 요약"
|
332
338
|
|
333
339
|
msgid "<b>SYNC</b> SUMMARY"
|
334
|
-
msgstr ""
|
340
|
+
msgstr "<b>동기화</b> 요약"
|
335
341
|
|
336
342
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
337
343
|
msgstr ""
|
@@ -363,9 +369,6 @@ msgstr ""
|
|
363
369
|
msgid "A post-promotion summary of hosts with installable errata"
|
364
370
|
msgstr "설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "
|
365
371
|
|
366
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
367
|
-
msgstr ""
|
368
|
-
|
369
372
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
370
373
|
msgstr "auto-healing 프로세스의 서비스 레벨. 예: SELF-SUPPORT"
|
371
374
|
|
@@ -384,12 +387,18 @@ msgstr ""
|
|
384
387
|
msgid "About page"
|
385
388
|
msgstr ""
|
386
389
|
|
390
|
+
msgid "Abstract"
|
391
|
+
msgstr ""
|
392
|
+
|
387
393
|
msgid "Abstract async task"
|
388
394
|
msgstr "비동기 작업 개요"
|
389
395
|
|
390
396
|
msgid "Accept action timeout"
|
391
397
|
msgstr ""
|
392
398
|
|
399
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
400
|
+
msgstr ""
|
401
|
+
|
393
402
|
msgid "Account Number"
|
394
403
|
msgstr "계정 번호 "
|
395
404
|
|
@@ -403,17 +412,17 @@ msgid "Action unauthorized to be performed in this organization."
|
|
403
412
|
msgstr ""
|
404
413
|
|
405
414
|
msgid "Action unauthorized to be performed on selected hosts."
|
406
|
-
msgstr ""
|
415
|
+
msgstr "선택한 호스트에서 수행할 권한이 없는 작업입니다."
|
407
416
|
|
408
417
|
msgid "Action with sub plans"
|
409
418
|
msgstr "하위 계획이 있는 작업"
|
410
419
|
|
411
|
-
msgid "Actions"
|
412
|
-
msgstr ""
|
413
|
-
|
414
420
|
msgid "Activation Keys"
|
415
421
|
msgstr "활성키 "
|
416
422
|
|
423
|
+
msgid "Activation key"
|
424
|
+
msgstr ""
|
425
|
+
|
417
426
|
msgid "Activation key ID"
|
418
427
|
msgstr "활성키 ID"
|
419
428
|
|
@@ -445,7 +454,7 @@ msgid "Add"
|
|
445
454
|
msgstr "추가 "
|
446
455
|
|
447
456
|
msgid "Add Bookmark"
|
448
|
-
msgstr ""
|
457
|
+
msgstr "북마크 추가 "
|
449
458
|
|
450
459
|
msgid "Add RPM rule"
|
451
460
|
msgstr ""
|
@@ -480,6 +489,12 @@ msgstr ""
|
|
480
489
|
msgid "Add filters using the 'Add filter' button above."
|
481
490
|
msgstr ""
|
482
491
|
|
492
|
+
msgid "Add host to collections"
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
msgid "Add host to host collections"
|
496
|
+
msgstr ""
|
497
|
+
|
483
498
|
msgid "Add host to the host collection"
|
484
499
|
msgstr "호스트 컬렉션에 호스트 추가"
|
485
500
|
|
@@ -490,7 +505,7 @@ msgid "Add new bookmark"
|
|
490
505
|
msgstr ""
|
491
506
|
|
492
507
|
msgid "Add one or more host collections to one or more hosts"
|
493
|
-
msgstr ""
|
508
|
+
msgstr "하나 이상의 호스트에 하나 이상의 호스트 컬렉션 추가"
|
494
509
|
|
495
510
|
msgid "Add ons"
|
496
511
|
msgstr ""
|
@@ -504,6 +519,9 @@ msgstr ""
|
|
504
519
|
msgid "Add rule"
|
505
520
|
msgstr ""
|
506
521
|
|
522
|
+
msgid "Add source"
|
523
|
+
msgstr ""
|
524
|
+
|
507
525
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
508
526
|
msgstr ""
|
509
527
|
|
@@ -516,9 +534,6 @@ msgstr ""
|
|
516
534
|
msgid "Add to this filter using the 'Add filter rule' button."
|
517
535
|
msgstr ""
|
518
536
|
|
519
|
-
msgid "Add traces by applying updates on this host."
|
520
|
-
msgstr ""
|
521
|
-
|
522
537
|
msgid "Added"
|
523
538
|
msgstr ""
|
524
539
|
|
@@ -541,19 +556,19 @@ msgid "Affected repositories"
|
|
541
556
|
msgstr ""
|
542
557
|
|
543
558
|
msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
|
544
|
-
msgstr ""
|
559
|
+
msgstr "증분 업데이트를 생성한 후 지정한 호스트에 변경 내용을 적용합니다. 현재 에라타만 지원됩니다."
|
545
560
|
|
546
561
|
msgid "Agent action"
|
547
562
|
msgstr ""
|
548
563
|
|
549
564
|
msgid "All"
|
550
|
-
msgstr ""
|
565
|
+
msgstr "모두"
|
551
566
|
|
552
567
|
msgid "All Media"
|
553
568
|
msgstr ""
|
554
569
|
|
555
570
|
msgid "All Repositories"
|
556
|
-
msgstr ""
|
571
|
+
msgstr "전체 리포지터리 "
|
557
572
|
|
558
573
|
msgid "All available architectures for this repo are enabled."
|
559
574
|
msgstr ""
|
@@ -561,29 +576,53 @@ msgstr ""
|
|
561
576
|
msgid "All errata applied"
|
562
577
|
msgstr "적용된 모든 에라타"
|
563
578
|
|
579
|
+
msgid "All errata up-to-date"
|
580
|
+
msgstr ""
|
581
|
+
|
582
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
583
|
+
msgstr ""
|
584
|
+
|
564
585
|
msgid "All versions"
|
565
586
|
msgstr ""
|
566
587
|
|
567
588
|
msgid "All versions will be removed from these environments"
|
568
589
|
msgstr ""
|
569
590
|
|
570
|
-
msgid "Allow
|
591
|
+
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)"
|
571
592
|
msgstr ""
|
572
593
|
|
573
|
-
msgid "Allow
|
594
|
+
msgid "Allow deleting repositories in published content views"
|
595
|
+
msgstr ""
|
596
|
+
|
597
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
574
598
|
msgstr ""
|
575
599
|
|
576
600
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
577
601
|
msgstr ""
|
578
602
|
|
579
|
-
msgid "Allow new
|
603
|
+
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."
|
580
604
|
msgstr ""
|
581
605
|
|
582
606
|
msgid "Also include the latest upgradable package version for each host package"
|
583
607
|
msgstr ""
|
584
608
|
|
585
|
-
msgid "Alter a
|
586
|
-
msgstr "
|
609
|
+
msgid "Alter a host's host collections"
|
610
|
+
msgstr ""
|
611
|
+
|
612
|
+
msgid "Alternate Content Sources"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
msgid "Alternate content source ${name} created"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Alternate content source ID"
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Alternate content source deleted"
|
622
|
+
msgstr ""
|
623
|
+
|
624
|
+
msgid "Alternate content sources"
|
625
|
+
msgstr ""
|
587
626
|
|
588
627
|
msgid "Always Use Latest (currently %{version})"
|
589
628
|
msgstr ""
|
@@ -594,6 +633,9 @@ msgstr ""
|
|
594
633
|
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."
|
595
634
|
msgstr ""
|
596
635
|
|
636
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
637
|
+
msgstr ""
|
638
|
+
|
597
639
|
msgid "An environment is missing a prior"
|
598
640
|
msgstr ""
|
599
641
|
|
@@ -637,10 +679,10 @@ msgid "Applicable Content Hosts"
|
|
637
679
|
msgstr ""
|
638
680
|
|
639
681
|
msgid "Application"
|
640
|
-
msgstr ""
|
682
|
+
msgstr "애플리케이션 "
|
641
683
|
|
642
684
|
msgid "Apply"
|
643
|
-
msgstr ""
|
685
|
+
msgstr "적용"
|
644
686
|
|
645
687
|
msgid "Apply Erratum"
|
646
688
|
msgstr ""
|
@@ -736,6 +778,9 @@ msgstr ""
|
|
736
778
|
msgid "Associated location IDs"
|
737
779
|
msgstr ""
|
738
780
|
|
781
|
+
msgid "Associated version"
|
782
|
+
msgstr ""
|
783
|
+
|
739
784
|
msgid "Associations"
|
740
785
|
msgstr "연결 "
|
741
786
|
|
@@ -802,6 +847,9 @@ msgstr ""
|
|
802
847
|
msgid "Backend System Status"
|
803
848
|
msgstr "백엔드 시스템 상태 "
|
804
849
|
|
850
|
+
msgid "Base URL for finding alternate content"
|
851
|
+
msgstr ""
|
852
|
+
|
805
853
|
msgid "Base URL to perform repo discovery on"
|
806
854
|
msgstr ""
|
807
855
|
|
@@ -811,9 +859,21 @@ msgstr "비활성화할 Basearch "
|
|
811
859
|
msgid "Basearch to enable"
|
812
860
|
msgstr "활성화할 Basearch "
|
813
861
|
|
862
|
+
msgid "Basic authentication password"
|
863
|
+
msgstr ""
|
864
|
+
|
865
|
+
msgid "Basic authentication username"
|
866
|
+
msgstr ""
|
867
|
+
|
814
868
|
msgid "Batch size to sync repositories in."
|
815
869
|
msgstr ""
|
816
870
|
|
871
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
872
|
+
msgstr ""
|
873
|
+
|
874
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
875
|
+
msgstr ""
|
876
|
+
|
817
877
|
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."
|
818
878
|
msgstr ""
|
819
879
|
|
@@ -827,7 +887,7 @@ msgid "Bind entitlements to an allocation"
|
|
827
887
|
msgstr ""
|
828
888
|
|
829
889
|
msgid "Bookmark this search"
|
830
|
-
msgstr ""
|
890
|
+
msgstr "이 검색을 북마크 "
|
831
891
|
|
832
892
|
msgid "Bookmarks marked as public are available to all users"
|
833
893
|
msgstr ""
|
@@ -850,6 +910,9 @@ msgstr ""
|
|
850
910
|
msgid "Bulk generate applicability for hosts"
|
851
911
|
msgstr ""
|
852
912
|
|
913
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
914
|
+
msgstr ""
|
915
|
+
|
853
916
|
msgid "CDN Configuration"
|
854
917
|
msgstr ""
|
855
918
|
|
@@ -862,6 +925,12 @@ msgstr ""
|
|
862
925
|
msgid "CDN SSL version"
|
863
926
|
msgstr ""
|
864
927
|
|
928
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
929
|
+
msgstr ""
|
930
|
+
|
931
|
+
msgid "CDN configuration type. One of %s."
|
932
|
+
msgstr ""
|
933
|
+
|
865
934
|
msgid "CDN loading error: %s not found"
|
866
935
|
msgstr "CDN 로딩 중 오류 발생: %s을 찾을 수 없음 "
|
867
936
|
|
@@ -875,7 +944,7 @@ msgid "CVE identifier"
|
|
875
944
|
msgstr "CVE 식별자 "
|
876
945
|
|
877
946
|
msgid "CVEs"
|
878
|
-
msgstr ""
|
947
|
+
msgstr "CVE"
|
879
948
|
|
880
949
|
msgid "Calculate Applicable Errata based on a particular Content View"
|
881
950
|
msgstr "특정 컨텐츠 뷰를 기반으로 적용 가능한 에라타 계산 "
|
@@ -883,7 +952,10 @@ msgstr "특정 컨텐츠 뷰를 기반으로 적용 가능한 에라타 계산 "
|
|
883
952
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
884
953
|
msgstr "특정 환경을 기반으로 적용 가능한 에라타 계산 "
|
885
954
|
|
886
|
-
msgid "Calculate errata host status based only on errata in a
|
955
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
956
|
+
msgstr ""
|
957
|
+
|
958
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
887
959
|
msgstr ""
|
888
960
|
|
889
961
|
msgid "Can not add product %s because it is disabled."
|
@@ -1006,6 +1078,9 @@ msgstr ""
|
|
1006
1078
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1007
1079
|
msgstr "복합 컨텐츠 뷰 버전 (%{name} 버전 버전 %{version}에서 증분 업데이트를 수행할 수 없습니다"
|
1008
1080
|
|
1081
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1082
|
+
msgstr ""
|
1083
|
+
|
1009
1084
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1010
1085
|
msgstr "순서에 없는 환경을 승격할 수 없습니다. 강제를 사용하여 제한을 무시합니다. "
|
1011
1086
|
|
@@ -1057,6 +1132,18 @@ msgstr ""
|
|
1057
1132
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1058
1133
|
msgstr ""
|
1059
1134
|
|
1135
|
+
msgid "Capacity"
|
1136
|
+
msgstr ""
|
1137
|
+
|
1138
|
+
msgid "Change Content Source"
|
1139
|
+
msgstr ""
|
1140
|
+
|
1141
|
+
msgid "Change content source"
|
1142
|
+
msgstr ""
|
1143
|
+
|
1144
|
+
msgid "Change host content source"
|
1145
|
+
msgstr ""
|
1146
|
+
|
1060
1147
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1061
1148
|
msgstr ""
|
1062
1149
|
|
@@ -1069,6 +1156,9 @@ msgstr ""
|
|
1069
1156
|
msgid "Checksum"
|
1070
1157
|
msgstr "체크섬 "
|
1071
1158
|
|
1159
|
+
msgid "Checksum is a required parameter."
|
1160
|
+
msgstr ""
|
1161
|
+
|
1072
1162
|
msgid "Checksum of file to upload"
|
1073
1163
|
msgstr ""
|
1074
1164
|
|
@@ -1084,6 +1174,9 @@ msgstr ""
|
|
1084
1174
|
msgid "Click here to go to the tasks page for the task."
|
1085
1175
|
msgstr ""
|
1086
1176
|
|
1177
|
+
msgid "Click {update} below to save changes."
|
1178
|
+
msgstr ""
|
1179
|
+
|
1087
1180
|
msgid "Clone"
|
1088
1181
|
msgstr "복제(Clone)"
|
1089
1182
|
|
@@ -1099,7 +1192,13 @@ msgstr ""
|
|
1099
1192
|
msgid "Combined Profile Update for %s"
|
1100
1193
|
msgstr ""
|
1101
1194
|
|
1102
|
-
msgid "Comma-separated list of tags to
|
1195
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1196
|
+
msgstr ""
|
1197
|
+
|
1198
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1199
|
+
msgstr ""
|
1200
|
+
|
1201
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1103
1202
|
msgstr ""
|
1104
1203
|
|
1105
1204
|
msgid "Component"
|
@@ -1115,10 +1214,10 @@ msgid "Component content views"
|
|
1115
1214
|
msgstr ""
|
1116
1215
|
|
1117
1216
|
msgid "Components"
|
1118
|
-
msgstr ""
|
1217
|
+
msgstr "구성 요소"
|
1119
1218
|
|
1120
1219
|
msgid "Composite"
|
1121
|
-
msgstr ""
|
1220
|
+
msgstr "복합 "
|
1122
1221
|
|
1123
1222
|
msgid "Composite Content View"
|
1124
1223
|
msgstr ""
|
@@ -1186,6 +1285,9 @@ msgstr ""
|
|
1186
1285
|
msgid "Container manifests"
|
1187
1286
|
msgstr ""
|
1188
1287
|
|
1288
|
+
msgid "Container tags"
|
1289
|
+
msgstr ""
|
1290
|
+
|
1189
1291
|
msgid "Content"
|
1190
1292
|
msgstr "컨텐츠"
|
1191
1293
|
|
@@ -1198,7 +1300,7 @@ msgstr ""
|
|
1198
1300
|
msgid "Content Credential numeric identifier"
|
1199
1301
|
msgstr ""
|
1200
1302
|
|
1201
|
-
msgid "Content Credential to use for SSL CA"
|
1303
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1202
1304
|
msgstr ""
|
1203
1305
|
|
1204
1306
|
msgid "Content Credentials"
|
@@ -1231,9 +1333,6 @@ msgstr "컨텐츠 보기 "
|
|
1231
1333
|
msgid "Content View %{view}: Versions: %{versions}"
|
1232
1334
|
msgstr ""
|
1233
1335
|
|
1234
|
-
msgid "Content View Dependency Solving Default"
|
1235
|
-
msgstr ""
|
1236
|
-
|
1237
1336
|
msgid "Content View Details"
|
1238
1337
|
msgstr ""
|
1239
1338
|
|
@@ -1244,13 +1343,10 @@ msgid "Content View Filter identifier"
|
|
1244
1343
|
msgstr ""
|
1245
1344
|
|
1246
1345
|
msgid "Content View ID"
|
1247
|
-
msgstr ""
|
1248
|
-
|
1249
|
-
msgid "Content View Label"
|
1250
|
-
msgstr ""
|
1346
|
+
msgstr "컨텐츠 뷰 ID"
|
1251
1347
|
|
1252
1348
|
msgid "Content View Name"
|
1253
|
-
msgstr ""
|
1349
|
+
msgstr "컨텐츠 뷰 이름 "
|
1254
1350
|
|
1255
1351
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
1256
1352
|
msgstr "컨텐츠 뷰 버전 %{id}이 모든 지정된 환경 %{envs}에 없습니다 "
|
@@ -1273,6 +1369,9 @@ msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
|
|
1273
1369
|
msgid "Content View id"
|
1274
1370
|
msgstr ""
|
1275
1371
|
|
1372
|
+
msgid "Content View label not provided."
|
1373
|
+
msgstr ""
|
1374
|
+
|
1276
1375
|
msgid "Content Views"
|
1277
1376
|
msgstr "컨텐츠 보기 "
|
1278
1377
|
|
@@ -1285,15 +1384,21 @@ msgstr ""
|
|
1285
1384
|
msgid "Content hosts"
|
1286
1385
|
msgstr ""
|
1287
1386
|
|
1288
|
-
msgid "Content imported
|
1387
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1289
1388
|
msgstr ""
|
1290
1389
|
|
1291
1390
|
msgid "Content not uploaded to pulp"
|
1292
1391
|
msgstr ""
|
1293
1392
|
|
1393
|
+
msgid "Content override search parameters"
|
1394
|
+
msgstr ""
|
1395
|
+
|
1294
1396
|
msgid "Content source ID"
|
1295
1397
|
msgstr ""
|
1296
1398
|
|
1399
|
+
msgid "Content source successfully updated."
|
1400
|
+
msgstr ""
|
1401
|
+
|
1297
1402
|
msgid "Content source was not set for host '%{host}'"
|
1298
1403
|
msgstr ""
|
1299
1404
|
|
@@ -1369,6 +1474,9 @@ msgstr "계약 "
|
|
1369
1474
|
msgid "Contract Number"
|
1370
1475
|
msgstr "계약 번호 "
|
1371
1476
|
|
1477
|
+
msgid "Copied to clipboard"
|
1478
|
+
msgstr ""
|
1479
|
+
|
1372
1480
|
msgid "Copy"
|
1373
1481
|
msgstr ""
|
1374
1482
|
|
@@ -1378,6 +1486,9 @@ msgstr "활성키 복사 "
|
|
1378
1486
|
msgid "Copy content view"
|
1379
1487
|
msgstr ""
|
1380
1488
|
|
1489
|
+
msgid "Copy to clipboard"
|
1490
|
+
msgstr ""
|
1491
|
+
|
1381
1492
|
msgid "Copy version units to library"
|
1382
1493
|
msgstr ""
|
1383
1494
|
|
@@ -1391,7 +1502,7 @@ msgid "Could not find %{content} with id '%{id}' in repository."
|
|
1391
1502
|
msgstr "리포지터리에서 id '%{id}'를 갖는 %{content}을(를) 찾을 수 없습니다. "
|
1392
1503
|
|
1393
1504
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1394
|
-
msgstr ""
|
1505
|
+
msgstr "%{count}개 에라타를 찾을 수 없습니다. 다음 항목만 검색되었습니다: %{found}"
|
1395
1506
|
|
1396
1507
|
msgid "Could not find %{name} resource with id %{id}. %{perms_message}"
|
1397
1508
|
msgstr ""
|
@@ -1489,6 +1600,9 @@ msgstr "ID '%s'인 제품을 찾을 수 없음 "
|
|
1489
1600
|
msgid "Couldn't find repository '%s'"
|
1490
1601
|
msgstr "리포지터리 '%s'를 찾을 수 없음 "
|
1491
1602
|
|
1603
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1604
|
+
msgstr ""
|
1605
|
+
|
1492
1606
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1493
1607
|
msgstr ""
|
1494
1608
|
|
@@ -1496,11 +1610,14 @@ msgid "Couldn't find subject of synchronization"
|
|
1496
1610
|
msgstr "동기화 제목을 찾을 수 없음 "
|
1497
1611
|
|
1498
1612
|
msgid "Count"
|
1499
|
-
msgstr ""
|
1613
|
+
msgstr "개수"
|
1500
1614
|
|
1501
1615
|
msgid "Create"
|
1502
1616
|
msgstr "생성 "
|
1503
1617
|
|
1618
|
+
msgid "Create Alternate Content Source"
|
1619
|
+
msgstr ""
|
1620
|
+
|
1504
1621
|
msgid "Create Export History"
|
1505
1622
|
msgstr ""
|
1506
1623
|
|
@@ -1537,6 +1654,9 @@ msgstr "제품 생성 "
|
|
1537
1654
|
msgid "Create a sync plan"
|
1538
1655
|
msgstr "동기화 계획 생성 "
|
1539
1656
|
|
1657
|
+
msgid "Create an ACS"
|
1658
|
+
msgstr ""
|
1659
|
+
|
1540
1660
|
msgid "Create an activation key"
|
1541
1661
|
msgstr "활성키 생성 "
|
1542
1662
|
|
@@ -1559,7 +1679,7 @@ msgid "Create organization"
|
|
1559
1679
|
msgstr "조직 생성 "
|
1560
1680
|
|
1561
1681
|
msgid "Critical"
|
1562
|
-
msgstr ""
|
1682
|
+
msgstr "중요함"
|
1563
1683
|
|
1564
1684
|
msgid "Cron expression is not valid!"
|
1565
1685
|
msgstr ""
|
@@ -1582,6 +1702,9 @@ msgstr ""
|
|
1582
1702
|
msgid "Custom repositories cannot be disabled."
|
1583
1703
|
msgstr "사용자 정의 리포지터리를 비활성화할 수 없습니다. "
|
1584
1704
|
|
1705
|
+
msgid "Customize with Rex"
|
1706
|
+
msgstr ""
|
1707
|
+
|
1585
1708
|
msgid "Database connection"
|
1586
1709
|
msgstr "데이터베이스 연결"
|
1587
1710
|
|
@@ -1618,13 +1741,10 @@ msgstr ""
|
|
1618
1741
|
msgid "Default Custom Repository download policy"
|
1619
1742
|
msgstr ""
|
1620
1743
|
|
1621
|
-
msgid "Default HTTP Proxy
|
1622
|
-
msgstr ""
|
1623
|
-
|
1624
|
-
msgid "Default HTTP proxy"
|
1744
|
+
msgid "Default HTTP Proxy"
|
1625
1745
|
msgstr ""
|
1626
1746
|
|
1627
|
-
msgid "Default
|
1747
|
+
msgid "Default HTTP proxy for syncing content"
|
1628
1748
|
msgstr ""
|
1629
1749
|
|
1630
1750
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1669,6 +1789,9 @@ msgstr ""
|
|
1669
1789
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1670
1790
|
msgstr ""
|
1671
1791
|
|
1792
|
+
msgid "Default location for subscribed hosts"
|
1793
|
+
msgstr ""
|
1794
|
+
|
1672
1795
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1673
1796
|
msgstr ""
|
1674
1797
|
|
@@ -1771,6 +1894,9 @@ msgstr ""
|
|
1771
1894
|
msgid "Delete version"
|
1772
1895
|
msgstr ""
|
1773
1896
|
|
1897
|
+
msgid "Delete versions"
|
1898
|
+
msgstr ""
|
1899
|
+
|
1774
1900
|
msgid "Deleted consumer '%s'"
|
1775
1901
|
msgstr "컨슈머 '%s'을(를) 삭제했습니다 "
|
1776
1902
|
|
@@ -1786,9 +1912,18 @@ msgstr ""
|
|
1786
1912
|
msgid "Deleting manifest in '%{subject}' failed."
|
1787
1913
|
msgstr ""
|
1788
1914
|
|
1915
|
+
msgid "Deleting version {versionList}"
|
1916
|
+
msgstr ""
|
1917
|
+
|
1918
|
+
msgid "Deleting versions: {versionList}"
|
1919
|
+
msgstr ""
|
1920
|
+
|
1789
1921
|
msgid "Description"
|
1790
1922
|
msgstr "설명 "
|
1791
1923
|
|
1924
|
+
msgid "Description for the alternate content source"
|
1925
|
+
msgstr ""
|
1926
|
+
|
1792
1927
|
msgid "Description for the content view"
|
1793
1928
|
msgstr "컨텐츠 뷰 설명 "
|
1794
1929
|
|
@@ -1810,6 +1945,9 @@ msgstr ""
|
|
1810
1945
|
msgid "Destroy"
|
1811
1946
|
msgstr "삭제 "
|
1812
1947
|
|
1948
|
+
msgid "Destroy Alternate Content Source"
|
1949
|
+
msgstr ""
|
1950
|
+
|
1813
1951
|
msgid "Destroy Content Host"
|
1814
1952
|
msgstr "컨텐츠 호스트 삭제 "
|
1815
1953
|
|
@@ -1834,6 +1972,9 @@ msgstr "동기화 계획 삭제 "
|
|
1834
1972
|
msgid "Destroy an activation key"
|
1835
1973
|
msgstr "활성키 삭제 "
|
1836
1974
|
|
1975
|
+
msgid "Destroy an alternate content source"
|
1976
|
+
msgstr ""
|
1977
|
+
|
1837
1978
|
msgid "Destroy an environment"
|
1838
1979
|
msgstr "환경 삭제 "
|
1839
1980
|
|
@@ -1841,7 +1982,7 @@ msgid "Destroy an environment in an organization"
|
|
1841
1982
|
msgstr "조직에서 환경 삭제 "
|
1842
1983
|
|
1843
1984
|
msgid "Destroy one or more hosts"
|
1844
|
-
msgstr ""
|
1985
|
+
msgstr "하나 이상의 호스트 삭제"
|
1845
1986
|
|
1846
1987
|
msgid "Destroy one or more products"
|
1847
1988
|
msgstr "하나 이상의 제품 삭제 "
|
@@ -1873,18 +2014,18 @@ msgstr ""
|
|
1873
2014
|
msgid "Disable a repository from the set"
|
1874
2015
|
msgstr ""
|
1875
2016
|
|
2017
|
+
msgid "Disable module stream"
|
2018
|
+
msgstr ""
|
2019
|
+
|
1876
2020
|
msgid "Disable simple content access for a manifest"
|
1877
2021
|
msgstr ""
|
1878
2022
|
|
1879
2023
|
msgid "Disabled"
|
1880
|
-
msgstr ""
|
2024
|
+
msgstr "사용 안함"
|
1881
2025
|
|
1882
2026
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1883
2027
|
msgstr ""
|
1884
2028
|
|
1885
|
-
msgid "Disconnected mode"
|
1886
|
-
msgstr ""
|
1887
|
-
|
1888
2029
|
msgid "Discover"
|
1889
2030
|
msgstr "검색"
|
1890
2031
|
|
@@ -1900,9 +2041,6 @@ msgstr ""
|
|
1900
2041
|
msgid "Do not wait for the update action to finish. Default: true"
|
1901
2042
|
msgstr ""
|
1902
2043
|
|
1903
|
-
msgid "Docker Tags"
|
1904
|
-
msgstr ""
|
1905
|
-
|
1906
2044
|
msgid "Domain IDs"
|
1907
2045
|
msgstr "도메인 ID"
|
1908
2046
|
|
@@ -1912,6 +2050,9 @@ msgstr ""
|
|
1912
2050
|
msgid "Download a debug certificate"
|
1913
2051
|
msgstr "디버그 인증서 다운로드 "
|
1914
2052
|
|
2053
|
+
msgid "Download rate limit"
|
2054
|
+
msgstr ""
|
2055
|
+
|
1915
2056
|
msgid "Duplicate artifact detected"
|
1916
2057
|
msgstr ""
|
1917
2058
|
|
@@ -1919,7 +2060,7 @@ msgid "Duration"
|
|
1919
2060
|
msgstr "기간 "
|
1920
2061
|
|
1921
2062
|
msgid "ERRATA ADVISORY"
|
1922
|
-
msgstr ""
|
2063
|
+
msgstr "에라타 권고"
|
1923
2064
|
|
1924
2065
|
msgid "Edit"
|
1925
2066
|
msgstr "편집 "
|
@@ -1927,6 +2068,9 @@ msgstr "편집 "
|
|
1927
2068
|
msgid "Edit RPM rule"
|
1928
2069
|
msgstr ""
|
1929
2070
|
|
2071
|
+
msgid "Edit content view assignment"
|
2072
|
+
msgstr ""
|
2073
|
+
|
1930
2074
|
msgid "Edit filter rule"
|
1931
2075
|
msgstr ""
|
1932
2076
|
|
@@ -1990,6 +2134,9 @@ msgstr ""
|
|
1990
2134
|
msgid "End Date"
|
1991
2135
|
msgstr "종료 날짜 "
|
1992
2136
|
|
2137
|
+
msgid "End date"
|
2138
|
+
msgstr ""
|
2139
|
+
|
1993
2140
|
msgid "Ends"
|
1994
2141
|
msgstr "종료"
|
1995
2142
|
|
@@ -1999,6 +2146,9 @@ msgstr "기능 강화"
|
|
1999
2146
|
msgid "Enter a name"
|
2000
2147
|
msgstr ""
|
2001
2148
|
|
2149
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2150
|
+
msgstr ""
|
2151
|
+
|
2002
2152
|
msgid "Entitlements"
|
2003
2153
|
msgstr ""
|
2004
2154
|
|
@@ -2017,6 +2167,9 @@ msgstr ""
|
|
2017
2167
|
msgid "Environments"
|
2018
2168
|
msgstr "환경 "
|
2019
2169
|
|
2170
|
+
msgid "Epoch"
|
2171
|
+
msgstr ""
|
2172
|
+
|
2020
2173
|
msgid "Equal to"
|
2021
2174
|
msgstr ""
|
2022
2175
|
|
@@ -2074,6 +2227,9 @@ msgstr "Pulp 서비스에 연결하는 도중 오류가 발생했습니다."
|
|
2074
2227
|
msgid "Error connecting. Got: %s"
|
2075
2228
|
msgstr "연결하는 도중 오류가 발생했습니다. 오류 메시지: %s"
|
2076
2229
|
|
2230
|
+
msgid "Error loading content views"
|
2231
|
+
msgstr ""
|
2232
|
+
|
2077
2233
|
msgid "Error refreshing status for %s: "
|
2078
2234
|
msgstr ""
|
2079
2235
|
|
@@ -2090,7 +2246,7 @@ msgid "Exclude all Module Streams with no errata."
|
|
2090
2246
|
msgstr ""
|
2091
2247
|
|
2092
2248
|
msgid "Exclude all RPMs with no errata."
|
2093
|
-
msgstr ""
|
2249
|
+
msgstr "에라타가 없는 RPM을 모두 제외합니다."
|
2094
2250
|
|
2095
2251
|
msgid "Exclude filter"
|
2096
2252
|
msgstr ""
|
@@ -2122,6 +2278,12 @@ msgstr ""
|
|
2122
2278
|
msgid "Export Library"
|
2123
2279
|
msgstr ""
|
2124
2280
|
|
2281
|
+
msgid "Export Repository"
|
2282
|
+
msgstr ""
|
2283
|
+
|
2284
|
+
msgid "Export Sync"
|
2285
|
+
msgstr ""
|
2286
|
+
|
2125
2287
|
msgid "Export Types"
|
2126
2288
|
msgstr ""
|
2127
2289
|
|
@@ -2132,10 +2294,10 @@ msgid "Export history identifier used for incremental export. If not provided th
|
|
2132
2294
|
msgstr ""
|
2133
2295
|
|
2134
2296
|
msgid "Exported content view"
|
2135
|
-
msgstr ""
|
2297
|
+
msgstr "내보낸 컨텐츠 뷰"
|
2136
2298
|
|
2137
2299
|
msgid "Exported version"
|
2138
|
-
msgstr ""
|
2300
|
+
msgstr "내보낸 버전"
|
2139
2301
|
|
2140
2302
|
msgid "Facts successfully updated."
|
2141
2303
|
msgstr "정보가 성공적으로 업데이트되었습니다. "
|
@@ -2146,6 +2308,9 @@ msgstr "실패 "
|
|
2146
2308
|
msgid "Failed to delete %{host}: %{errors}"
|
2147
2309
|
msgstr ""
|
2148
2310
|
|
2311
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2312
|
+
msgstr ""
|
2313
|
+
|
2149
2314
|
msgid "Failed to download %s package."
|
2150
2315
|
msgid_plural "Failed to download %s packages."
|
2151
2316
|
msgstr[0] "%s 패키지 다운로드에 실패했습니다 "
|
@@ -2178,16 +2343,16 @@ msgid "Field to sort the results on"
|
|
2178
2343
|
msgstr "결과를 정렬할 필드 "
|
2179
2344
|
|
2180
2345
|
msgid "File"
|
2181
|
-
msgstr ""
|
2346
|
+
msgstr "파일"
|
2182
2347
|
|
2183
2348
|
msgid "File contents"
|
2184
2349
|
msgstr ""
|
2185
2350
|
|
2186
2351
|
msgid "Filename"
|
2187
|
-
msgstr ""
|
2352
|
+
msgstr "파일 이름"
|
2188
2353
|
|
2189
2354
|
msgid "Files"
|
2190
|
-
msgstr ""
|
2355
|
+
msgstr "파일"
|
2191
2356
|
|
2192
2357
|
msgid "Filter by Product"
|
2193
2358
|
msgstr ""
|
@@ -2202,13 +2367,13 @@ msgid "Filter created"
|
|
2202
2367
|
msgstr "필터가 생성되었습니다 "
|
2203
2368
|
|
2204
2369
|
msgid "Filter deleted"
|
2205
|
-
msgstr ""
|
2370
|
+
msgstr "필터가 삭제되었습니다 "
|
2206
2371
|
|
2207
2372
|
msgid "Filter edited"
|
2208
2373
|
msgstr ""
|
2209
2374
|
|
2210
2375
|
msgid "Filter only composite content views"
|
2211
|
-
msgstr ""
|
2376
|
+
msgstr "복합 컨텐츠 뷰만 필터링"
|
2212
2377
|
|
2213
2378
|
msgid "Filter out composite content views"
|
2214
2379
|
msgstr "복합적인 컨텐츠 뷰 필터링 "
|
@@ -2271,7 +2436,7 @@ msgid "Finish action timeout"
|
|
2271
2436
|
msgstr ""
|
2272
2437
|
|
2273
2438
|
msgid "Finished"
|
2274
|
-
msgstr ""
|
2439
|
+
msgstr "완료"
|
2275
2440
|
|
2276
2441
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2277
2442
|
msgstr ""
|
@@ -2332,6 +2497,15 @@ msgstr ""
|
|
2332
2497
|
msgid "Generate repository applicability"
|
2333
2498
|
msgstr ""
|
2334
2499
|
|
2500
|
+
msgid "Generated"
|
2501
|
+
msgstr ""
|
2502
|
+
|
2503
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2504
|
+
msgstr ""
|
2505
|
+
|
2506
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2507
|
+
msgstr ""
|
2508
|
+
|
2335
2509
|
msgid "Get all content available, not just that provided by subscriptions"
|
2336
2510
|
msgstr ""
|
2337
2511
|
|
@@ -2339,7 +2513,7 @@ msgid "Get all content available, not just that provided by subscriptions."
|
|
2339
2513
|
msgstr ""
|
2340
2514
|
|
2341
2515
|
msgid "Get content and overrides for the host"
|
2342
|
-
msgstr ""
|
2516
|
+
msgstr "호스트에 대한 컨텐츠 및 덮어쓰기 가져오기"
|
2343
2517
|
|
2344
2518
|
msgid "Get current smart proxy synchronization status"
|
2345
2519
|
msgstr ""
|
@@ -2357,7 +2531,7 @@ msgid "Get status of synchronisation for given repository"
|
|
2357
2531
|
msgstr "주어진 리포지터리에 대한 동기화 상태 가져오기 "
|
2358
2532
|
|
2359
2533
|
msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
|
2360
|
-
msgstr ""
|
2534
|
+
msgstr "특정 호스트 및 에라타에 대해 업데이트해야 하는 컨텐츠 뷰 버전과 환경을 나열합니다."
|
2361
2535
|
|
2362
2536
|
msgid "Given criteria doesn't match any RPMs. Try changing your rule."
|
2363
2537
|
msgstr ""
|
@@ -2368,6 +2542,9 @@ msgstr ""
|
|
2368
2542
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2369
2543
|
msgstr ""
|
2370
2544
|
|
2545
|
+
msgid "Go to job details"
|
2546
|
+
msgstr ""
|
2547
|
+
|
2371
2548
|
msgid "Go to task page"
|
2372
2549
|
msgstr ""
|
2373
2550
|
|
@@ -2375,7 +2552,7 @@ msgid "Greater than"
|
|
2375
2552
|
msgstr ""
|
2376
2553
|
|
2377
2554
|
msgid "Group %{id} already created."
|
2378
|
-
msgstr ""
|
2555
|
+
msgstr "%{id} 그룹이 이미 생성되었습니다."
|
2379
2556
|
|
2380
2557
|
msgid "Guests of"
|
2381
2558
|
msgstr "게스트 "
|
@@ -2392,6 +2569,12 @@ msgstr ""
|
|
2392
2569
|
msgid "Helper"
|
2393
2570
|
msgstr ""
|
2394
2571
|
|
2572
|
+
msgid "Hide affected activation keys"
|
2573
|
+
msgstr ""
|
2574
|
+
|
2575
|
+
msgid "Hide affected hosts"
|
2576
|
+
msgstr ""
|
2577
|
+
|
2395
2578
|
msgid "Hide description"
|
2396
2579
|
msgstr ""
|
2397
2580
|
|
@@ -2405,7 +2588,7 @@ msgid "Host"
|
|
2405
2588
|
msgstr "호스트 "
|
2406
2589
|
|
2407
2590
|
msgid "Host %s has not been registered with subscription-manager."
|
2408
|
-
msgstr ""
|
2591
|
+
msgstr "%s 호스트가 subscription-manager에 등록되지 않았습니다."
|
2409
2592
|
|
2410
2593
|
msgid "Host %{name} cannot be assigned release version %{release_version}."
|
2411
2594
|
msgstr ""
|
@@ -2426,7 +2609,7 @@ msgid "Host Duplicate DMI UUIDs"
|
|
2426
2609
|
msgstr ""
|
2427
2610
|
|
2428
2611
|
msgid "Host Errata Advisory"
|
2429
|
-
msgstr ""
|
2612
|
+
msgstr "호스트 에라타 권고"
|
2430
2613
|
|
2431
2614
|
msgid "Host ID"
|
2432
2615
|
msgstr "호스트 ID"
|
@@ -2443,15 +2626,27 @@ msgstr ""
|
|
2443
2626
|
msgid "Host Tasks Workers Pool Size"
|
2444
2627
|
msgstr ""
|
2445
2628
|
|
2629
|
+
msgid "Host collection"
|
2630
|
+
msgstr ""
|
2631
|
+
|
2446
2632
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2447
2633
|
msgstr "호스트 컬렉션 '%{name}' 은 '%{limit}'의 최대 사용 한도를 초과합니다 "
|
2448
2634
|
|
2449
2635
|
msgid "Host collection is empty."
|
2450
2636
|
msgstr "호스트 컬렉션이 비어 있습니다. "
|
2451
2637
|
|
2638
|
+
msgid "Host collections"
|
2639
|
+
msgstr ""
|
2640
|
+
|
2641
|
+
msgid "Host collections updated"
|
2642
|
+
msgstr ""
|
2643
|
+
|
2452
2644
|
msgid "Host content and subscription details"
|
2453
2645
|
msgstr "호스트 컨텐츠 및 서브스크립션 정보 "
|
2454
2646
|
|
2647
|
+
msgid "Host content view and environment updated"
|
2648
|
+
msgstr ""
|
2649
|
+
|
2455
2650
|
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."
|
2456
2651
|
msgstr ""
|
2457
2652
|
|
@@ -2495,7 +2690,7 @@ msgid "Host with ID %s not found."
|
|
2495
2690
|
msgstr ""
|
2496
2691
|
|
2497
2692
|
msgid "Hosts"
|
2498
|
-
msgstr ""
|
2693
|
+
msgstr "호스트"
|
2499
2694
|
|
2500
2695
|
msgid "Hosts with Installable Errata"
|
2501
2696
|
msgstr "설치 가능한 에라타를 갖는 호스트 "
|
@@ -2503,7 +2698,7 @@ msgstr "설치 가능한 에라타를 갖는 호스트 "
|
|
2503
2698
|
msgid "Hosts: "
|
2504
2699
|
msgstr ""
|
2505
2700
|
|
2506
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2701
|
+
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."
|
2507
2702
|
msgstr ""
|
2508
2703
|
|
2509
2704
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2566,12 +2761,18 @@ msgstr ""
|
|
2566
2761
|
msgid "ID of the repository set to enable"
|
2567
2762
|
msgstr "활성화할 리포지터리 세트 ID "
|
2568
2763
|
|
2764
|
+
msgid "ID of the repository within the set to disable"
|
2765
|
+
msgstr ""
|
2766
|
+
|
2569
2767
|
msgid "ID of the sync plan"
|
2570
2768
|
msgstr "동기화 계획 ID "
|
2571
2769
|
|
2572
2770
|
msgid "ID: %s doesn't exist "
|
2573
2771
|
msgstr "ID: %s이 존재하지 않습니다 "
|
2574
2772
|
|
2773
|
+
msgid "Id"
|
2774
|
+
msgstr ""
|
2775
|
+
|
2575
2776
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2576
2777
|
msgstr ""
|
2577
2778
|
|
@@ -2588,7 +2789,7 @@ msgid "Id of an erratum to find repositories that contain the erratum"
|
|
2588
2789
|
msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
|
2589
2790
|
|
2590
2791
|
msgid "Id of the content host"
|
2591
|
-
msgstr ""
|
2792
|
+
msgstr "컨텐츠 호스트 ID"
|
2592
2793
|
|
2593
2794
|
msgid "Id of the content view to limit the synchronization on"
|
2594
2795
|
msgstr ""
|
@@ -2644,16 +2845,22 @@ msgstr ""
|
|
2644
2845
|
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"
|
2645
2846
|
msgstr ""
|
2646
2847
|
|
2848
|
+
msgid "Ids of smart proxies to associate"
|
2849
|
+
msgstr ""
|
2850
|
+
|
2647
2851
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2648
2852
|
msgstr ""
|
2649
2853
|
|
2650
|
-
msgid "If
|
2854
|
+
msgid "If SSL should be verified for the upstream URL"
|
2855
|
+
msgstr ""
|
2856
|
+
|
2857
|
+
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."
|
2651
2858
|
msgstr ""
|
2652
2859
|
|
2653
2860
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2654
2861
|
msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
|
2655
2862
|
|
2656
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2863
|
+
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."
|
2657
2864
|
msgstr ""
|
2658
2865
|
|
2659
2866
|
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"
|
@@ -2662,6 +2869,9 @@ msgstr ""
|
|
2662
2869
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2663
2870
|
msgstr ""
|
2664
2871
|
|
2872
|
+
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."
|
2873
|
+
msgstr ""
|
2874
|
+
|
2665
2875
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2666
2876
|
msgstr ""
|
2667
2877
|
|
@@ -2677,6 +2887,9 @@ msgstr ""
|
|
2677
2887
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2678
2888
|
msgstr ""
|
2679
2889
|
|
2890
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2891
|
+
msgstr ""
|
2892
|
+
|
2680
2893
|
msgid "Ignorable content can be only set for Yum repositories."
|
2681
2894
|
msgstr ""
|
2682
2895
|
|
@@ -2693,7 +2906,7 @@ msgid "Ignore subscriptions that are unavailable to the specified host"
|
|
2693
2906
|
msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
|
2694
2907
|
|
2695
2908
|
msgid "Immediate"
|
2696
|
-
msgstr ""
|
2909
|
+
msgstr "즉시"
|
2697
2910
|
|
2698
2911
|
msgid "Import"
|
2699
2912
|
msgstr "불러오기"
|
@@ -2711,6 +2924,9 @@ msgid "Import New Manifest"
|
|
2711
2924
|
msgstr ""
|
2712
2925
|
|
2713
2926
|
msgid "Import Puppet classes"
|
2927
|
+
msgstr "Puppet 클래스 가져오기"
|
2928
|
+
|
2929
|
+
msgid "Import Repository"
|
2714
2930
|
msgstr ""
|
2715
2931
|
|
2716
2932
|
msgid "Import Types"
|
@@ -2734,12 +2950,18 @@ msgstr ""
|
|
2734
2950
|
msgid "Import a content view version to the library"
|
2735
2951
|
msgstr ""
|
2736
2952
|
|
2953
|
+
msgid "Import a repository"
|
2954
|
+
msgstr ""
|
2955
|
+
|
2737
2956
|
msgid "Import facts"
|
2738
2957
|
msgstr "팩트 불러오기"
|
2739
2958
|
|
2740
2959
|
msgid "Import only"
|
2741
2960
|
msgstr ""
|
2742
2961
|
|
2962
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2963
|
+
msgstr ""
|
2964
|
+
|
2743
2965
|
msgid "Import uploads into a repository"
|
2744
2966
|
msgstr "리포지터리에 업로드 가져오기 "
|
2745
2967
|
|
@@ -2749,9 +2971,12 @@ msgstr ""
|
|
2749
2971
|
msgid "Import-only content views can not be published directly"
|
2750
2972
|
msgstr ""
|
2751
2973
|
|
2752
|
-
msgid "
|
2974
|
+
msgid "Import/Export"
|
2753
2975
|
msgstr ""
|
2754
2976
|
|
2977
|
+
msgid "Important"
|
2978
|
+
msgstr "중요"
|
2979
|
+
|
2755
2980
|
msgid "Importing manifest into '%{subject}' failed."
|
2756
2981
|
msgstr ""
|
2757
2982
|
|
@@ -2768,6 +2993,9 @@ msgid "Include all Module Streams with no errata."
|
|
2768
2993
|
msgstr ""
|
2769
2994
|
|
2770
2995
|
msgid "Include all RPMs with no errata."
|
2996
|
+
msgstr "에라타가 없는 RPM을 모두 포함합니다."
|
2997
|
+
|
2998
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2771
2999
|
msgstr ""
|
2772
3000
|
|
2773
3001
|
msgid "Include filter"
|
@@ -2830,18 +3058,24 @@ msgstr ""
|
|
2830
3058
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2831
3059
|
msgstr "동기화 계획에 연결된 제품 동기화 시작"
|
2832
3060
|
|
3061
|
+
msgid "Install"
|
3062
|
+
msgstr ""
|
3063
|
+
|
2833
3064
|
msgid "Install Applicable Errata"
|
2834
3065
|
msgstr "적용 가능한 에라타 설치 "
|
2835
3066
|
|
2836
3067
|
msgid "Install Applicable Errata on %s"
|
2837
|
-
msgstr ""
|
3068
|
+
msgstr "%s에 적용 가능한 에라타 설치"
|
2838
3069
|
|
2839
3070
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2840
3071
|
msgstr ""
|
2841
3072
|
|
2842
|
-
msgid "Install errata
|
3073
|
+
msgid "Install errata using scoped search query"
|
2843
3074
|
msgstr ""
|
2844
3075
|
|
3076
|
+
msgid "Install errata via Katello interface"
|
3077
|
+
msgstr "Katello 인터페이스를 통해 에라타 설치"
|
3078
|
+
|
2845
3079
|
msgid "Install erratum"
|
2846
3080
|
msgstr "에라타 설치"
|
2847
3081
|
|
@@ -2858,24 +3092,36 @@ msgid "Install package group"
|
|
2858
3092
|
msgstr "패키지 그룹 설치 "
|
2859
3093
|
|
2860
3094
|
msgid "Install package group via Katello interface"
|
2861
|
-
msgstr ""
|
3095
|
+
msgstr "Katello 인터페이스를 통해 패키지 그룹 설치"
|
2862
3096
|
|
2863
3097
|
msgid "Install package via Katello interface"
|
3098
|
+
msgstr "Katello 인터페이스를 통해 패키지 설치"
|
3099
|
+
|
3100
|
+
msgid "Install packages"
|
2864
3101
|
msgstr ""
|
2865
3102
|
|
2866
3103
|
msgid "Install packages remotely using katello-agent. %s"
|
2867
3104
|
msgstr ""
|
2868
3105
|
|
2869
|
-
msgid "
|
3106
|
+
msgid "Install packages via Katello interface"
|
3107
|
+
msgstr ""
|
3108
|
+
|
3109
|
+
msgid "Install via customized remote execution"
|
3110
|
+
msgstr ""
|
3111
|
+
|
3112
|
+
msgid "Install via katello-agent"
|
2870
3113
|
msgstr ""
|
2871
3114
|
|
2872
|
-
msgid "
|
3115
|
+
msgid "Install via remote execution"
|
2873
3116
|
msgstr ""
|
2874
3117
|
|
2875
|
-
msgid "Installable
|
3118
|
+
msgid "Installable"
|
3119
|
+
msgstr "설치 가능 "
|
3120
|
+
|
3121
|
+
msgid "Installable errata"
|
2876
3122
|
msgstr ""
|
2877
3123
|
|
2878
|
-
msgid "Installable errata
|
3124
|
+
msgid "Installable errata from content view"
|
2879
3125
|
msgstr ""
|
2880
3126
|
|
2881
3127
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2887,10 +3133,22 @@ msgstr ""
|
|
2887
3133
|
msgid "Installation of package(s) requested: %{packages}"
|
2888
3134
|
msgstr ""
|
2889
3135
|
|
3136
|
+
msgid "Installation status"
|
3137
|
+
msgstr ""
|
3138
|
+
|
2890
3139
|
msgid "Installed Packages"
|
2891
3140
|
msgstr "설치된 패키지 "
|
2892
3141
|
|
2893
|
-
msgid "Installed
|
3142
|
+
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."
|
3143
|
+
msgstr ""
|
3144
|
+
|
3145
|
+
msgid "Installed products"
|
3146
|
+
msgstr ""
|
3147
|
+
|
3148
|
+
msgid "Installed profile"
|
3149
|
+
msgstr ""
|
3150
|
+
|
3151
|
+
msgid "Installed version"
|
2894
3152
|
msgstr ""
|
2895
3153
|
|
2896
3154
|
msgid "Installing Erratum..."
|
@@ -2971,6 +3229,9 @@ msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중
|
|
2971
3229
|
msgid "Invalid params provided - date_type must be one of %s"
|
2972
3230
|
msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
|
2973
3231
|
|
3232
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3233
|
+
msgstr ""
|
3234
|
+
|
2974
3235
|
msgid "Invalid value specified for Container Image repositories."
|
2975
3236
|
msgstr ""
|
2976
3237
|
|
@@ -2981,27 +3242,42 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
|
|
2981
3242
|
msgstr ""
|
2982
3243
|
|
2983
3244
|
msgid "Issued"
|
3245
|
+
msgstr "발행됨 "
|
3246
|
+
|
3247
|
+
msgid "Issued from"
|
3248
|
+
msgstr ""
|
3249
|
+
|
3250
|
+
msgid "Job ${description} has started."
|
2984
3251
|
msgstr ""
|
2985
3252
|
|
2986
3253
|
msgid "Katello ID of local pool to update"
|
2987
3254
|
msgstr ""
|
2988
3255
|
|
2989
3256
|
msgid "Katello: Install Errata"
|
2990
|
-
msgstr ""
|
3257
|
+
msgstr "Katello: 에라타 설치"
|
2991
3258
|
|
2992
3259
|
msgid "Katello: Install Package"
|
2993
|
-
msgstr ""
|
3260
|
+
msgstr "Katello: 패키지 설치"
|
2994
3261
|
|
2995
3262
|
msgid "Katello: Install Package Group"
|
3263
|
+
msgstr "Katello: 패키지 그룹 설치"
|
3264
|
+
|
3265
|
+
msgid "Katello: Install errata by search query"
|
3266
|
+
msgstr ""
|
3267
|
+
|
3268
|
+
msgid "Katello: Install packages by search query"
|
2996
3269
|
msgstr ""
|
2997
3270
|
|
2998
3271
|
msgid "Katello: Module Stream Actions"
|
2999
3272
|
msgstr ""
|
3000
3273
|
|
3001
3274
|
msgid "Katello: Remove Package"
|
3002
|
-
msgstr ""
|
3275
|
+
msgstr "Katello: 패키지 삭제"
|
3003
3276
|
|
3004
3277
|
msgid "Katello: Remove Package Group"
|
3278
|
+
msgstr "Katello: 패키지 그룹 삭제"
|
3279
|
+
|
3280
|
+
msgid "Katello: Remove Packages by search query"
|
3005
3281
|
msgstr ""
|
3006
3282
|
|
3007
3283
|
msgid "Katello: Resolve Traces"
|
@@ -3011,9 +3287,12 @@ msgid "Katello: Service Restart"
|
|
3011
3287
|
msgstr ""
|
3012
3288
|
|
3013
3289
|
msgid "Katello: Update Package"
|
3014
|
-
msgstr ""
|
3290
|
+
msgstr "Katello: 패키지 업데이트"
|
3015
3291
|
|
3016
3292
|
msgid "Katello: Update Package Group"
|
3293
|
+
msgstr "Katello: 패키지 그룹 업데이트"
|
3294
|
+
|
3295
|
+
msgid "Katello: Update Packages by search query"
|
3017
3296
|
msgstr ""
|
3018
3297
|
|
3019
3298
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
@@ -3037,6 +3316,9 @@ msgstr "레이블 "
|
|
3037
3316
|
msgid "Label of the content"
|
3038
3317
|
msgstr "컨텐츠 레이블 "
|
3039
3318
|
|
3319
|
+
msgid "Label of the content view"
|
3320
|
+
msgstr ""
|
3321
|
+
|
3040
3322
|
msgid "Last published"
|
3041
3323
|
msgstr ""
|
3042
3324
|
|
@@ -3055,13 +3337,10 @@ msgstr ""
|
|
3055
3337
|
msgid "Learn more about adding Subscription Manifests"
|
3056
3338
|
msgstr ""
|
3057
3339
|
|
3058
|
-
msgid "
|
3340
|
+
msgid "Less than"
|
3059
3341
|
msgstr ""
|
3060
3342
|
|
3061
|
-
msgid "
|
3062
|
-
msgstr ""
|
3063
|
-
|
3064
|
-
msgid "Less than"
|
3343
|
+
msgid "Library"
|
3065
3344
|
msgstr ""
|
3066
3345
|
|
3067
3346
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3106,9 +3385,15 @@ msgstr ""
|
|
3106
3385
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3107
3386
|
msgstr ""
|
3108
3387
|
|
3388
|
+
msgid "Lifecycle environment: {lce}"
|
3389
|
+
msgstr ""
|
3390
|
+
|
3109
3391
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3110
3392
|
msgstr ""
|
3111
3393
|
|
3394
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3395
|
+
msgstr ""
|
3396
|
+
|
3112
3397
|
msgid "Limit content to just that available in the activation key's content view version"
|
3113
3398
|
msgstr ""
|
3114
3399
|
|
@@ -3217,6 +3502,9 @@ msgstr ""
|
|
3217
3502
|
msgid "List of Products for sync plan"
|
3218
3503
|
msgstr "동기화 계획의 제품 나열"
|
3219
3504
|
|
3505
|
+
msgid "List of alternate_content_sources"
|
3506
|
+
msgstr ""
|
3507
|
+
|
3220
3508
|
msgid "List of component content view version ids for composite views"
|
3221
3509
|
msgstr "복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "
|
3222
3510
|
|
@@ -3257,10 +3545,10 @@ msgid "List of host id to list available module streams for"
|
|
3257
3545
|
msgstr ""
|
3258
3546
|
|
3259
3547
|
msgid "List of host ids to exclude and not run an action on"
|
3260
|
-
msgstr ""
|
3548
|
+
msgstr "제외하여 실행하지 않을 호스트 ID 나열"
|
3261
3549
|
|
3262
3550
|
msgid "List of host ids to perform an action on"
|
3263
|
-
msgstr ""
|
3551
|
+
msgstr "작업을 수행할 호스트 ID 나열"
|
3264
3552
|
|
3265
3553
|
msgid "List of host ids to replace the hosts in host collection"
|
3266
3554
|
msgstr "호스트 컬렉션의 호스트를 대체할 호스트 ID의 목록입니다."
|
@@ -3313,11 +3601,17 @@ msgstr "서브스크립션에 있는 서브스크립션 제품 목록 "
|
|
3313
3601
|
msgid "List of subscription products in an activation key"
|
3314
3602
|
msgstr "활성키에 있는 서브스크립션 제품 목록 "
|
3315
3603
|
|
3604
|
+
msgid "List of versions to exclude and not run an action on"
|
3605
|
+
msgstr ""
|
3606
|
+
|
3607
|
+
msgid "List of versions to perform an action on"
|
3608
|
+
msgstr ""
|
3609
|
+
|
3316
3610
|
msgid "List organization subscriptions"
|
3317
3611
|
msgstr "조직 서브스크립션 목록 나열 "
|
3318
3612
|
|
3319
3613
|
msgid "List packages"
|
3320
|
-
msgstr ""
|
3614
|
+
msgstr "패키지 목록 나열 "
|
3321
3615
|
|
3322
3616
|
msgid "List packages installed on the host"
|
3323
3617
|
msgstr "호스트에 설치된 패키지 나열"
|
@@ -3358,6 +3652,12 @@ msgstr "로딩 중 "
|
|
3358
3652
|
msgid "Loading versions"
|
3359
3653
|
msgstr ""
|
3360
3654
|
|
3655
|
+
msgid "Loading..."
|
3656
|
+
msgstr ""
|
3657
|
+
|
3658
|
+
msgid "Low"
|
3659
|
+
msgstr ""
|
3660
|
+
|
3361
3661
|
msgid "Make copy of a content view"
|
3362
3662
|
msgstr "컨텐츠 뷰 사본 작성 "
|
3363
3663
|
|
@@ -3415,6 +3715,9 @@ msgstr ""
|
|
3415
3715
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3416
3716
|
msgstr ""
|
3417
3717
|
|
3718
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3719
|
+
msgstr ""
|
3720
|
+
|
3418
3721
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3419
3722
|
msgstr "호스트 컬렉션에 대해 최대 컨텐츠 호스트 수를 초과했습니다: %s"
|
3420
3723
|
|
@@ -3461,7 +3764,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
|
|
3461
3764
|
msgstr "%{content_url}에 대한 %{substitutions} 인수 누락"
|
3462
3765
|
|
3463
3766
|
msgid "Moderate"
|
3464
|
-
msgstr ""
|
3767
|
+
msgstr "중간 수준"
|
3465
3768
|
|
3466
3769
|
msgid "Modular"
|
3467
3770
|
msgstr ""
|
@@ -3481,6 +3784,9 @@ msgstr ""
|
|
3481
3784
|
msgid "Module streams"
|
3482
3785
|
msgstr ""
|
3483
3786
|
|
3787
|
+
msgid "Module streams will appear here when available."
|
3788
|
+
msgstr ""
|
3789
|
+
|
3484
3790
|
msgid "Multi-entitlement"
|
3485
3791
|
msgstr "멀티 인타이틀먼트 "
|
3486
3792
|
|
@@ -3506,7 +3812,13 @@ msgid ""
|
|
3506
3812
|
" %{repos}"
|
3507
3813
|
msgstr ""
|
3508
3814
|
|
3815
|
+
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."
|
3816
|
+
msgstr ""
|
3817
|
+
|
3509
3818
|
msgid "Name"
|
3819
|
+
msgstr "이름 "
|
3820
|
+
|
3821
|
+
msgid "Name is a required parameter."
|
3510
3822
|
msgstr ""
|
3511
3823
|
|
3512
3824
|
msgid "Name of new activation key"
|
@@ -3515,6 +3827,9 @@ msgstr "새 활성키 이름 "
|
|
3515
3827
|
msgid "Name of the Content Credential"
|
3516
3828
|
msgstr ""
|
3517
3829
|
|
3830
|
+
msgid "Name of the alternate content source"
|
3831
|
+
msgstr ""
|
3832
|
+
|
3518
3833
|
msgid "Name of the content view"
|
3519
3834
|
msgstr "컨텐츠 뷰 이름 "
|
3520
3835
|
|
@@ -3536,6 +3851,9 @@ msgstr ""
|
|
3536
3851
|
msgid "Nest"
|
3537
3852
|
msgstr "중첩 "
|
3538
3853
|
|
3854
|
+
msgid "Network Sync"
|
3855
|
+
msgstr ""
|
3856
|
+
|
3539
3857
|
msgid "Never Synced"
|
3540
3858
|
msgstr "동기화하지 않음 "
|
3541
3859
|
|
@@ -3546,7 +3864,7 @@ msgid "New Files: %s"
|
|
3546
3864
|
msgstr ""
|
3547
3865
|
|
3548
3866
|
msgid "New blobs: %{count}."
|
3549
|
-
msgstr ""
|
3867
|
+
msgstr "새로운 BLOB: %{count}개."
|
3550
3868
|
|
3551
3869
|
msgid "New content view name"
|
3552
3870
|
msgstr "새 컨텐츠 뷰 이름 "
|
@@ -3602,12 +3920,21 @@ msgstr ""
|
|
3602
3920
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3603
3921
|
msgstr "컨텐츠 뷰 %{component}의 버전이 복합 컨텐츠 뷰 %{composite} 버전 %{version}의 구성 요소로 존재하지 않습니다 "
|
3604
3922
|
|
3923
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3924
|
+
msgstr ""
|
3925
|
+
|
3926
|
+
msgid "No action required"
|
3927
|
+
msgstr ""
|
3928
|
+
|
3605
3929
|
msgid "No applicable errata"
|
3606
3930
|
msgstr ""
|
3607
3931
|
|
3608
3932
|
msgid "No applicable errata for %s, skipping"
|
3609
3933
|
msgstr ""
|
3610
3934
|
|
3935
|
+
msgid "No applications to restart"
|
3936
|
+
msgstr ""
|
3937
|
+
|
3611
3938
|
msgid "No artifacts to show"
|
3612
3939
|
msgstr ""
|
3613
3940
|
|
@@ -3629,6 +3956,9 @@ msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
|
|
3629
3956
|
msgid "No content views available"
|
3630
3957
|
msgstr ""
|
3631
3958
|
|
3959
|
+
msgid "No content views available for the selected environment"
|
3960
|
+
msgstr ""
|
3961
|
+
|
3632
3962
|
msgid "No content views belong to ${label}"
|
3633
3963
|
msgstr ""
|
3634
3964
|
|
@@ -3638,6 +3968,9 @@ msgstr "content_view_version_ids가 지정되어 있지 않습니다 "
|
|
3638
3968
|
msgid "No description"
|
3639
3969
|
msgstr ""
|
3640
3970
|
|
3971
|
+
msgid "No description provided"
|
3972
|
+
msgstr ""
|
3973
|
+
|
3641
3974
|
msgid "No enabled repositories match your search criteria."
|
3642
3975
|
msgstr ""
|
3643
3976
|
|
@@ -3662,15 +3995,21 @@ msgstr ""
|
|
3662
3995
|
msgid "No file uploaded"
|
3663
3996
|
msgstr "업로드된 파일이 없음 "
|
3664
3997
|
|
3998
|
+
msgid "No host collections"
|
3999
|
+
msgstr ""
|
4000
|
+
|
3665
4001
|
msgid "No host collections found."
|
3666
4002
|
msgstr "호스트 컬렉션을 찾을 수 없습니다. "
|
3667
4003
|
|
3668
4004
|
msgid "No hosts have been specified."
|
3669
|
-
msgstr ""
|
4005
|
+
msgstr "호스트를 지정하지 않았습니다."
|
3670
4006
|
|
3671
4007
|
msgid "No hosts registered with subscription-manager found in selection."
|
3672
4008
|
msgstr ""
|
3673
4009
|
|
4010
|
+
msgid "No hosts with content source found!"
|
4011
|
+
msgstr ""
|
4012
|
+
|
3674
4013
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3675
4014
|
msgstr ""
|
3676
4015
|
|
@@ -3695,6 +4034,9 @@ msgstr ""
|
|
3695
4034
|
msgid "No matching activation keys found."
|
3696
4035
|
msgstr ""
|
3697
4036
|
|
4037
|
+
msgid "No matching alternate content sources found"
|
4038
|
+
msgstr ""
|
4039
|
+
|
3698
4040
|
msgid "No matching content views found"
|
3699
4041
|
msgstr ""
|
3700
4042
|
|
@@ -3710,6 +4052,9 @@ msgstr ""
|
|
3710
4052
|
msgid "No matching history record found"
|
3711
4053
|
msgstr ""
|
3712
4054
|
|
4055
|
+
msgid "No matching host collections found"
|
4056
|
+
msgstr ""
|
4057
|
+
|
3713
4058
|
msgid "No matching hosts found."
|
3714
4059
|
msgstr ""
|
3715
4060
|
|
@@ -3740,6 +4085,12 @@ msgstr "새 패키지가 없습니다. "
|
|
3740
4085
|
msgid "No packages"
|
3741
4086
|
msgstr ""
|
3742
4087
|
|
4088
|
+
msgid "No packages available to install"
|
4089
|
+
msgstr ""
|
4090
|
+
|
4091
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4092
|
+
msgstr ""
|
4093
|
+
|
3743
4094
|
msgid "No packages removed"
|
3744
4095
|
msgstr "삭제된 패키지가 없음 "
|
3745
4096
|
|
@@ -3761,9 +4112,6 @@ msgstr ""
|
|
3761
4112
|
msgid "No products are enabled."
|
3762
4113
|
msgstr ""
|
3763
4114
|
|
3764
|
-
msgid "No profiles to show"
|
3765
|
-
msgstr ""
|
3766
|
-
|
3767
4115
|
msgid "No pulp workers running."
|
3768
4116
|
msgstr "실행 중인 pulp worker가 없습니다."
|
3769
4117
|
|
@@ -3830,9 +4178,6 @@ msgstr "없음 "
|
|
3830
4178
|
msgid "None provided"
|
3831
4179
|
msgstr ""
|
3832
4180
|
|
3833
|
-
msgid "Not Specified"
|
3834
|
-
msgstr ""
|
3835
|
-
|
3836
4181
|
msgid "Not a number"
|
3837
4182
|
msgstr ""
|
3838
4183
|
|
@@ -3845,6 +4190,9 @@ msgstr ""
|
|
3845
4190
|
msgid "Not running"
|
3846
4191
|
msgstr ""
|
3847
4192
|
|
4193
|
+
msgid "Not specified"
|
4194
|
+
msgstr ""
|
4195
|
+
|
3848
4196
|
msgid "Not yet published"
|
3849
4197
|
msgstr "아직 공개되지 않았습니다 "
|
3850
4198
|
|
@@ -3870,7 +4218,7 @@ msgid "Number to Allocate"
|
|
3870
4218
|
msgstr ""
|
3871
4219
|
|
3872
4220
|
msgid "OSTree Branch"
|
3873
|
-
msgstr ""
|
4221
|
+
msgstr "OSTree 분기"
|
3874
4222
|
|
3875
4223
|
msgid "OSTree Ref"
|
3876
4224
|
msgstr ""
|
@@ -3888,7 +4236,7 @@ msgid "Object to show subscriptions available for, either 'host' or 'activation_
|
|
3888
4236
|
msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host' 또는 'activation_key'로 지정할 수 있습니다."
|
3889
4237
|
|
3890
4238
|
msgid "On Demand"
|
3891
|
-
msgstr ""
|
4239
|
+
msgstr "주문형"
|
3892
4240
|
|
3893
4241
|
msgid "On-disk location for exported repositories"
|
3894
4242
|
msgstr "내보낸 리포지터리의 디스크상 위치"
|
@@ -3944,9 +4292,6 @@ msgstr ""
|
|
3944
4292
|
msgid "Organization Information not provided."
|
3945
4293
|
msgstr ""
|
3946
4294
|
|
3947
|
-
msgid "Organization Label"
|
3948
|
-
msgstr ""
|
3949
|
-
|
3950
4295
|
msgid "Organization cannot be blank."
|
3951
4296
|
msgstr "조직을 빈 칸으로 둘 수 없습니다. "
|
3952
4297
|
|
@@ -4151,9 +4496,6 @@ msgstr ""
|
|
4151
4496
|
msgid "Packages"
|
4152
4497
|
msgstr "패키지 "
|
4153
4498
|
|
4154
|
-
msgid "Packages management functionality on this page is incomplete"
|
4155
|
-
msgstr ""
|
4156
|
-
|
4157
4499
|
msgid "Packages must be provided"
|
4158
4500
|
msgstr "패키지가 필요함 "
|
4159
4501
|
|
@@ -4173,9 +4515,9 @@ msgid "Partition template IDs"
|
|
4173
4515
|
msgstr "파티션 템플릿 ID"
|
4174
4516
|
|
4175
4517
|
msgid "Password"
|
4176
|
-
msgstr ""
|
4518
|
+
msgstr "암호 "
|
4177
4519
|
|
4178
|
-
msgid "Password for authentication"
|
4520
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4179
4521
|
msgstr ""
|
4180
4522
|
|
4181
4523
|
msgid "Password of the upstream authentication token."
|
@@ -4188,12 +4530,15 @@ msgid "Password to access URL"
|
|
4188
4530
|
msgstr ""
|
4189
4531
|
|
4190
4532
|
msgid "Path"
|
4191
|
-
msgstr ""
|
4533
|
+
msgstr "경로 "
|
4192
4534
|
|
4193
4535
|
msgid "Path for ssl cert used for pulp server auth"
|
4194
|
-
msgstr ""
|
4536
|
+
msgstr "pulp 서버 인증에 사용되는 ssl 인증서의 경로"
|
4195
4537
|
|
4196
4538
|
msgid "Path for ssl key used for pulp server auth"
|
4539
|
+
msgstr "pulp 서버 인증에 사용되는 ssl 키의 경로"
|
4540
|
+
|
4541
|
+
msgid "Path suffixes for finding alternate content"
|
4197
4542
|
msgstr ""
|
4198
4543
|
|
4199
4544
|
msgid "Paused"
|
@@ -4214,6 +4559,12 @@ msgstr ""
|
|
4214
4559
|
msgid "Performs a full-export of the repositories in library."
|
4215
4560
|
msgstr ""
|
4216
4561
|
|
4562
|
+
msgid "Performs a full-export of the repository in library."
|
4563
|
+
msgstr ""
|
4564
|
+
|
4565
|
+
msgid "Performs a incremental-export of the repository in library."
|
4566
|
+
msgstr ""
|
4567
|
+
|
4217
4568
|
msgid "Performs an incremental-export of a content view version."
|
4218
4569
|
msgstr ""
|
4219
4570
|
|
@@ -4247,6 +4598,12 @@ msgstr ""
|
|
4247
4598
|
msgid "Please select a content source before assigning a kickstart repository"
|
4248
4599
|
msgstr ""
|
4249
4600
|
|
4601
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4602
|
+
msgstr ""
|
4603
|
+
|
4604
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4605
|
+
msgstr ""
|
4606
|
+
|
4250
4607
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4251
4608
|
msgstr ""
|
4252
4609
|
|
@@ -4268,9 +4625,39 @@ msgstr ""
|
|
4268
4625
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4269
4626
|
msgstr ""
|
4270
4627
|
|
4628
|
+
msgid "Prefer registered through proxy for remote execution"
|
4629
|
+
msgstr ""
|
4630
|
+
|
4631
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4632
|
+
msgstr ""
|
4633
|
+
|
4634
|
+
msgid "Prevent from further updates"
|
4635
|
+
msgstr ""
|
4636
|
+
|
4271
4637
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4272
4638
|
msgstr ""
|
4273
4639
|
|
4640
|
+
msgid "Problem searching"
|
4641
|
+
msgstr ""
|
4642
|
+
|
4643
|
+
msgid "Problem searching errata"
|
4644
|
+
msgstr ""
|
4645
|
+
|
4646
|
+
msgid "Problem searching host collections"
|
4647
|
+
msgstr ""
|
4648
|
+
|
4649
|
+
msgid "Problem searching module streams"
|
4650
|
+
msgstr ""
|
4651
|
+
|
4652
|
+
msgid "Problem searching packages"
|
4653
|
+
msgstr ""
|
4654
|
+
|
4655
|
+
msgid "Problem searching repository sets"
|
4656
|
+
msgstr ""
|
4657
|
+
|
4658
|
+
msgid "Problem searching traces"
|
4659
|
+
msgstr ""
|
4660
|
+
|
4274
4661
|
msgid "Processing metadata"
|
4275
4662
|
msgstr "메타데이터 처리 중 "
|
4276
4663
|
|
@@ -4284,13 +4671,13 @@ msgid "Product Content"
|
|
4284
4671
|
msgstr "제품 컨텐츠 "
|
4285
4672
|
|
4286
4673
|
msgid "Product Create"
|
4287
|
-
msgstr ""
|
4674
|
+
msgstr "제품 생성"
|
4288
4675
|
|
4289
4676
|
msgid "Product ID"
|
4290
4677
|
msgstr "제품 ID"
|
4291
4678
|
|
4292
4679
|
msgid "Product Name"
|
4293
|
-
msgstr ""
|
4680
|
+
msgstr "제품 이름 "
|
4294
4681
|
|
4295
4682
|
msgid "Product and Repositories"
|
4296
4683
|
msgstr "제품 및 리포지터리 "
|
@@ -4327,11 +4714,8 @@ msgstr ""
|
|
4327
4714
|
msgid "Products"
|
4328
4715
|
msgstr "제품 "
|
4329
4716
|
|
4330
|
-
msgid "Profiles"
|
4331
|
-
msgstr ""
|
4332
|
-
|
4333
4717
|
msgid "Promote"
|
4334
|
-
msgstr ""
|
4718
|
+
msgstr "승격 "
|
4335
4719
|
|
4336
4720
|
msgid "Promote a content view version"
|
4337
4721
|
msgstr "컨텐츠 뷰 버전 승격 "
|
@@ -4349,14 +4733,17 @@ msgid "Promoted to %{environment}"
|
|
4349
4733
|
msgstr "%{environment}로 승격 "
|
4350
4734
|
|
4351
4735
|
msgid "Promotion Summary"
|
4352
|
-
msgstr ""
|
4736
|
+
msgstr "승격 요약"
|
4353
4737
|
|
4354
4738
|
msgid "Promotion Summary for %{content_view}"
|
4355
|
-
msgstr ""
|
4739
|
+
msgstr "%{content_view}에 대한 승격 요약"
|
4356
4740
|
|
4357
4741
|
msgid "Promotion to Environment"
|
4358
4742
|
msgstr ""
|
4359
4743
|
|
4744
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4745
|
+
msgstr ""
|
4746
|
+
|
4360
4747
|
msgid "Provided Products"
|
4361
4748
|
msgstr "제공되는 제품 "
|
4362
4749
|
|
@@ -4367,10 +4754,10 @@ msgid "Provisioning template IDs"
|
|
4367
4754
|
msgstr "프로비저닝 템플릿 ID "
|
4368
4755
|
|
4369
4756
|
msgid "Proxies"
|
4370
|
-
msgstr ""
|
4757
|
+
msgstr "프록시 "
|
4371
4758
|
|
4372
4759
|
msgid "Public"
|
4373
|
-
msgstr ""
|
4760
|
+
msgstr "공개 "
|
4374
4761
|
|
4375
4762
|
msgid "Public key block in DER encoding or certificate content"
|
4376
4763
|
msgstr ""
|
@@ -4519,18 +4906,27 @@ msgstr ""
|
|
4519
4906
|
msgid "RPM name"
|
4520
4907
|
msgstr ""
|
4521
4908
|
|
4909
|
+
msgid "RPM packages"
|
4910
|
+
msgstr ""
|
4911
|
+
|
4522
4912
|
msgid "RPMs"
|
4523
4913
|
msgstr "RPM"
|
4524
4914
|
|
4525
4915
|
msgid "Range"
|
4526
|
-
msgstr ""
|
4916
|
+
msgstr "범위 "
|
4527
4917
|
|
4528
4918
|
msgid "Realm IDs"
|
4529
4919
|
msgstr "영역 ID "
|
4530
4920
|
|
4921
|
+
msgid "Reassign affected activation key"
|
4922
|
+
msgstr ""
|
4923
|
+
|
4531
4924
|
msgid "Reassign affected activation keys"
|
4532
4925
|
msgstr ""
|
4533
4926
|
|
4927
|
+
msgid "Reassign affected host"
|
4928
|
+
msgstr ""
|
4929
|
+
|
4534
4930
|
msgid "Reassign affected hosts"
|
4535
4931
|
msgstr ""
|
4536
4932
|
|
@@ -4558,6 +4954,9 @@ msgstr ""
|
|
4558
4954
|
msgid "Recommended Repositories"
|
4559
4955
|
msgstr ""
|
4560
4956
|
|
4957
|
+
msgid "Red Hat CDN"
|
4958
|
+
msgstr ""
|
4959
|
+
|
4561
4960
|
msgid "Red Hat CDN URL"
|
4562
4961
|
msgstr "Red Hat CDN URL"
|
4563
4962
|
|
@@ -4565,6 +4964,15 @@ msgid "Red Hat Repositories"
|
|
4565
4964
|
msgstr "Red Hat 리포지터리 "
|
4566
4965
|
|
4567
4966
|
msgid "Red Hat Repositories page"
|
4967
|
+
msgstr "Red Hat 리포지터리 페이지 "
|
4968
|
+
|
4969
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4970
|
+
msgstr ""
|
4971
|
+
|
4972
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4973
|
+
msgstr ""
|
4974
|
+
|
4975
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4568
4976
|
msgstr ""
|
4569
4977
|
|
4570
4978
|
msgid "Red Hat products cannot be manipulated."
|
@@ -4597,6 +5005,18 @@ msgstr ""
|
|
4597
5005
|
msgid "Register host '%s' before attaching subscriptions"
|
4598
5006
|
msgstr ""
|
4599
5007
|
|
5008
|
+
msgid "Registered by"
|
5009
|
+
msgstr ""
|
5010
|
+
|
5011
|
+
msgid "Registered on"
|
5012
|
+
msgstr ""
|
5013
|
+
|
5014
|
+
msgid "Registered through"
|
5015
|
+
msgstr ""
|
5016
|
+
|
5017
|
+
msgid "Registration details"
|
5018
|
+
msgstr ""
|
5019
|
+
|
4600
5020
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4601
5021
|
msgstr ""
|
4602
5022
|
|
@@ -4625,7 +5045,7 @@ msgid "Related content views will appear here when created."
|
|
4625
5045
|
msgstr ""
|
4626
5046
|
|
4627
5047
|
msgid "Release"
|
4628
|
-
msgstr ""
|
5048
|
+
msgstr "릴리즈 "
|
4629
5049
|
|
4630
5050
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
4631
5051
|
msgstr ""
|
@@ -4687,15 +5107,24 @@ msgstr ""
|
|
4687
5107
|
msgid "Remove from environments"
|
4688
5108
|
msgstr ""
|
4689
5109
|
|
5110
|
+
msgid "Remove host from collections"
|
5111
|
+
msgstr ""
|
5112
|
+
|
5113
|
+
msgid "Remove host from host collections"
|
5114
|
+
msgstr ""
|
5115
|
+
|
4690
5116
|
msgid "Remove hosts from the host collection"
|
4691
5117
|
msgstr "호스트 컬렉션에서 호스트 삭제"
|
4692
5118
|
|
4693
5119
|
msgid "Remove lifecycle environments from the smart proxy"
|
4694
5120
|
msgstr ""
|
4695
5121
|
|
4696
|
-
msgid "Remove
|
5122
|
+
msgid "Remove module stream"
|
4697
5123
|
msgstr ""
|
4698
5124
|
|
5125
|
+
msgid "Remove one or more host collections from one or more hosts"
|
5126
|
+
msgstr "하나 이상의 호스트에서 하나 이상의 호스트 컬렉션 삭제"
|
5127
|
+
|
4699
5128
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
4700
5129
|
msgstr ""
|
4701
5130
|
|
@@ -4709,9 +5138,12 @@ msgid "Remove package group"
|
|
4709
5138
|
msgstr "패키지 그룹 삭제 "
|
4710
5139
|
|
4711
5140
|
msgid "Remove package group via Katello interface"
|
4712
|
-
msgstr ""
|
5141
|
+
msgstr "Katello 인터페이스를 통해 패키지 그룹 삭제"
|
4713
5142
|
|
4714
5143
|
msgid "Remove package via Katello interface"
|
5144
|
+
msgstr "Katello 인터페이스를 통해 패키지 삭제"
|
5145
|
+
|
5146
|
+
msgid "Remove packages via Katello interface"
|
4715
5147
|
msgstr ""
|
4716
5148
|
|
4717
5149
|
msgid "Remove products from sync plan"
|
@@ -4753,6 +5185,9 @@ msgstr "리포지터리 유형 "
|
|
4753
5185
|
msgid "Repositories"
|
4754
5186
|
msgstr "리포지터리 "
|
4755
5187
|
|
5188
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5189
|
+
msgstr ""
|
5190
|
+
|
4756
5191
|
msgid "Repositories from published Content Views are not allowed."
|
4757
5192
|
msgstr "공개된 컨텐츠 뷰에서 리포지터리는 허용되지 않습니다. "
|
4758
5193
|
|
@@ -4784,7 +5219,7 @@ msgid "Repository id"
|
|
4784
5219
|
msgstr "리포지터리 ID"
|
4785
5220
|
|
4786
5221
|
msgid "Repository identifier"
|
4787
|
-
msgstr ""
|
5222
|
+
msgstr "리포지터리 ID"
|
4788
5223
|
|
4789
5224
|
msgid "Repository label '%s' is not associated with content view."
|
4790
5225
|
msgstr ""
|
@@ -4828,9 +5263,6 @@ msgstr ""
|
|
4828
5263
|
msgid "Repository sets will appear here when available."
|
4829
5264
|
msgstr ""
|
4830
5265
|
|
4831
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4832
|
-
msgstr ""
|
4833
|
-
|
4834
5266
|
msgid "Republish Repositories of %{name} %{version}"
|
4835
5267
|
msgstr ""
|
4836
5268
|
|
@@ -4852,10 +5284,19 @@ msgstr ""
|
|
4852
5284
|
msgid "Requires Virt-Who"
|
4853
5285
|
msgstr ""
|
4854
5286
|
|
5287
|
+
msgid "Reset"
|
5288
|
+
msgstr ""
|
5289
|
+
|
4855
5290
|
msgid "Reset filters"
|
4856
5291
|
msgstr ""
|
4857
5292
|
|
5293
|
+
msgid "Reset module stream"
|
5294
|
+
msgstr ""
|
5295
|
+
|
4858
5296
|
msgid "Reset to default"
|
5297
|
+
msgstr "기본값으로 다시 설정 "
|
5298
|
+
|
5299
|
+
msgid "Reset to the default state"
|
4859
5300
|
msgstr ""
|
4860
5301
|
|
4861
5302
|
msgid "Resolve traces"
|
@@ -4882,7 +5323,7 @@ msgstr ""
|
|
4882
5323
|
msgid "Restart via remote execution"
|
4883
5324
|
msgstr ""
|
4884
5325
|
|
4885
|
-
msgid "Restrict
|
5326
|
+
msgid "Restrict composite content view promotion"
|
4886
5327
|
msgstr ""
|
4887
5328
|
|
4888
5329
|
msgid "Result"
|
@@ -4972,7 +5413,10 @@ msgstr ""
|
|
4972
5413
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4973
5414
|
msgstr ""
|
4974
5415
|
|
4975
|
-
msgid "Review
|
5416
|
+
msgid "Review affected environment"
|
5417
|
+
msgstr ""
|
5418
|
+
|
5419
|
+
msgid "Review affected environments"
|
4976
5420
|
msgstr ""
|
4977
5421
|
|
4978
5422
|
msgid "Review details"
|
@@ -4990,15 +5434,15 @@ msgstr ""
|
|
4990
5434
|
msgid "Roles"
|
4991
5435
|
msgstr "역할 "
|
4992
5436
|
|
4993
|
-
msgid "Rpm packages"
|
4994
|
-
msgstr ""
|
4995
|
-
|
4996
5437
|
msgid "Rules to be added"
|
4997
5438
|
msgstr ""
|
4998
5439
|
|
4999
5440
|
msgid "Run Sync Plan:"
|
5000
5441
|
msgstr ""
|
5001
5442
|
|
5443
|
+
msgid "Run job invocation"
|
5444
|
+
msgstr ""
|
5445
|
+
|
5002
5446
|
msgid "Running"
|
5003
5447
|
msgstr "실행 중 "
|
5004
5448
|
|
@@ -5035,6 +5479,12 @@ msgstr "검색 "
|
|
5035
5479
|
msgid "Search Query"
|
5036
5480
|
msgstr ""
|
5037
5481
|
|
5482
|
+
msgid "Search available packages"
|
5483
|
+
msgstr ""
|
5484
|
+
|
5485
|
+
msgid "Search host collections"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5038
5488
|
msgid "Search pattern (defaults to '*')"
|
5039
5489
|
msgstr ""
|
5040
5490
|
|
@@ -5045,11 +5495,14 @@ msgid "Search string for erratum to perform an action on"
|
|
5045
5495
|
msgstr ""
|
5046
5496
|
|
5047
5497
|
msgid "Search string for host to perform an action on"
|
5048
|
-
msgstr ""
|
5498
|
+
msgstr "작업을 수행할 호스트의 검색 문자열"
|
5049
5499
|
|
5050
5500
|
msgid "Search string for hosts to perform an action on"
|
5051
5501
|
msgstr ""
|
5052
5502
|
|
5503
|
+
msgid "Search string for versions to perform an action on"
|
5504
|
+
msgstr ""
|
5505
|
+
|
5053
5506
|
msgid "Security"
|
5054
5507
|
msgstr "보안 "
|
5055
5508
|
|
@@ -5062,6 +5515,9 @@ msgstr ""
|
|
5062
5515
|
msgid "Select"
|
5063
5516
|
msgstr "선택 "
|
5064
5517
|
|
5518
|
+
msgid "Select ..."
|
5519
|
+
msgstr ""
|
5520
|
+
|
5065
5521
|
msgid "Select All"
|
5066
5522
|
msgstr "모두 선택 "
|
5067
5523
|
|
@@ -5080,6 +5536,12 @@ msgstr ""
|
|
5080
5536
|
msgid "Select a content view"
|
5081
5537
|
msgstr ""
|
5082
5538
|
|
5539
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5540
|
+
msgstr ""
|
5541
|
+
|
5542
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5543
|
+
msgstr ""
|
5544
|
+
|
5083
5545
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5084
5546
|
msgstr ""
|
5085
5547
|
|
@@ -5095,6 +5557,12 @@ msgstr ""
|
|
5095
5557
|
msgid "Select an Organization"
|
5096
5558
|
msgstr "조직 선택 "
|
5097
5559
|
|
5560
|
+
msgid "Select an environment"
|
5561
|
+
msgstr ""
|
5562
|
+
|
5563
|
+
msgid "Select an environment above"
|
5564
|
+
msgstr ""
|
5565
|
+
|
5098
5566
|
msgid "Select an organization"
|
5099
5567
|
msgstr ""
|
5100
5568
|
|
@@ -5107,6 +5575,15 @@ msgstr ""
|
|
5107
5575
|
msgid "Select content view"
|
5108
5576
|
msgstr ""
|
5109
5577
|
|
5578
|
+
msgid "Select environment"
|
5579
|
+
msgstr ""
|
5580
|
+
|
5581
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5582
|
+
msgstr ""
|
5583
|
+
|
5584
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5585
|
+
msgstr ""
|
5586
|
+
|
5110
5587
|
msgid "Select hosts to assign to %s"
|
5111
5588
|
msgstr "%s에 할당할 호스트 선택 "
|
5112
5589
|
|
@@ -5119,6 +5596,9 @@ msgstr ""
|
|
5119
5596
|
msgid "Select one"
|
5120
5597
|
msgstr ""
|
5121
5598
|
|
5599
|
+
msgid "Select packages to install to the host {hostName}."
|
5600
|
+
msgstr ""
|
5601
|
+
|
5122
5602
|
msgid "Select page"
|
5123
5603
|
msgstr ""
|
5124
5604
|
|
@@ -5137,15 +5617,15 @@ msgstr ""
|
|
5137
5617
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5138
5618
|
msgstr ""
|
5139
5619
|
|
5140
|
-
msgid "Service Level"
|
5141
|
-
msgstr "서비스 레벨 "
|
5142
|
-
|
5143
5620
|
msgid "Service Level %s"
|
5144
5621
|
msgstr "서비스 레벨 %s"
|
5145
5622
|
|
5146
5623
|
msgid "Service Level (SLA)"
|
5147
5624
|
msgstr ""
|
5148
5625
|
|
5626
|
+
msgid "Service level"
|
5627
|
+
msgstr ""
|
5628
|
+
|
5149
5629
|
msgid "Service level of host"
|
5150
5630
|
msgstr ""
|
5151
5631
|
|
@@ -5153,11 +5633,14 @@ msgid "Service level to be used for autoheal"
|
|
5153
5633
|
msgstr ""
|
5154
5634
|
|
5155
5635
|
msgid "Set content overrides for the host"
|
5156
|
-
msgstr ""
|
5636
|
+
msgstr "호스트에 대한 컨텐츠 덮어쓰기 설정"
|
5157
5637
|
|
5158
5638
|
msgid "Set content overrides to one or more hosts"
|
5159
5639
|
msgstr ""
|
5160
5640
|
|
5641
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5642
|
+
msgstr ""
|
5643
|
+
|
5161
5644
|
msgid "Set true to remove an override and reset it to 'default'"
|
5162
5645
|
msgstr ""
|
5163
5646
|
|
@@ -5212,12 +5695,21 @@ msgstr "서브스크립션 표시 "
|
|
5212
5695
|
msgid "Show a sync plan"
|
5213
5696
|
msgstr "동기화 계획 표시 "
|
5214
5697
|
|
5698
|
+
msgid "Show affected activation keys"
|
5699
|
+
msgstr ""
|
5700
|
+
|
5701
|
+
msgid "Show affected hosts"
|
5702
|
+
msgstr ""
|
5703
|
+
|
5215
5704
|
msgid "Show all"
|
5216
5705
|
msgstr ""
|
5217
5706
|
|
5218
5707
|
msgid "Show an activation key"
|
5219
5708
|
msgstr "활성 키 표시 "
|
5220
5709
|
|
5710
|
+
msgid "Show an alternate content source"
|
5711
|
+
msgstr ""
|
5712
|
+
|
5221
5713
|
msgid "Show an environment"
|
5222
5714
|
msgstr "환경 표시 "
|
5223
5715
|
|
@@ -5285,7 +5777,7 @@ msgid "Sockets: %s"
|
|
5285
5777
|
msgstr "소켓: %s"
|
5286
5778
|
|
5287
5779
|
msgid "Solution"
|
5288
|
-
msgstr ""
|
5780
|
+
msgstr "솔루션 "
|
5289
5781
|
|
5290
5782
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
5291
5783
|
msgstr ""
|
@@ -5293,6 +5785,9 @@ msgstr ""
|
|
5293
5785
|
msgid "Solve dependencies"
|
5294
5786
|
msgstr ""
|
5295
5787
|
|
5788
|
+
msgid "Some hosts are ignored!"
|
5789
|
+
msgstr ""
|
5790
|
+
|
5296
5791
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5297
5792
|
msgstr ""
|
5298
5793
|
|
@@ -5320,9 +5815,15 @@ msgstr ""
|
|
5320
5815
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5321
5816
|
msgstr ""
|
5322
5817
|
|
5818
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5819
|
+
msgstr ""
|
5820
|
+
|
5323
5821
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5324
5822
|
msgstr ""
|
5325
5823
|
|
5824
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5825
|
+
msgstr ""
|
5826
|
+
|
5326
5827
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5327
5828
|
msgstr ""
|
5328
5829
|
|
@@ -5341,10 +5842,10 @@ msgstr ""
|
|
5341
5842
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5342
5843
|
msgstr ""
|
5343
5844
|
|
5344
|
-
msgid "Something went wrong while getting
|
5845
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5345
5846
|
msgstr ""
|
5346
5847
|
|
5347
|
-
msgid "Something went wrong while getting
|
5848
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5348
5849
|
msgstr ""
|
5349
5850
|
|
5350
5851
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5356,9 +5857,15 @@ msgstr ""
|
|
5356
5857
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5357
5858
|
msgstr ""
|
5358
5859
|
|
5860
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5861
|
+
msgstr ""
|
5862
|
+
|
5359
5863
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5360
5864
|
msgstr ""
|
5361
5865
|
|
5866
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5867
|
+
msgstr ""
|
5868
|
+
|
5362
5869
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5363
5870
|
msgstr ""
|
5364
5871
|
|
@@ -5395,6 +5902,9 @@ msgstr ""
|
|
5395
5902
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5396
5903
|
msgstr ""
|
5397
5904
|
|
5905
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5906
|
+
msgstr ""
|
5907
|
+
|
5398
5908
|
msgid "Something went wrong! Please check server logs!"
|
5399
5909
|
msgstr ""
|
5400
5910
|
|
@@ -5405,7 +5915,7 @@ msgid "Source RPM"
|
|
5405
5915
|
msgstr "소스 RPM"
|
5406
5916
|
|
5407
5917
|
msgid "Source RPMs"
|
5408
|
-
msgstr ""
|
5918
|
+
msgstr "소스 RPM "
|
5409
5919
|
|
5410
5920
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5411
5921
|
msgstr ""
|
@@ -5428,9 +5938,15 @@ msgstr "시작 날짜 및 시간을 비워둘 수 없음 "
|
|
5428
5938
|
msgid "Start Time"
|
5429
5939
|
msgstr "시작 시간 "
|
5430
5940
|
|
5941
|
+
msgid "Start date"
|
5942
|
+
msgstr ""
|
5943
|
+
|
5431
5944
|
msgid "Starts"
|
5432
5945
|
msgstr "시작 "
|
5433
5946
|
|
5947
|
+
msgid "State"
|
5948
|
+
msgstr ""
|
5949
|
+
|
5434
5950
|
msgid "Status"
|
5435
5951
|
msgstr "상태 "
|
5436
5952
|
|
@@ -5443,6 +5959,12 @@ msgstr "스토리지"
|
|
5443
5959
|
msgid "Stream"
|
5444
5960
|
msgstr ""
|
5445
5961
|
|
5962
|
+
msgid "Streamed"
|
5963
|
+
msgstr ""
|
5964
|
+
|
5965
|
+
msgid "Streams based on the host based on the installation status"
|
5966
|
+
msgstr ""
|
5967
|
+
|
5446
5968
|
msgid "Streams based on the host based on their status"
|
5447
5969
|
msgstr ""
|
5448
5970
|
|
@@ -5483,11 +6005,17 @@ msgid "Subscription Pool uuid"
|
|
5483
6005
|
msgstr "서브스크립션 풀 uuid"
|
5484
6006
|
|
5485
6007
|
msgid "Subscription Status"
|
6008
|
+
msgstr "서브스크립션 상태 "
|
6009
|
+
|
6010
|
+
msgid "Subscription UUID"
|
5486
6011
|
msgstr ""
|
5487
6012
|
|
5488
6013
|
msgid "Subscription Watch"
|
5489
6014
|
msgstr ""
|
5490
6015
|
|
6016
|
+
msgid "Subscription connection enabled"
|
6017
|
+
msgstr ""
|
6018
|
+
|
5491
6019
|
msgid "Subscription expiration notification"
|
5492
6020
|
msgstr ""
|
5493
6021
|
|
@@ -5566,7 +6094,7 @@ msgstr ""
|
|
5566
6094
|
msgid "Sync Canceled"
|
5567
6095
|
msgstr "동기화 취소 "
|
5568
6096
|
|
5569
|
-
msgid "Sync
|
6097
|
+
msgid "Sync Connect Timeout"
|
5570
6098
|
msgstr ""
|
5571
6099
|
|
5572
6100
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5590,16 +6118,25 @@ msgstr "동기화 계획 "
|
|
5590
6118
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5591
6119
|
msgstr ""
|
5592
6120
|
|
5593
|
-
msgid "Sync Smart Proxies after
|
6121
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6122
|
+
msgstr ""
|
6123
|
+
|
6124
|
+
msgid "Sync Sock Connect Timeout"
|
6125
|
+
msgstr ""
|
6126
|
+
|
6127
|
+
msgid "Sync Sock Read Timeout"
|
5594
6128
|
msgstr ""
|
5595
6129
|
|
5596
6130
|
msgid "Sync Status"
|
5597
6131
|
msgstr "동기화 상태 "
|
5598
6132
|
|
5599
6133
|
msgid "Sync Summary"
|
5600
|
-
msgstr ""
|
6134
|
+
msgstr "동기화 요약"
|
5601
6135
|
|
5602
6136
|
msgid "Sync Summary for %s"
|
6137
|
+
msgstr "%s에 대한 동기화 요약"
|
6138
|
+
|
6139
|
+
msgid "Sync Total Timeout"
|
5603
6140
|
msgstr ""
|
5604
6141
|
|
5605
6142
|
msgid "Sync a repository"
|
@@ -5671,6 +6208,9 @@ msgstr ""
|
|
5671
6208
|
msgid "System Status"
|
5672
6209
|
msgstr "시스템 상태 "
|
5673
6210
|
|
6211
|
+
msgid "System purpose"
|
6212
|
+
msgstr ""
|
6213
|
+
|
5674
6214
|
msgid "Tag name"
|
5675
6215
|
msgstr ""
|
5676
6216
|
|
@@ -5678,7 +6218,7 @@ msgid "Tags"
|
|
5678
6218
|
msgstr "태그"
|
5679
6219
|
|
5680
6220
|
msgid "Task"
|
5681
|
-
msgstr ""
|
6221
|
+
msgstr "작업"
|
5682
6222
|
|
5683
6223
|
msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
|
5684
6224
|
msgstr ""
|
@@ -5698,6 +6238,9 @@ msgstr "임시"
|
|
5698
6238
|
msgid "The '%s' environment cannot contain a changeset!"
|
5699
6239
|
msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
|
5700
6240
|
|
6241
|
+
msgid "The Alternate Content Source type"
|
6242
|
+
msgstr ""
|
6243
|
+
|
5701
6244
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5702
6245
|
msgstr ""
|
5703
6246
|
|
@@ -5710,6 +6253,9 @@ msgstr ""
|
|
5710
6253
|
msgid "The actual file contents"
|
5711
6254
|
msgstr "실제 파일 컨텐츠 "
|
5712
6255
|
|
6256
|
+
msgid "The content type for the Alternate Content Source"
|
6257
|
+
msgstr ""
|
6258
|
+
|
5713
6259
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5714
6260
|
msgstr "현재 조직을 삭제할 수 없습니다. 삭제하기 전 다른 조직으로 전환하십시오. "
|
5715
6261
|
|
@@ -5719,7 +6265,7 @@ msgstr "기본 컨텐츠 뷰는 편집, 공개, 삭제할 수 없습니다."
|
|
5719
6265
|
msgid "The default content view cannot be promoted"
|
5720
6266
|
msgstr "기본값 컨텐츠 뷰는 승격할 수 없습니다 "
|
5721
6267
|
|
5722
|
-
msgid "The default dependency solving value for new
|
6268
|
+
msgid "The default dependency solving value for new content views."
|
5723
6269
|
msgstr ""
|
5724
6270
|
|
5725
6271
|
msgid "The description for the content view version"
|
@@ -5749,6 +6295,9 @@ msgstr ""
|
|
5749
6295
|
msgid "The field to sort the data by. Defaults to the created date."
|
5750
6296
|
msgstr ""
|
5751
6297
|
|
6298
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6299
|
+
msgstr ""
|
6300
|
+
|
5752
6301
|
msgid "The following hosts have errata that apply to them: "
|
5753
6302
|
msgstr "다음 호스트에는 이에 적용되는 에라타가 있습니다: "
|
5754
6303
|
|
@@ -5757,15 +6306,39 @@ msgid ""
|
|
5757
6306
|
" %{repos}"
|
5758
6307
|
msgstr ""
|
5759
6308
|
|
6309
|
+
msgid "The id of the content source"
|
6310
|
+
msgstr ""
|
6311
|
+
|
6312
|
+
msgid "The id of the content view"
|
6313
|
+
msgstr ""
|
6314
|
+
|
5760
6315
|
msgid "The id of the host to alter"
|
5761
6316
|
msgstr "변경할 호스트의 ID"
|
5762
6317
|
|
6318
|
+
msgid "The id of the lifecycle environment"
|
6319
|
+
msgstr ""
|
6320
|
+
|
6321
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6322
|
+
msgstr ""
|
6323
|
+
|
5763
6324
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5764
6325
|
msgstr ""
|
5765
6326
|
|
5766
6327
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5767
6328
|
msgstr ""
|
5768
6329
|
|
6330
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6331
|
+
msgstr ""
|
6332
|
+
|
6333
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6334
|
+
msgstr ""
|
6335
|
+
|
6336
|
+
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."
|
6337
|
+
msgstr ""
|
6338
|
+
|
6339
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6340
|
+
msgstr ""
|
6341
|
+
|
5769
6342
|
msgid "The maximum number of versions of each package to keep."
|
5770
6343
|
msgstr ""
|
5771
6344
|
|
@@ -5852,9 +6425,18 @@ msgstr ""
|
|
5852
6425
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5853
6426
|
msgstr "등록된 컨텐츠 호스트에 적용해야 하는 에라타가 없습니다. "
|
5854
6427
|
|
6428
|
+
msgid "There are no host collections available to add."
|
6429
|
+
msgstr ""
|
6430
|
+
|
5855
6431
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5856
6432
|
msgstr "활성화된 제품 또는 리포지터리가 없습니다. %{custom} 또는 %{redhat}을(를) 통해 활성화합니다."
|
5857
6433
|
|
6434
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6435
|
+
msgstr ""
|
6436
|
+
|
6437
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6438
|
+
msgstr ""
|
6439
|
+
|
5858
6440
|
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."
|
5859
6441
|
msgstr "환경이나 버전이 지정되어 있지 않거나 잘못된 환경/버전이 지정되어 있습니다. environment_ids 및 content_view_version_ids 매개 변수를 확인하십시오. "
|
5860
6442
|
|
@@ -5867,6 +6449,12 @@ msgstr ""
|
|
5867
6449
|
msgid "There is nothing to see here"
|
5868
6450
|
msgstr ""
|
5869
6451
|
|
6452
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6453
|
+
msgstr ""
|
6454
|
+
|
6455
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6456
|
+
msgstr ""
|
6457
|
+
|
5870
6458
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5871
6459
|
msgstr ""
|
5872
6460
|
|
@@ -5915,13 +6503,13 @@ msgstr ""
|
|
5915
6503
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5916
6504
|
msgstr ""
|
5917
6505
|
|
5918
|
-
msgid "This host
|
6506
|
+
msgid "This host does not have any Module streams."
|
5919
6507
|
msgstr ""
|
5920
6508
|
|
5921
|
-
msgid "This host does not have any
|
6509
|
+
msgid "This host does not have any packages."
|
5922
6510
|
msgstr ""
|
5923
6511
|
|
5924
|
-
msgid "This host
|
6512
|
+
msgid "This host has errata that are applicable, but not installable."
|
5925
6513
|
msgstr ""
|
5926
6514
|
|
5927
6515
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5954,6 +6542,9 @@ msgstr ""
|
|
5954
6542
|
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}."
|
5955
6543
|
msgstr ""
|
5956
6544
|
|
6545
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6546
|
+
msgstr ""
|
6547
|
+
|
5957
6548
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5958
6549
|
msgstr ""
|
5959
6550
|
|
@@ -5979,7 +6570,7 @@ msgid "This version is not promoted to any environments."
|
|
5979
6570
|
msgstr ""
|
5980
6571
|
|
5981
6572
|
msgid "This version will be removed from:"
|
5982
|
-
msgstr ""
|
6573
|
+
msgstr "이 버전은 다음에서 삭제됩니다: "
|
5983
6574
|
|
5984
6575
|
msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
|
5985
6576
|
msgstr ""
|
@@ -5987,11 +6578,11 @@ msgstr ""
|
|
5987
6578
|
msgid "Time in minutes to consider orphan content as orphaned."
|
5988
6579
|
msgstr ""
|
5989
6580
|
|
5990
|
-
msgid "Time in seconds to wait for a
|
5991
|
-
msgstr "
|
6581
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
6582
|
+
msgstr ""
|
5992
6583
|
|
5993
|
-
msgid "Time in seconds to wait for a
|
5994
|
-
msgstr "
|
6584
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
6585
|
+
msgstr ""
|
5995
6586
|
|
5996
6587
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
5997
6588
|
msgstr ""
|
@@ -6008,9 +6599,6 @@ msgstr ""
|
|
6008
6599
|
msgid "Total steps: "
|
6009
6600
|
msgstr ""
|
6010
6601
|
|
6011
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6012
|
-
msgstr ""
|
6013
|
-
|
6014
6602
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6015
6603
|
msgstr ""
|
6016
6604
|
|
@@ -6026,6 +6614,9 @@ msgstr ""
|
|
6026
6614
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6027
6615
|
msgstr ""
|
6028
6616
|
|
6617
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6618
|
+
msgstr ""
|
6619
|
+
|
6029
6620
|
msgid "Traces that require logout cannot be restarted remotely"
|
6030
6621
|
msgstr ""
|
6031
6622
|
|
@@ -6048,7 +6639,7 @@ msgid "Trying to cancel the synchronization..."
|
|
6048
6639
|
msgstr "동기화를 취소하는 중..."
|
6049
6640
|
|
6050
6641
|
msgid "Type"
|
6051
|
-
msgstr ""
|
6642
|
+
msgstr "유형 "
|
6052
6643
|
|
6053
6644
|
msgid "Type must be one of: %s"
|
6054
6645
|
msgstr ""
|
@@ -6060,7 +6651,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
6060
6651
|
msgstr ""
|
6061
6652
|
|
6062
6653
|
msgid "URL"
|
6063
|
-
msgstr ""
|
6654
|
+
msgstr "URL"
|
6064
6655
|
|
6065
6656
|
msgid "URL needs to have a trailing /"
|
6066
6657
|
msgstr ""
|
@@ -6090,7 +6681,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
6090
6681
|
msgstr ""
|
6091
6682
|
|
6092
6683
|
msgid "Unable to connect"
|
6093
|
-
msgstr ""
|
6684
|
+
msgstr "연결할 수 없음"
|
6094
6685
|
|
6095
6686
|
msgid "Unable to connect. Got: %s"
|
6096
6687
|
msgstr "연결할 수 없습니다. 오류 메시지: %s"
|
@@ -6107,9 +6698,15 @@ msgstr ""
|
|
6107
6698
|
msgid "Unable to get users"
|
6108
6699
|
msgstr ""
|
6109
6700
|
|
6701
|
+
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. "
|
6702
|
+
msgstr ""
|
6703
|
+
|
6110
6704
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6111
6705
|
msgstr ""
|
6112
6706
|
|
6707
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6708
|
+
msgstr ""
|
6709
|
+
|
6113
6710
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6114
6711
|
msgstr "activation_keys를 재할당할 수 없습니다. activation_key_content_view_id 및 activation_key_environment_id를 확인하십시오. "
|
6115
6712
|
|
@@ -6123,7 +6720,7 @@ msgid "Unable to reassign systems. Please check system_content_view_id and syste
|
|
6123
6720
|
msgstr "시스템을 재할당할 수 없습니다. system_content_view_id 및 system_environment_id를 확인하십시오. "
|
6124
6721
|
|
6125
6722
|
msgid "Unable to send errata e-mail notification: %{error}"
|
6126
|
-
msgstr ""
|
6723
|
+
msgstr "에라타 이메일 통지를 보낼 수 없습니다: %{error}"
|
6127
6724
|
|
6128
6725
|
msgid "Unable to sync repo. This repository does not have a feed url."
|
6129
6726
|
msgstr "리포지터리를 동기화할 수 없습니다. 이 리포지터리에는 피드 URL이 없습니다."
|
@@ -6152,6 +6749,9 @@ msgstr "인타이틀먼트가 없음"
|
|
6152
6749
|
msgid "Unfiltered params array: %s."
|
6153
6750
|
msgstr ""
|
6154
6751
|
|
6752
|
+
msgid "Uninstall and reset"
|
6753
|
+
msgstr ""
|
6754
|
+
|
6155
6755
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6156
6756
|
msgstr ""
|
6157
6757
|
|
@@ -6206,6 +6806,9 @@ msgstr ""
|
|
6206
6806
|
msgid "Update"
|
6207
6807
|
msgstr "업데이트"
|
6208
6808
|
|
6809
|
+
msgid "Update Alternate Content Source"
|
6810
|
+
msgstr ""
|
6811
|
+
|
6209
6812
|
msgid "Update CDN Configuration"
|
6210
6813
|
msgstr ""
|
6211
6814
|
|
@@ -6245,6 +6848,9 @@ msgstr "동기화 계획 업데이트 "
|
|
6245
6848
|
msgid "Update an activation key"
|
6246
6849
|
msgstr "활성키 업데이트 "
|
6247
6850
|
|
6851
|
+
msgid "Update an alternate content source"
|
6852
|
+
msgstr ""
|
6853
|
+
|
6248
6854
|
msgid "Update an environment"
|
6249
6855
|
msgstr "환경 업데이트 "
|
6250
6856
|
|
@@ -6288,14 +6894,17 @@ msgid "Update package for %s"
|
|
6288
6894
|
msgstr ""
|
6289
6895
|
|
6290
6896
|
msgid "Update package group via Katello interface"
|
6291
|
-
msgstr ""
|
6897
|
+
msgstr "Katello 인터페이스를 통해 패키지 그룹 업데이트"
|
6292
6898
|
|
6293
6899
|
msgid "Update package via Katello interface"
|
6294
|
-
msgstr ""
|
6900
|
+
msgstr "Katello 인터페이스를 통해 패키지 업데이트"
|
6295
6901
|
|
6296
6902
|
msgid "Update packages remotely using katello-agent. %s"
|
6297
6903
|
msgstr ""
|
6298
6904
|
|
6905
|
+
msgid "Update packages via Katello interface"
|
6906
|
+
msgstr ""
|
6907
|
+
|
6299
6908
|
msgid "Update redhat repository"
|
6300
6909
|
msgstr ""
|
6301
6910
|
|
@@ -6314,6 +6923,9 @@ msgstr ""
|
|
6314
6923
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6315
6924
|
msgstr ""
|
6316
6925
|
|
6926
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6927
|
+
msgstr ""
|
6928
|
+
|
6317
6929
|
msgid "Update the information about enabled repositories"
|
6318
6930
|
msgstr "활성화된 리포지터리에 대한 정보 업데이트 "
|
6319
6931
|
|
@@ -6329,9 +6941,12 @@ msgstr "업데이트 일시 "
|
|
6329
6941
|
msgid "Updated component details"
|
6330
6942
|
msgstr ""
|
6331
6943
|
|
6332
|
-
msgid "
|
6944
|
+
msgid "Updated from"
|
6333
6945
|
msgstr ""
|
6334
6946
|
|
6947
|
+
msgid "Updates"
|
6948
|
+
msgstr "업데이트 "
|
6949
|
+
|
6335
6950
|
msgid "Updates a product"
|
6336
6951
|
msgstr "제품 업데이트 "
|
6337
6952
|
|
@@ -6356,7 +6971,7 @@ msgstr ""
|
|
6356
6971
|
msgid "Upgradable"
|
6357
6972
|
msgstr ""
|
6358
6973
|
|
6359
|
-
msgid "Upgradable
|
6974
|
+
msgid "Upgradable to"
|
6360
6975
|
msgstr ""
|
6361
6976
|
|
6362
6977
|
msgid "Upgrade"
|
@@ -6389,9 +7004,18 @@ msgstr ""
|
|
6389
7004
|
msgid "Upload request id"
|
6390
7005
|
msgstr "요청 ID 업로드 "
|
6391
7006
|
|
7007
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7008
|
+
msgstr ""
|
7009
|
+
|
7010
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7011
|
+
msgstr ""
|
7012
|
+
|
6392
7013
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6393
7014
|
msgstr ""
|
6394
7015
|
|
7016
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7017
|
+
msgstr ""
|
7018
|
+
|
6395
7019
|
msgid "Upstream identity certificate not available"
|
6396
7020
|
msgstr "업스트림 ID 인증서를 사용할 수 없습니다 "
|
6397
7021
|
|
@@ -6404,15 +7028,12 @@ msgstr ""
|
|
6404
7028
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6405
7029
|
msgstr ""
|
6406
7030
|
|
6407
|
-
msgid "Upstream organization to sync CDN content from"
|
7031
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6408
7032
|
msgstr ""
|
6409
7033
|
|
6410
7034
|
msgid "Upstream password requires upstream username be set."
|
6411
7035
|
msgstr ""
|
6412
7036
|
|
6413
|
-
msgid "Upstream server to sync CDN content from"
|
6414
|
-
msgstr ""
|
6415
|
-
|
6416
7037
|
msgid "Upstream username and password may only be set on custom repositories."
|
6417
7038
|
msgstr ""
|
6418
7039
|
|
@@ -6453,9 +7074,9 @@ msgid "User must be logged in."
|
|
6453
7074
|
msgstr "사용자는 로그인해야 합니다. "
|
6454
7075
|
|
6455
7076
|
msgid "Username"
|
6456
|
-
msgstr ""
|
7077
|
+
msgstr "사용자 이름 "
|
6457
7078
|
|
6458
|
-
msgid "Username for authentication"
|
7079
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6459
7080
|
msgstr ""
|
6460
7081
|
|
6461
7082
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6467,7 +7088,7 @@ msgstr ""
|
|
6467
7088
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6468
7089
|
msgstr ""
|
6469
7090
|
|
6470
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7091
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6471
7092
|
msgstr ""
|
6472
7093
|
|
6473
7094
|
msgid "Valid"
|
@@ -6512,6 +7133,15 @@ msgstr ""
|
|
6512
7133
|
msgid "Versions"
|
6513
7134
|
msgstr "버전 "
|
6514
7135
|
|
7136
|
+
msgid "Versions "
|
7137
|
+
msgstr ""
|
7138
|
+
|
7139
|
+
msgid "Versions to exclusively include in the action"
|
7140
|
+
msgstr ""
|
7141
|
+
|
7142
|
+
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."
|
7143
|
+
msgstr ""
|
7144
|
+
|
6515
7145
|
msgid "Versions will appear here when the content view is published."
|
6516
7146
|
msgstr ""
|
6517
7147
|
|
@@ -6524,16 +7154,22 @@ msgstr ""
|
|
6524
7154
|
msgid "View matching content"
|
6525
7155
|
msgstr ""
|
6526
7156
|
|
6527
|
-
msgid "
|
6528
|
-
msgstr "
|
7157
|
+
msgid "View tasks "
|
7158
|
+
msgstr ""
|
6529
7159
|
|
6530
|
-
msgid "
|
7160
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6531
7161
|
msgstr ""
|
6532
7162
|
|
7163
|
+
msgid "Virtual"
|
7164
|
+
msgstr "가상 "
|
7165
|
+
|
6533
7166
|
msgid "Waiting to start."
|
6534
7167
|
msgstr ""
|
6535
7168
|
|
6536
7169
|
msgid "Warning"
|
7170
|
+
msgstr "경고 "
|
7171
|
+
|
7172
|
+
msgid "What's next?"
|
6537
7173
|
msgstr ""
|
6538
7174
|
|
6539
7175
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
@@ -6557,7 +7193,7 @@ msgstr ""
|
|
6557
7193
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6558
7194
|
msgstr "호스트 컬렉션에 호스트가 무제한 포함되는지 여부"
|
6559
7195
|
|
6560
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7196
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6561
7197
|
msgstr ""
|
6562
7198
|
|
6563
7199
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6587,9 +7223,6 @@ msgstr ""
|
|
6587
7223
|
msgid "Yes"
|
6588
7224
|
msgstr "예 "
|
6589
7225
|
|
6590
|
-
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'."
|
6591
|
-
msgstr ""
|
6592
|
-
|
6593
7226
|
msgid "You are not allowed to promote to Environments %s"
|
6594
7227
|
msgstr "환경 %s에 승격할 수 없습니다 "
|
6595
7228
|
|
@@ -6614,6 +7247,9 @@ msgstr ""
|
|
6614
7247
|
msgid "You currently don't have any Content views."
|
6615
7248
|
msgstr ""
|
6616
7249
|
|
7250
|
+
msgid "You currently don't have any alternate content sources."
|
7251
|
+
msgstr ""
|
7252
|
+
|
6617
7253
|
msgid "You currently don't have any filters for this content view."
|
6618
7254
|
msgstr ""
|
6619
7255
|
|
@@ -6647,6 +7283,9 @@ msgstr ""
|
|
6647
7283
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6648
7284
|
msgstr ""
|
6649
7285
|
|
7286
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7287
|
+
msgstr ""
|
7288
|
+
|
6650
7289
|
msgid "You were not allowed to add %s"
|
6651
7290
|
msgstr "%s을(를) 추가할 수 없습니다 "
|
6652
7291
|
|
@@ -6668,6 +7307,9 @@ msgstr ""
|
|
6668
7307
|
msgid "Your search returned no matching "
|
6669
7308
|
msgstr ""
|
6670
7309
|
|
7310
|
+
msgid "Your search returned no matching Module streams."
|
7311
|
+
msgstr ""
|
7312
|
+
|
6671
7313
|
msgid "Your search returned no matching RPMs."
|
6672
7314
|
msgstr ""
|
6673
7315
|
|
@@ -6687,7 +7329,7 @@ msgid "a deb package"
|
|
6687
7329
|
msgstr ""
|
6688
7330
|
|
6689
7331
|
msgid "a docker manifest"
|
6690
|
-
msgstr ""
|
7332
|
+
msgstr "Docker 매니페스트"
|
6691
7333
|
|
6692
7334
|
msgid "a docker manifest list"
|
6693
7335
|
msgstr ""
|
@@ -6782,6 +7424,9 @@ msgstr ""
|
|
6782
7424
|
msgid "can't be blank"
|
6783
7425
|
msgstr "빈 칸으로 두지 마십시오. "
|
6784
7426
|
|
7427
|
+
msgid "cannot add filter to generated content views"
|
7428
|
+
msgstr ""
|
7429
|
+
|
6785
7430
|
msgid "cannot add filter to import-only view"
|
6786
7431
|
msgstr ""
|
6787
7432
|
|
@@ -6836,6 +7481,9 @@ msgstr "Candlepin 태스크 상태를 확인하는 중"
|
|
6836
7481
|
msgid "checking Pulp task status"
|
6837
7482
|
msgstr "Pulp 태스크 상태를 확인하는 중"
|
6838
7483
|
|
7484
|
+
msgid "click here"
|
7485
|
+
msgstr ""
|
7486
|
+
|
6839
7487
|
msgid "composite content view identifier"
|
6840
7488
|
msgstr ""
|
6841
7489
|
|
@@ -6854,6 +7502,9 @@ msgstr ""
|
|
6854
7502
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6855
7503
|
msgstr ""
|
6856
7504
|
|
7505
|
+
msgid "content view Dependency Solving Default"
|
7506
|
+
msgstr ""
|
7507
|
+
|
6857
7508
|
msgid "content view component ID. Identifier of the component association"
|
6858
7509
|
msgstr ""
|
6859
7510
|
|
@@ -6929,7 +7580,7 @@ msgstr "필터 설명 "
|
|
6929
7580
|
msgid "description of the repository"
|
6930
7581
|
msgstr ""
|
6931
7582
|
|
6932
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7583
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6933
7584
|
msgstr ""
|
6934
7585
|
|
6935
7586
|
msgid "enables or disables synchronization"
|
@@ -7004,6 +7655,9 @@ msgstr "필터 ID "
|
|
7004
7655
|
msgid "filter identifiers"
|
7005
7656
|
msgstr ""
|
7006
7657
|
|
7658
|
+
msgid "filter only environments containing this label"
|
7659
|
+
msgstr ""
|
7660
|
+
|
7007
7661
|
msgid "filter only environments containing this name"
|
7008
7662
|
msgstr "이름이 포함환 환경만 필터링 "
|
7009
7663
|
|
@@ -7032,7 +7686,7 @@ msgid "host collection name to filter by"
|
|
7032
7686
|
msgstr "필터링할 호스트 컬렉션 이름 "
|
7033
7687
|
|
7034
7688
|
msgid "hosts"
|
7035
|
-
msgstr ""
|
7689
|
+
msgstr "호스트"
|
7036
7690
|
|
7037
7691
|
msgid "how often synchronization should run"
|
7038
7692
|
msgstr "동기화 실행 빈도 "
|
@@ -7067,6 +7721,9 @@ msgstr "에라타 설치 중..."
|
|
7067
7721
|
msgid "installing erratum..."
|
7068
7722
|
msgstr "에라타 설치 중..."
|
7069
7723
|
|
7724
|
+
msgid "installing or updating packages"
|
7725
|
+
msgstr ""
|
7726
|
+
|
7070
7727
|
msgid "installing package group..."
|
7071
7728
|
msgstr "패키지 그룹 설치 중..."
|
7072
7729
|
|
@@ -7094,9 +7751,18 @@ msgstr "capsule에 이미 할당되어 있습니다 "
|
|
7094
7751
|
msgid "is invalid"
|
7095
7752
|
msgstr "유효하지 않음 "
|
7096
7753
|
|
7754
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7755
|
+
msgstr ""
|
7756
|
+
|
7757
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7758
|
+
msgstr ""
|
7759
|
+
|
7097
7760
|
msgid "is not enabled. must be one of the following: %s"
|
7098
7761
|
msgstr ""
|
7099
7762
|
|
7763
|
+
msgid "is only allowed for Yum repositories."
|
7764
|
+
msgstr ""
|
7765
|
+
|
7100
7766
|
msgid "label of the environment"
|
7101
7767
|
msgstr "환경 레이블 "
|
7102
7768
|
|
@@ -7169,6 +7835,9 @@ msgstr "유효한 공개 GPG 키를 포함하고 있어야 합니다 "
|
|
7169
7835
|
msgid "must contain valid Public GPG Key"
|
7170
7836
|
msgstr "유효한 공개 GPG 키를 포함하고 있어야 합니다 "
|
7171
7837
|
|
7838
|
+
msgid "must not be a negative value."
|
7839
|
+
msgstr ""
|
7840
|
+
|
7172
7841
|
msgid "must not contain leading or trailing white spaces."
|
7173
7842
|
msgstr "선행 또는 후행 공백을 포함할 수 없습니다 "
|
7174
7843
|
|
@@ -7265,6 +7934,9 @@ msgstr "패키지: 버전 "
|
|
7265
7934
|
msgid "package_ids is not an array"
|
7266
7935
|
msgstr "package_ids는 배열이 아닙니다 "
|
7267
7936
|
|
7937
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7938
|
+
msgstr ""
|
7939
|
+
|
7268
7940
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7269
7941
|
msgstr ""
|
7270
7942
|
|
@@ -7272,7 +7944,7 @@ msgid "pattern for container image names"
|
|
7272
7944
|
msgstr ""
|
7273
7945
|
|
7274
7946
|
msgid "perform an incremental import"
|
7275
|
-
msgstr ""
|
7947
|
+
msgstr "증분 가져오기 수행"
|
7276
7948
|
|
7277
7949
|
msgid "policies for HTTP proxy for content sync"
|
7278
7950
|
msgstr ""
|
@@ -7382,6 +8054,12 @@ msgstr "동기화를 위한 임시 덮어쓰기 피드 URL"
|
|
7382
8054
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7383
8055
|
msgstr "다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수 없습니다 "
|
7384
8056
|
|
8057
|
+
msgid "to"
|
8058
|
+
msgstr ""
|
8059
|
+
|
8060
|
+
msgid "to update configuration on all hosts, or"
|
8061
|
+
msgstr ""
|
8062
|
+
|
7385
8063
|
msgid "true if the latest version of the component's content view is desired"
|
7386
8064
|
msgstr ""
|
7387
8065
|
|
@@ -7406,9 +8084,15 @@ msgstr ""
|
|
7406
8084
|
msgid "unknown permission for %s"
|
7407
8085
|
msgstr "%s에 대해 알 수 없는 권한 "
|
7408
8086
|
|
8087
|
+
msgid "unlimited"
|
8088
|
+
msgstr ""
|
8089
|
+
|
7409
8090
|
msgid "update a filter"
|
7410
8091
|
msgstr "필터 업데이트"
|
7411
8092
|
|
8093
|
+
msgid "update configuration on the hosts manually:"
|
8094
|
+
msgstr ""
|
8095
|
+
|
7412
8096
|
msgid "updating package group..."
|
7413
8097
|
msgstr "패키지 그룹 업데이트 중..."
|
7414
8098
|
|
@@ -7421,6 +8105,9 @@ msgstr "패키지 업데이트 중..."
|
|
7421
8105
|
msgid "updating packages..."
|
7422
8106
|
msgstr "패키지 업데이트 중..."
|
7423
8107
|
|
8108
|
+
msgid "upstream Foreman server"
|
8109
|
+
msgstr ""
|
8110
|
+
|
7424
8111
|
msgid "url not defined."
|
7425
8112
|
msgstr "url이 설정되어 있지 않습니다. "
|
7426
8113
|
|
@@ -7428,7 +8115,7 @@ msgid "via customized remote execution"
|
|
7428
8115
|
msgstr ""
|
7429
8116
|
|
7430
8117
|
msgid "via remote execution"
|
7431
|
-
msgstr ""
|
8118
|
+
msgstr "원격 실행을 통해"
|
7432
8119
|
|
7433
8120
|
msgid "view content view tabs."
|
7434
8121
|
msgstr ""
|
@@ -7458,10 +8145,37 @@ msgid "whitespace-separated list of repo components to be synced from deb-archiv
|
|
7458
8145
|
msgstr ""
|
7459
8146
|
|
7460
8147
|
msgid "with"
|
7461
|
-
msgstr ""
|
8148
|
+
msgstr "대치어:"
|
7462
8149
|
|
7463
8150
|
msgid "yes"
|
7464
8151
|
msgstr "예"
|
7465
8152
|
|
7466
8153
|
msgid "{0} items selected"
|
7467
8154
|
msgstr ""
|
8155
|
+
|
8156
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8157
|
+
msgstr ""
|
8158
|
+
|
8159
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8160
|
+
msgstr ""
|
8161
|
+
|
8162
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8163
|
+
msgstr ""
|
8164
|
+
|
8165
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8166
|
+
msgstr ""
|
8167
|
+
|
8168
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8169
|
+
msgstr ""
|
8170
|
+
|
8171
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8172
|
+
msgstr ""
|
8173
|
+
|
8174
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8175
|
+
msgstr ""
|
8176
|
+
|
8177
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8178
|
+
msgstr ""
|
8179
|
+
|
8180
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8181
|
+
msgstr ""
|