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/te/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 Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
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
|
@@ -992,10 +1015,16 @@ msgstr ""
|
|
992
1015
|
msgid "Content Download URL"
|
993
1016
|
msgstr ""
|
994
1017
|
|
1018
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1019
|
+
msgstr ""
|
1020
|
+
|
995
1021
|
#, fuzzy
|
996
1022
|
msgid "Content Hosts"
|
997
1023
|
msgstr "కాంటెంట్"
|
998
1024
|
|
1025
|
+
msgid "Content Migration"
|
1026
|
+
msgstr ""
|
1027
|
+
|
999
1028
|
msgid "Content Source"
|
1000
1029
|
msgstr ""
|
1001
1030
|
|
@@ -1047,9 +1076,15 @@ msgstr ""
|
|
1047
1076
|
msgid "Content View Version not set"
|
1048
1077
|
msgstr ""
|
1049
1078
|
|
1079
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1080
|
+
msgstr ""
|
1081
|
+
|
1050
1082
|
msgid "Content View and Environment not set for registration."
|
1051
1083
|
msgstr ""
|
1052
1084
|
|
1085
|
+
msgid "Content View id"
|
1086
|
+
msgstr ""
|
1087
|
+
|
1053
1088
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1054
1089
|
msgid "Content Views"
|
1055
1090
|
msgstr "కాంటెంట్ దర్శనాలు"
|
@@ -1088,6 +1123,9 @@ msgstr ""
|
|
1088
1123
|
msgid "Content view numeric identifier"
|
1089
1124
|
msgstr ""
|
1090
1125
|
|
1126
|
+
msgid "Content view version export history identifier"
|
1127
|
+
msgstr ""
|
1128
|
+
|
1091
1129
|
msgid "Content view version identifier"
|
1092
1130
|
msgstr ""
|
1093
1131
|
|
@@ -1110,13 +1148,13 @@ msgstr ""
|
|
1110
1148
|
msgid "Copy an activation key"
|
1111
1149
|
msgstr "క్రియాశీలపు కీలు"
|
1112
1150
|
|
1151
|
+
msgid "Copy version units to library"
|
1152
|
+
msgstr ""
|
1153
|
+
|
1113
1154
|
#, fuzzy
|
1114
1155
|
msgid "Cores: %s"
|
1115
1156
|
msgstr "కారణం: %s"
|
1116
1157
|
|
1117
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1118
|
-
msgstr ""
|
1119
|
-
|
1120
1158
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1121
1159
|
msgid "Could not delete organization '%s'."
|
1122
1160
|
msgstr "సంస్థ '%s' ను తొలగించలేక పోయింది."
|
@@ -1127,6 +1165,12 @@ msgstr ""
|
|
1127
1165
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1128
1166
|
msgstr ""
|
1129
1167
|
|
1168
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1169
|
+
msgstr ""
|
1170
|
+
|
1171
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1172
|
+
msgstr ""
|
1173
|
+
|
1130
1174
|
msgid "Could not find Environment with ids: %s"
|
1131
1175
|
msgstr ""
|
1132
1176
|
|
@@ -1160,9 +1204,6 @@ msgstr ""
|
|
1160
1204
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1161
1205
|
msgstr ""
|
1162
1206
|
|
1163
|
-
msgid "Couldn't find Content Credential '%s'"
|
1164
|
-
msgstr ""
|
1165
|
-
|
1166
1207
|
#, fuzzy
|
1167
1208
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1168
1209
|
msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొనలేక పోయింది"
|
@@ -1220,13 +1261,6 @@ msgstr "ఎన్విరాన్మెంట్ '%s' కనుగొనలే
|
|
1220
1261
|
msgid "Couldn't find errata ids '%s'"
|
1221
1262
|
msgstr "సంస్థ '%s' కనుగొనలేక పోయింది"
|
1222
1263
|
|
1223
|
-
#, fuzzy
|
1224
|
-
msgid "Couldn't find gpg key '%s'"
|
1225
|
-
msgstr "GPG కీ '%s' కనుగొనలేక పోయింది"
|
1226
|
-
|
1227
|
-
msgid "Couldn't find host '%s'"
|
1228
|
-
msgstr ""
|
1229
|
-
|
1230
1264
|
msgid "Couldn't find host collection '%s'"
|
1231
1265
|
msgstr ""
|
1232
1266
|
|
@@ -1241,10 +1275,6 @@ msgstr "సంస్థ '%s' కనుగొనలేక పోయింది"
|
|
1241
1275
|
msgid "Couldn't find prior-environment '%s'"
|
1242
1276
|
msgstr "ఎన్విరాన్మెంట్ '%s' కనుగొనలేక పోయింది"
|
1243
1277
|
|
1244
|
-
#, fuzzy
|
1245
|
-
msgid "Couldn't find product '%s'"
|
1246
|
-
msgstr "సమర్పకులు '%s' కనుగొనలేక పోయింది"
|
1247
|
-
|
1248
1278
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1249
1279
|
msgid "Couldn't find product with id '%s'"
|
1250
1280
|
msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొనలేక పోయింది"
|
@@ -1253,30 +1283,13 @@ msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొ
|
|
1253
1283
|
msgid "Couldn't find repository '%s'"
|
1254
1284
|
msgstr "రిపోజిటరీ '%s' ను కనుగొనలేక పోయింది"
|
1255
1285
|
|
1256
|
-
#, fuzzy
|
1257
|
-
msgid "Couldn't find repository set with id '%s'."
|
1258
|
-
msgstr "రిపోజిటరీ '%s' ను కనుగొనలేక పోయింది"
|
1259
|
-
|
1260
1286
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1261
1287
|
msgstr ""
|
1262
1288
|
|
1263
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1264
|
-
msgstr ""
|
1265
|
-
|
1266
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1267
|
-
msgstr ""
|
1268
|
-
|
1269
|
-
msgid "Couldn't find ssl client key '%s'"
|
1270
|
-
msgstr ""
|
1271
|
-
|
1272
1289
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1273
1290
|
msgid "Couldn't find subject of synchronization"
|
1274
1291
|
msgstr "సింక్రొనైజేషన్ సబ్జక్టును కనుగొనలేక పోయింది"
|
1275
1292
|
|
1276
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1277
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1278
|
-
msgstr "సంస్థ '%{org}' నందు సింక్ ప్లాన్ '%{plan}' ను కనుగొనలేక పోయింది"
|
1279
|
-
|
1280
1293
|
msgid "Count"
|
1281
1294
|
msgstr ""
|
1282
1295
|
|
@@ -1347,6 +1360,9 @@ msgstr ""
|
|
1347
1360
|
msgid "Current organization not set."
|
1348
1361
|
msgstr ""
|
1349
1362
|
|
1363
|
+
msgid "Custom"
|
1364
|
+
msgstr ""
|
1365
|
+
|
1350
1366
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1351
1367
|
msgid "Custom Content Repositories"
|
1352
1368
|
msgstr "వినియోగదారి విషయ రిపోజిటరీలు"
|
@@ -1560,9 +1576,15 @@ msgstr ""
|
|
1560
1576
|
msgid "Description of the repository"
|
1561
1577
|
msgstr ""
|
1562
1578
|
|
1579
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1580
|
+
msgstr ""
|
1581
|
+
|
1563
1582
|
msgid "Desired quantity of the pool"
|
1564
1583
|
msgstr ""
|
1565
1584
|
|
1585
|
+
msgid "Destination Server name"
|
1586
|
+
msgstr ""
|
1587
|
+
|
1566
1588
|
msgid "Destroy"
|
1567
1589
|
msgstr ""
|
1568
1590
|
|
@@ -1614,6 +1636,9 @@ msgstr ""
|
|
1614
1636
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1615
1637
|
msgstr ""
|
1616
1638
|
|
1639
|
+
msgid "Directory containing the exported Content View Version"
|
1640
|
+
msgstr ""
|
1641
|
+
|
1617
1642
|
msgid "Disable"
|
1618
1643
|
msgstr ""
|
1619
1644
|
|
@@ -1629,6 +1654,9 @@ msgstr ""
|
|
1629
1654
|
msgid "Disable simple content access for a manifest"
|
1630
1655
|
msgstr ""
|
1631
1656
|
|
1657
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1658
|
+
msgstr ""
|
1659
|
+
|
1632
1660
|
msgid "Disconnected mode"
|
1633
1661
|
msgstr ""
|
1634
1662
|
|
@@ -1713,6 +1741,9 @@ msgstr ""
|
|
1713
1741
|
msgid "Enabled Repositories"
|
1714
1742
|
msgstr ""
|
1715
1743
|
|
1744
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1745
|
+
msgstr ""
|
1746
|
+
|
1716
1747
|
msgid "End Date"
|
1717
1748
|
msgstr ""
|
1718
1749
|
|
@@ -1836,7 +1867,10 @@ msgstr ""
|
|
1836
1867
|
msgid "Export CSV"
|
1837
1868
|
msgstr ""
|
1838
1869
|
|
1839
|
-
msgid "Export
|
1870
|
+
msgid "Export Library"
|
1871
|
+
msgstr ""
|
1872
|
+
|
1873
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1840
1874
|
msgstr ""
|
1841
1875
|
|
1842
1876
|
msgid "Export a repository"
|
@@ -1845,9 +1879,15 @@ msgstr ""
|
|
1845
1879
|
msgid "Export as CSV"
|
1846
1880
|
msgstr ""
|
1847
1881
|
|
1882
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1883
|
+
msgstr ""
|
1884
|
+
|
1848
1885
|
msgid "Export to ISO format"
|
1849
1886
|
msgstr ""
|
1850
1887
|
|
1888
|
+
msgid "Export to ISO format."
|
1889
|
+
msgstr ""
|
1890
|
+
|
1851
1891
|
msgid "Exported version"
|
1852
1892
|
msgstr ""
|
1853
1893
|
|
@@ -1991,10 +2031,6 @@ msgstr ""
|
|
1991
2031
|
msgid "GPG Key URL"
|
1992
2032
|
msgstr ""
|
1993
2033
|
|
1994
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1995
|
-
msgid "GPG Keys"
|
1996
|
-
msgstr "GPG కీలు"
|
1997
|
-
|
1998
2034
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1999
2035
|
msgid "Generate and Download"
|
2000
2036
|
msgstr "జనియింపచేయి మరియు దింపు"
|
@@ -2102,6 +2138,9 @@ msgstr ""
|
|
2102
2138
|
msgid "Host content and subscription details"
|
2103
2139
|
msgstr ""
|
2104
2140
|
|
2141
|
+
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."
|
2142
|
+
msgstr ""
|
2143
|
+
|
2105
2144
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2106
2145
|
msgstr ""
|
2107
2146
|
|
@@ -2126,6 +2165,9 @@ msgstr ""
|
|
2126
2165
|
msgid "Host id to list applicable packages for"
|
2127
2166
|
msgstr ""
|
2128
2167
|
|
2168
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2169
|
+
msgstr ""
|
2170
|
+
|
2129
2171
|
msgid "Host with ID %s already exists in the host collection."
|
2130
2172
|
msgstr ""
|
2131
2173
|
|
@@ -2280,6 +2322,9 @@ msgstr ""
|
|
2280
2322
|
msgid "Identifiers for Lifecycle Environment"
|
2281
2323
|
msgstr ""
|
2282
2324
|
|
2325
|
+
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"
|
2326
|
+
msgstr ""
|
2327
|
+
|
2283
2328
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2284
2329
|
msgstr ""
|
2285
2330
|
|
@@ -2322,6 +2367,15 @@ msgstr ""
|
|
2322
2367
|
msgid "Immediate"
|
2323
2368
|
msgstr ""
|
2324
2369
|
|
2370
|
+
msgid "Import"
|
2371
|
+
msgstr ""
|
2372
|
+
|
2373
|
+
msgid "Import Content View Version"
|
2374
|
+
msgstr ""
|
2375
|
+
|
2376
|
+
msgid "Import Default Content View"
|
2377
|
+
msgstr ""
|
2378
|
+
|
2325
2379
|
#, fuzzy
|
2326
2380
|
msgid "Import Manifest"
|
2327
2381
|
msgstr "దిగుమతిచేయి"
|
@@ -2344,6 +2398,12 @@ msgstr ""
|
|
2344
2398
|
msgid "Import a Manifest using the manifest tab above."
|
2345
2399
|
msgstr ""
|
2346
2400
|
|
2401
|
+
msgid "Import a content view version"
|
2402
|
+
msgstr ""
|
2403
|
+
|
2404
|
+
msgid "Import a content view version to the library"
|
2405
|
+
msgstr ""
|
2406
|
+
|
2347
2407
|
#, fuzzy
|
2348
2408
|
msgid "Import facts"
|
2349
2409
|
msgstr "దిగుమతిచేయి"
|
@@ -2351,6 +2411,15 @@ msgstr "దిగుమతిచేయి"
|
|
2351
2411
|
msgid "Import uploads into a repository"
|
2352
2412
|
msgstr ""
|
2353
2413
|
|
2414
|
+
msgid "Import-only can not be changed after creation"
|
2415
|
+
msgstr ""
|
2416
|
+
|
2417
|
+
msgid "Import-only content views can not be published directly"
|
2418
|
+
msgstr ""
|
2419
|
+
|
2420
|
+
msgid "Import-only content views will be available in a future version."
|
2421
|
+
msgstr ""
|
2422
|
+
|
2354
2423
|
msgid "Importing manifest into '%{subject}' failed."
|
2355
2424
|
msgstr ""
|
2356
2425
|
|
@@ -2535,6 +2604,9 @@ msgstr ""
|
|
2535
2604
|
msgid "Invalid params provided - date_type must be one of %s"
|
2536
2605
|
msgstr ""
|
2537
2606
|
|
2607
|
+
msgid "Invalid path specified."
|
2608
|
+
msgstr ""
|
2609
|
+
|
2538
2610
|
msgid ""
|
2539
2611
|
"Invalid puppet module parameters specified. \\\n"
|
2540
2612
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2543,6 +2615,12 @@ msgstr ""
|
|
2543
2615
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2544
2616
|
msgstr ""
|
2545
2617
|
|
2618
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2619
|
+
msgstr ""
|
2620
|
+
|
2621
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2622
|
+
msgstr ""
|
2623
|
+
|
2546
2624
|
msgid "Invalid value specified for Container Image repositories."
|
2547
2625
|
msgstr ""
|
2548
2626
|
|
@@ -2552,6 +2630,9 @@ msgstr ""
|
|
2552
2630
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2553
2631
|
msgstr ""
|
2554
2632
|
|
2633
|
+
msgid "Katello"
|
2634
|
+
msgstr ""
|
2635
|
+
|
2555
2636
|
msgid "Katello ID of local pool to update"
|
2556
2637
|
msgstr ""
|
2557
2638
|
|
@@ -2612,9 +2693,6 @@ msgstr ""
|
|
2612
2693
|
msgid "Learn more about adding Subscription Manifests"
|
2613
2694
|
msgstr ""
|
2614
2695
|
|
2615
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2616
|
-
msgstr ""
|
2617
|
-
|
2618
2696
|
#, fuzzy
|
2619
2697
|
msgid "Library lifecycle environments may not be deleted."
|
2620
2698
|
msgstr "ఎన్విరాన్మెంట్ '%s' తొలగించబడెను."
|
@@ -2716,6 +2794,9 @@ msgstr ""
|
|
2716
2794
|
msgid "List errata available for the content host"
|
2717
2795
|
msgstr ""
|
2718
2796
|
|
2797
|
+
msgid "List export histories"
|
2798
|
+
msgstr ""
|
2799
|
+
|
2719
2800
|
msgid "List filter rules"
|
2720
2801
|
msgstr ""
|
2721
2802
|
|
@@ -2869,6 +2950,9 @@ msgstr ""
|
|
2869
2950
|
msgid "List srpms"
|
2870
2951
|
msgstr ""
|
2871
2952
|
|
2953
|
+
msgid "List subscriptions"
|
2954
|
+
msgstr ""
|
2955
|
+
|
2872
2956
|
msgid "List sync plans"
|
2873
2957
|
msgstr ""
|
2874
2958
|
|
@@ -2957,6 +3041,9 @@ msgstr "సందేశం"
|
|
2957
3041
|
msgid "Messaging connection"
|
2958
3042
|
msgstr ""
|
2959
3043
|
|
3044
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
3045
|
+
msgstr ""
|
3046
|
+
|
2960
3047
|
msgid "Mismatched"
|
2961
3048
|
msgstr ""
|
2962
3049
|
|
@@ -3096,6 +3183,9 @@ msgstr ""
|
|
3096
3183
|
msgid "No errors"
|
3097
3184
|
msgstr "దోషాలు లేవు"
|
3098
3185
|
|
3186
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3187
|
+
msgstr ""
|
3188
|
+
|
3099
3189
|
msgid "No file uploaded"
|
3100
3190
|
msgstr ""
|
3101
3191
|
|
@@ -3108,12 +3198,18 @@ msgstr ""
|
|
3108
3198
|
msgid "No hosts registered with subscription-manager found in selection."
|
3109
3199
|
msgstr ""
|
3110
3200
|
|
3201
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3202
|
+
msgstr ""
|
3203
|
+
|
3111
3204
|
msgid "No manifest file uploaded"
|
3112
3205
|
msgstr ""
|
3113
3206
|
|
3114
3207
|
msgid "No matching content views found"
|
3115
3208
|
msgstr ""
|
3116
3209
|
|
3210
|
+
msgid "No matching repositories found"
|
3211
|
+
msgstr ""
|
3212
|
+
|
3117
3213
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3118
3214
|
msgid "No new packages installed"
|
3119
3215
|
msgstr "ఏ కొత్త ప్యాకేజీలు సంస్థాపించబడిలేవు"
|
@@ -3256,6 +3352,9 @@ msgstr ""
|
|
3256
3352
|
msgid "On-disk location for exported repositories"
|
3257
3353
|
msgstr ""
|
3258
3354
|
|
3355
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3356
|
+
msgstr ""
|
3357
|
+
|
3259
3358
|
#, fuzzy
|
3260
3359
|
msgid "One of parameters [ %s ] required but not specified."
|
3261
3360
|
msgstr "సంస్థ ఐడి కావాలి కాని తెలుపలేదు (_i)."
|
@@ -3289,6 +3388,9 @@ msgstr ""
|
|
3289
3388
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3290
3389
|
msgstr ""
|
3291
3390
|
|
3391
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3392
|
+
msgstr ""
|
3393
|
+
|
3292
3394
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
3293
3395
|
msgid "Organization"
|
3294
3396
|
msgstr "సంస్థ"
|
@@ -3568,6 +3670,18 @@ msgstr ""
|
|
3568
3670
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3569
3671
|
msgstr ""
|
3570
3672
|
|
3673
|
+
msgid "Performs a full-export of a content view version."
|
3674
|
+
msgstr ""
|
3675
|
+
|
3676
|
+
msgid "Performs a full-export of the repositories in library."
|
3677
|
+
msgstr ""
|
3678
|
+
|
3679
|
+
msgid "Performs an incremental-export of a content view version."
|
3680
|
+
msgstr ""
|
3681
|
+
|
3682
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3683
|
+
msgstr ""
|
3684
|
+
|
3571
3685
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3572
3686
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3573
3687
|
msgstr "అనుమతి తిరస్కరించబడెను. వాడుకరి '%{user}' సంస్థ '%{org}' యాక్సెస్ చేయుటకు అనుమతులు కలిగిలేరు."
|
@@ -3578,6 +3692,9 @@ msgstr "భౌతిక"
|
|
3578
3692
|
msgid "Plan numeric identifier"
|
3579
3693
|
msgstr ""
|
3580
3694
|
|
3695
|
+
msgid "Please add some repositories."
|
3696
|
+
msgstr ""
|
3697
|
+
|
3581
3698
|
msgid "Please enter a positive number above zero"
|
3582
3699
|
msgstr ""
|
3583
3700
|
|
@@ -3605,6 +3722,9 @@ msgstr ""
|
|
3605
3722
|
msgid "Please select one from the list below and you will be redirected."
|
3606
3723
|
msgstr ""
|
3607
3724
|
|
3725
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3726
|
+
msgstr ""
|
3727
|
+
|
3608
3728
|
msgid "Processing metadata"
|
3609
3729
|
msgstr ""
|
3610
3730
|
|
@@ -3712,6 +3832,9 @@ msgstr ""
|
|
3712
3832
|
msgid "Pulp"
|
3713
3833
|
msgstr ""
|
3714
3834
|
|
3835
|
+
msgid "Pulp 3 export destination filepath"
|
3836
|
+
msgstr ""
|
3837
|
+
|
3715
3838
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3716
3839
|
msgstr ""
|
3717
3840
|
|
@@ -3766,6 +3889,12 @@ msgstr ""
|
|
3766
3889
|
msgid "Pulp task error"
|
3767
3890
|
msgstr ""
|
3768
3891
|
|
3892
|
+
msgid "Pulp user or group unable to read '%s'."
|
3893
|
+
msgstr ""
|
3894
|
+
|
3895
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3896
|
+
msgstr ""
|
3897
|
+
|
3769
3898
|
msgid "Pulpcore"
|
3770
3899
|
msgstr ""
|
3771
3900
|
|
@@ -3842,6 +3971,9 @@ msgstr ""
|
|
3842
3971
|
msgid "Recommended Repositories"
|
3843
3972
|
msgstr ""
|
3844
3973
|
|
3974
|
+
msgid "Red Hat"
|
3975
|
+
msgstr ""
|
3976
|
+
|
3845
3977
|
#, fuzzy
|
3846
3978
|
msgid "Red Hat CDN URL"
|
3847
3979
|
msgstr "ఉత్పత్తులు"
|
@@ -4077,6 +4209,9 @@ msgstr ""
|
|
4077
4209
|
msgid "Resolve Traces"
|
4078
4210
|
msgstr ""
|
4079
4211
|
|
4212
|
+
msgid "Resolve traces for one or more hosts"
|
4213
|
+
msgstr ""
|
4214
|
+
|
4080
4215
|
msgid "Resource"
|
4081
4216
|
msgstr ""
|
4082
4217
|
|
@@ -4156,6 +4291,9 @@ msgstr ""
|
|
4156
4291
|
msgid "Role"
|
4157
4292
|
msgstr ""
|
4158
4293
|
|
4294
|
+
msgid "Role of host"
|
4295
|
+
msgstr ""
|
4296
|
+
|
4159
4297
|
msgid "Run Sync Plan:"
|
4160
4298
|
msgstr ""
|
4161
4299
|
|
@@ -4260,6 +4398,9 @@ msgstr "సేవా స్థాయి %s"
|
|
4260
4398
|
msgid "Service Level (SLA)"
|
4261
4399
|
msgstr ""
|
4262
4400
|
|
4401
|
+
msgid "Service level of host"
|
4402
|
+
msgstr ""
|
4403
|
+
|
4263
4404
|
msgid "Service level to be used for autoheal"
|
4264
4405
|
msgstr ""
|
4265
4406
|
|
@@ -4363,6 +4504,15 @@ msgstr ""
|
|
4363
4504
|
msgid "Simple Content Access"
|
4364
4505
|
msgstr ""
|
4365
4506
|
|
4507
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4508
|
+
msgstr ""
|
4509
|
+
|
4510
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4511
|
+
msgstr ""
|
4512
|
+
|
4513
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4514
|
+
msgstr ""
|
4515
|
+
|
4366
4516
|
msgid "Size of file to upload"
|
4367
4517
|
msgstr ""
|
4368
4518
|
|
@@ -4397,6 +4547,9 @@ msgstr ""
|
|
4397
4547
|
msgid "Specify the list of units in each repo"
|
4398
4548
|
msgstr ""
|
4399
4549
|
|
4550
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4551
|
+
msgstr ""
|
4552
|
+
|
4400
4553
|
msgid "Stacking ID"
|
4401
4554
|
msgstr ""
|
4402
4555
|
|
@@ -4613,6 +4766,9 @@ msgstr ""
|
|
4613
4766
|
msgid "Sync plan identifier to attach"
|
4614
4767
|
msgstr ""
|
4615
4768
|
|
4769
|
+
msgid "Sync state"
|
4770
|
+
msgstr ""
|
4771
|
+
|
4616
4772
|
msgid "Synced Content"
|
4617
4773
|
msgstr ""
|
4618
4774
|
|
@@ -4678,6 +4834,9 @@ msgstr "'%s' యెన్విరాన్మెంట్ అనునది
|
|
4678
4834
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4679
4835
|
msgstr ""
|
4680
4836
|
|
4837
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4838
|
+
msgstr ""
|
4839
|
+
|
4681
4840
|
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."
|
4682
4841
|
msgstr ""
|
4683
4842
|
|
@@ -4719,15 +4878,26 @@ msgstr ""
|
|
4719
4878
|
msgid "The erratum type must be an array. Invalid value provided"
|
4720
4879
|
msgstr ""
|
4721
4880
|
|
4881
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4882
|
+
msgstr ""
|
4883
|
+
|
4722
4884
|
msgid "The field to sort the data by. Defaults to the created date."
|
4723
4885
|
msgstr ""
|
4724
4886
|
|
4725
4887
|
msgid "The following hosts have errata that apply to them: "
|
4726
4888
|
msgstr ""
|
4727
4889
|
|
4890
|
+
msgid ""
|
4891
|
+
"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"
|
4892
|
+
" %{repos}"
|
4893
|
+
msgstr ""
|
4894
|
+
|
4728
4895
|
msgid "The id of the host to alter"
|
4729
4896
|
msgstr ""
|
4730
4897
|
|
4898
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4899
|
+
msgstr ""
|
4900
|
+
|
4731
4901
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4732
4902
|
msgstr ""
|
4733
4903
|
|
@@ -4777,6 +4947,9 @@ msgstr ""
|
|
4777
4947
|
msgid "The requested resource does not belong to the specified organization"
|
4778
4948
|
msgstr ""
|
4779
4949
|
|
4950
|
+
msgid "The requested traces were not found for this host"
|
4951
|
+
msgstr ""
|
4952
|
+
|
4780
4953
|
msgid "The selected content source and lifecycle environment do not match"
|
4781
4954
|
msgstr ""
|
4782
4955
|
|
@@ -4840,6 +5013,9 @@ msgstr ""
|
|
4840
5013
|
msgid "There's no running synchronization for this smart proxy."
|
4841
5014
|
msgstr ""
|
4842
5015
|
|
5016
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
5017
|
+
msgstr ""
|
5018
|
+
|
4843
5019
|
msgid "This Host is not currently registered with subscription-manager."
|
4844
5020
|
msgstr ""
|
4845
5021
|
|
@@ -4849,6 +5025,9 @@ msgstr ""
|
|
4849
5025
|
msgid "This action doesn't support package groups"
|
4850
5026
|
msgstr ""
|
4851
5027
|
|
5028
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
5029
|
+
msgstr ""
|
5030
|
+
|
4852
5031
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4853
5032
|
msgstr ""
|
4854
5033
|
|
@@ -4979,10 +5158,16 @@ msgstr ""
|
|
4979
5158
|
msgid "Unable to detect puppet path"
|
4980
5159
|
msgstr ""
|
4981
5160
|
|
4982
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
5161
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4983
5162
|
msgstr ""
|
4984
5163
|
|
4985
|
-
msgid "Unable to export
|
5164
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5165
|
+
msgstr ""
|
5166
|
+
|
5167
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5168
|
+
msgstr ""
|
5169
|
+
|
5170
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4986
5171
|
msgstr ""
|
4987
5172
|
|
4988
5173
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5199,6 +5384,12 @@ msgstr ""
|
|
5199
5384
|
msgid "Updating Package..."
|
5200
5385
|
msgstr "ప్యాకేజీను నవీకరించుచున్నది..."
|
5201
5386
|
|
5387
|
+
msgid "Updating System Purpose for host"
|
5388
|
+
msgstr ""
|
5389
|
+
|
5390
|
+
msgid "Updating System Purpose for host %s"
|
5391
|
+
msgstr ""
|
5392
|
+
|
5202
5393
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5203
5394
|
msgid "Updating package group..."
|
5204
5395
|
msgstr "ప్యాకేజీ సమూహం నవీకరిస్తోంది..."
|
@@ -5256,9 +5447,15 @@ msgstr ""
|
|
5256
5447
|
msgid "Usage Type"
|
5257
5448
|
msgstr ""
|
5258
5449
|
|
5450
|
+
msgid "Usage of host"
|
5451
|
+
msgstr ""
|
5452
|
+
|
5259
5453
|
msgid "Use remote execution by default"
|
5260
5454
|
msgstr ""
|
5261
5455
|
|
5456
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5457
|
+
msgstr ""
|
5458
|
+
|
5262
5459
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5263
5460
|
msgstr ""
|
5264
5461
|
|
@@ -5283,6 +5480,15 @@ msgstr ""
|
|
5283
5480
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5284
5481
|
msgstr ""
|
5285
5482
|
|
5483
|
+
msgid "Verify checksum"
|
5484
|
+
msgstr ""
|
5485
|
+
|
5486
|
+
msgid "Verify checksum for one or more products"
|
5487
|
+
msgstr ""
|
5488
|
+
|
5489
|
+
msgid "Verify checksum of repository contents"
|
5490
|
+
msgstr ""
|
5491
|
+
|
5286
5492
|
msgid "Version"
|
5287
5493
|
msgstr ""
|
5288
5494
|
|
@@ -5300,7 +5506,7 @@ msgstr ""
|
|
5300
5506
|
msgid "Virtual"
|
5301
5507
|
msgstr "వర్చ్యువల్"
|
5302
5508
|
|
5303
|
-
msgid "When Simple Content Access is enabled, hosts
|
5509
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5304
5510
|
msgstr ""
|
5305
5511
|
|
5306
5512
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5371,6 +5577,9 @@ msgstr "వాడుకరి %s పైన మీరు అప్రమేయ
|
|
5371
5577
|
msgid "You currently don't have any Content Views."
|
5372
5578
|
msgstr ""
|
5373
5579
|
|
5580
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5581
|
+
msgstr ""
|
5582
|
+
|
5374
5583
|
msgid "You do not have permissions to delete %s"
|
5375
5584
|
msgstr ""
|
5376
5585
|
|
@@ -5487,6 +5696,9 @@ msgstr "సంస్థ"
|
|
5487
5696
|
msgid "an ostree branch"
|
5488
5697
|
msgstr ""
|
5489
5698
|
|
5699
|
+
msgid "are only allowed for Yum repositories."
|
5700
|
+
msgstr ""
|
5701
|
+
|
5490
5702
|
msgid "attempted to sync without a feed URL"
|
5491
5703
|
msgstr ""
|
5492
5704
|
|
@@ -5506,6 +5718,9 @@ msgstr ""
|
|
5506
5718
|
msgid "can't be blank"
|
5507
5719
|
msgstr "ఖాళీ గా వుంచలేము"
|
5508
5720
|
|
5721
|
+
msgid "cannot add filter to import-only view"
|
5722
|
+
msgstr ""
|
5723
|
+
|
5509
5724
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5510
5725
|
msgid "cannot be a binary file."
|
5511
5726
|
msgstr "బైనరీ ఫైలు కాలేదు."
|
@@ -5570,13 +5785,13 @@ msgstr ""
|
|
5570
5785
|
msgid "checking Pulp task status"
|
5571
5786
|
msgstr ""
|
5572
5787
|
|
5573
|
-
msgid "comma
|
5788
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5574
5789
|
msgstr ""
|
5575
5790
|
|
5576
|
-
msgid "comma
|
5791
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5577
5792
|
msgstr ""
|
5578
5793
|
|
5579
|
-
msgid "comma
|
5794
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5580
5795
|
msgstr ""
|
5581
5796
|
|
5582
5797
|
msgid "composite content view identifier"
|
@@ -5808,9 +6023,6 @@ msgstr ""
|
|
5808
6023
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5809
6024
|
msgstr ""
|
5810
6025
|
|
5811
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5812
|
-
msgstr ""
|
5813
|
-
|
5814
6026
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5815
6027
|
msgstr ""
|
5816
6028
|
|
@@ -5850,6 +6062,9 @@ msgstr ""
|
|
5850
6062
|
msgid "invalid container image name"
|
5851
6063
|
msgstr ""
|
5852
6064
|
|
6065
|
+
msgid "invalid: Repositories can only require one OS version."
|
6066
|
+
msgstr ""
|
6067
|
+
|
5853
6068
|
msgid "is already attached to the capsule"
|
5854
6069
|
msgstr ""
|
5855
6070
|
|
@@ -5890,6 +6105,9 @@ msgstr ""
|
|
5890
6105
|
msgid "maximum size of each ISO in MB"
|
5891
6106
|
msgstr ""
|
5892
6107
|
|
6108
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6109
|
+
msgstr ""
|
6110
|
+
|
5893
6111
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5894
6112
|
msgstr ""
|
5895
6113
|
|
@@ -5912,6 +6130,9 @@ msgstr "తప్పక ధన పూర్ణాంకం అయివుండ
|
|
5912
6130
|
msgid "must be one of the following: %s"
|
5913
6131
|
msgstr ""
|
5914
6132
|
|
6133
|
+
msgid "must be one of: %s"
|
6134
|
+
msgstr ""
|
6135
|
+
|
5915
6136
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5916
6137
|
msgid "must be unique within one organization"
|
5917
6138
|
msgstr "సంస్థ నందు తప్పక విశిష్టంగా వుండాలి"
|
@@ -6176,6 +6397,9 @@ msgstr ""
|
|
6176
6397
|
msgid "the uuid of the puppet module to associate"
|
6177
6398
|
msgstr ""
|
6178
6399
|
|
6400
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6401
|
+
msgstr ""
|
6402
|
+
|
6179
6403
|
msgid "true if the latest version of the component's content view is desired"
|
6180
6404
|
msgstr ""
|
6181
6405
|
|