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/ko/katello.po
CHANGED
|
@@ -399,6 +399,9 @@ msgstr "추가된 컨텐츠: "
|
|
|
399
399
|
msgid "Adding content units"
|
|
400
400
|
msgstr ""
|
|
401
401
|
|
|
402
|
+
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}"
|
|
403
|
+
msgstr ""
|
|
404
|
+
|
|
402
405
|
msgid "Addons"
|
|
403
406
|
msgstr ""
|
|
404
407
|
|
|
@@ -503,6 +506,9 @@ msgstr ""
|
|
|
503
506
|
msgid "Artifacts"
|
|
504
507
|
msgstr ""
|
|
505
508
|
|
|
509
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
510
|
+
msgstr ""
|
|
511
|
+
|
|
506
512
|
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
|
507
513
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
508
514
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
@@ -548,9 +554,6 @@ msgstr ""
|
|
|
548
554
|
msgid "Author"
|
|
549
555
|
msgstr ""
|
|
550
556
|
|
|
551
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
552
|
-
msgstr ""
|
|
553
|
-
|
|
554
557
|
msgid "Auto Publish - Triggered by '%s'"
|
|
555
558
|
msgstr ""
|
|
556
559
|
|
|
@@ -760,6 +763,9 @@ msgstr ""
|
|
|
760
763
|
msgid "Cannot delete view while it exists in environments"
|
|
761
764
|
msgstr "뷰가 환경에서 있어 삭제할 수 없습니다 "
|
|
762
765
|
|
|
766
|
+
msgid "Cannot import a composite content view"
|
|
767
|
+
msgstr ""
|
|
768
|
+
|
|
763
769
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
764
770
|
msgstr ""
|
|
765
771
|
|
|
@@ -836,6 +842,9 @@ msgstr ""
|
|
|
836
842
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
837
843
|
msgstr ""
|
|
838
844
|
|
|
845
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
846
|
+
msgstr ""
|
|
847
|
+
|
|
839
848
|
msgid "Click here to go to the tasks page for the task."
|
|
840
849
|
msgstr ""
|
|
841
850
|
|
|
@@ -966,9 +975,15 @@ msgstr ""
|
|
|
966
975
|
msgid "Content View Version not set"
|
|
967
976
|
msgstr ""
|
|
968
977
|
|
|
978
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
969
981
|
msgid "Content View and Environment not set for registration."
|
|
970
982
|
msgstr ""
|
|
971
983
|
|
|
984
|
+
msgid "Content View id"
|
|
985
|
+
msgstr ""
|
|
986
|
+
|
|
972
987
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
|
973
988
|
msgid "Content Views"
|
|
974
989
|
msgstr "컨텐츠 보기 "
|
|
@@ -1028,12 +1043,12 @@ msgstr ""
|
|
|
1028
1043
|
msgid "Copy an activation key"
|
|
1029
1044
|
msgstr "활성키 복사 "
|
|
1030
1045
|
|
|
1046
|
+
msgid "Copy version units to library"
|
|
1047
|
+
msgstr ""
|
|
1048
|
+
|
|
1031
1049
|
msgid "Cores: %s"
|
|
1032
1050
|
msgstr "코어: %s"
|
|
1033
1051
|
|
|
1034
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1035
|
-
msgstr ""
|
|
1036
|
-
|
|
1037
1052
|
msgid "Could not delete organization '%s'."
|
|
1038
1053
|
msgstr "조직 '%s'을 삭제할 수 없음. "
|
|
1039
1054
|
|
|
@@ -1043,6 +1058,9 @@ msgstr "리포지터리에서 id '%{id}'를 갖는 %{content}을(를) 찾을 수
|
|
|
1043
1058
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1044
1059
|
msgstr ""
|
|
1045
1060
|
|
|
1061
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1062
|
+
msgstr ""
|
|
1063
|
+
|
|
1046
1064
|
msgid "Could not find Environment with ids: %s"
|
|
1047
1065
|
msgstr "다음의 ID를 갖는 환경을 찾을 수 없습니다: %s"
|
|
1048
1066
|
|
|
@@ -1076,9 +1094,6 @@ msgstr ""
|
|
|
1076
1094
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1077
1095
|
msgstr "ID %{id}인 %{type} 필터를 찾을 수 없습니다 "
|
|
1078
1096
|
|
|
1079
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1080
|
-
msgstr ""
|
|
1081
|
-
|
|
1082
1097
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1083
1098
|
msgstr " id=%s인 컨텐츠 뷰 필터를 찾을 수 없습니다 "
|
|
1084
1099
|
|
|
@@ -1170,9 +1185,6 @@ msgstr ""
|
|
|
1170
1185
|
msgid "Couldn't find subject of synchronization"
|
|
1171
1186
|
msgstr "동기화 제목을 찾을 수 없음 "
|
|
1172
1187
|
|
|
1173
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1174
|
-
msgstr "조직 '%{org}'에서 동기화 계획 '%{plan}'을 찾을 수 없음 "
|
|
1175
|
-
|
|
1176
1188
|
msgid "Count"
|
|
1177
1189
|
msgstr ""
|
|
1178
1190
|
|
|
@@ -1454,6 +1466,15 @@ msgstr ""
|
|
|
1454
1466
|
msgid "Desired quantity of the pool"
|
|
1455
1467
|
msgstr ""
|
|
1456
1468
|
|
|
1469
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1470
|
+
msgstr ""
|
|
1471
|
+
|
|
1472
|
+
msgid "Destination Server name"
|
|
1473
|
+
msgstr ""
|
|
1474
|
+
|
|
1475
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1476
|
+
msgstr ""
|
|
1477
|
+
|
|
1457
1478
|
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
|
1458
1479
|
msgid "Destroy"
|
|
1459
1480
|
msgstr "삭제 "
|
|
@@ -1506,6 +1527,9 @@ msgstr "상세 정보 "
|
|
|
1506
1527
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1507
1528
|
msgstr ""
|
|
1508
1529
|
|
|
1530
|
+
msgid "Directory containing the exported Content View Version"
|
|
1531
|
+
msgstr ""
|
|
1532
|
+
|
|
1509
1533
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
|
|
1510
1534
|
msgid "Disable"
|
|
1511
1535
|
msgstr "비활성화 "
|
|
@@ -1522,6 +1546,9 @@ msgstr ""
|
|
|
1522
1546
|
msgid "Disable simple content access for a manifest"
|
|
1523
1547
|
msgstr ""
|
|
1524
1548
|
|
|
1549
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1550
|
+
msgstr ""
|
|
1551
|
+
|
|
1525
1552
|
msgid "Disconnected mode"
|
|
1526
1553
|
msgstr ""
|
|
1527
1554
|
|
|
@@ -1606,6 +1633,9 @@ msgstr ""
|
|
|
1606
1633
|
msgid "Enabled Repositories"
|
|
1607
1634
|
msgstr ""
|
|
1608
1635
|
|
|
1636
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1637
|
+
msgstr ""
|
|
1638
|
+
|
|
1609
1639
|
msgid "End Date"
|
|
1610
1640
|
msgstr ""
|
|
1611
1641
|
|
|
@@ -1727,6 +1757,9 @@ msgstr ""
|
|
|
1727
1757
|
msgid "Export to ISO format"
|
|
1728
1758
|
msgstr ""
|
|
1729
1759
|
|
|
1760
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1761
|
+
msgstr ""
|
|
1762
|
+
|
|
1730
1763
|
msgid "Exported version"
|
|
1731
1764
|
msgstr ""
|
|
1732
1765
|
|
|
@@ -1866,10 +1899,6 @@ msgstr ""
|
|
|
1866
1899
|
msgid "GPG Key URL"
|
|
1867
1900
|
msgstr ""
|
|
1868
1901
|
|
|
1869
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
|
|
1870
|
-
msgid "GPG Keys"
|
|
1871
|
-
msgstr "GPG 키 "
|
|
1872
|
-
|
|
1873
1902
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
|
|
1874
1903
|
msgid "Generate and Download"
|
|
1875
1904
|
msgstr "생성 및 다운로드 "
|
|
@@ -1976,6 +2005,9 @@ msgstr "호스트 컬렉션이 비어 있습니다. "
|
|
|
1976
2005
|
msgid "Host content and subscription details"
|
|
1977
2006
|
msgstr "호스트 컨텐츠 및 서브스크립션 정보 "
|
|
1978
2007
|
|
|
2008
|
+
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."
|
|
2009
|
+
msgstr ""
|
|
2010
|
+
|
|
1979
2011
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
1980
2012
|
msgstr ""
|
|
1981
2013
|
|
|
@@ -2195,6 +2227,12 @@ msgstr ""
|
|
|
2195
2227
|
msgid "Immediate"
|
|
2196
2228
|
msgstr ""
|
|
2197
2229
|
|
|
2230
|
+
msgid "Import"
|
|
2231
|
+
msgstr ""
|
|
2232
|
+
|
|
2233
|
+
msgid "Import Content View Version"
|
|
2234
|
+
msgstr ""
|
|
2235
|
+
|
|
2198
2236
|
msgid "Import Manifest"
|
|
2199
2237
|
msgstr "매니페스트 가져오기 "
|
|
2200
2238
|
|
|
@@ -2216,6 +2254,9 @@ msgstr ""
|
|
|
2216
2254
|
msgid "Import a Manifest using the manifest tab above."
|
|
2217
2255
|
msgstr ""
|
|
2218
2256
|
|
|
2257
|
+
msgid "Import a content view version"
|
|
2258
|
+
msgstr ""
|
|
2259
|
+
|
|
2219
2260
|
msgid "Import facts"
|
|
2220
2261
|
msgstr "팩트 불러오기"
|
|
2221
2262
|
|
|
@@ -2382,6 +2423,9 @@ msgstr ""
|
|
|
2382
2423
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2383
2424
|
msgstr "잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_version' 또는 'max_version'과 동일한 튜플로 지정할 수 없습니다 "
|
|
2384
2425
|
|
|
2426
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2427
|
+
msgstr ""
|
|
2428
|
+
|
|
2385
2429
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2386
2430
|
msgstr "잘못된 매개 변수가 이 작업에 대한 요청에 전송되었습니다. 시스템 관리자에게 문의하십시오. "
|
|
2387
2431
|
|
|
@@ -2395,6 +2439,9 @@ msgstr ""
|
|
|
2395
2439
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2396
2440
|
msgstr ""
|
|
2397
2441
|
|
|
2442
|
+
msgid "Invalid path specified."
|
|
2443
|
+
msgstr ""
|
|
2444
|
+
|
|
2398
2445
|
msgid ""
|
|
2399
2446
|
"Invalid puppet module parameters specified. \\\n"
|
|
2400
2447
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2472,9 +2519,6 @@ msgstr ""
|
|
|
2472
2519
|
msgid "Learn more about adding Subscription Manifests"
|
|
2473
2520
|
msgstr ""
|
|
2474
2521
|
|
|
2475
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2476
|
-
msgstr ""
|
|
2477
|
-
|
|
2478
2522
|
msgid "Library lifecycle environments may not be deleted."
|
|
2479
2523
|
msgstr "라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "
|
|
2480
2524
|
|
|
@@ -2727,6 +2771,9 @@ msgstr ""
|
|
|
2727
2771
|
msgid "List srpms"
|
|
2728
2772
|
msgstr ""
|
|
2729
2773
|
|
|
2774
|
+
msgid "List subscriptions"
|
|
2775
|
+
msgstr ""
|
|
2776
|
+
|
|
2730
2777
|
msgid "List sync plans"
|
|
2731
2778
|
msgstr "동기화 계획 나열 "
|
|
2732
2779
|
|
|
@@ -2815,6 +2862,9 @@ msgstr "메세지 "
|
|
|
2815
2862
|
msgid "Messaging connection"
|
|
2816
2863
|
msgstr ""
|
|
2817
2864
|
|
|
2865
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2866
|
+
msgstr ""
|
|
2867
|
+
|
|
2818
2868
|
msgid "Mismatched"
|
|
2819
2869
|
msgstr ""
|
|
2820
2870
|
|
|
@@ -2959,12 +3009,18 @@ msgstr ""
|
|
|
2959
3009
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
2960
3010
|
msgstr ""
|
|
2961
3011
|
|
|
3012
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3013
|
+
msgstr ""
|
|
3014
|
+
|
|
2962
3015
|
msgid "No manifest file uploaded"
|
|
2963
3016
|
msgstr "업로드된 매니페스트 파일이 없음 "
|
|
2964
3017
|
|
|
2965
3018
|
msgid "No matching content views found"
|
|
2966
3019
|
msgstr ""
|
|
2967
3020
|
|
|
3021
|
+
msgid "No matching repositories found"
|
|
3022
|
+
msgstr ""
|
|
3023
|
+
|
|
2968
3024
|
msgid "No new packages installed"
|
|
2969
3025
|
msgstr "설치된 새 패키지가 없음 "
|
|
2970
3026
|
|
|
@@ -3100,6 +3156,9 @@ msgstr ""
|
|
|
3100
3156
|
msgid "On-disk location for exported repositories"
|
|
3101
3157
|
msgstr ""
|
|
3102
3158
|
|
|
3159
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3160
|
+
msgstr ""
|
|
3161
|
+
|
|
3103
3162
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3104
3163
|
msgstr "매개 변수 [ %s ] 중 하나가 필요하지만 지정되어 있지 않습니다."
|
|
3105
3164
|
|
|
@@ -3131,6 +3190,9 @@ msgstr "운영자 "
|
|
|
3131
3190
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3132
3191
|
msgstr ""
|
|
3133
3192
|
|
|
3193
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3194
|
+
msgstr ""
|
|
3195
|
+
|
|
3134
3196
|
msgid "Organization"
|
|
3135
3197
|
msgstr "조직 "
|
|
3136
3198
|
|
|
@@ -3378,6 +3440,9 @@ msgstr "물리 "
|
|
|
3378
3440
|
msgid "Plan numeric identifier"
|
|
3379
3441
|
msgstr "숫자로된 ID 계획 "
|
|
3380
3442
|
|
|
3443
|
+
msgid "Please add some repositories."
|
|
3444
|
+
msgstr ""
|
|
3445
|
+
|
|
3381
3446
|
msgid "Please enter a positive number above zero"
|
|
3382
3447
|
msgstr ""
|
|
3383
3448
|
|
|
@@ -3511,6 +3576,9 @@ msgstr ""
|
|
|
3511
3576
|
msgid "Pulp"
|
|
3512
3577
|
msgstr ""
|
|
3513
3578
|
|
|
3579
|
+
msgid "Pulp 3 export destination filepath"
|
|
3580
|
+
msgstr ""
|
|
3581
|
+
|
|
3514
3582
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3515
3583
|
msgstr ""
|
|
3516
3584
|
|
|
@@ -3565,6 +3633,12 @@ msgstr ""
|
|
|
3565
3633
|
msgid "Pulp task error"
|
|
3566
3634
|
msgstr "Pulp 작업 오류 "
|
|
3567
3635
|
|
|
3636
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3637
|
+
msgstr ""
|
|
3638
|
+
|
|
3639
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3640
|
+
msgstr ""
|
|
3641
|
+
|
|
3568
3642
|
msgid "Pulpcore"
|
|
3569
3643
|
msgstr ""
|
|
3570
3644
|
|
|
@@ -3703,6 +3777,9 @@ msgstr "활성화할 Releasever "
|
|
|
3703
3777
|
msgid "Reload data"
|
|
3704
3778
|
msgstr "데이터 다시 불러오기 "
|
|
3705
3779
|
|
|
3780
|
+
msgid "Remote action:"
|
|
3781
|
+
msgstr ""
|
|
3782
|
+
|
|
3706
3783
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3707
3784
|
msgstr ""
|
|
3708
3785
|
|
|
@@ -3787,6 +3864,9 @@ msgstr "패키지 삭제 중..."
|
|
|
3787
3864
|
msgid "Repo Type"
|
|
3788
3865
|
msgstr ""
|
|
3789
3866
|
|
|
3867
|
+
msgid "Report"
|
|
3868
|
+
msgstr ""
|
|
3869
|
+
|
|
3790
3870
|
# translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author eukim
|
|
3791
3871
|
msgid "Repositories"
|
|
3792
3872
|
msgstr "리포지터리 "
|
|
@@ -3863,6 +3943,9 @@ msgstr ""
|
|
|
3863
3943
|
msgid "Resolve Traces"
|
|
3864
3944
|
msgstr ""
|
|
3865
3945
|
|
|
3946
|
+
msgid "Resolve traces for one or more hosts"
|
|
3947
|
+
msgstr ""
|
|
3948
|
+
|
|
3866
3949
|
msgid "Resource"
|
|
3867
3950
|
msgstr ""
|
|
3868
3951
|
|
|
@@ -3942,6 +4025,9 @@ msgstr "yum에 직접 사용되는 리포지터리 gpg 키의 컨텐츠를 반
|
|
|
3942
4025
|
msgid "Role"
|
|
3943
4026
|
msgstr ""
|
|
3944
4027
|
|
|
4028
|
+
msgid "Role of host"
|
|
4029
|
+
msgstr ""
|
|
4030
|
+
|
|
3945
4031
|
msgid "Run Sync Plan:"
|
|
3946
4032
|
msgstr ""
|
|
3947
4033
|
|
|
@@ -4044,6 +4130,9 @@ msgstr "서비스 레벨 %s"
|
|
|
4044
4130
|
msgid "Service Level (SLA)"
|
|
4045
4131
|
msgstr ""
|
|
4046
4132
|
|
|
4133
|
+
msgid "Service level of host"
|
|
4134
|
+
msgstr ""
|
|
4135
|
+
|
|
4047
4136
|
msgid "Service level to be used for autoheal"
|
|
4048
4137
|
msgstr ""
|
|
4049
4138
|
|
|
@@ -4138,6 +4227,9 @@ msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
|
|
|
4138
4227
|
msgid "Show the available repository types"
|
|
4139
4228
|
msgstr ""
|
|
4140
4229
|
|
|
4230
|
+
msgid "Show the export history for a content view version"
|
|
4231
|
+
msgstr ""
|
|
4232
|
+
|
|
4141
4233
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4142
4234
|
msgstr ""
|
|
4143
4235
|
|
|
@@ -4147,6 +4239,12 @@ msgstr "버전 정보 표시"
|
|
|
4147
4239
|
msgid "Simple Content Access"
|
|
4148
4240
|
msgstr ""
|
|
4149
4241
|
|
|
4242
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4243
|
+
msgstr ""
|
|
4244
|
+
|
|
4245
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4246
|
+
msgstr ""
|
|
4247
|
+
|
|
4150
4248
|
msgid "Size of file to upload"
|
|
4151
4249
|
msgstr ""
|
|
4152
4250
|
|
|
@@ -4389,6 +4487,9 @@ msgstr "하나 이상의 제품 동기화 "
|
|
|
4389
4487
|
msgid "Sync plan identifier to attach"
|
|
4390
4488
|
msgstr "첨부할 동기화 계획 ID "
|
|
4391
4489
|
|
|
4490
|
+
msgid "Sync state"
|
|
4491
|
+
msgstr ""
|
|
4492
|
+
|
|
4392
4493
|
msgid "Synced Content"
|
|
4393
4494
|
msgstr ""
|
|
4394
4495
|
|
|
@@ -4499,6 +4600,9 @@ msgstr "다음 호스트에는 이에 적용되는 에라타가 있습니다: "
|
|
|
4499
4600
|
msgid "The id of the host to alter"
|
|
4500
4601
|
msgstr ""
|
|
4501
4602
|
|
|
4603
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4604
|
+
msgstr ""
|
|
4605
|
+
|
|
4502
4606
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4503
4607
|
msgstr ""
|
|
4504
4608
|
|
|
@@ -4547,6 +4651,9 @@ msgstr ""
|
|
|
4547
4651
|
msgid "The requested resource does not belong to the specified organization"
|
|
4548
4652
|
msgstr ""
|
|
4549
4653
|
|
|
4654
|
+
msgid "The requested traces were not found for this host"
|
|
4655
|
+
msgstr ""
|
|
4656
|
+
|
|
4550
4657
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4551
4658
|
msgstr ""
|
|
4552
4659
|
|
|
@@ -4610,6 +4717,9 @@ msgstr ""
|
|
|
4610
4717
|
msgid "There's no running synchronization for this smart proxy."
|
|
4611
4718
|
msgstr ""
|
|
4612
4719
|
|
|
4720
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4721
|
+
msgstr ""
|
|
4722
|
+
|
|
4613
4723
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4614
4724
|
msgstr ""
|
|
4615
4725
|
|
|
@@ -4749,10 +4859,13 @@ msgstr ""
|
|
|
4749
4859
|
msgid "Unable to detect puppet path"
|
|
4750
4860
|
msgstr ""
|
|
4751
4861
|
|
|
4752
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4862
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4753
4863
|
msgstr ""
|
|
4754
4864
|
|
|
4755
|
-
msgid "Unable to export
|
|
4865
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4866
|
+
msgstr ""
|
|
4867
|
+
|
|
4868
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4756
4869
|
msgstr ""
|
|
4757
4870
|
|
|
4758
4871
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -4967,6 +5080,12 @@ msgstr ""
|
|
|
4967
5080
|
msgid "Updating Package..."
|
|
4968
5081
|
msgstr "패키지 업데이트 중..."
|
|
4969
5082
|
|
|
5083
|
+
msgid "Updating System Purpose for host"
|
|
5084
|
+
msgstr ""
|
|
5085
|
+
|
|
5086
|
+
msgid "Updating System Purpose for host %s"
|
|
5087
|
+
msgstr ""
|
|
5088
|
+
|
|
4970
5089
|
msgid "Updating package group..."
|
|
4971
5090
|
msgstr "패키지 그룹 업데이트 중..."
|
|
4972
5091
|
|
|
@@ -5021,9 +5140,15 @@ msgstr ""
|
|
|
5021
5140
|
msgid "Usage Type"
|
|
5022
5141
|
msgstr ""
|
|
5023
5142
|
|
|
5143
|
+
msgid "Usage of host"
|
|
5144
|
+
msgstr ""
|
|
5145
|
+
|
|
5024
5146
|
msgid "Use remote execution by default"
|
|
5025
5147
|
msgstr ""
|
|
5026
5148
|
|
|
5149
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5150
|
+
msgstr ""
|
|
5151
|
+
|
|
5027
5152
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5028
5153
|
msgstr "사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "
|
|
5029
5154
|
|
|
@@ -5048,6 +5173,15 @@ msgstr ""
|
|
|
5048
5173
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5049
5174
|
msgstr ""
|
|
5050
5175
|
|
|
5176
|
+
msgid "Verify checksum"
|
|
5177
|
+
msgstr ""
|
|
5178
|
+
|
|
5179
|
+
msgid "Verify checksum for one or more products"
|
|
5180
|
+
msgstr ""
|
|
5181
|
+
|
|
5182
|
+
msgid "Verify checksum of repository contents"
|
|
5183
|
+
msgstr ""
|
|
5184
|
+
|
|
5051
5185
|
msgid "Version"
|
|
5052
5186
|
msgstr ""
|
|
5053
5187
|
|
|
@@ -5065,7 +5199,7 @@ msgstr ""
|
|
|
5065
5199
|
msgid "Virtual"
|
|
5066
5200
|
msgstr "가상 "
|
|
5067
5201
|
|
|
5068
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5202
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5069
5203
|
msgstr ""
|
|
5070
5204
|
|
|
5071
5205
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5134,6 +5268,9 @@ msgstr "조직의 parent_id를 설정할 수 없습니다. 이 기능은 비활
|
|
|
5134
5268
|
msgid "You currently don't have any Content Views."
|
|
5135
5269
|
msgstr ""
|
|
5136
5270
|
|
|
5271
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5272
|
+
msgstr ""
|
|
5273
|
+
|
|
5137
5274
|
msgid "You do not have permissions to delete %s"
|
|
5138
5275
|
msgstr "%s을(를) 삭제할 권한이 없습니다 "
|
|
5139
5276
|
|
|
@@ -5549,9 +5686,6 @@ msgstr ""
|
|
|
5549
5686
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5550
5687
|
msgstr ""
|
|
5551
5688
|
|
|
5552
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5553
|
-
msgstr ""
|
|
5554
|
-
|
|
5555
5689
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5556
5690
|
msgstr ""
|
|
5557
5691
|
|
|
@@ -5624,6 +5758,9 @@ msgstr "등록된 최대 컨텐츠 호스트 수 "
|
|
|
5624
5758
|
msgid "maximum size of each ISO in MB"
|
|
5625
5759
|
msgstr ""
|
|
5626
5760
|
|
|
5761
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5762
|
+
msgstr ""
|
|
5763
|
+
|
|
5627
5764
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5628
5765
|
msgstr ""
|
|
5629
5766
|
|
|
@@ -5899,6 +6036,9 @@ msgstr ""
|
|
|
5899
6036
|
msgid "the uuid of the puppet module to associate"
|
|
5900
6037
|
msgstr "연결할 puppet 모듈의 uuid "
|
|
5901
6038
|
|
|
6039
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6040
|
+
msgstr ""
|
|
6041
|
+
|
|
5902
6042
|
msgid "true if the latest version of the component's content view is desired"
|
|
5903
6043
|
msgstr ""
|
|
5904
6044
|
|