katello 3.17.0 → 3.18.0
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/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
- data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_controller.rb +9 -9
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
- data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +9 -9
- data/app/lib/actions/katello/content_view_version/import.rb +8 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
- data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +4 -1
- data/app/lib/actions/katello/repository/remove_content.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +3 -1
- data/app/lib/actions/katello/repository/update.rb +5 -1
- data/app/lib/actions/katello/repository/upload_files.rb +1 -0
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
- data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
- data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
- data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
- data/app/lib/actions/pulp3/content_migration.rb +10 -0
- data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/import_migration.rb +6 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
- data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/content_view_filter.rb +15 -0
- data/app/models/katello/authorization/content_view_version.rb +25 -2
- data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/organization.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
- data/app/models/katello/content_migration_progress.rb +4 -0
- data/app/models/katello/content_view.rb +30 -4
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_filter.rb +5 -0
- data/app/models/katello/content_view_history.rb +2 -1
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/content_view_puppet_module.rb +8 -0
- data/app/models/katello/content_view_repository.rb +13 -1
- data/app/models/katello/content_view_version_export_history.rb +8 -1
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/ping.rb +8 -3
- data/app/models/katello/repository.rb +33 -0
- data/app/models/katello/root_repository.rb +26 -1
- data/app/models/katello/smart_proxy_sync_history.rb +8 -0
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/api/docker.rb +4 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
- data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/docker_manifest.rb +1 -0
- data/app/services/katello/pulp3/docker_tag.rb +1 -0
- data/app/services/katello/pulp3/migration.rb +51 -10
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository.rb +10 -4
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +9 -0
- data/app/services/katello/pulp3/repository/yum.rb +14 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +4 -0
- data/app/services/katello/pulp3/task_group.rb +4 -0
- data/app/services/katello/repository_type.rb +2 -1
- data/app/services/katello/smart_proxy_helper.rb +9 -0
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/foreman/hosts/_registration.html.erb +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/katello/layouts/react.html.erb +3 -2
- data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +24 -2
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
- data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +2 -0
- data/lib/katello/permission_creator.rb +98 -69
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +10 -2
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_migration.rake +17 -3
- data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +51 -44
- data/locale/bn/katello.po +279 -55
- data/locale/cs/katello.po +278 -51
- data/locale/de/katello.po +279 -52
- data/locale/en/katello.po +278 -49
- data/locale/es/katello.po +279 -51
- data/locale/fr/katello.po +279 -51
- data/locale/gu/katello.po +279 -55
- data/locale/hi/katello.po +279 -55
- data/locale/it/katello.po +279 -51
- data/locale/ja/katello.po +279 -52
- data/locale/katello.pot +1379 -971
- data/locale/kn/katello.po +279 -55
- data/locale/ko/katello.po +279 -51
- data/locale/mr/katello.po +279 -55
- data/locale/or/katello.po +279 -55
- data/locale/pa/katello.po +279 -55
- data/locale/pt/katello.po +278 -52
- data/locale/pt_BR/katello.po +279 -51
- data/locale/ru/katello.po +279 -51
- data/locale/ta/katello.po +279 -55
- data/locale/te/katello.po +279 -55
- data/locale/zh_CN/katello.po +279 -51
- data/locale/zh_TW/katello.po +279 -52
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
- metadata +74 -13
- data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
data/locale/zh_CN/katello.po
CHANGED
@@ -19,6 +19,11 @@ msgstr ""
|
|
19
19
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
20
20
|
"X-Generator: Zanata 3.6.0\n"
|
21
21
|
|
22
|
+
msgid ""
|
23
|
+
"\n"
|
24
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
25
|
+
msgstr ""
|
26
|
+
|
22
27
|
msgid " %{errata_count} Errata"
|
23
28
|
msgstr ""
|
24
29
|
|
@@ -339,12 +344,18 @@ msgstr ""
|
|
339
344
|
msgid "Action with sub plans"
|
340
345
|
msgstr ""
|
341
346
|
|
347
|
+
msgid "Activation Key(s)"
|
348
|
+
msgstr ""
|
349
|
+
|
342
350
|
msgid "Activation Keys"
|
343
351
|
msgstr "激活码"
|
344
352
|
|
345
353
|
msgid "Activation key ID"
|
346
354
|
msgstr "激活码 ID"
|
347
355
|
|
356
|
+
msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
357
|
+
msgstr ""
|
358
|
+
|
348
359
|
msgid "Activation keys and subscriptions can be managed"
|
349
360
|
msgstr "可管理激活码及订阅"
|
350
361
|
|
@@ -396,6 +407,9 @@ msgstr "已添加内容:"
|
|
396
407
|
msgid "Adding content units"
|
397
408
|
msgstr ""
|
398
409
|
|
410
|
+
msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
|
411
|
+
msgstr ""
|
412
|
+
|
399
413
|
msgid "Addons"
|
400
414
|
msgstr ""
|
401
415
|
|
@@ -500,6 +514,9 @@ msgstr ""
|
|
500
514
|
msgid "Artifacts"
|
501
515
|
msgstr ""
|
502
516
|
|
517
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
518
|
+
msgstr ""
|
519
|
+
|
503
520
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
504
521
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
505
522
|
msgstr[0] "将附带 %{taxonomy_single} 的 %{count} 主机分配为 %{taxonomy_name}"
|
@@ -543,9 +560,6 @@ msgstr ""
|
|
543
560
|
msgid "Author"
|
544
561
|
msgstr ""
|
545
562
|
|
546
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
547
|
-
msgstr ""
|
548
|
-
|
549
563
|
msgid "Auto Publish - Triggered by '%s'"
|
550
564
|
msgstr ""
|
551
565
|
|
@@ -755,6 +769,9 @@ msgstr ""
|
|
755
769
|
msgid "Cannot delete view while it exists in environments"
|
756
770
|
msgstr "视图存在于环境中时无法删除"
|
757
771
|
|
772
|
+
msgid "Cannot import a composite content view"
|
773
|
+
msgstr ""
|
774
|
+
|
758
775
|
msgid "Cannot import a custom subscription from a redhat product."
|
759
776
|
msgstr ""
|
760
777
|
|
@@ -810,12 +827,18 @@ msgstr ""
|
|
810
827
|
msgid "Cannot upload Container Image content."
|
811
828
|
msgstr ""
|
812
829
|
|
830
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
831
|
+
msgstr ""
|
832
|
+
|
813
833
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
814
834
|
msgstr ""
|
815
835
|
|
816
836
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
817
837
|
msgstr ""
|
818
838
|
|
839
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
840
|
+
msgstr ""
|
841
|
+
|
819
842
|
msgid "Check services before actions"
|
820
843
|
msgstr ""
|
821
844
|
|
@@ -851,7 +874,7 @@ msgstr ""
|
|
851
874
|
msgid "Combined Profile Update for %s"
|
852
875
|
msgstr ""
|
853
876
|
|
854
|
-
msgid "Comma
|
877
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
855
878
|
msgstr ""
|
856
879
|
|
857
880
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author leahliu
|
@@ -907,9 +930,15 @@ msgstr ""
|
|
907
930
|
msgid "Content Download URL"
|
908
931
|
msgstr ""
|
909
932
|
|
933
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
934
|
+
msgstr ""
|
935
|
+
|
910
936
|
msgid "Content Hosts"
|
911
937
|
msgstr "内容主机"
|
912
938
|
|
939
|
+
msgid "Content Migration"
|
940
|
+
msgstr ""
|
941
|
+
|
913
942
|
msgid "Content Source"
|
914
943
|
msgstr "内容源"
|
915
944
|
|
@@ -961,9 +990,15 @@ msgstr ""
|
|
961
990
|
msgid "Content View Version not set"
|
962
991
|
msgstr ""
|
963
992
|
|
993
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
994
|
+
msgstr ""
|
995
|
+
|
964
996
|
msgid "Content View and Environment not set for registration."
|
965
997
|
msgstr ""
|
966
998
|
|
999
|
+
msgid "Content View id"
|
1000
|
+
msgstr ""
|
1001
|
+
|
967
1002
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
968
1003
|
msgid "Content Views"
|
969
1004
|
msgstr "内容视图"
|
@@ -1002,6 +1037,9 @@ msgstr "内容视图标签"
|
|
1002
1037
|
msgid "Content view numeric identifier"
|
1003
1038
|
msgstr "内容视图数字标识符"
|
1004
1039
|
|
1040
|
+
msgid "Content view version export history identifier"
|
1041
|
+
msgstr ""
|
1042
|
+
|
1005
1043
|
msgid "Content view version identifier"
|
1006
1044
|
msgstr "内容视图版本标识符"
|
1007
1045
|
|
@@ -1023,12 +1061,12 @@ msgstr ""
|
|
1023
1061
|
msgid "Copy an activation key"
|
1024
1062
|
msgstr "复制激活码"
|
1025
1063
|
|
1064
|
+
msgid "Copy version units to library"
|
1065
|
+
msgstr ""
|
1066
|
+
|
1026
1067
|
msgid "Cores: %s"
|
1027
1068
|
msgstr "Cores: %s"
|
1028
1069
|
|
1029
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1030
|
-
msgstr ""
|
1031
|
-
|
1032
1070
|
msgid "Could not delete organization '%s'."
|
1033
1071
|
msgstr "无法删除机构 ‘ %s’。"
|
1034
1072
|
|
@@ -1038,6 +1076,12 @@ msgstr "无法在库中找到 id 为 '%{id}' 的 %{content}。"
|
|
1038
1076
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1039
1077
|
msgstr ""
|
1040
1078
|
|
1079
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1080
|
+
msgstr ""
|
1081
|
+
|
1082
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1083
|
+
msgstr ""
|
1084
|
+
|
1041
1085
|
msgid "Could not find Environment with ids: %s"
|
1042
1086
|
msgstr "无法找到附带 id 的环境:%s"
|
1043
1087
|
|
@@ -1071,9 +1115,6 @@ msgstr ""
|
|
1071
1115
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1072
1116
|
msgstr "无法找到 id 为 %{id} 的 %{type} 过滤器"
|
1073
1117
|
|
1074
|
-
msgid "Couldn't find Content Credential '%s'"
|
1075
|
-
msgstr ""
|
1076
|
-
|
1077
1118
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1078
1119
|
msgstr "无法找到 id=%s 的 ContentViewFilter"
|
1079
1120
|
|
@@ -1120,12 +1161,6 @@ msgstr "无法找到环境 '%s'"
|
|
1120
1161
|
msgid "Couldn't find errata ids '%s'"
|
1121
1162
|
msgstr "无法找到勘误 id '%s'"
|
1122
1163
|
|
1123
|
-
msgid "Couldn't find gpg key '%s'"
|
1124
|
-
msgstr "无法找到 gpg 密钥 '%s'"
|
1125
|
-
|
1126
|
-
msgid "Couldn't find host '%s'"
|
1127
|
-
msgstr ""
|
1128
|
-
|
1129
1164
|
msgid "Couldn't find host collection '%s'"
|
1130
1165
|
msgstr "无法找到主机集合 '%s'"
|
1131
1166
|
|
@@ -1138,36 +1173,18 @@ msgstr "无法找到机构 '%s'"
|
|
1138
1173
|
msgid "Couldn't find prior-environment '%s'"
|
1139
1174
|
msgstr "无法找到 prior-environment '%s'"
|
1140
1175
|
|
1141
|
-
msgid "Couldn't find product '%s'"
|
1142
|
-
msgstr "无法找到产品 '%s'"
|
1143
|
-
|
1144
1176
|
msgid "Couldn't find product with id '%s'"
|
1145
1177
|
msgstr "无法找到 id 为 '%s' 的产品"
|
1146
1178
|
|
1147
1179
|
msgid "Couldn't find repository '%s'"
|
1148
1180
|
msgstr "无法找到库 '%s'"
|
1149
1181
|
|
1150
|
-
msgid "Couldn't find repository set with id '%s'."
|
1151
|
-
msgstr "无法找到 id 为 '%s' 的库。"
|
1152
|
-
|
1153
1182
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1154
1183
|
msgstr ""
|
1155
1184
|
|
1156
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1157
|
-
msgstr ""
|
1158
|
-
|
1159
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1160
|
-
msgstr ""
|
1161
|
-
|
1162
|
-
msgid "Couldn't find ssl client key '%s'"
|
1163
|
-
msgstr ""
|
1164
|
-
|
1165
1185
|
msgid "Couldn't find subject of synchronization"
|
1166
1186
|
msgstr "无法找到要同步的主题"
|
1167
1187
|
|
1168
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1169
|
-
msgstr "无法在机构 '%{org}' 中找到同步计划 '%{plan}'"
|
1170
|
-
|
1171
1188
|
msgid "Count"
|
1172
1189
|
msgstr ""
|
1173
1190
|
|
@@ -1238,6 +1255,9 @@ msgstr ""
|
|
1238
1255
|
msgid "Current organization not set."
|
1239
1256
|
msgstr ""
|
1240
1257
|
|
1258
|
+
msgid "Custom"
|
1259
|
+
msgstr ""
|
1260
|
+
|
1241
1261
|
msgid "Custom Content Repositories"
|
1242
1262
|
msgstr "自定义内容库"
|
1243
1263
|
|
@@ -1445,9 +1465,15 @@ msgstr "新发布内容视图版本描述"
|
|
1445
1465
|
msgid "Description of the repository"
|
1446
1466
|
msgstr ""
|
1447
1467
|
|
1468
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1469
|
+
msgstr ""
|
1470
|
+
|
1448
1471
|
msgid "Desired quantity of the pool"
|
1449
1472
|
msgstr ""
|
1450
1473
|
|
1474
|
+
msgid "Destination Server name"
|
1475
|
+
msgstr ""
|
1476
|
+
|
1451
1477
|
msgid "Destroy"
|
1452
1478
|
msgstr "消除"
|
1453
1479
|
|
@@ -1499,6 +1525,9 @@ msgstr "详情"
|
|
1499
1525
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1500
1526
|
msgstr ""
|
1501
1527
|
|
1528
|
+
msgid "Directory containing the exported Content View Version"
|
1529
|
+
msgstr ""
|
1530
|
+
|
1502
1531
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author Leah Liu
|
1503
1532
|
msgid "Disable"
|
1504
1533
|
msgstr "禁用"
|
@@ -1515,6 +1544,9 @@ msgstr ""
|
|
1515
1544
|
msgid "Disable simple content access for a manifest"
|
1516
1545
|
msgstr ""
|
1517
1546
|
|
1547
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1548
|
+
msgstr ""
|
1549
|
+
|
1518
1550
|
msgid "Disconnected mode"
|
1519
1551
|
msgstr ""
|
1520
1552
|
|
@@ -1599,6 +1631,9 @@ msgstr ""
|
|
1599
1631
|
msgid "Enabled Repositories"
|
1600
1632
|
msgstr ""
|
1601
1633
|
|
1634
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1635
|
+
msgstr ""
|
1636
|
+
|
1602
1637
|
msgid "End Date"
|
1603
1638
|
msgstr ""
|
1604
1639
|
|
@@ -1708,7 +1743,10 @@ msgstr ""
|
|
1708
1743
|
msgid "Export CSV"
|
1709
1744
|
msgstr ""
|
1710
1745
|
|
1711
|
-
msgid "Export
|
1746
|
+
msgid "Export Library"
|
1747
|
+
msgstr ""
|
1748
|
+
|
1749
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1712
1750
|
msgstr ""
|
1713
1751
|
|
1714
1752
|
msgid "Export a repository"
|
@@ -1717,9 +1755,15 @@ msgstr ""
|
|
1717
1755
|
msgid "Export as CSV"
|
1718
1756
|
msgstr ""
|
1719
1757
|
|
1758
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1759
|
+
msgstr ""
|
1760
|
+
|
1720
1761
|
msgid "Export to ISO format"
|
1721
1762
|
msgstr ""
|
1722
1763
|
|
1764
|
+
msgid "Export to ISO format."
|
1765
|
+
msgstr ""
|
1766
|
+
|
1723
1767
|
msgid "Exported version"
|
1724
1768
|
msgstr ""
|
1725
1769
|
|
@@ -1859,10 +1903,6 @@ msgstr ""
|
|
1859
1903
|
msgid "GPG Key URL"
|
1860
1904
|
msgstr ""
|
1861
1905
|
|
1862
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author leahliu
|
1863
|
-
msgid "GPG Keys"
|
1864
|
-
msgstr "GPG 密钥"
|
1865
|
-
|
1866
1906
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
1867
1907
|
msgid "Generate and Download"
|
1868
1908
|
msgstr "生成及下载"
|
@@ -1969,6 +2009,9 @@ msgstr "主机集合为空。"
|
|
1969
2009
|
msgid "Host content and subscription details"
|
1970
2010
|
msgstr "主机内容及订阅详情"
|
1971
2011
|
|
2012
|
+
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."
|
2013
|
+
msgstr ""
|
2014
|
+
|
1972
2015
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1973
2016
|
msgstr ""
|
1974
2017
|
|
@@ -1993,6 +2036,9 @@ msgstr ""
|
|
1993
2036
|
msgid "Host id to list applicable packages for"
|
1994
2037
|
msgstr ""
|
1995
2038
|
|
2039
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2040
|
+
msgstr ""
|
2041
|
+
|
1996
2042
|
msgid "Host with ID %s already exists in the host collection."
|
1997
2043
|
msgstr ""
|
1998
2044
|
|
@@ -2146,6 +2192,9 @@ msgstr ""
|
|
2146
2192
|
msgid "Identifiers for Lifecycle Environment"
|
2147
2193
|
msgstr ""
|
2148
2194
|
|
2195
|
+
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"
|
2196
|
+
msgstr ""
|
2197
|
+
|
2149
2198
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2150
2199
|
msgstr ""
|
2151
2200
|
|
@@ -2188,6 +2237,15 @@ msgstr ""
|
|
2188
2237
|
msgid "Immediate"
|
2189
2238
|
msgstr ""
|
2190
2239
|
|
2240
|
+
msgid "Import"
|
2241
|
+
msgstr ""
|
2242
|
+
|
2243
|
+
msgid "Import Content View Version"
|
2244
|
+
msgstr ""
|
2245
|
+
|
2246
|
+
msgid "Import Default Content View"
|
2247
|
+
msgstr ""
|
2248
|
+
|
2191
2249
|
msgid "Import Manifest"
|
2192
2250
|
msgstr "导入清单"
|
2193
2251
|
|
@@ -2209,12 +2267,27 @@ msgstr ""
|
|
2209
2267
|
msgid "Import a Manifest using the manifest tab above."
|
2210
2268
|
msgstr ""
|
2211
2269
|
|
2270
|
+
msgid "Import a content view version"
|
2271
|
+
msgstr ""
|
2272
|
+
|
2273
|
+
msgid "Import a content view version to the library"
|
2274
|
+
msgstr ""
|
2275
|
+
|
2212
2276
|
msgid "Import facts"
|
2213
2277
|
msgstr "导入详情"
|
2214
2278
|
|
2215
2279
|
msgid "Import uploads into a repository"
|
2216
2280
|
msgstr "将上传导入库"
|
2217
2281
|
|
2282
|
+
msgid "Import-only can not be changed after creation"
|
2283
|
+
msgstr ""
|
2284
|
+
|
2285
|
+
msgid "Import-only content views can not be published directly"
|
2286
|
+
msgstr ""
|
2287
|
+
|
2288
|
+
msgid "Import-only content views will be available in a future version."
|
2289
|
+
msgstr ""
|
2290
|
+
|
2218
2291
|
msgid "Importing manifest into '%{subject}' failed."
|
2219
2292
|
msgstr ""
|
2220
2293
|
|
@@ -2390,6 +2463,9 @@ msgstr ""
|
|
2390
2463
|
msgid "Invalid params provided - date_type must be one of %s"
|
2391
2464
|
msgstr ""
|
2392
2465
|
|
2466
|
+
msgid "Invalid path specified."
|
2467
|
+
msgstr ""
|
2468
|
+
|
2393
2469
|
msgid ""
|
2394
2470
|
"Invalid puppet module parameters specified. \\\n"
|
2395
2471
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2398,6 +2474,12 @@ msgstr ""
|
|
2398
2474
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2399
2475
|
msgstr "无效 puppet 模块。请确定该 puppet 模块中包含 metadata.json 文件,并已被正确压缩。"
|
2400
2476
|
|
2477
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2478
|
+
msgstr ""
|
2479
|
+
|
2480
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2481
|
+
msgstr ""
|
2482
|
+
|
2401
2483
|
msgid "Invalid value specified for Container Image repositories."
|
2402
2484
|
msgstr ""
|
2403
2485
|
|
@@ -2407,6 +2489,9 @@ msgstr ""
|
|
2407
2489
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2408
2490
|
msgstr ""
|
2409
2491
|
|
2492
|
+
msgid "Katello"
|
2493
|
+
msgstr ""
|
2494
|
+
|
2410
2495
|
msgid "Katello ID of local pool to update"
|
2411
2496
|
msgstr ""
|
2412
2497
|
|
@@ -2467,9 +2552,6 @@ msgstr ""
|
|
2467
2552
|
msgid "Learn more about adding Subscription Manifests"
|
2468
2553
|
msgstr ""
|
2469
2554
|
|
2470
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2471
|
-
msgstr ""
|
2472
|
-
|
2473
2555
|
msgid "Library lifecycle environments may not be deleted."
|
2474
2556
|
msgstr "无法删除库生命周期环境。"
|
2475
2557
|
|
@@ -2569,6 +2651,9 @@ msgstr "返回勘误"
|
|
2569
2651
|
msgid "List errata available for the content host"
|
2570
2652
|
msgstr "列出可用于该内容主机的勘误"
|
2571
2653
|
|
2654
|
+
msgid "List export histories"
|
2655
|
+
msgstr ""
|
2656
|
+
|
2572
2657
|
msgid "List filter rules"
|
2573
2658
|
msgstr "列出过滤器规则"
|
2574
2659
|
|
@@ -2722,6 +2807,9 @@ msgstr ""
|
|
2722
2807
|
msgid "List srpms"
|
2723
2808
|
msgstr ""
|
2724
2809
|
|
2810
|
+
msgid "List subscriptions"
|
2811
|
+
msgstr ""
|
2812
|
+
|
2725
2813
|
msgid "List sync plans"
|
2726
2814
|
msgstr "列出同步计划"
|
2727
2815
|
|
@@ -2810,6 +2898,9 @@ msgstr "信息"
|
|
2810
2898
|
msgid "Messaging connection"
|
2811
2899
|
msgstr ""
|
2812
2900
|
|
2901
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2902
|
+
msgstr ""
|
2903
|
+
|
2813
2904
|
msgid "Mismatched"
|
2814
2905
|
msgstr ""
|
2815
2906
|
|
@@ -2942,6 +3033,9 @@ msgstr ""
|
|
2942
3033
|
msgid "No errors"
|
2943
3034
|
msgstr "没有错误"
|
2944
3035
|
|
3036
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3037
|
+
msgstr ""
|
3038
|
+
|
2945
3039
|
msgid "No file uploaded"
|
2946
3040
|
msgstr "未上传任何文件"
|
2947
3041
|
|
@@ -2954,12 +3048,18 @@ msgstr ""
|
|
2954
3048
|
msgid "No hosts registered with subscription-manager found in selection."
|
2955
3049
|
msgstr ""
|
2956
3050
|
|
3051
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3052
|
+
msgstr ""
|
3053
|
+
|
2957
3054
|
msgid "No manifest file uploaded"
|
2958
3055
|
msgstr "未上传任何清单文件"
|
2959
3056
|
|
2960
3057
|
msgid "No matching content views found"
|
2961
3058
|
msgstr ""
|
2962
3059
|
|
3060
|
+
msgid "No matching repositories found"
|
3061
|
+
msgstr ""
|
3062
|
+
|
2963
3063
|
msgid "No new packages installed"
|
2964
3064
|
msgstr "没有安装新软件包"
|
2965
3065
|
|
@@ -3095,6 +3195,9 @@ msgstr ""
|
|
3095
3195
|
msgid "On-disk location for exported repositories"
|
3096
3196
|
msgstr ""
|
3097
3197
|
|
3198
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3199
|
+
msgstr ""
|
3200
|
+
|
3098
3201
|
msgid "One of parameters [ %s ] required but not specified."
|
3099
3202
|
msgstr "需要参数 [ %s ],但尚未指定。"
|
3100
3203
|
|
@@ -3127,6 +3230,9 @@ msgstr "操作程序"
|
|
3127
3230
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3128
3231
|
msgstr ""
|
3129
3232
|
|
3233
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3234
|
+
msgstr ""
|
3235
|
+
|
3130
3236
|
msgid "Organization"
|
3131
3237
|
msgstr "机构"
|
3132
3238
|
|
@@ -3364,6 +3470,18 @@ msgstr ""
|
|
3364
3470
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3365
3471
|
msgstr "在一个或多个内容视图版本中执行增量更新"
|
3366
3472
|
|
3473
|
+
msgid "Performs a full-export of a content view version."
|
3474
|
+
msgstr ""
|
3475
|
+
|
3476
|
+
msgid "Performs a full-export of the repositories in library."
|
3477
|
+
msgstr ""
|
3478
|
+
|
3479
|
+
msgid "Performs an incremental-export of a content view version."
|
3480
|
+
msgstr ""
|
3481
|
+
|
3482
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3483
|
+
msgstr ""
|
3484
|
+
|
3367
3485
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3368
3486
|
msgstr "权限被拒绝。用户 '%{user}' 没有访问机构 '%{org}' 的权限。"
|
3369
3487
|
|
@@ -3374,6 +3492,9 @@ msgstr "实体"
|
|
3374
3492
|
msgid "Plan numeric identifier"
|
3375
3493
|
msgstr "计划数字识别符"
|
3376
3494
|
|
3495
|
+
msgid "Please add some repositories."
|
3496
|
+
msgstr ""
|
3497
|
+
|
3377
3498
|
msgid "Please enter a positive number above zero"
|
3378
3499
|
msgstr ""
|
3379
3500
|
|
@@ -3401,6 +3522,9 @@ msgstr ""
|
|
3401
3522
|
msgid "Please select one from the list below and you will be redirected."
|
3402
3523
|
msgstr ""
|
3403
3524
|
|
3525
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3526
|
+
msgstr ""
|
3527
|
+
|
3404
3528
|
msgid "Processing metadata"
|
3405
3529
|
msgstr "正在处理元数据"
|
3406
3530
|
|
@@ -3507,6 +3631,9 @@ msgstr ""
|
|
3507
3631
|
msgid "Pulp"
|
3508
3632
|
msgstr ""
|
3509
3633
|
|
3634
|
+
msgid "Pulp 3 export destination filepath"
|
3635
|
+
msgstr ""
|
3636
|
+
|
3510
3637
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3511
3638
|
msgstr ""
|
3512
3639
|
|
@@ -3561,6 +3688,12 @@ msgstr ""
|
|
3561
3688
|
msgid "Pulp task error"
|
3562
3689
|
msgstr "Pulp 任务出错"
|
3563
3690
|
|
3691
|
+
msgid "Pulp user or group unable to read '%s'."
|
3692
|
+
msgstr ""
|
3693
|
+
|
3694
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3695
|
+
msgstr ""
|
3696
|
+
|
3564
3697
|
msgid "Pulpcore"
|
3565
3698
|
msgstr ""
|
3566
3699
|
|
@@ -3639,6 +3772,9 @@ msgstr ""
|
|
3639
3772
|
msgid "Recommended Repositories"
|
3640
3773
|
msgstr ""
|
3641
3774
|
|
3775
|
+
msgid "Red Hat"
|
3776
|
+
msgstr ""
|
3777
|
+
|
3642
3778
|
msgid "Red Hat CDN URL"
|
3643
3779
|
msgstr "Red Hat CDN URL"
|
3644
3780
|
|
@@ -3861,6 +3997,9 @@ msgstr ""
|
|
3861
3997
|
msgid "Resolve Traces"
|
3862
3998
|
msgstr ""
|
3863
3999
|
|
4000
|
+
msgid "Resolve traces for one or more hosts"
|
4001
|
+
msgstr ""
|
4002
|
+
|
3864
4003
|
msgid "Resource"
|
3865
4004
|
msgstr ""
|
3866
4005
|
|
@@ -3940,6 +4079,9 @@ msgstr "返回由 yum 直接使用的库 gpg 密钥内容"
|
|
3940
4079
|
msgid "Role"
|
3941
4080
|
msgstr ""
|
3942
4081
|
|
4082
|
+
msgid "Role of host"
|
4083
|
+
msgstr ""
|
4084
|
+
|
3943
4085
|
msgid "Run Sync Plan:"
|
3944
4086
|
msgstr ""
|
3945
4087
|
|
@@ -4041,6 +4183,9 @@ msgstr "服务等级 %s"
|
|
4041
4183
|
msgid "Service Level (SLA)"
|
4042
4184
|
msgstr ""
|
4043
4185
|
|
4186
|
+
msgid "Service level of host"
|
4187
|
+
msgstr ""
|
4188
|
+
|
4044
4189
|
msgid "Service level to be used for autoheal"
|
4045
4190
|
msgstr ""
|
4046
4191
|
|
@@ -4144,6 +4289,15 @@ msgstr "显示版本信息"
|
|
4144
4289
|
msgid "Simple Content Access"
|
4145
4290
|
msgstr ""
|
4146
4291
|
|
4292
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4293
|
+
msgstr ""
|
4294
|
+
|
4295
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4296
|
+
msgstr ""
|
4297
|
+
|
4298
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4299
|
+
msgstr ""
|
4300
|
+
|
4147
4301
|
msgid "Size of file to upload"
|
4148
4302
|
msgstr ""
|
4149
4303
|
|
@@ -4178,6 +4332,9 @@ msgstr ""
|
|
4178
4332
|
msgid "Specify the list of units in each repo"
|
4179
4333
|
msgstr ""
|
4180
4334
|
|
4335
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4336
|
+
msgstr ""
|
4337
|
+
|
4181
4338
|
msgid "Stacking ID"
|
4182
4339
|
msgstr ""
|
4183
4340
|
|
@@ -4386,6 +4543,9 @@ msgstr "同步一个或多个产品"
|
|
4386
4543
|
msgid "Sync plan identifier to attach"
|
4387
4544
|
msgstr "要附加的同步计划识别符"
|
4388
4545
|
|
4546
|
+
msgid "Sync state"
|
4547
|
+
msgstr ""
|
4548
|
+
|
4389
4549
|
msgid "Synced Content"
|
4390
4550
|
msgstr ""
|
4391
4551
|
|
@@ -4448,6 +4608,9 @@ msgstr "'%s' 环境不包含更改集!"
|
|
4448
4608
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4449
4609
|
msgstr ""
|
4450
4610
|
|
4611
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4612
|
+
msgstr ""
|
4613
|
+
|
4451
4614
|
msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
|
4452
4615
|
msgstr ""
|
4453
4616
|
|
@@ -4487,15 +4650,26 @@ msgstr "勘误表过滤器规则结束日期为无效格式或者类型。"
|
|
4487
4650
|
msgid "The erratum type must be an array. Invalid value provided"
|
4488
4651
|
msgstr "勘误表过滤器规则起始日期为无效格式或者类型。"
|
4489
4652
|
|
4653
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4654
|
+
msgstr ""
|
4655
|
+
|
4490
4656
|
msgid "The field to sort the data by. Defaults to the created date."
|
4491
4657
|
msgstr ""
|
4492
4658
|
|
4493
4659
|
msgid "The following hosts have errata that apply to them: "
|
4494
4660
|
msgstr "有勘误可用于以下主机:"
|
4495
4661
|
|
4662
|
+
msgid ""
|
4663
|
+
"The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
|
4664
|
+
" %{repos}"
|
4665
|
+
msgstr ""
|
4666
|
+
|
4496
4667
|
msgid "The id of the host to alter"
|
4497
4668
|
msgstr ""
|
4498
4669
|
|
4670
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4671
|
+
msgstr ""
|
4672
|
+
|
4499
4673
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4500
4674
|
msgstr ""
|
4501
4675
|
|
@@ -4544,6 +4718,9 @@ msgstr ""
|
|
4544
4718
|
msgid "The requested resource does not belong to the specified organization"
|
4545
4719
|
msgstr ""
|
4546
4720
|
|
4721
|
+
msgid "The requested traces were not found for this host"
|
4722
|
+
msgstr ""
|
4723
|
+
|
4547
4724
|
msgid "The selected content source and lifecycle environment do not match"
|
4548
4725
|
msgstr ""
|
4549
4726
|
|
@@ -4607,6 +4784,9 @@ msgstr ""
|
|
4607
4784
|
msgid "There's no running synchronization for this smart proxy."
|
4608
4785
|
msgstr ""
|
4609
4786
|
|
4787
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4788
|
+
msgstr ""
|
4789
|
+
|
4610
4790
|
msgid "This Host is not currently registered with subscription-manager."
|
4611
4791
|
msgstr ""
|
4612
4792
|
|
@@ -4616,6 +4796,9 @@ msgstr ""
|
|
4616
4796
|
msgid "This action doesn't support package groups"
|
4617
4797
|
msgstr ""
|
4618
4798
|
|
4799
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4800
|
+
msgstr ""
|
4801
|
+
|
4619
4802
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4620
4803
|
msgstr "这个证书允许用户使用浏览器查看任意环境中的库。"
|
4621
4804
|
|
@@ -4746,10 +4929,16 @@ msgstr ""
|
|
4746
4929
|
msgid "Unable to detect puppet path"
|
4747
4930
|
msgstr ""
|
4748
4931
|
|
4749
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4932
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4750
4933
|
msgstr ""
|
4751
4934
|
|
4752
|
-
msgid "Unable to export
|
4935
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4936
|
+
msgstr ""
|
4937
|
+
|
4938
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4939
|
+
msgstr ""
|
4940
|
+
|
4941
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4753
4942
|
msgstr ""
|
4754
4943
|
|
4755
4944
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4964,6 +5153,12 @@ msgstr ""
|
|
4964
5153
|
msgid "Updating Package..."
|
4965
5154
|
msgstr "正在更新软件......"
|
4966
5155
|
|
5156
|
+
msgid "Updating System Purpose for host"
|
5157
|
+
msgstr ""
|
5158
|
+
|
5159
|
+
msgid "Updating System Purpose for host %s"
|
5160
|
+
msgstr ""
|
5161
|
+
|
4967
5162
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
4968
5163
|
msgid "Updating package group..."
|
4969
5164
|
msgstr "正在更新软件包组......"
|
@@ -5019,9 +5214,15 @@ msgstr ""
|
|
5019
5214
|
msgid "Usage Type"
|
5020
5215
|
msgstr ""
|
5021
5216
|
|
5217
|
+
msgid "Usage of host"
|
5218
|
+
msgstr ""
|
5219
|
+
|
5022
5220
|
msgid "Use remote execution by default"
|
5023
5221
|
msgstr ""
|
5024
5222
|
|
5223
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5224
|
+
msgstr ""
|
5225
|
+
|
5025
5226
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5026
5227
|
msgstr "用户 '%s' 没有指定机构 ID,且没有默认机构。"
|
5027
5228
|
|
@@ -5046,6 +5247,15 @@ msgstr ""
|
|
5046
5247
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5047
5248
|
msgstr ""
|
5048
5249
|
|
5250
|
+
msgid "Verify checksum"
|
5251
|
+
msgstr ""
|
5252
|
+
|
5253
|
+
msgid "Verify checksum for one or more products"
|
5254
|
+
msgstr ""
|
5255
|
+
|
5256
|
+
msgid "Verify checksum of repository contents"
|
5257
|
+
msgstr ""
|
5258
|
+
|
5049
5259
|
msgid "Version"
|
5050
5260
|
msgstr ""
|
5051
5261
|
|
@@ -5063,7 +5273,7 @@ msgstr ""
|
|
5063
5273
|
msgid "Virtual"
|
5064
5274
|
msgstr "虚拟"
|
5065
5275
|
|
5066
|
-
msgid "When Simple Content Access is enabled, hosts
|
5276
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5067
5277
|
msgstr ""
|
5068
5278
|
|
5069
5279
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5132,6 +5342,9 @@ msgstr "您不能设置机构的 parent_id.。这个功能已被禁用。"
|
|
5132
5342
|
msgid "You currently don't have any Content Views."
|
5133
5343
|
msgstr ""
|
5134
5344
|
|
5345
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5346
|
+
msgstr ""
|
5347
|
+
|
5135
5348
|
msgid "You do not have permissions to delete %s"
|
5136
5349
|
msgstr "您没有权限删除 %s"
|
5137
5350
|
|
@@ -5237,6 +5450,9 @@ msgstr "机构"
|
|
5237
5450
|
msgid "an ostree branch"
|
5238
5451
|
msgstr ""
|
5239
5452
|
|
5453
|
+
msgid "are only allowed for Yum repositories."
|
5454
|
+
msgstr ""
|
5455
|
+
|
5240
5456
|
msgid "attempted to sync without a feed URL"
|
5241
5457
|
msgstr ""
|
5242
5458
|
|
@@ -5255,6 +5471,9 @@ msgstr ""
|
|
5255
5471
|
msgid "can't be blank"
|
5256
5472
|
msgstr "不能为空白"
|
5257
5473
|
|
5474
|
+
msgid "cannot add filter to import-only view"
|
5475
|
+
msgstr ""
|
5476
|
+
|
5258
5477
|
msgid "cannot be a binary file."
|
5259
5478
|
msgstr "不能是二进制文件。"
|
5260
5479
|
|
@@ -5310,13 +5529,13 @@ msgstr ""
|
|
5310
5529
|
msgid "checking Pulp task status"
|
5311
5530
|
msgstr ""
|
5312
5531
|
|
5313
|
-
msgid "comma
|
5532
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5314
5533
|
msgstr ""
|
5315
5534
|
|
5316
|
-
msgid "comma
|
5535
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5317
5536
|
msgstr ""
|
5318
5537
|
|
5319
|
-
msgid "comma
|
5538
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5320
5539
|
msgstr ""
|
5321
5540
|
|
5322
5541
|
msgid "composite content view identifier"
|
@@ -5546,9 +5765,6 @@ msgstr ""
|
|
5546
5765
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5547
5766
|
msgstr ""
|
5548
5767
|
|
5549
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5550
|
-
msgstr ""
|
5551
|
-
|
5552
5768
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5553
5769
|
msgstr ""
|
5554
5770
|
|
@@ -5582,6 +5798,9 @@ msgstr ""
|
|
5582
5798
|
msgid "invalid container image name"
|
5583
5799
|
msgstr ""
|
5584
5800
|
|
5801
|
+
msgid "invalid: Repositories can only require one OS version."
|
5802
|
+
msgstr ""
|
5803
|
+
|
5585
5804
|
msgid "is already attached to the capsule"
|
5586
5805
|
msgstr "已附加到 capsule"
|
5587
5806
|
|
@@ -5621,6 +5840,9 @@ msgstr "已注册内容主机的最大数"
|
|
5621
5840
|
msgid "maximum size of each ISO in MB"
|
5622
5841
|
msgstr ""
|
5623
5842
|
|
5843
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5844
|
+
msgstr ""
|
5845
|
+
|
5624
5846
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5625
5847
|
msgstr ""
|
5626
5848
|
|
@@ -5642,6 +5864,9 @@ msgstr "必须是正整数。"
|
|
5642
5864
|
msgid "must be one of the following: %s"
|
5643
5865
|
msgstr "必须为以下之一:%s"
|
5644
5866
|
|
5867
|
+
msgid "must be one of: %s"
|
5868
|
+
msgstr ""
|
5869
|
+
|
5645
5870
|
msgid "must be unique within one organization"
|
5646
5871
|
msgstr "在一个机构中必须是唯一的"
|
5647
5872
|
|
@@ -5898,6 +6123,9 @@ msgstr ""
|
|
5898
6123
|
msgid "the uuid of the puppet module to associate"
|
5899
6124
|
msgstr "与之关联的 puppet 模块名称"
|
5900
6125
|
|
6126
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6127
|
+
msgstr ""
|
6128
|
+
|
5901
6129
|
msgid "true if the latest version of the component's content view is desired"
|
5902
6130
|
msgstr ""
|
5903
6131
|
|