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/gu/katello.po
CHANGED
@@ -21,6 +21,11 @@ msgstr ""
|
|
21
21
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22
22
|
"X-Generator: Zanata 3.6.2\n"
|
23
23
|
|
24
|
+
msgid ""
|
25
|
+
"\n"
|
26
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
27
|
+
msgstr ""
|
28
|
+
|
24
29
|
msgid " %{errata_count} Errata"
|
25
30
|
msgstr ""
|
26
31
|
|
@@ -405,6 +410,9 @@ msgstr ""
|
|
405
410
|
msgid "Action with sub plans"
|
406
411
|
msgstr ""
|
407
412
|
|
413
|
+
msgid "Activation Key(s)"
|
414
|
+
msgstr ""
|
415
|
+
|
408
416
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
409
417
|
msgid "Activation Keys"
|
410
418
|
msgstr "સક્રિયકરણ કીઓ"
|
@@ -412,6 +420,9 @@ msgstr "સક્રિયકરણ કીઓ"
|
|
412
420
|
msgid "Activation key ID"
|
413
421
|
msgstr ""
|
414
422
|
|
423
|
+
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."
|
424
|
+
msgstr ""
|
425
|
+
|
415
426
|
#, fuzzy
|
416
427
|
msgid "Activation keys and subscriptions can be managed"
|
417
428
|
msgstr "સક્રિયકરણ કી '%s' બનાવેલ હતી."
|
@@ -466,6 +477,9 @@ msgstr ""
|
|
466
477
|
msgid "Adding content units"
|
467
478
|
msgstr ""
|
468
479
|
|
480
|
+
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}"
|
481
|
+
msgstr ""
|
482
|
+
|
469
483
|
msgid "Addons"
|
470
484
|
msgstr ""
|
471
485
|
|
@@ -570,6 +584,9 @@ msgstr ""
|
|
570
584
|
msgid "Artifacts"
|
571
585
|
msgstr ""
|
572
586
|
|
587
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
588
|
+
msgstr ""
|
589
|
+
|
573
590
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
574
591
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
575
592
|
msgstr[0] ""
|
@@ -618,9 +635,6 @@ msgstr ""
|
|
618
635
|
msgid "Author"
|
619
636
|
msgstr ""
|
620
637
|
|
621
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
622
|
-
msgstr ""
|
623
|
-
|
624
638
|
msgid "Auto Publish - Triggered by '%s'"
|
625
639
|
msgstr ""
|
626
640
|
|
@@ -843,6 +857,9 @@ msgstr ""
|
|
843
857
|
msgid "Cannot delete view while it exists in environments"
|
844
858
|
msgstr "ટૅમ્પલેટને બદલી શકાતુ નથી કે જે બીજુ પર્યાવરણ છે"
|
845
859
|
|
860
|
+
msgid "Cannot import a composite content view"
|
861
|
+
msgstr ""
|
862
|
+
|
846
863
|
msgid "Cannot import a custom subscription from a redhat product."
|
847
864
|
msgstr ""
|
848
865
|
|
@@ -898,12 +915,18 @@ msgstr ""
|
|
898
915
|
msgid "Cannot upload Container Image content."
|
899
916
|
msgstr ""
|
900
917
|
|
918
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
919
|
+
msgstr ""
|
920
|
+
|
901
921
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
902
922
|
msgstr ""
|
903
923
|
|
904
924
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
905
925
|
msgstr ""
|
906
926
|
|
927
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
928
|
+
msgstr ""
|
929
|
+
|
907
930
|
msgid "Check services before actions"
|
908
931
|
msgstr ""
|
909
932
|
|
@@ -939,7 +962,7 @@ msgstr ""
|
|
939
962
|
msgid "Combined Profile Update for %s"
|
940
963
|
msgstr ""
|
941
964
|
|
942
|
-
msgid "Comma
|
965
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
943
966
|
msgstr ""
|
944
967
|
|
945
968
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author swkothar
|
@@ -995,10 +1018,16 @@ msgstr ""
|
|
995
1018
|
msgid "Content Download URL"
|
996
1019
|
msgstr ""
|
997
1020
|
|
1021
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1022
|
+
msgstr ""
|
1023
|
+
|
998
1024
|
#, fuzzy
|
999
1025
|
msgid "Content Hosts"
|
1000
1026
|
msgstr "સમાવિષ્ટ"
|
1001
1027
|
|
1028
|
+
msgid "Content Migration"
|
1029
|
+
msgstr ""
|
1030
|
+
|
1002
1031
|
msgid "Content Source"
|
1003
1032
|
msgstr ""
|
1004
1033
|
|
@@ -1050,9 +1079,15 @@ msgstr ""
|
|
1050
1079
|
msgid "Content View Version not set"
|
1051
1080
|
msgstr ""
|
1052
1081
|
|
1082
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1083
|
+
msgstr ""
|
1084
|
+
|
1053
1085
|
msgid "Content View and Environment not set for registration."
|
1054
1086
|
msgstr ""
|
1055
1087
|
|
1088
|
+
msgid "Content View id"
|
1089
|
+
msgstr ""
|
1090
|
+
|
1056
1091
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author swkothar
|
1057
1092
|
msgid "Content Views"
|
1058
1093
|
msgstr "સમાવિષ્ટ દૃશ્યો"
|
@@ -1091,6 +1126,9 @@ msgstr ""
|
|
1091
1126
|
msgid "Content view numeric identifier"
|
1092
1127
|
msgstr ""
|
1093
1128
|
|
1129
|
+
msgid "Content view version export history identifier"
|
1130
|
+
msgstr ""
|
1131
|
+
|
1094
1132
|
msgid "Content view version identifier"
|
1095
1133
|
msgstr ""
|
1096
1134
|
|
@@ -1113,13 +1151,13 @@ msgstr ""
|
|
1113
1151
|
msgid "Copy an activation key"
|
1114
1152
|
msgstr "સક્રિયકરણ કીઓ"
|
1115
1153
|
|
1154
|
+
msgid "Copy version units to library"
|
1155
|
+
msgstr ""
|
1156
|
+
|
1116
1157
|
#, fuzzy
|
1117
1158
|
msgid "Cores: %s"
|
1118
1159
|
msgstr "કારણ: %s"
|
1119
1160
|
|
1120
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1121
|
-
msgstr ""
|
1122
|
-
|
1123
1161
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1124
1162
|
msgid "Could not delete organization '%s'."
|
1125
1163
|
msgstr "સંસ્થા '%s' ને કાઢી શક્યા નહિં."
|
@@ -1130,6 +1168,12 @@ msgstr ""
|
|
1130
1168
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1131
1169
|
msgstr ""
|
1132
1170
|
|
1171
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1172
|
+
msgstr ""
|
1173
|
+
|
1174
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1175
|
+
msgstr ""
|
1176
|
+
|
1133
1177
|
msgid "Could not find Environment with ids: %s"
|
1134
1178
|
msgstr ""
|
1135
1179
|
|
@@ -1163,9 +1207,6 @@ msgstr ""
|
|
1163
1207
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1164
1208
|
msgstr ""
|
1165
1209
|
|
1166
|
-
msgid "Couldn't find Content Credential '%s'"
|
1167
|
-
msgstr ""
|
1168
|
-
|
1169
1210
|
#, fuzzy
|
1170
1211
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1171
1212
|
msgstr "id '%s' સાથે પ્રોડક્ટને શોધી શક્યા નહિં"
|
@@ -1223,13 +1264,6 @@ msgstr "પર્યાવરણ '%s' ને શોધી શક્યા નહ
|
|
1223
1264
|
msgid "Couldn't find errata ids '%s'"
|
1224
1265
|
msgstr "સંસ્થા '%s' શોધી શક્યા નહિં"
|
1225
1266
|
|
1226
|
-
#, fuzzy
|
1227
|
-
msgid "Couldn't find gpg key '%s'"
|
1228
|
-
msgstr "GPG કી '%s' ને શોધી શક્યા નહિં"
|
1229
|
-
|
1230
|
-
msgid "Couldn't find host '%s'"
|
1231
|
-
msgstr ""
|
1232
|
-
|
1233
1267
|
msgid "Couldn't find host collection '%s'"
|
1234
1268
|
msgstr ""
|
1235
1269
|
|
@@ -1244,10 +1278,6 @@ msgstr "સંસ્થા '%s' શોધી શક્યા નહિં"
|
|
1244
1278
|
msgid "Couldn't find prior-environment '%s'"
|
1245
1279
|
msgstr "પર્યાવરણ '%s' ને શોધી શક્યા નહિં"
|
1246
1280
|
|
1247
|
-
#, fuzzy
|
1248
|
-
msgid "Couldn't find product '%s'"
|
1249
|
-
msgstr "પ્રદાતા '%s' ને શોધી શક્યા નહિં"
|
1250
|
-
|
1251
1281
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1252
1282
|
msgid "Couldn't find product with id '%s'"
|
1253
1283
|
msgstr "id '%s' સાથે પ્રોડક્ટને શોધી શક્યા નહિં"
|
@@ -1256,30 +1286,13 @@ msgstr "id '%s' સાથે પ્રોડક્ટને શોધી શક
|
|
1256
1286
|
msgid "Couldn't find repository '%s'"
|
1257
1287
|
msgstr "રિપોઝીટરી '%s' ને શોધી શક્યા નહિં"
|
1258
1288
|
|
1259
|
-
#, fuzzy
|
1260
|
-
msgid "Couldn't find repository set with id '%s'."
|
1261
|
-
msgstr "રિપોઝીટરી '%s' ને શોધી શક્યા નહિં"
|
1262
|
-
|
1263
1289
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1264
1290
|
msgstr ""
|
1265
1291
|
|
1266
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1267
|
-
msgstr ""
|
1268
|
-
|
1269
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1270
|
-
msgstr ""
|
1271
|
-
|
1272
|
-
msgid "Couldn't find ssl client key '%s'"
|
1273
|
-
msgstr ""
|
1274
|
-
|
1275
1292
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1276
1293
|
msgid "Couldn't find subject of synchronization"
|
1277
1294
|
msgstr "સુમેળનાં સુયોજનને શોધી શક્યા નહિં"
|
1278
1295
|
|
1279
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author swkothar
|
1280
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1281
|
-
msgstr "સંસ્થા '%{org}' માં સુમેળ યોજના '%{plan}' ને શોધી શક્યા નહિં"
|
1282
|
-
|
1283
1296
|
msgid "Count"
|
1284
1297
|
msgstr ""
|
1285
1298
|
|
@@ -1350,6 +1363,9 @@ msgstr ""
|
|
1350
1363
|
msgid "Current organization not set."
|
1351
1364
|
msgstr ""
|
1352
1365
|
|
1366
|
+
msgid "Custom"
|
1367
|
+
msgstr ""
|
1368
|
+
|
1353
1369
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1354
1370
|
msgid "Custom Content Repositories"
|
1355
1371
|
msgstr "વૈવિધ્ય સમાવિષ્ટ રિપોઝીટરીઓ"
|
@@ -1563,9 +1579,15 @@ msgstr ""
|
|
1563
1579
|
msgid "Description of the repository"
|
1564
1580
|
msgstr ""
|
1565
1581
|
|
1582
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1583
|
+
msgstr ""
|
1584
|
+
|
1566
1585
|
msgid "Desired quantity of the pool"
|
1567
1586
|
msgstr ""
|
1568
1587
|
|
1588
|
+
msgid "Destination Server name"
|
1589
|
+
msgstr ""
|
1590
|
+
|
1569
1591
|
msgid "Destroy"
|
1570
1592
|
msgstr ""
|
1571
1593
|
|
@@ -1617,6 +1639,9 @@ msgstr ""
|
|
1617
1639
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1618
1640
|
msgstr ""
|
1619
1641
|
|
1642
|
+
msgid "Directory containing the exported Content View Version"
|
1643
|
+
msgstr ""
|
1644
|
+
|
1620
1645
|
msgid "Disable"
|
1621
1646
|
msgstr ""
|
1622
1647
|
|
@@ -1632,6 +1657,9 @@ msgstr ""
|
|
1632
1657
|
msgid "Disable simple content access for a manifest"
|
1633
1658
|
msgstr ""
|
1634
1659
|
|
1660
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1661
|
+
msgstr ""
|
1662
|
+
|
1635
1663
|
msgid "Disconnected mode"
|
1636
1664
|
msgstr ""
|
1637
1665
|
|
@@ -1716,6 +1744,9 @@ msgstr ""
|
|
1716
1744
|
msgid "Enabled Repositories"
|
1717
1745
|
msgstr ""
|
1718
1746
|
|
1747
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1748
|
+
msgstr ""
|
1749
|
+
|
1719
1750
|
msgid "End Date"
|
1720
1751
|
msgstr ""
|
1721
1752
|
|
@@ -1839,7 +1870,10 @@ msgstr ""
|
|
1839
1870
|
msgid "Export CSV"
|
1840
1871
|
msgstr ""
|
1841
1872
|
|
1842
|
-
msgid "Export
|
1873
|
+
msgid "Export Library"
|
1874
|
+
msgstr ""
|
1875
|
+
|
1876
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1843
1877
|
msgstr ""
|
1844
1878
|
|
1845
1879
|
msgid "Export a repository"
|
@@ -1848,9 +1882,15 @@ msgstr ""
|
|
1848
1882
|
msgid "Export as CSV"
|
1849
1883
|
msgstr ""
|
1850
1884
|
|
1885
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1886
|
+
msgstr ""
|
1887
|
+
|
1851
1888
|
msgid "Export to ISO format"
|
1852
1889
|
msgstr ""
|
1853
1890
|
|
1891
|
+
msgid "Export to ISO format."
|
1892
|
+
msgstr ""
|
1893
|
+
|
1854
1894
|
msgid "Exported version"
|
1855
1895
|
msgstr ""
|
1856
1896
|
|
@@ -1994,10 +2034,6 @@ msgstr ""
|
|
1994
2034
|
msgid "GPG Key URL"
|
1995
2035
|
msgstr ""
|
1996
2036
|
|
1997
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1998
|
-
msgid "GPG Keys"
|
1999
|
-
msgstr "GPG કી"
|
2000
|
-
|
2001
2037
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author swkothar
|
2002
2038
|
msgid "Generate and Download"
|
2003
2039
|
msgstr "ઉત્પન્ન કરો અને ડાઉનલોડ કરો"
|
@@ -2105,6 +2141,9 @@ msgstr ""
|
|
2105
2141
|
msgid "Host content and subscription details"
|
2106
2142
|
msgstr ""
|
2107
2143
|
|
2144
|
+
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."
|
2145
|
+
msgstr ""
|
2146
|
+
|
2108
2147
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2109
2148
|
msgstr ""
|
2110
2149
|
|
@@ -2129,6 +2168,9 @@ msgstr ""
|
|
2129
2168
|
msgid "Host id to list applicable packages for"
|
2130
2169
|
msgstr ""
|
2131
2170
|
|
2171
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2172
|
+
msgstr ""
|
2173
|
+
|
2132
2174
|
msgid "Host with ID %s already exists in the host collection."
|
2133
2175
|
msgstr ""
|
2134
2176
|
|
@@ -2283,6 +2325,9 @@ msgstr ""
|
|
2283
2325
|
msgid "Identifiers for Lifecycle Environment"
|
2284
2326
|
msgstr ""
|
2285
2327
|
|
2328
|
+
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"
|
2329
|
+
msgstr ""
|
2330
|
+
|
2286
2331
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2287
2332
|
msgstr ""
|
2288
2333
|
|
@@ -2325,6 +2370,15 @@ msgstr ""
|
|
2325
2370
|
msgid "Immediate"
|
2326
2371
|
msgstr ""
|
2327
2372
|
|
2373
|
+
msgid "Import"
|
2374
|
+
msgstr ""
|
2375
|
+
|
2376
|
+
msgid "Import Content View Version"
|
2377
|
+
msgstr ""
|
2378
|
+
|
2379
|
+
msgid "Import Default Content View"
|
2380
|
+
msgstr ""
|
2381
|
+
|
2328
2382
|
#, fuzzy
|
2329
2383
|
msgid "Import Manifest"
|
2330
2384
|
msgstr "આયાત કરો"
|
@@ -2347,6 +2401,12 @@ msgstr ""
|
|
2347
2401
|
msgid "Import a Manifest using the manifest tab above."
|
2348
2402
|
msgstr ""
|
2349
2403
|
|
2404
|
+
msgid "Import a content view version"
|
2405
|
+
msgstr ""
|
2406
|
+
|
2407
|
+
msgid "Import a content view version to the library"
|
2408
|
+
msgstr ""
|
2409
|
+
|
2350
2410
|
#, fuzzy
|
2351
2411
|
msgid "Import facts"
|
2352
2412
|
msgstr "આયાત કરો"
|
@@ -2354,6 +2414,15 @@ msgstr "આયાત કરો"
|
|
2354
2414
|
msgid "Import uploads into a repository"
|
2355
2415
|
msgstr ""
|
2356
2416
|
|
2417
|
+
msgid "Import-only can not be changed after creation"
|
2418
|
+
msgstr ""
|
2419
|
+
|
2420
|
+
msgid "Import-only content views can not be published directly"
|
2421
|
+
msgstr ""
|
2422
|
+
|
2423
|
+
msgid "Import-only content views will be available in a future version."
|
2424
|
+
msgstr ""
|
2425
|
+
|
2357
2426
|
msgid "Importing manifest into '%{subject}' failed."
|
2358
2427
|
msgstr ""
|
2359
2428
|
|
@@ -2538,6 +2607,9 @@ msgstr ""
|
|
2538
2607
|
msgid "Invalid params provided - date_type must be one of %s"
|
2539
2608
|
msgstr ""
|
2540
2609
|
|
2610
|
+
msgid "Invalid path specified."
|
2611
|
+
msgstr ""
|
2612
|
+
|
2541
2613
|
msgid ""
|
2542
2614
|
"Invalid puppet module parameters specified. \\\n"
|
2543
2615
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2546,6 +2618,12 @@ msgstr ""
|
|
2546
2618
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2547
2619
|
msgstr ""
|
2548
2620
|
|
2621
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2622
|
+
msgstr ""
|
2623
|
+
|
2624
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2625
|
+
msgstr ""
|
2626
|
+
|
2549
2627
|
msgid "Invalid value specified for Container Image repositories."
|
2550
2628
|
msgstr ""
|
2551
2629
|
|
@@ -2555,6 +2633,9 @@ msgstr ""
|
|
2555
2633
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2556
2634
|
msgstr ""
|
2557
2635
|
|
2636
|
+
msgid "Katello"
|
2637
|
+
msgstr ""
|
2638
|
+
|
2558
2639
|
msgid "Katello ID of local pool to update"
|
2559
2640
|
msgstr ""
|
2560
2641
|
|
@@ -2615,9 +2696,6 @@ msgstr ""
|
|
2615
2696
|
msgid "Learn more about adding Subscription Manifests"
|
2616
2697
|
msgstr ""
|
2617
2698
|
|
2618
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2619
|
-
msgstr ""
|
2620
|
-
|
2621
2699
|
#, fuzzy
|
2622
2700
|
msgid "Library lifecycle environments may not be deleted."
|
2623
2701
|
msgstr "પર્યાવરણ '%s' ને કાઢી નાંખેલ હતુ."
|
@@ -2719,6 +2797,9 @@ msgstr ""
|
|
2719
2797
|
msgid "List errata available for the content host"
|
2720
2798
|
msgstr ""
|
2721
2799
|
|
2800
|
+
msgid "List export histories"
|
2801
|
+
msgstr ""
|
2802
|
+
|
2722
2803
|
msgid "List filter rules"
|
2723
2804
|
msgstr ""
|
2724
2805
|
|
@@ -2872,6 +2953,9 @@ msgstr ""
|
|
2872
2953
|
msgid "List srpms"
|
2873
2954
|
msgstr ""
|
2874
2955
|
|
2956
|
+
msgid "List subscriptions"
|
2957
|
+
msgstr ""
|
2958
|
+
|
2875
2959
|
msgid "List sync plans"
|
2876
2960
|
msgstr ""
|
2877
2961
|
|
@@ -2960,6 +3044,9 @@ msgstr "સંદેશો"
|
|
2960
3044
|
msgid "Messaging connection"
|
2961
3045
|
msgstr ""
|
2962
3046
|
|
3047
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
3048
|
+
msgstr ""
|
3049
|
+
|
2963
3050
|
msgid "Mismatched"
|
2964
3051
|
msgstr ""
|
2965
3052
|
|
@@ -3099,6 +3186,9 @@ msgstr ""
|
|
3099
3186
|
msgid "No errors"
|
3100
3187
|
msgstr "ભૂલો નથી"
|
3101
3188
|
|
3189
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3190
|
+
msgstr ""
|
3191
|
+
|
3102
3192
|
msgid "No file uploaded"
|
3103
3193
|
msgstr ""
|
3104
3194
|
|
@@ -3111,12 +3201,18 @@ msgstr ""
|
|
3111
3201
|
msgid "No hosts registered with subscription-manager found in selection."
|
3112
3202
|
msgstr ""
|
3113
3203
|
|
3204
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3205
|
+
msgstr ""
|
3206
|
+
|
3114
3207
|
msgid "No manifest file uploaded"
|
3115
3208
|
msgstr ""
|
3116
3209
|
|
3117
3210
|
msgid "No matching content views found"
|
3118
3211
|
msgstr ""
|
3119
3212
|
|
3213
|
+
msgid "No matching repositories found"
|
3214
|
+
msgstr ""
|
3215
|
+
|
3120
3216
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3121
3217
|
msgid "No new packages installed"
|
3122
3218
|
msgstr "નવાં પેકેજ સ્થાપિત થયેલ નથી"
|
@@ -3259,6 +3355,9 @@ msgstr ""
|
|
3259
3355
|
msgid "On-disk location for exported repositories"
|
3260
3356
|
msgstr ""
|
3261
3357
|
|
3358
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3359
|
+
msgstr ""
|
3360
|
+
|
3262
3361
|
#, fuzzy
|
3263
3362
|
msgid "One of parameters [ %s ] required but not specified."
|
3264
3363
|
msgstr "સંસ્થા id જરૂરી છે પરંતુ સ્પષ્ટ થયેલ નથી (_i)."
|
@@ -3292,6 +3391,9 @@ msgstr ""
|
|
3292
3391
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3293
3392
|
msgstr ""
|
3294
3393
|
|
3394
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3395
|
+
msgstr ""
|
3396
|
+
|
3295
3397
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author swkothar
|
3296
3398
|
msgid "Organization"
|
3297
3399
|
msgstr "સંસ્થા"
|
@@ -3571,6 +3673,18 @@ msgstr ""
|
|
3571
3673
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3572
3674
|
msgstr ""
|
3573
3675
|
|
3676
|
+
msgid "Performs a full-export of a content view version."
|
3677
|
+
msgstr ""
|
3678
|
+
|
3679
|
+
msgid "Performs a full-export of the repositories in library."
|
3680
|
+
msgstr ""
|
3681
|
+
|
3682
|
+
msgid "Performs an incremental-export of a content view version."
|
3683
|
+
msgstr ""
|
3684
|
+
|
3685
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3686
|
+
msgstr ""
|
3687
|
+
|
3574
3688
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author swkothar
|
3575
3689
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3576
3690
|
msgstr "પરવાનગી નામંજૂર. વપરાશકર્તા '%{user}' ની પાસે સંસ્થા '%{org}' ને વાપરવા પરવાનગી નથી."
|
@@ -3582,6 +3696,9 @@ msgstr "ભૌતિક"
|
|
3582
3696
|
msgid "Plan numeric identifier"
|
3583
3697
|
msgstr ""
|
3584
3698
|
|
3699
|
+
msgid "Please add some repositories."
|
3700
|
+
msgstr ""
|
3701
|
+
|
3585
3702
|
msgid "Please enter a positive number above zero"
|
3586
3703
|
msgstr ""
|
3587
3704
|
|
@@ -3609,6 +3726,9 @@ msgstr ""
|
|
3609
3726
|
msgid "Please select one from the list below and you will be redirected."
|
3610
3727
|
msgstr ""
|
3611
3728
|
|
3729
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3730
|
+
msgstr ""
|
3731
|
+
|
3612
3732
|
msgid "Processing metadata"
|
3613
3733
|
msgstr ""
|
3614
3734
|
|
@@ -3716,6 +3836,9 @@ msgstr ""
|
|
3716
3836
|
msgid "Pulp"
|
3717
3837
|
msgstr ""
|
3718
3838
|
|
3839
|
+
msgid "Pulp 3 export destination filepath"
|
3840
|
+
msgstr ""
|
3841
|
+
|
3719
3842
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3720
3843
|
msgstr ""
|
3721
3844
|
|
@@ -3770,6 +3893,12 @@ msgstr ""
|
|
3770
3893
|
msgid "Pulp task error"
|
3771
3894
|
msgstr ""
|
3772
3895
|
|
3896
|
+
msgid "Pulp user or group unable to read '%s'."
|
3897
|
+
msgstr ""
|
3898
|
+
|
3899
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3900
|
+
msgstr ""
|
3901
|
+
|
3773
3902
|
msgid "Pulpcore"
|
3774
3903
|
msgstr ""
|
3775
3904
|
|
@@ -3846,6 +3975,9 @@ msgstr ""
|
|
3846
3975
|
msgid "Recommended Repositories"
|
3847
3976
|
msgstr ""
|
3848
3977
|
|
3978
|
+
msgid "Red Hat"
|
3979
|
+
msgstr ""
|
3980
|
+
|
3849
3981
|
#, fuzzy
|
3850
3982
|
msgid "Red Hat CDN URL"
|
3851
3983
|
msgstr "પ્રોડક્ટો"
|
@@ -4081,6 +4213,9 @@ msgstr ""
|
|
4081
4213
|
msgid "Resolve Traces"
|
4082
4214
|
msgstr ""
|
4083
4215
|
|
4216
|
+
msgid "Resolve traces for one or more hosts"
|
4217
|
+
msgstr ""
|
4218
|
+
|
4084
4219
|
msgid "Resource"
|
4085
4220
|
msgstr ""
|
4086
4221
|
|
@@ -4160,6 +4295,9 @@ msgstr ""
|
|
4160
4295
|
msgid "Role"
|
4161
4296
|
msgstr ""
|
4162
4297
|
|
4298
|
+
msgid "Role of host"
|
4299
|
+
msgstr ""
|
4300
|
+
|
4163
4301
|
msgid "Run Sync Plan:"
|
4164
4302
|
msgstr ""
|
4165
4303
|
|
@@ -4264,6 +4402,9 @@ msgstr "સેવા સ્તર %s"
|
|
4264
4402
|
msgid "Service Level (SLA)"
|
4265
4403
|
msgstr ""
|
4266
4404
|
|
4405
|
+
msgid "Service level of host"
|
4406
|
+
msgstr ""
|
4407
|
+
|
4267
4408
|
msgid "Service level to be used for autoheal"
|
4268
4409
|
msgstr ""
|
4269
4410
|
|
@@ -4367,6 +4508,15 @@ msgstr ""
|
|
4367
4508
|
msgid "Simple Content Access"
|
4368
4509
|
msgstr ""
|
4369
4510
|
|
4511
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4512
|
+
msgstr ""
|
4513
|
+
|
4514
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4515
|
+
msgstr ""
|
4516
|
+
|
4517
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4518
|
+
msgstr ""
|
4519
|
+
|
4370
4520
|
msgid "Size of file to upload"
|
4371
4521
|
msgstr ""
|
4372
4522
|
|
@@ -4401,6 +4551,9 @@ msgstr ""
|
|
4401
4551
|
msgid "Specify the list of units in each repo"
|
4402
4552
|
msgstr ""
|
4403
4553
|
|
4554
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4555
|
+
msgstr ""
|
4556
|
+
|
4404
4557
|
msgid "Stacking ID"
|
4405
4558
|
msgstr ""
|
4406
4559
|
|
@@ -4617,6 +4770,9 @@ msgstr ""
|
|
4617
4770
|
msgid "Sync plan identifier to attach"
|
4618
4771
|
msgstr ""
|
4619
4772
|
|
4773
|
+
msgid "Sync state"
|
4774
|
+
msgstr ""
|
4775
|
+
|
4620
4776
|
msgid "Synced Content"
|
4621
4777
|
msgstr ""
|
4622
4778
|
|
@@ -4682,6 +4838,9 @@ msgstr "'%s' પર્યાવરણ ચેન્જસેટ સમાવી
|
|
4682
4838
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4683
4839
|
msgstr ""
|
4684
4840
|
|
4841
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4842
|
+
msgstr ""
|
4843
|
+
|
4685
4844
|
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."
|
4686
4845
|
msgstr ""
|
4687
4846
|
|
@@ -4723,15 +4882,26 @@ msgstr ""
|
|
4723
4882
|
msgid "The erratum type must be an array. Invalid value provided"
|
4724
4883
|
msgstr ""
|
4725
4884
|
|
4885
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4886
|
+
msgstr ""
|
4887
|
+
|
4726
4888
|
msgid "The field to sort the data by. Defaults to the created date."
|
4727
4889
|
msgstr ""
|
4728
4890
|
|
4729
4891
|
msgid "The following hosts have errata that apply to them: "
|
4730
4892
|
msgstr ""
|
4731
4893
|
|
4894
|
+
msgid ""
|
4895
|
+
"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"
|
4896
|
+
" %{repos}"
|
4897
|
+
msgstr ""
|
4898
|
+
|
4732
4899
|
msgid "The id of the host to alter"
|
4733
4900
|
msgstr ""
|
4734
4901
|
|
4902
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4903
|
+
msgstr ""
|
4904
|
+
|
4735
4905
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4736
4906
|
msgstr ""
|
4737
4907
|
|
@@ -4781,6 +4951,9 @@ msgstr ""
|
|
4781
4951
|
msgid "The requested resource does not belong to the specified organization"
|
4782
4952
|
msgstr ""
|
4783
4953
|
|
4954
|
+
msgid "The requested traces were not found for this host"
|
4955
|
+
msgstr ""
|
4956
|
+
|
4784
4957
|
msgid "The selected content source and lifecycle environment do not match"
|
4785
4958
|
msgstr ""
|
4786
4959
|
|
@@ -4844,6 +5017,9 @@ msgstr ""
|
|
4844
5017
|
msgid "There's no running synchronization for this smart proxy."
|
4845
5018
|
msgstr ""
|
4846
5019
|
|
5020
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
5021
|
+
msgstr ""
|
5022
|
+
|
4847
5023
|
msgid "This Host is not currently registered with subscription-manager."
|
4848
5024
|
msgstr ""
|
4849
5025
|
|
@@ -4853,6 +5029,9 @@ msgstr ""
|
|
4853
5029
|
msgid "This action doesn't support package groups"
|
4854
5030
|
msgstr ""
|
4855
5031
|
|
5032
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
5033
|
+
msgstr ""
|
5034
|
+
|
4856
5035
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4857
5036
|
msgstr ""
|
4858
5037
|
|
@@ -4983,10 +5162,16 @@ msgstr ""
|
|
4983
5162
|
msgid "Unable to detect puppet path"
|
4984
5163
|
msgstr ""
|
4985
5164
|
|
4986
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
5165
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4987
5166
|
msgstr ""
|
4988
5167
|
|
4989
|
-
msgid "Unable to export
|
5168
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5169
|
+
msgstr ""
|
5170
|
+
|
5171
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5172
|
+
msgstr ""
|
5173
|
+
|
5174
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4990
5175
|
msgstr ""
|
4991
5176
|
|
4992
5177
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5203,6 +5388,12 @@ msgstr ""
|
|
5203
5388
|
msgid "Updating Package..."
|
5204
5389
|
msgstr "પેકેજને સુધારી રહ્યા છે..."
|
5205
5390
|
|
5391
|
+
msgid "Updating System Purpose for host"
|
5392
|
+
msgstr ""
|
5393
|
+
|
5394
|
+
msgid "Updating System Purpose for host %s"
|
5395
|
+
msgstr ""
|
5396
|
+
|
5206
5397
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author swkothar
|
5207
5398
|
msgid "Updating package group..."
|
5208
5399
|
msgstr "પેકેજ જૂથને સુધારી રહ્યા છે..."
|
@@ -5260,9 +5451,15 @@ msgstr ""
|
|
5260
5451
|
msgid "Usage Type"
|
5261
5452
|
msgstr ""
|
5262
5453
|
|
5454
|
+
msgid "Usage of host"
|
5455
|
+
msgstr ""
|
5456
|
+
|
5263
5457
|
msgid "Use remote execution by default"
|
5264
5458
|
msgstr ""
|
5265
5459
|
|
5460
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5461
|
+
msgstr ""
|
5462
|
+
|
5266
5463
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5267
5464
|
msgstr ""
|
5268
5465
|
|
@@ -5287,6 +5484,15 @@ msgstr ""
|
|
5287
5484
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5288
5485
|
msgstr ""
|
5289
5486
|
|
5487
|
+
msgid "Verify checksum"
|
5488
|
+
msgstr ""
|
5489
|
+
|
5490
|
+
msgid "Verify checksum for one or more products"
|
5491
|
+
msgstr ""
|
5492
|
+
|
5493
|
+
msgid "Verify checksum of repository contents"
|
5494
|
+
msgstr ""
|
5495
|
+
|
5290
5496
|
msgid "Version"
|
5291
5497
|
msgstr ""
|
5292
5498
|
|
@@ -5304,7 +5510,7 @@ msgstr ""
|
|
5304
5510
|
msgid "Virtual"
|
5305
5511
|
msgstr "વર્ચ્યુઅલ"
|
5306
5512
|
|
5307
|
-
msgid "When Simple Content Access is enabled, hosts
|
5513
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5308
5514
|
msgstr ""
|
5309
5515
|
|
5310
5516
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5375,6 +5581,9 @@ msgstr "તમે વપરાશકર્તા %s પર મૂળભૂત
|
|
5375
5581
|
msgid "You currently don't have any Content Views."
|
5376
5582
|
msgstr ""
|
5377
5583
|
|
5584
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5585
|
+
msgstr ""
|
5586
|
+
|
5378
5587
|
msgid "You do not have permissions to delete %s"
|
5379
5588
|
msgstr ""
|
5380
5589
|
|
@@ -5491,6 +5700,9 @@ msgstr "સંસ્થા"
|
|
5491
5700
|
msgid "an ostree branch"
|
5492
5701
|
msgstr ""
|
5493
5702
|
|
5703
|
+
msgid "are only allowed for Yum repositories."
|
5704
|
+
msgstr ""
|
5705
|
+
|
5494
5706
|
msgid "attempted to sync without a feed URL"
|
5495
5707
|
msgstr ""
|
5496
5708
|
|
@@ -5510,6 +5722,9 @@ msgstr ""
|
|
5510
5722
|
msgid "can't be blank"
|
5511
5723
|
msgstr "ખાલી કરી શકાતુ નથી"
|
5512
5724
|
|
5725
|
+
msgid "cannot add filter to import-only view"
|
5726
|
+
msgstr ""
|
5727
|
+
|
5513
5728
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5514
5729
|
msgid "cannot be a binary file."
|
5515
5730
|
msgstr "બાઇનરી ફાઇલ કરી શકાતી નથી."
|
@@ -5574,13 +5789,13 @@ msgstr ""
|
|
5574
5789
|
msgid "checking Pulp task status"
|
5575
5790
|
msgstr ""
|
5576
5791
|
|
5577
|
-
msgid "comma
|
5792
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5578
5793
|
msgstr ""
|
5579
5794
|
|
5580
|
-
msgid "comma
|
5795
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5581
5796
|
msgstr ""
|
5582
5797
|
|
5583
|
-
msgid "comma
|
5798
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5584
5799
|
msgstr ""
|
5585
5800
|
|
5586
5801
|
msgid "composite content view identifier"
|
@@ -5812,9 +6027,6 @@ msgstr ""
|
|
5812
6027
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5813
6028
|
msgstr ""
|
5814
6029
|
|
5815
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5816
|
-
msgstr ""
|
5817
|
-
|
5818
6030
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5819
6031
|
msgstr ""
|
5820
6032
|
|
@@ -5854,6 +6066,9 @@ msgstr ""
|
|
5854
6066
|
msgid "invalid container image name"
|
5855
6067
|
msgstr ""
|
5856
6068
|
|
6069
|
+
msgid "invalid: Repositories can only require one OS version."
|
6070
|
+
msgstr ""
|
6071
|
+
|
5857
6072
|
msgid "is already attached to the capsule"
|
5858
6073
|
msgstr ""
|
5859
6074
|
|
@@ -5894,6 +6109,9 @@ msgstr ""
|
|
5894
6109
|
msgid "maximum size of each ISO in MB"
|
5895
6110
|
msgstr ""
|
5896
6111
|
|
6112
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6113
|
+
msgstr ""
|
6114
|
+
|
5897
6115
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5898
6116
|
msgstr ""
|
5899
6117
|
|
@@ -5916,6 +6134,9 @@ msgstr "હકારાત્મક પૂર્ણાંક કિંમત હ
|
|
5916
6134
|
msgid "must be one of the following: %s"
|
5917
6135
|
msgstr ""
|
5918
6136
|
|
6137
|
+
msgid "must be one of: %s"
|
6138
|
+
msgstr ""
|
6139
|
+
|
5919
6140
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5920
6141
|
msgid "must be unique within one organization"
|
5921
6142
|
msgstr "એક સંસ્થામાં અનન્ય હોવુ જ જોઇએ"
|
@@ -6180,6 +6401,9 @@ msgstr ""
|
|
6180
6401
|
msgid "the uuid of the puppet module to associate"
|
6181
6402
|
msgstr ""
|
6182
6403
|
|
6404
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6405
|
+
msgstr ""
|
6406
|
+
|
6183
6407
|
msgid "true if the latest version of the component's content view is desired"
|
6184
6408
|
msgstr ""
|
6185
6409
|
|