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/ja/katello.po
CHANGED
|
@@ -409,6 +409,9 @@ msgstr "追加されたコンテンツ:"
|
|
|
409
409
|
msgid "Adding content units"
|
|
410
410
|
msgstr ""
|
|
411
411
|
|
|
412
|
+
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}"
|
|
413
|
+
msgstr ""
|
|
414
|
+
|
|
412
415
|
msgid "Addons"
|
|
413
416
|
msgstr ""
|
|
414
417
|
|
|
@@ -513,6 +516,9 @@ msgstr ""
|
|
|
513
516
|
msgid "Artifacts"
|
|
514
517
|
msgstr ""
|
|
515
518
|
|
|
519
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
516
522
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
517
523
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
518
524
|
msgstr[0] "%{taxonomy_single} のない %{count} ホストの %{taxonomy_name} への割り当て"
|
|
@@ -558,9 +564,6 @@ msgstr ""
|
|
|
558
564
|
msgid "Author"
|
|
559
565
|
msgstr ""
|
|
560
566
|
|
|
561
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
562
|
-
msgstr ""
|
|
563
|
-
|
|
564
567
|
msgid "Auto Publish - Triggered by '%s'"
|
|
565
568
|
msgstr ""
|
|
566
569
|
|
|
@@ -773,6 +776,9 @@ msgstr ""
|
|
|
773
776
|
msgid "Cannot delete view while it exists in environments"
|
|
774
777
|
msgstr "ビューは環境に存在するため、削除することができません"
|
|
775
778
|
|
|
779
|
+
msgid "Cannot import a composite content view"
|
|
780
|
+
msgstr ""
|
|
781
|
+
|
|
776
782
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
777
783
|
msgstr ""
|
|
778
784
|
|
|
@@ -848,6 +854,9 @@ msgstr ""
|
|
|
848
854
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
849
855
|
msgstr ""
|
|
850
856
|
|
|
857
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
858
|
+
msgstr ""
|
|
859
|
+
|
|
851
860
|
msgid "Click here to go to the tasks page for the task."
|
|
852
861
|
msgstr ""
|
|
853
862
|
|
|
@@ -978,9 +987,15 @@ msgstr ""
|
|
|
978
987
|
msgid "Content View Version not set"
|
|
979
988
|
msgstr ""
|
|
980
989
|
|
|
990
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
991
|
+
msgstr ""
|
|
992
|
+
|
|
981
993
|
msgid "Content View and Environment not set for registration."
|
|
982
994
|
msgstr ""
|
|
983
995
|
|
|
996
|
+
msgid "Content View id"
|
|
997
|
+
msgstr ""
|
|
998
|
+
|
|
984
999
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author asasaki
|
|
985
1000
|
msgid "Content Views"
|
|
986
1001
|
msgstr "コンテンツビュー"
|
|
@@ -1040,12 +1055,12 @@ msgstr ""
|
|
|
1040
1055
|
msgid "Copy an activation key"
|
|
1041
1056
|
msgstr "アクティベーションキーのコピー"
|
|
1042
1057
|
|
|
1058
|
+
msgid "Copy version units to library"
|
|
1059
|
+
msgstr ""
|
|
1060
|
+
|
|
1043
1061
|
msgid "Cores: %s"
|
|
1044
1062
|
msgstr "コア: %s"
|
|
1045
1063
|
|
|
1046
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1047
|
-
msgstr ""
|
|
1048
|
-
|
|
1049
1064
|
msgid "Could not delete organization '%s'."
|
|
1050
1065
|
msgstr "組織 '%s' を削除できませんでした。"
|
|
1051
1066
|
|
|
@@ -1055,6 +1070,9 @@ msgstr "リポジトリーに ID '%{id}' の %{content} が見つかりませ
|
|
|
1055
1070
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1056
1071
|
msgstr ""
|
|
1057
1072
|
|
|
1073
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1074
|
+
msgstr ""
|
|
1075
|
+
|
|
1058
1076
|
msgid "Could not find Environment with ids: %s"
|
|
1059
1077
|
msgstr "以下の ID の環境が見つかりませんでした: %s"
|
|
1060
1078
|
|
|
@@ -1088,9 +1106,6 @@ msgstr ""
|
|
|
1088
1106
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1089
1107
|
msgstr "ID %{id} の %{type} フィルターが見つかりませんでした"
|
|
1090
1108
|
|
|
1091
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1092
|
-
msgstr ""
|
|
1093
|
-
|
|
1094
1109
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1095
1110
|
msgstr "id=%s のコンテンツビューフィルターは見つかりませんでした"
|
|
1096
1111
|
|
|
@@ -1185,10 +1200,6 @@ msgstr ""
|
|
|
1185
1200
|
msgid "Couldn't find subject of synchronization"
|
|
1186
1201
|
msgstr "同期の件名が見つかりませんでした"
|
|
1187
1202
|
|
|
1188
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author nnakakit
|
|
1189
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1190
|
-
msgstr "同期プラン '%{plan}' が組織 '%{org}' 内に見つかりませんでした"
|
|
1191
|
-
|
|
1192
1203
|
msgid "Count"
|
|
1193
1204
|
msgstr ""
|
|
1194
1205
|
|
|
@@ -1471,6 +1482,15 @@ msgstr ""
|
|
|
1471
1482
|
msgid "Desired quantity of the pool"
|
|
1472
1483
|
msgstr ""
|
|
1473
1484
|
|
|
1485
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1486
|
+
msgstr ""
|
|
1487
|
+
|
|
1488
|
+
msgid "Destination Server name"
|
|
1489
|
+
msgstr ""
|
|
1490
|
+
|
|
1491
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1492
|
+
msgstr ""
|
|
1493
|
+
|
|
1474
1494
|
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
|
1475
1495
|
msgid "Destroy"
|
|
1476
1496
|
msgstr "破棄"
|
|
@@ -1523,6 +1543,9 @@ msgstr "詳細"
|
|
|
1523
1543
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1524
1544
|
msgstr ""
|
|
1525
1545
|
|
|
1546
|
+
msgid "Directory containing the exported Content View Version"
|
|
1547
|
+
msgstr ""
|
|
1548
|
+
|
|
1526
1549
|
msgid "Disable"
|
|
1527
1550
|
msgstr "無効"
|
|
1528
1551
|
|
|
@@ -1538,6 +1561,9 @@ msgstr ""
|
|
|
1538
1561
|
msgid "Disable simple content access for a manifest"
|
|
1539
1562
|
msgstr ""
|
|
1540
1563
|
|
|
1564
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1565
|
+
msgstr ""
|
|
1566
|
+
|
|
1541
1567
|
msgid "Disconnected mode"
|
|
1542
1568
|
msgstr ""
|
|
1543
1569
|
|
|
@@ -1622,6 +1648,9 @@ msgstr ""
|
|
|
1622
1648
|
msgid "Enabled Repositories"
|
|
1623
1649
|
msgstr ""
|
|
1624
1650
|
|
|
1651
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1652
|
+
msgstr ""
|
|
1653
|
+
|
|
1625
1654
|
msgid "End Date"
|
|
1626
1655
|
msgstr ""
|
|
1627
1656
|
|
|
@@ -1745,6 +1774,9 @@ msgstr ""
|
|
|
1745
1774
|
msgid "Export to ISO format"
|
|
1746
1775
|
msgstr ""
|
|
1747
1776
|
|
|
1777
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1778
|
+
msgstr ""
|
|
1779
|
+
|
|
1748
1780
|
msgid "Exported version"
|
|
1749
1781
|
msgstr ""
|
|
1750
1782
|
|
|
@@ -1884,10 +1916,6 @@ msgstr ""
|
|
|
1884
1916
|
msgid "GPG Key URL"
|
|
1885
1917
|
msgstr ""
|
|
1886
1918
|
|
|
1887
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author asasaki
|
|
1888
|
-
msgid "GPG Keys"
|
|
1889
|
-
msgstr "GPG キー"
|
|
1890
|
-
|
|
1891
1919
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author kmoriguc
|
|
1892
1920
|
msgid "Generate and Download"
|
|
1893
1921
|
msgstr "生成してダウンロード"
|
|
@@ -1995,6 +2023,9 @@ msgstr "ホストコレクションは空です。"
|
|
|
1995
2023
|
msgid "Host content and subscription details"
|
|
1996
2024
|
msgstr "ホストコレクションおよびサブスクリプションの詳細"
|
|
1997
2025
|
|
|
2026
|
+
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."
|
|
2027
|
+
msgstr ""
|
|
2028
|
+
|
|
1998
2029
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
1999
2030
|
msgstr ""
|
|
2000
2031
|
|
|
@@ -2214,6 +2245,12 @@ msgstr ""
|
|
|
2214
2245
|
msgid "Immediate"
|
|
2215
2246
|
msgstr ""
|
|
2216
2247
|
|
|
2248
|
+
msgid "Import"
|
|
2249
|
+
msgstr ""
|
|
2250
|
+
|
|
2251
|
+
msgid "Import Content View Version"
|
|
2252
|
+
msgstr ""
|
|
2253
|
+
|
|
2217
2254
|
msgid "Import Manifest"
|
|
2218
2255
|
msgstr "マニフェストのインポート"
|
|
2219
2256
|
|
|
@@ -2235,6 +2272,9 @@ msgstr ""
|
|
|
2235
2272
|
msgid "Import a Manifest using the manifest tab above."
|
|
2236
2273
|
msgstr ""
|
|
2237
2274
|
|
|
2275
|
+
msgid "Import a content view version"
|
|
2276
|
+
msgstr ""
|
|
2277
|
+
|
|
2238
2278
|
msgid "Import facts"
|
|
2239
2279
|
msgstr "ファクトのインポート"
|
|
2240
2280
|
|
|
@@ -2402,6 +2442,9 @@ msgstr ""
|
|
|
2402
2442
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2403
2443
|
msgstr "無効なフィルタールールが指定されました。'version' を 'min_version' または 'max_version' と同じ組で指定することはできません"
|
|
2404
2444
|
|
|
2445
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2446
|
+
msgstr ""
|
|
2447
|
+
|
|
2405
2448
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author noriko
|
|
2406
2449
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2407
2450
|
msgstr "無効なパラメーターがこの動作の要求に送信されました。システム管理者に連絡してください。"
|
|
@@ -2416,6 +2459,9 @@ msgstr ""
|
|
|
2416
2459
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2417
2460
|
msgstr ""
|
|
2418
2461
|
|
|
2462
|
+
msgid "Invalid path specified."
|
|
2463
|
+
msgstr ""
|
|
2464
|
+
|
|
2419
2465
|
msgid ""
|
|
2420
2466
|
"Invalid puppet module parameters specified. \\\n"
|
|
2421
2467
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2493,9 +2539,6 @@ msgstr ""
|
|
|
2493
2539
|
msgid "Learn more about adding Subscription Manifests"
|
|
2494
2540
|
msgstr ""
|
|
2495
2541
|
|
|
2496
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2497
|
-
msgstr ""
|
|
2498
|
-
|
|
2499
2542
|
msgid "Library lifecycle environments may not be deleted."
|
|
2500
2543
|
msgstr "ライブラリーのライフサイクル環境は削除できません。"
|
|
2501
2544
|
|
|
@@ -2750,6 +2793,9 @@ msgstr ""
|
|
|
2750
2793
|
msgid "List srpms"
|
|
2751
2794
|
msgstr ""
|
|
2752
2795
|
|
|
2796
|
+
msgid "List subscriptions"
|
|
2797
|
+
msgstr ""
|
|
2798
|
+
|
|
2753
2799
|
msgid "List sync plans"
|
|
2754
2800
|
msgstr "同期プランの一覧表示"
|
|
2755
2801
|
|
|
@@ -2838,6 +2884,9 @@ msgstr "メッセージ"
|
|
|
2838
2884
|
msgid "Messaging connection"
|
|
2839
2885
|
msgstr ""
|
|
2840
2886
|
|
|
2887
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2888
|
+
msgstr ""
|
|
2889
|
+
|
|
2841
2890
|
msgid "Mismatched"
|
|
2842
2891
|
msgstr ""
|
|
2843
2892
|
|
|
@@ -2982,12 +3031,18 @@ msgstr ""
|
|
|
2982
3031
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
2983
3032
|
msgstr ""
|
|
2984
3033
|
|
|
3034
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3035
|
+
msgstr ""
|
|
3036
|
+
|
|
2985
3037
|
msgid "No manifest file uploaded"
|
|
2986
3038
|
msgstr "マニフェストファイルがアップロードされていません"
|
|
2987
3039
|
|
|
2988
3040
|
msgid "No matching content views found"
|
|
2989
3041
|
msgstr ""
|
|
2990
3042
|
|
|
3043
|
+
msgid "No matching repositories found"
|
|
3044
|
+
msgstr ""
|
|
3045
|
+
|
|
2991
3046
|
msgid "No new packages installed"
|
|
2992
3047
|
msgstr "インストール済みの新規パッケージはありません"
|
|
2993
3048
|
|
|
@@ -3123,6 +3178,9 @@ msgstr ""
|
|
|
3123
3178
|
msgid "On-disk location for exported repositories"
|
|
3124
3179
|
msgstr ""
|
|
3125
3180
|
|
|
3181
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3182
|
+
msgstr ""
|
|
3183
|
+
|
|
3126
3184
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3127
3185
|
msgstr "[ %s ] パラメーターのいずれかが必要ですが、指定されていません。"
|
|
3128
3186
|
|
|
@@ -3154,6 +3212,9 @@ msgstr "演算子"
|
|
|
3154
3212
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3155
3213
|
msgstr ""
|
|
3156
3214
|
|
|
3215
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3216
|
+
msgstr ""
|
|
3217
|
+
|
|
3157
3218
|
msgid "Organization"
|
|
3158
3219
|
msgstr "組織"
|
|
3159
3220
|
|
|
@@ -3407,6 +3468,9 @@ msgstr "物理"
|
|
|
3407
3468
|
msgid "Plan numeric identifier"
|
|
3408
3469
|
msgstr "プランの数値 ID"
|
|
3409
3470
|
|
|
3471
|
+
msgid "Please add some repositories."
|
|
3472
|
+
msgstr ""
|
|
3473
|
+
|
|
3410
3474
|
msgid "Please enter a positive number above zero"
|
|
3411
3475
|
msgstr ""
|
|
3412
3476
|
|
|
@@ -3540,6 +3604,9 @@ msgstr ""
|
|
|
3540
3604
|
msgid "Pulp"
|
|
3541
3605
|
msgstr ""
|
|
3542
3606
|
|
|
3607
|
+
msgid "Pulp 3 export destination filepath"
|
|
3608
|
+
msgstr ""
|
|
3609
|
+
|
|
3543
3610
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3544
3611
|
msgstr ""
|
|
3545
3612
|
|
|
@@ -3594,6 +3661,12 @@ msgstr ""
|
|
|
3594
3661
|
msgid "Pulp task error"
|
|
3595
3662
|
msgstr "Pulp タスクのエラー"
|
|
3596
3663
|
|
|
3664
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3665
|
+
msgstr ""
|
|
3666
|
+
|
|
3667
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3668
|
+
msgstr ""
|
|
3669
|
+
|
|
3597
3670
|
msgid "Pulpcore"
|
|
3598
3671
|
msgstr ""
|
|
3599
3672
|
|
|
@@ -3733,6 +3806,9 @@ msgstr "有効にする Releasever"
|
|
|
3733
3806
|
msgid "Reload data"
|
|
3734
3807
|
msgstr "データの再ロード"
|
|
3735
3808
|
|
|
3809
|
+
msgid "Remote action:"
|
|
3810
|
+
msgstr ""
|
|
3811
|
+
|
|
3736
3812
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3737
3813
|
msgstr ""
|
|
3738
3814
|
|
|
@@ -3817,6 +3893,9 @@ msgstr "パッケージを削除しています..."
|
|
|
3817
3893
|
msgid "Repo Type"
|
|
3818
3894
|
msgstr ""
|
|
3819
3895
|
|
|
3896
|
+
msgid "Report"
|
|
3897
|
+
msgstr ""
|
|
3898
|
+
|
|
3820
3899
|
# translation auto-copied from project JBoss SOA5.2 DS Metadata Repository Reference Guide, version 5.2, document content/jcr/configuration, author tnagamot
|
|
3821
3900
|
msgid "Repositories"
|
|
3822
3901
|
msgstr "リポジトリー"
|
|
@@ -3894,6 +3973,9 @@ msgstr ""
|
|
|
3894
3973
|
msgid "Resolve Traces"
|
|
3895
3974
|
msgstr ""
|
|
3896
3975
|
|
|
3976
|
+
msgid "Resolve traces for one or more hosts"
|
|
3977
|
+
msgstr ""
|
|
3978
|
+
|
|
3897
3979
|
msgid "Resource"
|
|
3898
3980
|
msgstr ""
|
|
3899
3981
|
|
|
@@ -3973,6 +4055,9 @@ msgstr "yum で直接使用されるリポジトリー GPG キーのコンテン
|
|
|
3973
4055
|
msgid "Role"
|
|
3974
4056
|
msgstr ""
|
|
3975
4057
|
|
|
4058
|
+
msgid "Role of host"
|
|
4059
|
+
msgstr ""
|
|
4060
|
+
|
|
3976
4061
|
msgid "Run Sync Plan:"
|
|
3977
4062
|
msgstr ""
|
|
3978
4063
|
|
|
@@ -4074,6 +4159,9 @@ msgstr "サービスレベル %s"
|
|
|
4074
4159
|
msgid "Service Level (SLA)"
|
|
4075
4160
|
msgstr ""
|
|
4076
4161
|
|
|
4162
|
+
msgid "Service level of host"
|
|
4163
|
+
msgstr ""
|
|
4164
|
+
|
|
4077
4165
|
msgid "Service level to be used for autoheal"
|
|
4078
4166
|
msgstr ""
|
|
4079
4167
|
|
|
@@ -4168,6 +4256,9 @@ msgstr "コンテンツホストに利用可能なリリースを表示"
|
|
|
4168
4256
|
msgid "Show the available repository types"
|
|
4169
4257
|
msgstr ""
|
|
4170
4258
|
|
|
4259
|
+
msgid "Show the export history for a content view version"
|
|
4260
|
+
msgstr ""
|
|
4261
|
+
|
|
4171
4262
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4172
4263
|
msgstr ""
|
|
4173
4264
|
|
|
@@ -4177,6 +4268,12 @@ msgstr "バージョン情報の表示"
|
|
|
4177
4268
|
msgid "Simple Content Access"
|
|
4178
4269
|
msgstr ""
|
|
4179
4270
|
|
|
4271
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4272
|
+
msgstr ""
|
|
4273
|
+
|
|
4274
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4275
|
+
msgstr ""
|
|
4276
|
+
|
|
4180
4277
|
msgid "Size of file to upload"
|
|
4181
4278
|
msgstr ""
|
|
4182
4279
|
|
|
@@ -4421,6 +4518,9 @@ msgstr "1 つ以上の製品の同期"
|
|
|
4421
4518
|
msgid "Sync plan identifier to attach"
|
|
4422
4519
|
msgstr "割り当てる同期プラン ID "
|
|
4423
4520
|
|
|
4521
|
+
msgid "Sync state"
|
|
4522
|
+
msgstr ""
|
|
4523
|
+
|
|
4424
4524
|
msgid "Synced Content"
|
|
4425
4525
|
msgstr ""
|
|
4426
4526
|
|
|
@@ -4530,6 +4630,9 @@ msgstr "以下のホストにはこれらに適用されるエラータがあり
|
|
|
4530
4630
|
msgid "The id of the host to alter"
|
|
4531
4631
|
msgstr ""
|
|
4532
4632
|
|
|
4633
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4634
|
+
msgstr ""
|
|
4635
|
+
|
|
4533
4636
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4534
4637
|
msgstr ""
|
|
4535
4638
|
|
|
@@ -4578,6 +4681,9 @@ msgstr ""
|
|
|
4578
4681
|
msgid "The requested resource does not belong to the specified organization"
|
|
4579
4682
|
msgstr ""
|
|
4580
4683
|
|
|
4684
|
+
msgid "The requested traces were not found for this host"
|
|
4685
|
+
msgstr ""
|
|
4686
|
+
|
|
4581
4687
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4582
4688
|
msgstr ""
|
|
4583
4689
|
|
|
@@ -4641,6 +4747,9 @@ msgstr ""
|
|
|
4641
4747
|
msgid "There's no running synchronization for this smart proxy."
|
|
4642
4748
|
msgstr ""
|
|
4643
4749
|
|
|
4750
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4751
|
+
msgstr ""
|
|
4752
|
+
|
|
4644
4753
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4645
4754
|
msgstr ""
|
|
4646
4755
|
|
|
@@ -4780,10 +4889,13 @@ msgstr ""
|
|
|
4780
4889
|
msgid "Unable to detect puppet path"
|
|
4781
4890
|
msgstr ""
|
|
4782
4891
|
|
|
4783
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4892
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4784
4893
|
msgstr ""
|
|
4785
4894
|
|
|
4786
|
-
msgid "Unable to export
|
|
4895
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4896
|
+
msgstr ""
|
|
4897
|
+
|
|
4898
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4787
4899
|
msgstr ""
|
|
4788
4900
|
|
|
4789
4901
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -4998,6 +5110,12 @@ msgstr ""
|
|
|
4998
5110
|
msgid "Updating Package..."
|
|
4999
5111
|
msgstr "パッケージを更新しています..."
|
|
5000
5112
|
|
|
5113
|
+
msgid "Updating System Purpose for host"
|
|
5114
|
+
msgstr ""
|
|
5115
|
+
|
|
5116
|
+
msgid "Updating System Purpose for host %s"
|
|
5117
|
+
msgstr ""
|
|
5118
|
+
|
|
5001
5119
|
msgid "Updating package group..."
|
|
5002
5120
|
msgstr "パッケージグループを更新しています..."
|
|
5003
5121
|
|
|
@@ -5052,9 +5170,15 @@ msgstr ""
|
|
|
5052
5170
|
msgid "Usage Type"
|
|
5053
5171
|
msgstr ""
|
|
5054
5172
|
|
|
5173
|
+
msgid "Usage of host"
|
|
5174
|
+
msgstr ""
|
|
5175
|
+
|
|
5055
5176
|
msgid "Use remote execution by default"
|
|
5056
5177
|
msgstr ""
|
|
5057
5178
|
|
|
5179
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5180
|
+
msgstr ""
|
|
5181
|
+
|
|
5058
5182
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5059
5183
|
msgstr "ユーザー '%s' は組織 ID を指定しなかったため、デフォルトの組織がありません。"
|
|
5060
5184
|
|
|
@@ -5079,6 +5203,15 @@ msgstr ""
|
|
|
5079
5203
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5080
5204
|
msgstr ""
|
|
5081
5205
|
|
|
5206
|
+
msgid "Verify checksum"
|
|
5207
|
+
msgstr ""
|
|
5208
|
+
|
|
5209
|
+
msgid "Verify checksum for one or more products"
|
|
5210
|
+
msgstr ""
|
|
5211
|
+
|
|
5212
|
+
msgid "Verify checksum of repository contents"
|
|
5213
|
+
msgstr ""
|
|
5214
|
+
|
|
5082
5215
|
msgid "Version"
|
|
5083
5216
|
msgstr ""
|
|
5084
5217
|
|
|
@@ -5096,7 +5229,7 @@ msgstr ""
|
|
|
5096
5229
|
msgid "Virtual"
|
|
5097
5230
|
msgstr "仮想"
|
|
5098
5231
|
|
|
5099
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5232
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5100
5233
|
msgstr ""
|
|
5101
5234
|
|
|
5102
5235
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5165,6 +5298,9 @@ msgstr "組織の parent_id を設定できません。この機能は無効に
|
|
|
5165
5298
|
msgid "You currently don't have any Content Views."
|
|
5166
5299
|
msgstr ""
|
|
5167
5300
|
|
|
5301
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5302
|
+
msgstr ""
|
|
5303
|
+
|
|
5168
5304
|
msgid "You do not have permissions to delete %s"
|
|
5169
5305
|
msgstr "%s を削除するパーミッションがありません。"
|
|
5170
5306
|
|
|
@@ -5580,9 +5716,6 @@ msgstr ""
|
|
|
5580
5716
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5581
5717
|
msgstr ""
|
|
5582
5718
|
|
|
5583
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5584
|
-
msgstr ""
|
|
5585
|
-
|
|
5586
5719
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5587
5720
|
msgstr ""
|
|
5588
5721
|
|
|
@@ -5655,6 +5788,9 @@ msgstr "登録されたコンテンツホストの最大数"
|
|
|
5655
5788
|
msgid "maximum size of each ISO in MB"
|
|
5656
5789
|
msgstr ""
|
|
5657
5790
|
|
|
5791
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5792
|
+
msgstr ""
|
|
5793
|
+
|
|
5658
5794
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5659
5795
|
msgstr ""
|
|
5660
5796
|
|
|
@@ -5933,6 +6069,9 @@ msgstr ""
|
|
|
5933
6069
|
msgid "the uuid of the puppet module to associate"
|
|
5934
6070
|
msgstr "関連付ける Puppet モジュールの UUID"
|
|
5935
6071
|
|
|
6072
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6073
|
+
msgstr ""
|
|
6074
|
+
|
|
5936
6075
|
msgid "true if the latest version of the component's content view is desired"
|
|
5937
6076
|
msgstr ""
|
|
5938
6077
|
|