katello 4.4.2.2 → 4.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
- data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
- data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
- data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
- data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
- data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
- data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
- data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
- data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
- data/app/lib/actions/katello/content_view/destroy.rb +2 -1
- data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
- data/app/lib/actions/katello/content_view/publish.rb +7 -9
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
- data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/import.rb +25 -22
- data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
- data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
- data/app/lib/actions/katello/product/content_create.rb +10 -8
- data/app/lib/actions/katello/repository/destroy.rb +36 -12
- data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
- data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
- data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
- data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
- data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
- data/app/lib/katello/api/v2/error_handling.rb +1 -0
- data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
- data/app/lib/katello/util/errata.rb +2 -3
- data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
- data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
- data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
- data/app/models/katello/alternate_content_source.rb +66 -0
- data/app/models/katello/authorization/alternate_content_source.rb +33 -0
- data/app/models/katello/authorization/repository.rb +3 -3
- data/app/models/katello/candlepin/repository_mapper.rb +13 -6
- data/app/models/katello/cdn_configuration.rb +15 -15
- data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
- data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -2
- data/app/models/katello/concerns/setting_extensions.rb +14 -0
- data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
- data/app/models/katello/content.rb +1 -0
- data/app/models/katello/content_credential.rb +6 -0
- data/app/models/katello/content_override.rb +7 -3
- data/app/models/katello/content_view.rb +33 -2
- data/app/models/katello/content_view_erratum_filter.rb +26 -12
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_version.rb +12 -0
- data/app/models/katello/content_view_version_export_history.rb +3 -1
- data/app/models/katello/erratum.rb +9 -5
- data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
- data/app/models/katello/host/content_facet.rb +14 -0
- data/app/models/katello/host_available_module_stream.rb +12 -0
- data/app/models/katello/product_content.rb +1 -0
- data/app/models/katello/purpose_sla_status.rb +1 -1
- data/app/models/katello/purpose_status.rb +2 -2
- data/app/models/katello/repository.rb +7 -4
- data/app/models/katello/root_repository.rb +1 -1
- data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
- data/app/models/katello/sync_plan.rb +1 -1
- data/app/presenters/katello/product_content_presenter.rb +15 -0
- data/app/services/katello/applicable_host_queue.rb +1 -1
- data/app/services/katello/content_unit_indexer.rb +2 -1
- data/app/services/katello/product_content_finder.rb +12 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
- data/app/services/katello/pulp3/api/file.rb +8 -0
- data/app/services/katello/pulp3/api/yum.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
- data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
- data/app/services/katello/pulp3/repository/yum.rb +70 -12
- data/app/services/katello/pulp3/repository.rb +7 -91
- data/app/services/katello/pulp3/service_common.rb +66 -0
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
- data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
- data/app/views/foreman/job_templates/change_content_source.erb +1 -1
- data/app/views/foreman/job_templates/install_errata.erb +5 -5
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
- data/app/views/foreman/job_templates/install_group.erb +4 -4
- data/app/views/foreman/job_templates/install_package.erb +4 -4
- data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/remove_group.erb +4 -4
- data/app/views/foreman/job_templates/remove_package.erb +4 -4
- data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
- data/app/views/foreman/job_templates/restart_services.erb +3 -3
- data/app/views/foreman/job_templates/update_group.erb +4 -4
- data/app/views/foreman/job_templates/update_package.erb +4 -4
- data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
- data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
- data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
- data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
- data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
- data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
- data/app/views/katello/sync_management/_repo.html.erb +8 -29
- data/config/routes/api/v2.rb +7 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
- data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
- data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
- data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
- data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
- data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
- data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
- data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
- data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
- data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
- data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
- data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
- data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
- data/db/seeds.d/110-content-view-autopublish.rb +13 -0
- data/db/seeds.d/150-module_job_templates.rb +1 -1
- data/engines/bastion/README.md +1 -0
- data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
- data/lib/katello/engine.rb +1 -5
- data/lib/katello/permission_creator.rb +32 -4
- data/lib/katello/plugin.rb +378 -4
- data/lib/katello/tasks/reset.rake.bak +67 -0
- data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +47 -41
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/bn/katello.po +820 -106
- data/locale/bn/katello.po.time_stamp +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/katello.po +818 -104
- data/locale/cs/katello.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/katello.po +893 -179
- data/locale/de/katello.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/katello.po +817 -103
- data/locale/en/katello.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/katello.po +882 -168
- data/locale/es/katello.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/katello.po +1219 -505
- data/locale/fr/katello.po.time_stamp +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/katello.po +826 -112
- data/locale/gu/katello.po.time_stamp +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/katello.po +826 -112
- data/locale/hi/katello.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/katello.po +863 -148
- data/locale/it/katello.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/katello.po +1216 -499
- data/locale/ja/katello.po.time_stamp +0 -0
- data/locale/katello.pot +3847 -2507
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/katello.po +826 -112
- data/locale/kn/katello.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/katello.po +912 -198
- data/locale/ko/katello.po.time_stamp +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/katello.po +826 -112
- data/locale/mr/katello.po.time_stamp +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/katello.po +826 -112
- data/locale/or/katello.po.time_stamp +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/katello.po +826 -112
- data/locale/pa/katello.po.time_stamp +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/katello.po +817 -103
- data/locale/pt/katello.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/katello.po +879 -165
- data/locale/pt_BR/katello.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/katello.po +927 -213
- data/locale/ru/katello.po.time_stamp +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/katello.po +820 -106
- data/locale/ta/katello.po.time_stamp +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/katello.po +826 -112
- data/locale/te/katello.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/katello.po +1202 -486
- data/locale/zh_CN/katello.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/katello.po +856 -142
- data/locale/zh_TW/katello.po.time_stamp +0 -0
- data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
- data/webpack/components/Errata/index.js +38 -8
- data/webpack/components/Packages/index.js +1 -4
- data/webpack/components/Search/Search.js +18 -3
- data/webpack/components/SelectAllCheckbox/index.js +1 -0
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
- data/webpack/components/Table/EmptyStateMessage.js +21 -7
- data/webpack/components/Table/MainTable.js +29 -4
- data/webpack/components/Table/TableHooks.js +63 -19
- data/webpack/components/Table/TableWrapper.js +4 -2
- data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
- data/webpack/components/Table/components/TranslatedPlural.js +57 -0
- data/webpack/components/TypeAhead/TypeAhead.js +8 -0
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
- data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
- data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
- data/webpack/containers/Application/config.js +5 -0
- data/webpack/global_index.js +30 -7
- data/webpack/global_test_setup.js +13 -0
- data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
- data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
- data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
- data/webpack/scenes/AlternateContentSources/index.js +4 -0
- data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
- data/webpack/scenes/Content/Table/ContentTable.js +1 -0
- data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
- data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
- data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
- data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
- data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
- data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
- data/webpack/scenes/ContentViews/helpers.js +3 -0
- data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
- data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
- data/webpack/scenes/Tasks/TaskActions.js +6 -0
- data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
- data/webpack/scenes/Tasks/helpers.js +33 -5
- data/webpack/utils/helpers.js +2 -0
- metadata +158 -40
- data/app/models/setting/content.rb +0 -201
- data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
- data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/zh_TW/katello.po
CHANGED
@@ -4,16 +4,16 @@
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
# Translators:
|
7
|
-
# ChrisLee <chris_lee@hiiir.com>,
|
8
|
-
# 0868a4d1af5275b3f70b0a6dac4c99a4,
|
9
|
-
# Bryan Kearney <bryan.kearney@gmail.com>,
|
7
|
+
# ChrisLee <chris_lee@hiiir.com>, 2022
|
8
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
9
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
10
10
|
#
|
11
11
|
msgid ""
|
12
12
|
msgstr ""
|
13
13
|
"Project-Id-Version: katello 2.5.0\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
15
|
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
16
|
-
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>,
|
16
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
|
17
17
|
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/foreman/teams/114/z"
|
18
18
|
"h_TW/)\n"
|
19
19
|
"MIME-Version: 1.0\n"
|
@@ -54,6 +54,9 @@ msgstr ""
|
|
54
54
|
msgid " ago."
|
55
55
|
msgstr ""
|
56
56
|
|
57
|
+
msgid " and"
|
58
|
+
msgstr ""
|
59
|
+
|
57
60
|
msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
|
58
61
|
msgstr ""
|
59
62
|
|
@@ -116,6 +119,9 @@ msgstr ""
|
|
116
119
|
msgid "%s is not a valid package name"
|
117
120
|
msgstr "%s 不是個有效的套件名稱"
|
118
121
|
|
122
|
+
msgid "%s is not a valid path"
|
123
|
+
msgstr ""
|
124
|
+
|
119
125
|
msgid "%s is required"
|
120
126
|
msgstr ""
|
121
127
|
|
@@ -365,9 +371,6 @@ msgstr ""
|
|
365
371
|
msgid "A post-promotion summary of hosts with installable errata"
|
366
372
|
msgstr "主機的後推送摘要與可安裝勘誤"
|
367
373
|
|
368
|
-
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
369
|
-
msgstr ""
|
370
|
-
|
371
374
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
372
375
|
msgstr "auto-healing 程序的服務等級,例如 SELF-SUPPORT"
|
373
376
|
|
@@ -386,12 +389,18 @@ msgstr ""
|
|
386
389
|
msgid "About page"
|
387
390
|
msgstr ""
|
388
391
|
|
392
|
+
msgid "Abstract"
|
393
|
+
msgstr ""
|
394
|
+
|
389
395
|
msgid "Abstract async task"
|
390
396
|
msgstr "抽象 async task"
|
391
397
|
|
392
398
|
msgid "Accept action timeout"
|
393
399
|
msgstr ""
|
394
400
|
|
401
|
+
msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
|
402
|
+
msgstr ""
|
403
|
+
|
395
404
|
msgid "Account Number"
|
396
405
|
msgstr "帳號號碼"
|
397
406
|
|
@@ -410,12 +419,12 @@ msgstr "動作允許在選擇的主機上執行。"
|
|
410
419
|
msgid "Action with sub plans"
|
411
420
|
msgstr "有子計畫的動作"
|
412
421
|
|
413
|
-
msgid "Actions"
|
414
|
-
msgstr ""
|
415
|
-
|
416
422
|
msgid "Activation Keys"
|
417
423
|
msgstr "啟動金鑰"
|
418
424
|
|
425
|
+
msgid "Activation key"
|
426
|
+
msgstr ""
|
427
|
+
|
419
428
|
msgid "Activation key ID"
|
420
429
|
msgstr "啟動金鑰 ID"
|
421
430
|
|
@@ -447,7 +456,7 @@ msgid "Add"
|
|
447
456
|
msgstr "新增"
|
448
457
|
|
449
458
|
msgid "Add Bookmark"
|
450
|
-
msgstr ""
|
459
|
+
msgstr "新增書籤"
|
451
460
|
|
452
461
|
msgid "Add RPM rule"
|
453
462
|
msgstr ""
|
@@ -482,6 +491,12 @@ msgstr ""
|
|
482
491
|
msgid "Add filters using the 'Add filter' button above."
|
483
492
|
msgstr ""
|
484
493
|
|
494
|
+
msgid "Add host to collections"
|
495
|
+
msgstr ""
|
496
|
+
|
497
|
+
msgid "Add host to host collections"
|
498
|
+
msgstr ""
|
499
|
+
|
485
500
|
msgid "Add host to the host collection"
|
486
501
|
msgstr "新增主機到主機集"
|
487
502
|
|
@@ -506,6 +521,9 @@ msgstr ""
|
|
506
521
|
msgid "Add rule"
|
507
522
|
msgstr ""
|
508
523
|
|
524
|
+
msgid "Add source"
|
525
|
+
msgstr ""
|
526
|
+
|
509
527
|
msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
|
510
528
|
msgstr ""
|
511
529
|
|
@@ -518,9 +536,6 @@ msgstr ""
|
|
518
536
|
msgid "Add to this filter using the 'Add filter rule' button."
|
519
537
|
msgstr ""
|
520
538
|
|
521
|
-
msgid "Add traces by applying updates on this host."
|
522
|
-
msgstr ""
|
523
|
-
|
524
539
|
msgid "Added"
|
525
540
|
msgstr ""
|
526
541
|
|
@@ -549,13 +564,13 @@ msgid "Agent action"
|
|
549
564
|
msgstr ""
|
550
565
|
|
551
566
|
msgid "All"
|
552
|
-
msgstr ""
|
567
|
+
msgstr "全部"
|
553
568
|
|
554
569
|
msgid "All Media"
|
555
570
|
msgstr "所有媒介"
|
556
571
|
|
557
572
|
msgid "All Repositories"
|
558
|
-
msgstr ""
|
573
|
+
msgstr "所有軟體庫"
|
559
574
|
|
560
575
|
msgid "All available architectures for this repo are enabled."
|
561
576
|
msgstr ""
|
@@ -563,29 +578,53 @@ msgstr ""
|
|
563
578
|
msgid "All errata applied"
|
564
579
|
msgstr "所有已套用的勘誤"
|
565
580
|
|
581
|
+
msgid "All errata up-to-date"
|
582
|
+
msgstr ""
|
583
|
+
|
584
|
+
msgid "All subpaths must have a slash at the end and none at the front"
|
585
|
+
msgstr ""
|
586
|
+
|
566
587
|
msgid "All versions"
|
567
588
|
msgstr ""
|
568
589
|
|
569
590
|
msgid "All versions will be removed from these environments"
|
570
591
|
msgstr ""
|
571
592
|
|
572
|
-
msgid "Allow
|
593
|
+
msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
|
573
594
|
msgstr ""
|
574
595
|
|
575
|
-
msgid "Allow
|
596
|
+
msgid "Allow deleting repositories in published content views"
|
597
|
+
msgstr ""
|
598
|
+
|
599
|
+
msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
576
600
|
msgstr ""
|
577
601
|
|
578
602
|
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
579
603
|
msgstr ""
|
580
604
|
|
581
|
-
msgid "Allow new
|
605
|
+
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."
|
582
606
|
msgstr ""
|
583
607
|
|
584
608
|
msgid "Also include the latest upgradable package version for each host package"
|
585
609
|
msgstr ""
|
586
610
|
|
587
|
-
msgid "Alter a
|
588
|
-
msgstr "
|
611
|
+
msgid "Alter a host's host collections"
|
612
|
+
msgstr ""
|
613
|
+
|
614
|
+
msgid "Alternate Content Sources"
|
615
|
+
msgstr ""
|
616
|
+
|
617
|
+
msgid "Alternate content source ${name} created"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
msgid "Alternate content source ID"
|
621
|
+
msgstr ""
|
622
|
+
|
623
|
+
msgid "Alternate content source deleted"
|
624
|
+
msgstr ""
|
625
|
+
|
626
|
+
msgid "Alternate content sources"
|
627
|
+
msgstr ""
|
589
628
|
|
590
629
|
msgid "Always Use Latest (currently %{version})"
|
591
630
|
msgstr ""
|
@@ -596,6 +635,9 @@ msgstr ""
|
|
596
635
|
msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
|
597
636
|
msgstr ""
|
598
637
|
|
638
|
+
msgid "An alternate content source can be added by using the \"Add source\" button above."
|
639
|
+
msgstr ""
|
640
|
+
|
599
641
|
msgid "An environment is missing a prior"
|
600
642
|
msgstr ""
|
601
643
|
|
@@ -639,10 +681,10 @@ msgid "Applicable Content Hosts"
|
|
639
681
|
msgstr ""
|
640
682
|
|
641
683
|
msgid "Application"
|
642
|
-
msgstr ""
|
684
|
+
msgstr "應用程式"
|
643
685
|
|
644
686
|
msgid "Apply"
|
645
|
-
msgstr ""
|
687
|
+
msgstr "套用"
|
646
688
|
|
647
689
|
msgid "Apply Erratum"
|
648
690
|
msgstr ""
|
@@ -738,6 +780,9 @@ msgstr ""
|
|
738
780
|
msgid "Associated location IDs"
|
739
781
|
msgstr ""
|
740
782
|
|
783
|
+
msgid "Associated version"
|
784
|
+
msgstr ""
|
785
|
+
|
741
786
|
msgid "Associations"
|
742
787
|
msgstr "相聯性"
|
743
788
|
|
@@ -804,6 +849,9 @@ msgstr ""
|
|
804
849
|
msgid "Backend System Status"
|
805
850
|
msgstr "後端系統狀態"
|
806
851
|
|
852
|
+
msgid "Base URL for finding alternate content"
|
853
|
+
msgstr ""
|
854
|
+
|
807
855
|
msgid "Base URL to perform repo discovery on"
|
808
856
|
msgstr ""
|
809
857
|
|
@@ -813,9 +861,21 @@ msgstr "停用 Basearch"
|
|
813
861
|
msgid "Basearch to enable"
|
814
862
|
msgstr "啟用 Basearch"
|
815
863
|
|
864
|
+
msgid "Basic authentication password"
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
msgid "Basic authentication username"
|
868
|
+
msgstr ""
|
869
|
+
|
816
870
|
msgid "Batch size to sync repositories in."
|
817
871
|
msgstr ""
|
818
872
|
|
873
|
+
msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
|
874
|
+
msgstr ""
|
875
|
+
|
876
|
+
msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
|
877
|
+
msgstr ""
|
878
|
+
|
819
879
|
msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
|
820
880
|
msgstr ""
|
821
881
|
|
@@ -829,7 +889,7 @@ msgid "Bind entitlements to an allocation"
|
|
829
889
|
msgstr ""
|
830
890
|
|
831
891
|
msgid "Bookmark this search"
|
832
|
-
msgstr ""
|
892
|
+
msgstr "將此搜尋加入書籤"
|
833
893
|
|
834
894
|
msgid "Bookmarks marked as public are available to all users"
|
835
895
|
msgstr ""
|
@@ -852,6 +912,9 @@ msgstr ""
|
|
852
912
|
msgid "Bulk generate applicability for hosts"
|
853
913
|
msgstr ""
|
854
914
|
|
915
|
+
msgid "Bulk remove versions from a content view and reassign systems and keys"
|
916
|
+
msgstr ""
|
917
|
+
|
855
918
|
msgid "CDN Configuration"
|
856
919
|
msgstr ""
|
857
920
|
|
@@ -864,6 +927,12 @@ msgstr ""
|
|
864
927
|
msgid "CDN SSL version"
|
865
928
|
msgstr ""
|
866
929
|
|
930
|
+
msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
|
931
|
+
msgstr ""
|
932
|
+
|
933
|
+
msgid "CDN configuration type. One of %s."
|
934
|
+
msgstr ""
|
935
|
+
|
867
936
|
msgid "CDN loading error: %s not found"
|
868
937
|
msgstr "CDN 載入錯誤:找不到 %s"
|
869
938
|
|
@@ -877,7 +946,7 @@ msgid "CVE identifier"
|
|
877
946
|
msgstr "CVE 識別子"
|
878
947
|
|
879
948
|
msgid "CVEs"
|
880
|
-
msgstr ""
|
949
|
+
msgstr "CVE"
|
881
950
|
|
882
951
|
msgid "Calculate Applicable Errata based on a particular Content View"
|
883
952
|
msgstr "根據特定內容視域,計算可套用的勘誤"
|
@@ -885,7 +954,10 @@ msgstr "根據特定內容視域,計算可套用的勘誤"
|
|
885
954
|
msgid "Calculate Applicable Errata based on a particular Environment"
|
886
955
|
msgstr "根據特定環境,計算可套用的勘誤"
|
887
956
|
|
888
|
-
msgid "Calculate errata host status based only on errata in a
|
957
|
+
msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
|
958
|
+
msgstr ""
|
959
|
+
|
960
|
+
msgid "Can communicate with the Red Hat Portal for subscriptions."
|
889
961
|
msgstr ""
|
890
962
|
|
891
963
|
msgid "Can not add product %s because it is disabled."
|
@@ -1008,6 +1080,9 @@ msgstr ""
|
|
1008
1080
|
msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
|
1009
1081
|
msgstr "無法在一個複合式內容視域版本(%{name} 版本 版本 %{version})中執行一項遞增的更新"
|
1010
1082
|
|
1083
|
+
msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
|
1084
|
+
msgstr ""
|
1085
|
+
|
1011
1086
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
1012
1087
|
msgstr "無法推送不照順序的環境。使用「force」來跳過限制。"
|
1013
1088
|
|
@@ -1059,6 +1134,18 @@ msgstr ""
|
|
1059
1134
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
1060
1135
|
msgstr ""
|
1061
1136
|
|
1137
|
+
msgid "Capacity"
|
1138
|
+
msgstr ""
|
1139
|
+
|
1140
|
+
msgid "Change Content Source"
|
1141
|
+
msgstr ""
|
1142
|
+
|
1143
|
+
msgid "Change content source"
|
1144
|
+
msgstr ""
|
1145
|
+
|
1146
|
+
msgid "Change host content source"
|
1147
|
+
msgstr ""
|
1148
|
+
|
1062
1149
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
1063
1150
|
msgstr ""
|
1064
1151
|
|
@@ -1071,6 +1158,9 @@ msgstr ""
|
|
1071
1158
|
msgid "Checksum"
|
1072
1159
|
msgstr "Checksum"
|
1073
1160
|
|
1161
|
+
msgid "Checksum is a required parameter."
|
1162
|
+
msgstr ""
|
1163
|
+
|
1074
1164
|
msgid "Checksum of file to upload"
|
1075
1165
|
msgstr ""
|
1076
1166
|
|
@@ -1086,6 +1176,9 @@ msgstr ""
|
|
1086
1176
|
msgid "Click here to go to the tasks page for the task."
|
1087
1177
|
msgstr ""
|
1088
1178
|
|
1179
|
+
msgid "Click {update} below to save changes."
|
1180
|
+
msgstr ""
|
1181
|
+
|
1089
1182
|
msgid "Clone"
|
1090
1183
|
msgstr "複製"
|
1091
1184
|
|
@@ -1101,7 +1194,13 @@ msgstr ""
|
|
1101
1194
|
msgid "Combined Profile Update for %s"
|
1102
1195
|
msgstr ""
|
1103
1196
|
|
1104
|
-
msgid "Comma-separated list of tags to
|
1197
|
+
msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
|
1198
|
+
msgstr ""
|
1199
|
+
|
1200
|
+
msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
|
1201
|
+
msgstr ""
|
1202
|
+
|
1203
|
+
msgid "Comma-separated list of tags to sync for a container image repository"
|
1105
1204
|
msgstr ""
|
1106
1205
|
|
1107
1206
|
msgid "Component"
|
@@ -1117,10 +1216,10 @@ msgid "Component content views"
|
|
1117
1216
|
msgstr ""
|
1118
1217
|
|
1119
1218
|
msgid "Components"
|
1120
|
-
msgstr ""
|
1219
|
+
msgstr "元件"
|
1121
1220
|
|
1122
1221
|
msgid "Composite"
|
1123
|
-
msgstr ""
|
1222
|
+
msgstr "複合式"
|
1124
1223
|
|
1125
1224
|
msgid "Composite Content View"
|
1126
1225
|
msgstr ""
|
@@ -1188,6 +1287,9 @@ msgstr ""
|
|
1188
1287
|
msgid "Container manifests"
|
1189
1288
|
msgstr ""
|
1190
1289
|
|
1290
|
+
msgid "Container tags"
|
1291
|
+
msgstr ""
|
1292
|
+
|
1191
1293
|
msgid "Content"
|
1192
1294
|
msgstr "內容"
|
1193
1295
|
|
@@ -1200,7 +1302,7 @@ msgstr ""
|
|
1200
1302
|
msgid "Content Credential numeric identifier"
|
1201
1303
|
msgstr ""
|
1202
1304
|
|
1203
|
-
msgid "Content Credential to use for SSL CA"
|
1305
|
+
msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
|
1204
1306
|
msgstr ""
|
1205
1307
|
|
1206
1308
|
msgid "Content Credentials"
|
@@ -1233,9 +1335,6 @@ msgstr "內容視域"
|
|
1233
1335
|
msgid "Content View %{view}: Versions: %{versions}"
|
1234
1336
|
msgstr ""
|
1235
1337
|
|
1236
|
-
msgid "Content View Dependency Solving Default"
|
1237
|
-
msgstr ""
|
1238
|
-
|
1239
1338
|
msgid "Content View Details"
|
1240
1339
|
msgstr ""
|
1241
1340
|
|
@@ -1248,11 +1347,8 @@ msgstr ""
|
|
1248
1347
|
msgid "Content View ID"
|
1249
1348
|
msgstr "內容視域 ID"
|
1250
1349
|
|
1251
|
-
msgid "Content View Label"
|
1252
|
-
msgstr ""
|
1253
|
-
|
1254
1350
|
msgid "Content View Name"
|
1255
|
-
msgstr ""
|
1351
|
+
msgstr "內容視域名稱"
|
1256
1352
|
|
1257
1353
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
1258
1354
|
msgstr "內容視域版本 %{id} 並不在所有指定的環境 %{envs} 中。"
|
@@ -1275,6 +1371,9 @@ msgstr "內容視域與環境並未設定給註冊用。"
|
|
1275
1371
|
msgid "Content View id"
|
1276
1372
|
msgstr ""
|
1277
1373
|
|
1374
|
+
msgid "Content View label not provided."
|
1375
|
+
msgstr ""
|
1376
|
+
|
1278
1377
|
msgid "Content Views"
|
1279
1378
|
msgstr "內容視域"
|
1280
1379
|
|
@@ -1287,15 +1386,21 @@ msgstr ""
|
|
1287
1386
|
msgid "Content hosts"
|
1288
1387
|
msgstr ""
|
1289
1388
|
|
1290
|
-
msgid "Content imported
|
1389
|
+
msgid "Content imported by %{user} into content view '%{name}'"
|
1291
1390
|
msgstr ""
|
1292
1391
|
|
1293
1392
|
msgid "Content not uploaded to pulp"
|
1294
1393
|
msgstr ""
|
1295
1394
|
|
1395
|
+
msgid "Content override search parameters"
|
1396
|
+
msgstr ""
|
1397
|
+
|
1296
1398
|
msgid "Content source ID"
|
1297
1399
|
msgstr ""
|
1298
1400
|
|
1401
|
+
msgid "Content source successfully updated."
|
1402
|
+
msgstr ""
|
1403
|
+
|
1299
1404
|
msgid "Content source was not set for host '%{host}'"
|
1300
1405
|
msgstr ""
|
1301
1406
|
|
@@ -1371,6 +1476,9 @@ msgstr "合約"
|
|
1371
1476
|
msgid "Contract Number"
|
1372
1477
|
msgstr "聯絡號碼"
|
1373
1478
|
|
1479
|
+
msgid "Copied to clipboard"
|
1480
|
+
msgstr ""
|
1481
|
+
|
1374
1482
|
msgid "Copy"
|
1375
1483
|
msgstr ""
|
1376
1484
|
|
@@ -1380,6 +1488,9 @@ msgstr "複製啟動金鑰"
|
|
1380
1488
|
msgid "Copy content view"
|
1381
1489
|
msgstr ""
|
1382
1490
|
|
1491
|
+
msgid "Copy to clipboard"
|
1492
|
+
msgstr ""
|
1493
|
+
|
1383
1494
|
msgid "Copy version units to library"
|
1384
1495
|
msgstr ""
|
1385
1496
|
|
@@ -1491,6 +1602,9 @@ msgstr "找不到 id 為「%s」的產品"
|
|
1491
1602
|
msgid "Couldn't find repository '%s'"
|
1492
1603
|
msgstr "找不到軟體庫「%s」"
|
1493
1604
|
|
1605
|
+
msgid "Couldn't find smart proxies with id '%s'"
|
1606
|
+
msgstr ""
|
1607
|
+
|
1494
1608
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1495
1609
|
msgstr "找不到特定的內容視域與生命週期環境。"
|
1496
1610
|
|
@@ -1503,6 +1617,9 @@ msgstr "計數"
|
|
1503
1617
|
msgid "Create"
|
1504
1618
|
msgstr "建立"
|
1505
1619
|
|
1620
|
+
msgid "Create Alternate Content Source"
|
1621
|
+
msgstr ""
|
1622
|
+
|
1506
1623
|
msgid "Create Export History"
|
1507
1624
|
msgstr ""
|
1508
1625
|
|
@@ -1539,6 +1656,9 @@ msgstr "建立產品"
|
|
1539
1656
|
msgid "Create a sync plan"
|
1540
1657
|
msgstr "建立同步計劃"
|
1541
1658
|
|
1659
|
+
msgid "Create an ACS"
|
1660
|
+
msgstr ""
|
1661
|
+
|
1542
1662
|
msgid "Create an activation key"
|
1543
1663
|
msgstr "建立啟動金鑰"
|
1544
1664
|
|
@@ -1561,7 +1681,7 @@ msgid "Create organization"
|
|
1561
1681
|
msgstr "建立組織"
|
1562
1682
|
|
1563
1683
|
msgid "Critical"
|
1564
|
-
msgstr ""
|
1684
|
+
msgstr "重要"
|
1565
1685
|
|
1566
1686
|
msgid "Cron expression is not valid!"
|
1567
1687
|
msgstr ""
|
@@ -1584,6 +1704,9 @@ msgstr ""
|
|
1584
1704
|
msgid "Custom repositories cannot be disabled."
|
1585
1705
|
msgstr "無法停用自訂的軟體庫。"
|
1586
1706
|
|
1707
|
+
msgid "Customize with Rex"
|
1708
|
+
msgstr ""
|
1709
|
+
|
1587
1710
|
msgid "Database connection"
|
1588
1711
|
msgstr "資料庫連線"
|
1589
1712
|
|
@@ -1620,13 +1743,10 @@ msgstr ""
|
|
1620
1743
|
msgid "Default Custom Repository download policy"
|
1621
1744
|
msgstr ""
|
1622
1745
|
|
1623
|
-
msgid "Default HTTP Proxy
|
1624
|
-
msgstr ""
|
1625
|
-
|
1626
|
-
msgid "Default HTTP proxy"
|
1746
|
+
msgid "Default HTTP Proxy"
|
1627
1747
|
msgstr ""
|
1628
1748
|
|
1629
|
-
msgid "Default
|
1749
|
+
msgid "Default HTTP proxy for syncing content"
|
1630
1750
|
msgstr ""
|
1631
1751
|
|
1632
1752
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
@@ -1671,6 +1791,9 @@ msgstr ""
|
|
1671
1791
|
msgid "Default kexec template for new Operating Systems created from synced content"
|
1672
1792
|
msgstr ""
|
1673
1793
|
|
1794
|
+
msgid "Default location for subscribed hosts"
|
1795
|
+
msgstr ""
|
1796
|
+
|
1674
1797
|
msgid "Default partitioning table for new Operating Systems created from synced content"
|
1675
1798
|
msgstr ""
|
1676
1799
|
|
@@ -1773,6 +1896,9 @@ msgstr ""
|
|
1773
1896
|
msgid "Delete version"
|
1774
1897
|
msgstr ""
|
1775
1898
|
|
1899
|
+
msgid "Delete versions"
|
1900
|
+
msgstr ""
|
1901
|
+
|
1776
1902
|
msgid "Deleted consumer '%s'"
|
1777
1903
|
msgstr "已刪除了消耗者「%s」"
|
1778
1904
|
|
@@ -1788,9 +1914,18 @@ msgstr ""
|
|
1788
1914
|
msgid "Deleting manifest in '%{subject}' failed."
|
1789
1915
|
msgstr ""
|
1790
1916
|
|
1917
|
+
msgid "Deleting version {versionList}"
|
1918
|
+
msgstr ""
|
1919
|
+
|
1920
|
+
msgid "Deleting versions: {versionList}"
|
1921
|
+
msgstr ""
|
1922
|
+
|
1791
1923
|
msgid "Description"
|
1792
1924
|
msgstr "描述"
|
1793
1925
|
|
1926
|
+
msgid "Description for the alternate content source"
|
1927
|
+
msgstr ""
|
1928
|
+
|
1794
1929
|
msgid "Description for the content view"
|
1795
1930
|
msgstr "內容視域的描述"
|
1796
1931
|
|
@@ -1812,6 +1947,9 @@ msgstr ""
|
|
1812
1947
|
msgid "Destroy"
|
1813
1948
|
msgstr "銷毀"
|
1814
1949
|
|
1950
|
+
msgid "Destroy Alternate Content Source"
|
1951
|
+
msgstr ""
|
1952
|
+
|
1815
1953
|
msgid "Destroy Content Host"
|
1816
1954
|
msgstr "銷毀內容主機"
|
1817
1955
|
|
@@ -1836,6 +1974,9 @@ msgstr "銷毀同步計劃"
|
|
1836
1974
|
msgid "Destroy an activation key"
|
1837
1975
|
msgstr "銷毀啟動金鑰"
|
1838
1976
|
|
1977
|
+
msgid "Destroy an alternate content source"
|
1978
|
+
msgstr ""
|
1979
|
+
|
1839
1980
|
msgid "Destroy an environment"
|
1840
1981
|
msgstr "銷毀環境"
|
1841
1982
|
|
@@ -1875,18 +2016,18 @@ msgstr ""
|
|
1875
2016
|
msgid "Disable a repository from the set"
|
1876
2017
|
msgstr ""
|
1877
2018
|
|
2019
|
+
msgid "Disable module stream"
|
2020
|
+
msgstr ""
|
2021
|
+
|
1878
2022
|
msgid "Disable simple content access for a manifest"
|
1879
2023
|
msgstr ""
|
1880
2024
|
|
1881
2025
|
msgid "Disabled"
|
1882
|
-
msgstr ""
|
2026
|
+
msgstr "已停用"
|
1883
2027
|
|
1884
2028
|
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1885
2029
|
msgstr ""
|
1886
2030
|
|
1887
|
-
msgid "Disconnected mode"
|
1888
|
-
msgstr ""
|
1889
|
-
|
1890
2031
|
msgid "Discover"
|
1891
2032
|
msgstr "尋找"
|
1892
2033
|
|
@@ -1902,9 +2043,6 @@ msgstr ""
|
|
1902
2043
|
msgid "Do not wait for the update action to finish. Default: true"
|
1903
2044
|
msgstr ""
|
1904
2045
|
|
1905
|
-
msgid "Docker Tags"
|
1906
|
-
msgstr ""
|
1907
|
-
|
1908
2046
|
msgid "Domain IDs"
|
1909
2047
|
msgstr "區域 ID"
|
1910
2048
|
|
@@ -1914,6 +2052,9 @@ msgstr ""
|
|
1914
2052
|
msgid "Download a debug certificate"
|
1915
2053
|
msgstr "下載除錯憑證"
|
1916
2054
|
|
2055
|
+
msgid "Download rate limit"
|
2056
|
+
msgstr ""
|
2057
|
+
|
1917
2058
|
msgid "Duplicate artifact detected"
|
1918
2059
|
msgstr ""
|
1919
2060
|
|
@@ -1929,6 +2070,9 @@ msgstr "編輯"
|
|
1929
2070
|
msgid "Edit RPM rule"
|
1930
2071
|
msgstr ""
|
1931
2072
|
|
2073
|
+
msgid "Edit content view assignment"
|
2074
|
+
msgstr ""
|
2075
|
+
|
1932
2076
|
msgid "Edit filter rule"
|
1933
2077
|
msgstr ""
|
1934
2078
|
|
@@ -1992,6 +2136,9 @@ msgstr ""
|
|
1992
2136
|
msgid "End Date"
|
1993
2137
|
msgstr "結束日期"
|
1994
2138
|
|
2139
|
+
msgid "End date"
|
2140
|
+
msgstr ""
|
2141
|
+
|
1995
2142
|
msgid "Ends"
|
1996
2143
|
msgstr "結束"
|
1997
2144
|
|
@@ -2001,6 +2148,9 @@ msgstr "增強"
|
|
2001
2148
|
msgid "Enter a name"
|
2002
2149
|
msgstr ""
|
2003
2150
|
|
2151
|
+
msgid "Enter a valid date: MM/DD/YYYY"
|
2152
|
+
msgstr ""
|
2153
|
+
|
2004
2154
|
msgid "Entitlements"
|
2005
2155
|
msgstr ""
|
2006
2156
|
|
@@ -2019,6 +2169,9 @@ msgstr ""
|
|
2019
2169
|
msgid "Environments"
|
2020
2170
|
msgstr "環境"
|
2021
2171
|
|
2172
|
+
msgid "Epoch"
|
2173
|
+
msgstr ""
|
2174
|
+
|
2022
2175
|
msgid "Equal to"
|
2023
2176
|
msgstr ""
|
2024
2177
|
|
@@ -2076,6 +2229,9 @@ msgstr "連線 Pulp 服務時發生錯誤"
|
|
2076
2229
|
msgid "Error connecting. Got: %s"
|
2077
2230
|
msgstr "連線錯誤。收到:%s"
|
2078
2231
|
|
2232
|
+
msgid "Error loading content views"
|
2233
|
+
msgstr ""
|
2234
|
+
|
2079
2235
|
msgid "Error refreshing status for %s: "
|
2080
2236
|
msgstr ""
|
2081
2237
|
|
@@ -2092,7 +2248,7 @@ msgid "Exclude all Module Streams with no errata."
|
|
2092
2248
|
msgstr ""
|
2093
2249
|
|
2094
2250
|
msgid "Exclude all RPMs with no errata."
|
2095
|
-
msgstr ""
|
2251
|
+
msgstr "排除所有不含勘誤的 RPM。"
|
2096
2252
|
|
2097
2253
|
msgid "Exclude filter"
|
2098
2254
|
msgstr ""
|
@@ -2124,6 +2280,12 @@ msgstr ""
|
|
2124
2280
|
msgid "Export Library"
|
2125
2281
|
msgstr ""
|
2126
2282
|
|
2283
|
+
msgid "Export Repository"
|
2284
|
+
msgstr ""
|
2285
|
+
|
2286
|
+
msgid "Export Sync"
|
2287
|
+
msgstr ""
|
2288
|
+
|
2127
2289
|
msgid "Export Types"
|
2128
2290
|
msgstr ""
|
2129
2291
|
|
@@ -2134,7 +2296,7 @@ msgid "Export history identifier used for incremental export. If not provided th
|
|
2134
2296
|
msgstr ""
|
2135
2297
|
|
2136
2298
|
msgid "Exported content view"
|
2137
|
-
msgstr ""
|
2299
|
+
msgstr "匯出內容視域"
|
2138
2300
|
|
2139
2301
|
msgid "Exported version"
|
2140
2302
|
msgstr "匯出版本"
|
@@ -2148,6 +2310,9 @@ msgstr "失敗"
|
|
2148
2310
|
msgid "Failed to delete %{host}: %{errors}"
|
2149
2311
|
msgstr ""
|
2150
2312
|
|
2313
|
+
msgid "Failed to delete latest content view version of Content View '%{subject}'."
|
2314
|
+
msgstr ""
|
2315
|
+
|
2151
2316
|
msgid "Failed to download %s package."
|
2152
2317
|
msgid_plural "Failed to download %s packages."
|
2153
2318
|
msgstr[0] "下載 %s 套件失敗。"
|
@@ -2186,7 +2351,7 @@ msgid "File contents"
|
|
2186
2351
|
msgstr ""
|
2187
2352
|
|
2188
2353
|
msgid "Filename"
|
2189
|
-
msgstr ""
|
2354
|
+
msgstr "檔案名稱"
|
2190
2355
|
|
2191
2356
|
msgid "Files"
|
2192
2357
|
msgstr "檔案"
|
@@ -2204,7 +2369,7 @@ msgid "Filter created"
|
|
2204
2369
|
msgstr "篩選器已建立"
|
2205
2370
|
|
2206
2371
|
msgid "Filter deleted"
|
2207
|
-
msgstr ""
|
2372
|
+
msgstr "篩選器已刪除"
|
2208
2373
|
|
2209
2374
|
msgid "Filter edited"
|
2210
2375
|
msgstr ""
|
@@ -2334,6 +2499,15 @@ msgstr ""
|
|
2334
2499
|
msgid "Generate repository applicability"
|
2335
2500
|
msgstr ""
|
2336
2501
|
|
2502
|
+
msgid "Generated"
|
2503
|
+
msgstr ""
|
2504
|
+
|
2505
|
+
msgid "Generated Content views cannot be assigned to Host/Activation Keys"
|
2506
|
+
msgstr ""
|
2507
|
+
|
2508
|
+
msgid "Generated content views cannot be directly published. They can updated only via export."
|
2509
|
+
msgstr ""
|
2510
|
+
|
2337
2511
|
msgid "Get all content available, not just that provided by subscriptions"
|
2338
2512
|
msgstr ""
|
2339
2513
|
|
@@ -2370,6 +2544,9 @@ msgstr ""
|
|
2370
2544
|
msgid "Given criteria doesn't match any hosts. Try changing your rule."
|
2371
2545
|
msgstr ""
|
2372
2546
|
|
2547
|
+
msgid "Go to job details"
|
2548
|
+
msgstr ""
|
2549
|
+
|
2373
2550
|
msgid "Go to task page"
|
2374
2551
|
msgstr ""
|
2375
2552
|
|
@@ -2394,6 +2571,12 @@ msgstr ""
|
|
2394
2571
|
msgid "Helper"
|
2395
2572
|
msgstr ""
|
2396
2573
|
|
2574
|
+
msgid "Hide affected activation keys"
|
2575
|
+
msgstr ""
|
2576
|
+
|
2577
|
+
msgid "Hide affected hosts"
|
2578
|
+
msgstr ""
|
2579
|
+
|
2397
2580
|
msgid "Hide description"
|
2398
2581
|
msgstr ""
|
2399
2582
|
|
@@ -2445,15 +2628,27 @@ msgstr ""
|
|
2445
2628
|
msgid "Host Tasks Workers Pool Size"
|
2446
2629
|
msgstr ""
|
2447
2630
|
|
2631
|
+
msgid "Host collection"
|
2632
|
+
msgstr ""
|
2633
|
+
|
2448
2634
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
2449
2635
|
msgstr "主機集 '%{name}' 已超過了 '%{limit}' 的最大使用量限制"
|
2450
2636
|
|
2451
2637
|
msgid "Host collection is empty."
|
2452
2638
|
msgstr "主機集是空的。"
|
2453
2639
|
|
2640
|
+
msgid "Host collections"
|
2641
|
+
msgstr ""
|
2642
|
+
|
2643
|
+
msgid "Host collections updated"
|
2644
|
+
msgstr ""
|
2645
|
+
|
2454
2646
|
msgid "Host content and subscription details"
|
2455
2647
|
msgstr "主機內容和訂閱詳細資料"
|
2456
2648
|
|
2649
|
+
msgid "Host content view and environment updated"
|
2650
|
+
msgstr ""
|
2651
|
+
|
2457
2652
|
msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
|
2458
2653
|
msgstr ""
|
2459
2654
|
|
@@ -2497,7 +2692,7 @@ msgid "Host with ID %s not found."
|
|
2497
2692
|
msgstr ""
|
2498
2693
|
|
2499
2694
|
msgid "Hosts"
|
2500
|
-
msgstr ""
|
2695
|
+
msgstr "主機"
|
2501
2696
|
|
2502
2697
|
msgid "Hosts with Installable Errata"
|
2503
2698
|
msgstr "主機與可安裝的勘誤"
|
@@ -2505,7 +2700,7 @@ msgstr "主機與可安裝的勘誤"
|
|
2505
2700
|
msgid "Hosts: "
|
2506
2701
|
msgstr ""
|
2507
2702
|
|
2508
|
-
msgid "How many repositories should be synced concurrently on the capsule.
|
2703
|
+
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."
|
2509
2704
|
msgstr ""
|
2510
2705
|
|
2511
2706
|
msgid "How to order the sorted results (e.g. ASC for ascending)"
|
@@ -2568,12 +2763,18 @@ msgstr ""
|
|
2568
2763
|
msgid "ID of the repository set to enable"
|
2569
2764
|
msgstr "設為啟用的軟體庫集之 ID"
|
2570
2765
|
|
2766
|
+
msgid "ID of the repository within the set to disable"
|
2767
|
+
msgstr ""
|
2768
|
+
|
2571
2769
|
msgid "ID of the sync plan"
|
2572
2770
|
msgstr "同步計劃的 ID"
|
2573
2771
|
|
2574
2772
|
msgid "ID: %s doesn't exist "
|
2575
2773
|
msgstr "ID:%s 不存在"
|
2576
2774
|
|
2775
|
+
msgid "Id"
|
2776
|
+
msgstr ""
|
2777
|
+
|
2577
2778
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2578
2779
|
msgstr ""
|
2579
2780
|
|
@@ -2646,16 +2847,22 @@ msgstr ""
|
|
2646
2847
|
msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
|
2647
2848
|
msgstr ""
|
2648
2849
|
|
2850
|
+
msgid "Ids of smart proxies to associate"
|
2851
|
+
msgstr ""
|
2852
|
+
|
2649
2853
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2650
2854
|
msgstr ""
|
2651
2855
|
|
2652
|
-
msgid "If
|
2856
|
+
msgid "If SSL should be verified for the upstream URL"
|
2857
|
+
msgstr ""
|
2858
|
+
|
2859
|
+
msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
|
2653
2860
|
msgstr ""
|
2654
2861
|
|
2655
2862
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2656
2863
|
msgstr "指定後,使用相符的 ID 與數量,移除訂閱服務的第一個項目"
|
2657
2864
|
|
2658
|
-
msgid "If this is enabled, a composite content view may not be published or promoted
|
2865
|
+
msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
|
2659
2866
|
msgstr ""
|
2660
2867
|
|
2661
2868
|
msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
|
@@ -2664,6 +2871,9 @@ msgstr ""
|
|
2664
2871
|
msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
|
2665
2872
|
msgstr ""
|
2666
2873
|
|
2874
|
+
msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
|
2875
|
+
msgstr ""
|
2876
|
+
|
2667
2877
|
msgid "If true, only return repository sets that are associated with an active subscriptions"
|
2668
2878
|
msgstr ""
|
2669
2879
|
|
@@ -2679,6 +2889,9 @@ msgstr ""
|
|
2679
2889
|
msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
|
2680
2890
|
msgstr ""
|
2681
2891
|
|
2892
|
+
msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
|
2893
|
+
msgstr ""
|
2894
|
+
|
2682
2895
|
msgid "Ignorable content can be only set for Yum repositories."
|
2683
2896
|
msgstr ""
|
2684
2897
|
|
@@ -2715,6 +2928,9 @@ msgstr ""
|
|
2715
2928
|
msgid "Import Puppet classes"
|
2716
2929
|
msgstr "匯入 Puppet 類別"
|
2717
2930
|
|
2931
|
+
msgid "Import Repository"
|
2932
|
+
msgstr ""
|
2933
|
+
|
2718
2934
|
msgid "Import Types"
|
2719
2935
|
msgstr ""
|
2720
2936
|
|
@@ -2736,12 +2952,18 @@ msgstr ""
|
|
2736
2952
|
msgid "Import a content view version to the library"
|
2737
2953
|
msgstr ""
|
2738
2954
|
|
2955
|
+
msgid "Import a repository"
|
2956
|
+
msgstr ""
|
2957
|
+
|
2739
2958
|
msgid "Import facts"
|
2740
2959
|
msgstr "匯入詳情"
|
2741
2960
|
|
2742
2961
|
msgid "Import only"
|
2743
2962
|
msgstr ""
|
2744
2963
|
|
2964
|
+
msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
|
2965
|
+
msgstr ""
|
2966
|
+
|
2745
2967
|
msgid "Import uploads into a repository"
|
2746
2968
|
msgstr "將上傳內容匯入軟體庫中"
|
2747
2969
|
|
@@ -2751,9 +2973,12 @@ msgstr ""
|
|
2751
2973
|
msgid "Import-only content views can not be published directly"
|
2752
2974
|
msgstr ""
|
2753
2975
|
|
2754
|
-
msgid "
|
2976
|
+
msgid "Import/Export"
|
2755
2977
|
msgstr ""
|
2756
2978
|
|
2979
|
+
msgid "Important"
|
2980
|
+
msgstr "重要"
|
2981
|
+
|
2757
2982
|
msgid "Importing manifest into '%{subject}' failed."
|
2758
2983
|
msgstr ""
|
2759
2984
|
|
@@ -2770,6 +2995,9 @@ msgid "Include all Module Streams with no errata."
|
|
2770
2995
|
msgstr ""
|
2771
2996
|
|
2772
2997
|
msgid "Include all RPMs with no errata."
|
2998
|
+
msgstr "包括所有不含勘誤的 RPM。"
|
2999
|
+
|
3000
|
+
msgid "Include content views generated by imports/exports. Defaults to false"
|
2773
3001
|
msgstr ""
|
2774
3002
|
|
2775
3003
|
msgid "Include filter"
|
@@ -2832,6 +3060,9 @@ msgstr ""
|
|
2832
3060
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2833
3061
|
msgstr "對連上同步計畫的產品進行同步"
|
2834
3062
|
|
3063
|
+
msgid "Install"
|
3064
|
+
msgstr ""
|
3065
|
+
|
2835
3066
|
msgid "Install Applicable Errata"
|
2836
3067
|
msgstr "安裝可套用的勘誤"
|
2837
3068
|
|
@@ -2841,6 +3072,9 @@ msgstr "在 %s 上安裝可套用的勘誤"
|
|
2841
3072
|
msgid "Install content on one or more hosts using katello-agent. %s"
|
2842
3073
|
msgstr ""
|
2843
3074
|
|
3075
|
+
msgid "Install errata using scoped search query"
|
3076
|
+
msgstr ""
|
3077
|
+
|
2844
3078
|
msgid "Install errata via Katello interface"
|
2845
3079
|
msgstr "透過 Katello 介面安裝勘誤"
|
2846
3080
|
|
@@ -2865,19 +3099,31 @@ msgstr "透過 Katello 介面安裝套件群組"
|
|
2865
3099
|
msgid "Install package via Katello interface"
|
2866
3100
|
msgstr "透過 Katello 介面安裝套件"
|
2867
3101
|
|
3102
|
+
msgid "Install packages"
|
3103
|
+
msgstr ""
|
3104
|
+
|
2868
3105
|
msgid "Install packages remotely using katello-agent. %s"
|
2869
3106
|
msgstr ""
|
2870
3107
|
|
2871
|
-
msgid "
|
3108
|
+
msgid "Install packages via Katello interface"
|
3109
|
+
msgstr ""
|
3110
|
+
|
3111
|
+
msgid "Install via customized remote execution"
|
3112
|
+
msgstr ""
|
3113
|
+
|
3114
|
+
msgid "Install via katello-agent"
|
2872
3115
|
msgstr ""
|
2873
3116
|
|
2874
|
-
msgid "
|
3117
|
+
msgid "Install via remote execution"
|
2875
3118
|
msgstr ""
|
2876
3119
|
|
2877
|
-
msgid "Installable
|
3120
|
+
msgid "Installable"
|
3121
|
+
msgstr "可安裝"
|
3122
|
+
|
3123
|
+
msgid "Installable errata"
|
2878
3124
|
msgstr ""
|
2879
3125
|
|
2880
|
-
msgid "Installable errata
|
3126
|
+
msgid "Installable errata from content view"
|
2881
3127
|
msgstr ""
|
2882
3128
|
|
2883
3129
|
msgid "Installation of errata requested: %{errata}"
|
@@ -2889,10 +3135,22 @@ msgstr ""
|
|
2889
3135
|
msgid "Installation of package(s) requested: %{packages}"
|
2890
3136
|
msgstr ""
|
2891
3137
|
|
3138
|
+
msgid "Installation status"
|
3139
|
+
msgstr ""
|
3140
|
+
|
2892
3141
|
msgid "Installed Packages"
|
2893
3142
|
msgstr "已安裝的套件"
|
2894
3143
|
|
2895
|
-
msgid "Installed
|
3144
|
+
msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
|
3145
|
+
msgstr ""
|
3146
|
+
|
3147
|
+
msgid "Installed products"
|
3148
|
+
msgstr ""
|
3149
|
+
|
3150
|
+
msgid "Installed profile"
|
3151
|
+
msgstr ""
|
3152
|
+
|
3153
|
+
msgid "Installed version"
|
2896
3154
|
msgstr ""
|
2897
3155
|
|
2898
3156
|
msgid "Installing Erratum..."
|
@@ -2973,6 +3231,9 @@ msgstr "提供了無效的參數 - content_type 必須是 %s 之一"
|
|
2973
3231
|
msgid "Invalid params provided - date_type must be one of %s"
|
2974
3232
|
msgstr "提供了無效的參數 - date_type 必須是 %s 之一"
|
2975
3233
|
|
3234
|
+
msgid "Invalid repository in the metadata %{repo} error=%{error}"
|
3235
|
+
msgstr ""
|
3236
|
+
|
2976
3237
|
msgid "Invalid value specified for Container Image repositories."
|
2977
3238
|
msgstr ""
|
2978
3239
|
|
@@ -2983,6 +3244,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
|
|
2983
3244
|
msgstr ""
|
2984
3245
|
|
2985
3246
|
msgid "Issued"
|
3247
|
+
msgstr "已簽發"
|
3248
|
+
|
3249
|
+
msgid "Issued from"
|
3250
|
+
msgstr ""
|
3251
|
+
|
3252
|
+
msgid "Job ${description} has started."
|
2986
3253
|
msgstr ""
|
2987
3254
|
|
2988
3255
|
msgid "Katello ID of local pool to update"
|
@@ -2997,6 +3264,12 @@ msgstr "Katello:安裝套件"
|
|
2997
3264
|
msgid "Katello: Install Package Group"
|
2998
3265
|
msgstr "Katello:安裝套件群組"
|
2999
3266
|
|
3267
|
+
msgid "Katello: Install errata by search query"
|
3268
|
+
msgstr ""
|
3269
|
+
|
3270
|
+
msgid "Katello: Install packages by search query"
|
3271
|
+
msgstr ""
|
3272
|
+
|
3000
3273
|
msgid "Katello: Module Stream Actions"
|
3001
3274
|
msgstr ""
|
3002
3275
|
|
@@ -3006,6 +3279,9 @@ msgstr "Katello:移除套件"
|
|
3006
3279
|
msgid "Katello: Remove Package Group"
|
3007
3280
|
msgstr "Katello:移除套件群組"
|
3008
3281
|
|
3282
|
+
msgid "Katello: Remove Packages by search query"
|
3283
|
+
msgstr ""
|
3284
|
+
|
3009
3285
|
msgid "Katello: Resolve Traces"
|
3010
3286
|
msgstr ""
|
3011
3287
|
|
@@ -3018,6 +3294,9 @@ msgstr "Katello:更新套件"
|
|
3018
3294
|
msgid "Katello: Update Package Group"
|
3019
3295
|
msgstr "Katello:更新套件群組"
|
3020
3296
|
|
3297
|
+
msgid "Katello: Update Packages by search query"
|
3298
|
+
msgstr ""
|
3299
|
+
|
3021
3300
|
msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
|
3022
3301
|
msgstr "subscription-manager 事實的金鑰值雜湊,使用句號(.)進行巢式。"
|
3023
3302
|
|
@@ -3039,6 +3318,9 @@ msgstr "標籤"
|
|
3039
3318
|
msgid "Label of the content"
|
3040
3319
|
msgstr "內容的標籤"
|
3041
3320
|
|
3321
|
+
msgid "Label of the content view"
|
3322
|
+
msgstr ""
|
3323
|
+
|
3042
3324
|
msgid "Last published"
|
3043
3325
|
msgstr ""
|
3044
3326
|
|
@@ -3057,13 +3339,10 @@ msgstr ""
|
|
3057
3339
|
msgid "Learn more about adding Subscription Manifests"
|
3058
3340
|
msgstr ""
|
3059
3341
|
|
3060
|
-
msgid "
|
3061
|
-
msgstr ""
|
3062
|
-
|
3063
|
-
msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
|
3342
|
+
msgid "Less than"
|
3064
3343
|
msgstr ""
|
3065
3344
|
|
3066
|
-
msgid "
|
3345
|
+
msgid "Library"
|
3067
3346
|
msgstr ""
|
3068
3347
|
|
3069
3348
|
msgid "Library lifecycle environments may not be deleted."
|
@@ -3108,9 +3387,15 @@ msgstr ""
|
|
3108
3387
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
3109
3388
|
msgstr ""
|
3110
3389
|
|
3390
|
+
msgid "Lifecycle environment: {lce}"
|
3391
|
+
msgstr ""
|
3392
|
+
|
3111
3393
|
msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
|
3112
3394
|
msgstr ""
|
3113
3395
|
|
3396
|
+
msgid "Limit content to enabled / disabled / overridden"
|
3397
|
+
msgstr ""
|
3398
|
+
|
3114
3399
|
msgid "Limit content to just that available in the activation key's content view version"
|
3115
3400
|
msgstr ""
|
3116
3401
|
|
@@ -3219,6 +3504,9 @@ msgstr ""
|
|
3219
3504
|
msgid "List of Products for sync plan"
|
3220
3505
|
msgstr "同步計畫的產品清單"
|
3221
3506
|
|
3507
|
+
msgid "List of alternate_content_sources"
|
3508
|
+
msgstr ""
|
3509
|
+
|
3222
3510
|
msgid "List of component content view version ids for composite views"
|
3223
3511
|
msgstr "複合式視域的元件內容視域版本 ID 之清單"
|
3224
3512
|
|
@@ -3315,6 +3603,12 @@ msgstr "訂閱中的訂閱產品清單"
|
|
3315
3603
|
msgid "List of subscription products in an activation key"
|
3316
3604
|
msgstr "啟動金鑰中的訂閱產品清單"
|
3317
3605
|
|
3606
|
+
msgid "List of versions to exclude and not run an action on"
|
3607
|
+
msgstr ""
|
3608
|
+
|
3609
|
+
msgid "List of versions to perform an action on"
|
3610
|
+
msgstr ""
|
3611
|
+
|
3318
3612
|
msgid "List organization subscriptions"
|
3319
3613
|
msgstr "列出組織訂閱"
|
3320
3614
|
|
@@ -3360,6 +3654,12 @@ msgstr "載入中"
|
|
3360
3654
|
msgid "Loading versions"
|
3361
3655
|
msgstr ""
|
3362
3656
|
|
3657
|
+
msgid "Loading..."
|
3658
|
+
msgstr ""
|
3659
|
+
|
3660
|
+
msgid "Low"
|
3661
|
+
msgstr ""
|
3662
|
+
|
3363
3663
|
msgid "Make copy of a content view"
|
3364
3664
|
msgstr "複製一份內容視域"
|
3365
3665
|
|
@@ -3417,6 +3717,9 @@ msgstr ""
|
|
3417
3717
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
3418
3718
|
msgstr "已達到啟動金鑰 '%{name}' 的最大主機限制(%{limit})"
|
3419
3719
|
|
3720
|
+
msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
|
3721
|
+
msgstr ""
|
3722
|
+
|
3420
3723
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
3421
3724
|
msgstr "已超過主機集的最大內容主機數量:%s"
|
3422
3725
|
|
@@ -3463,7 +3766,7 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
|
|
3463
3766
|
msgstr "沒有引數 %{substitutions} 給 %{content_url}"
|
3464
3767
|
|
3465
3768
|
msgid "Moderate"
|
3466
|
-
msgstr ""
|
3769
|
+
msgstr "控管"
|
3467
3770
|
|
3468
3771
|
msgid "Modular"
|
3469
3772
|
msgstr ""
|
@@ -3483,6 +3786,9 @@ msgstr ""
|
|
3483
3786
|
msgid "Module streams"
|
3484
3787
|
msgstr ""
|
3485
3788
|
|
3789
|
+
msgid "Module streams will appear here when available."
|
3790
|
+
msgstr ""
|
3791
|
+
|
3486
3792
|
msgid "Multi-entitlement"
|
3487
3793
|
msgstr "多重權利"
|
3488
3794
|
|
@@ -3508,15 +3814,24 @@ msgid ""
|
|
3508
3814
|
" %{repos}"
|
3509
3815
|
msgstr ""
|
3510
3816
|
|
3817
|
+
msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
|
3818
|
+
msgstr ""
|
3819
|
+
|
3511
3820
|
msgid "Name"
|
3512
3821
|
msgstr "名稱"
|
3513
3822
|
|
3823
|
+
msgid "Name is a required parameter."
|
3824
|
+
msgstr ""
|
3825
|
+
|
3514
3826
|
msgid "Name of new activation key"
|
3515
3827
|
msgstr "新啟動金鑰的名稱"
|
3516
3828
|
|
3517
3829
|
msgid "Name of the Content Credential"
|
3518
3830
|
msgstr ""
|
3519
3831
|
|
3832
|
+
msgid "Name of the alternate content source"
|
3833
|
+
msgstr ""
|
3834
|
+
|
3520
3835
|
msgid "Name of the content view"
|
3521
3836
|
msgstr "內容視域的名稱"
|
3522
3837
|
|
@@ -3538,6 +3853,9 @@ msgstr ""
|
|
3538
3853
|
msgid "Nest"
|
3539
3854
|
msgstr "巢狀"
|
3540
3855
|
|
3856
|
+
msgid "Network Sync"
|
3857
|
+
msgstr ""
|
3858
|
+
|
3541
3859
|
msgid "Never Synced"
|
3542
3860
|
msgstr "從未同步"
|
3543
3861
|
|
@@ -3604,12 +3922,21 @@ msgstr ""
|
|
3604
3922
|
msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
|
3605
3923
|
msgstr "複合式內容視域 % {composite} 版本 %{version} 中沒有作為其元件的既有 %{component} 內容視域版本。"
|
3606
3924
|
|
3925
|
+
msgid "No action is needed because there are no applicable errata for this host."
|
3926
|
+
msgstr ""
|
3927
|
+
|
3928
|
+
msgid "No action required"
|
3929
|
+
msgstr ""
|
3930
|
+
|
3607
3931
|
msgid "No applicable errata"
|
3608
3932
|
msgstr ""
|
3609
3933
|
|
3610
3934
|
msgid "No applicable errata for %s, skipping"
|
3611
3935
|
msgstr ""
|
3612
3936
|
|
3937
|
+
msgid "No applications to restart"
|
3938
|
+
msgstr ""
|
3939
|
+
|
3613
3940
|
msgid "No artifacts to show"
|
3614
3941
|
msgstr ""
|
3615
3942
|
|
@@ -3631,6 +3958,9 @@ msgstr "找不到內容視域的歷史事件。"
|
|
3631
3958
|
msgid "No content views available"
|
3632
3959
|
msgstr ""
|
3633
3960
|
|
3961
|
+
msgid "No content views available for the selected environment"
|
3962
|
+
msgstr ""
|
3963
|
+
|
3634
3964
|
msgid "No content views belong to ${label}"
|
3635
3965
|
msgstr ""
|
3636
3966
|
|
@@ -3640,6 +3970,9 @@ msgstr "未提供 content_view_version_ids"
|
|
3640
3970
|
msgid "No description"
|
3641
3971
|
msgstr ""
|
3642
3972
|
|
3973
|
+
msgid "No description provided"
|
3974
|
+
msgstr ""
|
3975
|
+
|
3643
3976
|
msgid "No enabled repositories match your search criteria."
|
3644
3977
|
msgstr ""
|
3645
3978
|
|
@@ -3664,6 +3997,9 @@ msgstr ""
|
|
3664
3997
|
msgid "No file uploaded"
|
3665
3998
|
msgstr "未上傳檔案"
|
3666
3999
|
|
4000
|
+
msgid "No host collections"
|
4001
|
+
msgstr ""
|
4002
|
+
|
3667
4003
|
msgid "No host collections found."
|
3668
4004
|
msgstr "找不到主機集項目。"
|
3669
4005
|
|
@@ -3673,6 +4009,9 @@ msgstr "未指定主機。"
|
|
3673
4009
|
msgid "No hosts registered with subscription-manager found in selection."
|
3674
4010
|
msgstr ""
|
3675
4011
|
|
4012
|
+
msgid "No hosts with content source found!"
|
4013
|
+
msgstr ""
|
4014
|
+
|
3676
4015
|
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3677
4016
|
msgstr ""
|
3678
4017
|
|
@@ -3697,6 +4036,9 @@ msgstr ""
|
|
3697
4036
|
msgid "No matching activation keys found."
|
3698
4037
|
msgstr ""
|
3699
4038
|
|
4039
|
+
msgid "No matching alternate content sources found"
|
4040
|
+
msgstr ""
|
4041
|
+
|
3700
4042
|
msgid "No matching content views found"
|
3701
4043
|
msgstr ""
|
3702
4044
|
|
@@ -3712,6 +4054,9 @@ msgstr ""
|
|
3712
4054
|
msgid "No matching history record found"
|
3713
4055
|
msgstr ""
|
3714
4056
|
|
4057
|
+
msgid "No matching host collections found"
|
4058
|
+
msgstr ""
|
4059
|
+
|
3715
4060
|
msgid "No matching hosts found."
|
3716
4061
|
msgstr ""
|
3717
4062
|
|
@@ -3742,6 +4087,12 @@ msgstr "沒有新的套件。"
|
|
3742
4087
|
msgid "No packages"
|
3743
4088
|
msgstr ""
|
3744
4089
|
|
4090
|
+
msgid "No packages available to install"
|
4091
|
+
msgstr ""
|
4092
|
+
|
4093
|
+
msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
|
4094
|
+
msgstr ""
|
4095
|
+
|
3745
4096
|
msgid "No packages removed"
|
3746
4097
|
msgstr "未移除任何套件"
|
3747
4098
|
|
@@ -3763,9 +4114,6 @@ msgstr ""
|
|
3763
4114
|
msgid "No products are enabled."
|
3764
4115
|
msgstr ""
|
3765
4116
|
|
3766
|
-
msgid "No profiles to show"
|
3767
|
-
msgstr ""
|
3768
|
-
|
3769
4117
|
msgid "No pulp workers running."
|
3770
4118
|
msgstr "沒有 pulp 工作者執行中。"
|
3771
4119
|
|
@@ -3832,9 +4180,6 @@ msgstr "無"
|
|
3832
4180
|
msgid "None provided"
|
3833
4181
|
msgstr ""
|
3834
4182
|
|
3835
|
-
msgid "Not Specified"
|
3836
|
-
msgstr ""
|
3837
|
-
|
3838
4183
|
msgid "Not a number"
|
3839
4184
|
msgstr ""
|
3840
4185
|
|
@@ -3847,6 +4192,9 @@ msgstr ""
|
|
3847
4192
|
msgid "Not running"
|
3848
4193
|
msgstr ""
|
3849
4194
|
|
4195
|
+
msgid "Not specified"
|
4196
|
+
msgstr ""
|
4197
|
+
|
3850
4198
|
msgid "Not yet published"
|
3851
4199
|
msgstr "尚未發佈"
|
3852
4200
|
|
@@ -3946,9 +4294,6 @@ msgstr ""
|
|
3946
4294
|
msgid "Organization Information not provided."
|
3947
4295
|
msgstr ""
|
3948
4296
|
|
3949
|
-
msgid "Organization Label"
|
3950
|
-
msgstr ""
|
3951
|
-
|
3952
4297
|
msgid "Organization cannot be blank."
|
3953
4298
|
msgstr "組織不能是空的。"
|
3954
4299
|
|
@@ -4153,9 +4498,6 @@ msgstr ""
|
|
4153
4498
|
msgid "Packages"
|
4154
4499
|
msgstr "套件"
|
4155
4500
|
|
4156
|
-
msgid "Packages management functionality on this page is incomplete"
|
4157
|
-
msgstr ""
|
4158
|
-
|
4159
4501
|
msgid "Packages must be provided"
|
4160
4502
|
msgstr "必須提供套件"
|
4161
4503
|
|
@@ -4175,9 +4517,9 @@ msgid "Partition template IDs"
|
|
4175
4517
|
msgstr "分割區範本 ID"
|
4176
4518
|
|
4177
4519
|
msgid "Password"
|
4178
|
-
msgstr ""
|
4520
|
+
msgstr "密碼"
|
4179
4521
|
|
4180
|
-
msgid "Password for authentication"
|
4522
|
+
msgid "Password for authentication. Relevant only for 'upstream_server' type."
|
4181
4523
|
msgstr ""
|
4182
4524
|
|
4183
4525
|
msgid "Password of the upstream authentication token."
|
@@ -4190,7 +4532,7 @@ msgid "Password to access URL"
|
|
4190
4532
|
msgstr ""
|
4191
4533
|
|
4192
4534
|
msgid "Path"
|
4193
|
-
msgstr ""
|
4535
|
+
msgstr "路徑"
|
4194
4536
|
|
4195
4537
|
msgid "Path for ssl cert used for pulp server auth"
|
4196
4538
|
msgstr "pulp 伺服器授權所使用的 SSL 金鑰憑證"
|
@@ -4198,6 +4540,9 @@ msgstr "pulp 伺服器授權所使用的 SSL 金鑰憑證"
|
|
4198
4540
|
msgid "Path for ssl key used for pulp server auth"
|
4199
4541
|
msgstr "pulp 伺服器授權所使用的 SSL 金鑰路徑"
|
4200
4542
|
|
4543
|
+
msgid "Path suffixes for finding alternate content"
|
4544
|
+
msgstr ""
|
4545
|
+
|
4201
4546
|
msgid "Paused"
|
4202
4547
|
msgstr "已暫停"
|
4203
4548
|
|
@@ -4216,6 +4561,12 @@ msgstr ""
|
|
4216
4561
|
msgid "Performs a full-export of the repositories in library."
|
4217
4562
|
msgstr ""
|
4218
4563
|
|
4564
|
+
msgid "Performs a full-export of the repository in library."
|
4565
|
+
msgstr ""
|
4566
|
+
|
4567
|
+
msgid "Performs a incremental-export of the repository in library."
|
4568
|
+
msgstr ""
|
4569
|
+
|
4219
4570
|
msgid "Performs an incremental-export of a content view version."
|
4220
4571
|
msgstr ""
|
4221
4572
|
|
@@ -4249,6 +4600,12 @@ msgstr ""
|
|
4249
4600
|
msgid "Please select a content source before assigning a kickstart repository"
|
4250
4601
|
msgstr ""
|
4251
4602
|
|
4603
|
+
msgid "Please select a lifecycle environment and a content view to move these activation keys."
|
4604
|
+
msgstr ""
|
4605
|
+
|
4606
|
+
msgid "Please select a lifecycle environment and a content view to move this activation key."
|
4607
|
+
msgstr ""
|
4608
|
+
|
4252
4609
|
msgid "Please select an architecture before assigning a kickstart repository"
|
4253
4610
|
msgstr ""
|
4254
4611
|
|
@@ -4270,9 +4627,39 @@ msgstr ""
|
|
4270
4627
|
msgid "Policy to set for mirroring content. Must be one of %s."
|
4271
4628
|
msgstr ""
|
4272
4629
|
|
4630
|
+
msgid "Prefer registered through proxy for remote execution"
|
4631
|
+
msgstr ""
|
4632
|
+
|
4633
|
+
msgid "Prefer using a proxy to which a host is registered when using remote execution"
|
4634
|
+
msgstr ""
|
4635
|
+
|
4636
|
+
msgid "Prevent from further updates"
|
4637
|
+
msgstr ""
|
4638
|
+
|
4273
4639
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
4274
4640
|
msgstr ""
|
4275
4641
|
|
4642
|
+
msgid "Problem searching"
|
4643
|
+
msgstr ""
|
4644
|
+
|
4645
|
+
msgid "Problem searching errata"
|
4646
|
+
msgstr ""
|
4647
|
+
|
4648
|
+
msgid "Problem searching host collections"
|
4649
|
+
msgstr ""
|
4650
|
+
|
4651
|
+
msgid "Problem searching module streams"
|
4652
|
+
msgstr ""
|
4653
|
+
|
4654
|
+
msgid "Problem searching packages"
|
4655
|
+
msgstr ""
|
4656
|
+
|
4657
|
+
msgid "Problem searching repository sets"
|
4658
|
+
msgstr ""
|
4659
|
+
|
4660
|
+
msgid "Problem searching traces"
|
4661
|
+
msgstr ""
|
4662
|
+
|
4276
4663
|
msgid "Processing metadata"
|
4277
4664
|
msgstr "處理 metadata"
|
4278
4665
|
|
@@ -4292,7 +4679,7 @@ msgid "Product ID"
|
|
4292
4679
|
msgstr "產品 ID"
|
4293
4680
|
|
4294
4681
|
msgid "Product Name"
|
4295
|
-
msgstr ""
|
4682
|
+
msgstr "產品名稱"
|
4296
4683
|
|
4297
4684
|
msgid "Product and Repositories"
|
4298
4685
|
msgstr "產品與軟體庫"
|
@@ -4329,9 +4716,6 @@ msgstr ""
|
|
4329
4716
|
msgid "Products"
|
4330
4717
|
msgstr "產品"
|
4331
4718
|
|
4332
|
-
msgid "Profiles"
|
4333
|
-
msgstr ""
|
4334
|
-
|
4335
4719
|
msgid "Promote"
|
4336
4720
|
msgstr "Promote"
|
4337
4721
|
|
@@ -4359,6 +4743,9 @@ msgstr "%{content_view} 的推送摘要"
|
|
4359
4743
|
msgid "Promotion to Environment"
|
4360
4744
|
msgstr ""
|
4361
4745
|
|
4746
|
+
msgid "Provide the required information and click {update} below to save changes."
|
4747
|
+
msgstr ""
|
4748
|
+
|
4362
4749
|
msgid "Provided Products"
|
4363
4750
|
msgstr "提供的產品"
|
4364
4751
|
|
@@ -4369,10 +4756,10 @@ msgid "Provisioning template IDs"
|
|
4369
4756
|
msgstr "佈建範本 ID"
|
4370
4757
|
|
4371
4758
|
msgid "Proxies"
|
4372
|
-
msgstr ""
|
4759
|
+
msgstr "代理伺服器"
|
4373
4760
|
|
4374
4761
|
msgid "Public"
|
4375
|
-
msgstr ""
|
4762
|
+
msgstr "公開的"
|
4376
4763
|
|
4377
4764
|
msgid "Public key block in DER encoding or certificate content"
|
4378
4765
|
msgstr ""
|
@@ -4521,18 +4908,27 @@ msgstr ""
|
|
4521
4908
|
msgid "RPM name"
|
4522
4909
|
msgstr ""
|
4523
4910
|
|
4911
|
+
msgid "RPM packages"
|
4912
|
+
msgstr ""
|
4913
|
+
|
4524
4914
|
msgid "RPMs"
|
4525
4915
|
msgstr "RPM"
|
4526
4916
|
|
4527
4917
|
msgid "Range"
|
4528
|
-
msgstr ""
|
4918
|
+
msgstr "範圍"
|
4529
4919
|
|
4530
4920
|
msgid "Realm IDs"
|
4531
4921
|
msgstr "領域 ID"
|
4532
4922
|
|
4923
|
+
msgid "Reassign affected activation key"
|
4924
|
+
msgstr ""
|
4925
|
+
|
4533
4926
|
msgid "Reassign affected activation keys"
|
4534
4927
|
msgstr ""
|
4535
4928
|
|
4929
|
+
msgid "Reassign affected host"
|
4930
|
+
msgstr ""
|
4931
|
+
|
4536
4932
|
msgid "Reassign affected hosts"
|
4537
4933
|
msgstr ""
|
4538
4934
|
|
@@ -4560,6 +4956,9 @@ msgstr ""
|
|
4560
4956
|
msgid "Recommended Repositories"
|
4561
4957
|
msgstr ""
|
4562
4958
|
|
4959
|
+
msgid "Red Hat CDN"
|
4960
|
+
msgstr ""
|
4961
|
+
|
4563
4962
|
msgid "Red Hat CDN URL"
|
4564
4963
|
msgstr "Red Hat CDN 網址"
|
4565
4964
|
|
@@ -4567,6 +4966,15 @@ msgid "Red Hat Repositories"
|
|
4567
4966
|
msgstr "Red Hat 軟體庫"
|
4568
4967
|
|
4569
4968
|
msgid "Red Hat Repositories page"
|
4969
|
+
msgstr "Red Hat 軟體庫頁面"
|
4970
|
+
|
4971
|
+
msgid "Red Hat content will be consumed from an {type}."
|
4972
|
+
msgstr ""
|
4973
|
+
|
4974
|
+
msgid "Red Hat content will be consumed from the {type}."
|
4975
|
+
msgstr ""
|
4976
|
+
|
4977
|
+
msgid "Red Hat content will be enabled and consumed via the {type} process."
|
4570
4978
|
msgstr ""
|
4571
4979
|
|
4572
4980
|
msgid "Red Hat products cannot be manipulated."
|
@@ -4599,6 +5007,18 @@ msgstr ""
|
|
4599
5007
|
msgid "Register host '%s' before attaching subscriptions"
|
4600
5008
|
msgstr ""
|
4601
5009
|
|
5010
|
+
msgid "Registered by"
|
5011
|
+
msgstr ""
|
5012
|
+
|
5013
|
+
msgid "Registered on"
|
5014
|
+
msgstr ""
|
5015
|
+
|
5016
|
+
msgid "Registered through"
|
5017
|
+
msgstr ""
|
5018
|
+
|
5019
|
+
msgid "Registration details"
|
5020
|
+
msgstr ""
|
5021
|
+
|
4602
5022
|
msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
|
4603
5023
|
msgstr ""
|
4604
5024
|
|
@@ -4627,7 +5047,7 @@ msgid "Related content views will appear here when created."
|
|
4627
5047
|
msgstr ""
|
4628
5048
|
|
4629
5049
|
msgid "Release"
|
4630
|
-
msgstr ""
|
5050
|
+
msgstr "發行版"
|
4631
5051
|
|
4632
5052
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
4633
5053
|
msgstr ""
|
@@ -4689,12 +5109,21 @@ msgstr ""
|
|
4689
5109
|
msgid "Remove from environments"
|
4690
5110
|
msgstr ""
|
4691
5111
|
|
5112
|
+
msgid "Remove host from collections"
|
5113
|
+
msgstr ""
|
5114
|
+
|
5115
|
+
msgid "Remove host from host collections"
|
5116
|
+
msgstr ""
|
5117
|
+
|
4692
5118
|
msgid "Remove hosts from the host collection"
|
4693
5119
|
msgstr "從主機集中移除主機"
|
4694
5120
|
|
4695
5121
|
msgid "Remove lifecycle environments from the smart proxy"
|
4696
5122
|
msgstr ""
|
4697
5123
|
|
5124
|
+
msgid "Remove module stream"
|
5125
|
+
msgstr ""
|
5126
|
+
|
4698
5127
|
msgid "Remove one or more host collections from one or more hosts"
|
4699
5128
|
msgstr "從一或多台主機刪除一或多個主機集項目"
|
4700
5129
|
|
@@ -4716,6 +5145,9 @@ msgstr "透過 Katello 介面移除套件群組"
|
|
4716
5145
|
msgid "Remove package via Katello interface"
|
4717
5146
|
msgstr "透過 Katello 介面移除套件"
|
4718
5147
|
|
5148
|
+
msgid "Remove packages via Katello interface"
|
5149
|
+
msgstr ""
|
5150
|
+
|
4719
5151
|
msgid "Remove products from sync plan"
|
4720
5152
|
msgstr "從同步計畫中移除產品"
|
4721
5153
|
|
@@ -4755,6 +5187,9 @@ msgstr "軟體庫類型"
|
|
4755
5187
|
msgid "Repositories"
|
4756
5188
|
msgstr "軟體庫"
|
4757
5189
|
|
5190
|
+
msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
|
5191
|
+
msgstr ""
|
5192
|
+
|
4758
5193
|
msgid "Repositories from published Content Views are not allowed."
|
4759
5194
|
msgstr "不允許來自於已發行之內容視域的軟體庫。"
|
4760
5195
|
|
@@ -4830,9 +5265,6 @@ msgstr ""
|
|
4830
5265
|
msgid "Repository sets will appear here when available."
|
4831
5266
|
msgstr ""
|
4832
5267
|
|
4833
|
-
msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
|
4834
|
-
msgstr ""
|
4835
|
-
|
4836
5268
|
msgid "Republish Repositories of %{name} %{version}"
|
4837
5269
|
msgstr ""
|
4838
5270
|
|
@@ -4854,10 +5286,19 @@ msgstr ""
|
|
4854
5286
|
msgid "Requires Virt-Who"
|
4855
5287
|
msgstr ""
|
4856
5288
|
|
5289
|
+
msgid "Reset"
|
5290
|
+
msgstr ""
|
5291
|
+
|
4857
5292
|
msgid "Reset filters"
|
4858
5293
|
msgstr ""
|
4859
5294
|
|
5295
|
+
msgid "Reset module stream"
|
5296
|
+
msgstr ""
|
5297
|
+
|
4860
5298
|
msgid "Reset to default"
|
5299
|
+
msgstr "重設為預設值"
|
5300
|
+
|
5301
|
+
msgid "Reset to the default state"
|
4861
5302
|
msgstr ""
|
4862
5303
|
|
4863
5304
|
msgid "Resolve traces"
|
@@ -4884,7 +5325,7 @@ msgstr ""
|
|
4884
5325
|
msgid "Restart via remote execution"
|
4885
5326
|
msgstr ""
|
4886
5327
|
|
4887
|
-
msgid "Restrict
|
5328
|
+
msgid "Restrict composite content view promotion"
|
4888
5329
|
msgstr ""
|
4889
5330
|
|
4890
5331
|
msgid "Result"
|
@@ -4974,7 +5415,10 @@ msgstr ""
|
|
4974
5415
|
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4975
5416
|
msgstr ""
|
4976
5417
|
|
4977
|
-
msgid "Review
|
5418
|
+
msgid "Review affected environment"
|
5419
|
+
msgstr ""
|
5420
|
+
|
5421
|
+
msgid "Review affected environments"
|
4978
5422
|
msgstr ""
|
4979
5423
|
|
4980
5424
|
msgid "Review details"
|
@@ -4992,15 +5436,15 @@ msgstr ""
|
|
4992
5436
|
msgid "Roles"
|
4993
5437
|
msgstr "角色"
|
4994
5438
|
|
4995
|
-
msgid "Rpm packages"
|
4996
|
-
msgstr ""
|
4997
|
-
|
4998
5439
|
msgid "Rules to be added"
|
4999
5440
|
msgstr ""
|
5000
5441
|
|
5001
5442
|
msgid "Run Sync Plan:"
|
5002
5443
|
msgstr ""
|
5003
5444
|
|
5445
|
+
msgid "Run job invocation"
|
5446
|
+
msgstr ""
|
5447
|
+
|
5004
5448
|
msgid "Running"
|
5005
5449
|
msgstr "執行中"
|
5006
5450
|
|
@@ -5037,6 +5481,12 @@ msgstr "搜尋"
|
|
5037
5481
|
msgid "Search Query"
|
5038
5482
|
msgstr ""
|
5039
5483
|
|
5484
|
+
msgid "Search available packages"
|
5485
|
+
msgstr ""
|
5486
|
+
|
5487
|
+
msgid "Search host collections"
|
5488
|
+
msgstr ""
|
5489
|
+
|
5040
5490
|
msgid "Search pattern (defaults to '*')"
|
5041
5491
|
msgstr ""
|
5042
5492
|
|
@@ -5052,6 +5502,9 @@ msgstr "搜尋用以進行動作之主機的字串"
|
|
5052
5502
|
msgid "Search string for hosts to perform an action on"
|
5053
5503
|
msgstr ""
|
5054
5504
|
|
5505
|
+
msgid "Search string for versions to perform an action on"
|
5506
|
+
msgstr ""
|
5507
|
+
|
5055
5508
|
msgid "Security"
|
5056
5509
|
msgstr "安全性"
|
5057
5510
|
|
@@ -5064,6 +5517,9 @@ msgstr ""
|
|
5064
5517
|
msgid "Select"
|
5065
5518
|
msgstr "選擇"
|
5066
5519
|
|
5520
|
+
msgid "Select ..."
|
5521
|
+
msgstr ""
|
5522
|
+
|
5067
5523
|
msgid "Select All"
|
5068
5524
|
msgstr "全部選擇"
|
5069
5525
|
|
@@ -5082,6 +5538,12 @@ msgstr ""
|
|
5082
5538
|
msgid "Select a content view"
|
5083
5539
|
msgstr ""
|
5084
5540
|
|
5541
|
+
msgid "Select a lifecycle environment and a content view to move these hosts."
|
5542
|
+
msgstr ""
|
5543
|
+
|
5544
|
+
msgid "Select a lifecycle environment and a content view to move this host."
|
5545
|
+
msgstr ""
|
5546
|
+
|
5085
5547
|
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
5086
5548
|
msgstr ""
|
5087
5549
|
|
@@ -5097,6 +5559,12 @@ msgstr ""
|
|
5097
5559
|
msgid "Select an Organization"
|
5098
5560
|
msgstr "選擇組織"
|
5099
5561
|
|
5562
|
+
msgid "Select an environment"
|
5563
|
+
msgstr ""
|
5564
|
+
|
5565
|
+
msgid "Select an environment above"
|
5566
|
+
msgstr ""
|
5567
|
+
|
5100
5568
|
msgid "Select an organization"
|
5101
5569
|
msgstr ""
|
5102
5570
|
|
@@ -5109,6 +5577,15 @@ msgstr ""
|
|
5109
5577
|
msgid "Select content view"
|
5110
5578
|
msgstr ""
|
5111
5579
|
|
5580
|
+
msgid "Select environment"
|
5581
|
+
msgstr ""
|
5582
|
+
|
5583
|
+
msgid "Select host collection(s) to associate with host {hostName}."
|
5584
|
+
msgstr ""
|
5585
|
+
|
5586
|
+
msgid "Select host collection(s) to remove from host {hostName}."
|
5587
|
+
msgstr ""
|
5588
|
+
|
5112
5589
|
msgid "Select hosts to assign to %s"
|
5113
5590
|
msgstr "選擇要指定給 %s 的主機"
|
5114
5591
|
|
@@ -5121,6 +5598,9 @@ msgstr ""
|
|
5121
5598
|
msgid "Select one"
|
5122
5599
|
msgstr ""
|
5123
5600
|
|
5601
|
+
msgid "Select packages to install to the host {hostName}."
|
5602
|
+
msgstr ""
|
5603
|
+
|
5124
5604
|
msgid "Select page"
|
5125
5605
|
msgstr ""
|
5126
5606
|
|
@@ -5139,15 +5619,15 @@ msgstr ""
|
|
5139
5619
|
msgid "Sending a list of included IDs is not allowed when all items are being selected."
|
5140
5620
|
msgstr ""
|
5141
5621
|
|
5142
|
-
msgid "Service Level"
|
5143
|
-
msgstr "服務等級"
|
5144
|
-
|
5145
5622
|
msgid "Service Level %s"
|
5146
5623
|
msgstr "服務等級 %s"
|
5147
5624
|
|
5148
5625
|
msgid "Service Level (SLA)"
|
5149
5626
|
msgstr ""
|
5150
5627
|
|
5628
|
+
msgid "Service level"
|
5629
|
+
msgstr ""
|
5630
|
+
|
5151
5631
|
msgid "Service level of host"
|
5152
5632
|
msgstr ""
|
5153
5633
|
|
@@ -5160,6 +5640,9 @@ msgstr "為主機設定內容覆寫"
|
|
5160
5640
|
msgid "Set content overrides to one or more hosts"
|
5161
5641
|
msgstr ""
|
5162
5642
|
|
5643
|
+
msgid "Set true to override to enabled; Set false to override to disabled.'"
|
5644
|
+
msgstr ""
|
5645
|
+
|
5163
5646
|
msgid "Set true to remove an override and reset it to 'default'"
|
5164
5647
|
msgstr ""
|
5165
5648
|
|
@@ -5214,12 +5697,21 @@ msgstr "顯示訂閱"
|
|
5214
5697
|
msgid "Show a sync plan"
|
5215
5698
|
msgstr "顯示同步計畫"
|
5216
5699
|
|
5700
|
+
msgid "Show affected activation keys"
|
5701
|
+
msgstr ""
|
5702
|
+
|
5703
|
+
msgid "Show affected hosts"
|
5704
|
+
msgstr ""
|
5705
|
+
|
5217
5706
|
msgid "Show all"
|
5218
5707
|
msgstr ""
|
5219
5708
|
|
5220
5709
|
msgid "Show an activation key"
|
5221
5710
|
msgstr "顯示啟動金鑰"
|
5222
5711
|
|
5712
|
+
msgid "Show an alternate content source"
|
5713
|
+
msgstr ""
|
5714
|
+
|
5223
5715
|
msgid "Show an environment"
|
5224
5716
|
msgstr "顯示環境"
|
5225
5717
|
|
@@ -5287,7 +5779,7 @@ msgid "Sockets: %s"
|
|
5287
5779
|
msgstr "插槽:%s"
|
5288
5780
|
|
5289
5781
|
msgid "Solution"
|
5290
|
-
msgstr ""
|
5782
|
+
msgstr "位置"
|
5291
5783
|
|
5292
5784
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
5293
5785
|
msgstr ""
|
@@ -5295,6 +5787,9 @@ msgstr ""
|
|
5295
5787
|
msgid "Solve dependencies"
|
5296
5788
|
msgstr ""
|
5297
5789
|
|
5790
|
+
msgid "Some hosts are ignored!"
|
5791
|
+
msgstr ""
|
5792
|
+
|
5298
5793
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
5299
5794
|
msgstr ""
|
5300
5795
|
|
@@ -5322,9 +5817,15 @@ msgstr ""
|
|
5322
5817
|
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
5323
5818
|
msgstr ""
|
5324
5819
|
|
5820
|
+
msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
|
5821
|
+
msgstr ""
|
5822
|
+
|
5325
5823
|
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
5326
5824
|
msgstr ""
|
5327
5825
|
|
5826
|
+
msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
|
5827
|
+
msgstr ""
|
5828
|
+
|
5328
5829
|
msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5329
5830
|
msgstr ""
|
5330
5831
|
|
@@ -5343,10 +5844,10 @@ msgstr ""
|
|
5343
5844
|
msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
|
5344
5845
|
msgstr ""
|
5345
5846
|
|
5346
|
-
msgid "Something went wrong while getting
|
5847
|
+
msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
|
5347
5848
|
msgstr ""
|
5348
5849
|
|
5349
|
-
msgid "Something went wrong while getting
|
5850
|
+
msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
|
5350
5851
|
msgstr ""
|
5351
5852
|
|
5352
5853
|
msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
|
@@ -5358,9 +5859,15 @@ msgstr ""
|
|
5358
5859
|
msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
|
5359
5860
|
msgstr ""
|
5360
5861
|
|
5862
|
+
msgid "Something went wrong while getting the data. See the logs for more information"
|
5863
|
+
msgstr ""
|
5864
|
+
|
5361
5865
|
msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
|
5362
5866
|
msgstr ""
|
5363
5867
|
|
5868
|
+
msgid "Something went wrong while loading the content views. See the logs for more information"
|
5869
|
+
msgstr ""
|
5870
|
+
|
5364
5871
|
msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
|
5365
5872
|
msgstr ""
|
5366
5873
|
|
@@ -5397,6 +5904,9 @@ msgstr ""
|
|
5397
5904
|
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
5398
5905
|
msgstr ""
|
5399
5906
|
|
5907
|
+
msgid "Something went wrong while updating the content source. See the logs for more information"
|
5908
|
+
msgstr ""
|
5909
|
+
|
5400
5910
|
msgid "Something went wrong! Please check server logs!"
|
5401
5911
|
msgstr ""
|
5402
5912
|
|
@@ -5407,7 +5917,7 @@ msgid "Source RPM"
|
|
5407
5917
|
msgstr "來源 RPM"
|
5408
5918
|
|
5409
5919
|
msgid "Source RPMs"
|
5410
|
-
msgstr ""
|
5920
|
+
msgstr "來源 RPM"
|
5411
5921
|
|
5412
5922
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
5413
5923
|
msgstr ""
|
@@ -5430,9 +5940,15 @@ msgstr "起始日期與時間不能留白"
|
|
5430
5940
|
msgid "Start Time"
|
5431
5941
|
msgstr "起始時間"
|
5432
5942
|
|
5943
|
+
msgid "Start date"
|
5944
|
+
msgstr ""
|
5945
|
+
|
5433
5946
|
msgid "Starts"
|
5434
5947
|
msgstr "起始"
|
5435
5948
|
|
5949
|
+
msgid "State"
|
5950
|
+
msgstr ""
|
5951
|
+
|
5436
5952
|
msgid "Status"
|
5437
5953
|
msgstr "狀態"
|
5438
5954
|
|
@@ -5445,6 +5961,12 @@ msgstr "儲存裝置"
|
|
5445
5961
|
msgid "Stream"
|
5446
5962
|
msgstr ""
|
5447
5963
|
|
5964
|
+
msgid "Streamed"
|
5965
|
+
msgstr ""
|
5966
|
+
|
5967
|
+
msgid "Streams based on the host based on the installation status"
|
5968
|
+
msgstr ""
|
5969
|
+
|
5448
5970
|
msgid "Streams based on the host based on their status"
|
5449
5971
|
msgstr ""
|
5450
5972
|
|
@@ -5487,9 +6009,15 @@ msgstr "訂閱集區的 UUID"
|
|
5487
6009
|
msgid "Subscription Status"
|
5488
6010
|
msgstr "訂閱狀態"
|
5489
6011
|
|
6012
|
+
msgid "Subscription UUID"
|
6013
|
+
msgstr ""
|
6014
|
+
|
5490
6015
|
msgid "Subscription Watch"
|
5491
6016
|
msgstr ""
|
5492
6017
|
|
6018
|
+
msgid "Subscription connection enabled"
|
6019
|
+
msgstr ""
|
6020
|
+
|
5493
6021
|
msgid "Subscription expiration notification"
|
5494
6022
|
msgstr ""
|
5495
6023
|
|
@@ -5568,7 +6096,7 @@ msgstr ""
|
|
5568
6096
|
msgid "Sync Canceled"
|
5569
6097
|
msgstr "已取消同步"
|
5570
6098
|
|
5571
|
-
msgid "Sync
|
6099
|
+
msgid "Sync Connect Timeout"
|
5572
6100
|
msgstr ""
|
5573
6101
|
|
5574
6102
|
msgid "Sync Content View on Smart Proxy(ies)"
|
@@ -5592,7 +6120,13 @@ msgstr "同步計劃"
|
|
5592
6120
|
msgid "Sync Repository on Smart Proxy(ies)"
|
5593
6121
|
msgstr ""
|
5594
6122
|
|
5595
|
-
msgid "Sync Smart Proxies after
|
6123
|
+
msgid "Sync Smart Proxies after content view promotion"
|
6124
|
+
msgstr ""
|
6125
|
+
|
6126
|
+
msgid "Sync Sock Connect Timeout"
|
6127
|
+
msgstr ""
|
6128
|
+
|
6129
|
+
msgid "Sync Sock Read Timeout"
|
5596
6130
|
msgstr ""
|
5597
6131
|
|
5598
6132
|
msgid "Sync Status"
|
@@ -5604,6 +6138,9 @@ msgstr "同步摘要"
|
|
5604
6138
|
msgid "Sync Summary for %s"
|
5605
6139
|
msgstr "%s 的同步摘要"
|
5606
6140
|
|
6141
|
+
msgid "Sync Total Timeout"
|
6142
|
+
msgstr ""
|
6143
|
+
|
5607
6144
|
msgid "Sync a repository"
|
5608
6145
|
msgstr "同步軟體庫"
|
5609
6146
|
|
@@ -5673,6 +6210,9 @@ msgstr ""
|
|
5673
6210
|
msgid "System Status"
|
5674
6211
|
msgstr "系統狀態"
|
5675
6212
|
|
6213
|
+
msgid "System purpose"
|
6214
|
+
msgstr ""
|
6215
|
+
|
5676
6216
|
msgid "Tag name"
|
5677
6217
|
msgstr ""
|
5678
6218
|
|
@@ -5700,6 +6240,9 @@ msgstr "暫時性"
|
|
5700
6240
|
msgid "The '%s' environment cannot contain a changeset!"
|
5701
6241
|
msgstr "'%s' 環境不可包含變更集!"
|
5702
6242
|
|
6243
|
+
msgid "The Alternate Content Source type"
|
6244
|
+
msgstr ""
|
6245
|
+
|
5703
6246
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
5704
6247
|
msgstr ""
|
5705
6248
|
|
@@ -5712,6 +6255,9 @@ msgstr ""
|
|
5712
6255
|
msgid "The actual file contents"
|
5713
6256
|
msgstr "實際的檔案內容"
|
5714
6257
|
|
6258
|
+
msgid "The content type for the Alternate Content Source"
|
6259
|
+
msgstr ""
|
6260
|
+
|
5715
6261
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
5716
6262
|
msgstr "不能刪除目前的組織。刪除前請切換到其它組織。"
|
5717
6263
|
|
@@ -5721,7 +6267,7 @@ msgstr "無法編輯、推送、或刪除預設的內容視域。"
|
|
5721
6267
|
msgid "The default content view cannot be promoted"
|
5722
6268
|
msgstr "無法提示預設的內容視域"
|
5723
6269
|
|
5724
|
-
msgid "The default dependency solving value for new
|
6270
|
+
msgid "The default dependency solving value for new content views."
|
5725
6271
|
msgstr ""
|
5726
6272
|
|
5727
6273
|
msgid "The description for the content view version"
|
@@ -5751,6 +6297,9 @@ msgstr ""
|
|
5751
6297
|
msgid "The field to sort the data by. Defaults to the created date."
|
5752
6298
|
msgstr ""
|
5753
6299
|
|
6300
|
+
msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
|
6301
|
+
msgstr ""
|
6302
|
+
|
5754
6303
|
msgid "The following hosts have errata that apply to them: "
|
5755
6304
|
msgstr "下列主機含有套用至它們的勘誤:"
|
5756
6305
|
|
@@ -5759,15 +6308,39 @@ msgid ""
|
|
5759
6308
|
" %{repos}"
|
5760
6309
|
msgstr ""
|
5761
6310
|
|
6311
|
+
msgid "The id of the content source"
|
6312
|
+
msgstr ""
|
6313
|
+
|
6314
|
+
msgid "The id of the content view"
|
6315
|
+
msgstr ""
|
6316
|
+
|
5762
6317
|
msgid "The id of the host to alter"
|
5763
6318
|
msgstr "要修改的主機之 ID"
|
5764
6319
|
|
6320
|
+
msgid "The id of the lifecycle environment"
|
6321
|
+
msgstr ""
|
6322
|
+
|
6323
|
+
msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
|
6324
|
+
msgstr ""
|
6325
|
+
|
5765
6326
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
5766
6327
|
msgstr ""
|
5767
6328
|
|
5768
6329
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
5769
6330
|
msgstr ""
|
5770
6331
|
|
6332
|
+
msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
|
6333
|
+
msgstr ""
|
6334
|
+
|
6335
|
+
msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
|
6336
|
+
msgstr ""
|
6337
|
+
|
6338
|
+
msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
|
6339
|
+
msgstr ""
|
6340
|
+
|
6341
|
+
msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
|
6342
|
+
msgstr ""
|
6343
|
+
|
5771
6344
|
msgid "The maximum number of versions of each package to keep."
|
5772
6345
|
msgstr ""
|
5773
6346
|
|
@@ -5854,9 +6427,18 @@ msgstr ""
|
|
5854
6427
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5855
6428
|
msgstr "沒有需要套用至已註冊之內容主機的勘誤。"
|
5856
6429
|
|
6430
|
+
msgid "There are no host collections available to add."
|
6431
|
+
msgstr ""
|
6432
|
+
|
5857
6433
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5858
6434
|
msgstr "並未啟用產品或軟體庫。請透過 %{custom} 或 %{redhat} 來啟用。"
|
5859
6435
|
|
6436
|
+
msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
|
6437
|
+
msgstr ""
|
6438
|
+
|
6439
|
+
msgid "There are {numberOfHosts} hosts that need to be reassigned."
|
6440
|
+
msgstr ""
|
6441
|
+
|
5860
6442
|
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."
|
5861
6443
|
msgstr "未指定環境或是版本,或是指定了無效的環境/版本。請檢查 environment_ids 和 content_view_version_ids 參數。"
|
5862
6444
|
|
@@ -5869,6 +6451,12 @@ msgstr ""
|
|
5869
6451
|
msgid "There is nothing to see here"
|
5870
6452
|
msgstr ""
|
5871
6453
|
|
6454
|
+
msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
|
6455
|
+
msgstr ""
|
6456
|
+
|
6457
|
+
msgid "There is {numberOfHosts} host that needs to be reassigned."
|
6458
|
+
msgstr ""
|
6459
|
+
|
5872
6460
|
msgid "There was a problem retrieving Activation Key data from the server."
|
5873
6461
|
msgstr ""
|
5874
6462
|
|
@@ -5917,13 +6505,13 @@ msgstr ""
|
|
5917
6505
|
msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
|
5918
6506
|
msgstr ""
|
5919
6507
|
|
5920
|
-
msgid "This host
|
6508
|
+
msgid "This host does not have any Module streams."
|
5921
6509
|
msgstr ""
|
5922
6510
|
|
5923
|
-
msgid "This host does not have any
|
6511
|
+
msgid "This host does not have any packages."
|
5924
6512
|
msgstr ""
|
5925
6513
|
|
5926
|
-
msgid "This host
|
6514
|
+
msgid "This host has errata that are applicable, but not installable."
|
5927
6515
|
msgstr ""
|
5928
6516
|
|
5929
6517
|
msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
|
@@ -5956,6 +6544,9 @@ msgstr ""
|
|
5956
6544
|
msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
|
5957
6545
|
msgstr ""
|
5958
6546
|
|
6547
|
+
msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
|
6548
|
+
msgstr ""
|
6549
|
+
|
5959
6550
|
msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
|
5960
6551
|
msgstr ""
|
5961
6552
|
|
@@ -5981,7 +6572,7 @@ msgid "This version is not promoted to any environments."
|
|
5981
6572
|
msgstr ""
|
5982
6573
|
|
5983
6574
|
msgid "This version will be removed from:"
|
5984
|
-
msgstr ""
|
6575
|
+
msgstr "這版本將會由此移除:"
|
5985
6576
|
|
5986
6577
|
msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
|
5987
6578
|
msgstr ""
|
@@ -5989,11 +6580,11 @@ msgstr ""
|
|
5989
6580
|
msgid "Time in minutes to consider orphan content as orphaned."
|
5990
6581
|
msgstr ""
|
5991
6582
|
|
5992
|
-
msgid "Time in seconds to wait for a
|
5993
|
-
msgstr "
|
6583
|
+
msgid "Time in seconds to wait for a host to finish a katello-agent action"
|
6584
|
+
msgstr ""
|
5994
6585
|
|
5995
|
-
msgid "Time in seconds to wait for a
|
5996
|
-
msgstr "
|
6586
|
+
msgid "Time in seconds to wait for a host to pick up a katello-agent action"
|
6587
|
+
msgstr ""
|
5997
6588
|
|
5998
6589
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
5999
6590
|
msgstr ""
|
@@ -6010,9 +6601,6 @@ msgstr ""
|
|
6010
6601
|
msgid "Total steps: "
|
6011
6602
|
msgstr ""
|
6012
6603
|
|
6013
|
-
msgid "Total timeout in seconds for connections when syncing"
|
6014
|
-
msgstr ""
|
6015
|
-
|
6016
6604
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
6017
6605
|
msgstr ""
|
6018
6606
|
|
@@ -6028,6 +6616,9 @@ msgstr ""
|
|
6028
6616
|
msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
|
6029
6617
|
msgstr ""
|
6030
6618
|
|
6619
|
+
msgid "Traces may be listed here after {pkgLink}."
|
6620
|
+
msgstr ""
|
6621
|
+
|
6031
6622
|
msgid "Traces that require logout cannot be restarted remotely"
|
6032
6623
|
msgstr ""
|
6033
6624
|
|
@@ -6062,7 +6653,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
6062
6653
|
msgstr ""
|
6063
6654
|
|
6064
6655
|
msgid "URL"
|
6065
|
-
msgstr ""
|
6656
|
+
msgstr "URL"
|
6066
6657
|
|
6067
6658
|
msgid "URL needs to have a trailing /"
|
6068
6659
|
msgstr ""
|
@@ -6092,7 +6683,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
6092
6683
|
msgstr "來自主機 hypervisor 的虛擬客座端 UUID"
|
6093
6684
|
|
6094
6685
|
msgid "Unable to connect"
|
6095
|
-
msgstr ""
|
6686
|
+
msgstr "無法連線"
|
6096
6687
|
|
6097
6688
|
msgid "Unable to connect. Got: %s"
|
6098
6689
|
msgstr "無法連線。收到:%s"
|
@@ -6109,9 +6700,15 @@ msgstr ""
|
|
6109
6700
|
msgid "Unable to get users"
|
6110
6701
|
msgstr ""
|
6111
6702
|
|
6703
|
+
msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
|
6704
|
+
msgstr ""
|
6705
|
+
|
6112
6706
|
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
6113
6707
|
msgstr ""
|
6114
6708
|
|
6709
|
+
msgid "Unable to incrementally export. Do a Full Export on the repository content."
|
6710
|
+
msgstr ""
|
6711
|
+
|
6115
6712
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
6116
6713
|
msgstr "無法重新指定 activation_keys。請檢查 activation_key_content_view_id 與 activation_key_environment_id。"
|
6117
6714
|
|
@@ -6154,6 +6751,9 @@ msgstr "沒有權利"
|
|
6154
6751
|
msgid "Unfiltered params array: %s."
|
6155
6752
|
msgstr ""
|
6156
6753
|
|
6754
|
+
msgid "Uninstall and reset"
|
6755
|
+
msgstr ""
|
6756
|
+
|
6157
6757
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
6158
6758
|
msgstr ""
|
6159
6759
|
|
@@ -6208,6 +6808,9 @@ msgstr ""
|
|
6208
6808
|
msgid "Update"
|
6209
6809
|
msgstr "更新"
|
6210
6810
|
|
6811
|
+
msgid "Update Alternate Content Source"
|
6812
|
+
msgstr ""
|
6813
|
+
|
6211
6814
|
msgid "Update CDN Configuration"
|
6212
6815
|
msgstr ""
|
6213
6816
|
|
@@ -6247,6 +6850,9 @@ msgstr "更新同步計畫"
|
|
6247
6850
|
msgid "Update an activation key"
|
6248
6851
|
msgstr "更新啟動金鑰"
|
6249
6852
|
|
6853
|
+
msgid "Update an alternate content source"
|
6854
|
+
msgstr ""
|
6855
|
+
|
6250
6856
|
msgid "Update an environment"
|
6251
6857
|
msgstr "更新環境"
|
6252
6858
|
|
@@ -6298,6 +6904,9 @@ msgstr "透過 Katello 介面更新套件"
|
|
6298
6904
|
msgid "Update packages remotely using katello-agent. %s"
|
6299
6905
|
msgstr ""
|
6300
6906
|
|
6907
|
+
msgid "Update packages via Katello interface"
|
6908
|
+
msgstr ""
|
6909
|
+
|
6301
6910
|
msgid "Update redhat repository"
|
6302
6911
|
msgstr ""
|
6303
6912
|
|
@@ -6316,6 +6925,9 @@ msgstr ""
|
|
6316
6925
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
6317
6926
|
msgstr ""
|
6318
6927
|
|
6928
|
+
msgid "Update the content source for specified hosts and generate the reconfiguration script"
|
6929
|
+
msgstr ""
|
6930
|
+
|
6319
6931
|
msgid "Update the information about enabled repositories"
|
6320
6932
|
msgstr "更新關於啟用軟體庫的資訊"
|
6321
6933
|
|
@@ -6331,6 +6943,9 @@ msgstr "已更新"
|
|
6331
6943
|
msgid "Updated component details"
|
6332
6944
|
msgstr ""
|
6333
6945
|
|
6946
|
+
msgid "Updated from"
|
6947
|
+
msgstr ""
|
6948
|
+
|
6334
6949
|
msgid "Updates"
|
6335
6950
|
msgstr "更新"
|
6336
6951
|
|
@@ -6358,7 +6973,7 @@ msgstr ""
|
|
6358
6973
|
msgid "Upgradable"
|
6359
6974
|
msgstr ""
|
6360
6975
|
|
6361
|
-
msgid "Upgradable
|
6976
|
+
msgid "Upgradable to"
|
6362
6977
|
msgstr ""
|
6363
6978
|
|
6364
6979
|
msgid "Upgrade"
|
@@ -6391,9 +7006,18 @@ msgstr ""
|
|
6391
7006
|
msgid "Upload request id"
|
6392
7007
|
msgstr "上傳需求 ID"
|
6393
7008
|
|
7009
|
+
msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
|
7010
|
+
msgstr ""
|
7011
|
+
|
7012
|
+
msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
|
7013
|
+
msgstr ""
|
7014
|
+
|
6394
7015
|
msgid "Upstream Name cannot be blank when Repository URL is provided."
|
6395
7016
|
msgstr ""
|
6396
7017
|
|
7018
|
+
msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
|
7019
|
+
msgstr ""
|
7020
|
+
|
6397
7021
|
msgid "Upstream identity certificate not available"
|
6398
7022
|
msgstr "沒有上游身份憑證"
|
6399
7023
|
|
@@ -6406,15 +7030,12 @@ msgstr ""
|
|
6406
7030
|
msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
|
6407
7031
|
msgstr ""
|
6408
7032
|
|
6409
|
-
msgid "Upstream organization to sync CDN content from"
|
7033
|
+
msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
|
6410
7034
|
msgstr ""
|
6411
7035
|
|
6412
7036
|
msgid "Upstream password requires upstream username be set."
|
6413
7037
|
msgstr ""
|
6414
7038
|
|
6415
|
-
msgid "Upstream server to sync CDN content from"
|
6416
|
-
msgstr ""
|
6417
|
-
|
6418
7039
|
msgid "Upstream username and password may only be set on custom repositories."
|
6419
7040
|
msgstr ""
|
6420
7041
|
|
@@ -6455,9 +7076,9 @@ msgid "User must be logged in."
|
|
6455
7076
|
msgstr "使用者必須登入。"
|
6456
7077
|
|
6457
7078
|
msgid "Username"
|
6458
|
-
msgstr ""
|
7079
|
+
msgstr "使用者名稱"
|
6459
7080
|
|
6460
|
-
msgid "Username for authentication"
|
7081
|
+
msgid "Username for authentication. Relevant only for 'upstream_server' type."
|
6461
7082
|
msgstr ""
|
6462
7083
|
|
6463
7084
|
msgid "Username of the upstream repository user used for authentication"
|
@@ -6469,7 +7090,7 @@ msgstr ""
|
|
6469
7090
|
msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
|
6470
7091
|
msgstr ""
|
6471
7092
|
|
6472
|
-
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using
|
7093
|
+
msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
|
6473
7094
|
msgstr ""
|
6474
7095
|
|
6475
7096
|
msgid "Valid"
|
@@ -6514,6 +7135,15 @@ msgstr ""
|
|
6514
7135
|
msgid "Versions"
|
6515
7136
|
msgstr "版本"
|
6516
7137
|
|
7138
|
+
msgid "Versions "
|
7139
|
+
msgstr ""
|
7140
|
+
|
7141
|
+
msgid "Versions to exclusively include in the action"
|
7142
|
+
msgstr ""
|
7143
|
+
|
7144
|
+
msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
|
7145
|
+
msgstr ""
|
7146
|
+
|
6517
7147
|
msgid "Versions will appear here when the content view is published."
|
6518
7148
|
msgstr ""
|
6519
7149
|
|
@@ -6526,16 +7156,22 @@ msgstr ""
|
|
6526
7156
|
msgid "View matching content"
|
6527
7157
|
msgstr ""
|
6528
7158
|
|
6529
|
-
msgid "
|
6530
|
-
msgstr "
|
7159
|
+
msgid "View tasks "
|
7160
|
+
msgstr ""
|
6531
7161
|
|
6532
|
-
msgid "
|
7162
|
+
msgid "View the Content Views page to manage and promote content views, or select a different environment."
|
6533
7163
|
msgstr ""
|
6534
7164
|
|
7165
|
+
msgid "Virtual"
|
7166
|
+
msgstr "虛擬"
|
7167
|
+
|
6535
7168
|
msgid "Waiting to start."
|
6536
7169
|
msgstr ""
|
6537
7170
|
|
6538
7171
|
msgid "Warning"
|
7172
|
+
msgstr "警告"
|
7173
|
+
|
7174
|
+
msgid "What's next?"
|
6539
7175
|
msgstr ""
|
6540
7176
|
|
6541
7177
|
msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
|
@@ -6559,7 +7195,7 @@ msgstr ""
|
|
6559
7195
|
msgid "Whether or not the host collection may have unlimited hosts"
|
6560
7196
|
msgstr "主機集項目是否有無上限的主機"
|
6561
7197
|
|
6562
|
-
msgid "Whether or not to auto sync the Smart Proxies after a
|
7198
|
+
msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
|
6563
7199
|
msgstr ""
|
6564
7200
|
|
6565
7201
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
@@ -6589,9 +7225,6 @@ msgstr ""
|
|
6589
7225
|
msgid "Yes"
|
6590
7226
|
msgstr "是"
|
6591
7227
|
|
6592
|
-
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'."
|
6593
|
-
msgstr ""
|
6594
|
-
|
6595
7228
|
msgid "You are not allowed to promote to Environments %s"
|
6596
7229
|
msgstr "您不允許推送至環境 %s"
|
6597
7230
|
|
@@ -6616,6 +7249,9 @@ msgstr ""
|
|
6616
7249
|
msgid "You currently don't have any Content views."
|
6617
7250
|
msgstr ""
|
6618
7251
|
|
7252
|
+
msgid "You currently don't have any alternate content sources."
|
7253
|
+
msgstr ""
|
7254
|
+
|
6619
7255
|
msgid "You currently don't have any filters for this content view."
|
6620
7256
|
msgstr ""
|
6621
7257
|
|
@@ -6649,6 +7285,9 @@ msgstr ""
|
|
6649
7285
|
msgid "You have unsaved changes. Do you want to exit without saving your changes?"
|
6650
7286
|
msgstr ""
|
6651
7287
|
|
7288
|
+
msgid "You may want to check the host's content view and lifecycle environment."
|
7289
|
+
msgstr ""
|
7290
|
+
|
6652
7291
|
msgid "You were not allowed to add %s"
|
6653
7292
|
msgstr "不允許新增 %s"
|
6654
7293
|
|
@@ -6670,6 +7309,9 @@ msgstr ""
|
|
6670
7309
|
msgid "Your search returned no matching "
|
6671
7310
|
msgstr ""
|
6672
7311
|
|
7312
|
+
msgid "Your search returned no matching Module streams."
|
7313
|
+
msgstr ""
|
7314
|
+
|
6673
7315
|
msgid "Your search returned no matching RPMs."
|
6674
7316
|
msgstr ""
|
6675
7317
|
|
@@ -6784,6 +7426,9 @@ msgstr ""
|
|
6784
7426
|
msgid "can't be blank"
|
6785
7427
|
msgstr "不能留白"
|
6786
7428
|
|
7429
|
+
msgid "cannot add filter to generated content views"
|
7430
|
+
msgstr ""
|
7431
|
+
|
6787
7432
|
msgid "cannot add filter to import-only view"
|
6788
7433
|
msgstr ""
|
6789
7434
|
|
@@ -6838,6 +7483,9 @@ msgstr "檢查 Candlepin 任務狀態"
|
|
6838
7483
|
msgid "checking Pulp task status"
|
6839
7484
|
msgstr "檢查 Pulp 任務狀態"
|
6840
7485
|
|
7486
|
+
msgid "click here"
|
7487
|
+
msgstr ""
|
7488
|
+
|
6841
7489
|
msgid "composite content view identifier"
|
6842
7490
|
msgstr ""
|
6843
7491
|
|
@@ -6856,6 +7504,9 @@ msgstr ""
|
|
6856
7504
|
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
|
6857
7505
|
msgstr ""
|
6858
7506
|
|
7507
|
+
msgid "content view Dependency Solving Default"
|
7508
|
+
msgstr ""
|
7509
|
+
|
6859
7510
|
msgid "content view component ID. Identifier of the component association"
|
6860
7511
|
msgstr ""
|
6861
7512
|
|
@@ -6931,7 +7582,7 @@ msgstr "篩選器描述"
|
|
6931
7582
|
msgid "description of the repository"
|
6932
7583
|
msgstr ""
|
6933
7584
|
|
6934
|
-
msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
|
7585
|
+
msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
|
6935
7586
|
msgstr ""
|
6936
7587
|
|
6937
7588
|
msgid "enables or disables synchronization"
|
@@ -7006,6 +7657,9 @@ msgstr "篩選器識別子"
|
|
7006
7657
|
msgid "filter identifiers"
|
7007
7658
|
msgstr ""
|
7008
7659
|
|
7660
|
+
msgid "filter only environments containing this label"
|
7661
|
+
msgstr ""
|
7662
|
+
|
7009
7663
|
msgid "filter only environments containing this name"
|
7010
7664
|
msgstr "只篩選包含此名稱的環境"
|
7011
7665
|
|
@@ -7069,6 +7723,9 @@ msgstr "正在安裝勘誤..."
|
|
7069
7723
|
msgid "installing erratum..."
|
7070
7724
|
msgstr "正在安裝勘誤..."
|
7071
7725
|
|
7726
|
+
msgid "installing or updating packages"
|
7727
|
+
msgstr ""
|
7728
|
+
|
7072
7729
|
msgid "installing package group..."
|
7073
7730
|
msgstr "正在安裝套件群組..."
|
7074
7731
|
|
@@ -7096,9 +7753,18 @@ msgstr "已連至 capsule"
|
|
7096
7753
|
msgid "is invalid"
|
7097
7754
|
msgstr "無效"
|
7098
7755
|
|
7756
|
+
msgid "is not a valid type. Must be one of the following: %s"
|
7757
|
+
msgstr ""
|
7758
|
+
|
7759
|
+
msgid "is not allowed for ACS. Must be one of the following: %s"
|
7760
|
+
msgstr ""
|
7761
|
+
|
7099
7762
|
msgid "is not enabled. must be one of the following: %s"
|
7100
7763
|
msgstr ""
|
7101
7764
|
|
7765
|
+
msgid "is only allowed for Yum repositories."
|
7766
|
+
msgstr ""
|
7767
|
+
|
7102
7768
|
msgid "label of the environment"
|
7103
7769
|
msgstr "環境的標籤"
|
7104
7770
|
|
@@ -7171,6 +7837,9 @@ msgstr "必須包含正確的公開 GPG 金鑰"
|
|
7171
7837
|
msgid "must contain valid Public GPG Key"
|
7172
7838
|
msgstr "必須包含正確的公開 GPG 金鑰"
|
7173
7839
|
|
7840
|
+
msgid "must not be a negative value."
|
7841
|
+
msgstr ""
|
7842
|
+
|
7174
7843
|
msgid "must not contain leading or trailing white spaces."
|
7175
7844
|
msgstr "前、後都不可包含空白字元。"
|
7176
7845
|
|
@@ -7267,6 +7936,9 @@ msgstr "套件:版本"
|
|
7267
7936
|
msgid "package_ids is not an array"
|
7268
7937
|
msgstr "package_ids 不是個陣列"
|
7269
7938
|
|
7939
|
+
msgid "package_names_for_job_template: Action must be one of %s"
|
7940
|
+
msgstr ""
|
7941
|
+
|
7270
7942
|
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
7271
7943
|
msgstr ""
|
7272
7944
|
|
@@ -7384,6 +8056,12 @@ msgstr "暫時覆寫同步的 feed URL"
|
|
7384
8056
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
7385
8057
|
msgstr "Red Hat 供應者的以下屬性可以更新:[ %s ]"
|
7386
8058
|
|
8059
|
+
msgid "to"
|
8060
|
+
msgstr ""
|
8061
|
+
|
8062
|
+
msgid "to update configuration on all hosts, or"
|
8063
|
+
msgstr ""
|
8064
|
+
|
7387
8065
|
msgid "true if the latest version of the component's content view is desired"
|
7388
8066
|
msgstr ""
|
7389
8067
|
|
@@ -7408,9 +8086,15 @@ msgstr ""
|
|
7408
8086
|
msgid "unknown permission for %s"
|
7409
8087
|
msgstr "%s 的權限不明"
|
7410
8088
|
|
8089
|
+
msgid "unlimited"
|
8090
|
+
msgstr ""
|
8091
|
+
|
7411
8092
|
msgid "update a filter"
|
7412
8093
|
msgstr "更新篩選器"
|
7413
8094
|
|
8095
|
+
msgid "update configuration on the hosts manually:"
|
8096
|
+
msgstr ""
|
8097
|
+
|
7414
8098
|
msgid "updating package group..."
|
7415
8099
|
msgstr "正在更新套件群組..."
|
7416
8100
|
|
@@ -7423,6 +8107,9 @@ msgstr "正在更新套件..."
|
|
7423
8107
|
msgid "updating packages..."
|
7424
8108
|
msgstr "正在更新套件..."
|
7425
8109
|
|
8110
|
+
msgid "upstream Foreman server"
|
8111
|
+
msgstr ""
|
8112
|
+
|
7426
8113
|
msgid "url not defined."
|
7427
8114
|
msgstr "未定義網址"
|
7428
8115
|
|
@@ -7430,7 +8117,7 @@ msgid "via customized remote execution"
|
|
7430
8117
|
msgstr ""
|
7431
8118
|
|
7432
8119
|
msgid "via remote execution"
|
7433
|
-
msgstr ""
|
8120
|
+
msgstr "透過遠端執行"
|
7434
8121
|
|
7435
8122
|
msgid "view content view tabs."
|
7436
8123
|
msgstr ""
|
@@ -7467,3 +8154,30 @@ msgstr "是"
|
|
7467
8154
|
|
7468
8155
|
msgid "{0} items selected"
|
7469
8156
|
msgstr ""
|
8157
|
+
|
8158
|
+
msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
|
8159
|
+
msgstr ""
|
8160
|
+
|
8161
|
+
msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
|
8162
|
+
msgstr ""
|
8163
|
+
|
8164
|
+
msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
|
8165
|
+
msgstr ""
|
8166
|
+
|
8167
|
+
msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
|
8168
|
+
msgstr ""
|
8169
|
+
|
8170
|
+
msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
|
8171
|
+
msgstr ""
|
8172
|
+
|
8173
|
+
msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
|
8174
|
+
msgstr ""
|
8175
|
+
|
8176
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
|
8177
|
+
msgstr ""
|
8178
|
+
|
8179
|
+
msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
|
8180
|
+
msgstr ""
|
8181
|
+
|
8182
|
+
msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
|
8183
|
+
msgstr ""
|