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/pt/katello.po
CHANGED
@@ -16,6 +16,11 @@ msgstr ""
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
17
17
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18
18
|
|
19
|
+
msgid ""
|
20
|
+
"\n"
|
21
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
22
|
+
msgstr ""
|
23
|
+
|
19
24
|
msgid " %{errata_count} Errata"
|
20
25
|
msgstr ""
|
21
26
|
|
@@ -336,12 +341,18 @@ msgstr ""
|
|
336
341
|
msgid "Action with sub plans"
|
337
342
|
msgstr ""
|
338
343
|
|
344
|
+
msgid "Activation Key(s)"
|
345
|
+
msgstr ""
|
346
|
+
|
339
347
|
msgid "Activation Keys"
|
340
348
|
msgstr ""
|
341
349
|
|
342
350
|
msgid "Activation key ID"
|
343
351
|
msgstr ""
|
344
352
|
|
353
|
+
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."
|
354
|
+
msgstr ""
|
355
|
+
|
345
356
|
msgid "Activation keys and subscriptions can be managed"
|
346
357
|
msgstr ""
|
347
358
|
|
@@ -393,6 +404,9 @@ msgstr ""
|
|
393
404
|
msgid "Adding content units"
|
394
405
|
msgstr ""
|
395
406
|
|
407
|
+
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}"
|
408
|
+
msgstr ""
|
409
|
+
|
396
410
|
msgid "Addons"
|
397
411
|
msgstr ""
|
398
412
|
|
@@ -497,6 +511,9 @@ msgstr ""
|
|
497
511
|
msgid "Artifacts"
|
498
512
|
msgstr ""
|
499
513
|
|
514
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
515
|
+
msgstr ""
|
516
|
+
|
500
517
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
501
518
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
502
519
|
msgstr[0] ""
|
@@ -542,9 +559,6 @@ msgstr ""
|
|
542
559
|
msgid "Author"
|
543
560
|
msgstr ""
|
544
561
|
|
545
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
546
|
-
msgstr ""
|
547
|
-
|
548
562
|
msgid "Auto Publish - Triggered by '%s'"
|
549
563
|
msgstr ""
|
550
564
|
|
@@ -749,6 +763,9 @@ msgstr ""
|
|
749
763
|
msgid "Cannot delete view while it exists in environments"
|
750
764
|
msgstr ""
|
751
765
|
|
766
|
+
msgid "Cannot import a composite content view"
|
767
|
+
msgstr ""
|
768
|
+
|
752
769
|
msgid "Cannot import a custom subscription from a redhat product."
|
753
770
|
msgstr ""
|
754
771
|
|
@@ -803,12 +820,18 @@ msgstr ""
|
|
803
820
|
msgid "Cannot upload Container Image content."
|
804
821
|
msgstr ""
|
805
822
|
|
823
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
824
|
+
msgstr ""
|
825
|
+
|
806
826
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
807
827
|
msgstr ""
|
808
828
|
|
809
829
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
810
830
|
msgstr ""
|
811
831
|
|
832
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
833
|
+
msgstr ""
|
834
|
+
|
812
835
|
msgid "Check services before actions"
|
813
836
|
msgstr ""
|
814
837
|
|
@@ -843,7 +866,7 @@ msgstr ""
|
|
843
866
|
msgid "Combined Profile Update for %s"
|
844
867
|
msgstr ""
|
845
868
|
|
846
|
-
msgid "Comma
|
869
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
847
870
|
msgstr ""
|
848
871
|
|
849
872
|
msgid "Component"
|
@@ -898,10 +921,16 @@ msgstr ""
|
|
898
921
|
msgid "Content Download URL"
|
899
922
|
msgstr ""
|
900
923
|
|
924
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
925
|
+
msgstr ""
|
926
|
+
|
901
927
|
#, fuzzy
|
902
928
|
msgid "Content Hosts"
|
903
929
|
msgstr "Repositórios"
|
904
930
|
|
931
|
+
msgid "Content Migration"
|
932
|
+
msgstr ""
|
933
|
+
|
905
934
|
#, fuzzy
|
906
935
|
msgid "Content Source"
|
907
936
|
msgstr "Repositórios"
|
@@ -951,9 +980,15 @@ msgstr ""
|
|
951
980
|
msgid "Content View Version not set"
|
952
981
|
msgstr ""
|
953
982
|
|
983
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
984
|
+
msgstr ""
|
985
|
+
|
954
986
|
msgid "Content View and Environment not set for registration."
|
955
987
|
msgstr ""
|
956
988
|
|
989
|
+
msgid "Content View id"
|
990
|
+
msgstr ""
|
991
|
+
|
957
992
|
msgid "Content Views"
|
958
993
|
msgstr ""
|
959
994
|
|
@@ -990,6 +1025,9 @@ msgstr ""
|
|
990
1025
|
msgid "Content view numeric identifier"
|
991
1026
|
msgstr ""
|
992
1027
|
|
1028
|
+
msgid "Content view version export history identifier"
|
1029
|
+
msgstr ""
|
1030
|
+
|
993
1031
|
msgid "Content view version identifier"
|
994
1032
|
msgstr ""
|
995
1033
|
|
@@ -1011,10 +1049,10 @@ msgstr ""
|
|
1011
1049
|
msgid "Copy an activation key"
|
1012
1050
|
msgstr ""
|
1013
1051
|
|
1014
|
-
msgid "
|
1052
|
+
msgid "Copy version units to library"
|
1015
1053
|
msgstr ""
|
1016
1054
|
|
1017
|
-
msgid "
|
1055
|
+
msgid "Cores: %s"
|
1018
1056
|
msgstr ""
|
1019
1057
|
|
1020
1058
|
msgid "Could not delete organization '%s'."
|
@@ -1026,6 +1064,12 @@ msgstr ""
|
|
1026
1064
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1027
1065
|
msgstr ""
|
1028
1066
|
|
1067
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1068
|
+
msgstr ""
|
1069
|
+
|
1070
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1071
|
+
msgstr ""
|
1072
|
+
|
1029
1073
|
msgid "Could not find Environment with ids: %s"
|
1030
1074
|
msgstr ""
|
1031
1075
|
|
@@ -1059,9 +1103,6 @@ msgstr ""
|
|
1059
1103
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1060
1104
|
msgstr ""
|
1061
1105
|
|
1062
|
-
msgid "Couldn't find Content Credential '%s'"
|
1063
|
-
msgstr ""
|
1064
|
-
|
1065
1106
|
#, fuzzy
|
1066
1107
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1067
1108
|
msgstr "Não foi possível encontrar modelo '%s'"
|
@@ -1118,13 +1159,6 @@ msgstr "Não foi possível encontrar modelo '%s'"
|
|
1118
1159
|
msgid "Couldn't find errata ids '%s'"
|
1119
1160
|
msgstr "Não foi possível encontrar modelo '%s'"
|
1120
1161
|
|
1121
|
-
#, fuzzy
|
1122
|
-
msgid "Couldn't find gpg key '%s'"
|
1123
|
-
msgstr "Não foi possível encontrar modelo '%s'"
|
1124
|
-
|
1125
|
-
msgid "Couldn't find host '%s'"
|
1126
|
-
msgstr ""
|
1127
|
-
|
1128
1162
|
#, fuzzy
|
1129
1163
|
msgid "Couldn't find host collection '%s'"
|
1130
1164
|
msgstr "Não foi possível encontrar modelo '%s'"
|
@@ -1140,10 +1174,6 @@ msgstr "Não foi possível encontrar modelo '%s'"
|
|
1140
1174
|
msgid "Couldn't find prior-environment '%s'"
|
1141
1175
|
msgstr "Não foi possível encontrar modelo '%s'"
|
1142
1176
|
|
1143
|
-
#, fuzzy
|
1144
|
-
msgid "Couldn't find product '%s'"
|
1145
|
-
msgstr "Não foi possível encontrar modelo '%s'"
|
1146
|
-
|
1147
1177
|
#, fuzzy
|
1148
1178
|
msgid "Couldn't find product with id '%s'"
|
1149
1179
|
msgstr "Não foi possível encontrar modelo '%s'"
|
@@ -1152,28 +1182,12 @@ msgstr "Não foi possível encontrar modelo '%s'"
|
|
1152
1182
|
msgid "Couldn't find repository '%s'"
|
1153
1183
|
msgstr "Não foi possível encontrar modelo '%s'"
|
1154
1184
|
|
1155
|
-
#, fuzzy
|
1156
|
-
msgid "Couldn't find repository set with id '%s'."
|
1157
|
-
msgstr "Não foi possível encontrar modelo '%s'"
|
1158
|
-
|
1159
1185
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1160
1186
|
msgstr ""
|
1161
1187
|
|
1162
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1163
|
-
msgstr ""
|
1164
|
-
|
1165
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1166
|
-
msgstr ""
|
1167
|
-
|
1168
|
-
msgid "Couldn't find ssl client key '%s'"
|
1169
|
-
msgstr ""
|
1170
|
-
|
1171
1188
|
msgid "Couldn't find subject of synchronization"
|
1172
1189
|
msgstr ""
|
1173
1190
|
|
1174
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1175
|
-
msgstr ""
|
1176
|
-
|
1177
1191
|
msgid "Count"
|
1178
1192
|
msgstr ""
|
1179
1193
|
|
@@ -1246,6 +1260,9 @@ msgstr ""
|
|
1246
1260
|
msgid "Current organization not set."
|
1247
1261
|
msgstr ""
|
1248
1262
|
|
1263
|
+
msgid "Custom"
|
1264
|
+
msgstr ""
|
1265
|
+
|
1249
1266
|
#, fuzzy
|
1250
1267
|
msgid "Custom Content Repositories"
|
1251
1268
|
msgstr "Repositórios"
|
@@ -1457,9 +1474,15 @@ msgstr ""
|
|
1457
1474
|
msgid "Description of the repository"
|
1458
1475
|
msgstr ""
|
1459
1476
|
|
1477
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1478
|
+
msgstr ""
|
1479
|
+
|
1460
1480
|
msgid "Desired quantity of the pool"
|
1461
1481
|
msgstr ""
|
1462
1482
|
|
1483
|
+
msgid "Destination Server name"
|
1484
|
+
msgstr ""
|
1485
|
+
|
1463
1486
|
msgid "Destroy"
|
1464
1487
|
msgstr ""
|
1465
1488
|
|
@@ -1513,6 +1536,9 @@ msgstr ""
|
|
1513
1536
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1514
1537
|
msgstr ""
|
1515
1538
|
|
1539
|
+
msgid "Directory containing the exported Content View Version"
|
1540
|
+
msgstr ""
|
1541
|
+
|
1516
1542
|
msgid "Disable"
|
1517
1543
|
msgstr ""
|
1518
1544
|
|
@@ -1528,6 +1554,9 @@ msgstr ""
|
|
1528
1554
|
msgid "Disable simple content access for a manifest"
|
1529
1555
|
msgstr ""
|
1530
1556
|
|
1557
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1558
|
+
msgstr ""
|
1559
|
+
|
1531
1560
|
msgid "Disconnected mode"
|
1532
1561
|
msgstr ""
|
1533
1562
|
|
@@ -1610,6 +1639,9 @@ msgstr ""
|
|
1610
1639
|
msgid "Enabled Repositories"
|
1611
1640
|
msgstr ""
|
1612
1641
|
|
1642
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1643
|
+
msgstr ""
|
1644
|
+
|
1613
1645
|
msgid "End Date"
|
1614
1646
|
msgstr ""
|
1615
1647
|
|
@@ -1715,7 +1747,10 @@ msgstr ""
|
|
1715
1747
|
msgid "Export CSV"
|
1716
1748
|
msgstr ""
|
1717
1749
|
|
1718
|
-
msgid "Export
|
1750
|
+
msgid "Export Library"
|
1751
|
+
msgstr ""
|
1752
|
+
|
1753
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1719
1754
|
msgstr ""
|
1720
1755
|
|
1721
1756
|
msgid "Export a repository"
|
@@ -1724,9 +1759,15 @@ msgstr ""
|
|
1724
1759
|
msgid "Export as CSV"
|
1725
1760
|
msgstr ""
|
1726
1761
|
|
1762
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1763
|
+
msgstr ""
|
1764
|
+
|
1727
1765
|
msgid "Export to ISO format"
|
1728
1766
|
msgstr ""
|
1729
1767
|
|
1768
|
+
msgid "Export to ISO format."
|
1769
|
+
msgstr ""
|
1770
|
+
|
1730
1771
|
msgid "Exported version"
|
1731
1772
|
msgstr ""
|
1732
1773
|
|
@@ -1868,9 +1909,6 @@ msgstr ""
|
|
1868
1909
|
msgid "GPG Key URL"
|
1869
1910
|
msgstr ""
|
1870
1911
|
|
1871
|
-
msgid "GPG Keys"
|
1872
|
-
msgstr ""
|
1873
|
-
|
1874
1912
|
msgid "Generate and Download"
|
1875
1913
|
msgstr ""
|
1876
1914
|
|
@@ -1976,6 +2014,9 @@ msgstr ""
|
|
1976
2014
|
msgid "Host content and subscription details"
|
1977
2015
|
msgstr ""
|
1978
2016
|
|
2017
|
+
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."
|
2018
|
+
msgstr ""
|
2019
|
+
|
1979
2020
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1980
2021
|
msgstr ""
|
1981
2022
|
|
@@ -2000,6 +2041,9 @@ msgstr ""
|
|
2000
2041
|
msgid "Host id to list applicable packages for"
|
2001
2042
|
msgstr ""
|
2002
2043
|
|
2044
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2045
|
+
msgstr ""
|
2046
|
+
|
2003
2047
|
msgid "Host with ID %s already exists in the host collection."
|
2004
2048
|
msgstr ""
|
2005
2049
|
|
@@ -2154,6 +2198,9 @@ msgstr ""
|
|
2154
2198
|
msgid "Identifiers for Lifecycle Environment"
|
2155
2199
|
msgstr ""
|
2156
2200
|
|
2201
|
+
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"
|
2202
|
+
msgstr ""
|
2203
|
+
|
2157
2204
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2158
2205
|
msgstr ""
|
2159
2206
|
|
@@ -2196,6 +2243,15 @@ msgstr ""
|
|
2196
2243
|
msgid "Immediate"
|
2197
2244
|
msgstr ""
|
2198
2245
|
|
2246
|
+
msgid "Import"
|
2247
|
+
msgstr ""
|
2248
|
+
|
2249
|
+
msgid "Import Content View Version"
|
2250
|
+
msgstr ""
|
2251
|
+
|
2252
|
+
msgid "Import Default Content View"
|
2253
|
+
msgstr ""
|
2254
|
+
|
2199
2255
|
msgid "Import Manifest"
|
2200
2256
|
msgstr ""
|
2201
2257
|
|
@@ -2217,12 +2273,27 @@ msgstr ""
|
|
2217
2273
|
msgid "Import a Manifest using the manifest tab above."
|
2218
2274
|
msgstr ""
|
2219
2275
|
|
2276
|
+
msgid "Import a content view version"
|
2277
|
+
msgstr ""
|
2278
|
+
|
2279
|
+
msgid "Import a content view version to the library"
|
2280
|
+
msgstr ""
|
2281
|
+
|
2220
2282
|
msgid "Import facts"
|
2221
2283
|
msgstr ""
|
2222
2284
|
|
2223
2285
|
msgid "Import uploads into a repository"
|
2224
2286
|
msgstr ""
|
2225
2287
|
|
2288
|
+
msgid "Import-only can not be changed after creation"
|
2289
|
+
msgstr ""
|
2290
|
+
|
2291
|
+
msgid "Import-only content views can not be published directly"
|
2292
|
+
msgstr ""
|
2293
|
+
|
2294
|
+
msgid "Import-only content views will be available in a future version."
|
2295
|
+
msgstr ""
|
2296
|
+
|
2226
2297
|
msgid "Importing manifest into '%{subject}' failed."
|
2227
2298
|
msgstr ""
|
2228
2299
|
|
@@ -2394,6 +2465,9 @@ msgstr ""
|
|
2394
2465
|
msgid "Invalid params provided - date_type must be one of %s"
|
2395
2466
|
msgstr ""
|
2396
2467
|
|
2468
|
+
msgid "Invalid path specified."
|
2469
|
+
msgstr ""
|
2470
|
+
|
2397
2471
|
msgid ""
|
2398
2472
|
"Invalid puppet module parameters specified. \\\n"
|
2399
2473
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2402,6 +2476,12 @@ msgstr ""
|
|
2402
2476
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2403
2477
|
msgstr ""
|
2404
2478
|
|
2479
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2480
|
+
msgstr ""
|
2481
|
+
|
2482
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2483
|
+
msgstr ""
|
2484
|
+
|
2405
2485
|
msgid "Invalid value specified for Container Image repositories."
|
2406
2486
|
msgstr ""
|
2407
2487
|
|
@@ -2411,6 +2491,9 @@ msgstr ""
|
|
2411
2491
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2412
2492
|
msgstr ""
|
2413
2493
|
|
2494
|
+
msgid "Katello"
|
2495
|
+
msgstr ""
|
2496
|
+
|
2414
2497
|
msgid "Katello ID of local pool to update"
|
2415
2498
|
msgstr ""
|
2416
2499
|
|
@@ -2471,9 +2554,6 @@ msgstr ""
|
|
2471
2554
|
msgid "Learn more about adding Subscription Manifests"
|
2472
2555
|
msgstr ""
|
2473
2556
|
|
2474
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2475
|
-
msgstr ""
|
2476
|
-
|
2477
2557
|
msgid "Library lifecycle environments may not be deleted."
|
2478
2558
|
msgstr ""
|
2479
2559
|
|
@@ -2577,6 +2657,9 @@ msgstr ""
|
|
2577
2657
|
msgid "List errata available for the content host"
|
2578
2658
|
msgstr ""
|
2579
2659
|
|
2660
|
+
msgid "List export histories"
|
2661
|
+
msgstr ""
|
2662
|
+
|
2580
2663
|
msgid "List filter rules"
|
2581
2664
|
msgstr ""
|
2582
2665
|
|
@@ -2734,6 +2817,9 @@ msgstr ""
|
|
2734
2817
|
msgid "List srpms"
|
2735
2818
|
msgstr ""
|
2736
2819
|
|
2820
|
+
msgid "List subscriptions"
|
2821
|
+
msgstr ""
|
2822
|
+
|
2737
2823
|
msgid "List sync plans"
|
2738
2824
|
msgstr ""
|
2739
2825
|
|
@@ -2821,6 +2907,9 @@ msgstr ""
|
|
2821
2907
|
msgid "Messaging connection"
|
2822
2908
|
msgstr ""
|
2823
2909
|
|
2910
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2911
|
+
msgstr ""
|
2912
|
+
|
2824
2913
|
msgid "Mismatched"
|
2825
2914
|
msgstr ""
|
2826
2915
|
|
@@ -2952,6 +3041,9 @@ msgstr ""
|
|
2952
3041
|
msgid "No errors"
|
2953
3042
|
msgstr ""
|
2954
3043
|
|
3044
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3045
|
+
msgstr ""
|
3046
|
+
|
2955
3047
|
msgid "No file uploaded"
|
2956
3048
|
msgstr ""
|
2957
3049
|
|
@@ -2964,12 +3056,18 @@ msgstr ""
|
|
2964
3056
|
msgid "No hosts registered with subscription-manager found in selection."
|
2965
3057
|
msgstr ""
|
2966
3058
|
|
3059
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3060
|
+
msgstr ""
|
3061
|
+
|
2967
3062
|
msgid "No manifest file uploaded"
|
2968
3063
|
msgstr ""
|
2969
3064
|
|
2970
3065
|
msgid "No matching content views found"
|
2971
3066
|
msgstr ""
|
2972
3067
|
|
3068
|
+
msgid "No matching repositories found"
|
3069
|
+
msgstr ""
|
3070
|
+
|
2973
3071
|
msgid "No new packages installed"
|
2974
3072
|
msgstr ""
|
2975
3073
|
|
@@ -3105,6 +3203,9 @@ msgstr ""
|
|
3105
3203
|
msgid "On-disk location for exported repositories"
|
3106
3204
|
msgstr ""
|
3107
3205
|
|
3206
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3207
|
+
msgstr ""
|
3208
|
+
|
3108
3209
|
msgid "One of parameters [ %s ] required but not specified."
|
3109
3210
|
msgstr ""
|
3110
3211
|
|
@@ -3135,6 +3236,9 @@ msgstr ""
|
|
3135
3236
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3136
3237
|
msgstr ""
|
3137
3238
|
|
3239
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3240
|
+
msgstr ""
|
3241
|
+
|
3138
3242
|
msgid "Organization"
|
3139
3243
|
msgstr ""
|
3140
3244
|
|
@@ -3365,6 +3469,18 @@ msgstr ""
|
|
3365
3469
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3366
3470
|
msgstr ""
|
3367
3471
|
|
3472
|
+
msgid "Performs a full-export of a content view version."
|
3473
|
+
msgstr ""
|
3474
|
+
|
3475
|
+
msgid "Performs a full-export of the repositories in library."
|
3476
|
+
msgstr ""
|
3477
|
+
|
3478
|
+
msgid "Performs an incremental-export of a content view version."
|
3479
|
+
msgstr ""
|
3480
|
+
|
3481
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3482
|
+
msgstr ""
|
3483
|
+
|
3368
3484
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3369
3485
|
msgstr ""
|
3370
3486
|
|
@@ -3374,6 +3490,9 @@ msgstr ""
|
|
3374
3490
|
msgid "Plan numeric identifier"
|
3375
3491
|
msgstr ""
|
3376
3492
|
|
3493
|
+
msgid "Please add some repositories."
|
3494
|
+
msgstr ""
|
3495
|
+
|
3377
3496
|
msgid "Please enter a positive number above zero"
|
3378
3497
|
msgstr ""
|
3379
3498
|
|
@@ -3401,6 +3520,9 @@ msgstr ""
|
|
3401
3520
|
msgid "Please select one from the list below and you will be redirected."
|
3402
3521
|
msgstr ""
|
3403
3522
|
|
3523
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3524
|
+
msgstr ""
|
3525
|
+
|
3404
3526
|
msgid "Processing metadata"
|
3405
3527
|
msgstr ""
|
3406
3528
|
|
@@ -3509,6 +3631,9 @@ msgstr ""
|
|
3509
3631
|
msgid "Pulp"
|
3510
3632
|
msgstr ""
|
3511
3633
|
|
3634
|
+
msgid "Pulp 3 export destination filepath"
|
3635
|
+
msgstr ""
|
3636
|
+
|
3512
3637
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3513
3638
|
msgstr ""
|
3514
3639
|
|
@@ -3563,6 +3688,12 @@ msgstr ""
|
|
3563
3688
|
msgid "Pulp task error"
|
3564
3689
|
msgstr ""
|
3565
3690
|
|
3691
|
+
msgid "Pulp user or group unable to read '%s'."
|
3692
|
+
msgstr ""
|
3693
|
+
|
3694
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3695
|
+
msgstr ""
|
3696
|
+
|
3566
3697
|
msgid "Pulpcore"
|
3567
3698
|
msgstr ""
|
3568
3699
|
|
@@ -3639,6 +3770,9 @@ msgstr ""
|
|
3639
3770
|
msgid "Recommended Repositories"
|
3640
3771
|
msgstr ""
|
3641
3772
|
|
3773
|
+
msgid "Red Hat"
|
3774
|
+
msgstr ""
|
3775
|
+
|
3642
3776
|
msgid "Red Hat CDN URL"
|
3643
3777
|
msgstr ""
|
3644
3778
|
|
@@ -3865,6 +3999,9 @@ msgstr ""
|
|
3865
3999
|
msgid "Resolve Traces"
|
3866
4000
|
msgstr ""
|
3867
4001
|
|
4002
|
+
msgid "Resolve traces for one or more hosts"
|
4003
|
+
msgstr ""
|
4004
|
+
|
3868
4005
|
msgid "Resource"
|
3869
4006
|
msgstr ""
|
3870
4007
|
|
@@ -3943,6 +4080,9 @@ msgstr ""
|
|
3943
4080
|
msgid "Role"
|
3944
4081
|
msgstr ""
|
3945
4082
|
|
4083
|
+
msgid "Role of host"
|
4084
|
+
msgstr ""
|
4085
|
+
|
3946
4086
|
msgid "Run Sync Plan:"
|
3947
4087
|
msgstr ""
|
3948
4088
|
|
@@ -4042,6 +4182,9 @@ msgstr ""
|
|
4042
4182
|
msgid "Service Level (SLA)"
|
4043
4183
|
msgstr ""
|
4044
4184
|
|
4185
|
+
msgid "Service level of host"
|
4186
|
+
msgstr ""
|
4187
|
+
|
4045
4188
|
msgid "Service level to be used for autoheal"
|
4046
4189
|
msgstr ""
|
4047
4190
|
|
@@ -4147,6 +4290,15 @@ msgstr ""
|
|
4147
4290
|
msgid "Simple Content Access"
|
4148
4291
|
msgstr ""
|
4149
4292
|
|
4293
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4294
|
+
msgstr ""
|
4295
|
+
|
4296
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4297
|
+
msgstr ""
|
4298
|
+
|
4299
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4300
|
+
msgstr ""
|
4301
|
+
|
4150
4302
|
msgid "Size of file to upload"
|
4151
4303
|
msgstr ""
|
4152
4304
|
|
@@ -4180,6 +4332,9 @@ msgstr ""
|
|
4180
4332
|
msgid "Specify the list of units in each repo"
|
4181
4333
|
msgstr ""
|
4182
4334
|
|
4335
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4336
|
+
msgstr ""
|
4337
|
+
|
4183
4338
|
msgid "Stacking ID"
|
4184
4339
|
msgstr ""
|
4185
4340
|
|
@@ -4383,6 +4538,9 @@ msgstr ""
|
|
4383
4538
|
msgid "Sync plan identifier to attach"
|
4384
4539
|
msgstr ""
|
4385
4540
|
|
4541
|
+
msgid "Sync state"
|
4542
|
+
msgstr ""
|
4543
|
+
|
4386
4544
|
msgid "Synced Content"
|
4387
4545
|
msgstr ""
|
4388
4546
|
|
@@ -4444,6 +4602,9 @@ msgstr ""
|
|
4444
4602
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4445
4603
|
msgstr ""
|
4446
4604
|
|
4605
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4606
|
+
msgstr ""
|
4607
|
+
|
4447
4608
|
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."
|
4448
4609
|
msgstr ""
|
4449
4610
|
|
@@ -4483,15 +4644,26 @@ msgstr ""
|
|
4483
4644
|
msgid "The erratum type must be an array. Invalid value provided"
|
4484
4645
|
msgstr ""
|
4485
4646
|
|
4647
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4648
|
+
msgstr ""
|
4649
|
+
|
4486
4650
|
msgid "The field to sort the data by. Defaults to the created date."
|
4487
4651
|
msgstr ""
|
4488
4652
|
|
4489
4653
|
msgid "The following hosts have errata that apply to them: "
|
4490
4654
|
msgstr ""
|
4491
4655
|
|
4656
|
+
msgid ""
|
4657
|
+
"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"
|
4658
|
+
" %{repos}"
|
4659
|
+
msgstr ""
|
4660
|
+
|
4492
4661
|
msgid "The id of the host to alter"
|
4493
4662
|
msgstr ""
|
4494
4663
|
|
4664
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4665
|
+
msgstr ""
|
4666
|
+
|
4495
4667
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4496
4668
|
msgstr ""
|
4497
4669
|
|
@@ -4540,6 +4712,9 @@ msgstr ""
|
|
4540
4712
|
msgid "The requested resource does not belong to the specified organization"
|
4541
4713
|
msgstr ""
|
4542
4714
|
|
4715
|
+
msgid "The requested traces were not found for this host"
|
4716
|
+
msgstr ""
|
4717
|
+
|
4543
4718
|
msgid "The selected content source and lifecycle environment do not match"
|
4544
4719
|
msgstr ""
|
4545
4720
|
|
@@ -4602,6 +4777,9 @@ msgstr ""
|
|
4602
4777
|
msgid "There's no running synchronization for this smart proxy."
|
4603
4778
|
msgstr ""
|
4604
4779
|
|
4780
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4781
|
+
msgstr ""
|
4782
|
+
|
4605
4783
|
msgid "This Host is not currently registered with subscription-manager."
|
4606
4784
|
msgstr ""
|
4607
4785
|
|
@@ -4611,6 +4789,9 @@ msgstr ""
|
|
4611
4789
|
msgid "This action doesn't support package groups"
|
4612
4790
|
msgstr ""
|
4613
4791
|
|
4792
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4793
|
+
msgstr ""
|
4794
|
+
|
4614
4795
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4615
4796
|
msgstr ""
|
4616
4797
|
|
@@ -4740,10 +4921,16 @@ msgstr ""
|
|
4740
4921
|
msgid "Unable to detect puppet path"
|
4741
4922
|
msgstr ""
|
4742
4923
|
|
4743
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4924
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4744
4925
|
msgstr ""
|
4745
4926
|
|
4746
|
-
msgid "Unable to export
|
4927
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4928
|
+
msgstr ""
|
4929
|
+
|
4930
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4931
|
+
msgstr ""
|
4932
|
+
|
4933
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4747
4934
|
msgstr ""
|
4748
4935
|
|
4749
4936
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4959,6 +5146,12 @@ msgstr ""
|
|
4959
5146
|
msgid "Updating Package..."
|
4960
5147
|
msgstr ""
|
4961
5148
|
|
5149
|
+
msgid "Updating System Purpose for host"
|
5150
|
+
msgstr ""
|
5151
|
+
|
5152
|
+
msgid "Updating System Purpose for host %s"
|
5153
|
+
msgstr ""
|
5154
|
+
|
4962
5155
|
msgid "Updating package group..."
|
4963
5156
|
msgstr ""
|
4964
5157
|
|
@@ -5013,9 +5206,15 @@ msgstr ""
|
|
5013
5206
|
msgid "Usage Type"
|
5014
5207
|
msgstr ""
|
5015
5208
|
|
5209
|
+
msgid "Usage of host"
|
5210
|
+
msgstr ""
|
5211
|
+
|
5016
5212
|
msgid "Use remote execution by default"
|
5017
5213
|
msgstr ""
|
5018
5214
|
|
5215
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5216
|
+
msgstr ""
|
5217
|
+
|
5019
5218
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5020
5219
|
msgstr ""
|
5021
5220
|
|
@@ -5040,6 +5239,15 @@ msgstr ""
|
|
5040
5239
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5041
5240
|
msgstr ""
|
5042
5241
|
|
5242
|
+
msgid "Verify checksum"
|
5243
|
+
msgstr ""
|
5244
|
+
|
5245
|
+
msgid "Verify checksum for one or more products"
|
5246
|
+
msgstr ""
|
5247
|
+
|
5248
|
+
msgid "Verify checksum of repository contents"
|
5249
|
+
msgstr ""
|
5250
|
+
|
5043
5251
|
msgid "Version"
|
5044
5252
|
msgstr ""
|
5045
5253
|
|
@@ -5055,7 +5263,7 @@ msgstr ""
|
|
5055
5263
|
msgid "Virtual"
|
5056
5264
|
msgstr ""
|
5057
5265
|
|
5058
|
-
msgid "When Simple Content Access is enabled, hosts
|
5266
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5059
5267
|
msgstr ""
|
5060
5268
|
|
5061
5269
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5124,6 +5332,9 @@ msgstr ""
|
|
5124
5332
|
msgid "You currently don't have any Content Views."
|
5125
5333
|
msgstr ""
|
5126
5334
|
|
5335
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5336
|
+
msgstr ""
|
5337
|
+
|
5127
5338
|
msgid "You do not have permissions to delete %s"
|
5128
5339
|
msgstr ""
|
5129
5340
|
|
@@ -5230,6 +5441,9 @@ msgstr ""
|
|
5230
5441
|
msgid "an ostree branch"
|
5231
5442
|
msgstr ""
|
5232
5443
|
|
5444
|
+
msgid "are only allowed for Yum repositories."
|
5445
|
+
msgstr ""
|
5446
|
+
|
5233
5447
|
msgid "attempted to sync without a feed URL"
|
5234
5448
|
msgstr ""
|
5235
5449
|
|
@@ -5248,6 +5462,9 @@ msgstr ""
|
|
5248
5462
|
msgid "can't be blank"
|
5249
5463
|
msgstr ""
|
5250
5464
|
|
5465
|
+
msgid "cannot add filter to import-only view"
|
5466
|
+
msgstr ""
|
5467
|
+
|
5251
5468
|
msgid "cannot be a binary file."
|
5252
5469
|
msgstr ""
|
5253
5470
|
|
@@ -5302,13 +5519,13 @@ msgstr ""
|
|
5302
5519
|
msgid "checking Pulp task status"
|
5303
5520
|
msgstr ""
|
5304
5521
|
|
5305
|
-
msgid "comma
|
5522
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5306
5523
|
msgstr ""
|
5307
5524
|
|
5308
|
-
msgid "comma
|
5525
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5309
5526
|
msgstr ""
|
5310
5527
|
|
5311
|
-
msgid "comma
|
5528
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5312
5529
|
msgstr ""
|
5313
5530
|
|
5314
5531
|
msgid "composite content view identifier"
|
@@ -5540,9 +5757,6 @@ msgstr ""
|
|
5540
5757
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5541
5758
|
msgstr ""
|
5542
5759
|
|
5543
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5544
|
-
msgstr ""
|
5545
|
-
|
5546
5760
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5547
5761
|
msgstr ""
|
5548
5762
|
|
@@ -5576,6 +5790,9 @@ msgstr ""
|
|
5576
5790
|
msgid "invalid container image name"
|
5577
5791
|
msgstr ""
|
5578
5792
|
|
5793
|
+
msgid "invalid: Repositories can only require one OS version."
|
5794
|
+
msgstr ""
|
5795
|
+
|
5579
5796
|
msgid "is already attached to the capsule"
|
5580
5797
|
msgstr ""
|
5581
5798
|
|
@@ -5616,6 +5833,9 @@ msgstr ""
|
|
5616
5833
|
msgid "maximum size of each ISO in MB"
|
5617
5834
|
msgstr ""
|
5618
5835
|
|
5836
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5837
|
+
msgstr ""
|
5838
|
+
|
5619
5839
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5620
5840
|
msgstr ""
|
5621
5841
|
|
@@ -5637,6 +5857,9 @@ msgstr ""
|
|
5637
5857
|
msgid "must be one of the following: %s"
|
5638
5858
|
msgstr ""
|
5639
5859
|
|
5860
|
+
msgid "must be one of: %s"
|
5861
|
+
msgstr ""
|
5862
|
+
|
5640
5863
|
msgid "must be unique within one organization"
|
5641
5864
|
msgstr ""
|
5642
5865
|
|
@@ -5897,6 +6120,9 @@ msgstr ""
|
|
5897
6120
|
msgid "the uuid of the puppet module to associate"
|
5898
6121
|
msgstr ""
|
5899
6122
|
|
6123
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6124
|
+
msgstr ""
|
6125
|
+
|
5900
6126
|
msgid "true if the latest version of the component's content view is desired"
|
5901
6127
|
msgstr ""
|
5902
6128
|
|