katello 4.0.3 → 4.1.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/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +0 -33
- data/app/assets/stylesheets/katello/contents.scss +1 -1
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -11
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -9
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -24
- data/app/controllers/katello/api/v2/api_controller.rb +15 -3
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_exports_controller.rb +1 -14
- data/app/controllers/katello/api/v2/content_imports_controller.rb +38 -15
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +22 -1
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +6 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -59
- data/app/controllers/katello/api/v2/content_views_controller.rb +3 -58
- data/app/controllers/katello/api/v2/host_errata_controller.rb +7 -6
- data/app/controllers/katello/api/v2/host_packages_controller.rb +4 -4
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +18 -22
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +16 -16
- data/app/controllers/katello/api/v2/organizations_controller.rb +2 -1
- data/app/controllers/katello/api/v2/package_groups_controller.rb +4 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +13 -12
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +50 -4
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +7 -1
- data/app/controllers/katello/concerns/api/api_controller.rb +10 -0
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +46 -0
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +8 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +31 -22
- data/app/controllers/katello/concerns/hosts_controller_extensions.rb +0 -8
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +1 -1
- data/app/controllers/katello/concerns/registration_commands_controller_extensions.rb +34 -0
- data/app/helpers/katello/katello_urls_helper.rb +23 -0
- data/app/lib/actions/candlepin/owner/import.rb +10 -3
- data/app/lib/actions/candlepin/product/content_update.rb +1 -1
- data/app/lib/actions/foreman/environment/destroy.rb +2 -2
- data/app/lib/actions/katello/agent_action.rb +1 -6
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +0 -7
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
- data/app/lib/actions/katello/content_view/add_to_environment.rb +9 -7
- data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -10
- data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -3
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -4
- data/app/lib/actions/katello/content_view/publish.rb +21 -31
- data/app/lib/actions/katello/content_view_environment/destroy.rb +0 -5
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +22 -0
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +22 -0
- data/app/lib/actions/katello/content_view_version/destroy.rb +0 -10
- data/app/lib/actions/katello/content_view_version/export.rb +20 -22
- data/app/lib/actions/katello/content_view_version/import.rb +27 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +4 -2
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +12 -67
- data/app/lib/actions/katello/content_view_version/republish_repositories.rb +0 -4
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +11 -0
- data/app/lib/actions/katello/foreman/content_update.rb +0 -3
- data/app/lib/actions/katello/host/auto_attach_subscriptions.rb +0 -4
- data/app/lib/actions/katello/organization/manifest_import.rb +7 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +28 -7
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +2 -2
- data/app/lib/actions/katello/product/create.rb +0 -1
- data/app/lib/actions/katello/repository/check_matching_content.rb +4 -3
- data/app/lib/actions/katello/repository/destroy.rb +1 -1
- data/app/lib/actions/katello/repository/discover.rb +1 -1
- data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -4
- data/app/lib/actions/katello/repository/import_upload.rb +0 -1
- data/app/lib/actions/katello/repository/update.rb +0 -1
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +0 -5
- data/app/lib/actions/pulp/repository/create.rb +1 -7
- data/app/lib/actions/pulp/repository/distributor_publish.rb +2 -10
- data/app/lib/actions/pulp/repository/sync.rb +1 -3
- data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
- data/app/lib/actions/pulp3/content_guard/refresh.rb +10 -6
- data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +57 -0
- data/app/lib/actions/pulp3/content_view_version/create_import_history.rb +34 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +34 -51
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +2 -2
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +13 -1
- data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/sync.rb +1 -0
- data/app/lib/actions/pulp3/repository/refresh_remote.rb +17 -0
- data/app/lib/katello/agent/client_message_handler.rb +3 -11
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +117 -3
- data/app/lib/katello/errors.rb +6 -11
- data/app/lib/katello/event_daemon/monitor.rb +0 -1
- data/app/lib/katello/event_daemon/runner.rb +2 -2
- data/app/lib/katello/event_daemon/services/agent_event_receiver.rb +10 -6
- data/app/lib/katello/http_resource.rb +1 -6
- data/app/lib/katello/logging.rb +11 -6
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/repo_discovery.rb +15 -1
- data/app/lib/katello/resources/candlepin/owner.rb +3 -2
- data/app/lib/katello/resources/candlepin/pool.rb +6 -2
- data/app/lib/katello/resources/candlepin.rb +10 -0
- data/app/lib/katello/util/package.rb +1 -1
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb +0 -6
- data/app/models/katello/authorization/content_view.rb +8 -0
- data/app/models/katello/authorization/content_view_version_import_history.rb +11 -0
- data/app/models/katello/concerns/content_facet_host_extensions.rb +1 -1
- data/app/models/katello/concerns/content_view_filter_rule_common.rb +2 -2
- data/app/models/katello/concerns/host_managed_extensions.rb +1 -32
- data/app/models/katello/concerns/hostgroup_extensions.rb +2 -9
- data/app/models/katello/concerns/http_proxy_extensions.rb +2 -4
- data/app/models/katello/concerns/location_extensions.rb +2 -25
- data/app/models/katello/concerns/operatingsystem_extensions.rb +0 -2
- data/app/models/katello/concerns/organization_extensions.rb +4 -18
- data/app/models/katello/concerns/redhat_extensions.rb +10 -18
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -31
- data/app/models/katello/content_view.rb +17 -113
- data/app/models/katello/content_view_component.rb +5 -0
- data/app/models/katello/content_view_docker_filter_rule.rb +1 -0
- data/app/models/katello/content_view_package_filter_rule.rb +4 -0
- data/app/models/katello/content_view_package_group_filter.rb +1 -0
- data/app/models/katello/content_view_repository.rb +4 -5
- data/app/models/katello/content_view_version.rb +9 -33
- data/app/models/katello/content_view_version_export_history.rb +18 -4
- data/app/models/katello/content_view_version_import_history.rb +42 -0
- data/app/models/katello/erratum.rb +1 -1
- data/app/models/katello/events/delete_pool.rb +19 -0
- data/app/models/katello/glue/candlepin/environment.rb +7 -0
- data/app/models/katello/glue/candlepin/owner.rb +12 -1
- data/app/models/katello/glue/candlepin/pool.rb +42 -25
- data/app/models/katello/glue/provider.rb +3 -6
- data/app/models/katello/glue/pulp/repo.rb +19 -9
- data/app/models/katello/host/content_facet.rb +1 -0
- data/app/models/katello/host/subscription_facet.rb +3 -1
- data/app/models/katello/kt_environment.rb +0 -6
- data/app/models/katello/package_group.rb +4 -0
- data/app/models/katello/ping.rb +15 -4
- data/app/models/katello/pool.rb +9 -0
- data/app/models/katello/product.rb +0 -6
- data/app/models/katello/product_content.rb +3 -1
- data/app/models/katello/pulp_sync_status.rb +0 -10
- data/app/models/katello/repository.rb +20 -35
- data/app/models/katello/root_repository.rb +0 -5
- data/app/models/katello/subscription.rb +10 -0
- data/app/models/katello/sync_plan.rb +7 -0
- data/app/models/setting/content.rb +7 -8
- data/app/presenters/katello/content_view_version_compare_presenter.rb +2 -6
- data/app/presenters/katello/product_content_presenter.rb +3 -5
- data/app/services/cert/certs.rb +3 -7
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/event_handler.rb +22 -22
- data/app/services/katello/candlepin/message_handler.rb +24 -15
- data/app/services/katello/content_view_manager.rb +24 -0
- data/app/services/katello/event_monitor/poller_thread.rb +25 -20
- data/app/services/katello/managed_content_medium_provider.rb +4 -0
- data/app/services/katello/organization_creator.rb +120 -0
- data/app/services/katello/product_content_finder.rb +5 -1
- data/app/services/katello/pulp/pulp_content_unit.rb +6 -6
- data/app/services/katello/pulp/smart_proxy_repository.rb +2 -17
- data/app/services/katello/pulp3/api/ansible_collection.rb +14 -2
- data/app/services/katello/pulp3/api/apt.rb +1 -1
- data/app/services/katello/pulp3/api/content_guard.rb +6 -40
- data/app/services/katello/pulp3/api/core.rb +27 -2
- data/app/services/katello/pulp3/api/docker.rb +1 -1
- data/app/services/katello/pulp3/api/file.rb +5 -1
- data/app/services/katello/pulp3/api/yum.rb +9 -1
- data/app/services/katello/pulp3/content_view_version/export.rb +18 -40
- data/app/services/katello/pulp3/content_view_version/import.rb +75 -30
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +32 -0
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +53 -21
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +47 -0
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +52 -0
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +99 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +1 -1
- data/app/services/katello/pulp3/repository/ansible_collection.rb +5 -1
- data/app/services/katello/pulp3/repository/apt.rb +2 -1
- data/app/services/katello/pulp3/repository/yum.rb +0 -16
- data/app/services/katello/pulp3/repository.rb +20 -1
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +12 -5
- data/app/services/katello/pulp3/task_group.rb +10 -5
- data/app/services/katello/smart_proxy_helper.rb +1 -8
- data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +0 -1
- data/app/services/katello/ui_notifications/system_error.rb +25 -0
- data/app/views/katello/api/v2/content_view_components/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_filters/show.json.rabl +0 -1
- data/app/views/katello/api/v2/{puppet_modules → content_view_version_import_histories}/index.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_import_histories/show.json.rabl +14 -0
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +2 -2
- data/app/views/katello/api/v2/content_view_versions/show.json.rabl +0 -7
- data/app/views/katello/api/v2/content_views/base.json.rabl +20 -9
- data/app/views/katello/api/v2/environments/show.json.rabl +0 -1
- data/app/views/katello/api/v2/package_groups/index.json.rabl +4 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +0 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repository_sets/index.json.rabl +4 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +22 -0
- data/app/views/katello/api/v2/subscriptions/show.json.rabl +1 -1
- data/app/views/overrides/activation_keys/_host_media_type_select.html.erb +1 -1
- data/app/views/overrides/smart_proxies/_download_policy.erb +1 -1
- data/config/initializers/monkeys.rb +0 -1
- data/config/katello.yaml.example +0 -1
- data/config/routes/api/v2.rb +9 -21
- data/config/routes/overrides.rb +1 -2
- data/db/migrate/20140422000001_update_products_add_organization.rb +3 -2
- data/db/migrate/20160701180402_add_sortable_version_to_puppet_modules.rb +2 -0
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +1 -1
- data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +14 -20
- data/db/migrate/20210224160921_remove_disabled_products_from_sync_plans.rb +6 -0
- data/db/migrate/20210302165636_remove_katello_puppet_modules.rb +62 -0
- data/db/migrate/20210309160925_create_katello_content_view_version_import_histories.rb +13 -0
- data/db/migrate/20210318204533_add_import_type_to_import_histories.rb +8 -0
- data/db/migrate/20210319123300_add_foreign_keys_to_import_export_histories.rb +6 -0
- data/db/migrate/20210322142311_add_auth_url_token_to_root_repositories.rb +6 -0
- data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +16 -0
- data/db/migrate/20210409033915_add_created_in_katello_to_taxonomy.rb +9 -0
- data/db/seeds.d/101-locations.rb +0 -3
- data/db/seeds.d/102-organizations.rb +1 -5
- data/db/seeds.d/109-katello-notification-blueprints.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +3 -2
- data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +325 -156
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-route/angular-route.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +21 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +9 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +11 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +18 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +10 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-actions.controller.js +5 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +6 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +14 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +5 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +0 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js +9 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +2 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +3 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -56
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +2 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +21 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +71 -311
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +13 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +21 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +3 -3
- data/lib/katello/engine.rb +16 -15
- data/lib/katello/middleware/organization_created_enforcer.rb +22 -0
- data/lib/katello/permission_creator.rb +12 -28
- data/lib/katello/permissions/host_permissions.rb +3 -2
- data/lib/katello/plugin.rb +6 -19
- data/lib/katello/repository_types/ansible_collection.rb +1 -1
- data/lib/katello/repository_types/deb.rb +1 -1
- data/lib/katello/repository_types/docker.rb +1 -1
- data/lib/katello/repository_types/file.rb +1 -1
- data/lib/katello/repository_types/yum.rb +1 -1
- data/lib/katello/tasks/clean_backend_objects.rake +25 -0
- data/lib/katello/tasks/jenkins.rake +6 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -3
- data/lib/katello/tasks/reimport.rake +0 -1
- data/lib/katello/tasks/repository.rake +0 -30
- data/lib/katello/tasks/update_subscription_facet_backend_data.rake +3 -3
- data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +2 -4
- data/lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake +62 -0
- data/lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake +15 -0
- data/lib/katello/version.rb +1 -1
- data/lib/katello.rb +1 -1
- data/locale/action_names.rb +65 -63
- data/locale/bn/katello.edit.po +1357 -1606
- data/locale/bn/katello.po +465 -744
- data/locale/cs/katello.edit.po +1213 -1087
- data/locale/cs/katello.po +307 -219
- data/locale/de/katello.edit.po +1498 -1520
- data/locale/de/katello.po +589 -625
- data/locale/en/katello.edit.po +1198 -1074
- data/locale/en/katello.po +304 -213
- data/locale/es/katello.edit.po +2344 -2304
- data/locale/es/katello.po +1407 -1407
- data/locale/fr/katello.edit.po +2720 -2642
- data/locale/fr/katello.po +1703 -1750
- data/locale/gu/katello.edit.po +1546 -1797
- data/locale/gu/katello.po +654 -935
- data/locale/hi/katello.edit.po +1545 -1793
- data/locale/hi/katello.po +653 -931
- data/locale/it/katello.edit.po +1323 -1310
- data/locale/it/katello.po +407 -409
- data/locale/ja/katello.edit.po +2645 -2557
- data/locale/ja/katello.po +1646 -1664
- data/locale/katello.pot +1435 -1289
- data/locale/kn/katello.edit.po +1546 -1795
- data/locale/kn/katello.po +654 -933
- data/locale/ko/katello.edit.po +1464 -1449
- data/locale/ko/katello.po +554 -554
- data/locale/mr/katello.edit.po +1545 -1758
- data/locale/mr/katello.po +653 -896
- data/locale/or/katello.edit.po +1546 -1795
- data/locale/or/katello.po +654 -933
- data/locale/pa/katello.edit.po +1541 -1775
- data/locale/pa/katello.po +649 -913
- data/locale/pt/katello.edit.po +1289 -1255
- data/locale/pt/katello.po +398 -394
- data/locale/pt_BR/katello.edit.po +2370 -2315
- data/locale/pt_BR/katello.po +1435 -1421
- data/locale/ru/katello.edit.po +1611 -1608
- data/locale/ru/katello.po +704 -716
- data/locale/ta/katello.edit.po +1358 -1605
- data/locale/ta/katello.po +465 -742
- data/locale/te/katello.edit.po +1545 -1792
- data/locale/te/katello.po +653 -930
- data/locale/zh_CN/katello.edit.po +3052 -2930
- data/locale/zh_CN/katello.po +2055 -2039
- data/locale/zh_TW/katello.edit.po +1571 -1669
- data/locale/zh_TW/katello.po +649 -777
- data/package.json +2 -2
- data/webpack/{scenes/ContentViews/Details/Repositories/RepoAddedStatus.js → components/AddedStatusLabel.js} +5 -5
- data/webpack/components/RoutedTabs/RoutedTabs.js +91 -0
- data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +32 -0
- data/webpack/components/RoutedTabs/index.js +4 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageConstants.js +2 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageSelectors.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/ActivationKeys.test.js +18 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/Force.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/IgnoreSubmanErrors.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/LifeCycleEnvironment.test.js +11 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +58 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +27 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +99 -0
- data/webpack/components/extensions/RegistrationCommands/fields/Force.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +56 -0
- data/webpack/components/extensions/RegistrationCommands/index.js +81 -0
- data/webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js +23 -24
- data/webpack/components/pf3Table/formatters/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +3 -1
- data/webpack/components/pf3Table/formatters/entitlementsValueFormatter.js +16 -0
- data/webpack/containers/Application/overrides.scss +3 -0
- data/webpack/fills_index.js +3 -0
- data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +0 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -1
- data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +28 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +45 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +124 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +161 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +163 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/unpublishedCVComponents.fixtures.json +64 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +67 -7
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +61 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +34 -11
- data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +33 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +117 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +115 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +7 -10
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +49 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +56 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +3 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterPackageGroups.fixtures.json +69 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +103 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json +147 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json +30 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +136 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json +370 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +94 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +0 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +106 -13
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +11 -5
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +5 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +138 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +1 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +57 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +73 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +31 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +64 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +8 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +105 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +728 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +154 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/emptyCVVersion.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -1
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Table/ContentViewVersionCell.js +33 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +17 -22
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +51 -102
- data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +5 -3
- data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +30 -5
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +95 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +11 -5
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +16 -0
- data/webpack/scenes/ContentViews/components/IconWithCount.js +1 -1
- data/webpack/scenes/ContentViews/components/InactiveText.js +15 -0
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +19 -1
- data/webpack/scenes/Subscriptions/Details/SubscriptionPurposeAttributes.js +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +17 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +144 -0
- data/webpack/scenes/Tasks/helpers.js +2 -2
- data/webpack/test-utils/react-testing-lib-wrapper.js +11 -3
- data/webpack/utils/__tests__/useParamsWithHash.test.js +22 -0
- data/webpack/utils/helpers.js +2 -0
- data/webpack/utils/paramsFromHash.js +16 -0
- data/webpack/utils/useUrlParams.js +14 -0
- metadata +122 -206
- data/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb +0 -82
- data/app/controllers/katello/api/v2/puppet_modules_controller.rb +0 -19
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +0 -16
- data/app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb +0 -20
- data/app/lib/actions/candlepin/owner/create.rb +0 -16
- data/app/lib/actions/katello/content_view_puppet_environment/clear.rb +0 -11
- data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +0 -78
- data/app/lib/actions/katello/content_view_puppet_environment/clone_content_for_version.rb +0 -20
- data/app/lib/actions/katello/content_view_puppet_environment/create.rb +0 -34
- data/app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb +0 -23
- data/app/lib/actions/katello/content_view_puppet_environment/destroy.rb +0 -28
- data/app/lib/actions/katello/content_view_puppet_module/destroy.rb +0 -46
- data/app/lib/actions/katello/environment/library_create.rb +0 -35
- data/app/lib/actions/katello/organization/create.rb +0 -38
- data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +0 -36
- data/app/lib/actions/pulp/content_view_puppet_environment/index_content.rb +0 -19
- data/app/lib/actions/pulp/repository/presenters/puppet_presenter.rb +0 -54
- data/app/lib/actions/pulp3/content_migration.rb +0 -31
- data/app/lib/actions/pulp3/content_migration_presenter.rb +0 -59
- data/app/lib/actions/pulp3/content_migration_reset.rb +0 -22
- data/app/lib/katello/foreman.rb +0 -32
- data/app/lib/katello/mapping.rb +0 -31
- data/app/lib/katello/util/hostgroup_facets_helper.rb +0 -126
- data/app/lib/katello/validators/content_view_puppet_module_validator.rb +0 -32
- data/app/models/katello/concerns/environment_extensions.rb +0 -74
- data/app/models/katello/content_view_puppet_environment.rb +0 -116
- data/app/models/katello/content_view_puppet_environment_puppet_module.rb +0 -11
- data/app/models/katello/content_view_puppet_module.rb +0 -63
- data/app/models/katello/puppet_module.rb +0 -77
- data/app/models/katello/repository_puppet_module.rb +0 -7
- data/app/services/katello/pulp/puppet_module.rb +0 -21
- data/app/services/katello/pulp/repository/puppet.rb +0 -68
- data/app/services/katello/pulp3/migration.rb +0 -329
- data/app/services/katello/pulp3/migration_plan.rb +0 -178
- data/app/services/katello/pulp3/migration_switchover.rb +0 -126
- data/app/services/katello/puppet_class_importer_extensions.rb +0 -32
- data/app/views/foreman/hosts/_registration.html.erb +0 -12
- data/app/views/katello/api/v2/activation_keys/product_content.json.rabl +0 -30
- data/app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl +0 -3
- data/app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl +0 -7
- data/app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl +0 -9
- data/app/views/katello/api/v2/content_views/puppet_modules.json.rabl +0 -7
- data/app/views/katello/api/v2/host_subscriptions/content_override.json.rabl +0 -3
- data/app/views/katello/api/v2/host_subscriptions/product_content.json.rabl +0 -29
- data/app/views/katello/api/v2/puppet_modules/backend.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/base.json.rabl +0 -9
- data/app/views/katello/api/v2/puppet_modules/compare.json.rabl +0 -10
- data/app/views/katello/api/v2/puppet_modules/name.json.rabl +0 -3
- data/app/views/katello/api/v2/puppet_modules/names.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/show.json.rabl +0 -4
- data/db/migrate/20210512192745_fix_red_hat_root_repository_arch.rb +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +0 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +0 -38
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +0 -45
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +0 -61
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js +0 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +0 -74
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html +0 -57
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html +0 -64
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html +0 -54
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html +0 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +0 -6903
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +0 -7094
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +0 -7303
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +0 -6895
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +0 -6865
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +0 -6720
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +0 -7077
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +0 -6832
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +0 -6766
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +0 -6703
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html +0 -41
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html +0 -32
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html +0 -52
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html +0 -37
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +0 -35
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js +0 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js +0 -71
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html +0 -47
- data/lib/katello/repository_types/puppet.rb +0 -5
- data/lib/katello/tasks/fix_hostgroup_facets.rake +0 -8
- data/lib/katello/tasks/pulp3_content_switchover.rake +0 -32
- data/lib/katello/tasks/pulp3_migration.rake +0 -41
- data/lib/katello/tasks/pulp3_migration_abort.rake +0 -22
- data/lib/katello/tasks/pulp3_migration_reset.rake +0 -26
- data/lib/katello/tasks/pulp3_migration_stats.rake +0 -41
- data/lib/katello/tasks/pulp3_post_migration_check.rake +0 -51
- data/lib/monkeys/passenger_tee_input.rb +0 -20
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/webpack/components/TabWrapper/TabWrapper.js +0 -26
- data/webpack/components/TabWrapper/index.js +0 -3
- data/webpack/components/TabbedView/TabbedView.js +0 -38
- data/webpack/components/TabbedView/TabbedView.scss +0 -3
- data/webpack/components/TabbedView/index.js +0 -3
- data/webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js +0 -19
- data/webpack/scenes/ContentViews/expansions/VersionsExpansion.js +0 -11
data/locale/ko/katello.po
CHANGED
@@ -1,29 +1,28 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the
|
3
|
+
# This file is distributed under the same license as the katello package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
5
|
#
|
5
6
|
# Translators:
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
# eukim <eukim@redhat.com>, 2015. #zanata
|
7
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
8
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
9
|
+
#
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
|
-
"Project-Id-Version:
|
12
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"PO-Revision-Date:
|
15
|
-
"Last-Translator:
|
16
|
-
"Language-Team:
|
17
|
-
"Language: ko\n"
|
14
|
+
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
15
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2021\n"
|
16
|
+
"Language-Team: Korean (https://www.transifex.com/foreman/teams/114/ko/)\n"
|
18
17
|
"MIME-Version: 1.0\n"
|
19
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
20
19
|
"Content-Transfer-Encoding: 8bit\n"
|
20
|
+
"Language: ko\n"
|
21
21
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
22
|
-
"X-Generator: Zanata 3.6.0\n"
|
23
22
|
|
24
23
|
msgid ""
|
25
24
|
"\n"
|
26
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
25
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
27
26
|
msgstr ""
|
28
27
|
|
29
28
|
msgid " %{errata_count} Errata"
|
@@ -35,15 +34,15 @@ msgstr ""
|
|
35
34
|
msgid " %{package_count} Package(s)"
|
36
35
|
msgstr ""
|
37
36
|
|
38
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
39
|
-
msgstr ""
|
40
|
-
|
41
37
|
msgid " Content view updated."
|
42
38
|
msgstr ""
|
43
39
|
|
44
40
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
45
41
|
msgstr ""
|
46
42
|
|
43
|
+
msgid " RPMs"
|
44
|
+
msgstr ""
|
45
|
+
|
47
46
|
msgid " environment cannot be set to an environment already on its path"
|
48
47
|
msgstr "환경은 이미 경로에 있는 환경에 설정할 수 없음 "
|
49
48
|
|
@@ -51,7 +50,7 @@ msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated po
|
|
51
50
|
msgstr ""
|
52
51
|
|
53
52
|
msgid "%s Available"
|
54
|
-
msgstr ""
|
53
|
+
msgstr "%s 사용 가능"
|
55
54
|
|
56
55
|
msgid "%s Errata"
|
57
56
|
msgstr "%s 에라타 "
|
@@ -62,7 +61,7 @@ msgstr[0] ""
|
|
62
61
|
msgstr[1] ""
|
63
62
|
|
64
63
|
msgid "%s Used"
|
65
|
-
msgstr ""
|
64
|
+
msgstr "%s 사용됨"
|
66
65
|
|
67
66
|
msgid "%s ago"
|
68
67
|
msgstr "%s 전 "
|
@@ -263,7 +262,7 @@ msgid "%{unused_substitutions} cannot be specified for %{content_name} as that i
|
|
263
262
|
msgstr ""
|
264
263
|
|
265
264
|
msgid "%{used} of %{total}"
|
266
|
-
msgstr ""
|
265
|
+
msgstr "%{used}(총: %{total})"
|
267
266
|
|
268
267
|
msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
|
269
268
|
msgstr ""
|
@@ -277,7 +276,6 @@ msgstr ""
|
|
277
276
|
msgid ", must be unique to major and version id version."
|
278
277
|
msgstr ""
|
279
278
|
|
280
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
281
279
|
msgid ": '%s' is a built-in environment"
|
282
280
|
msgstr ": '%s'는 내장된 환경입니다 "
|
283
281
|
|
@@ -293,6 +291,9 @@ msgstr ""
|
|
293
291
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
294
292
|
msgstr ""
|
295
293
|
|
294
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
295
|
+
msgstr ""
|
296
|
+
|
296
297
|
msgid "A backend service [ %s ] is unreachable"
|
297
298
|
msgstr "백엔드 서비스 [ %s ]를 사용할 수 없음 "
|
298
299
|
|
@@ -312,7 +313,7 @@ msgid "A list of subscriptions expiring soon"
|
|
312
313
|
msgstr ""
|
313
314
|
|
314
315
|
msgid "A post-promotion summary of hosts with installable errata"
|
315
|
-
msgstr ""
|
316
|
+
msgstr "설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "
|
316
317
|
|
317
318
|
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
318
319
|
msgstr ""
|
@@ -329,6 +330,9 @@ msgstr "호스트에 사용 가능하고 적용 가능한 에라타 요약 "
|
|
329
330
|
msgid "A summary of new errata after a repository is synchronized"
|
330
331
|
msgstr "리포지터리를 동기화한 후 새 에라타 요약 "
|
331
332
|
|
333
|
+
msgid "About page"
|
334
|
+
msgstr ""
|
335
|
+
|
332
336
|
msgid "Abstract async task"
|
333
337
|
msgstr "비동기 작업 개요"
|
334
338
|
|
@@ -336,19 +340,22 @@ msgid "Accept action timeout"
|
|
336
340
|
msgstr ""
|
337
341
|
|
338
342
|
msgid "Account Number"
|
339
|
-
msgstr ""
|
343
|
+
msgstr "계정 번호 "
|
344
|
+
|
345
|
+
msgid "Action"
|
346
|
+
msgstr "동작 "
|
340
347
|
|
341
348
|
msgid "Action not allowed for the default smart proxy."
|
342
349
|
msgstr ""
|
343
350
|
|
344
|
-
msgid "Action unauthorized to be performed
|
351
|
+
msgid "Action unauthorized to be performed in this organization."
|
345
352
|
msgstr ""
|
346
353
|
|
347
|
-
msgid "Action
|
354
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
348
355
|
msgstr ""
|
349
356
|
|
350
|
-
msgid "
|
351
|
-
msgstr ""
|
357
|
+
msgid "Action with sub plans"
|
358
|
+
msgstr "하위 계획이 있는 작업"
|
352
359
|
|
353
360
|
msgid "Activation Keys"
|
354
361
|
msgstr "활성키 "
|
@@ -356,26 +363,32 @@ msgstr "활성키 "
|
|
356
363
|
msgid "Activation key ID"
|
357
364
|
msgstr "활성키 ID"
|
358
365
|
|
359
|
-
msgid "Activation key
|
366
|
+
msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
367
|
+
msgstr ""
|
368
|
+
|
369
|
+
msgid "Activation key(s) for Subscription Manager."
|
370
|
+
msgstr ""
|
371
|
+
|
372
|
+
msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
|
360
373
|
msgstr ""
|
361
374
|
|
362
375
|
msgid "Activation keys and subscriptions can be managed"
|
363
376
|
msgstr "활성키 및 서브스크립션을 관리할 수 있습니다 "
|
364
377
|
|
365
|
-
msgid "
|
378
|
+
msgid "Activation keys: "
|
366
379
|
msgstr ""
|
367
380
|
|
381
|
+
msgid "Active Subscriptions"
|
382
|
+
msgstr "활성 서브스크립션"
|
383
|
+
|
368
384
|
msgid "Active only"
|
369
385
|
msgstr "활성화된 경우에만 "
|
370
386
|
|
371
387
|
msgid "Add Subscriptions"
|
372
388
|
msgstr ""
|
373
389
|
|
374
|
-
msgid "Add a puppet module to the content view"
|
375
|
-
msgstr "컨텐츠 뷰에 puppet 모듈을 추가합니다 "
|
376
|
-
|
377
390
|
msgid "Add a subscription to a host"
|
378
|
-
msgstr ""
|
391
|
+
msgstr "호스트에 서브스크립션 추가"
|
379
392
|
|
380
393
|
msgid "Add components to the content view"
|
381
394
|
msgstr ""
|
@@ -387,7 +400,7 @@ msgid "Add filters using the 'Add filter' button above."
|
|
387
400
|
msgstr ""
|
388
401
|
|
389
402
|
msgid "Add host to the host collection"
|
390
|
-
msgstr ""
|
403
|
+
msgstr "호스트 컬렉션에 호스트 추가"
|
391
404
|
|
392
405
|
msgid "Add lifecycle environments to the smart proxy"
|
393
406
|
msgstr ""
|
@@ -407,13 +420,22 @@ msgstr ""
|
|
407
420
|
msgid "Add subscriptions to one or more hosts"
|
408
421
|
msgstr ""
|
409
422
|
|
423
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
424
|
+
msgstr ""
|
425
|
+
|
426
|
+
msgid "Add to this filter using the 'Add package group' button."
|
427
|
+
msgstr ""
|
428
|
+
|
429
|
+
msgid "Added"
|
430
|
+
msgstr ""
|
431
|
+
|
410
432
|
msgid "Added Content:"
|
411
433
|
msgstr "추가된 컨텐츠: "
|
412
434
|
|
413
435
|
msgid "Adding content units"
|
414
436
|
msgstr ""
|
415
437
|
|
416
|
-
msgid "
|
438
|
+
msgid "Additional content"
|
417
439
|
msgstr ""
|
418
440
|
|
419
441
|
msgid "Addons"
|
@@ -432,13 +454,13 @@ msgid "All available architectures for this repo are enabled."
|
|
432
454
|
msgstr ""
|
433
455
|
|
434
456
|
msgid "All errata applied"
|
435
|
-
msgstr ""
|
457
|
+
msgstr "적용된 모든 에라타"
|
436
458
|
|
437
459
|
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."
|
438
460
|
msgstr ""
|
439
461
|
|
440
462
|
msgid "Alter a hosts host collections"
|
441
|
-
msgstr ""
|
463
|
+
msgstr "호스트 컬렉션 변경"
|
442
464
|
|
443
465
|
msgid "Always Use Latest (currently %{version})"
|
444
466
|
msgstr ""
|
@@ -456,6 +478,8 @@ msgid ""
|
|
456
478
|
"An error occurred during the sync \n"
|
457
479
|
"%{error_message}"
|
458
480
|
msgstr ""
|
481
|
+
"동기화하는 도중 오류가 발생했습니다. \n"
|
482
|
+
"%{error_message}"
|
459
483
|
|
460
484
|
msgid "Another component already includes content view with ID %s"
|
461
485
|
msgstr ""
|
@@ -473,13 +497,16 @@ msgid "Applicability Batch Size"
|
|
473
497
|
msgstr ""
|
474
498
|
|
475
499
|
msgid "Arch"
|
500
|
+
msgstr "아키텍처 "
|
501
|
+
|
502
|
+
msgid "Architecture"
|
476
503
|
msgstr ""
|
477
504
|
|
478
505
|
msgid "Architecture of content in the repository"
|
479
506
|
msgstr ""
|
480
507
|
|
481
508
|
msgid "Architecture(s)"
|
482
|
-
msgstr ""
|
509
|
+
msgstr "아키텍처 "
|
483
510
|
|
484
511
|
msgid "Are you sure you want to delete the manifest?"
|
485
512
|
msgstr ""
|
@@ -503,7 +530,7 @@ msgid "Array of content view component IDs to remove. Identifier of the componen
|
|
503
530
|
msgstr ""
|
504
531
|
|
505
532
|
msgid "Array of host ids"
|
506
|
-
msgstr ""
|
533
|
+
msgstr "호스트 ID의 배열"
|
507
534
|
|
508
535
|
msgid "Array of local pool IDs. Only pools originating upstream are accepted."
|
509
536
|
msgstr ""
|
@@ -515,7 +542,7 @@ msgid "Array of subscriptions to add"
|
|
515
542
|
msgstr "추가할 서브스크립션 어레이 "
|
516
543
|
|
517
544
|
msgid "Array of subscriptions to remove"
|
518
|
-
msgstr ""
|
545
|
+
msgstr "삭제할 서브스크립션 배열"
|
519
546
|
|
520
547
|
msgid "Array of uploads to import"
|
521
548
|
msgstr ""
|
@@ -529,7 +556,6 @@ msgstr ""
|
|
529
556
|
msgid "Assign system purpose attributes on one or more hosts"
|
530
557
|
msgstr ""
|
531
558
|
|
532
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
533
559
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
534
560
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
535
561
|
msgstr[0] "%{taxonomy_single}이 없는 %{count} 호스트를 %{taxonomy_name}에 할당합니다 "
|
@@ -544,7 +570,7 @@ msgid "Associated location IDs"
|
|
544
570
|
msgstr ""
|
545
571
|
|
546
572
|
msgid "Associations"
|
547
|
-
msgstr ""
|
573
|
+
msgstr "연결 "
|
548
574
|
|
549
575
|
msgid "At least one Content View Version must be specified"
|
550
576
|
msgstr "최소 하나의 컨텐츠 뷰 버전을 지정해야 합니다 "
|
@@ -558,21 +584,20 @@ msgstr "최소 하나의 활성키가 라이프 사이클 환경에 필요하며
|
|
558
584
|
msgid "At least one organization must exist."
|
559
585
|
msgstr "최소 하나의 조직이 존재해야 합니다. "
|
560
586
|
|
561
|
-
# translation auto-copied from project rhsm-web, version 0.0, document management, author eukim
|
562
587
|
msgid "Attach a subscription"
|
563
588
|
msgstr "서브스크립션 첨부 "
|
564
589
|
|
565
590
|
msgid "Attach subscriptions"
|
566
|
-
msgstr ""
|
591
|
+
msgstr "서브스크립션 연결"
|
567
592
|
|
568
593
|
msgid "Attach subscriptions to %s"
|
569
|
-
msgstr ""
|
594
|
+
msgstr "%s에 서브스크립션 연결"
|
570
595
|
|
571
596
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
572
597
|
msgstr ""
|
573
598
|
|
574
599
|
msgid "Author"
|
575
|
-
msgstr ""
|
600
|
+
msgstr "작성자"
|
576
601
|
|
577
602
|
msgid "Auto Publish"
|
578
603
|
msgstr ""
|
@@ -616,7 +641,6 @@ msgstr "활성화할 Basearch "
|
|
616
641
|
msgid "Batch size to sync repositories in."
|
617
642
|
msgstr ""
|
618
643
|
|
619
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
620
644
|
msgid "Beta"
|
621
645
|
msgstr "베타 "
|
622
646
|
|
@@ -632,11 +656,9 @@ msgstr ""
|
|
632
656
|
msgid "Branches updated"
|
633
657
|
msgstr ""
|
634
658
|
|
635
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
636
659
|
msgid "Bug Fix"
|
637
660
|
msgstr "버그 수정"
|
638
661
|
|
639
|
-
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
640
662
|
msgid "Bugfix"
|
641
663
|
msgstr "버그 수정 "
|
642
664
|
|
@@ -679,11 +701,9 @@ msgstr "기본값 컨테츠 뷰에 있는 컨텐츠만 삭제할 수 있습니
|
|
679
701
|
msgid "Can only upload to Yum Repositories."
|
680
702
|
msgstr ""
|
681
703
|
|
682
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
683
704
|
msgid "Can't update the '%s' environment"
|
684
705
|
msgstr "'%s' 환경을 업데이트할 수 없음 "
|
685
706
|
|
686
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
687
707
|
msgid "Cancel"
|
688
708
|
msgstr "취소 "
|
689
709
|
|
@@ -693,10 +713,8 @@ msgstr "리포지터리 검색 취소 "
|
|
693
713
|
msgid "Cancel running smart proxy synchronization"
|
694
714
|
msgstr ""
|
695
715
|
|
696
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
697
|
-
#, fuzzy
|
698
716
|
msgid "Canceled"
|
699
|
-
msgstr "
|
717
|
+
msgstr "취소함"
|
700
718
|
|
701
719
|
msgid "Cancelled"
|
702
720
|
msgstr ""
|
@@ -752,7 +770,6 @@ msgstr "연결된 %{dependent}로 인해 '%{view}'를 삭제할 수 없습니다
|
|
752
770
|
msgid "Cannot delete Red Hat product: %{product}"
|
753
771
|
msgstr ""
|
754
772
|
|
755
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
756
773
|
msgid "Cannot delete from %s, view does not exist there."
|
757
774
|
msgstr "%s에서 삭제할 수 없습니다, 보기는 여기에 존재하지 않습니다."
|
758
775
|
|
@@ -765,13 +782,10 @@ msgstr "할당된 제품을 갖는 공급자를 삭제할 수 없습니다 "
|
|
765
782
|
msgid "Cannot delete redhat product content"
|
766
783
|
msgstr ""
|
767
784
|
|
768
|
-
msgid "Cannot delete the default Location for Puppet content. If you no longer want this Location, change the default Location for Puppet content under Administer > Settings, tab Content."
|
769
|
-
msgstr ""
|
770
|
-
|
771
785
|
msgid "Cannot delete the default Location for subscribed hosts. If you no longer want this Location, change the default Location for subscribed hosts under Administer > Settings, tab Content."
|
772
786
|
msgstr ""
|
773
787
|
|
774
|
-
msgid "Cannot delete the last Location.
|
788
|
+
msgid "Cannot delete the last Location."
|
775
789
|
msgstr ""
|
776
790
|
|
777
791
|
msgid "Cannot delete version while it is in environment %s"
|
@@ -781,7 +795,7 @@ msgid "Cannot delete version while it is in environments: %s"
|
|
781
795
|
msgstr "환경에 있는 버전을 삭제할 수 없습니다: %s"
|
782
796
|
|
783
797
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
784
|
-
msgstr ""
|
798
|
+
msgstr "복합 컨텐츠 뷰에 사용 중인 동안에는 버전을 삭제할 수 없습니다: %s"
|
785
799
|
|
786
800
|
msgid "Cannot delete view while it exists in environments"
|
787
801
|
msgstr "뷰가 환경에서 있어 삭제할 수 없습니다 "
|
@@ -810,7 +824,6 @@ msgstr ""
|
|
810
824
|
msgid "Cannot publish default content view"
|
811
825
|
msgstr "기본 컨텐츠 뷰를 공개할 수 없습니다 "
|
812
826
|
|
813
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
814
827
|
msgid "Cannot register a system to the '%s' environment"
|
815
828
|
msgstr "'%s' 환경에 시스템을 등록할 수 없음 "
|
816
829
|
|
@@ -838,15 +851,12 @@ msgstr "비-복합적 뷰의 구성 요소를 지정할 수 없습니다"
|
|
838
851
|
msgid "Cannot specify content for composite views"
|
839
852
|
msgstr "복합적 뷰의 컨텐츠를 지정할 수 없습니다 "
|
840
853
|
|
841
|
-
msgid "Cannot sync file:// repositories with On Demand
|
854
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
842
855
|
msgstr ""
|
843
856
|
|
844
857
|
msgid "Cannot upload Container Image content."
|
845
858
|
msgstr ""
|
846
859
|
|
847
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
848
|
-
msgstr ""
|
849
|
-
|
850
860
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
851
861
|
msgstr ""
|
852
862
|
|
@@ -860,7 +870,7 @@ msgid "Check services before actions"
|
|
860
870
|
msgstr ""
|
861
871
|
|
862
872
|
msgid "Checksum"
|
863
|
-
msgstr ""
|
873
|
+
msgstr "체크섬 "
|
864
874
|
|
865
875
|
msgid "Checksum of file to upload"
|
866
876
|
msgstr ""
|
@@ -871,17 +881,18 @@ msgstr ""
|
|
871
881
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
872
882
|
msgstr ""
|
873
883
|
|
884
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
885
|
+
msgstr ""
|
886
|
+
|
874
887
|
msgid "Click here to go to the tasks page for the task."
|
875
888
|
msgstr ""
|
876
889
|
|
877
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Junwan Park
|
878
890
|
msgid "Clone"
|
879
891
|
msgstr "복제(Clone)"
|
880
892
|
|
881
893
|
msgid "Close"
|
882
|
-
msgstr ""
|
894
|
+
msgstr "종료 "
|
883
895
|
|
884
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
885
896
|
msgid "Collapse All"
|
886
897
|
msgstr "모두 축소"
|
887
898
|
|
@@ -894,7 +905,6 @@ msgstr ""
|
|
894
905
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
895
906
|
msgstr ""
|
896
907
|
|
897
|
-
# translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
|
898
908
|
msgid "Component"
|
899
909
|
msgstr "구성 요소 "
|
900
910
|
|
@@ -911,7 +921,7 @@ msgid "Composite content view"
|
|
911
921
|
msgstr "복합적인 컨텐츠 뷰 "
|
912
922
|
|
913
923
|
msgid "Compute resource IDs"
|
914
|
-
msgstr ""
|
924
|
+
msgstr "컴퓨터 리소스 ID "
|
915
925
|
|
916
926
|
msgid "Confirm Deletion"
|
917
927
|
msgstr ""
|
@@ -923,7 +933,7 @@ msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to so
|
|
923
933
|
msgstr ""
|
924
934
|
|
925
935
|
msgid "Consumed"
|
926
|
-
msgstr ""
|
936
|
+
msgstr "사용됨 "
|
927
937
|
|
928
938
|
msgid "Container Image Manifest"
|
929
939
|
msgstr ""
|
@@ -946,7 +956,6 @@ msgstr ""
|
|
946
956
|
msgid "Container image tag"
|
947
957
|
msgstr ""
|
948
958
|
|
949
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
|
950
959
|
msgid "Content"
|
951
960
|
msgstr "컨텐츠"
|
952
961
|
|
@@ -960,7 +969,7 @@ msgid "Content Credentials"
|
|
960
969
|
msgstr ""
|
961
970
|
|
962
971
|
msgid "Content Download URL"
|
963
|
-
msgstr ""
|
972
|
+
msgstr "컨텐츠 다운로드 URL"
|
964
973
|
|
965
974
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
966
975
|
msgstr ""
|
@@ -968,28 +977,18 @@ msgstr ""
|
|
968
977
|
msgid "Content Hosts"
|
969
978
|
msgstr "컨텐츠 호스트 "
|
970
979
|
|
971
|
-
msgid "Content Migration"
|
972
|
-
msgstr ""
|
973
|
-
|
974
|
-
msgid "Content Migration Reset"
|
975
|
-
msgstr ""
|
976
|
-
|
977
980
|
msgid "Content Source"
|
978
981
|
msgstr "컨텐츠 소스 "
|
979
982
|
|
980
983
|
msgid "Content Sync"
|
981
|
-
msgstr ""
|
984
|
+
msgstr "컨텐츠 동기화"
|
982
985
|
|
983
986
|
msgid "Content Types"
|
984
987
|
msgstr ""
|
985
988
|
|
986
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
987
989
|
msgid "Content View"
|
988
990
|
msgstr "컨텐츠 보기 "
|
989
991
|
|
990
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
991
|
-
msgstr ""
|
992
|
-
|
993
992
|
msgid "Content View %{view}: Versions: %{versions}"
|
994
993
|
msgstr ""
|
995
994
|
|
@@ -1002,10 +1001,8 @@ msgstr ""
|
|
1002
1001
|
msgid "Content View Details"
|
1003
1002
|
msgstr ""
|
1004
1003
|
|
1005
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
1006
|
-
#, fuzzy
|
1007
1004
|
msgid "Content View Filter id"
|
1008
|
-
msgstr "컨텐츠 보기 개요
|
1005
|
+
msgstr "컨텐츠 보기 개요"
|
1009
1006
|
|
1010
1007
|
msgid "Content View Filter identifier"
|
1011
1008
|
msgstr ""
|
@@ -1029,12 +1026,11 @@ msgid "Content View Version specified in the metadata - '%{name}' already exists
|
|
1029
1026
|
msgstr ""
|
1030
1027
|
|
1031
1028
|
msgid "Content View and Environment not set for registration."
|
1032
|
-
msgstr ""
|
1029
|
+
msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
|
1033
1030
|
|
1034
1031
|
msgid "Content View id"
|
1035
1032
|
msgstr ""
|
1036
1033
|
|
1037
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
1038
1034
|
msgid "Content Views"
|
1039
1035
|
msgstr "컨텐츠 보기 "
|
1040
1036
|
|
@@ -1044,6 +1040,9 @@ msgstr "업로드할 컨텐츠 파일입니다. 단일 파일 또는 파일 어
|
|
1044
1040
|
msgid "Content host must be unregistered before performing this action."
|
1045
1041
|
msgstr ""
|
1046
1042
|
|
1043
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1044
|
+
msgstr ""
|
1045
|
+
|
1047
1046
|
msgid "Content source ID"
|
1048
1047
|
msgstr ""
|
1049
1048
|
|
@@ -1059,7 +1058,6 @@ msgstr ""
|
|
1059
1058
|
msgid "Content view ${name} created"
|
1060
1059
|
msgstr ""
|
1061
1060
|
|
1062
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
1063
1061
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1064
1062
|
msgstr "컨텐츠 보기 '%{view}'가 환경 '%{env}'에 있지 않습니다 "
|
1065
1063
|
|
@@ -1078,6 +1076,9 @@ msgstr "컨텐츠 뷰 ID "
|
|
1078
1076
|
msgid "Content view label"
|
1079
1077
|
msgstr "컨텐츠 뷰 레이블 "
|
1080
1078
|
|
1079
|
+
msgid "Content view not provided in the metadata"
|
1080
|
+
msgstr ""
|
1081
|
+
|
1081
1082
|
msgid "Content view numeric identifier"
|
1082
1083
|
msgstr "숫자로된 컨텐츠 뷰 ID "
|
1083
1084
|
|
@@ -1087,6 +1088,9 @@ msgstr ""
|
|
1087
1088
|
msgid "Content view version identifier"
|
1088
1089
|
msgstr "컨텐츠 뷰 버전 ID "
|
1089
1090
|
|
1091
|
+
msgid "Content view version import history identifier"
|
1092
|
+
msgstr ""
|
1093
|
+
|
1090
1094
|
msgid "Content_Host_Status"
|
1091
1095
|
msgstr ""
|
1092
1096
|
|
@@ -1097,10 +1101,10 @@ msgid "Context"
|
|
1097
1101
|
msgstr ""
|
1098
1102
|
|
1099
1103
|
msgid "Contract"
|
1100
|
-
msgstr ""
|
1104
|
+
msgstr "계약 "
|
1101
1105
|
|
1102
1106
|
msgid "Contract Number"
|
1103
|
-
msgstr ""
|
1107
|
+
msgstr "계약 번호 "
|
1104
1108
|
|
1105
1109
|
msgid "Copy an activation key"
|
1106
1110
|
msgstr "활성키 복사 "
|
@@ -1132,9 +1136,6 @@ msgstr "다음의 ID를 갖는 환경을 찾을 수 없습니다: %s"
|
|
1132
1136
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1133
1137
|
msgstr "id '%{id}'인 라이프 사이클 환경을 찾을 수 없습니다."
|
1134
1138
|
|
1135
|
-
msgid "Could not find Repository for module %s."
|
1136
|
-
msgstr "모듈 %s의 리포지터리를 찾을 수 없습니다. "
|
1137
|
-
|
1138
1139
|
msgid "Could not find a host with id %s"
|
1139
1140
|
msgstr ""
|
1140
1141
|
|
@@ -1150,9 +1151,6 @@ msgstr ""
|
|
1150
1151
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1151
1152
|
msgstr ""
|
1152
1153
|
|
1153
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1154
|
-
msgstr "puppet 모듈을 압축 해제할 수 없습니다. puppet 모듈이 올바르게 압축되어 있는지 확인하십시오. "
|
1155
|
-
|
1156
1154
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1157
1155
|
msgstr ""
|
1158
1156
|
|
@@ -1165,9 +1163,6 @@ msgstr " id=%s인 컨텐츠 뷰 필터를 찾을 수 없습니다 "
|
|
1165
1163
|
msgid "Couldn't find Organization '%s'."
|
1166
1164
|
msgstr "조직 '%s'을 찾을 수 없습니다."
|
1167
1165
|
|
1168
|
-
msgid "Couldn't find Puppet Module with id '%s'"
|
1169
|
-
msgstr "id '%s'의 Puppet 모듈을 찾을 수 없습니다 "
|
1170
|
-
|
1171
1166
|
msgid "Couldn't find activation key '%s'"
|
1172
1167
|
msgstr "활성키 '%s'를 찾을 수 없음 "
|
1173
1168
|
|
@@ -1186,7 +1181,6 @@ msgstr "컨텐츠 호스트 컨텐츠 뷰 ID '%s'를 찾을 수 없습니다 "
|
|
1186
1181
|
msgid "Couldn't find content host environment '%s'"
|
1187
1182
|
msgstr "컨텐츠 호스트 환경 '%s'을 찾을 수 없습니다 "
|
1188
1183
|
|
1189
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
1190
1184
|
msgid "Couldn't find content view '%s'"
|
1191
1185
|
msgstr "컨텐츠 보기 '%s'를 찾을 수 없음 "
|
1192
1186
|
|
@@ -1206,7 +1200,7 @@ msgid "Couldn't find host collection '%s'"
|
|
1206
1200
|
msgstr "호스트 컬렉션 '%s'을 찾을 수 없습니다 "
|
1207
1201
|
|
1208
1202
|
msgid "Couldn't find host with host id '%s'"
|
1209
|
-
msgstr ""
|
1203
|
+
msgstr "호스트 ID가 '%s'인 호스트를 찾을 수 없습니다."
|
1210
1204
|
|
1211
1205
|
msgid "Couldn't find organization '%s'"
|
1212
1206
|
msgstr "조직 '%s'을 찾을 수 없음 "
|
@@ -1229,10 +1223,15 @@ msgstr "동기화 제목을 찾을 수 없음 "
|
|
1229
1223
|
msgid "Count"
|
1230
1224
|
msgstr ""
|
1231
1225
|
|
1232
|
-
# translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author eukim
|
1233
1226
|
msgid "Create"
|
1234
1227
|
msgstr "생성 "
|
1235
1228
|
|
1229
|
+
msgid "Create Export History"
|
1230
|
+
msgstr ""
|
1231
|
+
|
1232
|
+
msgid "Create Import History"
|
1233
|
+
msgstr ""
|
1234
|
+
|
1236
1235
|
msgid "Create Package Group"
|
1237
1236
|
msgstr ""
|
1238
1237
|
|
@@ -1293,9 +1292,6 @@ msgstr ""
|
|
1293
1292
|
msgid "Current organization not set."
|
1294
1293
|
msgstr ""
|
1295
1294
|
|
1296
|
-
msgid "Custom"
|
1297
|
-
msgstr ""
|
1298
|
-
|
1299
1295
|
msgid "Custom Content Repositories"
|
1300
1296
|
msgstr "사용자 정의 컨텐츠 리포지터리 "
|
1301
1297
|
|
@@ -1306,7 +1302,10 @@ msgid "Custom repositories cannot be disabled."
|
|
1306
1302
|
msgstr "사용자 정의 리포지터리를 비활성화할 수 없습니다. "
|
1307
1303
|
|
1308
1304
|
msgid "Database connection"
|
1309
|
-
msgstr ""
|
1305
|
+
msgstr "데이터베이스 연결"
|
1306
|
+
|
1307
|
+
msgid "Date"
|
1308
|
+
msgstr "날짜 "
|
1310
1309
|
|
1311
1310
|
msgid "Date format is incorrect."
|
1312
1311
|
msgstr "날짜 형식이 잘못되었습니다. "
|
@@ -1323,7 +1322,6 @@ msgstr ""
|
|
1323
1322
|
msgid "Deb Packages"
|
1324
1323
|
msgstr ""
|
1325
1324
|
|
1326
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
1327
1325
|
msgid "Debug Certificate"
|
1328
1326
|
msgstr "디버그 인증서 "
|
1329
1327
|
|
@@ -1339,15 +1337,9 @@ msgstr ""
|
|
1339
1337
|
msgid "Default HTTP proxy"
|
1340
1338
|
msgstr ""
|
1341
1339
|
|
1342
|
-
msgid "Default Location Puppet content"
|
1343
|
-
msgstr ""
|
1344
|
-
|
1345
1340
|
msgid "Default Location subscribed hosts"
|
1346
1341
|
msgstr ""
|
1347
1342
|
|
1348
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1349
|
-
msgstr ""
|
1350
|
-
|
1351
1343
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1352
1344
|
msgstr ""
|
1353
1345
|
|
@@ -1432,11 +1424,9 @@ msgstr ""
|
|
1432
1424
|
msgid "Default user data for new Operating Systems created from synced content"
|
1433
1425
|
msgstr ""
|
1434
1426
|
|
1435
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
1436
1427
|
msgid "Delete"
|
1437
1428
|
msgstr "삭제 "
|
1438
1429
|
|
1439
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
1440
1430
|
msgid "Delete Activation Key"
|
1441
1431
|
msgstr "활성키 삭제 "
|
1442
1432
|
|
@@ -1446,7 +1436,6 @@ msgstr ""
|
|
1446
1436
|
msgid "Delete Lifecycle Environment"
|
1447
1437
|
msgstr "라이프사이클 환경 삭제 "
|
1448
1438
|
|
1449
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
1450
1439
|
msgid "Delete Manifest"
|
1451
1440
|
msgstr "매니페스트 삭제 "
|
1452
1441
|
|
@@ -1493,7 +1482,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1493
1482
|
msgstr ""
|
1494
1483
|
|
1495
1484
|
msgid "Description"
|
1496
|
-
msgstr ""
|
1485
|
+
msgstr "설명 "
|
1497
1486
|
|
1498
1487
|
msgid "Description for the content view"
|
1499
1488
|
msgstr "컨텐츠 뷰 설명 "
|
@@ -1513,7 +1502,6 @@ msgstr ""
|
|
1513
1502
|
msgid "Destination Server name"
|
1514
1503
|
msgstr ""
|
1515
1504
|
|
1516
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1517
1505
|
msgid "Destroy"
|
1518
1506
|
msgstr "삭제 "
|
1519
1507
|
|
@@ -1565,7 +1553,6 @@ msgstr ""
|
|
1565
1553
|
msgid "Directory containing the exported Content View Version"
|
1566
1554
|
msgstr ""
|
1567
1555
|
|
1568
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
|
1569
1556
|
msgid "Disable"
|
1570
1557
|
msgstr "비활성화 "
|
1571
1558
|
|
@@ -1588,7 +1575,7 @@ msgid "Disconnected mode"
|
|
1588
1575
|
msgstr ""
|
1589
1576
|
|
1590
1577
|
msgid "Discover"
|
1591
|
-
msgstr ""
|
1578
|
+
msgstr "검색"
|
1592
1579
|
|
1593
1580
|
msgid "Discover Repositories"
|
1594
1581
|
msgstr "리포지터리 검색 "
|
@@ -1603,7 +1590,7 @@ msgid "Do not wait for the update action to finish. Default: true"
|
|
1603
1590
|
msgstr ""
|
1604
1591
|
|
1605
1592
|
msgid "Domain IDs"
|
1606
|
-
msgstr ""
|
1593
|
+
msgstr "도메인 ID"
|
1607
1594
|
|
1608
1595
|
msgid "Download Policy of the capsule, must be one of %s"
|
1609
1596
|
msgstr ""
|
@@ -1614,14 +1601,12 @@ msgstr "디버그 인증서 다운로드 "
|
|
1614
1601
|
msgid "Duplicate branches specified - %{branches}"
|
1615
1602
|
msgstr ""
|
1616
1603
|
|
1617
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
|
1618
1604
|
msgid "Duration"
|
1619
1605
|
msgstr "기간 "
|
1620
1606
|
|
1621
1607
|
msgid "ERRATA ADVISORY"
|
1622
1608
|
msgstr ""
|
1623
1609
|
|
1624
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1625
1610
|
msgid "Edit"
|
1626
1611
|
msgstr "편집 "
|
1627
1612
|
|
@@ -1638,7 +1623,7 @@ msgid "Either organization ID or environment ID needs to be specified"
|
|
1638
1623
|
msgstr "조직 ID 또는 환경 ID를 지정해야 함 "
|
1639
1624
|
|
1640
1625
|
msgid "Either packages or groups must be provided"
|
1641
|
-
msgstr ""
|
1626
|
+
msgstr "패키지 또는 그룹을 지정해야 합니다."
|
1642
1627
|
|
1643
1628
|
msgid "Either set the content view with the latest flag or set the content view version"
|
1644
1629
|
msgstr ""
|
@@ -1646,7 +1631,6 @@ msgstr ""
|
|
1646
1631
|
msgid "Either set the latest content view or the content view version. Cannot set both"
|
1647
1632
|
msgstr ""
|
1648
1633
|
|
1649
|
-
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
|
1650
1634
|
msgid "Enable"
|
1651
1635
|
msgstr "활성화 "
|
1652
1636
|
|
@@ -1663,21 +1647,20 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1663
1647
|
msgstr ""
|
1664
1648
|
|
1665
1649
|
msgid "Enabled"
|
1666
|
-
msgstr ""
|
1650
|
+
msgstr "활성화됨 "
|
1667
1651
|
|
1668
1652
|
msgid "Enabled Repositories"
|
1669
|
-
msgstr ""
|
1653
|
+
msgstr "활성화된 리포지터리 "
|
1670
1654
|
|
1671
1655
|
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1672
1656
|
msgstr ""
|
1673
1657
|
|
1674
1658
|
msgid "End Date"
|
1675
|
-
msgstr ""
|
1659
|
+
msgstr "종료 날짜 "
|
1676
1660
|
|
1677
1661
|
msgid "Ends"
|
1678
|
-
msgstr ""
|
1662
|
+
msgstr "종료"
|
1679
1663
|
|
1680
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1681
1664
|
msgid "Enhancement"
|
1682
1665
|
msgstr "기능 강화"
|
1683
1666
|
|
@@ -1688,7 +1671,7 @@ msgid "Environment"
|
|
1688
1671
|
msgstr "환경 "
|
1689
1672
|
|
1690
1673
|
msgid "Environment IDs"
|
1691
|
-
msgstr ""
|
1674
|
+
msgstr "환경 ID"
|
1692
1675
|
|
1693
1676
|
msgid "Environment cannot be in its own promotion path"
|
1694
1677
|
msgstr "환경은 자체 승격 경로에 존재할 수 없음 "
|
@@ -1697,12 +1680,11 @@ msgid "Environment identifier"
|
|
1697
1680
|
msgstr ""
|
1698
1681
|
|
1699
1682
|
msgid "Environments"
|
1700
|
-
msgstr ""
|
1683
|
+
msgstr "환경 "
|
1701
1684
|
|
1702
1685
|
msgid "Errata"
|
1703
1686
|
msgstr "에라타 "
|
1704
1687
|
|
1705
|
-
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
1706
1688
|
msgid "Errata ID"
|
1707
1689
|
msgstr "에라타 ID"
|
1708
1690
|
|
@@ -1739,29 +1721,33 @@ msgstr "에라타 설치를 실패했습니다"
|
|
1739
1721
|
msgid "Erratum Install Timed Out"
|
1740
1722
|
msgstr "에라타 설치 시간 초과 "
|
1741
1723
|
|
1742
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1743
1724
|
msgid "Error"
|
1744
1725
|
msgstr "오류 "
|
1745
1726
|
|
1746
1727
|
msgid "Error connecting to Pulp service"
|
1747
|
-
msgstr ""
|
1728
|
+
msgstr "Pulp 서비스에 연결하는 도중 오류가 발생했습니다."
|
1748
1729
|
|
1749
1730
|
msgid "Error connecting. Got: %s"
|
1750
|
-
msgstr ""
|
1731
|
+
msgstr "연결하는 도중 오류가 발생했습니다. 오류 메시지: %s"
|
1751
1732
|
|
1752
1733
|
msgid "Error refreshing status for %s: "
|
1753
1734
|
msgstr ""
|
1754
1735
|
|
1755
1736
|
msgid "Error retrieving Pulp storage"
|
1756
|
-
msgstr ""
|
1737
|
+
msgstr "Pulp 스토리지를 가져오는 도중 오류가 발생하였습니다."
|
1757
1738
|
|
1758
1739
|
msgid "Exceeds available quantity"
|
1759
1740
|
msgstr ""
|
1760
1741
|
|
1742
|
+
msgid "Exclude"
|
1743
|
+
msgstr "제외 "
|
1744
|
+
|
1745
|
+
msgid "Excluded"
|
1746
|
+
msgstr ""
|
1747
|
+
|
1761
1748
|
msgid "Exit"
|
1762
1749
|
msgstr ""
|
1763
1750
|
|
1764
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
1765
1751
|
msgid "Expand All"
|
1766
1752
|
msgstr "모두 확장 "
|
1767
1753
|
|
@@ -1769,7 +1755,7 @@ msgid "Expire soon days"
|
|
1769
1755
|
msgstr ""
|
1770
1756
|
|
1771
1757
|
msgid "Export"
|
1772
|
-
msgstr ""
|
1758
|
+
msgstr "내보내기 "
|
1773
1759
|
|
1774
1760
|
msgid "Export CSV"
|
1775
1761
|
msgstr ""
|
@@ -1780,11 +1766,8 @@ msgstr ""
|
|
1780
1766
|
msgid "Export Types"
|
1781
1767
|
msgstr ""
|
1782
1768
|
|
1783
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1784
|
-
msgstr ""
|
1785
|
-
|
1786
1769
|
msgid "Export a repository"
|
1787
|
-
msgstr ""
|
1770
|
+
msgstr "리포지터리 내보내기"
|
1788
1771
|
|
1789
1772
|
msgid "Export as CSV"
|
1790
1773
|
msgstr ""
|
@@ -1795,9 +1778,6 @@ msgstr ""
|
|
1795
1778
|
msgid "Export to ISO format"
|
1796
1779
|
msgstr ""
|
1797
1780
|
|
1798
|
-
msgid "Export to ISO format."
|
1799
|
-
msgstr ""
|
1800
|
-
|
1801
1781
|
msgid "Exported version"
|
1802
1782
|
msgstr ""
|
1803
1783
|
|
@@ -1808,15 +1788,11 @@ msgid "Failed"
|
|
1808
1788
|
msgstr "실패 "
|
1809
1789
|
|
1810
1790
|
msgid "Failed indexing errata, maximum retries encountered"
|
1811
|
-
msgstr ""
|
1791
|
+
msgstr "에라타를 인덱싱하지 못했습니다. 최대 재시도 횟수에 도달했습니다."
|
1812
1792
|
|
1813
1793
|
msgid "Failed to delete %{host}: %{errors}"
|
1814
1794
|
msgstr ""
|
1815
1795
|
|
1816
|
-
msgid "Failed to download %s module."
|
1817
|
-
msgid_plural "Failed to download %s modules."
|
1818
|
-
msgstr[0] "%s 모듈 다운로드에 실패했습니다 "
|
1819
|
-
|
1820
1796
|
msgid "Failed to download %s package."
|
1821
1797
|
msgid_plural "Failed to download %s packages."
|
1822
1798
|
msgstr[0] "%s 패키지 다운로드에 실패했습니다 "
|
@@ -1876,7 +1852,7 @@ msgid "Filter out default content views"
|
|
1876
1852
|
msgstr "기본값 컨텐츠 뷰 필터링 "
|
1877
1853
|
|
1878
1854
|
msgid "Filter products by host id"
|
1879
|
-
msgstr ""
|
1855
|
+
msgstr "호스트 ID별로 제품 필터링"
|
1880
1856
|
|
1881
1857
|
msgid "Filter products by name"
|
1882
1858
|
msgstr "이름에 따라 제품을 필터링 "
|
@@ -1888,14 +1864,11 @@ msgid "Filter products by subscription"
|
|
1888
1864
|
msgstr "서브스크립션에 따라 제품을 필터링 "
|
1889
1865
|
|
1890
1866
|
msgid "Filter products by sync plan id"
|
1891
|
-
msgstr ""
|
1867
|
+
msgstr "동기화 계획 ID를 기준으로 제품 필터링"
|
1892
1868
|
|
1893
1869
|
msgid "Filter versions by environment"
|
1894
1870
|
msgstr "환경에 따라 버전을 필터링 "
|
1895
1871
|
|
1896
|
-
msgid "Filter versions by puppet module"
|
1897
|
-
msgstr ""
|
1898
|
-
|
1899
1872
|
msgid "Filter versions by version number"
|
1900
1873
|
msgstr "버전 번호에 따라 버전을 필터링 "
|
1901
1874
|
|
@@ -1903,10 +1876,10 @@ msgid "Filter versions that are components in the specified composite version"
|
|
1903
1876
|
msgstr "지정된 복합 버전에 있는 구성 요소인 버전을 필터링 "
|
1904
1877
|
|
1905
1878
|
msgid "Filtered index content"
|
1906
|
-
msgstr ""
|
1879
|
+
msgstr "필터링된 인덱스 컨텐츠"
|
1907
1880
|
|
1908
1881
|
msgid "Filters"
|
1909
|
-
msgstr ""
|
1882
|
+
msgstr "필터 "
|
1910
1883
|
|
1911
1884
|
msgid "Finish action timeout"
|
1912
1885
|
msgstr ""
|
@@ -1917,6 +1890,9 @@ msgstr ""
|
|
1917
1890
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
1918
1891
|
msgstr ""
|
1919
1892
|
|
1893
|
+
msgid "Force"
|
1894
|
+
msgstr ""
|
1895
|
+
|
1920
1896
|
msgid ""
|
1921
1897
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
1922
1898
|
" On Demand download policy) are skipped."
|
@@ -1941,12 +1917,11 @@ msgid "Forces a republish of the version's repositories' metadata"
|
|
1941
1917
|
msgstr ""
|
1942
1918
|
|
1943
1919
|
msgid "Fully entitled"
|
1944
|
-
msgstr ""
|
1920
|
+
msgstr "모든 권한이 부여됨"
|
1945
1921
|
|
1946
1922
|
msgid "GPG Key URL"
|
1947
|
-
msgstr ""
|
1923
|
+
msgstr "GPG 키 URL"
|
1948
1924
|
|
1949
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
1950
1925
|
msgid "Generate and Download"
|
1951
1926
|
msgstr "생성 및 다운로드 "
|
1952
1927
|
|
@@ -1959,6 +1934,9 @@ msgstr ""
|
|
1959
1934
|
msgid "Get all content available, not just that provided by subscriptions"
|
1960
1935
|
msgstr ""
|
1961
1936
|
|
1937
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1938
|
+
msgstr ""
|
1939
|
+
|
1962
1940
|
msgid "Get content and overrides for the host"
|
1963
1941
|
msgstr ""
|
1964
1942
|
|
@@ -1971,12 +1949,6 @@ msgstr "리포지터리 세트 정보 가져오기 "
|
|
1971
1949
|
msgid "Get list of available repositories for the repository set"
|
1972
1950
|
msgstr ""
|
1973
1951
|
|
1974
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
1975
|
-
msgstr "컨텐츠 뷰에 추가할 수 있는 puppet 모듈 이름 가져오기 "
|
1976
|
-
|
1977
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
1978
|
-
msgstr "컨텐츠 보기에 추가할 수 있는 puppet 모듈 가져오기 "
|
1979
|
-
|
1980
1952
|
msgid "Get status of repo synchronisation for given product"
|
1981
1953
|
msgstr "주어진 제품에 대한 리포지터리 동기화 상태 가져오기 "
|
1982
1954
|
|
@@ -1993,7 +1965,7 @@ msgid "Group %{id} already created."
|
|
1993
1965
|
msgstr ""
|
1994
1966
|
|
1995
1967
|
msgid "Guests of"
|
1996
|
-
msgstr ""
|
1968
|
+
msgstr "게스트 "
|
1997
1969
|
|
1998
1970
|
msgid "HTTP Proxies"
|
1999
1971
|
msgstr ""
|
@@ -2005,6 +1977,9 @@ msgid "Has to be > 0"
|
|
2005
1977
|
msgstr ""
|
2006
1978
|
|
2007
1979
|
msgid "History"
|
1980
|
+
msgstr "기록 "
|
1981
|
+
|
1982
|
+
msgid "History will appear here when the content view is published or promoted."
|
2008
1983
|
msgstr ""
|
2009
1984
|
|
2010
1985
|
msgid "Host"
|
@@ -2017,7 +1992,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
|
|
2017
1992
|
msgstr ""
|
2018
1993
|
|
2019
1994
|
msgid "Host '%{name}' does not belong to an organization"
|
2020
|
-
msgstr ""
|
1995
|
+
msgstr "'%{name}' 호스트가 조직에 속해 있지 않습니다."
|
2021
1996
|
|
2022
1997
|
msgid "Host Collection name"
|
2023
1998
|
msgstr "호스트 컬렉션 이름 "
|
@@ -2032,7 +2007,7 @@ msgid "Host Errata Advisory"
|
|
2032
2007
|
msgstr ""
|
2033
2008
|
|
2034
2009
|
msgid "Host ID"
|
2035
|
-
msgstr ""
|
2010
|
+
msgstr "호스트 ID"
|
2036
2011
|
|
2037
2012
|
msgid "Host Profile Assume"
|
2038
2013
|
msgstr ""
|
@@ -2056,19 +2031,19 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
|
|
2056
2031
|
msgstr ""
|
2057
2032
|
|
2058
2033
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2059
|
-
msgstr ""
|
2034
|
+
msgstr "호스트가 %s초 이내에 컨텐츠 작업을 끝내지 않았습니다. 태스크가 취소되었습니다."
|
2060
2035
|
|
2061
2036
|
msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
|
2062
|
-
msgstr ""
|
2037
|
+
msgstr "호스트가 %s초 이내에 응답하지 않았습니다. 태스크가 취소되었습니다. 호스트에 katello-agent가 설치되어 있고 goferd가 실행 중입니까?"
|
2063
2038
|
|
2064
2039
|
msgid "Host errata advisory"
|
2065
2040
|
msgstr ""
|
2066
2041
|
|
2067
2042
|
msgid "Host group IDs"
|
2068
|
-
msgstr ""
|
2043
|
+
msgstr "호스트 그룹 ID"
|
2069
2044
|
|
2070
2045
|
msgid "Host has not been registered with subscription-manager"
|
2071
|
-
msgstr ""
|
2046
|
+
msgstr "호스트가 subscription-manager에 등록되지 않았습니다."
|
2072
2047
|
|
2073
2048
|
msgid "Host has not been registered with subscription-manager."
|
2074
2049
|
msgstr ""
|
@@ -2094,6 +2069,9 @@ msgstr ""
|
|
2094
2069
|
msgid "Hosts with Installable Errata"
|
2095
2070
|
msgstr "설치 가능한 에라타를 갖는 호스트 "
|
2096
2071
|
|
2072
|
+
msgid "Hosts: "
|
2073
|
+
msgstr ""
|
2074
|
+
|
2097
2075
|
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."
|
2098
2076
|
msgstr ""
|
2099
2077
|
|
@@ -2104,10 +2082,10 @@ msgid "How to order the sorted results (e.g. ASC for ascending)"
|
|
2104
2082
|
msgstr "정렬된 결고를 정렬하는 방법 (예: 오름차순의 ASC) "
|
2105
2083
|
|
2106
2084
|
msgid "Hypervisors"
|
2107
|
-
msgstr ""
|
2085
|
+
msgstr "하이퍼바이저"
|
2108
2086
|
|
2109
2087
|
msgid "Hypervisors update"
|
2110
|
-
msgstr ""
|
2088
|
+
msgstr "하이퍼바이저 업데이트"
|
2111
2089
|
|
2112
2090
|
msgid "ID of a HTTP Proxy"
|
2113
2091
|
msgstr ""
|
@@ -2140,7 +2118,7 @@ msgid "ID of the environment"
|
|
2140
2118
|
msgstr "환경 ID "
|
2141
2119
|
|
2142
2120
|
msgid "ID of the host"
|
2143
|
-
msgstr ""
|
2121
|
+
msgstr "호스트의 ID"
|
2144
2122
|
|
2145
2123
|
msgid "ID of the host collection"
|
2146
2124
|
msgstr "호스트 컬렉션 ID "
|
@@ -2182,7 +2160,7 @@ msgid "Id of an ansible collection to find repositories that contain the ansible
|
|
2182
2160
|
msgstr ""
|
2183
2161
|
|
2184
2162
|
msgid "Id of an erratum to find repositories that contain the erratum"
|
2185
|
-
msgstr ""
|
2163
|
+
msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
|
2186
2164
|
|
2187
2165
|
msgid "Id of an ostree branch to find repositories that contain that branch"
|
2188
2166
|
msgstr ""
|
@@ -2191,22 +2169,22 @@ msgid "Id of the content host"
|
|
2191
2169
|
msgstr ""
|
2192
2170
|
|
2193
2171
|
msgid "Id of the environment to limit the synchronization on"
|
2194
|
-
msgstr ""
|
2172
|
+
msgstr "동기화의 제한 범위로 설정할 환경의 ID"
|
2195
2173
|
|
2196
2174
|
msgid "Id of the host"
|
2197
|
-
msgstr ""
|
2175
|
+
msgstr "호스트의 ID"
|
2198
2176
|
|
2199
2177
|
msgid "Id of the host collection"
|
2200
2178
|
msgstr "호스트 컬렉션 ID "
|
2201
2179
|
|
2202
2180
|
msgid "Id of the lifecycle environment"
|
2203
|
-
msgstr ""
|
2181
|
+
msgstr "라이프사이클 환경의 ID"
|
2204
2182
|
|
2205
2183
|
msgid "Id of the organization to get the status for"
|
2206
|
-
msgstr ""
|
2184
|
+
msgstr "상태를 가져올 조직의 ID"
|
2207
2185
|
|
2208
2186
|
msgid "Id of the organization to limit environments on"
|
2209
|
-
msgstr ""
|
2187
|
+
msgstr "환경을 제한할 조직의 ID"
|
2210
2188
|
|
2211
2189
|
msgid "Id of the smart proxy"
|
2212
2190
|
msgstr ""
|
@@ -2245,13 +2223,13 @@ msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-
|
|
2245
2223
|
msgstr ""
|
2246
2224
|
|
2247
2225
|
msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
|
2248
|
-
msgstr ""
|
2226
|
+
msgstr "true로 설정할 경우 포함하는 구성 요소 컨텐츠 뷰 버전이 대상 환경에 존재하지 않으면 복합 컨텐츠 뷰가 게시 또는 승격되지 않을 수 있습니다."
|
2249
2227
|
|
2250
|
-
msgid "If set to true, use
|
2228
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2251
2229
|
msgstr ""
|
2252
2230
|
|
2253
2231
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2254
|
-
msgstr ""
|
2232
|
+
msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
|
2255
2233
|
|
2256
2234
|
msgid "If true, 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"
|
2257
2235
|
msgstr ""
|
@@ -2274,14 +2252,23 @@ msgstr ""
|
|
2274
2252
|
msgid "Ignorable content can be only set for Yum repositories."
|
2275
2253
|
msgstr ""
|
2276
2254
|
|
2277
|
-
msgid "Ignore
|
2255
|
+
msgid "Ignore errors"
|
2256
|
+
msgstr ""
|
2257
|
+
|
2258
|
+
msgid "Ignore subscription manager errors"
|
2259
|
+
msgstr ""
|
2260
|
+
|
2261
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2278
2262
|
msgstr ""
|
2279
2263
|
|
2264
|
+
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2265
|
+
msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
|
2266
|
+
|
2280
2267
|
msgid "Immediate"
|
2281
2268
|
msgstr ""
|
2282
2269
|
|
2283
2270
|
msgid "Import"
|
2284
|
-
msgstr ""
|
2271
|
+
msgstr "불러오기"
|
2285
2272
|
|
2286
2273
|
msgid "Import Content View Version"
|
2287
2274
|
msgstr ""
|
@@ -2301,6 +2288,9 @@ msgstr ""
|
|
2301
2288
|
msgid "Import Puppet classes"
|
2302
2289
|
msgstr ""
|
2303
2290
|
|
2291
|
+
msgid "Import Types"
|
2292
|
+
msgstr ""
|
2293
|
+
|
2304
2294
|
msgid "Import a Manifest"
|
2305
2295
|
msgstr ""
|
2306
2296
|
|
@@ -2331,15 +2321,21 @@ msgstr ""
|
|
2331
2321
|
msgid "Import-only content views can not be published directly"
|
2332
2322
|
msgstr ""
|
2333
2323
|
|
2334
|
-
msgid "Import-only content views will be available in a future version."
|
2335
|
-
msgstr ""
|
2336
|
-
|
2337
2324
|
msgid "Importing manifest into '%{subject}' failed."
|
2338
2325
|
msgstr ""
|
2339
2326
|
|
2340
2327
|
msgid "In Progress"
|
2341
2328
|
msgstr "진행 중 "
|
2342
2329
|
|
2330
|
+
msgid "Include"
|
2331
|
+
msgstr "포함 "
|
2332
|
+
|
2333
|
+
msgid "Included"
|
2334
|
+
msgstr ""
|
2335
|
+
|
2336
|
+
msgid "Includes associated content view filter ids in response"
|
2337
|
+
msgstr ""
|
2338
|
+
|
2343
2339
|
msgid "Inclusion type"
|
2344
2340
|
msgstr ""
|
2345
2341
|
|
@@ -2362,7 +2358,7 @@ msgid "Incremental update specified for composite %{name} version %{version}, bu
|
|
2362
2358
|
msgstr "복합 %{name} v버전 %{version}에 대해 증분 업데이트가 지정되었지만 구성 요소가 업데이트되지 않았습니다."
|
2363
2359
|
|
2364
2360
|
msgid "Index content"
|
2365
|
-
msgstr ""
|
2361
|
+
msgstr "컨텐츠 인덱싱"
|
2366
2362
|
|
2367
2363
|
msgid "Index errata"
|
2368
2364
|
msgstr "에라타 인덱스"
|
@@ -2371,7 +2367,7 @@ msgid "Index module streams"
|
|
2371
2367
|
msgstr ""
|
2372
2368
|
|
2373
2369
|
msgid "Index package groups"
|
2374
|
-
msgstr ""
|
2370
|
+
msgstr "패키지 그룹 인덱싱"
|
2375
2371
|
|
2376
2372
|
msgid "Informable Type must be one of the following [ %{list} ]"
|
2377
2373
|
msgstr "정보 유형은 다음 중 하나이어야 합니다 [ %{list} ]"
|
@@ -2380,7 +2376,7 @@ msgid "Inherit from Repository"
|
|
2380
2376
|
msgstr ""
|
2381
2377
|
|
2382
2378
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2383
|
-
msgstr ""
|
2379
|
+
msgstr "동기화 계획에 연결된 제품 동기화 시작"
|
2384
2380
|
|
2385
2381
|
msgid "Install Applicable Errata"
|
2386
2382
|
msgstr "적용 가능한 에라타 설치 "
|
@@ -2388,7 +2384,7 @@ msgstr "적용 가능한 에라타 설치 "
|
|
2388
2384
|
msgid "Install Applicable Errata on %s"
|
2389
2385
|
msgstr ""
|
2390
2386
|
|
2391
|
-
msgid "Install content on one or more hosts"
|
2387
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2392
2388
|
msgstr ""
|
2393
2389
|
|
2394
2390
|
msgid "Install errata via Katello interface"
|
@@ -2415,8 +2411,8 @@ msgstr ""
|
|
2415
2411
|
msgid "Install package via Katello interface"
|
2416
2412
|
msgstr ""
|
2417
2413
|
|
2418
|
-
msgid "Install packages remotely"
|
2419
|
-
msgstr "
|
2414
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2415
|
+
msgstr ""
|
2420
2416
|
|
2421
2417
|
msgid "Installable errata from Content View"
|
2422
2418
|
msgstr ""
|
@@ -2430,7 +2426,6 @@ msgstr ""
|
|
2430
2426
|
msgid "Installation of package(s) requested: %{packages}"
|
2431
2427
|
msgstr ""
|
2432
2428
|
|
2433
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
2434
2429
|
msgid "Installed Packages"
|
2435
2430
|
msgstr "설치된 패키지 "
|
2436
2431
|
|
@@ -2447,13 +2442,13 @@ msgid "Instance update"
|
|
2447
2442
|
msgstr ""
|
2448
2443
|
|
2449
2444
|
msgid "Instance-based"
|
2450
|
-
msgstr ""
|
2445
|
+
msgstr "인스턴스 기반 "
|
2451
2446
|
|
2452
2447
|
msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
|
2453
|
-
msgstr ""
|
2448
|
+
msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 호스트 컬렉션만 반환합니다. 값 '호스트'가 지원됩니다."
|
2454
2449
|
|
2455
2450
|
msgid "Interpret specified object to return only Products that can be associated with specified object. Only 'sync_plan' is supported."
|
2456
|
-
msgstr ""
|
2451
|
+
msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 제품만 반환합니다. 'sync_plan'만 지원됩니다."
|
2457
2452
|
|
2458
2453
|
msgid "Interval cannot be nil"
|
2459
2454
|
msgstr ""
|
@@ -2462,7 +2457,7 @@ msgid "Interval not set correctly"
|
|
2462
2457
|
msgstr ""
|
2463
2458
|
|
2464
2459
|
msgid "Invalid"
|
2465
|
-
msgstr ""
|
2460
|
+
msgstr "유효하지 않음 "
|
2466
2461
|
|
2467
2462
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2468
2463
|
msgstr ""
|
@@ -2474,10 +2469,10 @@ msgid "Invalid content type %s"
|
|
2474
2469
|
msgstr "잘못된 컨텐츠 유형 %s"
|
2475
2470
|
|
2476
2471
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2477
|
-
msgstr ""
|
2472
|
+
msgstr "잘못된 컨텐츠 유형 '%{content_type}'이(가) 지정되었습니다. 컨텐츠 유형은 %{content_types} 중 하나가 될 수 있습니다."
|
2478
2473
|
|
2479
2474
|
msgid "Invalid date provided."
|
2480
|
-
msgstr ""
|
2475
|
+
msgstr "잘못된 날짜를 입력했습니다."
|
2481
2476
|
|
2482
2477
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2483
2478
|
msgstr "잘못된 날짜 범위입니다. 에라타 필터 규칙 시작일은 종료일 이전에 와야 합니다."
|
@@ -2500,29 +2495,14 @@ msgstr "잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_ver
|
|
2500
2495
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2501
2496
|
msgstr "잘못된 매개 변수가 이 작업에 대한 요청에 전송되었습니다. 시스템 관리자에게 문의하십시오. "
|
2502
2497
|
|
2503
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
2504
2498
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2505
2499
|
msgstr "잘못된 매개 변수가 전송되었습니다. 주소를 잘못 입력하신것 같습니다. 문제가 계속 발생하면 관리자에게 문의하십시오. "
|
2506
2500
|
|
2507
2501
|
msgid "Invalid params provided - content_type must be one of %s"
|
2508
|
-
msgstr ""
|
2502
|
+
msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중 하나여야 합니다."
|
2509
2503
|
|
2510
2504
|
msgid "Invalid params provided - date_type must be one of %s"
|
2511
|
-
msgstr ""
|
2512
|
-
|
2513
|
-
msgid ""
|
2514
|
-
"Invalid puppet module parameters specified. \\\n"
|
2515
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2516
|
-
msgstr ""
|
2517
|
-
|
2518
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2519
|
-
msgstr "잘못된 puppet 모듈입니다. puppet 모듈에는 metadata.json 파일이 들어 있고 올바르게 압축되어 있는지 확인합니다. "
|
2520
|
-
|
2521
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2522
|
-
msgstr ""
|
2523
|
-
|
2524
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2525
|
-
msgstr ""
|
2505
|
+
msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
|
2526
2506
|
|
2527
2507
|
msgid "Invalid value specified for Container Image repositories."
|
2528
2508
|
msgstr ""
|
@@ -2533,9 +2513,6 @@ msgstr ""
|
|
2533
2513
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2534
2514
|
msgstr ""
|
2535
2515
|
|
2536
|
-
msgid "Katello"
|
2537
|
-
msgstr ""
|
2538
|
-
|
2539
2516
|
msgid "Katello ID of local pool to update"
|
2540
2517
|
msgstr ""
|
2541
2518
|
|
@@ -2582,7 +2559,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
|
|
2582
2559
|
msgstr ""
|
2583
2560
|
|
2584
2561
|
msgid "Label"
|
2585
|
-
msgstr ""
|
2562
|
+
msgstr "레이블 "
|
2586
2563
|
|
2587
2564
|
msgid "Label of the content"
|
2588
2565
|
msgstr "컨텐츠 레이블 "
|
@@ -2590,7 +2567,16 @@ msgstr "컨텐츠 레이블 "
|
|
2590
2567
|
msgid "Last published"
|
2591
2568
|
msgstr ""
|
2592
2569
|
|
2570
|
+
msgid "Last task"
|
2571
|
+
msgstr ""
|
2572
|
+
|
2573
|
+
msgid "Latest (automatically updates)"
|
2574
|
+
msgstr ""
|
2575
|
+
|
2593
2576
|
msgid "Latest Errata"
|
2577
|
+
msgstr "최신 에라타"
|
2578
|
+
|
2579
|
+
msgid "Latest version"
|
2594
2580
|
msgstr ""
|
2595
2581
|
|
2596
2582
|
msgid "Learn more about adding Subscription Manifests"
|
@@ -2620,12 +2606,18 @@ msgstr ""
|
|
2620
2606
|
msgid "Lifecycle Environments"
|
2621
2607
|
msgstr "라이프사이클 환경 "
|
2622
2608
|
|
2609
|
+
msgid "Lifecycle environment"
|
2610
|
+
msgstr ""
|
2611
|
+
|
2623
2612
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2624
2613
|
msgstr "라이프 사이클 환경 '%{environment}'이 capsule에 할당되어 있지 않습니다. "
|
2625
2614
|
|
2626
2615
|
msgid "Lifecycle environment ID"
|
2627
2616
|
msgstr ""
|
2628
2617
|
|
2618
|
+
msgid "Lifecycle environment for the host."
|
2619
|
+
msgstr ""
|
2620
|
+
|
2629
2621
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2630
2622
|
msgstr ""
|
2631
2623
|
|
@@ -2635,11 +2627,14 @@ msgstr ""
|
|
2635
2627
|
msgid "Limit content to just that available in the activation key's content view version"
|
2636
2628
|
msgstr ""
|
2637
2629
|
|
2630
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2631
|
+
msgstr ""
|
2632
|
+
|
2638
2633
|
msgid "Limit content to just that available in the host's content view version"
|
2639
2634
|
msgstr ""
|
2640
2635
|
|
2641
2636
|
msgid "Limits"
|
2642
|
-
msgstr ""
|
2637
|
+
msgstr "제한 "
|
2643
2638
|
|
2644
2639
|
msgid "List :resource_id"
|
2645
2640
|
msgstr ":resource_id 나열 "
|
@@ -2648,7 +2643,7 @@ msgid "List Content Credentials"
|
|
2648
2643
|
msgstr ""
|
2649
2644
|
|
2650
2645
|
msgid "List a host's subscriptions"
|
2651
|
-
msgstr ""
|
2646
|
+
msgstr "호스트의 서브스크립션 나열"
|
2652
2647
|
|
2653
2648
|
msgid "List activation keys"
|
2654
2649
|
msgstr "활성키 목록 나열 "
|
@@ -2671,9 +2666,6 @@ msgstr ""
|
|
2671
2666
|
msgid "List components attached to this content view"
|
2672
2667
|
msgstr ""
|
2673
2668
|
|
2674
|
-
msgid "List content view puppet modules"
|
2675
|
-
msgstr "컨텐츠 뷰 puppet 모듈 목록 나열"
|
2676
|
-
|
2677
2669
|
msgid "List content view versions"
|
2678
2670
|
msgstr "컨텐츠 뷰 버전 목록 나열 "
|
2679
2671
|
|
@@ -2713,6 +2705,9 @@ msgstr ""
|
|
2713
2705
|
msgid "List host collections within an organization"
|
2714
2706
|
msgstr "조직의 호스트 컬렉션을 나열 "
|
2715
2707
|
|
2708
|
+
msgid "List import histories"
|
2709
|
+
msgstr ""
|
2710
|
+
|
2716
2711
|
msgid "List module streams available to the host"
|
2717
2712
|
msgstr ""
|
2718
2713
|
|
@@ -2723,7 +2718,7 @@ msgid "List of Errata ids to install. Will be removed in Katello 4.1."
|
|
2723
2718
|
msgstr ""
|
2724
2719
|
|
2725
2720
|
msgid "List of Products for sync plan"
|
2726
|
-
msgstr ""
|
2721
|
+
msgstr "동기화 계획의 제품 나열"
|
2727
2722
|
|
2728
2723
|
msgid "List of component content view version ids for composite views"
|
2729
2724
|
msgstr "복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "
|
@@ -2759,7 +2754,7 @@ msgid "List of host collection ids"
|
|
2759
2754
|
msgstr "호스트 컬렉션 ID 목록 "
|
2760
2755
|
|
2761
2756
|
msgid "List of host collection ids to update"
|
2762
|
-
msgstr ""
|
2757
|
+
msgstr "업데이트할 호스트 컬렉션 ID 목록"
|
2763
2758
|
|
2764
2759
|
msgid "List of host id to list available module streams for"
|
2765
2760
|
msgstr ""
|
@@ -2771,7 +2766,7 @@ msgid "List of host ids to perform an action on"
|
|
2771
2766
|
msgstr ""
|
2772
2767
|
|
2773
2768
|
msgid "List of host ids to replace the hosts in host collection"
|
2774
|
-
msgstr ""
|
2769
|
+
msgstr "호스트 컬렉션의 호스트를 대체할 호스트 ID의 목록입니다."
|
2775
2770
|
|
2776
2771
|
msgid "List of hypervisor guest uuids"
|
2777
2772
|
msgstr ""
|
@@ -2828,7 +2823,7 @@ msgid "List packages"
|
|
2828
2823
|
msgstr ""
|
2829
2824
|
|
2830
2825
|
msgid "List packages installed on the host"
|
2831
|
-
msgstr ""
|
2826
|
+
msgstr "호스트에 설치된 패키지 나열"
|
2832
2827
|
|
2833
2828
|
msgid "List products"
|
2834
2829
|
msgstr "제품 나열 "
|
@@ -2861,7 +2856,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2861
2856
|
msgstr ""
|
2862
2857
|
|
2863
2858
|
msgid "Loading"
|
2864
|
-
msgstr ""
|
2859
|
+
msgstr "로딩 중 "
|
2865
2860
|
|
2866
2861
|
msgid "Make copy of a content view"
|
2867
2862
|
msgstr "컨텐츠 뷰 사본 작성 "
|
@@ -2873,13 +2868,13 @@ msgid "Make sure all the component content views are published before publishing
|
|
2873
2868
|
msgstr ""
|
2874
2869
|
|
2875
2870
|
msgid "Manage Manifest"
|
2876
|
-
msgstr ""
|
2871
|
+
msgstr "매니페스트 관리 "
|
2877
2872
|
|
2878
2873
|
msgid "Manifest"
|
2879
2874
|
msgstr ""
|
2880
2875
|
|
2881
2876
|
msgid "Manifest History"
|
2882
|
-
msgstr ""
|
2877
|
+
msgstr "매니페스트 기록 "
|
2883
2878
|
|
2884
2879
|
msgid "Manifest deleted"
|
2885
2880
|
msgstr ""
|
@@ -2921,7 +2916,7 @@ msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
|
2921
2916
|
msgstr "호스트 컬렉션에 대해 최대 컨텐츠 호스트 수를 초과했습니다: %s"
|
2922
2917
|
|
2923
2918
|
msgid "Maximum number of hosts in the host collection"
|
2924
|
-
msgstr ""
|
2919
|
+
msgstr "호스트 컬렉션에 포함된 호스트의 최대 수"
|
2925
2920
|
|
2926
2921
|
msgid "May not add a type or date range rule to a filter that has existing rules."
|
2927
2922
|
msgstr "유형 또는 데이터 범위 규칙을 기존 규칙이 있는 필터에 추가할 수 없습니다. "
|
@@ -2929,15 +2924,17 @@ msgstr "유형 또는 데이터 범위 규칙을 기존 규칙이 있는 필터
|
|
2929
2924
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
2930
2925
|
msgstr "기존 유형 또는 데이터 범위 규칙이 있는 필터에 id 규칙을 추가할 수 없습니다. "
|
2931
2926
|
|
2927
|
+
msgid "Media Selection"
|
2928
|
+
msgstr ""
|
2929
|
+
|
2932
2930
|
msgid "Medium IDs"
|
2933
2931
|
msgstr ""
|
2934
2932
|
|
2935
|
-
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
2936
2933
|
msgid "Message"
|
2937
2934
|
msgstr "메세지 "
|
2938
2935
|
|
2939
2936
|
msgid "Messaging connection"
|
2940
|
-
msgstr ""
|
2937
|
+
msgstr "메시징 연결"
|
2941
2938
|
|
2942
2939
|
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2943
2940
|
msgstr ""
|
@@ -2946,7 +2943,7 @@ msgid "Mismatched"
|
|
2946
2943
|
msgstr ""
|
2947
2944
|
|
2948
2945
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2949
|
-
msgstr ""
|
2946
|
+
msgstr "%{content_url}에 대한 %{substitutions} 인수 누락"
|
2950
2947
|
|
2951
2948
|
msgid "Module Stream"
|
2952
2949
|
msgstr ""
|
@@ -2961,12 +2958,18 @@ msgid "Module stream"
|
|
2961
2958
|
msgstr ""
|
2962
2959
|
|
2963
2960
|
msgid "Multi-entitlement"
|
2964
|
-
msgstr ""
|
2961
|
+
msgstr "멀티 인타이틀먼트 "
|
2965
2962
|
|
2966
2963
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
2967
2964
|
msgstr ""
|
2968
2965
|
|
2966
|
+
msgid "N/A"
|
2967
|
+
msgstr ""
|
2968
|
+
|
2969
2969
|
msgid "NA"
|
2970
|
+
msgstr "해당 없음 "
|
2971
|
+
|
2972
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2970
2973
|
msgstr ""
|
2971
2974
|
|
2972
2975
|
msgid ""
|
@@ -3006,7 +3009,6 @@ msgstr ""
|
|
3006
3009
|
msgid "Needs to only be set for file repositories or docker tags"
|
3007
3010
|
msgstr ""
|
3008
3011
|
|
3009
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3010
3012
|
msgid "Nest"
|
3011
3013
|
msgstr "중첩 "
|
3012
3014
|
|
@@ -3037,23 +3039,33 @@ msgstr "새 컨텐츠 뷰 이름 "
|
|
3037
3039
|
msgid "New packages: %{count} (%{size})."
|
3038
3040
|
msgstr "새 패키지: %{count} (%{size})."
|
3039
3041
|
|
3042
|
+
msgid "New version is available: Version ${latestVersion}"
|
3043
|
+
msgstr ""
|
3044
|
+
|
3040
3045
|
msgid "No"
|
3046
|
+
msgstr "아니오 "
|
3047
|
+
|
3048
|
+
msgid "No Activation Keys selected"
|
3049
|
+
msgstr ""
|
3050
|
+
|
3051
|
+
msgid "No Activation keys to select"
|
3041
3052
|
msgstr ""
|
3042
3053
|
|
3043
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3044
3054
|
msgid "No Content View"
|
3045
3055
|
msgstr "컨텐츠 보기가 없습니다 "
|
3046
3056
|
|
3047
3057
|
msgid "No Content found"
|
3048
3058
|
msgstr ""
|
3049
3059
|
|
3060
|
+
msgid "No Lifecycle environment to select"
|
3061
|
+
msgstr ""
|
3062
|
+
|
3050
3063
|
msgid "No Manifest Uploaded"
|
3051
3064
|
msgstr ""
|
3052
3065
|
|
3053
3066
|
msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
|
3054
3067
|
msgstr ""
|
3055
3068
|
|
3056
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3057
3069
|
msgid "No Service Level Preference"
|
3058
3070
|
msgstr "서비스 레벨 설정이 없음 "
|
3059
3071
|
|
@@ -3073,17 +3085,29 @@ msgid "No content has been provided."
|
|
3073
3085
|
msgstr "제공된 컨텐츠가 없습니다. "
|
3074
3086
|
|
3075
3087
|
msgid "No content ids provided"
|
3076
|
-
msgstr ""
|
3088
|
+
msgstr "컨텐츠 ID를 지정하지 않았습니다."
|
3077
3089
|
|
3078
3090
|
msgid "No content view history events found."
|
3079
3091
|
msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
|
3080
3092
|
|
3093
|
+
msgid "No content views belong to ${label}"
|
3094
|
+
msgstr ""
|
3095
|
+
|
3081
3096
|
msgid "No content_view_version_ids provided"
|
3082
3097
|
msgstr "content_view_version_ids가 지정되어 있지 않습니다 "
|
3083
3098
|
|
3099
|
+
msgid "No description"
|
3100
|
+
msgstr ""
|
3101
|
+
|
3084
3102
|
msgid "No enabled repositories match your search criteria."
|
3085
3103
|
msgstr ""
|
3086
3104
|
|
3105
|
+
msgid "No environment"
|
3106
|
+
msgstr ""
|
3107
|
+
|
3108
|
+
msgid "No environments"
|
3109
|
+
msgstr ""
|
3110
|
+
|
3087
3111
|
msgid "No errata has been specified."
|
3088
3112
|
msgstr ""
|
3089
3113
|
|
@@ -3117,15 +3141,30 @@ msgstr ""
|
|
3117
3141
|
msgid "No matching filters found"
|
3118
3142
|
msgstr ""
|
3119
3143
|
|
3144
|
+
msgid "No matching history record found"
|
3145
|
+
msgstr ""
|
3146
|
+
|
3147
|
+
msgid "No matching package groups found."
|
3148
|
+
msgstr ""
|
3149
|
+
|
3120
3150
|
msgid "No matching repositories found"
|
3121
3151
|
msgstr ""
|
3122
3152
|
|
3153
|
+
msgid "No matching rules found."
|
3154
|
+
msgstr ""
|
3155
|
+
|
3156
|
+
msgid "No matching version found"
|
3157
|
+
msgstr ""
|
3158
|
+
|
3123
3159
|
msgid "No new packages installed"
|
3124
3160
|
msgstr "설치된 새 패키지가 없음 "
|
3125
3161
|
|
3126
3162
|
msgid "No new packages."
|
3127
3163
|
msgstr "새 패키지가 없습니다. "
|
3128
3164
|
|
3165
|
+
msgid "No package groups have been added to this filter."
|
3166
|
+
msgstr ""
|
3167
|
+
|
3129
3168
|
msgid "No packages removed"
|
3130
3169
|
msgstr "삭제된 패키지가 없음 "
|
3131
3170
|
|
@@ -3151,10 +3190,10 @@ msgid "No profiles to show"
|
|
3151
3190
|
msgstr ""
|
3152
3191
|
|
3153
3192
|
msgid "No pulp workers running."
|
3154
|
-
msgstr ""
|
3193
|
+
msgstr "실행 중인 pulp worker가 없습니다."
|
3155
3194
|
|
3156
3195
|
msgid "No recently synced products"
|
3157
|
-
msgstr ""
|
3196
|
+
msgstr "최근에 동기화된 제품 없음"
|
3158
3197
|
|
3159
3198
|
msgid "No recurring logic tied to the sync plan."
|
3160
3199
|
msgstr ""
|
@@ -3171,9 +3210,12 @@ msgstr ""
|
|
3171
3210
|
msgid "No repository sets match your search criteria."
|
3172
3211
|
msgstr ""
|
3173
3212
|
|
3174
|
-
msgid "No
|
3213
|
+
msgid "No rules have been added to this filter."
|
3175
3214
|
msgstr ""
|
3176
3215
|
|
3216
|
+
msgid "No services defined, is this class extended?"
|
3217
|
+
msgstr "정의된 서비스가 없습니다. 확장된 클래스입니까?"
|
3218
|
+
|
3177
3219
|
msgid "No start time currently available."
|
3178
3220
|
msgstr "현재 사용 가능한 시작 시간이 없습니다. "
|
3179
3221
|
|
@@ -3187,7 +3229,7 @@ msgid "No uploads param specified. An array of uploads to import is required."
|
|
3187
3229
|
msgstr ""
|
3188
3230
|
|
3189
3231
|
msgid "Non-security errata applicable"
|
3190
|
-
msgstr ""
|
3232
|
+
msgstr "적용 가능한 비보안 에라타"
|
3191
3233
|
|
3192
3234
|
msgid "Non-security errata installable"
|
3193
3235
|
msgstr ""
|
@@ -3207,12 +3249,18 @@ msgstr ""
|
|
3207
3249
|
msgid "Not a number"
|
3208
3250
|
msgstr ""
|
3209
3251
|
|
3252
|
+
msgid "Not added"
|
3253
|
+
msgstr ""
|
3254
|
+
|
3210
3255
|
msgid "Not all necessary pulp workers running at %s."
|
3211
3256
|
msgstr ""
|
3212
3257
|
|
3213
3258
|
msgid "Not running"
|
3214
3259
|
msgstr ""
|
3215
3260
|
|
3261
|
+
msgid "Not yet published"
|
3262
|
+
msgstr ""
|
3263
|
+
|
3216
3264
|
msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
|
3217
3265
|
msgstr "알림: 괄호 안의 숫자는 호스트에서 사용할 수 없는 라이브러리 환경에서 적용 가능한 모든 에라타를 반영합니다. 이 컨텐츠를 사용 가능하게 하려면 관련 컨텐츠 뷰로 승격시켜야 합니다. "
|
3218
3266
|
|
@@ -3232,7 +3280,7 @@ msgid "Number to Allocate"
|
|
3232
3280
|
msgstr ""
|
3233
3281
|
|
3234
3282
|
msgid "OSTree"
|
3235
|
-
msgstr ""
|
3283
|
+
msgstr "OSTree"
|
3236
3284
|
|
3237
3285
|
msgid "OSTree Branch"
|
3238
3286
|
msgstr ""
|
@@ -3244,7 +3292,7 @@ msgid "OSTree Repositories cannot be unprotected."
|
|
3244
3292
|
msgstr ""
|
3245
3293
|
|
3246
3294
|
msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
|
3247
|
-
msgstr ""
|
3295
|
+
msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host' 또는 'activation_key'로 지정할 수 있습니다."
|
3248
3296
|
|
3249
3297
|
msgid "On Demand"
|
3250
3298
|
msgstr ""
|
@@ -3253,7 +3301,7 @@ msgid "On demand repositories cannot be exported."
|
|
3253
3301
|
msgstr ""
|
3254
3302
|
|
3255
3303
|
msgid "On-disk location for exported repositories"
|
3256
|
-
msgstr ""
|
3304
|
+
msgstr "내보낸 리포지터리의 디스크상 위치"
|
3257
3305
|
|
3258
3306
|
msgid "On-disk location for pulp 3 exported repositories"
|
3259
3307
|
msgstr ""
|
@@ -3282,16 +3330,12 @@ msgstr "하나의 조직에 대해 하나의 Red Hat 공급자만을 허용 "
|
|
3282
3330
|
msgid "Only returns id and quantity fields"
|
3283
3331
|
msgstr ""
|
3284
3332
|
|
3285
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3286
3333
|
msgid "Operators"
|
3287
3334
|
msgstr "운영자 "
|
3288
3335
|
|
3289
3336
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3290
3337
|
msgstr ""
|
3291
3338
|
|
3292
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3293
|
-
msgstr ""
|
3294
|
-
|
3295
3339
|
msgid "Organization"
|
3296
3340
|
msgstr "조직 "
|
3297
3341
|
|
@@ -3304,6 +3348,9 @@ msgstr "조직 ID"
|
|
3304
3348
|
msgid "Organization ID is required"
|
3305
3349
|
msgstr ""
|
3306
3350
|
|
3351
|
+
msgid "Organization Information not provided."
|
3352
|
+
msgstr ""
|
3353
|
+
|
3307
3354
|
msgid "Organization cannot be blank."
|
3308
3355
|
msgstr "조직을 빈 칸으로 둘 수 없습니다. "
|
3309
3356
|
|
@@ -3322,7 +3369,6 @@ msgstr ""
|
|
3322
3369
|
msgid "Organization required"
|
3323
3370
|
msgstr "필요한 조직 "
|
3324
3371
|
|
3325
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3326
3372
|
msgid "Other"
|
3327
3373
|
msgstr "기타 "
|
3328
3374
|
|
@@ -3347,11 +3393,9 @@ msgstr ""
|
|
3347
3393
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3348
3394
|
msgstr ""
|
3349
3395
|
|
3350
|
-
# translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
|
3351
3396
|
msgid "Package"
|
3352
3397
|
msgstr "패키지"
|
3353
3398
|
|
3354
|
-
# translation auto-copied from project RHEL Virtualization Deployment and Administration Guide, version 7.0, document Host_Installation
|
3355
3399
|
msgid "Package Group"
|
3356
3400
|
msgstr "패키지 그룹 "
|
3357
3401
|
|
@@ -3419,10 +3463,10 @@ msgid "Package Install scheduled by %s"
|
|
3419
3463
|
msgstr "%s에 의해 스케줄된 패키지 설치 "
|
3420
3464
|
|
3421
3465
|
msgid "Package Profile Update"
|
3422
|
-
msgstr ""
|
3466
|
+
msgstr "패키지 프로파일 업데이트"
|
3423
3467
|
|
3424
3468
|
msgid "Package Profile Update for %s"
|
3425
|
-
msgstr ""
|
3469
|
+
msgstr "%s에 대한 패키지 프로파일 업데이트"
|
3426
3470
|
|
3427
3471
|
msgid "Package Remove"
|
3428
3472
|
msgstr "패키지 제거 "
|
@@ -3460,22 +3504,21 @@ msgstr "패키지 업데이트 시간 초과 "
|
|
3460
3504
|
msgid "Package Update scheduled by %s"
|
3461
3505
|
msgstr "%s에 의해 스케줄된 패키지 업데이트 "
|
3462
3506
|
|
3463
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3464
3507
|
msgid "Package group update canceled"
|
3465
3508
|
msgstr "패키지 그룹 업데이트 취소"
|
3466
3509
|
|
3467
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3468
3510
|
msgid "Package group update complete"
|
3469
3511
|
msgstr "패키지 그룹 업데이트 완료"
|
3470
3512
|
|
3471
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3472
3513
|
msgid "Package group update failed"
|
3473
3514
|
msgstr "패키지 그룹 업데이트를 실패"
|
3474
3515
|
|
3475
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3476
3516
|
msgid "Package group update timed out"
|
3477
3517
|
msgstr "패키지 그룹 업데이트 시간 초과 "
|
3478
3518
|
|
3519
|
+
msgid "Package groups"
|
3520
|
+
msgstr ""
|
3521
|
+
|
3479
3522
|
msgid "Package identifiers to filter content by"
|
3480
3523
|
msgstr ""
|
3481
3524
|
|
@@ -3495,13 +3538,13 @@ msgid "Page number, starting at 1"
|
|
3495
3538
|
msgstr "1 부터 페이지 번호 "
|
3496
3539
|
|
3497
3540
|
msgid "Partial"
|
3498
|
-
msgstr ""
|
3541
|
+
msgstr "부분"
|
3499
3542
|
|
3500
3543
|
msgid "Partially entitled"
|
3501
|
-
msgstr ""
|
3544
|
+
msgstr "일부 권한이 부여됨"
|
3502
3545
|
|
3503
3546
|
msgid "Partition template IDs"
|
3504
|
-
msgstr ""
|
3547
|
+
msgstr "파티션 템플릿 ID"
|
3505
3548
|
|
3506
3549
|
msgid "Password of the upstream repository user used for authentication"
|
3507
3550
|
msgstr ""
|
@@ -3515,11 +3558,9 @@ msgstr ""
|
|
3515
3558
|
msgid "Path for ssl key used for pulp server auth"
|
3516
3559
|
msgstr ""
|
3517
3560
|
|
3518
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3519
3561
|
msgid "Paused"
|
3520
3562
|
msgstr "일시정지 "
|
3521
3563
|
|
3522
|
-
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
3523
3564
|
msgid "Pending"
|
3524
3565
|
msgstr "보류 중 "
|
3525
3566
|
|
@@ -3544,13 +3585,15 @@ msgstr ""
|
|
3544
3585
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3545
3586
|
msgstr "권한이 거부되었습니다. 사용자 '%{user}'은(는) 조직 '%{org}'에 액세스할 수 있는 권한이 없습니다. "
|
3546
3587
|
|
3547
|
-
# translation auto-copied from project subscription-manager, version 1.10.10, document keys
|
3548
3588
|
msgid "Physical"
|
3549
|
-
msgstr "
|
3589
|
+
msgstr "물리적 "
|
3550
3590
|
|
3551
3591
|
msgid "Plan numeric identifier"
|
3552
3592
|
msgstr "숫자로된 ID 계획 "
|
3553
3593
|
|
3594
|
+
msgid "Please add some content views."
|
3595
|
+
msgstr ""
|
3596
|
+
|
3554
3597
|
msgid "Please add some repositories."
|
3555
3598
|
msgstr ""
|
3556
3599
|
|
@@ -3579,7 +3622,7 @@ msgid "Please select an organization to view subscription totals."
|
|
3579
3622
|
msgstr ""
|
3580
3623
|
|
3581
3624
|
msgid "Please select one from the list below and you will be redirected."
|
3582
|
-
msgstr ""
|
3625
|
+
msgstr "다음 목록 중 하나를 선택하면 선택한 곳으로 이동합니다."
|
3583
3626
|
|
3584
3627
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3585
3628
|
msgstr ""
|
@@ -3590,18 +3633,17 @@ msgstr "메타데이터 처리 중 "
|
|
3590
3633
|
msgid "Processing metadata."
|
3591
3634
|
msgstr "메타데이터를 처리하고 있습니다. "
|
3592
3635
|
|
3593
|
-
# translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author eukim
|
3594
3636
|
msgid "Product"
|
3595
3637
|
msgstr "제품"
|
3596
3638
|
|
3597
3639
|
msgid "Product Content"
|
3598
|
-
msgstr ""
|
3640
|
+
msgstr "제품 컨텐츠 "
|
3599
3641
|
|
3600
3642
|
msgid "Product Create"
|
3601
3643
|
msgstr ""
|
3602
3644
|
|
3603
3645
|
msgid "Product ID"
|
3604
|
-
msgstr ""
|
3646
|
+
msgstr "제품 ID"
|
3605
3647
|
|
3606
3648
|
msgid "Product and Repositories"
|
3607
3649
|
msgstr "제품 및 리포지터리 "
|
@@ -3663,13 +3705,13 @@ msgid "Promotion to Environment"
|
|
3663
3705
|
msgstr ""
|
3664
3706
|
|
3665
3707
|
msgid "Provided Products"
|
3666
|
-
msgstr ""
|
3708
|
+
msgstr "제공되는 제품 "
|
3667
3709
|
|
3668
3710
|
msgid "Provided pool with id %s has no upstream entitlement"
|
3669
3711
|
msgstr ""
|
3670
3712
|
|
3671
3713
|
msgid "Provisioning template IDs"
|
3672
|
-
msgstr ""
|
3714
|
+
msgstr "프로비저닝 템플릿 ID "
|
3673
3715
|
|
3674
3716
|
msgid "Proxies"
|
3675
3717
|
msgstr ""
|
@@ -3677,7 +3719,6 @@ msgstr ""
|
|
3677
3719
|
msgid "Public key block in DER encoding or certificate content"
|
3678
3720
|
msgstr ""
|
3679
3721
|
|
3680
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
3681
3722
|
msgid "Publish"
|
3682
3723
|
msgstr "공개 "
|
3683
3724
|
|
@@ -3694,20 +3735,20 @@ msgid "Pulling remote branches. Downloaded %s units."
|
|
3694
3735
|
msgstr ""
|
3695
3736
|
|
3696
3737
|
msgid "Pulp"
|
3697
|
-
msgstr ""
|
3738
|
+
msgstr "Pulp"
|
3698
3739
|
|
3699
3740
|
msgid "Pulp 3 export destination filepath"
|
3700
3741
|
msgstr ""
|
3701
3742
|
|
3702
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3703
|
-
msgstr ""
|
3704
|
-
|
3705
3743
|
msgid "Pulp Consumer %s has already been removed"
|
3706
3744
|
msgstr ""
|
3707
3745
|
|
3708
3746
|
msgid "Pulp Docker registry port"
|
3709
3747
|
msgstr ""
|
3710
3748
|
|
3749
|
+
msgid "Pulp bulk load size"
|
3750
|
+
msgstr ""
|
3751
|
+
|
3711
3752
|
msgid "Pulp client cert"
|
3712
3753
|
msgstr ""
|
3713
3754
|
|
@@ -3718,7 +3759,7 @@ msgid "Pulp database connection issue at %s."
|
|
3718
3759
|
msgstr ""
|
3719
3760
|
|
3720
3761
|
msgid "Pulp database connection issue."
|
3721
|
-
msgstr ""
|
3762
|
+
msgstr "Pulp 데이터베이스 연결 문제가 발생했습니다."
|
3722
3763
|
|
3723
3764
|
msgid "Pulp disk space notification"
|
3724
3765
|
msgstr ""
|
@@ -3727,7 +3768,7 @@ msgid "Pulp does not appear to be running at %s."
|
|
3727
3768
|
msgstr ""
|
3728
3769
|
|
3729
3770
|
msgid "Pulp does not appear to be running."
|
3730
|
-
msgstr ""
|
3771
|
+
msgstr "Pulp가 실행되고 있지 않습니다."
|
3731
3772
|
|
3732
3773
|
msgid "Pulp export destination filepath"
|
3733
3774
|
msgstr ""
|
@@ -3736,19 +3777,19 @@ msgid "Pulp message bus connection issue at %s."
|
|
3736
3777
|
msgstr ""
|
3737
3778
|
|
3738
3779
|
msgid "Pulp message bus connection issue."
|
3739
|
-
msgstr ""
|
3780
|
+
msgstr "Pulp 메시지 버스 연결 문제가 발생했습니다."
|
3740
3781
|
|
3741
3782
|
msgid "Pulp node"
|
3742
|
-
msgstr ""
|
3783
|
+
msgstr "Pulp 노드"
|
3743
3784
|
|
3744
3785
|
msgid "Pulp redis connection issue at %s."
|
3745
3786
|
msgstr ""
|
3746
3787
|
|
3747
3788
|
msgid "Pulp server version"
|
3748
|
-
msgstr ""
|
3789
|
+
msgstr "Pulp 서버 버전"
|
3749
3790
|
|
3750
3791
|
msgid "Pulp storage"
|
3751
|
-
msgstr ""
|
3792
|
+
msgstr "Pulp 스토리지"
|
3752
3793
|
|
3753
3794
|
msgid "Pulp task error"
|
3754
3795
|
msgstr "Pulp 작업 오류 "
|
@@ -3756,37 +3797,8 @@ msgstr "Pulp 작업 오류 "
|
|
3756
3797
|
msgid "Pulpcore"
|
3757
3798
|
msgstr ""
|
3758
3799
|
|
3759
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3760
|
-
msgid "Puppet Environment"
|
3761
|
-
msgstr "Puppet 환경 "
|
3762
|
-
|
3763
|
-
msgid "Puppet Module"
|
3764
|
-
msgstr "Puppet 모듈 "
|
3765
|
-
|
3766
|
-
msgid ""
|
3767
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3768
|
-
" '%{name}'"
|
3769
|
-
msgstr ""
|
3770
|
-
|
3771
|
-
msgid ""
|
3772
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3773
|
-
" not exist"
|
3774
|
-
msgstr ""
|
3775
|
-
|
3776
|
-
msgid ""
|
3777
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3778
|
-
" exist"
|
3779
|
-
msgstr ""
|
3780
|
-
|
3781
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3782
|
-
msgid "Puppet Modules"
|
3783
|
-
msgstr "Puppet 모듈 "
|
3784
|
-
|
3785
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3786
|
-
msgstr "Puppet 모듈 충돌: '%{mod}'가 %{versions}에 있습니다."
|
3787
|
-
|
3788
3800
|
msgid "Quantity"
|
3789
|
-
msgstr ""
|
3801
|
+
msgstr "수량 "
|
3790
3802
|
|
3791
3803
|
msgid "Quantity must not be above ${pool.available}"
|
3792
3804
|
msgstr ""
|
@@ -3807,38 +3819,37 @@ msgid "Quantity to Allocate"
|
|
3807
3819
|
msgstr ""
|
3808
3820
|
|
3809
3821
|
msgid "RAM: %s GB"
|
3810
|
-
msgstr "RAM: %
|
3822
|
+
msgstr "RAM: %sGB"
|
3811
3823
|
|
3812
3824
|
msgid "RH Repos"
|
3813
3825
|
msgstr ""
|
3814
3826
|
|
3815
3827
|
msgid "RPM"
|
3828
|
+
msgstr "RPM"
|
3829
|
+
|
3830
|
+
msgid "RPM name"
|
3816
3831
|
msgstr ""
|
3817
3832
|
|
3818
|
-
# translation auto-copied from project RHN Satellite Installation Guide, version 5.6, document Importing_and_Synchronizing
|
3819
3833
|
msgid "RPMs"
|
3820
3834
|
msgstr "RPM"
|
3821
3835
|
|
3822
3836
|
msgid "Realm IDs"
|
3823
|
-
msgstr ""
|
3837
|
+
msgstr "영역 ID "
|
3824
3838
|
|
3825
3839
|
msgid "Reboot required"
|
3826
3840
|
msgstr ""
|
3827
3841
|
|
3828
3842
|
msgid "Recently Expired Subscriptions"
|
3829
|
-
msgstr ""
|
3843
|
+
msgstr "최근에 만료된 서브스크립션"
|
3830
3844
|
|
3831
3845
|
msgid "Recommended Repositories"
|
3832
3846
|
msgstr ""
|
3833
3847
|
|
3834
|
-
msgid "Red Hat"
|
3835
|
-
msgstr ""
|
3836
|
-
|
3837
3848
|
msgid "Red Hat CDN URL"
|
3838
3849
|
msgstr "Red Hat CDN URL"
|
3839
3850
|
|
3840
3851
|
msgid "Red Hat Provider Details"
|
3841
|
-
msgstr ""
|
3852
|
+
msgstr "Red Hat 공급자 정보 "
|
3842
3853
|
|
3843
3854
|
msgid "Red Hat Repositories"
|
3844
3855
|
msgstr "Red Hat 리포지터리 "
|
@@ -3853,7 +3864,7 @@ msgid "Red Hat repositories cannot be manipulated."
|
|
3853
3864
|
msgstr "Red Hat 리포지터리를 조작할 수 없습니다. "
|
3854
3865
|
|
3855
3866
|
msgid "Refresh"
|
3856
|
-
msgstr ""
|
3867
|
+
msgstr "새로고침 "
|
3857
3868
|
|
3858
3869
|
msgid "Refresh Manifest"
|
3859
3870
|
msgstr "매니페스트 새로 고침 "
|
@@ -3877,7 +3888,7 @@ msgid "Registry name pattern will result in invalid container image name of memb
|
|
3877
3888
|
msgstr ""
|
3878
3889
|
|
3879
3890
|
msgid "Reindex subscriptions"
|
3880
|
-
msgstr ""
|
3891
|
+
msgstr "서브스크립션 다시 인덱싱"
|
3881
3892
|
|
3882
3893
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
3883
3894
|
msgstr ""
|
@@ -3895,7 +3906,7 @@ msgid "Reload data"
|
|
3895
3906
|
msgstr "데이터 다시 불러오기 "
|
3896
3907
|
|
3897
3908
|
msgid "Remote action:"
|
3898
|
-
msgstr ""
|
3909
|
+
msgstr "원격 작업:"
|
3899
3910
|
|
3900
3911
|
msgid "Removal of package group(s) requested: %{groups}"
|
3901
3912
|
msgstr ""
|
@@ -3915,13 +3926,13 @@ msgstr "버전 및 연결 삭제 "
|
|
3915
3926
|
msgid "Remove a content view from an environment"
|
3916
3927
|
msgstr "환경에서 컨텐츠 뷰 삭제 "
|
3917
3928
|
|
3918
|
-
msgid "Remove
|
3919
|
-
msgstr "
|
3929
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
3930
|
+
msgstr ""
|
3920
3931
|
|
3921
3932
|
msgid "Remove components from the content view"
|
3922
3933
|
msgstr ""
|
3923
3934
|
|
3924
|
-
msgid "Remove content on one or more hosts"
|
3935
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
3925
3936
|
msgstr ""
|
3926
3937
|
|
3927
3938
|
msgid "Remove content view version"
|
@@ -3931,7 +3942,7 @@ msgid "Remove from Environment"
|
|
3931
3942
|
msgstr "환경에서 삭제 "
|
3932
3943
|
|
3933
3944
|
msgid "Remove hosts from the host collection"
|
3934
|
-
msgstr ""
|
3945
|
+
msgstr "호스트 컬렉션에서 호스트 삭제"
|
3935
3946
|
|
3936
3947
|
msgid "Remove lifecycle environments from the smart proxy"
|
3937
3948
|
msgstr ""
|
@@ -3961,10 +3972,10 @@ msgid "Remove products from sync plan"
|
|
3961
3972
|
msgstr "동기화 계획에서 제품 삭제 "
|
3962
3973
|
|
3963
3974
|
msgid "Remove subscriptions"
|
3964
|
-
msgstr ""
|
3975
|
+
msgstr "서브스크립션 삭제"
|
3965
3976
|
|
3966
3977
|
msgid "Remove subscriptions from %s"
|
3967
|
-
msgstr ""
|
3978
|
+
msgstr "%s에서 서브스크립션 삭제"
|
3968
3979
|
|
3969
3980
|
msgid "Remove subscriptions from one or more hosts"
|
3970
3981
|
msgstr ""
|
@@ -3979,16 +3990,14 @@ msgid "Removing Package..."
|
|
3979
3990
|
msgstr "패키지 삭제 중..."
|
3980
3991
|
|
3981
3992
|
msgid "Repo Type"
|
3982
|
-
msgstr ""
|
3993
|
+
msgstr "리포지터리 유형 "
|
3983
3994
|
|
3984
|
-
# translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author eukim
|
3985
3995
|
msgid "Repositories"
|
3986
3996
|
msgstr "리포지터리 "
|
3987
3997
|
|
3988
3998
|
msgid "Repositories from published Content Views are not allowed."
|
3989
3999
|
msgstr "공개된 컨텐츠 뷰에서 리포지터리는 허용되지 않습니다. "
|
3990
4000
|
|
3991
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
|
3992
4001
|
msgid "Repository"
|
3993
4002
|
msgstr "리포지터리 "
|
3994
4003
|
|
@@ -4008,7 +4017,7 @@ msgid "Repository Id associated with the kickstart repo used for provisioning"
|
|
4008
4017
|
msgstr ""
|
4009
4018
|
|
4010
4019
|
msgid "Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it."
|
4011
|
-
msgstr ""
|
4020
|
+
msgstr "게시된 컨텐츠 뷰에 이미 포함되었기 때문에 리포지터리를 삭제할 수 없습니다. 삭제하기 전에 이 리포지터리가 포함된 모든 컨텐츠 뷰 버전을 먼저 삭제하십시오."
|
4012
4021
|
|
4013
4022
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4014
4023
|
msgstr "리포지터리는 이미 승격되었기 때문에 이를 비활성화할 수 없습니다. "
|
@@ -4016,7 +4025,6 @@ msgstr "리포지터리는 이미 승격되었기 때문에 이를 비활성화
|
|
4016
4025
|
msgid "Repository content type must be 'yum' to export."
|
4017
4026
|
msgstr ""
|
4018
4027
|
|
4019
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
4020
4028
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4021
4029
|
msgstr "리포지터리가 이미 환경 %{to_env}에 있는 %{cv_name}에 복제되어 있습니다 "
|
4022
4030
|
|
@@ -4038,7 +4046,6 @@ msgstr "리포지터리를 찾을 수 없음 "
|
|
4038
4046
|
msgid "Repository set name to search on"
|
4039
4047
|
msgstr "검색할 리포지터리 세트 이름 "
|
4040
4048
|
|
4041
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
4042
4049
|
msgid "Repository sets are not available for custom products."
|
4043
4050
|
msgstr "리포지터리 세트는 사용자 정의 제품에서 사용할 수 없습니다."
|
4044
4051
|
|
@@ -4051,9 +4058,6 @@ msgstr ""
|
|
4051
4058
|
msgid "Requires Virt-Who"
|
4052
4059
|
msgstr ""
|
4053
4060
|
|
4054
|
-
msgid "Reset Puppet Environment"
|
4055
|
-
msgstr ""
|
4056
|
-
|
4057
4061
|
msgid "Resolve Traces"
|
4058
4062
|
msgstr ""
|
4059
4063
|
|
@@ -4061,7 +4065,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4061
4065
|
msgstr ""
|
4062
4066
|
|
4063
4067
|
msgid "Resource"
|
4064
|
-
msgstr ""
|
4068
|
+
msgstr "리소스"
|
4065
4069
|
|
4066
4070
|
msgid "Restart Services via Katello interface"
|
4067
4071
|
msgstr ""
|
@@ -4069,12 +4073,11 @@ msgstr ""
|
|
4069
4073
|
msgid "Restrict Composite Content View promotion"
|
4070
4074
|
msgstr ""
|
4071
4075
|
|
4072
|
-
# translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document chap-Uninstalling_Red_Hat_Satellite_Server_and_Capsule_Server
|
4073
4076
|
msgid "Result"
|
4074
4077
|
msgstr "결과 "
|
4075
4078
|
|
4076
4079
|
msgid "Retrieve a single errata for a host"
|
4077
|
-
msgstr ""
|
4080
|
+
msgstr "호스트에 대한 단일 에라타를 가져옵니다."
|
4078
4081
|
|
4079
4082
|
msgid "Return Red Hat (non-custom) products only"
|
4080
4083
|
msgstr ""
|
@@ -4122,10 +4125,10 @@ msgid "Return packages that can be added to the specified object. Only the valu
|
|
4122
4125
|
msgstr ""
|
4123
4126
|
|
4124
4127
|
msgid "Return subscriptions that match installed products of the specified host"
|
4125
|
-
msgstr ""
|
4128
|
+
msgstr "지정한 호스트의 설치된 제품과 일치하는 서브스크립션 반환"
|
4126
4129
|
|
4127
4130
|
msgid "Return subscriptions which do not overlap with a currently-attached subscription"
|
4128
|
-
msgstr ""
|
4131
|
+
msgstr "현재 연결된 서브스크립션과 중복되지 않는 서브스크립션 반환"
|
4129
4132
|
|
4130
4133
|
msgid "Return the content of a Content Credential, used directly by yum"
|
4131
4134
|
msgstr ""
|
@@ -4133,16 +4136,21 @@ msgstr ""
|
|
4133
4136
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4134
4137
|
msgstr "yum에 직접 사용되는 리포지터리 gpg 키의 컨텐츠를 반환 "
|
4135
4138
|
|
4136
|
-
msgid "
|
4139
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4137
4140
|
msgstr ""
|
4138
4141
|
|
4142
|
+
msgid "Role"
|
4143
|
+
msgstr "역할 "
|
4144
|
+
|
4139
4145
|
msgid "Role of host"
|
4140
4146
|
msgstr ""
|
4141
4147
|
|
4148
|
+
msgid "Roles"
|
4149
|
+
msgstr "역할 "
|
4150
|
+
|
4142
4151
|
msgid "Run Sync Plan:"
|
4143
4152
|
msgstr ""
|
4144
4153
|
|
4145
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
|
4146
4154
|
msgid "Running"
|
4147
4155
|
msgstr "실행 중 "
|
4148
4156
|
|
@@ -4159,18 +4167,17 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4159
4167
|
msgstr ""
|
4160
4168
|
|
4161
4169
|
msgid "Save"
|
4162
|
-
msgstr ""
|
4170
|
+
msgstr "저장"
|
4163
4171
|
|
4164
|
-
msgid "Schedule errata for installation"
|
4165
|
-
msgstr "
|
4172
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4173
|
+
msgstr ""
|
4166
4174
|
|
4167
4175
|
msgid "Search"
|
4168
|
-
msgstr ""
|
4176
|
+
msgstr "검색 "
|
4169
4177
|
|
4170
4178
|
msgid "Search pattern (defaults to '*')"
|
4171
4179
|
msgstr ""
|
4172
4180
|
|
4173
|
-
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
|
4174
4181
|
msgid "Search string"
|
4175
4182
|
msgstr "검색 문자열"
|
4176
4183
|
|
@@ -4183,32 +4190,29 @@ msgstr ""
|
|
4183
4190
|
msgid "Search string for hosts to perform an action on"
|
4184
4191
|
msgstr ""
|
4185
4192
|
|
4186
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4187
4193
|
msgid "Security"
|
4188
4194
|
msgstr "보안 "
|
4189
4195
|
|
4190
4196
|
msgid "Security errata applicable"
|
4191
|
-
msgstr ""
|
4197
|
+
msgstr "적용 가능한 보안 에라타"
|
4192
4198
|
|
4193
4199
|
msgid "Security errata installable"
|
4194
4200
|
msgstr ""
|
4195
4201
|
|
4196
4202
|
msgid "Select"
|
4197
|
-
msgstr ""
|
4203
|
+
msgstr "선택 "
|
4198
4204
|
|
4199
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
4200
4205
|
msgid "Select All"
|
4201
4206
|
msgstr "모두 선택 "
|
4202
4207
|
|
4203
4208
|
msgid "Select Content View"
|
4204
4209
|
msgstr "컨텐츠 뷰 선택 "
|
4205
4210
|
|
4206
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4207
4211
|
msgid "Select None"
|
4208
4212
|
msgstr "선택하지 않음 "
|
4209
4213
|
|
4210
4214
|
msgid "Select Organization"
|
4211
|
-
msgstr ""
|
4215
|
+
msgstr "조직 선택 "
|
4212
4216
|
|
4213
4217
|
msgid "Select Value"
|
4214
4218
|
msgstr ""
|
@@ -4222,7 +4226,6 @@ msgstr "조직 선택 "
|
|
4222
4226
|
msgid "Select an organization"
|
4223
4227
|
msgstr ""
|
4224
4228
|
|
4225
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
4226
4229
|
msgid "Select hosts to assign to %s"
|
4227
4230
|
msgstr "%s에 할당할 호스트 선택 "
|
4228
4231
|
|
@@ -4233,7 +4236,7 @@ msgid "Select the installation media that will be used to provision this host. C
|
|
4233
4236
|
msgstr ""
|
4234
4237
|
|
4235
4238
|
msgid "Service Level"
|
4236
|
-
msgstr ""
|
4239
|
+
msgstr "서비스 레벨 "
|
4237
4240
|
|
4238
4241
|
msgid "Service Level %s"
|
4239
4242
|
msgstr "서비스 레벨 %s"
|
@@ -4265,13 +4268,9 @@ msgstr ""
|
|
4265
4268
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4266
4269
|
msgstr ""
|
4267
4270
|
|
4268
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4269
|
-
msgstr ""
|
4270
|
-
|
4271
4271
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4272
4272
|
msgstr ""
|
4273
4273
|
|
4274
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4275
4274
|
msgid "Severity"
|
4276
4275
|
msgstr "중요도"
|
4277
4276
|
|
@@ -4287,9 +4286,6 @@ msgstr "컨텐츠 뷰 표시 "
|
|
4287
4286
|
msgid "Show a content view component"
|
4288
4287
|
msgstr ""
|
4289
4288
|
|
4290
|
-
msgid "Show a content view puppet module"
|
4291
|
-
msgstr "컨텐츠 뷰 puppet 모듈 표시 "
|
4292
|
-
|
4293
4289
|
msgid "Show a content view's history"
|
4294
4290
|
msgstr "컨텐츠 뷰의 기록 표시 "
|
4295
4291
|
|
@@ -4333,7 +4329,7 @@ msgid "Show releases available for the content host"
|
|
4333
4329
|
msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
|
4334
4330
|
|
4335
4331
|
msgid "Show the available repository types"
|
4336
|
-
msgstr ""
|
4332
|
+
msgstr "사용 가능한 리포지터리 유형 표시"
|
4337
4333
|
|
4338
4334
|
msgid "Shows status of Katello system and it's subcomponents"
|
4339
4335
|
msgstr ""
|
@@ -4360,12 +4356,11 @@ msgid "Skip metadata check on each repository on the smart proxy"
|
|
4360
4356
|
msgstr ""
|
4361
4357
|
|
4362
4358
|
msgid "Skipped pulp_auth check after failed pulp check"
|
4363
|
-
msgstr ""
|
4359
|
+
msgstr "실패한 pulp 검사 후 pulp_auth 검사를 건너뛰었습니다."
|
4364
4360
|
|
4365
4361
|
msgid "Smart proxy IDs"
|
4366
|
-
msgstr ""
|
4362
|
+
msgstr "스마트 프록시 ID "
|
4367
4363
|
|
4368
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4369
4364
|
msgid "Sockets: %s"
|
4370
4365
|
msgstr "소켓: %s"
|
4371
4366
|
|
@@ -4381,17 +4376,35 @@ msgstr ""
|
|
4381
4376
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4382
4377
|
msgstr ""
|
4383
4378
|
|
4384
|
-
msgid "
|
4379
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4380
|
+
msgstr ""
|
4381
|
+
|
4382
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4383
|
+
msgstr ""
|
4384
|
+
|
4385
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4386
|
+
msgstr ""
|
4387
|
+
|
4388
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4385
4389
|
msgstr ""
|
4386
4390
|
|
4387
|
-
msgid "Something went wrong while retrieving the
|
4391
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4392
|
+
msgstr ""
|
4393
|
+
|
4394
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4395
|
+
msgstr ""
|
4396
|
+
|
4397
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4398
|
+
msgstr ""
|
4399
|
+
|
4400
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4388
4401
|
msgstr ""
|
4389
4402
|
|
4390
4403
|
msgid "Sort field and order, eg. 'id DESC'"
|
4391
4404
|
msgstr ""
|
4392
4405
|
|
4393
4406
|
msgid "Source RPM"
|
4394
|
-
msgstr ""
|
4407
|
+
msgstr "소스 RPM"
|
4395
4408
|
|
4396
4409
|
msgid "Specify the list of units in each repo"
|
4397
4410
|
msgstr ""
|
@@ -4400,28 +4413,25 @@ msgid "Split the exported content into archives no greater than the specified si
|
|
4400
4413
|
msgstr ""
|
4401
4414
|
|
4402
4415
|
msgid "Stacking ID"
|
4403
|
-
msgstr ""
|
4416
|
+
msgstr "스태킹 ID"
|
4404
4417
|
|
4405
|
-
# translation auto-copied from project subscription-manager, version 1.10.10, document keys
|
4406
4418
|
msgid "Start Date"
|
4407
4419
|
msgstr "시작 날짜 "
|
4408
4420
|
|
4409
4421
|
msgid "Start Date and Time can't be blank"
|
4410
4422
|
msgstr "시작 날짜 및 시간을 비워둘 수 없음 "
|
4411
4423
|
|
4412
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
|
4413
4424
|
msgid "Start Time"
|
4414
4425
|
msgstr "시작 시간 "
|
4415
4426
|
|
4416
4427
|
msgid "Starts"
|
4417
|
-
msgstr ""
|
4428
|
+
msgstr "시작 "
|
4418
4429
|
|
4419
|
-
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
4420
4430
|
msgid "Status"
|
4421
4431
|
msgstr "상태 "
|
4422
4432
|
|
4423
4433
|
msgid "Storage"
|
4424
|
-
msgstr ""
|
4434
|
+
msgstr "스토리지"
|
4425
4435
|
|
4426
4436
|
msgid "Stream"
|
4427
4437
|
msgstr ""
|
@@ -4430,12 +4440,11 @@ msgid "Streams based on the host based on their status"
|
|
4430
4440
|
msgstr ""
|
4431
4441
|
|
4432
4442
|
msgid "Submit"
|
4433
|
-
msgstr ""
|
4443
|
+
msgstr "보내기"
|
4434
4444
|
|
4435
4445
|
msgid "Subnet IDs"
|
4436
|
-
msgstr ""
|
4446
|
+
msgstr "서브넷 ID "
|
4437
4447
|
|
4438
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
|
4439
4448
|
msgid "Subscription"
|
4440
4449
|
msgstr "서브스크립션 "
|
4441
4450
|
|
@@ -4443,16 +4452,16 @@ msgid "Subscription Allocation"
|
|
4443
4452
|
msgstr ""
|
4444
4453
|
|
4445
4454
|
msgid "Subscription Details"
|
4446
|
-
msgstr ""
|
4455
|
+
msgstr "서브스크립션 정보 "
|
4447
4456
|
|
4448
4457
|
msgid "Subscription ID"
|
4449
4458
|
msgstr "서브스크립션 ID"
|
4450
4459
|
|
4451
4460
|
msgid "Subscription Info"
|
4452
|
-
msgstr ""
|
4461
|
+
msgstr "서브스크립션 정보 "
|
4453
4462
|
|
4454
4463
|
msgid "Subscription Manifest"
|
4455
|
-
msgstr ""
|
4464
|
+
msgstr "서브스크립션 매니페스트"
|
4456
4465
|
|
4457
4466
|
msgid "Subscription Manifest validity check"
|
4458
4467
|
msgstr ""
|
@@ -4461,7 +4470,7 @@ msgid "Subscription Name"
|
|
4461
4470
|
msgstr ""
|
4462
4471
|
|
4463
4472
|
msgid "Subscription Pool id"
|
4464
|
-
msgstr ""
|
4473
|
+
msgstr "서브스크립션 풀 ID"
|
4465
4474
|
|
4466
4475
|
msgid "Subscription Pool uuid"
|
4467
4476
|
msgstr "서브스크립션 풀 uuid"
|
@@ -4476,7 +4485,7 @@ msgid "Subscription expiration notification"
|
|
4476
4485
|
msgstr ""
|
4477
4486
|
|
4478
4487
|
msgid "Subscription id is nil."
|
4479
|
-
msgstr ""
|
4488
|
+
msgstr "서브스크립션 ID가 nil입니다."
|
4480
4489
|
|
4481
4490
|
msgid "Subscription identifier"
|
4482
4491
|
msgstr "서브스크립션 id"
|
@@ -4497,10 +4506,10 @@ msgid "Subscription was not persisted - %{error_message}"
|
|
4497
4506
|
msgstr ""
|
4498
4507
|
|
4499
4508
|
msgid "Subscriptions"
|
4500
|
-
msgstr ""
|
4509
|
+
msgstr "서브스크립션 "
|
4501
4510
|
|
4502
4511
|
msgid "Subscriptions Expiring in 120 Days"
|
4503
|
-
msgstr ""
|
4512
|
+
msgstr "120일 후 서브스크립션 만료"
|
4504
4513
|
|
4505
4514
|
msgid "Subscriptions expiring soon"
|
4506
4515
|
msgstr ""
|
@@ -4518,7 +4527,7 @@ msgid "Success"
|
|
4518
4527
|
msgstr "성공 "
|
4519
4528
|
|
4520
4529
|
msgid "Successfully added %s Host(s)."
|
4521
|
-
msgstr ""
|
4530
|
+
msgstr "%s개의 호스트를 추가했습니다."
|
4522
4531
|
|
4523
4532
|
msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
|
4524
4533
|
msgstr "호스트 컬렉션 %{host_collection}에 %{count} 컨텐츠 호스트를 성공적으로 추가했습니다. "
|
@@ -4530,7 +4539,7 @@ msgid "Successfully initiated removal of %s product(s)"
|
|
4530
4539
|
msgstr "%s 제품의 삭제를 성공적으로 시작했습니다 "
|
4531
4540
|
|
4532
4541
|
msgid "Successfully removed %s Host(s)."
|
4533
|
-
msgstr ""
|
4542
|
+
msgstr "%s개의 호스트를 삭제했습니다."
|
4534
4543
|
|
4535
4544
|
msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
|
4536
4545
|
msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "
|
@@ -4538,32 +4547,32 @@ msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스
|
|
4538
4547
|
msgid "Successfully synchronized."
|
4539
4548
|
msgstr ""
|
4540
4549
|
|
4541
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4542
4550
|
msgid "Summary"
|
4543
4551
|
msgstr "요약 "
|
4544
4552
|
|
4545
4553
|
msgid "Support Type"
|
4546
|
-
msgstr ""
|
4554
|
+
msgstr "지원 유형 "
|
4547
4555
|
|
4548
4556
|
msgid "Supported Content Types"
|
4549
4557
|
msgstr ""
|
4550
4558
|
|
4551
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4552
4559
|
msgid "Sync Canceled"
|
4553
4560
|
msgstr "동기화 취소 "
|
4554
4561
|
|
4562
|
+
msgid "Sync Connection Timeout"
|
4563
|
+
msgstr ""
|
4564
|
+
|
4555
4565
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4556
4566
|
msgstr ""
|
4557
4567
|
|
4558
4568
|
msgid "Sync Incomplete"
|
4559
4569
|
msgstr "동기화가 완료되지 않았습니다 "
|
4560
4570
|
|
4561
|
-
# translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document Using_the_CloudForms_System_Engine_Dashboard
|
4562
4571
|
msgid "Sync Overview"
|
4563
4572
|
msgstr "동기화 개요 "
|
4564
4573
|
|
4565
4574
|
msgid "Sync Plan"
|
4566
|
-
msgstr ""
|
4575
|
+
msgstr "동기화 계획 "
|
4567
4576
|
|
4568
4577
|
msgid "Sync Plan: "
|
4569
4578
|
msgstr ""
|
@@ -4590,7 +4599,7 @@ msgid "Sync a repository"
|
|
4590
4599
|
msgstr "리포지터리 동기화 "
|
4591
4600
|
|
4592
4601
|
msgid "Sync all repositories for a product"
|
4593
|
-
msgstr ""
|
4602
|
+
msgstr "제품의 모든 리포지터리 동기화"
|
4594
4603
|
|
4595
4604
|
msgid "Sync capsule"
|
4596
4605
|
msgstr ""
|
@@ -4619,12 +4628,11 @@ msgstr ""
|
|
4619
4628
|
msgid "Synchronize"
|
4620
4629
|
msgstr "동기화 "
|
4621
4630
|
|
4622
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4623
4631
|
msgid "Synchronize Now"
|
4624
4632
|
msgstr "지금 동기화 "
|
4625
4633
|
|
4626
4634
|
msgid "Synchronize capsule content"
|
4627
|
-
msgstr ""
|
4635
|
+
msgstr "capsule 컨텐츠 동기화"
|
4628
4636
|
|
4629
4637
|
msgid "Synchronize repository"
|
4630
4638
|
msgstr "리포지터리 동기화 "
|
@@ -4647,9 +4655,12 @@ msgstr "동기화를 완료했습니다."
|
|
4647
4655
|
msgid "System Purpose"
|
4648
4656
|
msgstr ""
|
4649
4657
|
|
4650
|
-
msgid "
|
4658
|
+
msgid "System Status"
|
4651
4659
|
msgstr ""
|
4652
4660
|
|
4661
|
+
msgid "Tags"
|
4662
|
+
msgstr "태그"
|
4663
|
+
|
4653
4664
|
msgid "Task"
|
4654
4665
|
msgstr ""
|
4655
4666
|
|
@@ -4663,15 +4674,17 @@ msgid "Task detail"
|
|
4663
4674
|
msgstr ""
|
4664
4675
|
|
4665
4676
|
msgid "Temporary"
|
4666
|
-
msgstr ""
|
4677
|
+
msgstr "임시"
|
4667
4678
|
|
4668
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
4669
4679
|
msgid "The '%s' environment cannot contain a changeset!"
|
4670
4680
|
msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
|
4671
4681
|
|
4672
4682
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4673
4683
|
msgstr ""
|
4674
4684
|
|
4685
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4686
|
+
msgstr ""
|
4687
|
+
|
4675
4688
|
msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
|
4676
4689
|
msgstr ""
|
4677
4690
|
|
@@ -4702,6 +4715,12 @@ msgstr "새로 생성된 컨텐츠 뷰 버전 설명 "
|
|
4702
4715
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4703
4716
|
msgstr ""
|
4704
4717
|
|
4718
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4719
|
+
msgstr ""
|
4720
|
+
|
4721
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4722
|
+
msgstr ""
|
4723
|
+
|
4705
4724
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4706
4725
|
msgstr "에라타 필터 규칙 종료 날짜가 잘못된 형식 또는 유형으로 되어 있습니다."
|
4707
4726
|
|
@@ -4725,9 +4744,14 @@ msgid ""
|
|
4725
4744
|
" %{repos}"
|
4726
4745
|
msgstr ""
|
4727
4746
|
|
4728
|
-
msgid "
|
4747
|
+
msgid ""
|
4748
|
+
"The following repositories provided in the import metadata have an incorrect content type or provider type. Make sure the export and import repositories are of the same type before importing\n"
|
4749
|
+
" %{repos}"
|
4729
4750
|
msgstr ""
|
4730
4751
|
|
4752
|
+
msgid "The id of the host to alter"
|
4753
|
+
msgstr "변경할 호스트의 ID"
|
4754
|
+
|
4731
4755
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4732
4756
|
msgstr ""
|
4733
4757
|
|
@@ -4737,6 +4761,9 @@ msgstr ""
|
|
4737
4761
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4738
4762
|
msgstr ""
|
4739
4763
|
|
4764
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4765
|
+
msgstr ""
|
4766
|
+
|
4740
4767
|
msgid "The offset in the file where the content starts"
|
4741
4768
|
msgstr "컨텐츠가 시작하는 파일의 오프셋 "
|
4742
4769
|
|
@@ -4744,7 +4771,7 @@ msgid "The order to sort the results in. ['asc', 'desc'] Defaults to 'desc'."
|
|
4744
4771
|
msgstr ""
|
4745
4772
|
|
4746
4773
|
msgid "The page you are attempting to access requires selecting a specific organization."
|
4747
|
-
msgstr ""
|
4774
|
+
msgstr "액세스하려는 페이지에서 특정 조직을 선택해야 합니다."
|
4748
4775
|
|
4749
4776
|
msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
|
4750
4777
|
msgstr ""
|
@@ -4758,12 +4785,6 @@ msgstr "%{content_view}의 %{environment}으로의 승격이 완료되었습니
|
|
4758
4785
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4759
4786
|
msgstr "%{content_view}의 <b>%{environment}</b>으로의 승격이 완료되었습니다. %{count}개의 필요한 에라타를 호스트에 설치할 수 있습니다. "
|
4760
4787
|
|
4761
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4762
|
-
msgstr "puppet 환경 %{name}은(는) %{names}을 포함하여 %{count} 호스트 그룹에서 사용되고 있습니다 "
|
4763
|
-
|
4764
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4765
|
-
msgstr "puppet 환경 %{name}은(는) %{names}을 포함하여 %{count} 호스트에서 사용되고 있습니다 "
|
4766
|
-
|
4767
4788
|
msgid "The repository is already enabled"
|
4768
4789
|
msgstr "리포지터리가 이미 활성화되어 있습니다 "
|
4769
4790
|
|
@@ -4779,9 +4800,6 @@ msgstr ""
|
|
4779
4800
|
msgid "The requested traces were not found for this host"
|
4780
4801
|
msgstr ""
|
4781
4802
|
|
4782
|
-
msgid "The selected content source and lifecycle environment do not match"
|
4783
|
-
msgstr ""
|
4784
|
-
|
4785
4803
|
msgid ""
|
4786
4804
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
4787
4805
|
" content source, operating system, and architecture"
|
@@ -4799,6 +4817,9 @@ msgstr ""
|
|
4799
4817
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
4800
4818
|
msgstr "\"%s\"의 동기화가 완료되었습니다. 다음은 새 에라타 요약입니다. "
|
4801
4819
|
|
4820
|
+
msgid "The token key to use for authentication."
|
4821
|
+
msgstr ""
|
4822
|
+
|
4802
4823
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
4803
4824
|
msgstr "컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package' 및 'package_group."
|
4804
4825
|
|
@@ -4814,16 +4835,12 @@ msgstr ""
|
|
4814
4835
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4815
4836
|
msgstr "등록된 컨텐츠 호스트에 적용해야 하는 에라타가 없습니다. "
|
4816
4837
|
|
4817
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
4818
4838
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4819
4839
|
msgstr "활성화된 제품 또는 리포지터리가 없습니다. %{custom} 또는 %{redhat}을(를) 통해 활성화합니다."
|
4820
4840
|
|
4821
4841
|
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."
|
4822
4842
|
msgstr "환경이나 버전이 지정되어 있지 않거나 잘못된 환경/버전이 지정되어 있습니다. environment_ids 및 content_view_version_ids 매개 변수를 확인하십시오. "
|
4823
4843
|
|
4824
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
4825
|
-
msgstr ""
|
4826
|
-
|
4827
4844
|
msgid "There is no Manifest History to display."
|
4828
4845
|
msgstr ""
|
4829
4846
|
|
@@ -4837,7 +4854,7 @@ msgid "There was a problem retrieving Activation Key data from the server."
|
|
4837
4854
|
msgstr ""
|
4838
4855
|
|
4839
4856
|
msgid "There was an issue with the backend service %s: "
|
4840
|
-
msgstr ""
|
4857
|
+
msgstr "백엔드 서비스 %s에 문제가 있습니다: "
|
4841
4858
|
|
4842
4859
|
msgid "There's no running synchronization for this smart proxy."
|
4843
4860
|
msgstr ""
|
@@ -4852,17 +4869,14 @@ msgid "This Organization's subscription manifest has expired. Please import a ne
|
|
4852
4869
|
msgstr ""
|
4853
4870
|
|
4854
4871
|
msgid "This action doesn't support package groups"
|
4855
|
-
msgstr ""
|
4872
|
+
msgstr "이 작업은 패키지 그룹을 지원하지 않습니다."
|
4856
4873
|
|
4857
|
-
msgid "This action
|
4874
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
4858
4875
|
msgstr ""
|
4859
4876
|
|
4860
4877
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4861
4878
|
msgstr "이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."
|
4862
4879
|
|
4863
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
4864
|
-
msgstr ""
|
4865
|
-
|
4866
4880
|
msgid "This content view version doesn't have a history."
|
4867
4881
|
msgstr ""
|
4868
4882
|
|
@@ -4915,10 +4929,10 @@ msgid "This subscription is not relevant to the current organization."
|
|
4915
4929
|
msgstr ""
|
4916
4930
|
|
4917
4931
|
msgid "Time in seconds to wait for a Host to finish a remote action"
|
4918
|
-
msgstr ""
|
4932
|
+
msgstr "호스트가 원격 작업을 마칠 때까지 기다리는 시간(초)"
|
4919
4933
|
|
4920
4934
|
msgid "Time in seconds to wait for a Host to pickup a remote action"
|
4921
|
-
msgstr ""
|
4935
|
+
msgstr "호스트가 원격 작업을 시작할 때까지 기다리는 시간(초)"
|
4922
4936
|
|
4923
4937
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
4924
4938
|
msgstr ""
|
@@ -4926,19 +4940,18 @@ msgstr ""
|
|
4926
4940
|
msgid "Timestamp"
|
4927
4941
|
msgstr ""
|
4928
4942
|
|
4929
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4930
4943
|
msgid "Title"
|
4931
4944
|
msgstr "제목"
|
4932
4945
|
|
4933
4946
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4934
4947
|
msgstr ""
|
4935
4948
|
|
4936
|
-
msgid "Total module count: %s."
|
4937
|
-
msgstr "총 모듈 수: %s."
|
4938
|
-
|
4939
4949
|
msgid "Total steps: "
|
4940
4950
|
msgstr ""
|
4941
4951
|
|
4952
|
+
msgid "Total timeout in seconds for connections when syncing"
|
4953
|
+
msgstr ""
|
4954
|
+
|
4942
4955
|
msgid "Tracer profile uploaded successfully"
|
4943
4956
|
msgstr ""
|
4944
4957
|
|
@@ -4946,7 +4959,7 @@ msgid "Traces"
|
|
4946
4959
|
msgstr ""
|
4947
4960
|
|
4948
4961
|
msgid "Trigger an auto-attach of subscriptions"
|
4949
|
-
msgstr ""
|
4962
|
+
msgstr "서브스크립션 자동 첨부 트리거"
|
4950
4963
|
|
4951
4964
|
msgid "Trigger an auto-attach of subscriptions on one or more hosts"
|
4952
4965
|
msgstr ""
|
@@ -4955,7 +4968,7 @@ msgid "Try changing your search settings."
|
|
4955
4968
|
msgstr ""
|
4956
4969
|
|
4957
4970
|
msgid "Trying to cancel the synchronization..."
|
4958
|
-
msgstr ""
|
4971
|
+
msgstr "동기화를 취소하는 중..."
|
4959
4972
|
|
4960
4973
|
msgid "Type"
|
4961
4974
|
msgstr ""
|
@@ -4967,7 +4980,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
4967
4980
|
msgstr ""
|
4968
4981
|
|
4969
4982
|
msgid "UUID"
|
4970
|
-
msgstr ""
|
4983
|
+
msgstr "UUID"
|
4971
4984
|
|
4972
4985
|
msgid "UUID of the consumer"
|
4973
4986
|
msgstr ""
|
@@ -4985,10 +4998,10 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
4985
4998
|
msgstr ""
|
4986
4999
|
|
4987
5000
|
msgid "Unable to connect. Got: %s"
|
4988
|
-
msgstr ""
|
5001
|
+
msgstr "연결할 수 없습니다. 오류 메시지: %s"
|
4989
5002
|
|
4990
5003
|
msgid "Unable to detect pulp storage"
|
4991
|
-
msgstr ""
|
5004
|
+
msgstr "pulp 스토리지를 감지할 수 없습니다."
|
4992
5005
|
|
4993
5006
|
msgid "Unable to detect puppet path"
|
4994
5007
|
msgstr ""
|
@@ -4999,13 +5012,13 @@ msgstr ""
|
|
4999
5012
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5000
5013
|
msgstr ""
|
5001
5014
|
|
5002
|
-
msgid "Unable to
|
5015
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5003
5016
|
msgstr ""
|
5004
5017
|
|
5005
|
-
msgid "Unable to
|
5018
|
+
msgid "Unable to get users"
|
5006
5019
|
msgstr ""
|
5007
5020
|
|
5008
|
-
msgid "Unable to
|
5021
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5009
5022
|
msgstr ""
|
5010
5023
|
|
5011
5024
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5024,11 +5037,17 @@ msgid "Unable to send errata e-mail notification: %{error}"
|
|
5024
5037
|
msgstr ""
|
5025
5038
|
|
5026
5039
|
msgid "Unable to sync repo. This repository does not have a feed url."
|
5027
|
-
msgstr ""
|
5040
|
+
msgstr "리포지터리를 동기화할 수 없습니다. 이 리포지터리에는 피드 URL이 없습니다."
|
5028
5041
|
|
5029
5042
|
msgid "Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url."
|
5030
5043
|
msgstr "리포지터리를 동기화할 수 없습니다. 동기화할 권한이 없거나 선택한 리포지터리에 피드 URL이 없을 수 있습니다. "
|
5031
5044
|
|
5045
|
+
msgid "Unable to update the repository list"
|
5046
|
+
msgstr ""
|
5047
|
+
|
5048
|
+
msgid "Unable to update the user-repository mapping"
|
5049
|
+
msgstr ""
|
5050
|
+
|
5032
5051
|
msgid "Unapplied Errata"
|
5033
5052
|
msgstr "적용되지 않은 에라타 "
|
5034
5053
|
|
@@ -5039,15 +5058,14 @@ msgid "Unattach a subscription"
|
|
5039
5058
|
msgstr "서브스크립션 할당 해제 "
|
5040
5059
|
|
5041
5060
|
msgid "Unentitled"
|
5042
|
-
msgstr ""
|
5061
|
+
msgstr "인타이틀먼트가 없음"
|
5043
5062
|
|
5044
5063
|
msgid "Unfiltered params array: %s."
|
5045
5064
|
msgstr ""
|
5046
5065
|
|
5047
|
-
msgid "Uninstall packages remotely"
|
5048
|
-
msgstr "
|
5066
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5067
|
+
msgstr ""
|
5049
5068
|
|
5050
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5051
5069
|
msgid "Unknown"
|
5052
5070
|
msgstr "알 수 없음 "
|
5053
5071
|
|
@@ -5055,19 +5073,19 @@ msgid "Unknown Action"
|
|
5055
5073
|
msgstr ""
|
5056
5074
|
|
5057
5075
|
msgid "Unknown errata status"
|
5058
|
-
msgstr ""
|
5076
|
+
msgstr "알 수 없는 에라타 상태"
|
5059
5077
|
|
5060
5078
|
msgid "Unknown or Unregistered"
|
5061
5079
|
msgstr ""
|
5062
5080
|
|
5063
5081
|
msgid "Unknown subscription status"
|
5064
|
-
msgstr ""
|
5082
|
+
msgstr "알 수 없는 서브스크립션 상태"
|
5065
5083
|
|
5066
5084
|
msgid "Unknown traces status"
|
5067
5085
|
msgstr ""
|
5068
5086
|
|
5069
5087
|
msgid "Unlimited"
|
5070
|
-
msgstr ""
|
5088
|
+
msgstr "제한 없음 "
|
5071
5089
|
|
5072
5090
|
msgid "Unregister host %s before assigning an organization"
|
5073
5091
|
msgstr ""
|
@@ -5084,7 +5102,6 @@ msgstr ""
|
|
5084
5102
|
msgid "Unsubscribed hypervisor"
|
5085
5103
|
msgstr ""
|
5086
5104
|
|
5087
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
5088
5105
|
msgid "Unsupported URL protocol %s."
|
5089
5106
|
msgstr "지원되지 않는 URL 프로토콜 %s입니다."
|
5090
5107
|
|
@@ -5121,9 +5138,6 @@ msgstr "필터 규칙을 업데이트합니다. 포함된 매개 변수는 필
|
|
5121
5138
|
msgid "Update a host collection"
|
5122
5139
|
msgstr "호스트 컬렉션 업데이트 "
|
5123
5140
|
|
5124
|
-
msgid "Update a puppet module associated with the content view"
|
5125
|
-
msgstr "컨텐츠 뷰에 연결된 puppet 모듈 업데이트 "
|
5126
|
-
|
5127
5141
|
msgid "Update a repository"
|
5128
5142
|
msgstr "리포지터리 업데이트 "
|
5129
5143
|
|
@@ -5139,17 +5153,17 @@ msgstr "환경 업데이트 "
|
|
5139
5153
|
msgid "Update an environment in an organization"
|
5140
5154
|
msgstr "조직에 있는 환경 업데이트 "
|
5141
5155
|
|
5142
|
-
msgid "Update content on one or more hosts"
|
5156
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5143
5157
|
msgstr ""
|
5144
5158
|
|
5145
5159
|
msgid "Update content urls"
|
5146
5160
|
msgstr ""
|
5147
5161
|
|
5148
5162
|
msgid "Update for host"
|
5149
|
-
msgstr ""
|
5163
|
+
msgstr "호스트에 대한 업데이트"
|
5150
5164
|
|
5151
5165
|
msgid "Update for host %s"
|
5152
|
-
msgstr ""
|
5166
|
+
msgstr "%s 호스트에 대한 업데이트"
|
5153
5167
|
|
5154
5168
|
msgid "Update http proxy"
|
5155
5169
|
msgstr ""
|
@@ -5181,8 +5195,8 @@ msgstr ""
|
|
5181
5195
|
msgid "Update package via Katello interface"
|
5182
5196
|
msgstr ""
|
5183
5197
|
|
5184
|
-
msgid "Update packages remotely"
|
5185
|
-
msgstr "
|
5198
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5199
|
+
msgstr ""
|
5186
5200
|
|
5187
5201
|
msgid "Update redhat repository"
|
5188
5202
|
msgstr ""
|
@@ -5206,7 +5220,7 @@ msgid "Update the quantity of one or more subscriptions on an upstream allocatio
|
|
5206
5220
|
msgstr ""
|
5207
5221
|
|
5208
5222
|
msgid "Updated"
|
5209
|
-
msgstr ""
|
5223
|
+
msgstr "업데이트 일시 "
|
5210
5224
|
|
5211
5225
|
msgid "Updates"
|
5212
5226
|
msgstr ""
|
@@ -5286,6 +5300,9 @@ msgstr ""
|
|
5286
5300
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5287
5301
|
msgstr ""
|
5288
5302
|
|
5303
|
+
msgid "User"
|
5304
|
+
msgstr "사용자 "
|
5305
|
+
|
5289
5306
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5290
5307
|
msgstr "사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "
|
5291
5308
|
|
@@ -5293,7 +5310,7 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
|
|
5293
5310
|
msgstr "사용자 '%{user}'는 조직 '%{organization}'에 속해 있지 않습니다. "
|
5294
5311
|
|
5295
5312
|
msgid "User IDs"
|
5296
|
-
msgstr ""
|
5313
|
+
msgstr "사용자 ID"
|
5297
5314
|
|
5298
5315
|
msgid "User must be logged in."
|
5299
5316
|
msgstr "사용자는 로그인해야 합니다. "
|
@@ -5305,7 +5322,7 @@ msgid "Username to access URL"
|
|
5305
5322
|
msgstr ""
|
5306
5323
|
|
5307
5324
|
msgid "Valid"
|
5308
|
-
msgstr ""
|
5325
|
+
msgstr "유효 "
|
5309
5326
|
|
5310
5327
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5311
5328
|
msgstr ""
|
@@ -5320,19 +5337,20 @@ msgid "Verify checksum of repository contents"
|
|
5320
5337
|
msgstr ""
|
5321
5338
|
|
5322
5339
|
msgid "Version"
|
5323
|
-
msgstr ""
|
5340
|
+
msgstr "버전 "
|
5324
5341
|
|
5325
5342
|
msgid "Versions"
|
5343
|
+
msgstr "버전 "
|
5344
|
+
|
5345
|
+
msgid "Versions will appear here when the content view is published."
|
5326
5346
|
msgstr ""
|
5327
5347
|
|
5328
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
5329
5348
|
msgid "View %{view} has not been promoted to %{env}"
|
5330
5349
|
msgstr "보기 %{view}가 %{env}에 승격되었습니다"
|
5331
5350
|
|
5332
5351
|
msgid "View a report of the affected hosts"
|
5333
5352
|
msgstr ""
|
5334
5353
|
|
5335
|
-
# translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author eukim
|
5336
5354
|
msgid "Virtual"
|
5337
5355
|
msgstr "가상 "
|
5338
5356
|
|
@@ -5343,19 +5361,19 @@ msgid "When registering a host via subscription-manager, force use the specified
|
|
5343
5361
|
msgstr ""
|
5344
5362
|
|
5345
5363
|
msgid "When set to 'True' repository types that are creatable will be returned"
|
5346
|
-
msgstr ""
|
5364
|
+
msgstr "'True'로 설정할 경우 생성 가능한 리포지터리 유형이 반환됩니다."
|
5347
5365
|
|
5348
5366
|
msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
|
5349
5367
|
msgstr ""
|
5350
5368
|
|
5351
5369
|
msgid "Whether or not the host collection may have unlimited hosts"
|
5352
|
-
msgstr ""
|
5370
|
+
msgstr "호스트 컬렉션에 호스트가 무제한 포함되는지 여부"
|
5353
5371
|
|
5354
5372
|
msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
|
5355
5373
|
msgstr ""
|
5356
5374
|
|
5357
5375
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
5358
|
-
msgstr ""
|
5376
|
+
msgstr "일부 작업을 수행하기 전에 pulp 및 candlepin와 같은 백엔드 서비스의 상태를 확인할지 여부입니다."
|
5359
5377
|
|
5360
5378
|
msgid "Whether or not to regenerate the repository on disk. Default: true"
|
5361
5379
|
msgstr ""
|
@@ -5367,10 +5385,10 @@ msgid "Whether or not to sync an external capsule after upload. Default: true"
|
|
5367
5385
|
msgstr ""
|
5368
5386
|
|
5369
5387
|
msgid "Whether to include available content attribute in results"
|
5370
|
-
msgstr ""
|
5388
|
+
msgstr "사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"
|
5371
5389
|
|
5372
5390
|
msgid "Workers"
|
5373
|
-
msgstr ""
|
5391
|
+
msgstr "Worker"
|
5374
5392
|
|
5375
5393
|
msgid "Wrong content type submitted."
|
5376
5394
|
msgstr ""
|
@@ -5379,7 +5397,7 @@ msgid "Yay empty state"
|
|
5379
5397
|
msgstr ""
|
5380
5398
|
|
5381
5399
|
msgid "Yes"
|
5382
|
-
msgstr ""
|
5400
|
+
msgstr "예 "
|
5383
5401
|
|
5384
5402
|
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'."
|
5385
5403
|
msgstr ""
|
@@ -5394,7 +5412,7 @@ msgid "You can check sync status for repositories only in the library lifecycle
|
|
5394
5412
|
msgstr "라이브러리에 있는 라이프 사이클 환경에서만 리포지터리의 동기화 상태를 확인할 수 있습니다. "
|
5395
5413
|
|
5396
5414
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5397
|
-
msgstr ""
|
5415
|
+
msgstr "호스트 컬렉션 '%{host_collection}'에 %{max_hosts}개보다 많은 호스트를 연결할 수 없습니다."
|
5398
5416
|
|
5399
5417
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5400
5418
|
msgstr "조직의 부모를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "
|
@@ -5408,9 +5426,15 @@ msgstr ""
|
|
5408
5426
|
msgid "You currently don't have any filters for this content view."
|
5409
5427
|
msgstr ""
|
5410
5428
|
|
5429
|
+
msgid "You currently don't have any history for this content view."
|
5430
|
+
msgstr ""
|
5431
|
+
|
5411
5432
|
msgid "You currently don't have any repositories to add to this content view."
|
5412
5433
|
msgstr ""
|
5413
5434
|
|
5435
|
+
msgid "You currently don't have any versions for this content view."
|
5436
|
+
msgstr ""
|
5437
|
+
|
5414
5438
|
msgid "You do not have permissions to delete %s"
|
5415
5439
|
msgstr "%s을(를) 삭제할 권한이 없습니다 "
|
5416
5440
|
|
@@ -5442,7 +5466,7 @@ msgid "Your search query was invalid. Please revise it and try again. The full e
|
|
5442
5466
|
msgstr ""
|
5443
5467
|
|
5444
5468
|
msgid "Yum Metadata: %s"
|
5445
|
-
msgstr ""
|
5469
|
+
msgstr "Yum 메타데이터: %s"
|
5446
5470
|
|
5447
5471
|
msgid "a deb"
|
5448
5472
|
msgstr ""
|
@@ -5459,6 +5483,9 @@ msgstr "Docker 태그"
|
|
5459
5483
|
msgid "a file"
|
5460
5484
|
msgstr ""
|
5461
5485
|
|
5486
|
+
msgid "a future release"
|
5487
|
+
msgstr ""
|
5488
|
+
|
5462
5489
|
msgid "a module stream"
|
5463
5490
|
msgstr ""
|
5464
5491
|
|
@@ -5468,9 +5495,6 @@ msgstr "패키지 "
|
|
5468
5495
|
msgid "a package group"
|
5469
5496
|
msgstr "패키지 그룹 "
|
5470
5497
|
|
5471
|
-
msgid "a puppet module"
|
5472
|
-
msgstr "Puppet 모듈 "
|
5473
|
-
|
5474
5498
|
msgid "actions not found"
|
5475
5499
|
msgstr ""
|
5476
5500
|
|
@@ -5487,7 +5511,7 @@ msgid "add all module streams without errata to the included/excluded list. (mod
|
|
5487
5511
|
msgstr ""
|
5488
5512
|
|
5489
5513
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5490
|
-
msgstr ""
|
5514
|
+
msgstr "모든 패키지를 에라타 없이 포함/제외된 목록에 추가합니다(패키지 필터만 해당)."
|
5491
5515
|
|
5492
5516
|
msgid "all packages"
|
5493
5517
|
msgstr "모든 패키지 "
|
@@ -5501,6 +5525,9 @@ msgstr "모든 패키지 업데이트 실패 "
|
|
5501
5525
|
msgid "allow unauthenticed pull of container images"
|
5502
5526
|
msgstr ""
|
5503
5527
|
|
5528
|
+
msgid "already belongs to the content view"
|
5529
|
+
msgstr ""
|
5530
|
+
|
5504
5531
|
msgid "already taken"
|
5505
5532
|
msgstr "이미 사용되고 있습니다 "
|
5506
5533
|
|
@@ -5520,10 +5547,7 @@ msgid "are only allowed for Yum repositories."
|
|
5520
5547
|
msgstr ""
|
5521
5548
|
|
5522
5549
|
msgid "attempted to sync without a feed URL"
|
5523
|
-
msgstr ""
|
5524
|
-
|
5525
|
-
msgid "author of the puppet module"
|
5526
|
-
msgstr "puppet 모듈 저자 "
|
5550
|
+
msgstr "피드 URL 없이 동기화를 시도했습니다."
|
5527
5551
|
|
5528
5552
|
msgid "auto attach subscriptions upon registration"
|
5529
5553
|
msgstr "등록 시 서브스크립션을 자동으로 첨부 "
|
@@ -5543,7 +5567,6 @@ msgstr ""
|
|
5543
5567
|
msgid "cannot be a binary file."
|
5544
5568
|
msgstr "바이너리 파일을 지정할 수 없습니다. "
|
5545
5569
|
|
5546
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
5547
5570
|
msgid "cannot be blank"
|
5548
5571
|
msgstr "빈 칸으로 비워 둘 수 없습니다 "
|
5549
5572
|
|
@@ -5572,7 +5595,7 @@ msgid "cannot be set for non-ostree repositories."
|
|
5572
5595
|
msgstr ""
|
5573
5596
|
|
5574
5597
|
msgid "cannot be set for non-yum repositories."
|
5575
|
-
msgstr ""
|
5598
|
+
msgstr "비yum 리포지터리에 대해 설정할 수 없습니다."
|
5576
5599
|
|
5577
5600
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5578
5601
|
msgstr "ASCII 영숫자, '_', '-' 이외의 문자를 포함할 수 없습니다."
|
@@ -5586,24 +5609,14 @@ msgstr "복합적인 뷰의 경우 필터를 포함할 수 없습니다 "
|
|
5586
5609
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5587
5610
|
msgstr "컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할 수 없습니다 "
|
5588
5611
|
|
5589
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
5590
5612
|
msgid "cannot contain more than %s characters"
|
5591
5613
|
msgstr "%s 자 이상을 포함시킬 수 없습니다 "
|
5592
5614
|
|
5593
5615
|
msgid "checking Candlepin task status"
|
5594
|
-
msgstr ""
|
5616
|
+
msgstr "Candlepin 태스크 상태를 확인하는 중"
|
5595
5617
|
|
5596
5618
|
msgid "checking Pulp task status"
|
5597
|
-
msgstr ""
|
5598
|
-
|
5599
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5600
|
-
msgstr ""
|
5601
|
-
|
5602
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5603
|
-
msgstr ""
|
5604
|
-
|
5605
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5606
|
-
msgstr ""
|
5619
|
+
msgstr "Pulp 태스크 상태를 확인하는 중"
|
5607
5620
|
|
5608
5621
|
msgid "composite content view identifier"
|
5609
5622
|
msgstr ""
|
@@ -5617,7 +5630,7 @@ msgstr ""
|
|
5617
5630
|
msgid "content release version"
|
5618
5631
|
msgstr "컨텐츠 릴리즈 버전 "
|
5619
5632
|
|
5620
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5633
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5621
5634
|
msgstr ""
|
5622
5635
|
|
5623
5636
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5666,7 +5679,7 @@ msgid "content view versions to compare"
|
|
5666
5679
|
msgstr "비교할 컨텐츠 뷰 버전 "
|
5667
5680
|
|
5668
5681
|
msgid "create a filter for a content view"
|
5669
|
-
msgstr ""
|
5682
|
+
msgstr "컨텐츠 뷰의 필터 생성"
|
5670
5683
|
|
5671
5684
|
msgid "deb Packages"
|
5672
5685
|
msgstr ""
|
@@ -5678,9 +5691,8 @@ msgid "default package names to include in the package group"
|
|
5678
5691
|
msgstr ""
|
5679
5692
|
|
5680
5693
|
msgid "delete a filter"
|
5681
|
-
msgstr ""
|
5694
|
+
msgstr "필터 삭제"
|
5682
5695
|
|
5683
|
-
# translation auto-copied from project anaconda, version 19.31.34, document anaconda
|
5684
5696
|
msgid "description"
|
5685
5697
|
msgstr "설명 "
|
5686
5698
|
|
@@ -5742,7 +5754,7 @@ msgid "erratum: id"
|
|
5742
5754
|
msgstr "에라타: ID "
|
5743
5755
|
|
5744
5756
|
msgid "erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'"
|
5745
|
-
msgstr ""
|
5757
|
+
msgstr "에라타: 에라타의 '발급 날짜' 또는 '업데이트 날짜' 열을 사용하여 검색합니다. 값이 '발급'/'업데이트'되었습니다."
|
5746
5758
|
|
5747
5759
|
msgid "erratum: start date (YYYY-MM-DD)"
|
5748
5760
|
msgstr "에라타: 시작일 (YYYY-MM-DD) "
|
@@ -5760,7 +5772,7 @@ msgid "filter by sync date"
|
|
5760
5772
|
msgstr "동기화 날짜에 따라 필터링 "
|
5761
5773
|
|
5762
5774
|
msgid "filter content view filters by name"
|
5763
|
-
msgstr ""
|
5775
|
+
msgstr "이름별로 컨텐츠 뷰 필터링"
|
5764
5776
|
|
5765
5777
|
msgid "filter identifier"
|
5766
5778
|
msgstr "필터 ID "
|
@@ -5775,18 +5787,17 @@ msgid "force content view promotion and bypass lifecycle environment restriction
|
|
5775
5787
|
msgstr "컨텐츠 뷰 승격 강제 및 라이프 사이클 환경 제한을 무시 "
|
5776
5788
|
|
5777
5789
|
msgid "foreman-tasks service not running or is not ready yet"
|
5778
|
-
msgstr ""
|
5790
|
+
msgstr "foreman-tasks 서비스가 실행 중이 아니거나 아직 준비되지 않았습니다."
|
5779
5791
|
|
5780
5792
|
msgid "has already been taken"
|
5781
5793
|
msgstr "이미 사용되고 있습니다"
|
5782
5794
|
|
5783
5795
|
msgid "has already been taken for a product in this organization."
|
5784
|
-
msgstr ""
|
5796
|
+
msgstr "이 조직의 제품에 대해 이미 사용되고 있습니다."
|
5785
5797
|
|
5786
5798
|
msgid "has already been taken for this product."
|
5787
5799
|
msgstr "제품에 대해 이미 사용되고 있습니다. "
|
5788
5800
|
|
5789
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5790
5801
|
msgid "here"
|
5791
5802
|
msgstr "여기 "
|
5792
5803
|
|
@@ -5800,7 +5811,7 @@ msgid "how often synchronization should run"
|
|
5800
5811
|
msgstr "동기화 실행 빈도 "
|
5801
5812
|
|
5802
5813
|
msgid "id of a host"
|
5803
|
-
msgstr ""
|
5814
|
+
msgstr "호스트 ID"
|
5804
5815
|
|
5805
5816
|
msgid "id of host"
|
5806
5817
|
msgstr ""
|
@@ -5821,10 +5832,10 @@ msgid "if true, Katello will verify the upstream url's SSL certifcates are signe
|
|
5821
5832
|
msgstr ""
|
5822
5833
|
|
5823
5834
|
msgid "initiating Candlepin task"
|
5824
|
-
msgstr ""
|
5835
|
+
msgstr "Candlepin 태스크를 시작하는 중"
|
5825
5836
|
|
5826
5837
|
msgid "initiating Pulp task"
|
5827
|
-
msgstr ""
|
5838
|
+
msgstr "Pulp 태스크를 시작하는 중"
|
5828
5839
|
|
5829
5840
|
msgid "installing errata..."
|
5830
5841
|
msgstr "에라타 설치 중..."
|
@@ -5872,7 +5883,7 @@ msgid "limit to only repositories with this download policy"
|
|
5872
5883
|
msgstr ""
|
5873
5884
|
|
5874
5885
|
msgid "list filters"
|
5875
|
-
msgstr ""
|
5886
|
+
msgstr "필터 나열"
|
5876
5887
|
|
5877
5888
|
msgid "list of packages names"
|
5878
5889
|
msgstr "패키지 이름 목록 "
|
@@ -5887,7 +5898,7 @@ msgid "mandatory package names to include in the package group"
|
|
5887
5898
|
msgstr ""
|
5888
5899
|
|
5889
5900
|
msgid "max_hosts must be given a value if this host collection is not unlimited."
|
5890
|
-
msgstr ""
|
5901
|
+
msgstr "무제한 호스트 컬렉션이 아닌 경우 max_hosts에 값을 지정해야 합니다."
|
5891
5902
|
|
5892
5903
|
msgid "maximum number of registered content hosts"
|
5893
5904
|
msgstr "등록된 최대 컨텐츠 호스트 수 "
|
@@ -5895,14 +5906,8 @@ msgstr "등록된 최대 컨텐츠 호스트 수 "
|
|
5895
5906
|
msgid "maximum size of each ISO in MB"
|
5896
5907
|
msgstr ""
|
5897
5908
|
|
5898
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5899
|
-
msgstr ""
|
5900
|
-
|
5901
5909
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5902
|
-
msgstr ""
|
5903
|
-
|
5904
|
-
msgid "module name to restrict modules for"
|
5905
|
-
msgstr "모듈을 제한하기 위한 모듈 이름 "
|
5910
|
+
msgstr "호스트 컬렉션에 연결된 호스트의 수보다 적을 수 없습니다."
|
5906
5911
|
|
5907
5912
|
msgid "module stream ids"
|
5908
5913
|
msgstr ""
|
@@ -5925,7 +5930,6 @@ msgstr ""
|
|
5925
5930
|
msgid "must be unique within one organization"
|
5926
5931
|
msgstr "하나의 조직 내에서 고유한 것이어야 함 "
|
5927
5932
|
|
5928
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
5929
5933
|
msgid "must contain '%s'"
|
5930
5934
|
msgstr "'%s'을 포함해야 합니다"
|
5931
5935
|
|
@@ -5965,12 +5969,12 @@ msgstr "필터 이름 "
|
|
5965
5969
|
msgid "name of the organization"
|
5966
5970
|
msgstr "조직 이름 "
|
5967
5971
|
|
5968
|
-
msgid "name of the puppet module"
|
5969
|
-
msgstr "puppet 모듈 이름 "
|
5970
|
-
|
5971
5972
|
msgid "name of the repository"
|
5972
5973
|
msgstr "리포지터리 이름 "
|
5973
5974
|
|
5975
|
+
msgid "name of the subscription"
|
5976
|
+
msgstr ""
|
5977
|
+
|
5974
5978
|
msgid "name: %s doesn't exist "
|
5975
5979
|
msgstr "이름: %s이 존재하지 않습니다 "
|
5976
5980
|
|
@@ -5981,7 +5985,7 @@ msgid "new name to be given to the environment"
|
|
5981
5985
|
msgstr "환경에 지정할 새 이름 "
|
5982
5986
|
|
5983
5987
|
msgid "no"
|
5984
|
-
msgstr ""
|
5988
|
+
msgstr "no"
|
5985
5989
|
|
5986
5990
|
msgid "no global default"
|
5987
5991
|
msgstr ""
|
@@ -5989,13 +5993,15 @@ msgstr ""
|
|
5989
5993
|
msgid "obtain manifest history for subscriptions"
|
5990
5994
|
msgstr "서브스크립션의 매니페스트 기록 취득 "
|
5991
5995
|
|
5992
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
5993
5996
|
msgid "of environment must be unique within one organization"
|
5994
5997
|
msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "
|
5995
5998
|
|
5996
5999
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
5997
6000
|
msgstr ""
|
5998
6001
|
|
6002
|
+
msgid "only show the repositories readable by this user with this username"
|
6003
|
+
msgstr ""
|
6004
|
+
|
5999
6005
|
msgid "optional package names to include in the package group"
|
6000
6006
|
msgstr ""
|
6001
6007
|
|
@@ -6035,6 +6041,9 @@ msgstr "패키지: 버전 "
|
|
6035
6041
|
msgid "package_ids is not an array"
|
6036
6042
|
msgstr "package_ids는 배열이 아닙니다 "
|
6037
6043
|
|
6044
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6045
|
+
msgstr ""
|
6046
|
+
|
6038
6047
|
msgid "pattern for container image names"
|
6039
6048
|
msgstr ""
|
6040
6049
|
|
@@ -6056,12 +6065,6 @@ msgstr ""
|
|
6056
6065
|
msgid "product numeric identifier"
|
6057
6066
|
msgstr "숫자로된 제품 ID "
|
6058
6067
|
|
6059
|
-
msgid "puppet module ID"
|
6060
|
-
msgstr "Puppet 모듈 ID"
|
6061
|
-
|
6062
|
-
msgid "puppet_module_ids is not an array"
|
6063
|
-
msgstr "puppet_module_ids는 배열이 아닙니다 "
|
6064
|
-
|
6065
6068
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6066
6069
|
msgstr ""
|
6067
6070
|
|
@@ -6123,16 +6126,16 @@ msgid "show archived repositories"
|
|
6123
6126
|
msgstr ""
|
6124
6127
|
|
6125
6128
|
msgid "show filter info"
|
6126
|
-
msgstr ""
|
6129
|
+
msgstr "필터 정보 표시"
|
6127
6130
|
|
6128
6131
|
msgid "show repositories in Library and the default content view"
|
6129
6132
|
msgstr "라이브러리 및 기본값 컨텐츠 뷰에서 리포지터리 표시 "
|
6130
6133
|
|
6131
6134
|
msgid "some executors are not responding, check %{status_url}"
|
6132
|
-
msgstr ""
|
6135
|
+
msgstr "일부 실행자가 응답하지 않습니다. %{status_url}을(를) 확인하십시오."
|
6133
6136
|
|
6134
6137
|
msgid "source URL is malformed"
|
6135
|
-
msgstr ""
|
6138
|
+
msgstr "소스 URL의 형식이 잘못되었습니다."
|
6136
6139
|
|
6137
6140
|
msgid "specifies if content should be included or excluded, default: inclusion=false"
|
6138
6141
|
msgstr "컨텐츠 포함 또는 제외 여부를 지정합니다. 기본값: inclusion=false"
|
@@ -6141,7 +6144,7 @@ msgid "start datetime of synchronization"
|
|
6141
6144
|
msgstr "동기화 시작 날짜 "
|
6142
6145
|
|
6143
6146
|
msgid "subscriptions not specified"
|
6144
|
-
msgstr ""
|
6147
|
+
msgstr "서브스크립션을 지정하지 않았습니다."
|
6145
6148
|
|
6146
6149
|
msgid "sync plan description"
|
6147
6150
|
msgstr "동기화 계획 설명 "
|
@@ -6153,20 +6156,11 @@ msgid "sync plan numeric identifier"
|
|
6153
6156
|
msgstr "숫자로된 동기화 계획 ID "
|
6154
6157
|
|
6155
6158
|
msgid "temporarily override feed URL for sync"
|
6156
|
-
msgstr ""
|
6159
|
+
msgstr "동기화를 위한 임시 덮어쓰기 피드 URL"
|
6157
6160
|
|
6158
6161
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6159
6162
|
msgstr "다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수 없습니다 "
|
6160
6163
|
|
6161
|
-
msgid "the id of the puppet module to associate"
|
6162
|
-
msgstr ""
|
6163
|
-
|
6164
|
-
msgid "the uuid of the puppet module to associate"
|
6165
|
-
msgstr "연결할 puppet 모듈의 uuid "
|
6166
|
-
|
6167
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6168
|
-
msgstr ""
|
6169
|
-
|
6170
6164
|
msgid "true if the latest version of the component's content view is desired"
|
6171
6165
|
msgstr ""
|
6172
6166
|
|
@@ -6183,16 +6177,16 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
|
|
6183
6177
|
msgstr ""
|
6184
6178
|
|
6185
6179
|
msgid "type of repo"
|
6186
|
-
msgstr "
|
6180
|
+
msgstr ""
|
6187
6181
|
|
6188
6182
|
msgid "types of filters"
|
6189
6183
|
msgstr ""
|
6190
6184
|
|
6191
6185
|
msgid "unknown permission for %s"
|
6192
|
-
msgstr ""
|
6186
|
+
msgstr "%s에 대해 알 수 없는 권한 "
|
6193
6187
|
|
6194
6188
|
msgid "update a filter"
|
6195
|
-
msgstr ""
|
6189
|
+
msgstr "필터 업데이트"
|
6196
6190
|
|
6197
6191
|
msgid "updating package group..."
|
6198
6192
|
msgstr "패키지 그룹 업데이트 중..."
|
@@ -6209,23 +6203,29 @@ msgstr "패키지 업데이트 중..."
|
|
6209
6203
|
msgid "url not defined."
|
6210
6204
|
msgstr "url이 설정되어 있지 않습니다. "
|
6211
6205
|
|
6212
|
-
msgid "uuid of the puppet module"
|
6213
|
-
msgstr ""
|
6214
|
-
|
6215
6206
|
msgid "waiting for Candlepin to finish the task"
|
6216
|
-
msgstr ""
|
6207
|
+
msgstr "Candlepin이 태스크를 끝내기를 기다리는 중"
|
6217
6208
|
|
6218
6209
|
msgid "waiting for Pulp to finish the task"
|
6219
|
-
msgstr ""
|
6210
|
+
msgstr "Pulp가 태스크를 끝내기를 기다리는 중"
|
6220
6211
|
|
6221
6212
|
msgid "waiting for Pulp to start the task"
|
6213
|
+
msgstr "Pulp가 태스크를 시작하기를 기다리는 중"
|
6214
|
+
|
6215
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6216
|
+
msgstr ""
|
6217
|
+
|
6218
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6219
|
+
msgstr ""
|
6220
|
+
|
6221
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6222
6222
|
msgstr ""
|
6223
6223
|
|
6224
6224
|
msgid "with"
|
6225
6225
|
msgstr ""
|
6226
6226
|
|
6227
6227
|
msgid "yes"
|
6228
|
-
msgstr ""
|
6228
|
+
msgstr "예"
|
6229
6229
|
|
6230
6230
|
msgid "{0} items selected"
|
6231
6231
|
msgstr ""
|