katello 3.17.0 → 3.18.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
- data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_controller.rb +9 -9
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
- data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +9 -9
- data/app/lib/actions/katello/content_view_version/import.rb +8 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
- data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +4 -1
- data/app/lib/actions/katello/repository/remove_content.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +3 -1
- data/app/lib/actions/katello/repository/update.rb +5 -1
- data/app/lib/actions/katello/repository/upload_files.rb +1 -0
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
- data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
- data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
- data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
- data/app/lib/actions/pulp3/content_migration.rb +10 -0
- data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/import_migration.rb +6 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
- data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/content_view_filter.rb +15 -0
- data/app/models/katello/authorization/content_view_version.rb +25 -2
- data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/organization.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
- data/app/models/katello/content_migration_progress.rb +4 -0
- data/app/models/katello/content_view.rb +30 -4
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_filter.rb +5 -0
- data/app/models/katello/content_view_history.rb +2 -1
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/content_view_puppet_module.rb +8 -0
- data/app/models/katello/content_view_repository.rb +13 -1
- data/app/models/katello/content_view_version_export_history.rb +8 -1
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/ping.rb +8 -3
- data/app/models/katello/repository.rb +33 -0
- data/app/models/katello/root_repository.rb +26 -1
- data/app/models/katello/smart_proxy_sync_history.rb +8 -0
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/api/docker.rb +4 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
- data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/docker_manifest.rb +1 -0
- data/app/services/katello/pulp3/docker_tag.rb +1 -0
- data/app/services/katello/pulp3/migration.rb +51 -10
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository.rb +10 -4
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +9 -0
- data/app/services/katello/pulp3/repository/yum.rb +14 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +4 -0
- data/app/services/katello/pulp3/task_group.rb +4 -0
- data/app/services/katello/repository_type.rb +2 -1
- data/app/services/katello/smart_proxy_helper.rb +9 -0
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/foreman/hosts/_registration.html.erb +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/katello/layouts/react.html.erb +3 -2
- data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +24 -2
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
- data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +2 -0
- data/lib/katello/permission_creator.rb +98 -69
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +10 -2
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_migration.rake +17 -3
- data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +51 -44
- data/locale/bn/katello.po +279 -55
- data/locale/cs/katello.po +278 -51
- data/locale/de/katello.po +279 -52
- data/locale/en/katello.po +278 -49
- data/locale/es/katello.po +279 -51
- data/locale/fr/katello.po +279 -51
- data/locale/gu/katello.po +279 -55
- data/locale/hi/katello.po +279 -55
- data/locale/it/katello.po +279 -51
- data/locale/ja/katello.po +279 -52
- data/locale/katello.pot +1379 -971
- data/locale/kn/katello.po +279 -55
- data/locale/ko/katello.po +279 -51
- data/locale/mr/katello.po +279 -55
- data/locale/or/katello.po +279 -55
- data/locale/pa/katello.po +279 -55
- data/locale/pt/katello.po +278 -52
- data/locale/pt_BR/katello.po +279 -51
- data/locale/ru/katello.po +279 -51
- data/locale/ta/katello.po +279 -55
- data/locale/te/katello.po +279 -55
- data/locale/zh_CN/katello.po +279 -51
- data/locale/zh_TW/katello.po +279 -52
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
- metadata +74 -13
- data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
data/locale/ja/katello.po
CHANGED
@@ -31,6 +31,11 @@ msgstr ""
|
|
31
31
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
32
32
|
"X-Generator: Zanata 3.6.0\n"
|
33
33
|
|
34
|
+
msgid ""
|
35
|
+
"\n"
|
36
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
37
|
+
msgstr ""
|
38
|
+
|
34
39
|
msgid " %{errata_count} Errata"
|
35
40
|
msgstr ""
|
36
41
|
|
@@ -352,12 +357,18 @@ msgstr ""
|
|
352
357
|
msgid "Action with sub plans"
|
353
358
|
msgstr ""
|
354
359
|
|
360
|
+
msgid "Activation Key(s)"
|
361
|
+
msgstr ""
|
362
|
+
|
355
363
|
msgid "Activation Keys"
|
356
364
|
msgstr "アクティベーションキー"
|
357
365
|
|
358
366
|
msgid "Activation key ID"
|
359
367
|
msgstr "アクティベーションキー ID"
|
360
368
|
|
369
|
+
msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
370
|
+
msgstr ""
|
371
|
+
|
361
372
|
msgid "Activation keys and subscriptions can be managed"
|
362
373
|
msgstr "アクティベーションキーとサブスクリプションを管理できます"
|
363
374
|
|
@@ -409,6 +420,9 @@ msgstr "追加されたコンテンツ:"
|
|
409
420
|
msgid "Adding content units"
|
410
421
|
msgstr ""
|
411
422
|
|
423
|
+
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}"
|
424
|
+
msgstr ""
|
425
|
+
|
412
426
|
msgid "Addons"
|
413
427
|
msgstr ""
|
414
428
|
|
@@ -513,6 +527,9 @@ msgstr ""
|
|
513
527
|
msgid "Artifacts"
|
514
528
|
msgstr ""
|
515
529
|
|
530
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
531
|
+
msgstr ""
|
532
|
+
|
516
533
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
517
534
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
518
535
|
msgstr[0] "%{taxonomy_single} のない %{count} ホストの %{taxonomy_name} への割り当て"
|
@@ -558,9 +575,6 @@ msgstr ""
|
|
558
575
|
msgid "Author"
|
559
576
|
msgstr ""
|
560
577
|
|
561
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
562
|
-
msgstr ""
|
563
|
-
|
564
578
|
msgid "Auto Publish - Triggered by '%s'"
|
565
579
|
msgstr ""
|
566
580
|
|
@@ -773,6 +787,9 @@ msgstr ""
|
|
773
787
|
msgid "Cannot delete view while it exists in environments"
|
774
788
|
msgstr "ビューは環境に存在するため、削除することができません"
|
775
789
|
|
790
|
+
msgid "Cannot import a composite content view"
|
791
|
+
msgstr ""
|
792
|
+
|
776
793
|
msgid "Cannot import a custom subscription from a redhat product."
|
777
794
|
msgstr ""
|
778
795
|
|
@@ -827,12 +844,18 @@ msgstr ""
|
|
827
844
|
msgid "Cannot upload Container Image content."
|
828
845
|
msgstr ""
|
829
846
|
|
847
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
848
|
+
msgstr ""
|
849
|
+
|
830
850
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
831
851
|
msgstr ""
|
832
852
|
|
833
853
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
834
854
|
msgstr ""
|
835
855
|
|
856
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
857
|
+
msgstr ""
|
858
|
+
|
836
859
|
msgid "Check services before actions"
|
837
860
|
msgstr ""
|
838
861
|
|
@@ -868,7 +891,7 @@ msgstr ""
|
|
868
891
|
msgid "Combined Profile Update for %s"
|
869
892
|
msgstr ""
|
870
893
|
|
871
|
-
msgid "Comma
|
894
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
872
895
|
msgstr ""
|
873
896
|
|
874
897
|
# translation auto-copied from project RHELOSP Deploying Enterprise Env, version 5.0, document topics/Orchestration_-_Heat_Technical_Preview
|
@@ -924,9 +947,15 @@ msgstr ""
|
|
924
947
|
msgid "Content Download URL"
|
925
948
|
msgstr ""
|
926
949
|
|
950
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
951
|
+
msgstr ""
|
952
|
+
|
927
953
|
msgid "Content Hosts"
|
928
954
|
msgstr "コンテンツホスト"
|
929
955
|
|
956
|
+
msgid "Content Migration"
|
957
|
+
msgstr ""
|
958
|
+
|
930
959
|
msgid "Content Source"
|
931
960
|
msgstr "コンテンツソース"
|
932
961
|
|
@@ -978,9 +1007,15 @@ msgstr ""
|
|
978
1007
|
msgid "Content View Version not set"
|
979
1008
|
msgstr ""
|
980
1009
|
|
1010
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1011
|
+
msgstr ""
|
1012
|
+
|
981
1013
|
msgid "Content View and Environment not set for registration."
|
982
1014
|
msgstr ""
|
983
1015
|
|
1016
|
+
msgid "Content View id"
|
1017
|
+
msgstr ""
|
1018
|
+
|
984
1019
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author asasaki
|
985
1020
|
msgid "Content Views"
|
986
1021
|
msgstr "コンテンツビュー"
|
@@ -1019,6 +1054,9 @@ msgstr "コンテンツビューラベル"
|
|
1019
1054
|
msgid "Content view numeric identifier"
|
1020
1055
|
msgstr "コンテンツビューの数値 ID"
|
1021
1056
|
|
1057
|
+
msgid "Content view version export history identifier"
|
1058
|
+
msgstr ""
|
1059
|
+
|
1022
1060
|
msgid "Content view version identifier"
|
1023
1061
|
msgstr "コンテンツビューのバージョン ID"
|
1024
1062
|
|
@@ -1040,12 +1078,12 @@ msgstr ""
|
|
1040
1078
|
msgid "Copy an activation key"
|
1041
1079
|
msgstr "アクティベーションキーのコピー"
|
1042
1080
|
|
1081
|
+
msgid "Copy version units to library"
|
1082
|
+
msgstr ""
|
1083
|
+
|
1043
1084
|
msgid "Cores: %s"
|
1044
1085
|
msgstr "コア: %s"
|
1045
1086
|
|
1046
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1047
|
-
msgstr ""
|
1048
|
-
|
1049
1087
|
msgid "Could not delete organization '%s'."
|
1050
1088
|
msgstr "組織 '%s' を削除できませんでした。"
|
1051
1089
|
|
@@ -1055,6 +1093,12 @@ msgstr "リポジトリーに ID '%{id}' の %{content} が見つかりませ
|
|
1055
1093
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1056
1094
|
msgstr ""
|
1057
1095
|
|
1096
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1097
|
+
msgstr ""
|
1098
|
+
|
1099
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1100
|
+
msgstr ""
|
1101
|
+
|
1058
1102
|
msgid "Could not find Environment with ids: %s"
|
1059
1103
|
msgstr "以下の ID の環境が見つかりませんでした: %s"
|
1060
1104
|
|
@@ -1088,9 +1132,6 @@ msgstr ""
|
|
1088
1132
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1089
1133
|
msgstr "ID %{id} の %{type} フィルターが見つかりませんでした"
|
1090
1134
|
|
1091
|
-
msgid "Couldn't find Content Credential '%s'"
|
1092
|
-
msgstr ""
|
1093
|
-
|
1094
1135
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1095
1136
|
msgstr "id=%s のコンテンツビューフィルターは見つかりませんでした"
|
1096
1137
|
|
@@ -1138,12 +1179,6 @@ msgstr "環境 '%s' が見つかりませんでした"
|
|
1138
1179
|
msgid "Couldn't find errata ids '%s'"
|
1139
1180
|
msgstr "エラータ ID '%s' が見つかりませんでした"
|
1140
1181
|
|
1141
|
-
msgid "Couldn't find gpg key '%s'"
|
1142
|
-
msgstr "GPG キー '%s' が見つかりませんでした"
|
1143
|
-
|
1144
|
-
msgid "Couldn't find host '%s'"
|
1145
|
-
msgstr ""
|
1146
|
-
|
1147
1182
|
msgid "Couldn't find host collection '%s'"
|
1148
1183
|
msgstr "ホストコレクション '%s' が見つかりませんでした"
|
1149
1184
|
|
@@ -1156,9 +1191,6 @@ msgstr "組織 '%s' が見つかりませんでした"
|
|
1156
1191
|
msgid "Couldn't find prior-environment '%s'"
|
1157
1192
|
msgstr "事前の環境 '%s' が見つかりませんでした"
|
1158
1193
|
|
1159
|
-
msgid "Couldn't find product '%s'"
|
1160
|
-
msgstr "製品 '%s' が見つかりませんでした"
|
1161
|
-
|
1162
1194
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author nnakakit
|
1163
1195
|
msgid "Couldn't find product with id '%s'"
|
1164
1196
|
msgstr "ID '%s' の製品が見つかりませんでした"
|
@@ -1167,28 +1199,12 @@ msgstr "ID '%s' の製品が見つかりませんでした"
|
|
1167
1199
|
msgid "Couldn't find repository '%s'"
|
1168
1200
|
msgstr "リポジトリー '%s' が見つかりませんでした"
|
1169
1201
|
|
1170
|
-
msgid "Couldn't find repository set with id '%s'."
|
1171
|
-
msgstr "ID '%s' のリポジトリーが見つかりませんでした。"
|
1172
|
-
|
1173
1202
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1174
1203
|
msgstr ""
|
1175
1204
|
|
1176
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1177
|
-
msgstr ""
|
1178
|
-
|
1179
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1180
|
-
msgstr ""
|
1181
|
-
|
1182
|
-
msgid "Couldn't find ssl client key '%s'"
|
1183
|
-
msgstr ""
|
1184
|
-
|
1185
1205
|
msgid "Couldn't find subject of synchronization"
|
1186
1206
|
msgstr "同期の件名が見つかりませんでした"
|
1187
1207
|
|
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
1208
|
msgid "Count"
|
1193
1209
|
msgstr ""
|
1194
1210
|
|
@@ -1259,6 +1275,9 @@ msgstr ""
|
|
1259
1275
|
msgid "Current organization not set."
|
1260
1276
|
msgstr ""
|
1261
1277
|
|
1278
|
+
msgid "Custom"
|
1279
|
+
msgstr ""
|
1280
|
+
|
1262
1281
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author noriko
|
1263
1282
|
msgid "Custom Content Repositories"
|
1264
1283
|
msgstr "カスタムコンテンツリポジトリー"
|
@@ -1468,9 +1487,15 @@ msgstr "新規に公開されたコンテンツビューバージョンの説明
|
|
1468
1487
|
msgid "Description of the repository"
|
1469
1488
|
msgstr ""
|
1470
1489
|
|
1490
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1491
|
+
msgstr ""
|
1492
|
+
|
1471
1493
|
msgid "Desired quantity of the pool"
|
1472
1494
|
msgstr ""
|
1473
1495
|
|
1496
|
+
msgid "Destination Server name"
|
1497
|
+
msgstr ""
|
1498
|
+
|
1474
1499
|
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1475
1500
|
msgid "Destroy"
|
1476
1501
|
msgstr "破棄"
|
@@ -1523,6 +1548,9 @@ msgstr "詳細"
|
|
1523
1548
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1524
1549
|
msgstr ""
|
1525
1550
|
|
1551
|
+
msgid "Directory containing the exported Content View Version"
|
1552
|
+
msgstr ""
|
1553
|
+
|
1526
1554
|
msgid "Disable"
|
1527
1555
|
msgstr "無効"
|
1528
1556
|
|
@@ -1538,6 +1566,9 @@ msgstr ""
|
|
1538
1566
|
msgid "Disable simple content access for a manifest"
|
1539
1567
|
msgstr ""
|
1540
1568
|
|
1569
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1570
|
+
msgstr ""
|
1571
|
+
|
1541
1572
|
msgid "Disconnected mode"
|
1542
1573
|
msgstr ""
|
1543
1574
|
|
@@ -1622,6 +1653,9 @@ msgstr ""
|
|
1622
1653
|
msgid "Enabled Repositories"
|
1623
1654
|
msgstr ""
|
1624
1655
|
|
1656
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1657
|
+
msgstr ""
|
1658
|
+
|
1625
1659
|
msgid "End Date"
|
1626
1660
|
msgstr ""
|
1627
1661
|
|
@@ -1733,7 +1767,10 @@ msgstr ""
|
|
1733
1767
|
msgid "Export CSV"
|
1734
1768
|
msgstr ""
|
1735
1769
|
|
1736
|
-
msgid "Export
|
1770
|
+
msgid "Export Library"
|
1771
|
+
msgstr ""
|
1772
|
+
|
1773
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1737
1774
|
msgstr ""
|
1738
1775
|
|
1739
1776
|
msgid "Export a repository"
|
@@ -1742,9 +1779,15 @@ msgstr ""
|
|
1742
1779
|
msgid "Export as CSV"
|
1743
1780
|
msgstr ""
|
1744
1781
|
|
1782
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1783
|
+
msgstr ""
|
1784
|
+
|
1745
1785
|
msgid "Export to ISO format"
|
1746
1786
|
msgstr ""
|
1747
1787
|
|
1788
|
+
msgid "Export to ISO format."
|
1789
|
+
msgstr ""
|
1790
|
+
|
1748
1791
|
msgid "Exported version"
|
1749
1792
|
msgstr ""
|
1750
1793
|
|
@@ -1884,10 +1927,6 @@ msgstr ""
|
|
1884
1927
|
msgid "GPG Key URL"
|
1885
1928
|
msgstr ""
|
1886
1929
|
|
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
1930
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author kmoriguc
|
1892
1931
|
msgid "Generate and Download"
|
1893
1932
|
msgstr "生成してダウンロード"
|
@@ -1995,6 +2034,9 @@ msgstr "ホストコレクションは空です。"
|
|
1995
2034
|
msgid "Host content and subscription details"
|
1996
2035
|
msgstr "ホストコレクションおよびサブスクリプションの詳細"
|
1997
2036
|
|
2037
|
+
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."
|
2038
|
+
msgstr ""
|
2039
|
+
|
1998
2040
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1999
2041
|
msgstr ""
|
2000
2042
|
|
@@ -2019,6 +2061,9 @@ msgstr ""
|
|
2019
2061
|
msgid "Host id to list applicable packages for"
|
2020
2062
|
msgstr ""
|
2021
2063
|
|
2064
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2065
|
+
msgstr ""
|
2066
|
+
|
2022
2067
|
msgid "Host with ID %s already exists in the host collection."
|
2023
2068
|
msgstr ""
|
2024
2069
|
|
@@ -2172,6 +2217,9 @@ msgstr ""
|
|
2172
2217
|
msgid "Identifiers for Lifecycle Environment"
|
2173
2218
|
msgstr ""
|
2174
2219
|
|
2220
|
+
msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
|
2221
|
+
msgstr ""
|
2222
|
+
|
2175
2223
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2176
2224
|
msgstr ""
|
2177
2225
|
|
@@ -2214,6 +2262,15 @@ msgstr ""
|
|
2214
2262
|
msgid "Immediate"
|
2215
2263
|
msgstr ""
|
2216
2264
|
|
2265
|
+
msgid "Import"
|
2266
|
+
msgstr ""
|
2267
|
+
|
2268
|
+
msgid "Import Content View Version"
|
2269
|
+
msgstr ""
|
2270
|
+
|
2271
|
+
msgid "Import Default Content View"
|
2272
|
+
msgstr ""
|
2273
|
+
|
2217
2274
|
msgid "Import Manifest"
|
2218
2275
|
msgstr "マニフェストのインポート"
|
2219
2276
|
|
@@ -2235,12 +2292,27 @@ msgstr ""
|
|
2235
2292
|
msgid "Import a Manifest using the manifest tab above."
|
2236
2293
|
msgstr ""
|
2237
2294
|
|
2295
|
+
msgid "Import a content view version"
|
2296
|
+
msgstr ""
|
2297
|
+
|
2298
|
+
msgid "Import a content view version to the library"
|
2299
|
+
msgstr ""
|
2300
|
+
|
2238
2301
|
msgid "Import facts"
|
2239
2302
|
msgstr "ファクトのインポート"
|
2240
2303
|
|
2241
2304
|
msgid "Import uploads into a repository"
|
2242
2305
|
msgstr "アップロードをリポジトリーにインポート"
|
2243
2306
|
|
2307
|
+
msgid "Import-only can not be changed after creation"
|
2308
|
+
msgstr ""
|
2309
|
+
|
2310
|
+
msgid "Import-only content views can not be published directly"
|
2311
|
+
msgstr ""
|
2312
|
+
|
2313
|
+
msgid "Import-only content views will be available in a future version."
|
2314
|
+
msgstr ""
|
2315
|
+
|
2244
2316
|
msgid "Importing manifest into '%{subject}' failed."
|
2245
2317
|
msgstr ""
|
2246
2318
|
|
@@ -2416,6 +2488,9 @@ msgstr ""
|
|
2416
2488
|
msgid "Invalid params provided - date_type must be one of %s"
|
2417
2489
|
msgstr ""
|
2418
2490
|
|
2491
|
+
msgid "Invalid path specified."
|
2492
|
+
msgstr ""
|
2493
|
+
|
2419
2494
|
msgid ""
|
2420
2495
|
"Invalid puppet module parameters specified. \\\n"
|
2421
2496
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2424,6 +2499,12 @@ msgstr ""
|
|
2424
2499
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2425
2500
|
msgstr "無効な puppet モジュールです。puppet モジュールに metadata.json ファイルが含まれており、正常に圧縮されていることを確認してください。"
|
2426
2501
|
|
2502
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2503
|
+
msgstr ""
|
2504
|
+
|
2505
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2506
|
+
msgstr ""
|
2507
|
+
|
2427
2508
|
msgid "Invalid value specified for Container Image repositories."
|
2428
2509
|
msgstr ""
|
2429
2510
|
|
@@ -2433,6 +2514,9 @@ msgstr ""
|
|
2433
2514
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2434
2515
|
msgstr ""
|
2435
2516
|
|
2517
|
+
msgid "Katello"
|
2518
|
+
msgstr ""
|
2519
|
+
|
2436
2520
|
msgid "Katello ID of local pool to update"
|
2437
2521
|
msgstr ""
|
2438
2522
|
|
@@ -2493,9 +2577,6 @@ msgstr ""
|
|
2493
2577
|
msgid "Learn more about adding Subscription Manifests"
|
2494
2578
|
msgstr ""
|
2495
2579
|
|
2496
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2497
|
-
msgstr ""
|
2498
|
-
|
2499
2580
|
msgid "Library lifecycle environments may not be deleted."
|
2500
2581
|
msgstr "ライブラリーのライフサイクル環境は削除できません。"
|
2501
2582
|
|
@@ -2597,6 +2678,9 @@ msgstr "エラータを一覧表示"
|
|
2597
2678
|
msgid "List errata available for the content host"
|
2598
2679
|
msgstr "コンテンツホストに利用可能なエラータを一覧表示"
|
2599
2680
|
|
2681
|
+
msgid "List export histories"
|
2682
|
+
msgstr ""
|
2683
|
+
|
2600
2684
|
msgid "List filter rules"
|
2601
2685
|
msgstr "フィルタールールを一覧表示"
|
2602
2686
|
|
@@ -2750,6 +2834,9 @@ msgstr ""
|
|
2750
2834
|
msgid "List srpms"
|
2751
2835
|
msgstr ""
|
2752
2836
|
|
2837
|
+
msgid "List subscriptions"
|
2838
|
+
msgstr ""
|
2839
|
+
|
2753
2840
|
msgid "List sync plans"
|
2754
2841
|
msgstr "同期プランの一覧表示"
|
2755
2842
|
|
@@ -2838,6 +2925,9 @@ msgstr "メッセージ"
|
|
2838
2925
|
msgid "Messaging connection"
|
2839
2926
|
msgstr ""
|
2840
2927
|
|
2928
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2929
|
+
msgstr ""
|
2930
|
+
|
2841
2931
|
msgid "Mismatched"
|
2842
2932
|
msgstr ""
|
2843
2933
|
|
@@ -2970,6 +3060,9 @@ msgstr ""
|
|
2970
3060
|
msgid "No errors"
|
2971
3061
|
msgstr "エラーはありません"
|
2972
3062
|
|
3063
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3064
|
+
msgstr ""
|
3065
|
+
|
2973
3066
|
msgid "No file uploaded"
|
2974
3067
|
msgstr "ファイルがアップロードされていません"
|
2975
3068
|
|
@@ -2982,12 +3075,18 @@ msgstr ""
|
|
2982
3075
|
msgid "No hosts registered with subscription-manager found in selection."
|
2983
3076
|
msgstr ""
|
2984
3077
|
|
3078
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3079
|
+
msgstr ""
|
3080
|
+
|
2985
3081
|
msgid "No manifest file uploaded"
|
2986
3082
|
msgstr "マニフェストファイルがアップロードされていません"
|
2987
3083
|
|
2988
3084
|
msgid "No matching content views found"
|
2989
3085
|
msgstr ""
|
2990
3086
|
|
3087
|
+
msgid "No matching repositories found"
|
3088
|
+
msgstr ""
|
3089
|
+
|
2991
3090
|
msgid "No new packages installed"
|
2992
3091
|
msgstr "インストール済みの新規パッケージはありません"
|
2993
3092
|
|
@@ -3123,6 +3222,9 @@ msgstr ""
|
|
3123
3222
|
msgid "On-disk location for exported repositories"
|
3124
3223
|
msgstr ""
|
3125
3224
|
|
3225
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3226
|
+
msgstr ""
|
3227
|
+
|
3126
3228
|
msgid "One of parameters [ %s ] required but not specified."
|
3127
3229
|
msgstr "[ %s ] パラメーターのいずれかが必要ですが、指定されていません。"
|
3128
3230
|
|
@@ -3154,6 +3256,9 @@ msgstr "演算子"
|
|
3154
3256
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3155
3257
|
msgstr ""
|
3156
3258
|
|
3259
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3260
|
+
msgstr ""
|
3261
|
+
|
3157
3262
|
msgid "Organization"
|
3158
3263
|
msgstr "組織"
|
3159
3264
|
|
@@ -3397,6 +3502,18 @@ msgstr ""
|
|
3397
3502
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3398
3503
|
msgstr "1 つ以上のコンテンツビューバージョンで増分更新を実行"
|
3399
3504
|
|
3505
|
+
msgid "Performs a full-export of a content view version."
|
3506
|
+
msgstr ""
|
3507
|
+
|
3508
|
+
msgid "Performs a full-export of the repositories in library."
|
3509
|
+
msgstr ""
|
3510
|
+
|
3511
|
+
msgid "Performs an incremental-export of a content view version."
|
3512
|
+
msgstr ""
|
3513
|
+
|
3514
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3515
|
+
msgstr ""
|
3516
|
+
|
3400
3517
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3401
3518
|
msgstr "パーミッションが拒否されました。ユーザー '%{user}' には組織 '%{org}' にアクセスするパーミッションがありません。"
|
3402
3519
|
|
@@ -3407,6 +3524,9 @@ msgstr "物理"
|
|
3407
3524
|
msgid "Plan numeric identifier"
|
3408
3525
|
msgstr "プランの数値 ID"
|
3409
3526
|
|
3527
|
+
msgid "Please add some repositories."
|
3528
|
+
msgstr ""
|
3529
|
+
|
3410
3530
|
msgid "Please enter a positive number above zero"
|
3411
3531
|
msgstr ""
|
3412
3532
|
|
@@ -3434,6 +3554,9 @@ msgstr ""
|
|
3434
3554
|
msgid "Please select one from the list below and you will be redirected."
|
3435
3555
|
msgstr ""
|
3436
3556
|
|
3557
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3558
|
+
msgstr ""
|
3559
|
+
|
3437
3560
|
msgid "Processing metadata"
|
3438
3561
|
msgstr "メタデータの処理中"
|
3439
3562
|
|
@@ -3540,6 +3663,9 @@ msgstr ""
|
|
3540
3663
|
msgid "Pulp"
|
3541
3664
|
msgstr ""
|
3542
3665
|
|
3666
|
+
msgid "Pulp 3 export destination filepath"
|
3667
|
+
msgstr ""
|
3668
|
+
|
3543
3669
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3544
3670
|
msgstr ""
|
3545
3671
|
|
@@ -3594,6 +3720,12 @@ msgstr ""
|
|
3594
3720
|
msgid "Pulp task error"
|
3595
3721
|
msgstr "Pulp タスクのエラー"
|
3596
3722
|
|
3723
|
+
msgid "Pulp user or group unable to read '%s'."
|
3724
|
+
msgstr ""
|
3725
|
+
|
3726
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3727
|
+
msgstr ""
|
3728
|
+
|
3597
3729
|
msgid "Pulpcore"
|
3598
3730
|
msgstr ""
|
3599
3731
|
|
@@ -3672,6 +3804,9 @@ msgstr ""
|
|
3672
3804
|
msgid "Recommended Repositories"
|
3673
3805
|
msgstr ""
|
3674
3806
|
|
3807
|
+
msgid "Red Hat"
|
3808
|
+
msgstr ""
|
3809
|
+
|
3675
3810
|
msgid "Red Hat CDN URL"
|
3676
3811
|
msgstr "Red Hat CDN URL"
|
3677
3812
|
|
@@ -3894,6 +4029,9 @@ msgstr ""
|
|
3894
4029
|
msgid "Resolve Traces"
|
3895
4030
|
msgstr ""
|
3896
4031
|
|
4032
|
+
msgid "Resolve traces for one or more hosts"
|
4033
|
+
msgstr ""
|
4034
|
+
|
3897
4035
|
msgid "Resource"
|
3898
4036
|
msgstr ""
|
3899
4037
|
|
@@ -3973,6 +4111,9 @@ msgstr "yum で直接使用されるリポジトリー GPG キーのコンテン
|
|
3973
4111
|
msgid "Role"
|
3974
4112
|
msgstr ""
|
3975
4113
|
|
4114
|
+
msgid "Role of host"
|
4115
|
+
msgstr ""
|
4116
|
+
|
3976
4117
|
msgid "Run Sync Plan:"
|
3977
4118
|
msgstr ""
|
3978
4119
|
|
@@ -4074,6 +4215,9 @@ msgstr "サービスレベル %s"
|
|
4074
4215
|
msgid "Service Level (SLA)"
|
4075
4216
|
msgstr ""
|
4076
4217
|
|
4218
|
+
msgid "Service level of host"
|
4219
|
+
msgstr ""
|
4220
|
+
|
4077
4221
|
msgid "Service level to be used for autoheal"
|
4078
4222
|
msgstr ""
|
4079
4223
|
|
@@ -4177,6 +4321,15 @@ msgstr "バージョン情報の表示"
|
|
4177
4321
|
msgid "Simple Content Access"
|
4178
4322
|
msgstr ""
|
4179
4323
|
|
4324
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4325
|
+
msgstr ""
|
4326
|
+
|
4327
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4328
|
+
msgstr ""
|
4329
|
+
|
4330
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4331
|
+
msgstr ""
|
4332
|
+
|
4180
4333
|
msgid "Size of file to upload"
|
4181
4334
|
msgstr ""
|
4182
4335
|
|
@@ -4211,6 +4364,9 @@ msgstr ""
|
|
4211
4364
|
msgid "Specify the list of units in each repo"
|
4212
4365
|
msgstr ""
|
4213
4366
|
|
4367
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4368
|
+
msgstr ""
|
4369
|
+
|
4214
4370
|
msgid "Stacking ID"
|
4215
4371
|
msgstr ""
|
4216
4372
|
|
@@ -4421,6 +4577,9 @@ msgstr "1 つ以上の製品の同期"
|
|
4421
4577
|
msgid "Sync plan identifier to attach"
|
4422
4578
|
msgstr "割り当てる同期プラン ID "
|
4423
4579
|
|
4580
|
+
msgid "Sync state"
|
4581
|
+
msgstr ""
|
4582
|
+
|
4424
4583
|
msgid "Synced Content"
|
4425
4584
|
msgstr ""
|
4426
4585
|
|
@@ -4482,6 +4641,9 @@ msgstr "'%s' 環境には変更セットを含めることができません!"
|
|
4482
4641
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4483
4642
|
msgstr ""
|
4484
4643
|
|
4644
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4645
|
+
msgstr ""
|
4646
|
+
|
4485
4647
|
msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
|
4486
4648
|
msgstr ""
|
4487
4649
|
|
@@ -4521,15 +4683,26 @@ msgstr "エラータフィルタールールの開始日は無効な形式また
|
|
4521
4683
|
msgid "The erratum type must be an array. Invalid value provided"
|
4522
4684
|
msgstr "エラータタイプは配列でなくてはなりません。無効な値が指定されました"
|
4523
4685
|
|
4686
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4687
|
+
msgstr ""
|
4688
|
+
|
4524
4689
|
msgid "The field to sort the data by. Defaults to the created date."
|
4525
4690
|
msgstr ""
|
4526
4691
|
|
4527
4692
|
msgid "The following hosts have errata that apply to them: "
|
4528
4693
|
msgstr "以下のホストにはこれらに適用されるエラータがあります:"
|
4529
4694
|
|
4695
|
+
msgid ""
|
4696
|
+
"The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
|
4697
|
+
" %{repos}"
|
4698
|
+
msgstr ""
|
4699
|
+
|
4530
4700
|
msgid "The id of the host to alter"
|
4531
4701
|
msgstr ""
|
4532
4702
|
|
4703
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4704
|
+
msgstr ""
|
4705
|
+
|
4533
4706
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4534
4707
|
msgstr ""
|
4535
4708
|
|
@@ -4578,6 +4751,9 @@ msgstr ""
|
|
4578
4751
|
msgid "The requested resource does not belong to the specified organization"
|
4579
4752
|
msgstr ""
|
4580
4753
|
|
4754
|
+
msgid "The requested traces were not found for this host"
|
4755
|
+
msgstr ""
|
4756
|
+
|
4581
4757
|
msgid "The selected content source and lifecycle environment do not match"
|
4582
4758
|
msgstr ""
|
4583
4759
|
|
@@ -4641,6 +4817,9 @@ msgstr ""
|
|
4641
4817
|
msgid "There's no running synchronization for this smart proxy."
|
4642
4818
|
msgstr ""
|
4643
4819
|
|
4820
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4821
|
+
msgstr ""
|
4822
|
+
|
4644
4823
|
msgid "This Host is not currently registered with subscription-manager."
|
4645
4824
|
msgstr ""
|
4646
4825
|
|
@@ -4650,6 +4829,9 @@ msgstr ""
|
|
4650
4829
|
msgid "This action doesn't support package groups"
|
4651
4830
|
msgstr ""
|
4652
4831
|
|
4832
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4833
|
+
msgstr ""
|
4834
|
+
|
4653
4835
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4654
4836
|
msgstr "この証明書により、ユーザーはすべての環境のリポジトリーをブラウザーから閲覧できます。"
|
4655
4837
|
|
@@ -4780,10 +4962,16 @@ msgstr ""
|
|
4780
4962
|
msgid "Unable to detect puppet path"
|
4781
4963
|
msgstr ""
|
4782
4964
|
|
4783
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4965
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4784
4966
|
msgstr ""
|
4785
4967
|
|
4786
|
-
msgid "Unable to export
|
4968
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4969
|
+
msgstr ""
|
4970
|
+
|
4971
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4972
|
+
msgstr ""
|
4973
|
+
|
4974
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4787
4975
|
msgstr ""
|
4788
4976
|
|
4789
4977
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4998,6 +5186,12 @@ msgstr ""
|
|
4998
5186
|
msgid "Updating Package..."
|
4999
5187
|
msgstr "パッケージを更新しています..."
|
5000
5188
|
|
5189
|
+
msgid "Updating System Purpose for host"
|
5190
|
+
msgstr ""
|
5191
|
+
|
5192
|
+
msgid "Updating System Purpose for host %s"
|
5193
|
+
msgstr ""
|
5194
|
+
|
5001
5195
|
msgid "Updating package group..."
|
5002
5196
|
msgstr "パッケージグループを更新しています..."
|
5003
5197
|
|
@@ -5052,9 +5246,15 @@ msgstr ""
|
|
5052
5246
|
msgid "Usage Type"
|
5053
5247
|
msgstr ""
|
5054
5248
|
|
5249
|
+
msgid "Usage of host"
|
5250
|
+
msgstr ""
|
5251
|
+
|
5055
5252
|
msgid "Use remote execution by default"
|
5056
5253
|
msgstr ""
|
5057
5254
|
|
5255
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5256
|
+
msgstr ""
|
5257
|
+
|
5058
5258
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5059
5259
|
msgstr "ユーザー '%s' は組織 ID を指定しなかったため、デフォルトの組織がありません。"
|
5060
5260
|
|
@@ -5079,6 +5279,15 @@ msgstr ""
|
|
5079
5279
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5080
5280
|
msgstr ""
|
5081
5281
|
|
5282
|
+
msgid "Verify checksum"
|
5283
|
+
msgstr ""
|
5284
|
+
|
5285
|
+
msgid "Verify checksum for one or more products"
|
5286
|
+
msgstr ""
|
5287
|
+
|
5288
|
+
msgid "Verify checksum of repository contents"
|
5289
|
+
msgstr ""
|
5290
|
+
|
5082
5291
|
msgid "Version"
|
5083
5292
|
msgstr ""
|
5084
5293
|
|
@@ -5096,7 +5305,7 @@ msgstr ""
|
|
5096
5305
|
msgid "Virtual"
|
5097
5306
|
msgstr "仮想"
|
5098
5307
|
|
5099
|
-
msgid "When Simple Content Access is enabled, hosts
|
5308
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5100
5309
|
msgstr ""
|
5101
5310
|
|
5102
5311
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5165,6 +5374,9 @@ msgstr "組織の parent_id を設定できません。この機能は無効に
|
|
5165
5374
|
msgid "You currently don't have any Content Views."
|
5166
5375
|
msgstr ""
|
5167
5376
|
|
5377
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5378
|
+
msgstr ""
|
5379
|
+
|
5168
5380
|
msgid "You do not have permissions to delete %s"
|
5169
5381
|
msgstr "%s を削除するパーミッションがありません。"
|
5170
5382
|
|
@@ -5270,6 +5482,9 @@ msgstr "組織"
|
|
5270
5482
|
msgid "an ostree branch"
|
5271
5483
|
msgstr ""
|
5272
5484
|
|
5485
|
+
msgid "are only allowed for Yum repositories."
|
5486
|
+
msgstr ""
|
5487
|
+
|
5273
5488
|
msgid "attempted to sync without a feed URL"
|
5274
5489
|
msgstr ""
|
5275
5490
|
|
@@ -5288,6 +5503,9 @@ msgstr ""
|
|
5288
5503
|
msgid "can't be blank"
|
5289
5504
|
msgstr "空白にしないでください。"
|
5290
5505
|
|
5506
|
+
msgid "cannot add filter to import-only view"
|
5507
|
+
msgstr ""
|
5508
|
+
|
5291
5509
|
msgid "cannot be a binary file."
|
5292
5510
|
msgstr "バイナリーファイルは指定できません。"
|
5293
5511
|
|
@@ -5343,13 +5561,13 @@ msgstr ""
|
|
5343
5561
|
msgid "checking Pulp task status"
|
5344
5562
|
msgstr ""
|
5345
5563
|
|
5346
|
-
msgid "comma
|
5564
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5347
5565
|
msgstr ""
|
5348
5566
|
|
5349
|
-
msgid "comma
|
5567
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5350
5568
|
msgstr ""
|
5351
5569
|
|
5352
|
-
msgid "comma
|
5570
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5353
5571
|
msgstr ""
|
5354
5572
|
|
5355
5573
|
msgid "composite content view identifier"
|
@@ -5580,9 +5798,6 @@ msgstr ""
|
|
5580
5798
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5581
5799
|
msgstr ""
|
5582
5800
|
|
5583
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5584
|
-
msgstr ""
|
5585
|
-
|
5586
5801
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5587
5802
|
msgstr ""
|
5588
5803
|
|
@@ -5616,6 +5831,9 @@ msgstr ""
|
|
5616
5831
|
msgid "invalid container image name"
|
5617
5832
|
msgstr ""
|
5618
5833
|
|
5834
|
+
msgid "invalid: Repositories can only require one OS version."
|
5835
|
+
msgstr ""
|
5836
|
+
|
5619
5837
|
msgid "is already attached to the capsule"
|
5620
5838
|
msgstr "Capsule にすでに割り当て済み"
|
5621
5839
|
|
@@ -5655,6 +5873,9 @@ msgstr "登録されたコンテンツホストの最大数"
|
|
5655
5873
|
msgid "maximum size of each ISO in MB"
|
5656
5874
|
msgstr ""
|
5657
5875
|
|
5876
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5877
|
+
msgstr ""
|
5878
|
+
|
5658
5879
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5659
5880
|
msgstr ""
|
5660
5881
|
|
@@ -5677,6 +5898,9 @@ msgstr "正の整数値でなければなりません。"
|
|
5677
5898
|
msgid "must be one of the following: %s"
|
5678
5899
|
msgstr "以下のいずれかでなければなりません: %s"
|
5679
5900
|
|
5901
|
+
msgid "must be one of: %s"
|
5902
|
+
msgstr ""
|
5903
|
+
|
5680
5904
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author nnakakit
|
5681
5905
|
msgid "must be unique within one organization"
|
5682
5906
|
msgstr "1 つの組織内で一意である必要があります"
|
@@ -5933,6 +6157,9 @@ msgstr ""
|
|
5933
6157
|
msgid "the uuid of the puppet module to associate"
|
5934
6158
|
msgstr "関連付ける Puppet モジュールの UUID"
|
5935
6159
|
|
6160
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6161
|
+
msgstr ""
|
6162
|
+
|
5936
6163
|
msgid "true if the latest version of the component's content view is desired"
|
5937
6164
|
msgstr ""
|
5938
6165
|
|