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/fr/katello.po
CHANGED
@@ -24,6 +24,11 @@ msgstr ""
|
|
24
24
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
25
25
|
"X-Generator: Zanata 3.6.0\n"
|
26
26
|
|
27
|
+
msgid ""
|
28
|
+
"\n"
|
29
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
30
|
+
msgstr ""
|
31
|
+
|
27
32
|
msgid " %{errata_count} Errata"
|
28
33
|
msgstr ""
|
29
34
|
|
@@ -346,12 +351,18 @@ msgstr ""
|
|
346
351
|
msgid "Action with sub plans"
|
347
352
|
msgstr ""
|
348
353
|
|
354
|
+
msgid "Activation Key(s)"
|
355
|
+
msgstr ""
|
356
|
+
|
349
357
|
msgid "Activation Keys"
|
350
358
|
msgstr "Clés d'activation"
|
351
359
|
|
352
360
|
msgid "Activation key ID"
|
353
361
|
msgstr "ID de la clé d'activation"
|
354
362
|
|
363
|
+
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."
|
364
|
+
msgstr ""
|
365
|
+
|
355
366
|
msgid "Activation keys and subscriptions can be managed"
|
356
367
|
msgstr "Les clés d'activation et les abonnements peuvent être gérés"
|
357
368
|
|
@@ -403,6 +414,9 @@ msgstr "Contenu ajouté :"
|
|
403
414
|
msgid "Adding content units"
|
404
415
|
msgstr ""
|
405
416
|
|
417
|
+
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}"
|
418
|
+
msgstr ""
|
419
|
+
|
406
420
|
msgid "Addons"
|
407
421
|
msgstr ""
|
408
422
|
|
@@ -507,6 +521,9 @@ msgstr ""
|
|
507
521
|
msgid "Artifacts"
|
508
522
|
msgstr ""
|
509
523
|
|
524
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
525
|
+
msgstr ""
|
526
|
+
|
510
527
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
511
528
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
512
529
|
msgstr[0] "Assigner %{count} hôte sans aucune %{taxonomy_single} à %{taxonomy_name}"
|
@@ -552,9 +569,6 @@ msgstr ""
|
|
552
569
|
msgid "Author"
|
553
570
|
msgstr ""
|
554
571
|
|
555
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
556
|
-
msgstr ""
|
557
|
-
|
558
572
|
msgid "Auto Publish - Triggered by '%s'"
|
559
573
|
msgstr ""
|
560
574
|
|
@@ -764,6 +778,9 @@ msgstr ""
|
|
764
778
|
msgid "Cannot delete view while it exists in environments"
|
765
779
|
msgstr "Impossible de supprimer l'affichage pendant qu'il existe dans des environnements"
|
766
780
|
|
781
|
+
msgid "Cannot import a composite content view"
|
782
|
+
msgstr ""
|
783
|
+
|
767
784
|
msgid "Cannot import a custom subscription from a redhat product."
|
768
785
|
msgstr ""
|
769
786
|
|
@@ -819,12 +836,18 @@ msgstr ""
|
|
819
836
|
msgid "Cannot upload Container Image content."
|
820
837
|
msgstr ""
|
821
838
|
|
839
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
840
|
+
msgstr ""
|
841
|
+
|
822
842
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
823
843
|
msgstr ""
|
824
844
|
|
825
845
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
826
846
|
msgstr ""
|
827
847
|
|
848
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
849
|
+
msgstr ""
|
850
|
+
|
828
851
|
msgid "Check services before actions"
|
829
852
|
msgstr ""
|
830
853
|
|
@@ -860,7 +883,7 @@ msgstr ""
|
|
860
883
|
msgid "Combined Profile Update for %s"
|
861
884
|
msgstr ""
|
862
885
|
|
863
|
-
msgid "Comma
|
886
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
864
887
|
msgstr ""
|
865
888
|
|
866
889
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330
|
@@ -916,9 +939,15 @@ msgstr ""
|
|
916
939
|
msgid "Content Download URL"
|
917
940
|
msgstr ""
|
918
941
|
|
942
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
943
|
+
msgstr ""
|
944
|
+
|
919
945
|
msgid "Content Hosts"
|
920
946
|
msgstr "Hôtes du contenu"
|
921
947
|
|
948
|
+
msgid "Content Migration"
|
949
|
+
msgstr ""
|
950
|
+
|
922
951
|
msgid "Content Source"
|
923
952
|
msgstr "Source de contenu"
|
924
953
|
|
@@ -970,9 +999,15 @@ msgstr ""
|
|
970
999
|
msgid "Content View Version not set"
|
971
1000
|
msgstr ""
|
972
1001
|
|
1002
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1003
|
+
msgstr ""
|
1004
|
+
|
973
1005
|
msgid "Content View and Environment not set for registration."
|
974
1006
|
msgstr ""
|
975
1007
|
|
1008
|
+
msgid "Content View id"
|
1009
|
+
msgstr ""
|
1010
|
+
|
976
1011
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
|
977
1012
|
msgid "Content Views"
|
978
1013
|
msgstr " Affichages de contenu"
|
@@ -1011,6 +1046,9 @@ msgstr "Étiquette d'affichage du contenu"
|
|
1011
1046
|
msgid "Content view numeric identifier"
|
1012
1047
|
msgstr "Identifiant numérique d'affichage du contenu"
|
1013
1048
|
|
1049
|
+
msgid "Content view version export history identifier"
|
1050
|
+
msgstr ""
|
1051
|
+
|
1014
1052
|
msgid "Content view version identifier"
|
1015
1053
|
msgstr "Identifiant de la version de l'affichage du contenu"
|
1016
1054
|
|
@@ -1032,12 +1070,12 @@ msgstr ""
|
|
1032
1070
|
msgid "Copy an activation key"
|
1033
1071
|
msgstr "Copier une clé d'activation"
|
1034
1072
|
|
1073
|
+
msgid "Copy version units to library"
|
1074
|
+
msgstr ""
|
1075
|
+
|
1035
1076
|
msgid "Cores: %s"
|
1036
1077
|
msgstr "Noyaux : %s"
|
1037
1078
|
|
1038
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1039
|
-
msgstr ""
|
1040
|
-
|
1041
1079
|
msgid "Could not delete organization '%s'."
|
1042
1080
|
msgstr "Suppression de l'organisation '%s' impossible."
|
1043
1081
|
|
@@ -1047,6 +1085,12 @@ msgstr "Impossible de trouver %{content} avec l'ID '%{id}' dans le référentiel
|
|
1047
1085
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1048
1086
|
msgstr ""
|
1049
1087
|
|
1088
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1089
|
+
msgstr ""
|
1090
|
+
|
1091
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1092
|
+
msgstr ""
|
1093
|
+
|
1050
1094
|
msgid "Could not find Environment with ids: %s"
|
1051
1095
|
msgstr "Impossible de trouver un Environnement avec les ID : %s"
|
1052
1096
|
|
@@ -1080,9 +1124,6 @@ msgstr ""
|
|
1080
1124
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1081
1125
|
msgstr "Impossible de trouver le Filtre %{type} avec l'ID %{id}"
|
1082
1126
|
|
1083
|
-
msgid "Couldn't find Content Credential '%s'"
|
1084
|
-
msgstr ""
|
1085
|
-
|
1086
1127
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1087
1128
|
msgstr "Le filtre d'affichage du contenu avec l'ID =%s est introuvable"
|
1088
1129
|
|
@@ -1129,12 +1170,6 @@ msgstr "Environnement « %s » introuvable"
|
|
1129
1170
|
msgid "Couldn't find errata ids '%s'"
|
1130
1171
|
msgstr "Les id d'errata '%s' sont introuvables"
|
1131
1172
|
|
1132
|
-
msgid "Couldn't find gpg key '%s'"
|
1133
|
-
msgstr "Clé gpg '%s' introuvable"
|
1134
|
-
|
1135
|
-
msgid "Couldn't find host '%s'"
|
1136
|
-
msgstr ""
|
1137
|
-
|
1138
1173
|
msgid "Couldn't find host collection '%s'"
|
1139
1174
|
msgstr "La collection de l'hôte '%s' est introuvable"
|
1140
1175
|
|
@@ -1147,36 +1182,18 @@ msgstr "Organisation « %s » introuvable"
|
|
1147
1182
|
msgid "Couldn't find prior-environment '%s'"
|
1148
1183
|
msgstr "Le pré-environnement '%s' est introuvable"
|
1149
1184
|
|
1150
|
-
msgid "Couldn't find product '%s'"
|
1151
|
-
msgstr "Impossible de trouver le produit '%s'"
|
1152
|
-
|
1153
1185
|
msgid "Couldn't find product with id '%s'"
|
1154
1186
|
msgstr "Le produit avec l'ID « %s » est introuvable"
|
1155
1187
|
|
1156
1188
|
msgid "Couldn't find repository '%s'"
|
1157
1189
|
msgstr "Référentiel « %s » introuvable"
|
1158
1190
|
|
1159
|
-
msgid "Couldn't find repository set with id '%s'."
|
1160
|
-
msgstr "L'ensemble de référentiels avec l'id '%s' est introuvable"
|
1161
|
-
|
1162
1191
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1163
1192
|
msgstr ""
|
1164
1193
|
|
1165
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1166
|
-
msgstr ""
|
1167
|
-
|
1168
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1169
|
-
msgstr ""
|
1170
|
-
|
1171
|
-
msgid "Couldn't find ssl client key '%s'"
|
1172
|
-
msgstr ""
|
1173
|
-
|
1174
1194
|
msgid "Couldn't find subject of synchronization"
|
1175
1195
|
msgstr "Sujet de la synchronisation introuvable"
|
1176
1196
|
|
1177
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1178
|
-
msgstr "Impossible de trouver le plan de synchronisation « %{plan} » dans l'organisation « %{org} »"
|
1179
|
-
|
1180
1197
|
msgid "Count"
|
1181
1198
|
msgstr ""
|
1182
1199
|
|
@@ -1248,6 +1265,9 @@ msgstr ""
|
|
1248
1265
|
msgid "Current organization not set."
|
1249
1266
|
msgstr ""
|
1250
1267
|
|
1268
|
+
msgid "Custom"
|
1269
|
+
msgstr ""
|
1270
|
+
|
1251
1271
|
msgid "Custom Content Repositories"
|
1252
1272
|
msgstr "Référentiels au contenu personnalisé"
|
1253
1273
|
|
@@ -1455,9 +1475,15 @@ msgstr "Description de la version d'affichage de contenu récemment publiée"
|
|
1455
1475
|
msgid "Description of the repository"
|
1456
1476
|
msgstr ""
|
1457
1477
|
|
1478
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1479
|
+
msgstr ""
|
1480
|
+
|
1458
1481
|
msgid "Desired quantity of the pool"
|
1459
1482
|
msgstr ""
|
1460
1483
|
|
1484
|
+
msgid "Destination Server name"
|
1485
|
+
msgstr ""
|
1486
|
+
|
1461
1487
|
msgid "Destroy"
|
1462
1488
|
msgstr "Détruire"
|
1463
1489
|
|
@@ -1509,6 +1535,9 @@ msgstr "Détails"
|
|
1509
1535
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1510
1536
|
msgstr ""
|
1511
1537
|
|
1538
|
+
msgid "Directory containing the exported Content View Version"
|
1539
|
+
msgstr ""
|
1540
|
+
|
1512
1541
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author Sam Friedmann
|
1513
1542
|
msgid "Disable"
|
1514
1543
|
msgstr "Désactiver"
|
@@ -1525,6 +1554,9 @@ msgstr ""
|
|
1525
1554
|
msgid "Disable simple content access for a manifest"
|
1526
1555
|
msgstr ""
|
1527
1556
|
|
1557
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1558
|
+
msgstr ""
|
1559
|
+
|
1528
1560
|
msgid "Disconnected mode"
|
1529
1561
|
msgstr ""
|
1530
1562
|
|
@@ -1608,6 +1640,9 @@ msgstr ""
|
|
1608
1640
|
msgid "Enabled Repositories"
|
1609
1641
|
msgstr ""
|
1610
1642
|
|
1643
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1644
|
+
msgstr ""
|
1645
|
+
|
1611
1646
|
msgid "End Date"
|
1612
1647
|
msgstr ""
|
1613
1648
|
|
@@ -1717,7 +1752,10 @@ msgstr ""
|
|
1717
1752
|
msgid "Export CSV"
|
1718
1753
|
msgstr ""
|
1719
1754
|
|
1720
|
-
msgid "Export
|
1755
|
+
msgid "Export Library"
|
1756
|
+
msgstr ""
|
1757
|
+
|
1758
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1721
1759
|
msgstr ""
|
1722
1760
|
|
1723
1761
|
msgid "Export a repository"
|
@@ -1726,9 +1764,15 @@ msgstr ""
|
|
1726
1764
|
msgid "Export as CSV"
|
1727
1765
|
msgstr ""
|
1728
1766
|
|
1767
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1768
|
+
msgstr ""
|
1769
|
+
|
1729
1770
|
msgid "Export to ISO format"
|
1730
1771
|
msgstr ""
|
1731
1772
|
|
1773
|
+
msgid "Export to ISO format."
|
1774
|
+
msgstr ""
|
1775
|
+
|
1732
1776
|
msgid "Exported version"
|
1733
1777
|
msgstr ""
|
1734
1778
|
|
@@ -1870,10 +1914,6 @@ msgstr ""
|
|
1870
1914
|
msgid "GPG Key URL"
|
1871
1915
|
msgstr ""
|
1872
1916
|
|
1873
|
-
# translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author jcarbone
|
1874
|
-
msgid "GPG Keys"
|
1875
|
-
msgstr "Clés GPG"
|
1876
|
-
|
1877
1917
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
|
1878
1918
|
msgid "Generate and Download"
|
1879
1919
|
msgstr "Générer et télécharger"
|
@@ -1981,6 +2021,9 @@ msgstr "La collection d'hôtes est vide."
|
|
1981
2021
|
msgid "Host content and subscription details"
|
1982
2022
|
msgstr "Contenu de l'hôte et détails de l'abonnement"
|
1983
2023
|
|
2024
|
+
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."
|
2025
|
+
msgstr ""
|
2026
|
+
|
1984
2027
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
1985
2028
|
msgstr ""
|
1986
2029
|
|
@@ -2005,6 +2048,9 @@ msgstr ""
|
|
2005
2048
|
msgid "Host id to list applicable packages for"
|
2006
2049
|
msgstr ""
|
2007
2050
|
|
2051
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2052
|
+
msgstr ""
|
2053
|
+
|
2008
2054
|
msgid "Host with ID %s already exists in the host collection."
|
2009
2055
|
msgstr ""
|
2010
2056
|
|
@@ -2158,6 +2204,9 @@ msgstr ""
|
|
2158
2204
|
msgid "Identifiers for Lifecycle Environment"
|
2159
2205
|
msgstr ""
|
2160
2206
|
|
2207
|
+
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"
|
2208
|
+
msgstr ""
|
2209
|
+
|
2161
2210
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2162
2211
|
msgstr ""
|
2163
2212
|
|
@@ -2200,6 +2249,15 @@ msgstr ""
|
|
2200
2249
|
msgid "Immediate"
|
2201
2250
|
msgstr ""
|
2202
2251
|
|
2252
|
+
msgid "Import"
|
2253
|
+
msgstr ""
|
2254
|
+
|
2255
|
+
msgid "Import Content View Version"
|
2256
|
+
msgstr ""
|
2257
|
+
|
2258
|
+
msgid "Import Default Content View"
|
2259
|
+
msgstr ""
|
2260
|
+
|
2203
2261
|
msgid "Import Manifest"
|
2204
2262
|
msgstr "Importer le manifeste"
|
2205
2263
|
|
@@ -2221,12 +2279,27 @@ msgstr ""
|
|
2221
2279
|
msgid "Import a Manifest using the manifest tab above."
|
2222
2280
|
msgstr ""
|
2223
2281
|
|
2282
|
+
msgid "Import a content view version"
|
2283
|
+
msgstr ""
|
2284
|
+
|
2285
|
+
msgid "Import a content view version to the library"
|
2286
|
+
msgstr ""
|
2287
|
+
|
2224
2288
|
msgid "Import facts"
|
2225
2289
|
msgstr "Importer des facts"
|
2226
2290
|
|
2227
2291
|
msgid "Import uploads into a repository"
|
2228
2292
|
msgstr "Importer les téléchargements dans un référentiel"
|
2229
2293
|
|
2294
|
+
msgid "Import-only can not be changed after creation"
|
2295
|
+
msgstr ""
|
2296
|
+
|
2297
|
+
msgid "Import-only content views can not be published directly"
|
2298
|
+
msgstr ""
|
2299
|
+
|
2300
|
+
msgid "Import-only content views will be available in a future version."
|
2301
|
+
msgstr ""
|
2302
|
+
|
2230
2303
|
msgid "Importing manifest into '%{subject}' failed."
|
2231
2304
|
msgstr ""
|
2232
2305
|
|
@@ -2403,6 +2476,9 @@ msgstr ""
|
|
2403
2476
|
msgid "Invalid params provided - date_type must be one of %s"
|
2404
2477
|
msgstr ""
|
2405
2478
|
|
2479
|
+
msgid "Invalid path specified."
|
2480
|
+
msgstr ""
|
2481
|
+
|
2406
2482
|
msgid ""
|
2407
2483
|
"Invalid puppet module parameters specified. \\\n"
|
2408
2484
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2411,6 +2487,12 @@ msgstr ""
|
|
2411
2487
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2412
2488
|
msgstr "Module puppet non valide. Veuillez vous assurer que le module puppet contient un fichier metadata.json et qu'il soit compressé correctement."
|
2413
2489
|
|
2490
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2491
|
+
msgstr ""
|
2492
|
+
|
2493
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2494
|
+
msgstr ""
|
2495
|
+
|
2414
2496
|
msgid "Invalid value specified for Container Image repositories."
|
2415
2497
|
msgstr ""
|
2416
2498
|
|
@@ -2420,6 +2502,9 @@ msgstr ""
|
|
2420
2502
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2421
2503
|
msgstr ""
|
2422
2504
|
|
2505
|
+
msgid "Katello"
|
2506
|
+
msgstr ""
|
2507
|
+
|
2423
2508
|
msgid "Katello ID of local pool to update"
|
2424
2509
|
msgstr ""
|
2425
2510
|
|
@@ -2480,9 +2565,6 @@ msgstr ""
|
|
2480
2565
|
msgid "Learn more about adding Subscription Manifests"
|
2481
2566
|
msgstr ""
|
2482
2567
|
|
2483
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2484
|
-
msgstr ""
|
2485
|
-
|
2486
2568
|
msgid "Library lifecycle environments may not be deleted."
|
2487
2569
|
msgstr "Les environnements de cycle de vie de la bibliothèque ne peuvent pas être supprimés."
|
2488
2570
|
|
@@ -2584,6 +2666,9 @@ msgstr "Répertorier les erratas"
|
|
2584
2666
|
msgid "List errata available for the content host"
|
2585
2667
|
msgstr "Répertorier les erratas disponibles pour l'hôte de contenu"
|
2586
2668
|
|
2669
|
+
msgid "List export histories"
|
2670
|
+
msgstr ""
|
2671
|
+
|
2587
2672
|
msgid "List filter rules"
|
2588
2673
|
msgstr "Répertorier les règles de filtre"
|
2589
2674
|
|
@@ -2737,6 +2822,9 @@ msgstr ""
|
|
2737
2822
|
msgid "List srpms"
|
2738
2823
|
msgstr ""
|
2739
2824
|
|
2825
|
+
msgid "List subscriptions"
|
2826
|
+
msgstr ""
|
2827
|
+
|
2740
2828
|
msgid "List sync plans"
|
2741
2829
|
msgstr "Répertorier les plans de synchronisation"
|
2742
2830
|
|
@@ -2825,6 +2913,9 @@ msgstr "Message"
|
|
2825
2913
|
msgid "Messaging connection"
|
2826
2914
|
msgstr ""
|
2827
2915
|
|
2916
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2917
|
+
msgstr ""
|
2918
|
+
|
2828
2919
|
msgid "Mismatched"
|
2829
2920
|
msgstr ""
|
2830
2921
|
|
@@ -2956,6 +3047,9 @@ msgstr ""
|
|
2956
3047
|
msgid "No errors"
|
2957
3048
|
msgstr "Aucune erreur"
|
2958
3049
|
|
3050
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3051
|
+
msgstr ""
|
3052
|
+
|
2959
3053
|
msgid "No file uploaded"
|
2960
3054
|
msgstr "Aucun fichier téléchargé"
|
2961
3055
|
|
@@ -2968,12 +3062,18 @@ msgstr ""
|
|
2968
3062
|
msgid "No hosts registered with subscription-manager found in selection."
|
2969
3063
|
msgstr ""
|
2970
3064
|
|
3065
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3066
|
+
msgstr ""
|
3067
|
+
|
2971
3068
|
msgid "No manifest file uploaded"
|
2972
3069
|
msgstr "Aucun fichier manifeste téléchargé"
|
2973
3070
|
|
2974
3071
|
msgid "No matching content views found"
|
2975
3072
|
msgstr ""
|
2976
3073
|
|
3074
|
+
msgid "No matching repositories found"
|
3075
|
+
msgstr ""
|
3076
|
+
|
2977
3077
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author samfreemanz
|
2978
3078
|
msgid "No new packages installed"
|
2979
3079
|
msgstr "Aucun nouveau paquet installé"
|
@@ -3112,6 +3212,9 @@ msgstr ""
|
|
3112
3212
|
msgid "On-disk location for exported repositories"
|
3113
3213
|
msgstr ""
|
3114
3214
|
|
3215
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3216
|
+
msgstr ""
|
3217
|
+
|
3115
3218
|
msgid "One of parameters [ %s ] required but not specified."
|
3116
3219
|
msgstr "L'un des paramètres [ %s ] est requis, mais il n'est pas spécifié."
|
3117
3220
|
|
@@ -3143,6 +3246,9 @@ msgstr "Opérateurs"
|
|
3143
3246
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3144
3247
|
msgstr ""
|
3145
3248
|
|
3249
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3250
|
+
msgstr ""
|
3251
|
+
|
3146
3252
|
msgid "Organization"
|
3147
3253
|
msgstr "Organisation"
|
3148
3254
|
|
@@ -3415,6 +3521,18 @@ msgstr ""
|
|
3415
3521
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3416
3522
|
msgstr "Effectuer une mise à jour croissante sur une ou plusieurs versions d'affichage de contenu."
|
3417
3523
|
|
3524
|
+
msgid "Performs a full-export of a content view version."
|
3525
|
+
msgstr ""
|
3526
|
+
|
3527
|
+
msgid "Performs a full-export of the repositories in library."
|
3528
|
+
msgstr ""
|
3529
|
+
|
3530
|
+
msgid "Performs an incremental-export of a content view version."
|
3531
|
+
msgstr ""
|
3532
|
+
|
3533
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3534
|
+
msgstr ""
|
3535
|
+
|
3418
3536
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3419
3537
|
msgstr "Permission refusée. L'utilisateur « %{user} » ne possède pas les permissions pour accéder à l'organisation « %{org} »."
|
3420
3538
|
|
@@ -3425,6 +3543,9 @@ msgstr "Physique"
|
|
3425
3543
|
msgid "Plan numeric identifier"
|
3426
3544
|
msgstr "Identifiant numérique du plan"
|
3427
3545
|
|
3546
|
+
msgid "Please add some repositories."
|
3547
|
+
msgstr ""
|
3548
|
+
|
3428
3549
|
msgid "Please enter a positive number above zero"
|
3429
3550
|
msgstr ""
|
3430
3551
|
|
@@ -3452,6 +3573,9 @@ msgstr ""
|
|
3452
3573
|
msgid "Please select one from the list below and you will be redirected."
|
3453
3574
|
msgstr ""
|
3454
3575
|
|
3576
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3577
|
+
msgstr ""
|
3578
|
+
|
3455
3579
|
msgid "Processing metadata"
|
3456
3580
|
msgstr "Traitement des métadonnées"
|
3457
3581
|
|
@@ -3559,6 +3683,9 @@ msgstr ""
|
|
3559
3683
|
msgid "Pulp"
|
3560
3684
|
msgstr ""
|
3561
3685
|
|
3686
|
+
msgid "Pulp 3 export destination filepath"
|
3687
|
+
msgstr ""
|
3688
|
+
|
3562
3689
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3563
3690
|
msgstr ""
|
3564
3691
|
|
@@ -3613,6 +3740,12 @@ msgstr ""
|
|
3613
3740
|
msgid "Pulp task error"
|
3614
3741
|
msgstr "Erreur de tâche pulp"
|
3615
3742
|
|
3743
|
+
msgid "Pulp user or group unable to read '%s'."
|
3744
|
+
msgstr ""
|
3745
|
+
|
3746
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3747
|
+
msgstr ""
|
3748
|
+
|
3616
3749
|
msgid "Pulpcore"
|
3617
3750
|
msgstr ""
|
3618
3751
|
|
@@ -3691,6 +3824,9 @@ msgstr ""
|
|
3691
3824
|
msgid "Recommended Repositories"
|
3692
3825
|
msgstr ""
|
3693
3826
|
|
3827
|
+
msgid "Red Hat"
|
3828
|
+
msgstr ""
|
3829
|
+
|
3694
3830
|
msgid "Red Hat CDN URL"
|
3695
3831
|
msgstr "URL du CDN (« Content Distribution Network », réseau de distribution de contenu) de Red Hat"
|
3696
3832
|
|
@@ -3913,6 +4049,9 @@ msgstr ""
|
|
3913
4049
|
msgid "Resolve Traces"
|
3914
4050
|
msgstr ""
|
3915
4051
|
|
4052
|
+
msgid "Resolve traces for one or more hosts"
|
4053
|
+
msgstr ""
|
4054
|
+
|
3916
4055
|
msgid "Resource"
|
3917
4056
|
msgstr ""
|
3918
4057
|
|
@@ -3992,6 +4131,9 @@ msgstr "Renvoyer le contenu d'une clé gpg de référentiel, utilisé directemen
|
|
3992
4131
|
msgid "Role"
|
3993
4132
|
msgstr ""
|
3994
4133
|
|
4134
|
+
msgid "Role of host"
|
4135
|
+
msgstr ""
|
4136
|
+
|
3995
4137
|
msgid "Run Sync Plan:"
|
3996
4138
|
msgstr ""
|
3997
4139
|
|
@@ -4092,6 +4234,9 @@ msgstr "Niveau de service %s"
|
|
4092
4234
|
msgid "Service Level (SLA)"
|
4093
4235
|
msgstr ""
|
4094
4236
|
|
4237
|
+
msgid "Service level of host"
|
4238
|
+
msgstr ""
|
4239
|
+
|
4095
4240
|
msgid "Service level to be used for autoheal"
|
4096
4241
|
msgstr ""
|
4097
4242
|
|
@@ -4197,6 +4342,15 @@ msgstr "Afficher les informations de la version"
|
|
4197
4342
|
msgid "Simple Content Access"
|
4198
4343
|
msgstr ""
|
4199
4344
|
|
4345
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4346
|
+
msgstr ""
|
4347
|
+
|
4348
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4349
|
+
msgstr ""
|
4350
|
+
|
4351
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
|
+
msgstr ""
|
4353
|
+
|
4200
4354
|
msgid "Size of file to upload"
|
4201
4355
|
msgstr ""
|
4202
4356
|
|
@@ -4231,6 +4385,9 @@ msgstr ""
|
|
4231
4385
|
msgid "Specify the list of units in each repo"
|
4232
4386
|
msgstr ""
|
4233
4387
|
|
4388
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4389
|
+
msgstr ""
|
4390
|
+
|
4234
4391
|
msgid "Stacking ID"
|
4235
4392
|
msgstr ""
|
4236
4393
|
|
@@ -4439,6 +4596,9 @@ msgstr "Synchroniser un ou plusieurs produits"
|
|
4439
4596
|
msgid "Sync plan identifier to attach"
|
4440
4597
|
msgstr "Synchroniser les identifiants de plan à attacher"
|
4441
4598
|
|
4599
|
+
msgid "Sync state"
|
4600
|
+
msgstr ""
|
4601
|
+
|
4442
4602
|
msgid "Synced Content"
|
4443
4603
|
msgstr ""
|
4444
4604
|
|
@@ -4501,6 +4661,9 @@ msgstr "L'environnement « %s » ne pas contenir de changeset !"
|
|
4501
4661
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4502
4662
|
msgstr ""
|
4503
4663
|
|
4664
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4665
|
+
msgstr ""
|
4666
|
+
|
4504
4667
|
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."
|
4505
4668
|
msgstr ""
|
4506
4669
|
|
@@ -4540,15 +4703,26 @@ msgstr "La date de début de la règle du filtre de l'erratum est un type ou un
|
|
4540
4703
|
msgid "The erratum type must be an array. Invalid value provided"
|
4541
4704
|
msgstr "Le type d'erratum doit être une matrice. Valeur non valide fournie"
|
4542
4705
|
|
4706
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4707
|
+
msgstr ""
|
4708
|
+
|
4543
4709
|
msgid "The field to sort the data by. Defaults to the created date."
|
4544
4710
|
msgstr ""
|
4545
4711
|
|
4546
4712
|
msgid "The following hosts have errata that apply to them: "
|
4547
4713
|
msgstr "Les hôtes suivants contiennent des errata à appliquer :"
|
4548
4714
|
|
4715
|
+
msgid ""
|
4716
|
+
"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"
|
4717
|
+
" %{repos}"
|
4718
|
+
msgstr ""
|
4719
|
+
|
4549
4720
|
msgid "The id of the host to alter"
|
4550
4721
|
msgstr ""
|
4551
4722
|
|
4723
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4724
|
+
msgstr ""
|
4725
|
+
|
4552
4726
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4553
4727
|
msgstr ""
|
4554
4728
|
|
@@ -4597,6 +4771,9 @@ msgstr ""
|
|
4597
4771
|
msgid "The requested resource does not belong to the specified organization"
|
4598
4772
|
msgstr ""
|
4599
4773
|
|
4774
|
+
msgid "The requested traces were not found for this host"
|
4775
|
+
msgstr ""
|
4776
|
+
|
4600
4777
|
msgid "The selected content source and lifecycle environment do not match"
|
4601
4778
|
msgstr ""
|
4602
4779
|
|
@@ -4660,6 +4837,9 @@ msgstr ""
|
|
4660
4837
|
msgid "There's no running synchronization for this smart proxy."
|
4661
4838
|
msgstr ""
|
4662
4839
|
|
4840
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4841
|
+
msgstr ""
|
4842
|
+
|
4663
4843
|
msgid "This Host is not currently registered with subscription-manager."
|
4664
4844
|
msgstr ""
|
4665
4845
|
|
@@ -4669,6 +4849,9 @@ msgstr ""
|
|
4669
4849
|
msgid "This action doesn't support package groups"
|
4670
4850
|
msgstr ""
|
4671
4851
|
|
4852
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4853
|
+
msgstr ""
|
4854
|
+
|
4672
4855
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4673
4856
|
msgstr "Ce certificat permet à l'utilisateur d'afficher les référentiels dans n'importe quel environnement à partir d'un navigateur."
|
4674
4857
|
|
@@ -4799,10 +4982,16 @@ msgstr ""
|
|
4799
4982
|
msgid "Unable to detect puppet path"
|
4800
4983
|
msgstr ""
|
4801
4984
|
|
4802
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
4985
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4803
4986
|
msgstr ""
|
4804
4987
|
|
4805
|
-
msgid "Unable to export
|
4988
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4989
|
+
msgstr ""
|
4990
|
+
|
4991
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4992
|
+
msgstr ""
|
4993
|
+
|
4994
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4806
4995
|
msgstr ""
|
4807
4996
|
|
4808
4997
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5018,6 +5207,12 @@ msgstr ""
|
|
5018
5207
|
msgid "Updating Package..."
|
5019
5208
|
msgstr "Mise à jour de paquets..."
|
5020
5209
|
|
5210
|
+
msgid "Updating System Purpose for host"
|
5211
|
+
msgstr ""
|
5212
|
+
|
5213
|
+
msgid "Updating System Purpose for host %s"
|
5214
|
+
msgstr ""
|
5215
|
+
|
5021
5216
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
|
5022
5217
|
msgid "Updating package group..."
|
5023
5218
|
msgstr "Mise à jour du groupe de paquets..."
|
@@ -5073,9 +5268,15 @@ msgstr ""
|
|
5073
5268
|
msgid "Usage Type"
|
5074
5269
|
msgstr ""
|
5075
5270
|
|
5271
|
+
msgid "Usage of host"
|
5272
|
+
msgstr ""
|
5273
|
+
|
5076
5274
|
msgid "Use remote execution by default"
|
5077
5275
|
msgstr ""
|
5078
5276
|
|
5277
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5278
|
+
msgstr ""
|
5279
|
+
|
5079
5280
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5080
5281
|
msgstr "L'utilisateur '%s' n'a pas spécifié un ID d'organisation et ne possède pas d'organisation par défaut."
|
5081
5282
|
|
@@ -5100,6 +5301,15 @@ msgstr ""
|
|
5100
5301
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5101
5302
|
msgstr ""
|
5102
5303
|
|
5304
|
+
msgid "Verify checksum"
|
5305
|
+
msgstr ""
|
5306
|
+
|
5307
|
+
msgid "Verify checksum for one or more products"
|
5308
|
+
msgstr ""
|
5309
|
+
|
5310
|
+
msgid "Verify checksum of repository contents"
|
5311
|
+
msgstr ""
|
5312
|
+
|
5103
5313
|
msgid "Version"
|
5104
5314
|
msgstr ""
|
5105
5315
|
|
@@ -5117,7 +5327,7 @@ msgstr ""
|
|
5117
5327
|
msgid "Virtual"
|
5118
5328
|
msgstr "Virtuel"
|
5119
5329
|
|
5120
|
-
msgid "When Simple Content Access is enabled, hosts
|
5330
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5121
5331
|
msgstr ""
|
5122
5332
|
|
5123
5333
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5186,6 +5396,9 @@ msgstr "Vous ne pouvez pas définir un id de parent d'organisation . Cette fonct
|
|
5186
5396
|
msgid "You currently don't have any Content Views."
|
5187
5397
|
msgstr ""
|
5188
5398
|
|
5399
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5400
|
+
msgstr ""
|
5401
|
+
|
5189
5402
|
msgid "You do not have permissions to delete %s"
|
5190
5403
|
msgstr "Vous ne disposez pas des droits nécessaires pour supprimer %s"
|
5191
5404
|
|
@@ -5295,6 +5508,9 @@ msgstr "une organisation"
|
|
5295
5508
|
msgid "an ostree branch"
|
5296
5509
|
msgstr ""
|
5297
5510
|
|
5511
|
+
msgid "are only allowed for Yum repositories."
|
5512
|
+
msgstr ""
|
5513
|
+
|
5298
5514
|
msgid "attempted to sync without a feed URL"
|
5299
5515
|
msgstr ""
|
5300
5516
|
|
@@ -5313,6 +5529,9 @@ msgstr ""
|
|
5313
5529
|
msgid "can't be blank"
|
5314
5530
|
msgstr "ne peut pas être vide"
|
5315
5531
|
|
5532
|
+
msgid "cannot add filter to import-only view"
|
5533
|
+
msgstr ""
|
5534
|
+
|
5316
5535
|
msgid "cannot be a binary file."
|
5317
5536
|
msgstr "ne peut pas être un fichier binaire."
|
5318
5537
|
|
@@ -5368,13 +5587,13 @@ msgstr ""
|
|
5368
5587
|
msgid "checking Pulp task status"
|
5369
5588
|
msgstr ""
|
5370
5589
|
|
5371
|
-
msgid "comma
|
5590
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5372
5591
|
msgstr ""
|
5373
5592
|
|
5374
|
-
msgid "comma
|
5593
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5375
5594
|
msgstr ""
|
5376
5595
|
|
5377
|
-
msgid "comma
|
5596
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5378
5597
|
msgstr ""
|
5379
5598
|
|
5380
5599
|
msgid "composite content view identifier"
|
@@ -5604,9 +5823,6 @@ msgstr ""
|
|
5604
5823
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5605
5824
|
msgstr ""
|
5606
5825
|
|
5607
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5608
|
-
msgstr ""
|
5609
|
-
|
5610
5826
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5611
5827
|
msgstr ""
|
5612
5828
|
|
@@ -5644,6 +5860,9 @@ msgstr ""
|
|
5644
5860
|
msgid "invalid container image name"
|
5645
5861
|
msgstr ""
|
5646
5862
|
|
5863
|
+
msgid "invalid: Repositories can only require one OS version."
|
5864
|
+
msgstr ""
|
5865
|
+
|
5647
5866
|
msgid "is already attached to the capsule"
|
5648
5867
|
msgstr "est déjà attaché à la capsule"
|
5649
5868
|
|
@@ -5683,6 +5902,9 @@ msgstr "nombre maximum d'hôtes de contenu enregistrés"
|
|
5683
5902
|
msgid "maximum size of each ISO in MB"
|
5684
5903
|
msgstr ""
|
5685
5904
|
|
5905
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5906
|
+
msgstr ""
|
5907
|
+
|
5686
5908
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5687
5909
|
msgstr ""
|
5688
5910
|
|
@@ -5704,6 +5926,9 @@ msgstr "doit être une valeur entière positive."
|
|
5704
5926
|
msgid "must be one of the following: %s"
|
5705
5927
|
msgstr "doit être une des valeurs suivantes : %s"
|
5706
5928
|
|
5929
|
+
msgid "must be one of: %s"
|
5930
|
+
msgstr ""
|
5931
|
+
|
5707
5932
|
msgid "must be unique within one organization"
|
5708
5933
|
msgstr "doit être unique dans une organisation"
|
5709
5934
|
|
@@ -5962,6 +6187,9 @@ msgstr ""
|
|
5962
6187
|
msgid "the uuid of the puppet module to associate"
|
5963
6188
|
msgstr "l'uuid du module puppet à associer"
|
5964
6189
|
|
6190
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6191
|
+
msgstr ""
|
6192
|
+
|
5965
6193
|
msgid "true if the latest version of the component's content view is desired"
|
5966
6194
|
msgstr ""
|
5967
6195
|
|