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/ta/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 ifelix
|
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
|
@@ -993,10 +1016,16 @@ msgstr ""
|
|
993
1016
|
msgid "Content Download URL"
|
994
1017
|
msgstr ""
|
995
1018
|
|
1019
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1020
|
+
msgstr ""
|
1021
|
+
|
996
1022
|
#, fuzzy
|
997
1023
|
msgid "Content Hosts"
|
998
1024
|
msgstr "உள்ளடக்கம்"
|
999
1025
|
|
1026
|
+
msgid "Content Migration"
|
1027
|
+
msgstr ""
|
1028
|
+
|
1000
1029
|
msgid "Content Source"
|
1001
1030
|
msgstr ""
|
1002
1031
|
|
@@ -1048,9 +1077,15 @@ msgstr ""
|
|
1048
1077
|
msgid "Content View Version not set"
|
1049
1078
|
msgstr ""
|
1050
1079
|
|
1080
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1081
|
+
msgstr ""
|
1082
|
+
|
1051
1083
|
msgid "Content View and Environment not set for registration."
|
1052
1084
|
msgstr ""
|
1053
1085
|
|
1086
|
+
msgid "Content View id"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1054
1089
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1055
1090
|
msgid "Content Views"
|
1056
1091
|
msgstr "உள்ளடக்கக் காட்சிகள்"
|
@@ -1089,6 +1124,9 @@ msgstr ""
|
|
1089
1124
|
msgid "Content view numeric identifier"
|
1090
1125
|
msgstr ""
|
1091
1126
|
|
1127
|
+
msgid "Content view version export history identifier"
|
1128
|
+
msgstr ""
|
1129
|
+
|
1092
1130
|
msgid "Content view version identifier"
|
1093
1131
|
msgstr ""
|
1094
1132
|
|
@@ -1111,13 +1149,13 @@ msgstr ""
|
|
1111
1149
|
msgid "Copy an activation key"
|
1112
1150
|
msgstr "செயல்பாட்டு விசைகள்"
|
1113
1151
|
|
1152
|
+
msgid "Copy version units to library"
|
1153
|
+
msgstr ""
|
1154
|
+
|
1114
1155
|
#, fuzzy
|
1115
1156
|
msgid "Cores: %s"
|
1116
1157
|
msgstr "காரணம்: %s"
|
1117
1158
|
|
1118
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1119
|
-
msgstr ""
|
1120
|
-
|
1121
1159
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1122
1160
|
msgid "Could not delete organization '%s'."
|
1123
1161
|
msgstr "நிறுவனம் '%s'ஐ அழிக்க முடியாது."
|
@@ -1128,6 +1166,12 @@ msgstr ""
|
|
1128
1166
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1129
1167
|
msgstr ""
|
1130
1168
|
|
1169
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1170
|
+
msgstr ""
|
1171
|
+
|
1172
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1173
|
+
msgstr ""
|
1174
|
+
|
1131
1175
|
msgid "Could not find Environment with ids: %s"
|
1132
1176
|
msgstr ""
|
1133
1177
|
|
@@ -1161,9 +1205,6 @@ msgstr ""
|
|
1161
1205
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1162
1206
|
msgstr ""
|
1163
1207
|
|
1164
|
-
msgid "Couldn't find Content Credential '%s'"
|
1165
|
-
msgstr ""
|
1166
|
-
|
1167
1208
|
#, fuzzy
|
1168
1209
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1169
1210
|
msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
|
@@ -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
|
|
@@ -1240,10 +1274,6 @@ msgstr "நிறுவனம் '%s' ஐக் கண்டறிய முட
|
|
1240
1274
|
msgid "Couldn't find prior-environment '%s'"
|
1241
1275
|
msgstr "சூழலை '%s' தேட முடியவில்லை"
|
1242
1276
|
|
1243
|
-
#, fuzzy
|
1244
|
-
msgid "Couldn't find product '%s'"
|
1245
|
-
msgstr "வழங்குநர் '%s'-ஐ தேட முடியவில்லை"
|
1246
|
-
|
1247
1277
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1248
1278
|
msgid "Couldn't find product with id '%s'"
|
1249
1279
|
msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
|
@@ -1252,30 +1282,13 @@ msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பை
|
|
1252
1282
|
msgid "Couldn't find repository '%s'"
|
1253
1283
|
msgstr "தொகுப்பதிவகம் '%s' ஐ கண்டறிய முடியவில்லை"
|
1254
1284
|
|
1255
|
-
#, fuzzy
|
1256
|
-
msgid "Couldn't find repository set with id '%s'."
|
1257
|
-
msgstr "தொகுப்பதிவகம் '%s' ஐ கண்டறிய முடியவில்லை"
|
1258
|
-
|
1259
1285
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1260
1286
|
msgstr ""
|
1261
1287
|
|
1262
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1263
|
-
msgstr ""
|
1264
|
-
|
1265
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1266
|
-
msgstr ""
|
1267
|
-
|
1268
|
-
msgid "Couldn't find ssl client key '%s'"
|
1269
|
-
msgstr ""
|
1270
|
-
|
1271
1288
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1272
1289
|
msgid "Couldn't find subject of synchronization"
|
1273
1290
|
msgstr "ஒத்திசைவிற்கான பொருளை தேட முடியவில்லை"
|
1274
1291
|
|
1275
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1276
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1277
|
-
msgstr "நிறுவனம் '%{org}' இல் ஒத்திசைவுத் திட்டம் '%{plan}' ஐக் கண்டறிய முடியவில்லை"
|
1278
|
-
|
1279
1292
|
msgid "Count"
|
1280
1293
|
msgstr ""
|
1281
1294
|
|
@@ -1346,6 +1359,9 @@ msgstr ""
|
|
1346
1359
|
msgid "Current organization not set."
|
1347
1360
|
msgstr ""
|
1348
1361
|
|
1362
|
+
msgid "Custom"
|
1363
|
+
msgstr ""
|
1364
|
+
|
1349
1365
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1350
1366
|
msgid "Custom Content Repositories"
|
1351
1367
|
msgstr "தனிப்பயன் உள்ளடக்க தொகுப்பதிவகங்கள்"
|
@@ -1559,9 +1575,15 @@ msgstr ""
|
|
1559
1575
|
msgid "Description of the repository"
|
1560
1576
|
msgstr ""
|
1561
1577
|
|
1578
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1579
|
+
msgstr ""
|
1580
|
+
|
1562
1581
|
msgid "Desired quantity of the pool"
|
1563
1582
|
msgstr ""
|
1564
1583
|
|
1584
|
+
msgid "Destination Server name"
|
1585
|
+
msgstr ""
|
1586
|
+
|
1565
1587
|
msgid "Destroy"
|
1566
1588
|
msgstr ""
|
1567
1589
|
|
@@ -1613,6 +1635,9 @@ msgstr ""
|
|
1613
1635
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1614
1636
|
msgstr ""
|
1615
1637
|
|
1638
|
+
msgid "Directory containing the exported Content View Version"
|
1639
|
+
msgstr ""
|
1640
|
+
|
1616
1641
|
msgid "Disable"
|
1617
1642
|
msgstr ""
|
1618
1643
|
|
@@ -1628,6 +1653,9 @@ msgstr ""
|
|
1628
1653
|
msgid "Disable simple content access for a manifest"
|
1629
1654
|
msgstr ""
|
1630
1655
|
|
1656
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1657
|
+
msgstr ""
|
1658
|
+
|
1631
1659
|
msgid "Disconnected mode"
|
1632
1660
|
msgstr ""
|
1633
1661
|
|
@@ -1712,6 +1740,9 @@ msgstr ""
|
|
1712
1740
|
msgid "Enabled Repositories"
|
1713
1741
|
msgstr ""
|
1714
1742
|
|
1743
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1744
|
+
msgstr ""
|
1745
|
+
|
1715
1746
|
msgid "End Date"
|
1716
1747
|
msgstr ""
|
1717
1748
|
|
@@ -1835,7 +1866,10 @@ msgstr ""
|
|
1835
1866
|
msgid "Export CSV"
|
1836
1867
|
msgstr ""
|
1837
1868
|
|
1838
|
-
msgid "Export
|
1869
|
+
msgid "Export Library"
|
1870
|
+
msgstr ""
|
1871
|
+
|
1872
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1839
1873
|
msgstr ""
|
1840
1874
|
|
1841
1875
|
msgid "Export a repository"
|
@@ -1844,9 +1878,15 @@ msgstr ""
|
|
1844
1878
|
msgid "Export as CSV"
|
1845
1879
|
msgstr ""
|
1846
1880
|
|
1881
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1882
|
+
msgstr ""
|
1883
|
+
|
1847
1884
|
msgid "Export to ISO format"
|
1848
1885
|
msgstr ""
|
1849
1886
|
|
1887
|
+
msgid "Export to ISO format."
|
1888
|
+
msgstr ""
|
1889
|
+
|
1850
1890
|
msgid "Exported version"
|
1851
1891
|
msgstr ""
|
1852
1892
|
|
@@ -1990,10 +2030,6 @@ msgstr ""
|
|
1990
2030
|
msgid "GPG Key URL"
|
1991
2031
|
msgstr ""
|
1992
2032
|
|
1993
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1994
|
-
msgid "GPG Keys"
|
1995
|
-
msgstr "GPG விசைகள்"
|
1996
|
-
|
1997
2033
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1998
2034
|
msgid "Generate and Download"
|
1999
2035
|
msgstr "உருவாக்கிப் பதிவிறக்கவும்"
|
@@ -2101,6 +2137,9 @@ msgstr ""
|
|
2101
2137
|
msgid "Host content and subscription details"
|
2102
2138
|
msgstr ""
|
2103
2139
|
|
2140
|
+
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."
|
2141
|
+
msgstr ""
|
2142
|
+
|
2104
2143
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2105
2144
|
msgstr ""
|
2106
2145
|
|
@@ -2125,6 +2164,9 @@ msgstr ""
|
|
2125
2164
|
msgid "Host id to list applicable packages for"
|
2126
2165
|
msgstr ""
|
2127
2166
|
|
2167
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2168
|
+
msgstr ""
|
2169
|
+
|
2128
2170
|
msgid "Host with ID %s already exists in the host collection."
|
2129
2171
|
msgstr ""
|
2130
2172
|
|
@@ -2279,6 +2321,9 @@ msgstr ""
|
|
2279
2321
|
msgid "Identifiers for Lifecycle Environment"
|
2280
2322
|
msgstr ""
|
2281
2323
|
|
2324
|
+
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"
|
2325
|
+
msgstr ""
|
2326
|
+
|
2282
2327
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2283
2328
|
msgstr ""
|
2284
2329
|
|
@@ -2321,6 +2366,15 @@ msgstr ""
|
|
2321
2366
|
msgid "Immediate"
|
2322
2367
|
msgstr ""
|
2323
2368
|
|
2369
|
+
msgid "Import"
|
2370
|
+
msgstr ""
|
2371
|
+
|
2372
|
+
msgid "Import Content View Version"
|
2373
|
+
msgstr ""
|
2374
|
+
|
2375
|
+
msgid "Import Default Content View"
|
2376
|
+
msgstr ""
|
2377
|
+
|
2324
2378
|
#, fuzzy
|
2325
2379
|
msgid "Import Manifest"
|
2326
2380
|
msgstr "இறக்குமதிசெய்"
|
@@ -2343,6 +2397,12 @@ msgstr ""
|
|
2343
2397
|
msgid "Import a Manifest using the manifest tab above."
|
2344
2398
|
msgstr ""
|
2345
2399
|
|
2400
|
+
msgid "Import a content view version"
|
2401
|
+
msgstr ""
|
2402
|
+
|
2403
|
+
msgid "Import a content view version to the library"
|
2404
|
+
msgstr ""
|
2405
|
+
|
2346
2406
|
#, fuzzy
|
2347
2407
|
msgid "Import facts"
|
2348
2408
|
msgstr "இறக்குமதிசெய்"
|
@@ -2350,6 +2410,15 @@ msgstr "இறக்குமதிசெய்"
|
|
2350
2410
|
msgid "Import uploads into a repository"
|
2351
2411
|
msgstr ""
|
2352
2412
|
|
2413
|
+
msgid "Import-only can not be changed after creation"
|
2414
|
+
msgstr ""
|
2415
|
+
|
2416
|
+
msgid "Import-only content views can not be published directly"
|
2417
|
+
msgstr ""
|
2418
|
+
|
2419
|
+
msgid "Import-only content views will be available in a future version."
|
2420
|
+
msgstr ""
|
2421
|
+
|
2353
2422
|
msgid "Importing manifest into '%{subject}' failed."
|
2354
2423
|
msgstr ""
|
2355
2424
|
|
@@ -2534,6 +2603,9 @@ msgstr ""
|
|
2534
2603
|
msgid "Invalid params provided - date_type must be one of %s"
|
2535
2604
|
msgstr ""
|
2536
2605
|
|
2606
|
+
msgid "Invalid path specified."
|
2607
|
+
msgstr ""
|
2608
|
+
|
2537
2609
|
msgid ""
|
2538
2610
|
"Invalid puppet module parameters specified. \\\n"
|
2539
2611
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2542,6 +2614,12 @@ msgstr ""
|
|
2542
2614
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2543
2615
|
msgstr ""
|
2544
2616
|
|
2617
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2618
|
+
msgstr ""
|
2619
|
+
|
2620
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2621
|
+
msgstr ""
|
2622
|
+
|
2545
2623
|
msgid "Invalid value specified for Container Image repositories."
|
2546
2624
|
msgstr ""
|
2547
2625
|
|
@@ -2551,6 +2629,9 @@ msgstr ""
|
|
2551
2629
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2552
2630
|
msgstr ""
|
2553
2631
|
|
2632
|
+
msgid "Katello"
|
2633
|
+
msgstr ""
|
2634
|
+
|
2554
2635
|
msgid "Katello ID of local pool to update"
|
2555
2636
|
msgstr ""
|
2556
2637
|
|
@@ -2611,9 +2692,6 @@ msgstr ""
|
|
2611
2692
|
msgid "Learn more about adding Subscription Manifests"
|
2612
2693
|
msgstr ""
|
2613
2694
|
|
2614
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2615
|
-
msgstr ""
|
2616
|
-
|
2617
2695
|
#, fuzzy
|
2618
2696
|
msgid "Library lifecycle environments may not be deleted."
|
2619
2697
|
msgstr "சூழல் '%s' அழிக்கப்பட்டது."
|
@@ -2715,6 +2793,9 @@ msgstr ""
|
|
2715
2793
|
msgid "List errata available for the content host"
|
2716
2794
|
msgstr ""
|
2717
2795
|
|
2796
|
+
msgid "List export histories"
|
2797
|
+
msgstr ""
|
2798
|
+
|
2718
2799
|
msgid "List filter rules"
|
2719
2800
|
msgstr ""
|
2720
2801
|
|
@@ -2868,6 +2949,9 @@ msgstr ""
|
|
2868
2949
|
msgid "List srpms"
|
2869
2950
|
msgstr ""
|
2870
2951
|
|
2952
|
+
msgid "List subscriptions"
|
2953
|
+
msgstr ""
|
2954
|
+
|
2871
2955
|
msgid "List sync plans"
|
2872
2956
|
msgstr ""
|
2873
2957
|
|
@@ -2956,6 +3040,9 @@ msgstr "செய்தி"
|
|
2956
3040
|
msgid "Messaging connection"
|
2957
3041
|
msgstr ""
|
2958
3042
|
|
3043
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
3044
|
+
msgstr ""
|
3045
|
+
|
2959
3046
|
msgid "Mismatched"
|
2960
3047
|
msgstr ""
|
2961
3048
|
|
@@ -3095,6 +3182,9 @@ msgstr ""
|
|
3095
3182
|
msgid "No errors"
|
3096
3183
|
msgstr "பிழைகள் இல்லை"
|
3097
3184
|
|
3185
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3186
|
+
msgstr ""
|
3187
|
+
|
3098
3188
|
msgid "No file uploaded"
|
3099
3189
|
msgstr ""
|
3100
3190
|
|
@@ -3107,12 +3197,18 @@ msgstr ""
|
|
3107
3197
|
msgid "No hosts registered with subscription-manager found in selection."
|
3108
3198
|
msgstr ""
|
3109
3199
|
|
3200
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3201
|
+
msgstr ""
|
3202
|
+
|
3110
3203
|
msgid "No manifest file uploaded"
|
3111
3204
|
msgstr ""
|
3112
3205
|
|
3113
3206
|
msgid "No matching content views found"
|
3114
3207
|
msgstr ""
|
3115
3208
|
|
3209
|
+
msgid "No matching repositories found"
|
3210
|
+
msgstr ""
|
3211
|
+
|
3116
3212
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3117
3213
|
msgid "No new packages installed"
|
3118
3214
|
msgstr "புதிய தொகுப்புகள் எதுவும் நிறுவப்படவில்லை"
|
@@ -3255,6 +3351,9 @@ msgstr ""
|
|
3255
3351
|
msgid "On-disk location for exported repositories"
|
3256
3352
|
msgstr ""
|
3257
3353
|
|
3354
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3355
|
+
msgstr ""
|
3356
|
+
|
3258
3357
|
#, fuzzy
|
3259
3358
|
msgid "One of parameters [ %s ] required but not specified."
|
3260
3359
|
msgstr "organization_id அவசியம், ஆனால் குறிப்பிடப்படவில்லை."
|
@@ -3288,6 +3387,9 @@ msgstr ""
|
|
3288
3387
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3289
3388
|
msgstr ""
|
3290
3389
|
|
3390
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3391
|
+
msgstr ""
|
3392
|
+
|
3291
3393
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
3292
3394
|
msgid "Organization"
|
3293
3395
|
msgstr "நிறுவனம்"
|
@@ -3567,6 +3669,18 @@ msgstr ""
|
|
3567
3669
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3568
3670
|
msgstr ""
|
3569
3671
|
|
3672
|
+
msgid "Performs a full-export of a content view version."
|
3673
|
+
msgstr ""
|
3674
|
+
|
3675
|
+
msgid "Performs a full-export of the repositories in library."
|
3676
|
+
msgstr ""
|
3677
|
+
|
3678
|
+
msgid "Performs an incremental-export of a content view version."
|
3679
|
+
msgstr ""
|
3680
|
+
|
3681
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3682
|
+
msgstr ""
|
3683
|
+
|
3570
3684
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3571
3685
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3572
3686
|
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' சூழல் changeset எதையும் கொண்டி
|
|
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
|
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 ifelix
|
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
|
|