katello 3.17.3 → 3.18.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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/api_controller.rb +2 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- 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 -36
- data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
- 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/hosts_bulk_actions_controller.rb +17 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
- 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 +9 -5
- 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/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/katello/applicability/hosts/bulk_generate.rb +2 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
- data/app/lib/actions/katello/content_view/publish.rb +3 -4
- data/app/lib/actions/katello/content_view_version/import.rb +4 -3
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- 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 +2 -1
- data/app/lib/actions/katello/repository/update.rb +4 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
- 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 +2 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -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/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/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_version_export_history.rb +2 -0
- 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/root_repository.rb +26 -1
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
- 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/content_view_version/export.rb +4 -3
- data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/erratum.rb +1 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- 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 +4 -0
- data/app/services/katello/pulp3/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/repository.rb +11 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +3 -3
- data/app/services/katello/pulp3/task_group.rb +0 -6
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
- 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/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/common/views/katello-agent-notice.html +1 -1
- 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/content-host-debs-installed.controller.js +2 -42
- 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/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- 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 +16 -14
- 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/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 +1 -0
- data/lib/katello/permission_creator.rb +68 -59
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +4 -1
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
- data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
- data/lib/katello/tasks/reports.rake +1 -4
- 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 +54 -47
- data/locale/bn/katello.po +165 -26
- data/locale/cs/katello.po +164 -24
- data/locale/de/katello.po +165 -26
- data/locale/en/katello.po +164 -23
- data/locale/es/katello.po +165 -25
- data/locale/fr/katello.po +165 -25
- data/locale/gu/katello.po +165 -26
- data/locale/hi/katello.po +165 -26
- data/locale/it/katello.po +165 -25
- data/locale/ja/katello.po +165 -26
- data/locale/katello.pot +1036 -802
- data/locale/kn/katello.po +165 -26
- data/locale/ko/katello.po +165 -25
- data/locale/mr/katello.po +165 -26
- data/locale/or/katello.po +165 -26
- data/locale/pa/katello.po +165 -26
- data/locale/pt/katello.po +164 -23
- data/locale/pt_BR/katello.po +165 -25
- data/locale/ru/katello.po +165 -25
- data/locale/ta/katello.po +165 -26
- data/locale/te/katello.po +165 -26
- data/locale/zh_CN/katello.po +165 -25
- data/locale/zh_TW/katello.po +165 -26
- 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 +16 -8
- 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
- metadata +69 -26
data/locale/zh_CN/katello.po
CHANGED
|
@@ -396,6 +396,9 @@ msgstr "已添加内容:"
|
|
|
396
396
|
msgid "Adding content units"
|
|
397
397
|
msgstr ""
|
|
398
398
|
|
|
399
|
+
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}"
|
|
400
|
+
msgstr ""
|
|
401
|
+
|
|
399
402
|
msgid "Addons"
|
|
400
403
|
msgstr ""
|
|
401
404
|
|
|
@@ -500,6 +503,9 @@ msgstr ""
|
|
|
500
503
|
msgid "Artifacts"
|
|
501
504
|
msgstr ""
|
|
502
505
|
|
|
506
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
507
|
+
msgstr ""
|
|
508
|
+
|
|
503
509
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
504
510
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
505
511
|
msgstr[0] "将附带 %{taxonomy_single} 的 %{count} 主机分配为 %{taxonomy_name}"
|
|
@@ -543,9 +549,6 @@ msgstr ""
|
|
|
543
549
|
msgid "Author"
|
|
544
550
|
msgstr ""
|
|
545
551
|
|
|
546
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
547
|
-
msgstr ""
|
|
548
|
-
|
|
549
552
|
msgid "Auto Publish - Triggered by '%s'"
|
|
550
553
|
msgstr ""
|
|
551
554
|
|
|
@@ -755,6 +758,9 @@ msgstr ""
|
|
|
755
758
|
msgid "Cannot delete view while it exists in environments"
|
|
756
759
|
msgstr "视图存在于环境中时无法删除"
|
|
757
760
|
|
|
761
|
+
msgid "Cannot import a composite content view"
|
|
762
|
+
msgstr ""
|
|
763
|
+
|
|
758
764
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
759
765
|
msgstr ""
|
|
760
766
|
|
|
@@ -831,6 +837,9 @@ msgstr ""
|
|
|
831
837
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
832
838
|
msgstr ""
|
|
833
839
|
|
|
840
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
841
|
+
msgstr ""
|
|
842
|
+
|
|
834
843
|
msgid "Click here to go to the tasks page for the task."
|
|
835
844
|
msgstr ""
|
|
836
845
|
|
|
@@ -961,9 +970,15 @@ msgstr ""
|
|
|
961
970
|
msgid "Content View Version not set"
|
|
962
971
|
msgstr ""
|
|
963
972
|
|
|
973
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
974
|
+
msgstr ""
|
|
975
|
+
|
|
964
976
|
msgid "Content View and Environment not set for registration."
|
|
965
977
|
msgstr ""
|
|
966
978
|
|
|
979
|
+
msgid "Content View id"
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
967
982
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
|
968
983
|
msgid "Content Views"
|
|
969
984
|
msgstr "内容视图"
|
|
@@ -1023,12 +1038,12 @@ msgstr ""
|
|
|
1023
1038
|
msgid "Copy an activation key"
|
|
1024
1039
|
msgstr "复制激活码"
|
|
1025
1040
|
|
|
1041
|
+
msgid "Copy version units to library"
|
|
1042
|
+
msgstr ""
|
|
1043
|
+
|
|
1026
1044
|
msgid "Cores: %s"
|
|
1027
1045
|
msgstr "Cores: %s"
|
|
1028
1046
|
|
|
1029
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1030
|
-
msgstr ""
|
|
1031
|
-
|
|
1032
1047
|
msgid "Could not delete organization '%s'."
|
|
1033
1048
|
msgstr "无法删除机构 ‘ %s’。"
|
|
1034
1049
|
|
|
@@ -1038,6 +1053,9 @@ msgstr "无法在库中找到 id 为 '%{id}' 的 %{content}。"
|
|
|
1038
1053
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1039
1054
|
msgstr ""
|
|
1040
1055
|
|
|
1056
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1057
|
+
msgstr ""
|
|
1058
|
+
|
|
1041
1059
|
msgid "Could not find Environment with ids: %s"
|
|
1042
1060
|
msgstr "无法找到附带 id 的环境:%s"
|
|
1043
1061
|
|
|
@@ -1071,9 +1089,6 @@ msgstr ""
|
|
|
1071
1089
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1072
1090
|
msgstr "无法找到 id 为 %{id} 的 %{type} 过滤器"
|
|
1073
1091
|
|
|
1074
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1075
|
-
msgstr ""
|
|
1076
|
-
|
|
1077
1092
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1078
1093
|
msgstr "无法找到 id=%s 的 ContentViewFilter"
|
|
1079
1094
|
|
|
@@ -1165,9 +1180,6 @@ msgstr ""
|
|
|
1165
1180
|
msgid "Couldn't find subject of synchronization"
|
|
1166
1181
|
msgstr "无法找到要同步的主题"
|
|
1167
1182
|
|
|
1168
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1169
|
-
msgstr "无法在机构 '%{org}' 中找到同步计划 '%{plan}'"
|
|
1170
|
-
|
|
1171
1183
|
msgid "Count"
|
|
1172
1184
|
msgstr ""
|
|
1173
1185
|
|
|
@@ -1448,6 +1460,15 @@ msgstr ""
|
|
|
1448
1460
|
msgid "Desired quantity of the pool"
|
|
1449
1461
|
msgstr ""
|
|
1450
1462
|
|
|
1463
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1464
|
+
msgstr ""
|
|
1465
|
+
|
|
1466
|
+
msgid "Destination Server name"
|
|
1467
|
+
msgstr ""
|
|
1468
|
+
|
|
1469
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1470
|
+
msgstr ""
|
|
1471
|
+
|
|
1451
1472
|
msgid "Destroy"
|
|
1452
1473
|
msgstr "消除"
|
|
1453
1474
|
|
|
@@ -1499,6 +1520,9 @@ msgstr "详情"
|
|
|
1499
1520
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1500
1521
|
msgstr ""
|
|
1501
1522
|
|
|
1523
|
+
msgid "Directory containing the exported Content View Version"
|
|
1524
|
+
msgstr ""
|
|
1525
|
+
|
|
1502
1526
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author Leah Liu
|
|
1503
1527
|
msgid "Disable"
|
|
1504
1528
|
msgstr "禁用"
|
|
@@ -1515,6 +1539,9 @@ msgstr ""
|
|
|
1515
1539
|
msgid "Disable simple content access for a manifest"
|
|
1516
1540
|
msgstr ""
|
|
1517
1541
|
|
|
1542
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1543
|
+
msgstr ""
|
|
1544
|
+
|
|
1518
1545
|
msgid "Disconnected mode"
|
|
1519
1546
|
msgstr ""
|
|
1520
1547
|
|
|
@@ -1599,6 +1626,9 @@ msgstr ""
|
|
|
1599
1626
|
msgid "Enabled Repositories"
|
|
1600
1627
|
msgstr ""
|
|
1601
1628
|
|
|
1629
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1630
|
+
msgstr ""
|
|
1631
|
+
|
|
1602
1632
|
msgid "End Date"
|
|
1603
1633
|
msgstr ""
|
|
1604
1634
|
|
|
@@ -1720,6 +1750,9 @@ msgstr ""
|
|
|
1720
1750
|
msgid "Export to ISO format"
|
|
1721
1751
|
msgstr ""
|
|
1722
1752
|
|
|
1753
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1754
|
+
msgstr ""
|
|
1755
|
+
|
|
1723
1756
|
msgid "Exported version"
|
|
1724
1757
|
msgstr ""
|
|
1725
1758
|
|
|
@@ -1859,10 +1892,6 @@ msgstr ""
|
|
|
1859
1892
|
msgid "GPG Key URL"
|
|
1860
1893
|
msgstr ""
|
|
1861
1894
|
|
|
1862
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author leahliu
|
|
1863
|
-
msgid "GPG Keys"
|
|
1864
|
-
msgstr "GPG 密钥"
|
|
1865
|
-
|
|
1866
1895
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
|
1867
1896
|
msgid "Generate and Download"
|
|
1868
1897
|
msgstr "生成及下载"
|
|
@@ -1969,6 +1998,9 @@ msgstr "主机集合为空。"
|
|
|
1969
1998
|
msgid "Host content and subscription details"
|
|
1970
1999
|
msgstr "主机内容及订阅详情"
|
|
1971
2000
|
|
|
2001
|
+
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."
|
|
2002
|
+
msgstr ""
|
|
2003
|
+
|
|
1972
2004
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
1973
2005
|
msgstr ""
|
|
1974
2006
|
|
|
@@ -2188,6 +2220,12 @@ msgstr ""
|
|
|
2188
2220
|
msgid "Immediate"
|
|
2189
2221
|
msgstr ""
|
|
2190
2222
|
|
|
2223
|
+
msgid "Import"
|
|
2224
|
+
msgstr ""
|
|
2225
|
+
|
|
2226
|
+
msgid "Import Content View Version"
|
|
2227
|
+
msgstr ""
|
|
2228
|
+
|
|
2191
2229
|
msgid "Import Manifest"
|
|
2192
2230
|
msgstr "导入清单"
|
|
2193
2231
|
|
|
@@ -2209,6 +2247,9 @@ msgstr ""
|
|
|
2209
2247
|
msgid "Import a Manifest using the manifest tab above."
|
|
2210
2248
|
msgstr ""
|
|
2211
2249
|
|
|
2250
|
+
msgid "Import a content view version"
|
|
2251
|
+
msgstr ""
|
|
2252
|
+
|
|
2212
2253
|
msgid "Import facts"
|
|
2213
2254
|
msgstr "导入详情"
|
|
2214
2255
|
|
|
@@ -2377,6 +2418,9 @@ msgstr ""
|
|
|
2377
2418
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2378
2419
|
msgstr "指定的无效过滤器规则,不能在同一元组中指定 'errata_id',比如 'min_version' 或者 'max_version'。"
|
|
2379
2420
|
|
|
2421
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2422
|
+
msgstr ""
|
|
2423
|
+
|
|
2380
2424
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2381
2425
|
msgstr "请求这个操作中发送的无效参数。请联络系统管理员。"
|
|
2382
2426
|
|
|
@@ -2390,6 +2434,9 @@ msgstr ""
|
|
|
2390
2434
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2391
2435
|
msgstr ""
|
|
2392
2436
|
|
|
2437
|
+
msgid "Invalid path specified."
|
|
2438
|
+
msgstr ""
|
|
2439
|
+
|
|
2393
2440
|
msgid ""
|
|
2394
2441
|
"Invalid puppet module parameters specified. \\\n"
|
|
2395
2442
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2467,9 +2514,6 @@ msgstr ""
|
|
|
2467
2514
|
msgid "Learn more about adding Subscription Manifests"
|
|
2468
2515
|
msgstr ""
|
|
2469
2516
|
|
|
2470
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2471
|
-
msgstr ""
|
|
2472
|
-
|
|
2473
2517
|
msgid "Library lifecycle environments may not be deleted."
|
|
2474
2518
|
msgstr "无法删除库生命周期环境。"
|
|
2475
2519
|
|
|
@@ -2722,6 +2766,9 @@ msgstr ""
|
|
|
2722
2766
|
msgid "List srpms"
|
|
2723
2767
|
msgstr ""
|
|
2724
2768
|
|
|
2769
|
+
msgid "List subscriptions"
|
|
2770
|
+
msgstr ""
|
|
2771
|
+
|
|
2725
2772
|
msgid "List sync plans"
|
|
2726
2773
|
msgstr "列出同步计划"
|
|
2727
2774
|
|
|
@@ -2810,6 +2857,9 @@ msgstr "信息"
|
|
|
2810
2857
|
msgid "Messaging connection"
|
|
2811
2858
|
msgstr ""
|
|
2812
2859
|
|
|
2860
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2861
|
+
msgstr ""
|
|
2862
|
+
|
|
2813
2863
|
msgid "Mismatched"
|
|
2814
2864
|
msgstr ""
|
|
2815
2865
|
|
|
@@ -2954,12 +3004,18 @@ msgstr ""
|
|
|
2954
3004
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
2955
3005
|
msgstr ""
|
|
2956
3006
|
|
|
3007
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3008
|
+
msgstr ""
|
|
3009
|
+
|
|
2957
3010
|
msgid "No manifest file uploaded"
|
|
2958
3011
|
msgstr "未上传任何清单文件"
|
|
2959
3012
|
|
|
2960
3013
|
msgid "No matching content views found"
|
|
2961
3014
|
msgstr ""
|
|
2962
3015
|
|
|
3016
|
+
msgid "No matching repositories found"
|
|
3017
|
+
msgstr ""
|
|
3018
|
+
|
|
2963
3019
|
msgid "No new packages installed"
|
|
2964
3020
|
msgstr "没有安装新软件包"
|
|
2965
3021
|
|
|
@@ -3095,6 +3151,9 @@ msgstr ""
|
|
|
3095
3151
|
msgid "On-disk location for exported repositories"
|
|
3096
3152
|
msgstr ""
|
|
3097
3153
|
|
|
3154
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3155
|
+
msgstr ""
|
|
3156
|
+
|
|
3098
3157
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3099
3158
|
msgstr "需要参数 [ %s ],但尚未指定。"
|
|
3100
3159
|
|
|
@@ -3127,6 +3186,9 @@ msgstr "操作程序"
|
|
|
3127
3186
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3128
3187
|
msgstr ""
|
|
3129
3188
|
|
|
3189
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3190
|
+
msgstr ""
|
|
3191
|
+
|
|
3130
3192
|
msgid "Organization"
|
|
3131
3193
|
msgstr "机构"
|
|
3132
3194
|
|
|
@@ -3374,6 +3436,9 @@ msgstr "实体"
|
|
|
3374
3436
|
msgid "Plan numeric identifier"
|
|
3375
3437
|
msgstr "计划数字识别符"
|
|
3376
3438
|
|
|
3439
|
+
msgid "Please add some repositories."
|
|
3440
|
+
msgstr ""
|
|
3441
|
+
|
|
3377
3442
|
msgid "Please enter a positive number above zero"
|
|
3378
3443
|
msgstr ""
|
|
3379
3444
|
|
|
@@ -3507,6 +3572,9 @@ msgstr ""
|
|
|
3507
3572
|
msgid "Pulp"
|
|
3508
3573
|
msgstr ""
|
|
3509
3574
|
|
|
3575
|
+
msgid "Pulp 3 export destination filepath"
|
|
3576
|
+
msgstr ""
|
|
3577
|
+
|
|
3510
3578
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3511
3579
|
msgstr ""
|
|
3512
3580
|
|
|
@@ -3561,6 +3629,12 @@ msgstr ""
|
|
|
3561
3629
|
msgid "Pulp task error"
|
|
3562
3630
|
msgstr "Pulp 任务出错"
|
|
3563
3631
|
|
|
3632
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3633
|
+
msgstr ""
|
|
3634
|
+
|
|
3635
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3636
|
+
msgstr ""
|
|
3637
|
+
|
|
3564
3638
|
msgid "Pulpcore"
|
|
3565
3639
|
msgstr ""
|
|
3566
3640
|
|
|
@@ -3701,6 +3775,9 @@ msgstr "要启用的 releasever"
|
|
|
3701
3775
|
msgid "Reload data"
|
|
3702
3776
|
msgstr "重新载入数据"
|
|
3703
3777
|
|
|
3778
|
+
msgid "Remote action:"
|
|
3779
|
+
msgstr ""
|
|
3780
|
+
|
|
3704
3781
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3705
3782
|
msgstr ""
|
|
3706
3783
|
|
|
@@ -3785,6 +3862,9 @@ msgstr "删除软件包......"
|
|
|
3785
3862
|
msgid "Repo Type"
|
|
3786
3863
|
msgstr ""
|
|
3787
3864
|
|
|
3865
|
+
msgid "Report"
|
|
3866
|
+
msgstr ""
|
|
3867
|
+
|
|
3788
3868
|
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
|
3789
3869
|
msgid "Repositories"
|
|
3790
3870
|
msgstr "库"
|
|
@@ -3861,6 +3941,9 @@ msgstr ""
|
|
|
3861
3941
|
msgid "Resolve Traces"
|
|
3862
3942
|
msgstr ""
|
|
3863
3943
|
|
|
3944
|
+
msgid "Resolve traces for one or more hosts"
|
|
3945
|
+
msgstr ""
|
|
3946
|
+
|
|
3864
3947
|
msgid "Resource"
|
|
3865
3948
|
msgstr ""
|
|
3866
3949
|
|
|
@@ -3940,6 +4023,9 @@ msgstr "返回由 yum 直接使用的库 gpg 密钥内容"
|
|
|
3940
4023
|
msgid "Role"
|
|
3941
4024
|
msgstr ""
|
|
3942
4025
|
|
|
4026
|
+
msgid "Role of host"
|
|
4027
|
+
msgstr ""
|
|
4028
|
+
|
|
3943
4029
|
msgid "Run Sync Plan:"
|
|
3944
4030
|
msgstr ""
|
|
3945
4031
|
|
|
@@ -4041,6 +4127,9 @@ msgstr "服务等级 %s"
|
|
|
4041
4127
|
msgid "Service Level (SLA)"
|
|
4042
4128
|
msgstr ""
|
|
4043
4129
|
|
|
4130
|
+
msgid "Service level of host"
|
|
4131
|
+
msgstr ""
|
|
4132
|
+
|
|
4044
4133
|
msgid "Service level to be used for autoheal"
|
|
4045
4134
|
msgstr ""
|
|
4046
4135
|
|
|
@@ -4135,6 +4224,9 @@ msgstr "显示内容主机的可用发行本"
|
|
|
4135
4224
|
msgid "Show the available repository types"
|
|
4136
4225
|
msgstr ""
|
|
4137
4226
|
|
|
4227
|
+
msgid "Show the export history for a content view version"
|
|
4228
|
+
msgstr ""
|
|
4229
|
+
|
|
4138
4230
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4139
4231
|
msgstr ""
|
|
4140
4232
|
|
|
@@ -4144,6 +4236,12 @@ msgstr "显示版本信息"
|
|
|
4144
4236
|
msgid "Simple Content Access"
|
|
4145
4237
|
msgstr ""
|
|
4146
4238
|
|
|
4239
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4240
|
+
msgstr ""
|
|
4241
|
+
|
|
4242
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4243
|
+
msgstr ""
|
|
4244
|
+
|
|
4147
4245
|
msgid "Size of file to upload"
|
|
4148
4246
|
msgstr ""
|
|
4149
4247
|
|
|
@@ -4386,6 +4484,9 @@ msgstr "同步一个或多个产品"
|
|
|
4386
4484
|
msgid "Sync plan identifier to attach"
|
|
4387
4485
|
msgstr "要附加的同步计划识别符"
|
|
4388
4486
|
|
|
4487
|
+
msgid "Sync state"
|
|
4488
|
+
msgstr ""
|
|
4489
|
+
|
|
4389
4490
|
msgid "Synced Content"
|
|
4390
4491
|
msgstr ""
|
|
4391
4492
|
|
|
@@ -4496,6 +4597,9 @@ msgstr "有勘误可用于以下主机:"
|
|
|
4496
4597
|
msgid "The id of the host to alter"
|
|
4497
4598
|
msgstr ""
|
|
4498
4599
|
|
|
4600
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4601
|
+
msgstr ""
|
|
4602
|
+
|
|
4499
4603
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4500
4604
|
msgstr ""
|
|
4501
4605
|
|
|
@@ -4544,6 +4648,9 @@ msgstr ""
|
|
|
4544
4648
|
msgid "The requested resource does not belong to the specified organization"
|
|
4545
4649
|
msgstr ""
|
|
4546
4650
|
|
|
4651
|
+
msgid "The requested traces were not found for this host"
|
|
4652
|
+
msgstr ""
|
|
4653
|
+
|
|
4547
4654
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4548
4655
|
msgstr ""
|
|
4549
4656
|
|
|
@@ -4607,6 +4714,9 @@ msgstr ""
|
|
|
4607
4714
|
msgid "There's no running synchronization for this smart proxy."
|
|
4608
4715
|
msgstr ""
|
|
4609
4716
|
|
|
4717
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4718
|
+
msgstr ""
|
|
4719
|
+
|
|
4610
4720
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4611
4721
|
msgstr ""
|
|
4612
4722
|
|
|
@@ -4746,10 +4856,13 @@ msgstr ""
|
|
|
4746
4856
|
msgid "Unable to detect puppet path"
|
|
4747
4857
|
msgstr ""
|
|
4748
4858
|
|
|
4749
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4859
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4750
4860
|
msgstr ""
|
|
4751
4861
|
|
|
4752
|
-
msgid "Unable to export
|
|
4862
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4863
|
+
msgstr ""
|
|
4864
|
+
|
|
4865
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4753
4866
|
msgstr ""
|
|
4754
4867
|
|
|
4755
4868
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -4964,6 +5077,12 @@ msgstr ""
|
|
|
4964
5077
|
msgid "Updating Package..."
|
|
4965
5078
|
msgstr "正在更新软件......"
|
|
4966
5079
|
|
|
5080
|
+
msgid "Updating System Purpose for host"
|
|
5081
|
+
msgstr ""
|
|
5082
|
+
|
|
5083
|
+
msgid "Updating System Purpose for host %s"
|
|
5084
|
+
msgstr ""
|
|
5085
|
+
|
|
4967
5086
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author leahliu
|
|
4968
5087
|
msgid "Updating package group..."
|
|
4969
5088
|
msgstr "正在更新软件包组......"
|
|
@@ -5019,9 +5138,15 @@ msgstr ""
|
|
|
5019
5138
|
msgid "Usage Type"
|
|
5020
5139
|
msgstr ""
|
|
5021
5140
|
|
|
5141
|
+
msgid "Usage of host"
|
|
5142
|
+
msgstr ""
|
|
5143
|
+
|
|
5022
5144
|
msgid "Use remote execution by default"
|
|
5023
5145
|
msgstr ""
|
|
5024
5146
|
|
|
5147
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5148
|
+
msgstr ""
|
|
5149
|
+
|
|
5025
5150
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5026
5151
|
msgstr "用户 '%s' 没有指定机构 ID,且没有默认机构。"
|
|
5027
5152
|
|
|
@@ -5046,6 +5171,15 @@ msgstr ""
|
|
|
5046
5171
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5047
5172
|
msgstr ""
|
|
5048
5173
|
|
|
5174
|
+
msgid "Verify checksum"
|
|
5175
|
+
msgstr ""
|
|
5176
|
+
|
|
5177
|
+
msgid "Verify checksum for one or more products"
|
|
5178
|
+
msgstr ""
|
|
5179
|
+
|
|
5180
|
+
msgid "Verify checksum of repository contents"
|
|
5181
|
+
msgstr ""
|
|
5182
|
+
|
|
5049
5183
|
msgid "Version"
|
|
5050
5184
|
msgstr ""
|
|
5051
5185
|
|
|
@@ -5063,7 +5197,7 @@ msgstr ""
|
|
|
5063
5197
|
msgid "Virtual"
|
|
5064
5198
|
msgstr "虚拟"
|
|
5065
5199
|
|
|
5066
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5200
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5067
5201
|
msgstr ""
|
|
5068
5202
|
|
|
5069
5203
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5132,6 +5266,9 @@ msgstr "您不能设置机构的 parent_id.。这个功能已被禁用。"
|
|
|
5132
5266
|
msgid "You currently don't have any Content Views."
|
|
5133
5267
|
msgstr ""
|
|
5134
5268
|
|
|
5269
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5270
|
+
msgstr ""
|
|
5271
|
+
|
|
5135
5272
|
msgid "You do not have permissions to delete %s"
|
|
5136
5273
|
msgstr "您没有权限删除 %s"
|
|
5137
5274
|
|
|
@@ -5546,9 +5683,6 @@ msgstr ""
|
|
|
5546
5683
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5547
5684
|
msgstr ""
|
|
5548
5685
|
|
|
5549
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5550
|
-
msgstr ""
|
|
5551
|
-
|
|
5552
5686
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5553
5687
|
msgstr ""
|
|
5554
5688
|
|
|
@@ -5621,6 +5755,9 @@ msgstr "已注册内容主机的最大数"
|
|
|
5621
5755
|
msgid "maximum size of each ISO in MB"
|
|
5622
5756
|
msgstr ""
|
|
5623
5757
|
|
|
5758
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5759
|
+
msgstr ""
|
|
5760
|
+
|
|
5624
5761
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5625
5762
|
msgstr ""
|
|
5626
5763
|
|
|
@@ -5898,6 +6035,9 @@ msgstr ""
|
|
|
5898
6035
|
msgid "the uuid of the puppet module to associate"
|
|
5899
6036
|
msgstr "与之关联的 puppet 模块名称"
|
|
5900
6037
|
|
|
6038
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6039
|
+
msgstr ""
|
|
6040
|
+
|
|
5901
6041
|
msgid "true if the latest version of the component's content view is desired"
|
|
5902
6042
|
msgstr ""
|
|
5903
6043
|
|