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/cs/katello.po
CHANGED
@@ -18,6 +18,11 @@ msgstr ""
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
20
20
|
|
21
|
+
msgid ""
|
22
|
+
"\n"
|
23
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
24
|
+
msgstr ""
|
25
|
+
|
21
26
|
msgid " %{errata_count} Errata"
|
22
27
|
msgstr ""
|
23
28
|
|
@@ -361,6 +366,9 @@ msgstr ""
|
|
361
366
|
msgid "Action with sub plans"
|
362
367
|
msgstr ""
|
363
368
|
|
369
|
+
msgid "Activation Key(s)"
|
370
|
+
msgstr ""
|
371
|
+
|
364
372
|
msgid "Activation Keys"
|
365
373
|
msgstr "Aktivační klíče"
|
366
374
|
|
@@ -368,6 +376,9 @@ msgstr "Aktivační klíče"
|
|
368
376
|
msgid "Activation key ID"
|
369
377
|
msgstr "Aktivační klíče"
|
370
378
|
|
379
|
+
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."
|
380
|
+
msgstr ""
|
381
|
+
|
371
382
|
msgid "Activation keys and subscriptions can be managed"
|
372
383
|
msgstr ""
|
373
384
|
|
@@ -420,6 +431,9 @@ msgstr ""
|
|
420
431
|
msgid "Adding content units"
|
421
432
|
msgstr ""
|
422
433
|
|
434
|
+
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}"
|
435
|
+
msgstr ""
|
436
|
+
|
423
437
|
msgid "Addons"
|
424
438
|
msgstr ""
|
425
439
|
|
@@ -524,6 +538,9 @@ msgstr ""
|
|
524
538
|
msgid "Artifacts"
|
525
539
|
msgstr ""
|
526
540
|
|
541
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
542
|
+
msgstr ""
|
543
|
+
|
527
544
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
528
545
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
529
546
|
msgstr[0] ""
|
@@ -570,9 +587,6 @@ msgstr ""
|
|
570
587
|
msgid "Author"
|
571
588
|
msgstr ""
|
572
589
|
|
573
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
574
|
-
msgstr ""
|
575
|
-
|
576
590
|
msgid "Auto Publish - Triggered by '%s'"
|
577
591
|
msgstr ""
|
578
592
|
|
@@ -781,6 +795,9 @@ msgstr ""
|
|
781
795
|
msgid "Cannot delete view while it exists in environments"
|
782
796
|
msgstr ""
|
783
797
|
|
798
|
+
msgid "Cannot import a composite content view"
|
799
|
+
msgstr ""
|
800
|
+
|
784
801
|
msgid "Cannot import a custom subscription from a redhat product."
|
785
802
|
msgstr ""
|
786
803
|
|
@@ -835,12 +852,18 @@ msgstr ""
|
|
835
852
|
msgid "Cannot upload Container Image content."
|
836
853
|
msgstr ""
|
837
854
|
|
855
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
856
|
+
msgstr ""
|
857
|
+
|
838
858
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
839
859
|
msgstr ""
|
840
860
|
|
841
861
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
842
862
|
msgstr ""
|
843
863
|
|
864
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
865
|
+
msgstr ""
|
866
|
+
|
844
867
|
msgid "Check services before actions"
|
845
868
|
msgstr ""
|
846
869
|
|
@@ -874,7 +897,7 @@ msgstr ""
|
|
874
897
|
msgid "Combined Profile Update for %s"
|
875
898
|
msgstr ""
|
876
899
|
|
877
|
-
msgid "Comma
|
900
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
878
901
|
msgstr ""
|
879
902
|
|
880
903
|
msgid "Component"
|
@@ -930,10 +953,16 @@ msgstr ""
|
|
930
953
|
msgid "Content Download URL"
|
931
954
|
msgstr ""
|
932
955
|
|
956
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
957
|
+
msgstr ""
|
958
|
+
|
933
959
|
#, fuzzy
|
934
960
|
msgid "Content Hosts"
|
935
961
|
msgstr "Vyhledat obsah"
|
936
962
|
|
963
|
+
msgid "Content Migration"
|
964
|
+
msgstr ""
|
965
|
+
|
937
966
|
#, fuzzy
|
938
967
|
msgid "Content Source"
|
939
968
|
msgstr "Vyhledat obsah"
|
@@ -985,9 +1014,15 @@ msgstr ""
|
|
985
1014
|
msgid "Content View Version not set"
|
986
1015
|
msgstr ""
|
987
1016
|
|
1017
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1018
|
+
msgstr ""
|
1019
|
+
|
988
1020
|
msgid "Content View and Environment not set for registration."
|
989
1021
|
msgstr ""
|
990
1022
|
|
1023
|
+
msgid "Content View id"
|
1024
|
+
msgstr ""
|
1025
|
+
|
991
1026
|
#, fuzzy
|
992
1027
|
msgid "Content Views"
|
993
1028
|
msgstr "Vyhledat obsah"
|
@@ -1027,6 +1062,9 @@ msgstr "Vyhledat obsah"
|
|
1027
1062
|
msgid "Content view numeric identifier"
|
1028
1063
|
msgstr ""
|
1029
1064
|
|
1065
|
+
msgid "Content view version export history identifier"
|
1066
|
+
msgstr ""
|
1067
|
+
|
1030
1068
|
msgid "Content view version identifier"
|
1031
1069
|
msgstr ""
|
1032
1070
|
|
@@ -1049,10 +1087,10 @@ msgstr ""
|
|
1049
1087
|
msgid "Copy an activation key"
|
1050
1088
|
msgstr "Číst aktivační klíče"
|
1051
1089
|
|
1052
|
-
msgid "
|
1090
|
+
msgid "Copy version units to library"
|
1053
1091
|
msgstr ""
|
1054
1092
|
|
1055
|
-
msgid "
|
1093
|
+
msgid "Cores: %s"
|
1056
1094
|
msgstr ""
|
1057
1095
|
|
1058
1096
|
#, fuzzy
|
@@ -1065,6 +1103,12 @@ msgstr ""
|
|
1065
1103
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1066
1104
|
msgstr ""
|
1067
1105
|
|
1106
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1107
|
+
msgstr ""
|
1108
|
+
|
1109
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1110
|
+
msgstr ""
|
1111
|
+
|
1068
1112
|
msgid "Could not find Environment with ids: %s"
|
1069
1113
|
msgstr ""
|
1070
1114
|
|
@@ -1098,9 +1142,6 @@ msgstr ""
|
|
1098
1142
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1099
1143
|
msgstr ""
|
1100
1144
|
|
1101
|
-
msgid "Couldn't find Content Credential '%s'"
|
1102
|
-
msgstr ""
|
1103
|
-
|
1104
1145
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1105
1146
|
msgstr ""
|
1106
1147
|
|
@@ -1149,12 +1190,6 @@ msgstr "prostředí"
|
|
1149
1190
|
msgid "Couldn't find errata ids '%s'"
|
1150
1191
|
msgstr "Smazat organizaci"
|
1151
1192
|
|
1152
|
-
msgid "Couldn't find gpg key '%s'"
|
1153
|
-
msgstr ""
|
1154
|
-
|
1155
|
-
msgid "Couldn't find host '%s'"
|
1156
|
-
msgstr ""
|
1157
|
-
|
1158
1193
|
#, fuzzy
|
1159
1194
|
msgid "Couldn't find host collection '%s'"
|
1160
1195
|
msgstr "Smazat organizaci"
|
@@ -1169,37 +1204,18 @@ msgstr "Smazat organizaci"
|
|
1169
1204
|
msgid "Couldn't find prior-environment '%s'"
|
1170
1205
|
msgstr ""
|
1171
1206
|
|
1172
|
-
#, fuzzy
|
1173
|
-
msgid "Couldn't find product '%s'"
|
1174
|
-
msgstr "Smazán poskytovatel [%s]"
|
1175
|
-
|
1176
1207
|
msgid "Couldn't find product with id '%s'"
|
1177
1208
|
msgstr ""
|
1178
1209
|
|
1179
1210
|
msgid "Couldn't find repository '%s'"
|
1180
1211
|
msgstr ""
|
1181
1212
|
|
1182
|
-
msgid "Couldn't find repository set with id '%s'."
|
1183
|
-
msgstr ""
|
1184
|
-
|
1185
1213
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1186
1214
|
msgstr ""
|
1187
1215
|
|
1188
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1189
|
-
msgstr ""
|
1190
|
-
|
1191
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1192
|
-
msgstr ""
|
1193
|
-
|
1194
|
-
msgid "Couldn't find ssl client key '%s'"
|
1195
|
-
msgstr ""
|
1196
|
-
|
1197
1216
|
msgid "Couldn't find subject of synchronization"
|
1198
1217
|
msgstr ""
|
1199
1218
|
|
1200
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1201
|
-
msgstr ""
|
1202
|
-
|
1203
1219
|
msgid "Count"
|
1204
1220
|
msgstr ""
|
1205
1221
|
|
@@ -1274,6 +1290,9 @@ msgstr ""
|
|
1274
1290
|
msgid "Current organization not set."
|
1275
1291
|
msgstr ""
|
1276
1292
|
|
1293
|
+
msgid "Custom"
|
1294
|
+
msgstr ""
|
1295
|
+
|
1277
1296
|
#, fuzzy
|
1278
1297
|
msgid "Custom Content Repositories"
|
1279
1298
|
msgstr "Repozitáře"
|
@@ -1490,9 +1509,15 @@ msgstr ""
|
|
1490
1509
|
msgid "Description of the repository"
|
1491
1510
|
msgstr ""
|
1492
1511
|
|
1512
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1513
|
+
msgstr ""
|
1514
|
+
|
1493
1515
|
msgid "Desired quantity of the pool"
|
1494
1516
|
msgstr ""
|
1495
1517
|
|
1518
|
+
msgid "Destination Server name"
|
1519
|
+
msgstr ""
|
1520
|
+
|
1496
1521
|
msgid "Destroy"
|
1497
1522
|
msgstr ""
|
1498
1523
|
|
@@ -1546,6 +1571,9 @@ msgstr ""
|
|
1546
1571
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1547
1572
|
msgstr ""
|
1548
1573
|
|
1574
|
+
msgid "Directory containing the exported Content View Version"
|
1575
|
+
msgstr ""
|
1576
|
+
|
1549
1577
|
msgid "Disable"
|
1550
1578
|
msgstr ""
|
1551
1579
|
|
@@ -1561,6 +1589,9 @@ msgstr ""
|
|
1561
1589
|
msgid "Disable simple content access for a manifest"
|
1562
1590
|
msgstr ""
|
1563
1591
|
|
1592
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1593
|
+
msgstr ""
|
1594
|
+
|
1564
1595
|
msgid "Disconnected mode"
|
1565
1596
|
msgstr ""
|
1566
1597
|
|
@@ -1644,6 +1675,9 @@ msgstr ""
|
|
1644
1675
|
msgid "Enabled Repositories"
|
1645
1676
|
msgstr ""
|
1646
1677
|
|
1678
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1679
|
+
msgstr ""
|
1680
|
+
|
1647
1681
|
msgid "End Date"
|
1648
1682
|
msgstr ""
|
1649
1683
|
|
@@ -1753,7 +1787,10 @@ msgstr ""
|
|
1753
1787
|
msgid "Export CSV"
|
1754
1788
|
msgstr ""
|
1755
1789
|
|
1756
|
-
msgid "Export
|
1790
|
+
msgid "Export Library"
|
1791
|
+
msgstr ""
|
1792
|
+
|
1793
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1757
1794
|
msgstr ""
|
1758
1795
|
|
1759
1796
|
msgid "Export a repository"
|
@@ -1762,9 +1799,15 @@ msgstr ""
|
|
1762
1799
|
msgid "Export as CSV"
|
1763
1800
|
msgstr ""
|
1764
1801
|
|
1802
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1803
|
+
msgstr ""
|
1804
|
+
|
1765
1805
|
msgid "Export to ISO format"
|
1766
1806
|
msgstr ""
|
1767
1807
|
|
1808
|
+
msgid "Export to ISO format."
|
1809
|
+
msgstr ""
|
1810
|
+
|
1768
1811
|
msgid "Exported version"
|
1769
1812
|
msgstr ""
|
1770
1813
|
|
@@ -1907,10 +1950,6 @@ msgstr ""
|
|
1907
1950
|
msgid "GPG Key URL"
|
1908
1951
|
msgstr ""
|
1909
1952
|
|
1910
|
-
#, fuzzy
|
1911
|
-
msgid "GPG Keys"
|
1912
|
-
msgstr "GPG klíče"
|
1913
|
-
|
1914
1953
|
msgid "Generate and Download"
|
1915
1954
|
msgstr ""
|
1916
1955
|
|
@@ -2018,6 +2057,9 @@ msgstr ""
|
|
2018
2057
|
msgid "Host content and subscription details"
|
2019
2058
|
msgstr ""
|
2020
2059
|
|
2060
|
+
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."
|
2061
|
+
msgstr ""
|
2062
|
+
|
2021
2063
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2022
2064
|
msgstr ""
|
2023
2065
|
|
@@ -2042,6 +2084,9 @@ msgstr ""
|
|
2042
2084
|
msgid "Host id to list applicable packages for"
|
2043
2085
|
msgstr ""
|
2044
2086
|
|
2087
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2088
|
+
msgstr ""
|
2089
|
+
|
2045
2090
|
msgid "Host with ID %s already exists in the host collection."
|
2046
2091
|
msgstr ""
|
2047
2092
|
|
@@ -2197,6 +2242,9 @@ msgstr ""
|
|
2197
2242
|
msgid "Identifiers for Lifecycle Environment"
|
2198
2243
|
msgstr ""
|
2199
2244
|
|
2245
|
+
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"
|
2246
|
+
msgstr ""
|
2247
|
+
|
2200
2248
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2201
2249
|
msgstr ""
|
2202
2250
|
|
@@ -2239,6 +2287,15 @@ msgstr ""
|
|
2239
2287
|
msgid "Immediate"
|
2240
2288
|
msgstr ""
|
2241
2289
|
|
2290
|
+
msgid "Import"
|
2291
|
+
msgstr ""
|
2292
|
+
|
2293
|
+
msgid "Import Content View Version"
|
2294
|
+
msgstr ""
|
2295
|
+
|
2296
|
+
msgid "Import Default Content View"
|
2297
|
+
msgstr ""
|
2298
|
+
|
2242
2299
|
#, fuzzy
|
2243
2300
|
msgid "Import Manifest"
|
2244
2301
|
msgstr "Závažnost: Důležitá"
|
@@ -2261,6 +2318,12 @@ msgstr ""
|
|
2261
2318
|
msgid "Import a Manifest using the manifest tab above."
|
2262
2319
|
msgstr ""
|
2263
2320
|
|
2321
|
+
msgid "Import a content view version"
|
2322
|
+
msgstr ""
|
2323
|
+
|
2324
|
+
msgid "Import a content view version to the library"
|
2325
|
+
msgstr ""
|
2326
|
+
|
2264
2327
|
#, fuzzy
|
2265
2328
|
msgid "Import facts"
|
2266
2329
|
msgstr "Import historie"
|
@@ -2268,6 +2331,15 @@ msgstr "Import historie"
|
|
2268
2331
|
msgid "Import uploads into a repository"
|
2269
2332
|
msgstr ""
|
2270
2333
|
|
2334
|
+
msgid "Import-only can not be changed after creation"
|
2335
|
+
msgstr ""
|
2336
|
+
|
2337
|
+
msgid "Import-only content views can not be published directly"
|
2338
|
+
msgstr ""
|
2339
|
+
|
2340
|
+
msgid "Import-only content views will be available in a future version."
|
2341
|
+
msgstr ""
|
2342
|
+
|
2271
2343
|
msgid "Importing manifest into '%{subject}' failed."
|
2272
2344
|
msgstr ""
|
2273
2345
|
|
@@ -2449,6 +2521,9 @@ msgstr ""
|
|
2449
2521
|
msgid "Invalid params provided - date_type must be one of %s"
|
2450
2522
|
msgstr ""
|
2451
2523
|
|
2524
|
+
msgid "Invalid path specified."
|
2525
|
+
msgstr ""
|
2526
|
+
|
2452
2527
|
msgid ""
|
2453
2528
|
"Invalid puppet module parameters specified. \\\n"
|
2454
2529
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2457,6 +2532,12 @@ msgstr ""
|
|
2457
2532
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2458
2533
|
msgstr ""
|
2459
2534
|
|
2535
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2536
|
+
msgstr ""
|
2537
|
+
|
2538
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2539
|
+
msgstr ""
|
2540
|
+
|
2460
2541
|
msgid "Invalid value specified for Container Image repositories."
|
2461
2542
|
msgstr ""
|
2462
2543
|
|
@@ -2466,6 +2547,9 @@ msgstr ""
|
|
2466
2547
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2467
2548
|
msgstr ""
|
2468
2549
|
|
2550
|
+
msgid "Katello"
|
2551
|
+
msgstr ""
|
2552
|
+
|
2469
2553
|
msgid "Katello ID of local pool to update"
|
2470
2554
|
msgstr ""
|
2471
2555
|
|
@@ -2526,9 +2610,6 @@ msgstr ""
|
|
2526
2610
|
msgid "Learn more about adding Subscription Manifests"
|
2527
2611
|
msgstr ""
|
2528
2612
|
|
2529
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2530
|
-
msgstr ""
|
2531
|
-
|
2532
2613
|
msgid "Library lifecycle environments may not be deleted."
|
2533
2614
|
msgstr ""
|
2534
2615
|
|
@@ -2635,6 +2716,9 @@ msgstr "Instalační balíčky"
|
|
2635
2716
|
msgid "List errata available for the content host"
|
2636
2717
|
msgstr ""
|
2637
2718
|
|
2719
|
+
msgid "List export histories"
|
2720
|
+
msgstr ""
|
2721
|
+
|
2638
2722
|
msgid "List filter rules"
|
2639
2723
|
msgstr ""
|
2640
2724
|
|
@@ -2793,6 +2877,9 @@ msgstr ""
|
|
2793
2877
|
msgid "List srpms"
|
2794
2878
|
msgstr ""
|
2795
2879
|
|
2880
|
+
msgid "List subscriptions"
|
2881
|
+
msgstr ""
|
2882
|
+
|
2796
2883
|
#, fuzzy
|
2797
2884
|
msgid "List sync plans"
|
2798
2885
|
msgstr "Vybrat distribuci"
|
@@ -2881,6 +2968,9 @@ msgstr ""
|
|
2881
2968
|
msgid "Messaging connection"
|
2882
2969
|
msgstr ""
|
2883
2970
|
|
2971
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2972
|
+
msgstr ""
|
2973
|
+
|
2884
2974
|
msgid "Mismatched"
|
2885
2975
|
msgstr ""
|
2886
2976
|
|
@@ -3019,6 +3109,9 @@ msgstr ""
|
|
3019
3109
|
msgid "No errors"
|
3020
3110
|
msgstr "Žádné chyby"
|
3021
3111
|
|
3112
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3113
|
+
msgstr ""
|
3114
|
+
|
3022
3115
|
msgid "No file uploaded"
|
3023
3116
|
msgstr ""
|
3024
3117
|
|
@@ -3032,12 +3125,18 @@ msgstr ""
|
|
3032
3125
|
msgid "No hosts registered with subscription-manager found in selection."
|
3033
3126
|
msgstr ""
|
3034
3127
|
|
3128
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3129
|
+
msgstr ""
|
3130
|
+
|
3035
3131
|
msgid "No manifest file uploaded"
|
3036
3132
|
msgstr ""
|
3037
3133
|
|
3038
3134
|
msgid "No matching content views found"
|
3039
3135
|
msgstr ""
|
3040
3136
|
|
3137
|
+
msgid "No matching repositories found"
|
3138
|
+
msgstr ""
|
3139
|
+
|
3041
3140
|
msgid "No new packages installed"
|
3042
3141
|
msgstr "Žádné nové instalační balíčky"
|
3043
3142
|
|
@@ -3177,6 +3276,9 @@ msgstr ""
|
|
3177
3276
|
msgid "On-disk location for exported repositories"
|
3178
3277
|
msgstr ""
|
3179
3278
|
|
3279
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3280
|
+
msgstr ""
|
3281
|
+
|
3180
3282
|
msgid "One of parameters [ %s ] required but not specified."
|
3181
3283
|
msgstr ""
|
3182
3284
|
|
@@ -3208,6 +3310,9 @@ msgstr ""
|
|
3208
3310
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3209
3311
|
msgstr ""
|
3210
3312
|
|
3313
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3314
|
+
msgstr ""
|
3315
|
+
|
3211
3316
|
msgid "Organization"
|
3212
3317
|
msgstr "Organizace"
|
3213
3318
|
|
@@ -3480,6 +3585,18 @@ msgstr ""
|
|
3480
3585
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3481
3586
|
msgstr ""
|
3482
3587
|
|
3588
|
+
msgid "Performs a full-export of a content view version."
|
3589
|
+
msgstr ""
|
3590
|
+
|
3591
|
+
msgid "Performs a full-export of the repositories in library."
|
3592
|
+
msgstr ""
|
3593
|
+
|
3594
|
+
msgid "Performs an incremental-export of a content view version."
|
3595
|
+
msgstr ""
|
3596
|
+
|
3597
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3598
|
+
msgstr ""
|
3599
|
+
|
3483
3600
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3484
3601
|
msgstr ""
|
3485
3602
|
|
@@ -3489,6 +3606,9 @@ msgstr ""
|
|
3489
3606
|
msgid "Plan numeric identifier"
|
3490
3607
|
msgstr ""
|
3491
3608
|
|
3609
|
+
msgid "Please add some repositories."
|
3610
|
+
msgstr ""
|
3611
|
+
|
3492
3612
|
msgid "Please enter a positive number above zero"
|
3493
3613
|
msgstr ""
|
3494
3614
|
|
@@ -3516,6 +3636,9 @@ msgstr ""
|
|
3516
3636
|
msgid "Please select one from the list below and you will be redirected."
|
3517
3637
|
msgstr ""
|
3518
3638
|
|
3639
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3640
|
+
msgstr ""
|
3641
|
+
|
3519
3642
|
msgid "Processing metadata"
|
3520
3643
|
msgstr ""
|
3521
3644
|
|
@@ -3625,6 +3748,9 @@ msgstr ""
|
|
3625
3748
|
msgid "Pulp"
|
3626
3749
|
msgstr ""
|
3627
3750
|
|
3751
|
+
msgid "Pulp 3 export destination filepath"
|
3752
|
+
msgstr ""
|
3753
|
+
|
3628
3754
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3629
3755
|
msgstr ""
|
3630
3756
|
|
@@ -3679,6 +3805,12 @@ msgstr ""
|
|
3679
3805
|
msgid "Pulp task error"
|
3680
3806
|
msgstr ""
|
3681
3807
|
|
3808
|
+
msgid "Pulp user or group unable to read '%s'."
|
3809
|
+
msgstr ""
|
3810
|
+
|
3811
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3812
|
+
msgstr ""
|
3813
|
+
|
3682
3814
|
msgid "Pulpcore"
|
3683
3815
|
msgstr ""
|
3684
3816
|
|
@@ -3755,6 +3887,9 @@ msgstr ""
|
|
3755
3887
|
msgid "Recommended Repositories"
|
3756
3888
|
msgstr ""
|
3757
3889
|
|
3890
|
+
msgid "Red Hat"
|
3891
|
+
msgstr ""
|
3892
|
+
|
3758
3893
|
#, fuzzy
|
3759
3894
|
msgid "Red Hat CDN URL"
|
3760
3895
|
msgstr "Produkty"
|
@@ -3986,6 +4121,9 @@ msgstr ""
|
|
3986
4121
|
msgid "Resolve Traces"
|
3987
4122
|
msgstr ""
|
3988
4123
|
|
4124
|
+
msgid "Resolve traces for one or more hosts"
|
4125
|
+
msgstr ""
|
4126
|
+
|
3989
4127
|
msgid "Resource"
|
3990
4128
|
msgstr ""
|
3991
4129
|
|
@@ -4064,6 +4202,9 @@ msgstr ""
|
|
4064
4202
|
msgid "Role"
|
4065
4203
|
msgstr ""
|
4066
4204
|
|
4205
|
+
msgid "Role of host"
|
4206
|
+
msgstr ""
|
4207
|
+
|
4067
4208
|
msgid "Run Sync Plan:"
|
4068
4209
|
msgstr ""
|
4069
4210
|
|
@@ -4165,6 +4306,9 @@ msgstr ""
|
|
4165
4306
|
msgid "Service Level (SLA)"
|
4166
4307
|
msgstr ""
|
4167
4308
|
|
4309
|
+
msgid "Service level of host"
|
4310
|
+
msgstr ""
|
4311
|
+
|
4168
4312
|
msgid "Service level to be used for autoheal"
|
4169
4313
|
msgstr ""
|
4170
4314
|
|
@@ -4276,6 +4420,15 @@ msgstr ""
|
|
4276
4420
|
msgid "Simple Content Access"
|
4277
4421
|
msgstr ""
|
4278
4422
|
|
4423
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4424
|
+
msgstr ""
|
4425
|
+
|
4426
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4427
|
+
msgstr ""
|
4428
|
+
|
4429
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4430
|
+
msgstr ""
|
4431
|
+
|
4279
4432
|
msgid "Size of file to upload"
|
4280
4433
|
msgstr ""
|
4281
4434
|
|
@@ -4309,6 +4462,9 @@ msgstr ""
|
|
4309
4462
|
msgid "Specify the list of units in each repo"
|
4310
4463
|
msgstr ""
|
4311
4464
|
|
4465
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4466
|
+
msgstr ""
|
4467
|
+
|
4312
4468
|
msgid "Stacking ID"
|
4313
4469
|
msgstr ""
|
4314
4470
|
|
@@ -4521,6 +4677,9 @@ msgstr ""
|
|
4521
4677
|
msgid "Sync plan identifier to attach"
|
4522
4678
|
msgstr ""
|
4523
4679
|
|
4680
|
+
msgid "Sync state"
|
4681
|
+
msgstr ""
|
4682
|
+
|
4524
4683
|
msgid "Synced Content"
|
4525
4684
|
msgstr ""
|
4526
4685
|
|
@@ -4584,6 +4743,9 @@ msgstr ""
|
|
4584
4743
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4585
4744
|
msgstr ""
|
4586
4745
|
|
4746
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4747
|
+
msgstr ""
|
4748
|
+
|
4587
4749
|
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."
|
4588
4750
|
msgstr ""
|
4589
4751
|
|
@@ -4623,15 +4785,26 @@ msgstr ""
|
|
4623
4785
|
msgid "The erratum type must be an array. Invalid value provided"
|
4624
4786
|
msgstr ""
|
4625
4787
|
|
4788
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4789
|
+
msgstr ""
|
4790
|
+
|
4626
4791
|
msgid "The field to sort the data by. Defaults to the created date."
|
4627
4792
|
msgstr ""
|
4628
4793
|
|
4629
4794
|
msgid "The following hosts have errata that apply to them: "
|
4630
4795
|
msgstr ""
|
4631
4796
|
|
4797
|
+
msgid ""
|
4798
|
+
"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"
|
4799
|
+
" %{repos}"
|
4800
|
+
msgstr ""
|
4801
|
+
|
4632
4802
|
msgid "The id of the host to alter"
|
4633
4803
|
msgstr ""
|
4634
4804
|
|
4805
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4806
|
+
msgstr ""
|
4807
|
+
|
4635
4808
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4636
4809
|
msgstr ""
|
4637
4810
|
|
@@ -4681,6 +4854,9 @@ msgstr ""
|
|
4681
4854
|
msgid "The requested resource does not belong to the specified organization"
|
4682
4855
|
msgstr ""
|
4683
4856
|
|
4857
|
+
msgid "The requested traces were not found for this host"
|
4858
|
+
msgstr ""
|
4859
|
+
|
4684
4860
|
msgid "The selected content source and lifecycle environment do not match"
|
4685
4861
|
msgstr ""
|
4686
4862
|
|
@@ -4743,6 +4919,9 @@ msgstr ""
|
|
4743
4919
|
msgid "There's no running synchronization for this smart proxy."
|
4744
4920
|
msgstr ""
|
4745
4921
|
|
4922
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4923
|
+
msgstr ""
|
4924
|
+
|
4746
4925
|
msgid "This Host is not currently registered with subscription-manager."
|
4747
4926
|
msgstr ""
|
4748
4927
|
|
@@ -4752,6 +4931,9 @@ msgstr ""
|
|
4752
4931
|
msgid "This action doesn't support package groups"
|
4753
4932
|
msgstr ""
|
4754
4933
|
|
4934
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4935
|
+
msgstr ""
|
4936
|
+
|
4755
4937
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4756
4938
|
msgstr ""
|
4757
4939
|
|
@@ -4881,10 +5063,16 @@ msgstr ""
|
|
4881
5063
|
msgid "Unable to detect puppet path"
|
4882
5064
|
msgstr ""
|
4883
5065
|
|
4884
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
5066
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4885
5067
|
msgstr ""
|
4886
5068
|
|
4887
|
-
msgid "Unable to export
|
5069
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5070
|
+
msgstr ""
|
5071
|
+
|
5072
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5073
|
+
msgstr ""
|
5074
|
+
|
5075
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4888
5076
|
msgstr ""
|
4889
5077
|
|
4890
5078
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5108,6 +5296,12 @@ msgstr ""
|
|
5108
5296
|
msgid "Updating Package..."
|
5109
5297
|
msgstr "Smazat balíček filtrů"
|
5110
5298
|
|
5299
|
+
msgid "Updating System Purpose for host"
|
5300
|
+
msgstr ""
|
5301
|
+
|
5302
|
+
msgid "Updating System Purpose for host %s"
|
5303
|
+
msgstr ""
|
5304
|
+
|
5111
5305
|
#, fuzzy
|
5112
5306
|
msgid "Updating package group..."
|
5113
5307
|
msgstr "Smazat balíček filtrů"
|
@@ -5163,9 +5357,15 @@ msgstr ""
|
|
5163
5357
|
msgid "Usage Type"
|
5164
5358
|
msgstr ""
|
5165
5359
|
|
5360
|
+
msgid "Usage of host"
|
5361
|
+
msgstr ""
|
5362
|
+
|
5166
5363
|
msgid "Use remote execution by default"
|
5167
5364
|
msgstr ""
|
5168
5365
|
|
5366
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5367
|
+
msgstr ""
|
5368
|
+
|
5169
5369
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5170
5370
|
msgstr ""
|
5171
5371
|
|
@@ -5190,6 +5390,15 @@ msgstr ""
|
|
5190
5390
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5191
5391
|
msgstr ""
|
5192
5392
|
|
5393
|
+
msgid "Verify checksum"
|
5394
|
+
msgstr ""
|
5395
|
+
|
5396
|
+
msgid "Verify checksum for one or more products"
|
5397
|
+
msgstr ""
|
5398
|
+
|
5399
|
+
msgid "Verify checksum of repository contents"
|
5400
|
+
msgstr ""
|
5401
|
+
|
5193
5402
|
msgid "Version"
|
5194
5403
|
msgstr ""
|
5195
5404
|
|
@@ -5206,7 +5415,7 @@ msgstr ""
|
|
5206
5415
|
msgid "Virtual"
|
5207
5416
|
msgstr "Virtuální"
|
5208
5417
|
|
5209
|
-
msgid "When Simple Content Access is enabled, hosts
|
5418
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5210
5419
|
msgstr ""
|
5211
5420
|
|
5212
5421
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5275,6 +5484,9 @@ msgstr ""
|
|
5275
5484
|
msgid "You currently don't have any Content Views."
|
5276
5485
|
msgstr ""
|
5277
5486
|
|
5487
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5488
|
+
msgstr ""
|
5489
|
+
|
5278
5490
|
msgid "You do not have permissions to delete %s"
|
5279
5491
|
msgstr ""
|
5280
5492
|
|
@@ -5385,6 +5597,9 @@ msgstr "+ Nová organizace"
|
|
5385
5597
|
msgid "an ostree branch"
|
5386
5598
|
msgstr ""
|
5387
5599
|
|
5600
|
+
msgid "are only allowed for Yum repositories."
|
5601
|
+
msgstr ""
|
5602
|
+
|
5388
5603
|
msgid "attempted to sync without a feed URL"
|
5389
5604
|
msgstr ""
|
5390
5605
|
|
@@ -5404,6 +5619,9 @@ msgstr ""
|
|
5404
5619
|
msgid "can't be blank"
|
5405
5620
|
msgstr "nemůže být prázdné"
|
5406
5621
|
|
5622
|
+
msgid "cannot add filter to import-only view"
|
5623
|
+
msgstr ""
|
5624
|
+
|
5407
5625
|
msgid "cannot be a binary file."
|
5408
5626
|
msgstr "nemůže být binární soubor."
|
5409
5627
|
|
@@ -5464,13 +5682,13 @@ msgstr ""
|
|
5464
5682
|
msgid "checking Pulp task status"
|
5465
5683
|
msgstr ""
|
5466
5684
|
|
5467
|
-
msgid "comma
|
5685
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5468
5686
|
msgstr ""
|
5469
5687
|
|
5470
|
-
msgid "comma
|
5688
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5471
5689
|
msgstr ""
|
5472
5690
|
|
5473
|
-
msgid "comma
|
5691
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5474
5692
|
msgstr ""
|
5475
5693
|
|
5476
5694
|
msgid "composite content view identifier"
|
@@ -5709,9 +5927,6 @@ msgstr ""
|
|
5709
5927
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5710
5928
|
msgstr ""
|
5711
5929
|
|
5712
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5713
|
-
msgstr ""
|
5714
|
-
|
5715
5930
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5716
5931
|
msgstr ""
|
5717
5932
|
|
@@ -5749,6 +5964,9 @@ msgstr ""
|
|
5749
5964
|
msgid "invalid container image name"
|
5750
5965
|
msgstr ""
|
5751
5966
|
|
5967
|
+
msgid "invalid: Repositories can only require one OS version."
|
5968
|
+
msgstr ""
|
5969
|
+
|
5752
5970
|
msgid "is already attached to the capsule"
|
5753
5971
|
msgstr ""
|
5754
5972
|
|
@@ -5789,6 +6007,9 @@ msgstr ""
|
|
5789
6007
|
msgid "maximum size of each ISO in MB"
|
5790
6008
|
msgstr ""
|
5791
6009
|
|
6010
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6011
|
+
msgstr ""
|
6012
|
+
|
5792
6013
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5793
6014
|
msgstr ""
|
5794
6015
|
|
@@ -5810,6 +6031,9 @@ msgstr ""
|
|
5810
6031
|
msgid "must be one of the following: %s"
|
5811
6032
|
msgstr ""
|
5812
6033
|
|
6034
|
+
msgid "must be one of: %s"
|
6035
|
+
msgstr ""
|
6036
|
+
|
5813
6037
|
#, fuzzy
|
5814
6038
|
msgid "must be unique within one organization"
|
5815
6039
|
msgstr "Název musí být unikátní vrámci jedné organizace."
|
@@ -6083,6 +6307,9 @@ msgstr ""
|
|
6083
6307
|
msgid "the uuid of the puppet module to associate"
|
6084
6308
|
msgstr ""
|
6085
6309
|
|
6310
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6311
|
+
msgstr ""
|
6312
|
+
|
6086
6313
|
msgid "true if the latest version of the component's content view is desired"
|
6087
6314
|
msgstr ""
|
6088
6315
|
|