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/hi/katello.po
CHANGED
@@ -19,6 +19,11 @@ msgstr ""
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20
20
|
"X-Generator: Zanata 3.6.2\n"
|
21
21
|
|
22
|
+
msgid ""
|
23
|
+
"\n"
|
24
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
25
|
+
msgstr ""
|
26
|
+
|
22
27
|
msgid " %{errata_count} Errata"
|
23
28
|
msgstr ""
|
24
29
|
|
@@ -403,6 +408,9 @@ msgstr ""
|
|
403
408
|
msgid "Action with sub plans"
|
404
409
|
msgstr ""
|
405
410
|
|
411
|
+
msgid "Activation Key(s)"
|
412
|
+
msgstr ""
|
413
|
+
|
406
414
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
407
415
|
msgid "Activation Keys"
|
408
416
|
msgstr "सक्रियकरण कुंजी"
|
@@ -410,6 +418,9 @@ msgstr "सक्रियकरण कुंजी"
|
|
410
418
|
msgid "Activation key ID"
|
411
419
|
msgstr ""
|
412
420
|
|
421
|
+
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."
|
422
|
+
msgstr ""
|
423
|
+
|
413
424
|
#, fuzzy
|
414
425
|
msgid "Activation keys and subscriptions can be managed"
|
415
426
|
msgstr "सक्रियकरण कुंजी '%s' बनाया गया था."
|
@@ -464,6 +475,9 @@ msgstr ""
|
|
464
475
|
msgid "Adding content units"
|
465
476
|
msgstr ""
|
466
477
|
|
478
|
+
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}"
|
479
|
+
msgstr ""
|
480
|
+
|
467
481
|
msgid "Addons"
|
468
482
|
msgstr ""
|
469
483
|
|
@@ -568,6 +582,9 @@ msgstr ""
|
|
568
582
|
msgid "Artifacts"
|
569
583
|
msgstr ""
|
570
584
|
|
585
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
586
|
+
msgstr ""
|
587
|
+
|
571
588
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
572
589
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
573
590
|
msgstr[0] ""
|
@@ -616,9 +633,6 @@ msgstr ""
|
|
616
633
|
msgid "Author"
|
617
634
|
msgstr ""
|
618
635
|
|
619
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
620
|
-
msgstr ""
|
621
|
-
|
622
636
|
msgid "Auto Publish - Triggered by '%s'"
|
623
637
|
msgstr ""
|
624
638
|
|
@@ -841,6 +855,9 @@ msgstr ""
|
|
841
855
|
msgid "Cannot delete view while it exists in environments"
|
842
856
|
msgstr "दूसरे वातावरण के नमूने को बदल नहीं सकते हैं"
|
843
857
|
|
858
|
+
msgid "Cannot import a composite content view"
|
859
|
+
msgstr ""
|
860
|
+
|
844
861
|
msgid "Cannot import a custom subscription from a redhat product."
|
845
862
|
msgstr ""
|
846
863
|
|
@@ -896,12 +913,18 @@ msgstr ""
|
|
896
913
|
msgid "Cannot upload Container Image content."
|
897
914
|
msgstr ""
|
898
915
|
|
916
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
917
|
+
msgstr ""
|
918
|
+
|
899
919
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
900
920
|
msgstr ""
|
901
921
|
|
902
922
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
903
923
|
msgstr ""
|
904
924
|
|
925
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
926
|
+
msgstr ""
|
927
|
+
|
905
928
|
msgid "Check services before actions"
|
906
929
|
msgstr ""
|
907
930
|
|
@@ -937,7 +960,7 @@ msgstr ""
|
|
937
960
|
msgid "Combined Profile Update for %s"
|
938
961
|
msgstr ""
|
939
962
|
|
940
|
-
msgid "Comma
|
963
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
941
964
|
msgstr ""
|
942
965
|
|
943
966
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
@@ -993,10 +1016,16 @@ msgstr ""
|
|
993
1016
|
msgid "Content Download URL"
|
994
1017
|
msgstr ""
|
995
1018
|
|
1019
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1020
|
+
msgstr ""
|
1021
|
+
|
996
1022
|
#, fuzzy
|
997
1023
|
msgid "Content Hosts"
|
998
1024
|
msgstr "सामग्री"
|
999
1025
|
|
1026
|
+
msgid "Content Migration"
|
1027
|
+
msgstr ""
|
1028
|
+
|
1000
1029
|
msgid "Content Source"
|
1001
1030
|
msgstr ""
|
1002
1031
|
|
@@ -1048,9 +1077,15 @@ msgstr ""
|
|
1048
1077
|
msgid "Content View Version not set"
|
1049
1078
|
msgstr ""
|
1050
1079
|
|
1080
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1081
|
+
msgstr ""
|
1082
|
+
|
1051
1083
|
msgid "Content View and Environment not set for registration."
|
1052
1084
|
msgstr ""
|
1053
1085
|
|
1086
|
+
msgid "Content View id"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1054
1089
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1055
1090
|
msgid "Content Views"
|
1056
1091
|
msgstr "सामग्री दृश्य"
|
@@ -1089,6 +1124,9 @@ msgstr ""
|
|
1089
1124
|
msgid "Content view numeric identifier"
|
1090
1125
|
msgstr ""
|
1091
1126
|
|
1127
|
+
msgid "Content view version export history identifier"
|
1128
|
+
msgstr ""
|
1129
|
+
|
1092
1130
|
msgid "Content view version identifier"
|
1093
1131
|
msgstr ""
|
1094
1132
|
|
@@ -1111,13 +1149,13 @@ msgstr ""
|
|
1111
1149
|
msgid "Copy an activation key"
|
1112
1150
|
msgstr "सक्रियकरण कुंजी"
|
1113
1151
|
|
1152
|
+
msgid "Copy version units to library"
|
1153
|
+
msgstr ""
|
1154
|
+
|
1114
1155
|
#, fuzzy
|
1115
1156
|
msgid "Cores: %s"
|
1116
1157
|
msgstr "कारण: %s"
|
1117
1158
|
|
1118
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1119
|
-
msgstr ""
|
1120
|
-
|
1121
1159
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1122
1160
|
msgid "Could not delete organization '%s'."
|
1123
1161
|
msgstr "'%s' संगठन मिटा नहीं सका."
|
@@ -1128,6 +1166,12 @@ msgstr ""
|
|
1128
1166
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1129
1167
|
msgstr ""
|
1130
1168
|
|
1169
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1170
|
+
msgstr ""
|
1171
|
+
|
1172
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1173
|
+
msgstr ""
|
1174
|
+
|
1131
1175
|
msgid "Could not find Environment with ids: %s"
|
1132
1176
|
msgstr ""
|
1133
1177
|
|
@@ -1161,9 +1205,6 @@ msgstr ""
|
|
1161
1205
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1162
1206
|
msgstr ""
|
1163
1207
|
|
1164
|
-
msgid "Couldn't find Content Credential '%s'"
|
1165
|
-
msgstr ""
|
1166
|
-
|
1167
1208
|
#, fuzzy
|
1168
1209
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1169
1210
|
msgstr "आईडी '%s' के साथ उत्पाद नहीं ढूँढ़ सका"
|
@@ -1221,13 +1262,6 @@ msgstr "वातावऱण '%s' नहीं मिल सका"
|
|
1221
1262
|
msgid "Couldn't find errata ids '%s'"
|
1222
1263
|
msgstr "संगठन '%s' नहीं ढूँढ़ सका"
|
1223
1264
|
|
1224
|
-
#, fuzzy
|
1225
|
-
msgid "Couldn't find gpg key '%s'"
|
1226
|
-
msgstr "GPG कुँजी '%s' ने ढ़ूँढ़ सका"
|
1227
|
-
|
1228
|
-
msgid "Couldn't find host '%s'"
|
1229
|
-
msgstr ""
|
1230
|
-
|
1231
1265
|
msgid "Couldn't find host collection '%s'"
|
1232
1266
|
msgstr ""
|
1233
1267
|
|
@@ -1242,10 +1276,6 @@ msgstr "संगठन '%s' नहीं ढूँढ़ सका"
|
|
1242
1276
|
msgid "Couldn't find prior-environment '%s'"
|
1243
1277
|
msgstr "वातावऱण '%s' नहीं मिल सका"
|
1244
1278
|
|
1245
|
-
#, fuzzy
|
1246
|
-
msgid "Couldn't find product '%s'"
|
1247
|
-
msgstr "प्रदाता '%s' नहीं मिल सका"
|
1248
|
-
|
1249
1279
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1250
1280
|
msgid "Couldn't find product with id '%s'"
|
1251
1281
|
msgstr "आईडी '%s' के साथ उत्पाद नहीं ढूँढ़ सका"
|
@@ -1254,30 +1284,13 @@ msgstr "आईडी '%s' के साथ उत्पाद नहीं ढ
|
|
1254
1284
|
msgid "Couldn't find repository '%s'"
|
1255
1285
|
msgstr "'%s' रिपोजिटरी नहीं ढूँढ़ सका"
|
1256
1286
|
|
1257
|
-
#, fuzzy
|
1258
|
-
msgid "Couldn't find repository set with id '%s'."
|
1259
|
-
msgstr "'%s' रिपोजिटरी नहीं ढूँढ़ सका"
|
1260
|
-
|
1261
1287
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1262
1288
|
msgstr ""
|
1263
1289
|
|
1264
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1265
|
-
msgstr ""
|
1266
|
-
|
1267
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1268
|
-
msgstr ""
|
1269
|
-
|
1270
|
-
msgid "Couldn't find ssl client key '%s'"
|
1271
|
-
msgstr ""
|
1272
|
-
|
1273
1290
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1274
1291
|
msgid "Couldn't find subject of synchronization"
|
1275
1292
|
msgstr "तुल्यकालन का विषय नहीं मिल सका"
|
1276
1293
|
|
1277
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1278
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1279
|
-
msgstr "सिंक योजना '%{plan}' को संगठन '%{org}' में नहीं ढूँढ़ सका"
|
1280
|
-
|
1281
1294
|
msgid "Count"
|
1282
1295
|
msgstr ""
|
1283
1296
|
|
@@ -1348,6 +1361,9 @@ msgstr ""
|
|
1348
1361
|
msgid "Current organization not set."
|
1349
1362
|
msgstr ""
|
1350
1363
|
|
1364
|
+
msgid "Custom"
|
1365
|
+
msgstr ""
|
1366
|
+
|
1351
1367
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1352
1368
|
msgid "Custom Content Repositories"
|
1353
1369
|
msgstr "पसंदीदा अंतर्वस्तु रिपोजिटरी"
|
@@ -1561,9 +1577,15 @@ msgstr ""
|
|
1561
1577
|
msgid "Description of the repository"
|
1562
1578
|
msgstr ""
|
1563
1579
|
|
1580
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1581
|
+
msgstr ""
|
1582
|
+
|
1564
1583
|
msgid "Desired quantity of the pool"
|
1565
1584
|
msgstr ""
|
1566
1585
|
|
1586
|
+
msgid "Destination Server name"
|
1587
|
+
msgstr ""
|
1588
|
+
|
1567
1589
|
msgid "Destroy"
|
1568
1590
|
msgstr ""
|
1569
1591
|
|
@@ -1615,6 +1637,9 @@ msgstr ""
|
|
1615
1637
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1616
1638
|
msgstr ""
|
1617
1639
|
|
1640
|
+
msgid "Directory containing the exported Content View Version"
|
1641
|
+
msgstr ""
|
1642
|
+
|
1618
1643
|
msgid "Disable"
|
1619
1644
|
msgstr ""
|
1620
1645
|
|
@@ -1630,6 +1655,9 @@ msgstr ""
|
|
1630
1655
|
msgid "Disable simple content access for a manifest"
|
1631
1656
|
msgstr ""
|
1632
1657
|
|
1658
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1659
|
+
msgstr ""
|
1660
|
+
|
1633
1661
|
msgid "Disconnected mode"
|
1634
1662
|
msgstr ""
|
1635
1663
|
|
@@ -1714,6 +1742,9 @@ msgstr ""
|
|
1714
1742
|
msgid "Enabled Repositories"
|
1715
1743
|
msgstr ""
|
1716
1744
|
|
1745
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1746
|
+
msgstr ""
|
1747
|
+
|
1717
1748
|
msgid "End Date"
|
1718
1749
|
msgstr ""
|
1719
1750
|
|
@@ -1837,7 +1868,10 @@ msgstr ""
|
|
1837
1868
|
msgid "Export CSV"
|
1838
1869
|
msgstr ""
|
1839
1870
|
|
1840
|
-
msgid "Export
|
1871
|
+
msgid "Export Library"
|
1872
|
+
msgstr ""
|
1873
|
+
|
1874
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1841
1875
|
msgstr ""
|
1842
1876
|
|
1843
1877
|
msgid "Export a repository"
|
@@ -1846,9 +1880,15 @@ msgstr ""
|
|
1846
1880
|
msgid "Export as CSV"
|
1847
1881
|
msgstr ""
|
1848
1882
|
|
1883
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1884
|
+
msgstr ""
|
1885
|
+
|
1849
1886
|
msgid "Export to ISO format"
|
1850
1887
|
msgstr ""
|
1851
1888
|
|
1889
|
+
msgid "Export to ISO format."
|
1890
|
+
msgstr ""
|
1891
|
+
|
1852
1892
|
msgid "Exported version"
|
1853
1893
|
msgstr ""
|
1854
1894
|
|
@@ -1992,10 +2032,6 @@ msgstr ""
|
|
1992
2032
|
msgid "GPG Key URL"
|
1993
2033
|
msgstr ""
|
1994
2034
|
|
1995
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1996
|
-
msgid "GPG Keys"
|
1997
|
-
msgstr "जीपीजी कुंजी"
|
1998
|
-
|
1999
2035
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
2000
2036
|
msgid "Generate and Download"
|
2001
2037
|
msgstr "उत्पन्न करें और डाउनलोड़ करें"
|
@@ -2103,6 +2139,9 @@ msgstr ""
|
|
2103
2139
|
msgid "Host content and subscription details"
|
2104
2140
|
msgstr ""
|
2105
2141
|
|
2142
|
+
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."
|
2143
|
+
msgstr ""
|
2144
|
+
|
2106
2145
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2107
2146
|
msgstr ""
|
2108
2147
|
|
@@ -2127,6 +2166,9 @@ msgstr ""
|
|
2127
2166
|
msgid "Host id to list applicable packages for"
|
2128
2167
|
msgstr ""
|
2129
2168
|
|
2169
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2170
|
+
msgstr ""
|
2171
|
+
|
2130
2172
|
msgid "Host with ID %s already exists in the host collection."
|
2131
2173
|
msgstr ""
|
2132
2174
|
|
@@ -2281,6 +2323,9 @@ msgstr ""
|
|
2281
2323
|
msgid "Identifiers for Lifecycle Environment"
|
2282
2324
|
msgstr ""
|
2283
2325
|
|
2326
|
+
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"
|
2327
|
+
msgstr ""
|
2328
|
+
|
2284
2329
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2285
2330
|
msgstr ""
|
2286
2331
|
|
@@ -2323,6 +2368,15 @@ msgstr ""
|
|
2323
2368
|
msgid "Immediate"
|
2324
2369
|
msgstr ""
|
2325
2370
|
|
2371
|
+
msgid "Import"
|
2372
|
+
msgstr ""
|
2373
|
+
|
2374
|
+
msgid "Import Content View Version"
|
2375
|
+
msgstr ""
|
2376
|
+
|
2377
|
+
msgid "Import Default Content View"
|
2378
|
+
msgstr ""
|
2379
|
+
|
2326
2380
|
#, fuzzy
|
2327
2381
|
msgid "Import Manifest"
|
2328
2382
|
msgstr "आयात करें"
|
@@ -2345,6 +2399,12 @@ msgstr ""
|
|
2345
2399
|
msgid "Import a Manifest using the manifest tab above."
|
2346
2400
|
msgstr ""
|
2347
2401
|
|
2402
|
+
msgid "Import a content view version"
|
2403
|
+
msgstr ""
|
2404
|
+
|
2405
|
+
msgid "Import a content view version to the library"
|
2406
|
+
msgstr ""
|
2407
|
+
|
2348
2408
|
#, fuzzy
|
2349
2409
|
msgid "Import facts"
|
2350
2410
|
msgstr "आयात करें"
|
@@ -2352,6 +2412,15 @@ msgstr "आयात करें"
|
|
2352
2412
|
msgid "Import uploads into a repository"
|
2353
2413
|
msgstr ""
|
2354
2414
|
|
2415
|
+
msgid "Import-only can not be changed after creation"
|
2416
|
+
msgstr ""
|
2417
|
+
|
2418
|
+
msgid "Import-only content views can not be published directly"
|
2419
|
+
msgstr ""
|
2420
|
+
|
2421
|
+
msgid "Import-only content views will be available in a future version."
|
2422
|
+
msgstr ""
|
2423
|
+
|
2355
2424
|
msgid "Importing manifest into '%{subject}' failed."
|
2356
2425
|
msgstr ""
|
2357
2426
|
|
@@ -2536,6 +2605,9 @@ msgstr ""
|
|
2536
2605
|
msgid "Invalid params provided - date_type must be one of %s"
|
2537
2606
|
msgstr ""
|
2538
2607
|
|
2608
|
+
msgid "Invalid path specified."
|
2609
|
+
msgstr ""
|
2610
|
+
|
2539
2611
|
msgid ""
|
2540
2612
|
"Invalid puppet module parameters specified. \\\n"
|
2541
2613
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2544,6 +2616,12 @@ msgstr ""
|
|
2544
2616
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2545
2617
|
msgstr ""
|
2546
2618
|
|
2619
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2620
|
+
msgstr ""
|
2621
|
+
|
2622
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2623
|
+
msgstr ""
|
2624
|
+
|
2547
2625
|
msgid "Invalid value specified for Container Image repositories."
|
2548
2626
|
msgstr ""
|
2549
2627
|
|
@@ -2553,6 +2631,9 @@ msgstr ""
|
|
2553
2631
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2554
2632
|
msgstr ""
|
2555
2633
|
|
2634
|
+
msgid "Katello"
|
2635
|
+
msgstr ""
|
2636
|
+
|
2556
2637
|
msgid "Katello ID of local pool to update"
|
2557
2638
|
msgstr ""
|
2558
2639
|
|
@@ -2613,9 +2694,6 @@ msgstr ""
|
|
2613
2694
|
msgid "Learn more about adding Subscription Manifests"
|
2614
2695
|
msgstr ""
|
2615
2696
|
|
2616
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2617
|
-
msgstr ""
|
2618
|
-
|
2619
2697
|
#, fuzzy
|
2620
2698
|
msgid "Library lifecycle environments may not be deleted."
|
2621
2699
|
msgstr "वातावरण '%s' मिटाया गया था."
|
@@ -2717,6 +2795,9 @@ msgstr ""
|
|
2717
2795
|
msgid "List errata available for the content host"
|
2718
2796
|
msgstr ""
|
2719
2797
|
|
2798
|
+
msgid "List export histories"
|
2799
|
+
msgstr ""
|
2800
|
+
|
2720
2801
|
msgid "List filter rules"
|
2721
2802
|
msgstr ""
|
2722
2803
|
|
@@ -2870,6 +2951,9 @@ msgstr ""
|
|
2870
2951
|
msgid "List srpms"
|
2871
2952
|
msgstr ""
|
2872
2953
|
|
2954
|
+
msgid "List subscriptions"
|
2955
|
+
msgstr ""
|
2956
|
+
|
2873
2957
|
msgid "List sync plans"
|
2874
2958
|
msgstr ""
|
2875
2959
|
|
@@ -2958,6 +3042,9 @@ msgstr "संदेश"
|
|
2958
3042
|
msgid "Messaging connection"
|
2959
3043
|
msgstr ""
|
2960
3044
|
|
3045
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
3046
|
+
msgstr ""
|
3047
|
+
|
2961
3048
|
msgid "Mismatched"
|
2962
3049
|
msgstr ""
|
2963
3050
|
|
@@ -3097,6 +3184,9 @@ msgstr ""
|
|
3097
3184
|
msgid "No errors"
|
3098
3185
|
msgstr "कोई त्रुटि नहीं"
|
3099
3186
|
|
3187
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3188
|
+
msgstr ""
|
3189
|
+
|
3100
3190
|
msgid "No file uploaded"
|
3101
3191
|
msgstr ""
|
3102
3192
|
|
@@ -3109,12 +3199,18 @@ msgstr ""
|
|
3109
3199
|
msgid "No hosts registered with subscription-manager found in selection."
|
3110
3200
|
msgstr ""
|
3111
3201
|
|
3202
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3203
|
+
msgstr ""
|
3204
|
+
|
3112
3205
|
msgid "No manifest file uploaded"
|
3113
3206
|
msgstr ""
|
3114
3207
|
|
3115
3208
|
msgid "No matching content views found"
|
3116
3209
|
msgstr ""
|
3117
3210
|
|
3211
|
+
msgid "No matching repositories found"
|
3212
|
+
msgstr ""
|
3213
|
+
|
3118
3214
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3119
3215
|
msgid "No new packages installed"
|
3120
3216
|
msgstr "कोई नया संकुल संस्थापित नहीं किया गया"
|
@@ -3257,6 +3353,9 @@ msgstr ""
|
|
3257
3353
|
msgid "On-disk location for exported repositories"
|
3258
3354
|
msgstr ""
|
3259
3355
|
|
3356
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3357
|
+
msgstr ""
|
3358
|
+
|
3260
3359
|
#, fuzzy
|
3261
3360
|
msgid "One of parameters [ %s ] required but not specified."
|
3262
3361
|
msgstr "organization_id जरूरी लेकिन निर्दिष्ट नहीं."
|
@@ -3290,6 +3389,9 @@ msgstr ""
|
|
3290
3389
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3291
3390
|
msgstr ""
|
3292
3391
|
|
3392
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3393
|
+
msgstr ""
|
3394
|
+
|
3293
3395
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
3294
3396
|
msgid "Organization"
|
3295
3397
|
msgstr "संगठन"
|
@@ -3569,6 +3671,18 @@ msgstr ""
|
|
3569
3671
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3570
3672
|
msgstr ""
|
3571
3673
|
|
3674
|
+
msgid "Performs a full-export of a content view version."
|
3675
|
+
msgstr ""
|
3676
|
+
|
3677
|
+
msgid "Performs a full-export of the repositories in library."
|
3678
|
+
msgstr ""
|
3679
|
+
|
3680
|
+
msgid "Performs an incremental-export of a content view version."
|
3681
|
+
msgstr ""
|
3682
|
+
|
3683
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3684
|
+
msgstr ""
|
3685
|
+
|
3572
3686
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3573
3687
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3574
3688
|
msgstr "अनुमति की मनाही. उपयोक्ता '%{user}' के पास संगठन '%{org}' की पहुँच की अनुमति नहीं थी."
|
@@ -3580,6 +3694,9 @@ msgstr "भौतिक"
|
|
3580
3694
|
msgid "Plan numeric identifier"
|
3581
3695
|
msgstr ""
|
3582
3696
|
|
3697
|
+
msgid "Please add some repositories."
|
3698
|
+
msgstr ""
|
3699
|
+
|
3583
3700
|
msgid "Please enter a positive number above zero"
|
3584
3701
|
msgstr ""
|
3585
3702
|
|
@@ -3607,6 +3724,9 @@ msgstr ""
|
|
3607
3724
|
msgid "Please select one from the list below and you will be redirected."
|
3608
3725
|
msgstr ""
|
3609
3726
|
|
3727
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3728
|
+
msgstr ""
|
3729
|
+
|
3610
3730
|
msgid "Processing metadata"
|
3611
3731
|
msgstr ""
|
3612
3732
|
|
@@ -3714,6 +3834,9 @@ msgstr ""
|
|
3714
3834
|
msgid "Pulp"
|
3715
3835
|
msgstr ""
|
3716
3836
|
|
3837
|
+
msgid "Pulp 3 export destination filepath"
|
3838
|
+
msgstr ""
|
3839
|
+
|
3717
3840
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3718
3841
|
msgstr ""
|
3719
3842
|
|
@@ -3768,6 +3891,12 @@ msgstr ""
|
|
3768
3891
|
msgid "Pulp task error"
|
3769
3892
|
msgstr ""
|
3770
3893
|
|
3894
|
+
msgid "Pulp user or group unable to read '%s'."
|
3895
|
+
msgstr ""
|
3896
|
+
|
3897
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3898
|
+
msgstr ""
|
3899
|
+
|
3771
3900
|
msgid "Pulpcore"
|
3772
3901
|
msgstr ""
|
3773
3902
|
|
@@ -3844,6 +3973,9 @@ msgstr ""
|
|
3844
3973
|
msgid "Recommended Repositories"
|
3845
3974
|
msgstr ""
|
3846
3975
|
|
3976
|
+
msgid "Red Hat"
|
3977
|
+
msgstr ""
|
3978
|
+
|
3847
3979
|
#, fuzzy
|
3848
3980
|
msgid "Red Hat CDN URL"
|
3849
3981
|
msgstr "उत्पाद"
|
@@ -4079,6 +4211,9 @@ msgstr ""
|
|
4079
4211
|
msgid "Resolve Traces"
|
4080
4212
|
msgstr ""
|
4081
4213
|
|
4214
|
+
msgid "Resolve traces for one or more hosts"
|
4215
|
+
msgstr ""
|
4216
|
+
|
4082
4217
|
msgid "Resource"
|
4083
4218
|
msgstr ""
|
4084
4219
|
|
@@ -4158,6 +4293,9 @@ msgstr ""
|
|
4158
4293
|
msgid "Role"
|
4159
4294
|
msgstr ""
|
4160
4295
|
|
4296
|
+
msgid "Role of host"
|
4297
|
+
msgstr ""
|
4298
|
+
|
4161
4299
|
msgid "Run Sync Plan:"
|
4162
4300
|
msgstr ""
|
4163
4301
|
|
@@ -4262,6 +4400,9 @@ msgstr "सेवा स्तर %s"
|
|
4262
4400
|
msgid "Service Level (SLA)"
|
4263
4401
|
msgstr ""
|
4264
4402
|
|
4403
|
+
msgid "Service level of host"
|
4404
|
+
msgstr ""
|
4405
|
+
|
4265
4406
|
msgid "Service level to be used for autoheal"
|
4266
4407
|
msgstr ""
|
4267
4408
|
|
@@ -4365,6 +4506,15 @@ msgstr ""
|
|
4365
4506
|
msgid "Simple Content Access"
|
4366
4507
|
msgstr ""
|
4367
4508
|
|
4509
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4510
|
+
msgstr ""
|
4511
|
+
|
4512
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4513
|
+
msgstr ""
|
4514
|
+
|
4515
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4516
|
+
msgstr ""
|
4517
|
+
|
4368
4518
|
msgid "Size of file to upload"
|
4369
4519
|
msgstr ""
|
4370
4520
|
|
@@ -4399,6 +4549,9 @@ msgstr ""
|
|
4399
4549
|
msgid "Specify the list of units in each repo"
|
4400
4550
|
msgstr ""
|
4401
4551
|
|
4552
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4553
|
+
msgstr ""
|
4554
|
+
|
4402
4555
|
msgid "Stacking ID"
|
4403
4556
|
msgstr ""
|
4404
4557
|
|
@@ -4615,6 +4768,9 @@ msgstr ""
|
|
4615
4768
|
msgid "Sync plan identifier to attach"
|
4616
4769
|
msgstr ""
|
4617
4770
|
|
4771
|
+
msgid "Sync state"
|
4772
|
+
msgstr ""
|
4773
|
+
|
4618
4774
|
msgid "Synced Content"
|
4619
4775
|
msgstr ""
|
4620
4776
|
|
@@ -4680,6 +4836,9 @@ msgstr "'%s' वातावरण में चेंजसेट समाह
|
|
4680
4836
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4681
4837
|
msgstr ""
|
4682
4838
|
|
4839
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4840
|
+
msgstr ""
|
4841
|
+
|
4683
4842
|
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."
|
4684
4843
|
msgstr ""
|
4685
4844
|
|
@@ -4721,15 +4880,26 @@ msgstr ""
|
|
4721
4880
|
msgid "The erratum type must be an array. Invalid value provided"
|
4722
4881
|
msgstr ""
|
4723
4882
|
|
4883
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4884
|
+
msgstr ""
|
4885
|
+
|
4724
4886
|
msgid "The field to sort the data by. Defaults to the created date."
|
4725
4887
|
msgstr ""
|
4726
4888
|
|
4727
4889
|
msgid "The following hosts have errata that apply to them: "
|
4728
4890
|
msgstr ""
|
4729
4891
|
|
4892
|
+
msgid ""
|
4893
|
+
"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"
|
4894
|
+
" %{repos}"
|
4895
|
+
msgstr ""
|
4896
|
+
|
4730
4897
|
msgid "The id of the host to alter"
|
4731
4898
|
msgstr ""
|
4732
4899
|
|
4900
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4901
|
+
msgstr ""
|
4902
|
+
|
4733
4903
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4734
4904
|
msgstr ""
|
4735
4905
|
|
@@ -4779,6 +4949,9 @@ msgstr ""
|
|
4779
4949
|
msgid "The requested resource does not belong to the specified organization"
|
4780
4950
|
msgstr ""
|
4781
4951
|
|
4952
|
+
msgid "The requested traces were not found for this host"
|
4953
|
+
msgstr ""
|
4954
|
+
|
4782
4955
|
msgid "The selected content source and lifecycle environment do not match"
|
4783
4956
|
msgstr ""
|
4784
4957
|
|
@@ -4842,6 +5015,9 @@ msgstr ""
|
|
4842
5015
|
msgid "There's no running synchronization for this smart proxy."
|
4843
5016
|
msgstr ""
|
4844
5017
|
|
5018
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
5019
|
+
msgstr ""
|
5020
|
+
|
4845
5021
|
msgid "This Host is not currently registered with subscription-manager."
|
4846
5022
|
msgstr ""
|
4847
5023
|
|
@@ -4851,6 +5027,9 @@ msgstr ""
|
|
4851
5027
|
msgid "This action doesn't support package groups"
|
4852
5028
|
msgstr ""
|
4853
5029
|
|
5030
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
5031
|
+
msgstr ""
|
5032
|
+
|
4854
5033
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4855
5034
|
msgstr ""
|
4856
5035
|
|
@@ -4981,10 +5160,16 @@ msgstr ""
|
|
4981
5160
|
msgid "Unable to detect puppet path"
|
4982
5161
|
msgstr ""
|
4983
5162
|
|
4984
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
5163
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4985
5164
|
msgstr ""
|
4986
5165
|
|
4987
|
-
msgid "Unable to export
|
5166
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5167
|
+
msgstr ""
|
5168
|
+
|
5169
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5170
|
+
msgstr ""
|
5171
|
+
|
5172
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4988
5173
|
msgstr ""
|
4989
5174
|
|
4990
5175
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5201,6 +5386,12 @@ msgstr ""
|
|
5201
5386
|
msgid "Updating Package..."
|
5202
5387
|
msgstr "संकुल अद्यतन कर रहा है..."
|
5203
5388
|
|
5389
|
+
msgid "Updating System Purpose for host"
|
5390
|
+
msgstr ""
|
5391
|
+
|
5392
|
+
msgid "Updating System Purpose for host %s"
|
5393
|
+
msgstr ""
|
5394
|
+
|
5204
5395
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5205
5396
|
msgid "Updating package group..."
|
5206
5397
|
msgstr "संकुल समूह अद्यतन कर रहा है..."
|
@@ -5258,9 +5449,15 @@ msgstr ""
|
|
5258
5449
|
msgid "Usage Type"
|
5259
5450
|
msgstr ""
|
5260
5451
|
|
5452
|
+
msgid "Usage of host"
|
5453
|
+
msgstr ""
|
5454
|
+
|
5261
5455
|
msgid "Use remote execution by default"
|
5262
5456
|
msgstr ""
|
5263
5457
|
|
5458
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5459
|
+
msgstr ""
|
5460
|
+
|
5264
5461
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5265
5462
|
msgstr ""
|
5266
5463
|
|
@@ -5285,6 +5482,15 @@ msgstr ""
|
|
5285
5482
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5286
5483
|
msgstr ""
|
5287
5484
|
|
5485
|
+
msgid "Verify checksum"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5488
|
+
msgid "Verify checksum for one or more products"
|
5489
|
+
msgstr ""
|
5490
|
+
|
5491
|
+
msgid "Verify checksum of repository contents"
|
5492
|
+
msgstr ""
|
5493
|
+
|
5288
5494
|
msgid "Version"
|
5289
5495
|
msgstr ""
|
5290
5496
|
|
@@ -5302,7 +5508,7 @@ msgstr ""
|
|
5302
5508
|
msgid "Virtual"
|
5303
5509
|
msgstr "आभासी"
|
5304
5510
|
|
5305
|
-
msgid "When Simple Content Access is enabled, hosts
|
5511
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5306
5512
|
msgstr ""
|
5307
5513
|
|
5308
5514
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5373,6 +5579,9 @@ msgstr "आपके पास उपयोक्ता %s के लिए त
|
|
5373
5579
|
msgid "You currently don't have any Content Views."
|
5374
5580
|
msgstr ""
|
5375
5581
|
|
5582
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5583
|
+
msgstr ""
|
5584
|
+
|
5376
5585
|
msgid "You do not have permissions to delete %s"
|
5377
5586
|
msgstr ""
|
5378
5587
|
|
@@ -5489,6 +5698,9 @@ msgstr "संगठन"
|
|
5489
5698
|
msgid "an ostree branch"
|
5490
5699
|
msgstr ""
|
5491
5700
|
|
5701
|
+
msgid "are only allowed for Yum repositories."
|
5702
|
+
msgstr ""
|
5703
|
+
|
5492
5704
|
msgid "attempted to sync without a feed URL"
|
5493
5705
|
msgstr ""
|
5494
5706
|
|
@@ -5508,6 +5720,9 @@ msgstr ""
|
|
5508
5720
|
msgid "can't be blank"
|
5509
5721
|
msgstr "रिक्त नहीं हो सकता"
|
5510
5722
|
|
5723
|
+
msgid "cannot add filter to import-only view"
|
5724
|
+
msgstr ""
|
5725
|
+
|
5511
5726
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5512
5727
|
msgid "cannot be a binary file."
|
5513
5728
|
msgstr "एक द्विपदीय फ़ाइल नहीं हो सकता है."
|
@@ -5572,13 +5787,13 @@ msgstr ""
|
|
5572
5787
|
msgid "checking Pulp task status"
|
5573
5788
|
msgstr ""
|
5574
5789
|
|
5575
|
-
msgid "comma
|
5790
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5576
5791
|
msgstr ""
|
5577
5792
|
|
5578
|
-
msgid "comma
|
5793
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5579
5794
|
msgstr ""
|
5580
5795
|
|
5581
|
-
msgid "comma
|
5796
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5582
5797
|
msgstr ""
|
5583
5798
|
|
5584
5799
|
msgid "composite content view identifier"
|
@@ -5810,9 +6025,6 @@ msgstr ""
|
|
5810
6025
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5811
6026
|
msgstr ""
|
5812
6027
|
|
5813
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5814
|
-
msgstr ""
|
5815
|
-
|
5816
6028
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5817
6029
|
msgstr ""
|
5818
6030
|
|
@@ -5852,6 +6064,9 @@ msgstr ""
|
|
5852
6064
|
msgid "invalid container image name"
|
5853
6065
|
msgstr ""
|
5854
6066
|
|
6067
|
+
msgid "invalid: Repositories can only require one OS version."
|
6068
|
+
msgstr ""
|
6069
|
+
|
5855
6070
|
msgid "is already attached to the capsule"
|
5856
6071
|
msgstr ""
|
5857
6072
|
|
@@ -5892,6 +6107,9 @@ msgstr ""
|
|
5892
6107
|
msgid "maximum size of each ISO in MB"
|
5893
6108
|
msgstr ""
|
5894
6109
|
|
6110
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6111
|
+
msgstr ""
|
6112
|
+
|
5895
6113
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5896
6114
|
msgstr ""
|
5897
6115
|
|
@@ -5914,6 +6132,9 @@ msgstr "धनात्मक पूर्णांक मान जरूर
|
|
5914
6132
|
msgid "must be one of the following: %s"
|
5915
6133
|
msgstr ""
|
5916
6134
|
|
6135
|
+
msgid "must be one of: %s"
|
6136
|
+
msgstr ""
|
6137
|
+
|
5917
6138
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5918
6139
|
msgid "must be unique within one organization"
|
5919
6140
|
msgstr "एक संगठन के भीतर अद्वितीय होना चाहिए"
|
@@ -6177,6 +6398,9 @@ msgstr ""
|
|
6177
6398
|
msgid "the uuid of the puppet module to associate"
|
6178
6399
|
msgstr ""
|
6179
6400
|
|
6401
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6402
|
+
msgstr ""
|
6403
|
+
|
6180
6404
|
msgid "true if the latest version of the component's content view is desired"
|
6181
6405
|
msgstr ""
|
6182
6406
|
|