katello 4.0.3 → 4.1.0.rc1
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/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +0 -33
- data/app/assets/stylesheets/katello/contents.scss +1 -1
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -11
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -9
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -24
- data/app/controllers/katello/api/v2/api_controller.rb +15 -3
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_exports_controller.rb +1 -14
- data/app/controllers/katello/api/v2/content_imports_controller.rb +38 -15
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +22 -1
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +6 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -59
- data/app/controllers/katello/api/v2/content_views_controller.rb +3 -58
- data/app/controllers/katello/api/v2/host_errata_controller.rb +7 -6
- data/app/controllers/katello/api/v2/host_packages_controller.rb +4 -4
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +18 -22
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +16 -16
- data/app/controllers/katello/api/v2/organizations_controller.rb +2 -1
- data/app/controllers/katello/api/v2/package_groups_controller.rb +4 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +13 -12
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +50 -4
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +7 -1
- data/app/controllers/katello/concerns/api/api_controller.rb +10 -0
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +46 -0
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +8 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +31 -22
- data/app/controllers/katello/concerns/hosts_controller_extensions.rb +0 -8
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +1 -1
- data/app/controllers/katello/concerns/registration_commands_controller_extensions.rb +34 -0
- data/app/helpers/katello/katello_urls_helper.rb +23 -0
- data/app/lib/actions/candlepin/owner/import.rb +10 -3
- data/app/lib/actions/candlepin/product/content_update.rb +1 -1
- data/app/lib/actions/foreman/environment/destroy.rb +2 -2
- data/app/lib/actions/katello/agent_action.rb +1 -6
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +0 -7
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
- data/app/lib/actions/katello/content_view/add_to_environment.rb +9 -7
- data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -10
- data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -3
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -4
- data/app/lib/actions/katello/content_view/publish.rb +21 -31
- data/app/lib/actions/katello/content_view_environment/destroy.rb +0 -5
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +22 -0
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +22 -0
- data/app/lib/actions/katello/content_view_version/destroy.rb +0 -10
- data/app/lib/actions/katello/content_view_version/export.rb +20 -22
- data/app/lib/actions/katello/content_view_version/import.rb +27 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +4 -2
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +12 -67
- data/app/lib/actions/katello/content_view_version/republish_repositories.rb +0 -4
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +11 -0
- data/app/lib/actions/katello/foreman/content_update.rb +0 -3
- data/app/lib/actions/katello/host/auto_attach_subscriptions.rb +0 -4
- data/app/lib/actions/katello/organization/manifest_import.rb +7 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +28 -7
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +2 -2
- data/app/lib/actions/katello/product/create.rb +0 -1
- data/app/lib/actions/katello/repository/check_matching_content.rb +4 -3
- data/app/lib/actions/katello/repository/destroy.rb +1 -1
- data/app/lib/actions/katello/repository/discover.rb +1 -1
- data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -4
- data/app/lib/actions/katello/repository/import_upload.rb +0 -1
- data/app/lib/actions/katello/repository/update.rb +0 -1
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +0 -5
- data/app/lib/actions/pulp/repository/create.rb +1 -7
- data/app/lib/actions/pulp/repository/distributor_publish.rb +2 -10
- data/app/lib/actions/pulp/repository/sync.rb +1 -3
- data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
- data/app/lib/actions/pulp3/content_guard/refresh.rb +10 -6
- data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +57 -0
- data/app/lib/actions/pulp3/content_view_version/create_import_history.rb +34 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +34 -51
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +2 -2
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +13 -1
- data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/sync.rb +1 -0
- data/app/lib/actions/pulp3/repository/refresh_remote.rb +17 -0
- data/app/lib/katello/agent/client_message_handler.rb +3 -11
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +117 -3
- data/app/lib/katello/errors.rb +6 -11
- data/app/lib/katello/event_daemon/monitor.rb +0 -1
- data/app/lib/katello/event_daemon/runner.rb +2 -2
- data/app/lib/katello/event_daemon/services/agent_event_receiver.rb +10 -6
- data/app/lib/katello/http_resource.rb +1 -6
- data/app/lib/katello/logging.rb +11 -6
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/repo_discovery.rb +15 -1
- data/app/lib/katello/resources/candlepin/owner.rb +3 -2
- data/app/lib/katello/resources/candlepin/pool.rb +6 -2
- data/app/lib/katello/resources/candlepin.rb +10 -0
- data/app/lib/katello/util/package.rb +1 -1
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb +0 -6
- data/app/models/katello/authorization/content_view.rb +8 -0
- data/app/models/katello/authorization/content_view_version_import_history.rb +11 -0
- data/app/models/katello/concerns/content_facet_host_extensions.rb +1 -1
- data/app/models/katello/concerns/content_view_filter_rule_common.rb +2 -2
- data/app/models/katello/concerns/host_managed_extensions.rb +1 -32
- data/app/models/katello/concerns/hostgroup_extensions.rb +2 -9
- data/app/models/katello/concerns/http_proxy_extensions.rb +2 -4
- data/app/models/katello/concerns/location_extensions.rb +2 -25
- data/app/models/katello/concerns/operatingsystem_extensions.rb +0 -2
- data/app/models/katello/concerns/organization_extensions.rb +4 -18
- data/app/models/katello/concerns/redhat_extensions.rb +10 -18
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -31
- data/app/models/katello/content_view.rb +17 -113
- data/app/models/katello/content_view_component.rb +5 -0
- data/app/models/katello/content_view_docker_filter_rule.rb +1 -0
- data/app/models/katello/content_view_package_filter_rule.rb +4 -0
- data/app/models/katello/content_view_package_group_filter.rb +1 -0
- data/app/models/katello/content_view_repository.rb +4 -5
- data/app/models/katello/content_view_version.rb +9 -33
- data/app/models/katello/content_view_version_export_history.rb +18 -4
- data/app/models/katello/content_view_version_import_history.rb +42 -0
- data/app/models/katello/erratum.rb +1 -1
- data/app/models/katello/events/delete_pool.rb +19 -0
- data/app/models/katello/glue/candlepin/environment.rb +7 -0
- data/app/models/katello/glue/candlepin/owner.rb +12 -1
- data/app/models/katello/glue/candlepin/pool.rb +42 -25
- data/app/models/katello/glue/provider.rb +3 -6
- data/app/models/katello/glue/pulp/repo.rb +19 -9
- data/app/models/katello/host/content_facet.rb +1 -0
- data/app/models/katello/host/subscription_facet.rb +3 -1
- data/app/models/katello/kt_environment.rb +0 -6
- data/app/models/katello/package_group.rb +4 -0
- data/app/models/katello/ping.rb +15 -4
- data/app/models/katello/pool.rb +9 -0
- data/app/models/katello/product.rb +0 -6
- data/app/models/katello/product_content.rb +3 -1
- data/app/models/katello/pulp_sync_status.rb +0 -10
- data/app/models/katello/repository.rb +20 -35
- data/app/models/katello/root_repository.rb +0 -5
- data/app/models/katello/subscription.rb +10 -0
- data/app/models/katello/sync_plan.rb +7 -0
- data/app/models/setting/content.rb +7 -8
- data/app/presenters/katello/content_view_version_compare_presenter.rb +2 -6
- data/app/presenters/katello/product_content_presenter.rb +3 -5
- data/app/services/cert/certs.rb +3 -7
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/event_handler.rb +22 -22
- data/app/services/katello/candlepin/message_handler.rb +24 -15
- data/app/services/katello/content_view_manager.rb +24 -0
- data/app/services/katello/event_monitor/poller_thread.rb +25 -20
- data/app/services/katello/managed_content_medium_provider.rb +4 -0
- data/app/services/katello/organization_creator.rb +120 -0
- data/app/services/katello/product_content_finder.rb +5 -1
- data/app/services/katello/pulp/pulp_content_unit.rb +6 -6
- data/app/services/katello/pulp/smart_proxy_repository.rb +2 -17
- data/app/services/katello/pulp3/api/ansible_collection.rb +14 -2
- data/app/services/katello/pulp3/api/apt.rb +1 -1
- data/app/services/katello/pulp3/api/content_guard.rb +6 -40
- data/app/services/katello/pulp3/api/core.rb +27 -2
- data/app/services/katello/pulp3/api/docker.rb +1 -1
- data/app/services/katello/pulp3/api/file.rb +5 -1
- data/app/services/katello/pulp3/api/yum.rb +9 -1
- data/app/services/katello/pulp3/content_view_version/export.rb +18 -40
- data/app/services/katello/pulp3/content_view_version/import.rb +75 -30
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +32 -0
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +53 -21
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +47 -0
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +52 -0
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +99 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +1 -1
- data/app/services/katello/pulp3/repository/ansible_collection.rb +5 -1
- data/app/services/katello/pulp3/repository/apt.rb +2 -1
- data/app/services/katello/pulp3/repository/yum.rb +0 -16
- data/app/services/katello/pulp3/repository.rb +20 -1
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +12 -5
- data/app/services/katello/pulp3/task_group.rb +10 -5
- data/app/services/katello/smart_proxy_helper.rb +1 -8
- data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +0 -1
- data/app/services/katello/ui_notifications/system_error.rb +25 -0
- data/app/views/katello/api/v2/content_view_components/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_filters/show.json.rabl +0 -1
- data/app/views/katello/api/v2/{puppet_modules → content_view_version_import_histories}/index.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_import_histories/show.json.rabl +14 -0
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +2 -2
- data/app/views/katello/api/v2/content_view_versions/show.json.rabl +0 -7
- data/app/views/katello/api/v2/content_views/base.json.rabl +20 -9
- data/app/views/katello/api/v2/environments/show.json.rabl +0 -1
- data/app/views/katello/api/v2/package_groups/index.json.rabl +4 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +0 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repository_sets/index.json.rabl +4 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +22 -0
- data/app/views/katello/api/v2/subscriptions/show.json.rabl +1 -1
- data/app/views/overrides/activation_keys/_host_media_type_select.html.erb +1 -1
- data/app/views/overrides/smart_proxies/_download_policy.erb +1 -1
- data/config/initializers/monkeys.rb +0 -1
- data/config/katello.yaml.example +0 -1
- data/config/routes/api/v2.rb +9 -21
- data/config/routes/overrides.rb +1 -2
- data/db/migrate/20140422000001_update_products_add_organization.rb +3 -2
- data/db/migrate/20160701180402_add_sortable_version_to_puppet_modules.rb +2 -0
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +1 -1
- data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +14 -20
- data/db/migrate/20210224160921_remove_disabled_products_from_sync_plans.rb +6 -0
- data/db/migrate/20210302165636_remove_katello_puppet_modules.rb +62 -0
- data/db/migrate/20210309160925_create_katello_content_view_version_import_histories.rb +13 -0
- data/db/migrate/20210318204533_add_import_type_to_import_histories.rb +8 -0
- data/db/migrate/20210319123300_add_foreign_keys_to_import_export_histories.rb +6 -0
- data/db/migrate/20210322142311_add_auth_url_token_to_root_repositories.rb +6 -0
- data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +16 -0
- data/db/migrate/20210409033915_add_created_in_katello_to_taxonomy.rb +9 -0
- data/db/seeds.d/101-locations.rb +0 -3
- data/db/seeds.d/102-organizations.rb +1 -5
- data/db/seeds.d/109-katello-notification-blueprints.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +3 -2
- data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +325 -156
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-route/angular-route.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +21 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +9 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +11 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +18 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +10 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-actions.controller.js +5 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +6 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +14 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +5 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +0 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js +9 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +2 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +3 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -56
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +2 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +21 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +71 -311
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +13 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +21 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +3 -3
- data/lib/katello/engine.rb +16 -15
- data/lib/katello/middleware/organization_created_enforcer.rb +22 -0
- data/lib/katello/permission_creator.rb +12 -28
- data/lib/katello/permissions/host_permissions.rb +3 -2
- data/lib/katello/plugin.rb +6 -19
- data/lib/katello/repository_types/ansible_collection.rb +1 -1
- data/lib/katello/repository_types/deb.rb +1 -1
- data/lib/katello/repository_types/docker.rb +1 -1
- data/lib/katello/repository_types/file.rb +1 -1
- data/lib/katello/repository_types/yum.rb +1 -1
- data/lib/katello/tasks/clean_backend_objects.rake +25 -0
- data/lib/katello/tasks/jenkins.rake +6 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -3
- data/lib/katello/tasks/reimport.rake +0 -1
- data/lib/katello/tasks/repository.rake +0 -30
- data/lib/katello/tasks/update_subscription_facet_backend_data.rake +3 -3
- data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +2 -4
- data/lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake +62 -0
- data/lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake +15 -0
- data/lib/katello/version.rb +1 -1
- data/lib/katello.rb +1 -1
- data/locale/action_names.rb +65 -63
- data/locale/bn/katello.edit.po +1357 -1606
- data/locale/bn/katello.po +465 -744
- data/locale/cs/katello.edit.po +1213 -1087
- data/locale/cs/katello.po +307 -219
- data/locale/de/katello.edit.po +1498 -1520
- data/locale/de/katello.po +589 -625
- data/locale/en/katello.edit.po +1198 -1074
- data/locale/en/katello.po +304 -213
- data/locale/es/katello.edit.po +2344 -2304
- data/locale/es/katello.po +1407 -1407
- data/locale/fr/katello.edit.po +2720 -2642
- data/locale/fr/katello.po +1703 -1750
- data/locale/gu/katello.edit.po +1546 -1797
- data/locale/gu/katello.po +654 -935
- data/locale/hi/katello.edit.po +1545 -1793
- data/locale/hi/katello.po +653 -931
- data/locale/it/katello.edit.po +1323 -1310
- data/locale/it/katello.po +407 -409
- data/locale/ja/katello.edit.po +2645 -2557
- data/locale/ja/katello.po +1646 -1664
- data/locale/katello.pot +1435 -1289
- data/locale/kn/katello.edit.po +1546 -1795
- data/locale/kn/katello.po +654 -933
- data/locale/ko/katello.edit.po +1464 -1449
- data/locale/ko/katello.po +554 -554
- data/locale/mr/katello.edit.po +1545 -1758
- data/locale/mr/katello.po +653 -896
- data/locale/or/katello.edit.po +1546 -1795
- data/locale/or/katello.po +654 -933
- data/locale/pa/katello.edit.po +1541 -1775
- data/locale/pa/katello.po +649 -913
- data/locale/pt/katello.edit.po +1289 -1255
- data/locale/pt/katello.po +398 -394
- data/locale/pt_BR/katello.edit.po +2370 -2315
- data/locale/pt_BR/katello.po +1435 -1421
- data/locale/ru/katello.edit.po +1611 -1608
- data/locale/ru/katello.po +704 -716
- data/locale/ta/katello.edit.po +1358 -1605
- data/locale/ta/katello.po +465 -742
- data/locale/te/katello.edit.po +1545 -1792
- data/locale/te/katello.po +653 -930
- data/locale/zh_CN/katello.edit.po +3052 -2930
- data/locale/zh_CN/katello.po +2055 -2039
- data/locale/zh_TW/katello.edit.po +1571 -1669
- data/locale/zh_TW/katello.po +649 -777
- data/package.json +2 -2
- data/webpack/{scenes/ContentViews/Details/Repositories/RepoAddedStatus.js → components/AddedStatusLabel.js} +5 -5
- data/webpack/components/RoutedTabs/RoutedTabs.js +91 -0
- data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +32 -0
- data/webpack/components/RoutedTabs/index.js +4 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageConstants.js +2 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageSelectors.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/ActivationKeys.test.js +18 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/Force.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/IgnoreSubmanErrors.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/LifeCycleEnvironment.test.js +11 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +58 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +27 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +99 -0
- data/webpack/components/extensions/RegistrationCommands/fields/Force.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +56 -0
- data/webpack/components/extensions/RegistrationCommands/index.js +81 -0
- data/webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js +23 -24
- data/webpack/components/pf3Table/formatters/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +3 -1
- data/webpack/components/pf3Table/formatters/entitlementsValueFormatter.js +16 -0
- data/webpack/containers/Application/overrides.scss +3 -0
- data/webpack/fills_index.js +3 -0
- data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +0 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -1
- data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +28 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +45 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +124 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +161 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +163 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/unpublishedCVComponents.fixtures.json +64 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +67 -7
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +61 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +34 -11
- data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +33 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +117 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +115 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +7 -10
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +49 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +56 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +3 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterPackageGroups.fixtures.json +69 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +103 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json +147 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json +30 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +136 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json +370 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +94 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +0 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +106 -13
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +11 -5
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +5 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +138 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +1 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +57 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +73 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +31 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +64 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +8 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +105 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +728 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +154 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/emptyCVVersion.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -1
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Table/ContentViewVersionCell.js +33 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +17 -22
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +51 -102
- data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +5 -3
- data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +30 -5
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +95 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +11 -5
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +16 -0
- data/webpack/scenes/ContentViews/components/IconWithCount.js +1 -1
- data/webpack/scenes/ContentViews/components/InactiveText.js +15 -0
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +19 -1
- data/webpack/scenes/Subscriptions/Details/SubscriptionPurposeAttributes.js +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +17 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +144 -0
- data/webpack/scenes/Tasks/helpers.js +2 -2
- data/webpack/test-utils/react-testing-lib-wrapper.js +11 -3
- data/webpack/utils/__tests__/useParamsWithHash.test.js +22 -0
- data/webpack/utils/helpers.js +2 -0
- data/webpack/utils/paramsFromHash.js +16 -0
- data/webpack/utils/useUrlParams.js +14 -0
- metadata +122 -206
- data/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb +0 -82
- data/app/controllers/katello/api/v2/puppet_modules_controller.rb +0 -19
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +0 -16
- data/app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb +0 -20
- data/app/lib/actions/candlepin/owner/create.rb +0 -16
- data/app/lib/actions/katello/content_view_puppet_environment/clear.rb +0 -11
- data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +0 -78
- data/app/lib/actions/katello/content_view_puppet_environment/clone_content_for_version.rb +0 -20
- data/app/lib/actions/katello/content_view_puppet_environment/create.rb +0 -34
- data/app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb +0 -23
- data/app/lib/actions/katello/content_view_puppet_environment/destroy.rb +0 -28
- data/app/lib/actions/katello/content_view_puppet_module/destroy.rb +0 -46
- data/app/lib/actions/katello/environment/library_create.rb +0 -35
- data/app/lib/actions/katello/organization/create.rb +0 -38
- data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +0 -36
- data/app/lib/actions/pulp/content_view_puppet_environment/index_content.rb +0 -19
- data/app/lib/actions/pulp/repository/presenters/puppet_presenter.rb +0 -54
- data/app/lib/actions/pulp3/content_migration.rb +0 -31
- data/app/lib/actions/pulp3/content_migration_presenter.rb +0 -59
- data/app/lib/actions/pulp3/content_migration_reset.rb +0 -22
- data/app/lib/katello/foreman.rb +0 -32
- data/app/lib/katello/mapping.rb +0 -31
- data/app/lib/katello/util/hostgroup_facets_helper.rb +0 -126
- data/app/lib/katello/validators/content_view_puppet_module_validator.rb +0 -32
- data/app/models/katello/concerns/environment_extensions.rb +0 -74
- data/app/models/katello/content_view_puppet_environment.rb +0 -116
- data/app/models/katello/content_view_puppet_environment_puppet_module.rb +0 -11
- data/app/models/katello/content_view_puppet_module.rb +0 -63
- data/app/models/katello/puppet_module.rb +0 -77
- data/app/models/katello/repository_puppet_module.rb +0 -7
- data/app/services/katello/pulp/puppet_module.rb +0 -21
- data/app/services/katello/pulp/repository/puppet.rb +0 -68
- data/app/services/katello/pulp3/migration.rb +0 -329
- data/app/services/katello/pulp3/migration_plan.rb +0 -178
- data/app/services/katello/pulp3/migration_switchover.rb +0 -126
- data/app/services/katello/puppet_class_importer_extensions.rb +0 -32
- data/app/views/foreman/hosts/_registration.html.erb +0 -12
- data/app/views/katello/api/v2/activation_keys/product_content.json.rabl +0 -30
- data/app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl +0 -3
- data/app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl +0 -7
- data/app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl +0 -9
- data/app/views/katello/api/v2/content_views/puppet_modules.json.rabl +0 -7
- data/app/views/katello/api/v2/host_subscriptions/content_override.json.rabl +0 -3
- data/app/views/katello/api/v2/host_subscriptions/product_content.json.rabl +0 -29
- data/app/views/katello/api/v2/puppet_modules/backend.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/base.json.rabl +0 -9
- data/app/views/katello/api/v2/puppet_modules/compare.json.rabl +0 -10
- data/app/views/katello/api/v2/puppet_modules/name.json.rabl +0 -3
- data/app/views/katello/api/v2/puppet_modules/names.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/show.json.rabl +0 -4
- data/db/migrate/20210512192745_fix_red_hat_root_repository_arch.rb +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +0 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +0 -38
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +0 -45
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +0 -61
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js +0 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +0 -74
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html +0 -57
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html +0 -64
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html +0 -54
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html +0 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +0 -6903
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +0 -7094
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +0 -7303
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +0 -6895
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +0 -6865
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +0 -6720
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +0 -7077
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +0 -6832
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +0 -6766
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +0 -6703
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html +0 -41
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html +0 -32
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html +0 -52
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html +0 -37
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +0 -35
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js +0 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js +0 -71
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html +0 -47
- data/lib/katello/repository_types/puppet.rb +0 -5
- data/lib/katello/tasks/fix_hostgroup_facets.rake +0 -8
- data/lib/katello/tasks/pulp3_content_switchover.rake +0 -32
- data/lib/katello/tasks/pulp3_migration.rake +0 -41
- data/lib/katello/tasks/pulp3_migration_abort.rake +0 -22
- data/lib/katello/tasks/pulp3_migration_reset.rake +0 -26
- data/lib/katello/tasks/pulp3_migration_stats.rake +0 -41
- data/lib/katello/tasks/pulp3_post_migration_check.rake +0 -51
- data/lib/monkeys/passenger_tee_input.rb +0 -20
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/webpack/components/TabWrapper/TabWrapper.js +0 -26
- data/webpack/components/TabWrapper/index.js +0 -3
- data/webpack/components/TabbedView/TabbedView.js +0 -38
- data/webpack/components/TabbedView/TabbedView.scss +0 -3
- data/webpack/components/TabbedView/index.js +0 -3
- data/webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js +0 -19
- data/webpack/scenes/ContentViews/expansions/VersionsExpansion.js +0 -11
data/locale/ta/katello.po
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the
|
3
|
+
# This file is distributed under the same license as the katello package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
5
|
#
|
5
6
|
# Translators:
|
6
|
-
#
|
7
|
-
#
|
7
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2020
|
8
|
+
#
|
8
9
|
msgid ""
|
9
10
|
msgstr ""
|
10
|
-
"Project-Id-Version:
|
11
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
11
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
+
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
14
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2020\n"
|
15
|
+
"Language-Team: Tamil (https://www.transifex.com/foreman/teams/114/ta/)\n"
|
12
16
|
"MIME-Version: 1.0\n"
|
13
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
14
18
|
"Content-Transfer-Encoding: 8bit\n"
|
15
|
-
"
|
16
|
-
"Last-Translator: ifelix <ifelix@redhat.com>\n"
|
17
|
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
18
|
-
"Language: ta-IN\n"
|
19
|
+
"Language: ta\n"
|
19
20
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20
|
-
"X-Generator: Zanata 3.6.2\n"
|
21
21
|
|
22
22
|
msgid ""
|
23
23
|
"\n"
|
24
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
24
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
25
25
|
msgstr ""
|
26
26
|
|
27
27
|
msgid " %{errata_count} Errata"
|
@@ -33,16 +33,15 @@ msgstr ""
|
|
33
33
|
msgid " %{package_count} Package(s)"
|
34
34
|
msgstr ""
|
35
35
|
|
36
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
37
|
-
msgstr ""
|
38
|
-
|
39
36
|
msgid " Content view updated."
|
40
37
|
msgstr ""
|
41
38
|
|
42
39
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
43
40
|
msgstr ""
|
44
41
|
|
45
|
-
|
42
|
+
msgid " RPMs"
|
43
|
+
msgstr ""
|
44
|
+
|
46
45
|
msgid " environment cannot be set to an environment already on its path"
|
47
46
|
msgstr "ஒரு சூழலை ஏற்கனவே அதனுடைய பாதைகளில் சூழலை அமைக்க முடியவில்லை"
|
48
47
|
|
@@ -52,10 +51,8 @@ msgstr ""
|
|
52
51
|
msgid "%s Available"
|
53
52
|
msgstr ""
|
54
53
|
|
55
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
56
|
-
#, fuzzy
|
57
54
|
msgid "%s Errata"
|
58
|
-
msgstr "
|
55
|
+
msgstr ""
|
59
56
|
|
60
57
|
msgid "%s Host"
|
61
58
|
msgid_plural "%s Hosts"
|
@@ -65,14 +62,12 @@ msgstr[1] ""
|
|
65
62
|
msgid "%s Used"
|
66
63
|
msgstr ""
|
67
64
|
|
68
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
69
65
|
msgid "%s ago"
|
70
66
|
msgstr "%s முன்"
|
71
67
|
|
72
68
|
msgid "%s has already been deleted"
|
73
69
|
msgstr ""
|
74
70
|
|
75
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
76
71
|
msgid "%s is not a valid package name"
|
77
72
|
msgstr "%s ஒரு சரியான தொகுப்பு பெயர் இல்லை"
|
78
73
|
|
@@ -82,236 +77,179 @@ msgstr ""
|
|
82
77
|
msgid "%s must be an array."
|
83
78
|
msgstr ""
|
84
79
|
|
85
|
-
#, fuzzy
|
86
80
|
msgid "%{errata} (%{total} other errata)"
|
87
|
-
msgstr "
|
81
|
+
msgstr ""
|
88
82
|
|
89
|
-
#, fuzzy
|
90
83
|
msgid "%{errata} (%{total} other errata) install canceled"
|
91
|
-
msgstr "
|
84
|
+
msgstr ""
|
92
85
|
|
93
|
-
#, fuzzy
|
94
86
|
msgid "%{errata} (%{total} other errata) install failed"
|
95
|
-
msgstr "
|
87
|
+
msgstr ""
|
96
88
|
|
97
|
-
#, fuzzy
|
98
89
|
msgid "%{errata} (%{total} other errata) install timed out"
|
99
|
-
msgstr "
|
90
|
+
msgstr ""
|
100
91
|
|
101
|
-
#, fuzzy
|
102
92
|
msgid "%{errata} (%{total} other errata) installed"
|
103
|
-
msgstr "
|
93
|
+
msgstr ""
|
104
94
|
|
105
|
-
#, fuzzy
|
106
95
|
msgid "%{errata} erratum install canceled"
|
107
|
-
msgstr "
|
96
|
+
msgstr ""
|
108
97
|
|
109
|
-
#, fuzzy
|
110
98
|
msgid "%{errata} erratum install failed"
|
111
|
-
msgstr "
|
99
|
+
msgstr ""
|
112
100
|
|
113
|
-
#, fuzzy
|
114
101
|
msgid "%{errata} erratum install timed out"
|
115
|
-
msgstr "
|
102
|
+
msgstr ""
|
116
103
|
|
117
|
-
#, fuzzy
|
118
104
|
msgid "%{errata} erratum installed"
|
119
|
-
msgstr "
|
105
|
+
msgstr ""
|
120
106
|
|
121
107
|
msgid "%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content."
|
122
108
|
msgstr ""
|
123
109
|
|
124
|
-
#, fuzzy
|
125
110
|
msgid "%{group} (%{total} other package groups)"
|
126
|
-
msgstr "
|
111
|
+
msgstr ""
|
127
112
|
|
128
|
-
#, fuzzy
|
129
113
|
msgid "%{group} (%{total} other package groups) install canceled"
|
130
|
-
msgstr "
|
114
|
+
msgstr ""
|
131
115
|
|
132
|
-
#, fuzzy
|
133
116
|
msgid "%{group} (%{total} other package groups) install failed"
|
134
|
-
msgstr "
|
117
|
+
msgstr ""
|
135
118
|
|
136
|
-
#, fuzzy
|
137
119
|
msgid "%{group} (%{total} other package groups) install timed out"
|
138
|
-
msgstr "
|
120
|
+
msgstr ""
|
139
121
|
|
140
|
-
#, fuzzy
|
141
122
|
msgid "%{group} (%{total} other package groups) installed"
|
142
|
-
msgstr "
|
123
|
+
msgstr ""
|
143
124
|
|
144
|
-
#, fuzzy
|
145
125
|
msgid "%{group} (%{total} other package groups) remove canceled"
|
146
|
-
msgstr "
|
126
|
+
msgstr ""
|
147
127
|
|
148
|
-
#, fuzzy
|
149
128
|
msgid "%{group} (%{total} other package groups) remove failed"
|
150
|
-
msgstr "
|
129
|
+
msgstr ""
|
151
130
|
|
152
|
-
#, fuzzy
|
153
131
|
msgid "%{group} (%{total} other package groups) remove timed out"
|
154
|
-
msgstr "
|
132
|
+
msgstr ""
|
155
133
|
|
156
|
-
#, fuzzy
|
157
134
|
msgid "%{group} (%{total} other package groups) removed"
|
158
|
-
msgstr "
|
135
|
+
msgstr ""
|
159
136
|
|
160
|
-
#, fuzzy
|
161
137
|
msgid "%{group} (%{total} other package groups) update canceled"
|
162
|
-
msgstr "
|
138
|
+
msgstr ""
|
163
139
|
|
164
|
-
#, fuzzy
|
165
140
|
msgid "%{group} (%{total} other package groups) update failed"
|
166
|
-
msgstr "
|
141
|
+
msgstr ""
|
167
142
|
|
168
|
-
#, fuzzy
|
169
143
|
msgid "%{group} (%{total} other package groups) update timed out"
|
170
|
-
msgstr "
|
144
|
+
msgstr ""
|
171
145
|
|
172
|
-
#, fuzzy
|
173
146
|
msgid "%{group} (%{total} other package groups) updated"
|
174
|
-
msgstr "
|
147
|
+
msgstr ""
|
175
148
|
|
176
|
-
#, fuzzy
|
177
149
|
msgid "%{group} package group install canceled"
|
178
|
-
msgstr "
|
150
|
+
msgstr ""
|
179
151
|
|
180
|
-
#, fuzzy
|
181
152
|
msgid "%{group} package group install failed"
|
182
|
-
msgstr "
|
153
|
+
msgstr ""
|
183
154
|
|
184
|
-
#, fuzzy
|
185
155
|
msgid "%{group} package group install timed out"
|
186
|
-
msgstr "
|
156
|
+
msgstr ""
|
187
157
|
|
188
|
-
#, fuzzy
|
189
158
|
msgid "%{group} package group installed"
|
190
|
-
msgstr "
|
159
|
+
msgstr ""
|
191
160
|
|
192
|
-
#, fuzzy
|
193
161
|
msgid "%{group} package group remove canceled"
|
194
|
-
msgstr "
|
162
|
+
msgstr ""
|
195
163
|
|
196
|
-
#, fuzzy
|
197
164
|
msgid "%{group} package group remove failed"
|
198
|
-
msgstr "
|
165
|
+
msgstr ""
|
199
166
|
|
200
|
-
#, fuzzy
|
201
167
|
msgid "%{group} package group remove timed out"
|
202
|
-
msgstr "
|
168
|
+
msgstr ""
|
203
169
|
|
204
|
-
#, fuzzy
|
205
170
|
msgid "%{group} package group removed"
|
206
|
-
msgstr "
|
171
|
+
msgstr ""
|
207
172
|
|
208
|
-
#, fuzzy
|
209
173
|
msgid "%{group} package group update canceled"
|
210
|
-
msgstr "
|
174
|
+
msgstr ""
|
211
175
|
|
212
|
-
#, fuzzy
|
213
176
|
msgid "%{group} package group update failed"
|
214
|
-
msgstr "
|
177
|
+
msgstr ""
|
215
178
|
|
216
|
-
#, fuzzy
|
217
179
|
msgid "%{group} package group update timed out"
|
218
|
-
msgstr "
|
180
|
+
msgstr ""
|
219
181
|
|
220
|
-
#, fuzzy
|
221
182
|
msgid "%{group} package group updated"
|
222
|
-
msgstr "
|
183
|
+
msgstr ""
|
223
184
|
|
224
|
-
#, fuzzy
|
225
185
|
msgid "%{package} (%{total} other packages)"
|
226
|
-
msgstr "
|
186
|
+
msgstr ""
|
227
187
|
|
228
|
-
#, fuzzy
|
229
188
|
msgid "%{package} (%{total} other packages) install canceled"
|
230
|
-
msgstr "
|
189
|
+
msgstr ""
|
231
190
|
|
232
|
-
#, fuzzy
|
233
191
|
msgid "%{package} (%{total} other packages) install failed"
|
234
|
-
msgstr "
|
192
|
+
msgstr ""
|
235
193
|
|
236
|
-
#, fuzzy
|
237
194
|
msgid "%{package} (%{total} other packages) install timed out"
|
238
|
-
msgstr "
|
195
|
+
msgstr ""
|
239
196
|
|
240
|
-
#, fuzzy
|
241
197
|
msgid "%{package} (%{total} other packages) installed"
|
242
|
-
msgstr "
|
198
|
+
msgstr ""
|
243
199
|
|
244
|
-
#, fuzzy
|
245
200
|
msgid "%{package} (%{total} other packages) remove canceled"
|
246
|
-
msgstr "
|
201
|
+
msgstr ""
|
247
202
|
|
248
|
-
#, fuzzy
|
249
203
|
msgid "%{package} (%{total} other packages) remove failed"
|
250
|
-
msgstr "
|
204
|
+
msgstr ""
|
251
205
|
|
252
|
-
#, fuzzy
|
253
206
|
msgid "%{package} (%{total} other packages) remove timed out"
|
254
|
-
msgstr "
|
207
|
+
msgstr ""
|
255
208
|
|
256
|
-
#, fuzzy
|
257
209
|
msgid "%{package} (%{total} other packages) removed"
|
258
|
-
msgstr "
|
210
|
+
msgstr ""
|
259
211
|
|
260
|
-
#, fuzzy
|
261
212
|
msgid "%{package} (%{total} other packages) update canceled"
|
262
|
-
msgstr "
|
213
|
+
msgstr ""
|
263
214
|
|
264
|
-
#, fuzzy
|
265
215
|
msgid "%{package} (%{total} other packages) update failed"
|
266
|
-
msgstr "
|
216
|
+
msgstr ""
|
267
217
|
|
268
|
-
#, fuzzy
|
269
218
|
msgid "%{package} (%{total} other packages) update timed out"
|
270
|
-
msgstr "
|
219
|
+
msgstr ""
|
271
220
|
|
272
|
-
#, fuzzy
|
273
221
|
msgid "%{package} (%{total} other packages) updated"
|
274
|
-
msgstr "
|
222
|
+
msgstr ""
|
275
223
|
|
276
|
-
#, fuzzy
|
277
224
|
msgid "%{package} package install canceled"
|
278
|
-
msgstr "
|
225
|
+
msgstr ""
|
279
226
|
|
280
|
-
#, fuzzy
|
281
227
|
msgid "%{package} package install timed out"
|
282
|
-
msgstr "
|
228
|
+
msgstr ""
|
283
229
|
|
284
|
-
#, fuzzy
|
285
230
|
msgid "%{package} package remove canceled"
|
286
|
-
msgstr "
|
231
|
+
msgstr ""
|
287
232
|
|
288
|
-
#, fuzzy
|
289
233
|
msgid "%{package} package remove failed"
|
290
|
-
msgstr "
|
234
|
+
msgstr ""
|
291
235
|
|
292
|
-
#, fuzzy
|
293
236
|
msgid "%{package} package remove timed out"
|
294
|
-
msgstr "
|
237
|
+
msgstr ""
|
295
238
|
|
296
|
-
#, fuzzy
|
297
239
|
msgid "%{package} package removed"
|
298
|
-
msgstr "
|
240
|
+
msgstr ""
|
299
241
|
|
300
|
-
#, fuzzy
|
301
242
|
msgid "%{package} package update canceled"
|
302
|
-
msgstr "
|
243
|
+
msgstr ""
|
303
244
|
|
304
|
-
#, fuzzy
|
305
245
|
msgid "%{package} package update failed"
|
306
|
-
msgstr "
|
246
|
+
msgstr ""
|
307
247
|
|
308
|
-
#, fuzzy
|
309
248
|
msgid "%{package} package update timed out"
|
310
|
-
msgstr "
|
249
|
+
msgstr ""
|
311
250
|
|
312
|
-
#, fuzzy
|
313
251
|
msgid "%{package} package updated"
|
314
|
-
msgstr "
|
252
|
+
msgstr ""
|
315
253
|
|
316
254
|
msgid "%{sla}"
|
317
255
|
msgstr ""
|
@@ -337,7 +275,6 @@ msgstr ""
|
|
337
275
|
msgid ", must be unique to major and version id version."
|
338
276
|
msgstr ""
|
339
277
|
|
340
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
341
278
|
msgid ": '%s' is a built-in environment"
|
342
279
|
msgstr ": '%s' என்பது ஒரு உள்ளமைந்த சுழலாகும்"
|
343
280
|
|
@@ -353,15 +290,17 @@ msgstr ""
|
|
353
290
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
354
291
|
msgstr ""
|
355
292
|
|
293
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
294
|
+
msgstr ""
|
295
|
+
|
356
296
|
msgid "A backend service [ %s ] is unreachable"
|
357
297
|
msgstr ""
|
358
298
|
|
359
299
|
msgid "A content view can be added by using the \"New content view\" button below."
|
360
300
|
msgstr ""
|
361
301
|
|
362
|
-
#, fuzzy
|
363
302
|
msgid "A content_type must be provided."
|
364
|
-
msgstr "
|
303
|
+
msgstr ""
|
365
304
|
|
366
305
|
msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
|
367
306
|
msgstr ""
|
@@ -390,6 +329,9 @@ msgstr ""
|
|
390
329
|
msgid "A summary of new errata after a repository is synchronized"
|
391
330
|
msgstr ""
|
392
331
|
|
332
|
+
msgid "About page"
|
333
|
+
msgstr ""
|
334
|
+
|
393
335
|
msgid "Abstract async task"
|
394
336
|
msgstr ""
|
395
337
|
|
@@ -399,44 +341,49 @@ msgstr ""
|
|
399
341
|
msgid "Account Number"
|
400
342
|
msgstr ""
|
401
343
|
|
344
|
+
msgid "Action"
|
345
|
+
msgstr ""
|
346
|
+
|
402
347
|
msgid "Action not allowed for the default smart proxy."
|
403
348
|
msgstr ""
|
404
349
|
|
405
|
-
msgid "Action unauthorized to be performed
|
350
|
+
msgid "Action unauthorized to be performed in this organization."
|
406
351
|
msgstr ""
|
407
352
|
|
408
|
-
msgid "Action
|
353
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
409
354
|
msgstr ""
|
410
355
|
|
411
|
-
msgid "
|
356
|
+
msgid "Action with sub plans"
|
412
357
|
msgstr ""
|
413
358
|
|
414
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
415
359
|
msgid "Activation Keys"
|
416
360
|
msgstr "செயல்பாட்டு விசைகள்"
|
417
361
|
|
418
362
|
msgid "Activation key ID"
|
419
363
|
msgstr ""
|
420
364
|
|
421
|
-
msgid "Activation key
|
365
|
+
msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
366
|
+
msgstr ""
|
367
|
+
|
368
|
+
msgid "Activation key(s) for Subscription Manager."
|
369
|
+
msgstr ""
|
370
|
+
|
371
|
+
msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
|
422
372
|
msgstr ""
|
423
373
|
|
424
|
-
#, fuzzy
|
425
374
|
msgid "Activation keys and subscriptions can be managed"
|
426
|
-
msgstr "
|
375
|
+
msgstr ""
|
376
|
+
|
377
|
+
msgid "Activation keys: "
|
378
|
+
msgstr ""
|
427
379
|
|
428
380
|
msgid "Active Subscriptions"
|
429
381
|
msgstr ""
|
430
382
|
|
431
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
432
|
-
#, fuzzy
|
433
383
|
msgid "Active only"
|
434
|
-
msgstr "செயல்பாட்டு விசைகள்"
|
435
|
-
|
436
|
-
msgid "Add Subscriptions"
|
437
384
|
msgstr ""
|
438
385
|
|
439
|
-
msgid "Add
|
386
|
+
msgid "Add Subscriptions"
|
440
387
|
msgstr ""
|
441
388
|
|
442
389
|
msgid "Add a subscription to a host"
|
@@ -472,13 +419,22 @@ msgstr ""
|
|
472
419
|
msgid "Add subscriptions to one or more hosts"
|
473
420
|
msgstr ""
|
474
421
|
|
422
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
423
|
+
msgstr ""
|
424
|
+
|
425
|
+
msgid "Add to this filter using the 'Add package group' button."
|
426
|
+
msgstr ""
|
427
|
+
|
428
|
+
msgid "Added"
|
429
|
+
msgstr ""
|
430
|
+
|
475
431
|
msgid "Added Content:"
|
476
432
|
msgstr ""
|
477
433
|
|
478
434
|
msgid "Adding content units"
|
479
435
|
msgstr ""
|
480
436
|
|
481
|
-
msgid "
|
437
|
+
msgid "Additional content"
|
482
438
|
msgstr ""
|
483
439
|
|
484
440
|
msgid "Addons"
|
@@ -540,6 +496,9 @@ msgstr ""
|
|
540
496
|
msgid "Arch"
|
541
497
|
msgstr ""
|
542
498
|
|
499
|
+
msgid "Architecture"
|
500
|
+
msgstr ""
|
501
|
+
|
543
502
|
msgid "Architecture of content in the repository"
|
544
503
|
msgstr ""
|
545
504
|
|
@@ -614,21 +573,17 @@ msgstr ""
|
|
614
573
|
msgid "At least one Content View Version must be specified"
|
615
574
|
msgstr ""
|
616
575
|
|
617
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
618
576
|
msgid "At least one activation key must be provided"
|
619
577
|
msgstr "குறைந்தது ஒரு செயல்பாட்டு விசையாவது கொடுக்க வேண்டும்"
|
620
578
|
|
621
579
|
msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
|
622
580
|
msgstr ""
|
623
581
|
|
624
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
625
582
|
msgid "At least one organization must exist."
|
626
583
|
msgstr "குறைந்தது ஒரு நிறுவனம் இருக்க வேண்டும்"
|
627
584
|
|
628
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
629
|
-
#, fuzzy
|
630
585
|
msgid "Attach a subscription"
|
631
|
-
msgstr "
|
586
|
+
msgstr ""
|
632
587
|
|
633
588
|
msgid "Attach subscriptions"
|
634
589
|
msgstr ""
|
@@ -648,10 +603,8 @@ msgstr ""
|
|
648
603
|
msgid "Auto Publish - Triggered by '%s'"
|
649
604
|
msgstr ""
|
650
605
|
|
651
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
652
|
-
#, fuzzy
|
653
606
|
msgid "Auto attach subscriptions"
|
654
|
-
msgstr "
|
607
|
+
msgstr ""
|
655
608
|
|
656
609
|
msgid "Autopublish"
|
657
610
|
msgstr ""
|
@@ -686,7 +639,6 @@ msgstr ""
|
|
686
639
|
msgid "Batch size to sync repositories in."
|
687
640
|
msgstr ""
|
688
641
|
|
689
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
690
642
|
msgid "Beta"
|
691
643
|
msgstr "பீட்டா"
|
692
644
|
|
@@ -702,14 +654,11 @@ msgstr ""
|
|
702
654
|
msgid "Branches updated"
|
703
655
|
msgstr ""
|
704
656
|
|
705
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
706
657
|
msgid "Bug Fix"
|
707
658
|
msgstr "வழு நீக்கல்"
|
708
659
|
|
709
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
710
|
-
#, fuzzy
|
711
660
|
msgid "Bugfix"
|
712
|
-
msgstr "
|
661
|
+
msgstr ""
|
713
662
|
|
714
663
|
msgid "Bulk generate applicability for hosts"
|
715
664
|
msgstr ""
|
@@ -717,15 +666,12 @@ msgstr ""
|
|
717
666
|
msgid "CDN SSL version"
|
718
667
|
msgstr ""
|
719
668
|
|
720
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
721
669
|
msgid "CDN loading error: %s not found"
|
722
670
|
msgstr "CDN ஏற்றும் பிழை: %s காணவில்லை"
|
723
671
|
|
724
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
725
672
|
msgid "CDN loading error: access denied to %s"
|
726
673
|
msgstr "CDN ஏற்றுதல் பிழை: %s க்கான அணுகல் மறுக்கப்பட்டது"
|
727
674
|
|
728
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
729
675
|
msgid "CDN loading error: access forbidden to %s"
|
730
676
|
msgstr "CDN ஏற்றுதல் பிழை: %s க்கான அணுகல் தடுக்கப்பட்டது"
|
731
677
|
|
@@ -753,11 +699,9 @@ msgstr ""
|
|
753
699
|
msgid "Can only upload to Yum Repositories."
|
754
700
|
msgstr ""
|
755
701
|
|
756
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
757
702
|
msgid "Can't update the '%s' environment"
|
758
703
|
msgstr "'%s' சூழலைப் புதுப்பிக்க முடியாது"
|
759
704
|
|
760
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
761
705
|
msgid "Cancel"
|
762
706
|
msgstr "ரத்து"
|
763
707
|
|
@@ -767,20 +711,15 @@ msgstr ""
|
|
767
711
|
msgid "Cancel running smart proxy synchronization"
|
768
712
|
msgstr ""
|
769
713
|
|
770
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
771
|
-
#, fuzzy
|
772
714
|
msgid "Canceled"
|
773
|
-
msgstr "
|
715
|
+
msgstr ""
|
774
716
|
|
775
717
|
msgid "Cancelled"
|
776
718
|
msgstr ""
|
777
719
|
|
778
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
779
|
-
#, fuzzy
|
780
720
|
msgid "Cancelled."
|
781
|
-
msgstr "
|
721
|
+
msgstr ""
|
782
722
|
|
783
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
784
723
|
msgid "Candlepin Event"
|
785
724
|
msgstr "Candlepin நிகழ்வு"
|
786
725
|
|
@@ -823,14 +762,12 @@ msgstr ""
|
|
823
762
|
msgid "Cannot clone into the Default Content View"
|
824
763
|
msgstr ""
|
825
764
|
|
826
|
-
#, fuzzy
|
827
765
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
828
|
-
msgstr "
|
766
|
+
msgstr ""
|
829
767
|
|
830
768
|
msgid "Cannot delete Red Hat product: %{product}"
|
831
769
|
msgstr ""
|
832
770
|
|
833
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
834
771
|
msgid "Cannot delete from %s, view does not exist there."
|
835
772
|
msgstr "%s இலிருந்து அழிக்க முடியவில்லை, அங்கு காட்சி இல்லை."
|
836
773
|
|
@@ -843,29 +780,23 @@ msgstr ""
|
|
843
780
|
msgid "Cannot delete redhat product content"
|
844
781
|
msgstr ""
|
845
782
|
|
846
|
-
msgid "Cannot delete the default Location for Puppet content. If you no longer want this Location, change the default Location for Puppet content under Administer > Settings, tab Content."
|
847
|
-
msgstr ""
|
848
|
-
|
849
783
|
msgid "Cannot delete the default Location for subscribed hosts. If you no longer want this Location, change the default Location for subscribed hosts under Administer > Settings, tab Content."
|
850
784
|
msgstr ""
|
851
785
|
|
852
|
-
msgid "Cannot delete the last Location.
|
786
|
+
msgid "Cannot delete the last Location."
|
853
787
|
msgstr ""
|
854
788
|
|
855
|
-
#, fuzzy
|
856
789
|
msgid "Cannot delete version while it is in environment %s"
|
857
|
-
msgstr "
|
790
|
+
msgstr ""
|
858
791
|
|
859
|
-
#, fuzzy
|
860
792
|
msgid "Cannot delete version while it is in environments: %s"
|
861
|
-
msgstr "
|
793
|
+
msgstr ""
|
862
794
|
|
863
795
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
864
796
|
msgstr ""
|
865
797
|
|
866
|
-
#, fuzzy
|
867
798
|
msgid "Cannot delete view while it exists in environments"
|
868
|
-
msgstr "
|
799
|
+
msgstr ""
|
869
800
|
|
870
801
|
msgid "Cannot import a composite content view"
|
871
802
|
msgstr ""
|
@@ -891,7 +822,6 @@ msgstr ""
|
|
891
822
|
msgid "Cannot publish default content view"
|
892
823
|
msgstr ""
|
893
824
|
|
894
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
895
825
|
msgid "Cannot register a system to the '%s' environment"
|
896
826
|
msgstr "கணினியை ஒரு '%s' சூழலுக்குப் பதிவு செய்ய முடியாது"
|
897
827
|
|
@@ -919,15 +849,12 @@ msgstr ""
|
|
919
849
|
msgid "Cannot specify content for composite views"
|
920
850
|
msgstr ""
|
921
851
|
|
922
|
-
msgid "Cannot sync file:// repositories with On Demand
|
852
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
923
853
|
msgstr ""
|
924
854
|
|
925
855
|
msgid "Cannot upload Container Image content."
|
926
856
|
msgstr ""
|
927
857
|
|
928
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
929
|
-
msgstr ""
|
930
|
-
|
931
858
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
932
859
|
msgstr ""
|
933
860
|
|
@@ -952,17 +879,18 @@ msgstr ""
|
|
952
879
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
953
880
|
msgstr ""
|
954
881
|
|
882
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
883
|
+
msgstr ""
|
884
|
+
|
955
885
|
msgid "Click here to go to the tasks page for the task."
|
956
886
|
msgstr ""
|
957
887
|
|
958
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
959
888
|
msgid "Clone"
|
960
889
|
msgstr "குளோன்"
|
961
890
|
|
962
891
|
msgid "Close"
|
963
892
|
msgstr ""
|
964
893
|
|
965
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
966
894
|
msgid "Collapse All"
|
967
895
|
msgstr "அனைத்தையும் நிலைகுலை"
|
968
896
|
|
@@ -975,7 +903,6 @@ msgstr ""
|
|
975
903
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
976
904
|
msgstr ""
|
977
905
|
|
978
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
979
906
|
msgid "Component"
|
980
907
|
msgstr "கூறு"
|
981
908
|
|
@@ -1027,7 +954,6 @@ msgstr ""
|
|
1027
954
|
msgid "Container image tag"
|
1028
955
|
msgstr ""
|
1029
956
|
|
1030
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1031
957
|
msgid "Content"
|
1032
958
|
msgstr "உள்ளடக்கம்"
|
1033
959
|
|
@@ -1046,14 +972,7 @@ msgstr ""
|
|
1046
972
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1047
973
|
msgstr ""
|
1048
974
|
|
1049
|
-
#, fuzzy
|
1050
975
|
msgid "Content Hosts"
|
1051
|
-
msgstr "உள்ளடக்கம்"
|
1052
|
-
|
1053
|
-
msgid "Content Migration"
|
1054
|
-
msgstr ""
|
1055
|
-
|
1056
|
-
msgid "Content Migration Reset"
|
1057
976
|
msgstr ""
|
1058
977
|
|
1059
978
|
msgid "Content Source"
|
@@ -1065,13 +984,9 @@ msgstr ""
|
|
1065
984
|
msgid "Content Types"
|
1066
985
|
msgstr ""
|
1067
986
|
|
1068
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1069
987
|
msgid "Content View"
|
1070
988
|
msgstr "உள்ளடக்க பார்வை"
|
1071
989
|
|
1072
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
1073
|
-
msgstr ""
|
1074
|
-
|
1075
990
|
msgid "Content View %{view}: Versions: %{versions}"
|
1076
991
|
msgstr ""
|
1077
992
|
|
@@ -1084,10 +999,8 @@ msgstr ""
|
|
1084
999
|
msgid "Content View Details"
|
1085
1000
|
msgstr ""
|
1086
1001
|
|
1087
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1088
|
-
#, fuzzy
|
1089
1002
|
msgid "Content View Filter id"
|
1090
|
-
msgstr "
|
1003
|
+
msgstr ""
|
1091
1004
|
|
1092
1005
|
msgid "Content View Filter identifier"
|
1093
1006
|
msgstr ""
|
@@ -1116,7 +1029,6 @@ msgstr ""
|
|
1116
1029
|
msgid "Content View id"
|
1117
1030
|
msgstr ""
|
1118
1031
|
|
1119
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1120
1032
|
msgid "Content Views"
|
1121
1033
|
msgstr "உள்ளடக்கக் காட்சிகள்"
|
1122
1034
|
|
@@ -1126,6 +1038,9 @@ msgstr ""
|
|
1126
1038
|
msgid "Content host must be unregistered before performing this action."
|
1127
1039
|
msgstr ""
|
1128
1040
|
|
1041
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1042
|
+
msgstr ""
|
1043
|
+
|
1129
1044
|
msgid "Content source ID"
|
1130
1045
|
msgstr ""
|
1131
1046
|
|
@@ -1141,7 +1056,6 @@ msgstr ""
|
|
1141
1056
|
msgid "Content view ${name} created"
|
1142
1057
|
msgstr ""
|
1143
1058
|
|
1144
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1145
1059
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1146
1060
|
msgstr "உள்ளடக்கக் காட்சி '%{view}' சூழல் '%{env}' இல் இல்லை"
|
1147
1061
|
|
@@ -1160,6 +1074,9 @@ msgstr ""
|
|
1160
1074
|
msgid "Content view label"
|
1161
1075
|
msgstr ""
|
1162
1076
|
|
1077
|
+
msgid "Content view not provided in the metadata"
|
1078
|
+
msgstr ""
|
1079
|
+
|
1163
1080
|
msgid "Content view numeric identifier"
|
1164
1081
|
msgstr ""
|
1165
1082
|
|
@@ -1169,6 +1086,9 @@ msgstr ""
|
|
1169
1086
|
msgid "Content view version identifier"
|
1170
1087
|
msgstr ""
|
1171
1088
|
|
1089
|
+
msgid "Content view version import history identifier"
|
1090
|
+
msgstr ""
|
1091
|
+
|
1172
1092
|
msgid "Content_Host_Status"
|
1173
1093
|
msgstr ""
|
1174
1094
|
|
@@ -1184,18 +1104,15 @@ msgstr ""
|
|
1184
1104
|
msgid "Contract Number"
|
1185
1105
|
msgstr ""
|
1186
1106
|
|
1187
|
-
#, fuzzy
|
1188
1107
|
msgid "Copy an activation key"
|
1189
|
-
msgstr "
|
1108
|
+
msgstr ""
|
1190
1109
|
|
1191
1110
|
msgid "Copy version units to library"
|
1192
1111
|
msgstr ""
|
1193
1112
|
|
1194
|
-
#, fuzzy
|
1195
1113
|
msgid "Cores: %s"
|
1196
|
-
msgstr "
|
1114
|
+
msgstr ""
|
1197
1115
|
|
1198
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1199
1116
|
msgid "Could not delete organization '%s'."
|
1200
1117
|
msgstr "நிறுவனம் '%s'ஐ அழிக்க முடியாது."
|
1201
1118
|
|
@@ -1217,9 +1134,6 @@ msgstr ""
|
|
1217
1134
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1218
1135
|
msgstr ""
|
1219
1136
|
|
1220
|
-
msgid "Could not find Repository for module %s."
|
1221
|
-
msgstr ""
|
1222
|
-
|
1223
1137
|
msgid "Could not find a host with id %s"
|
1224
1138
|
msgstr ""
|
1225
1139
|
|
@@ -1235,26 +1149,18 @@ msgstr ""
|
|
1235
1149
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1236
1150
|
msgstr ""
|
1237
1151
|
|
1238
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1239
|
-
msgstr ""
|
1240
|
-
|
1241
1152
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1242
1153
|
msgstr ""
|
1243
1154
|
|
1244
1155
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1245
1156
|
msgstr ""
|
1246
1157
|
|
1247
|
-
#, fuzzy
|
1248
1158
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1249
|
-
msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
|
1250
|
-
|
1251
|
-
msgid "Couldn't find Organization '%s'."
|
1252
1159
|
msgstr ""
|
1253
1160
|
|
1254
|
-
msgid "Couldn't find
|
1161
|
+
msgid "Couldn't find Organization '%s'."
|
1255
1162
|
msgstr ""
|
1256
1163
|
|
1257
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1258
1164
|
msgid "Couldn't find activation key '%s'"
|
1259
1165
|
msgstr "செயல்படுத்தல் விசை '%s' ஐக் கண்டறிய முடியவில்லை"
|
1260
1166
|
|
@@ -1264,9 +1170,8 @@ msgstr ""
|
|
1264
1170
|
msgid "Couldn't find activation key environment '%s'"
|
1265
1171
|
msgstr ""
|
1266
1172
|
|
1267
|
-
#, fuzzy
|
1268
1173
|
msgid "Couldn't find consumer '%s'"
|
1269
|
-
msgstr "
|
1174
|
+
msgstr ""
|
1270
1175
|
|
1271
1176
|
msgid "Couldn't find content host content view id '%s'"
|
1272
1177
|
msgstr ""
|
@@ -1274,27 +1179,20 @@ msgstr ""
|
|
1274
1179
|
msgid "Couldn't find content host environment '%s'"
|
1275
1180
|
msgstr ""
|
1276
1181
|
|
1277
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1278
1182
|
msgid "Couldn't find content view '%s'"
|
1279
1183
|
msgstr "உள்ளடக்கக் காட்சி '%s' ஐக் கன்டறிய முடியவில்லை"
|
1280
1184
|
|
1281
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1282
|
-
#, fuzzy
|
1283
1185
|
msgid "Couldn't find content view version '%s'"
|
1284
|
-
msgstr "
|
1186
|
+
msgstr ""
|
1285
1187
|
|
1286
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1287
|
-
#, fuzzy
|
1288
1188
|
msgid "Couldn't find content view versions '%s'"
|
1289
|
-
msgstr "
|
1189
|
+
msgstr ""
|
1290
1190
|
|
1291
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1292
1191
|
msgid "Couldn't find environment '%s'"
|
1293
1192
|
msgstr "சூழலை '%s' தேட முடியவில்லை"
|
1294
1193
|
|
1295
|
-
#, fuzzy
|
1296
1194
|
msgid "Couldn't find errata ids '%s'"
|
1297
|
-
msgstr "
|
1195
|
+
msgstr ""
|
1298
1196
|
|
1299
1197
|
msgid "Couldn't find host collection '%s'"
|
1300
1198
|
msgstr ""
|
@@ -1305,32 +1203,33 @@ msgstr ""
|
|
1305
1203
|
msgid "Couldn't find organization '%s'"
|
1306
1204
|
msgstr "நிறுவனம் '%s' ஐக் கண்டறிய முடியவில்லை"
|
1307
1205
|
|
1308
|
-
#, fuzzy
|
1309
1206
|
msgid "Couldn't find prior-environment '%s'"
|
1310
|
-
msgstr "
|
1207
|
+
msgstr ""
|
1311
1208
|
|
1312
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1313
1209
|
msgid "Couldn't find product with id '%s'"
|
1314
1210
|
msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
|
1315
1211
|
|
1316
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1317
1212
|
msgid "Couldn't find repository '%s'"
|
1318
1213
|
msgstr "தொகுப்பதிவகம் '%s' ஐ கண்டறிய முடியவில்லை"
|
1319
1214
|
|
1320
1215
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1321
1216
|
msgstr ""
|
1322
1217
|
|
1323
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1324
1218
|
msgid "Couldn't find subject of synchronization"
|
1325
1219
|
msgstr "ஒத்திசைவிற்கான பொருளை தேட முடியவில்லை"
|
1326
1220
|
|
1327
1221
|
msgid "Count"
|
1328
1222
|
msgstr ""
|
1329
1223
|
|
1330
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1331
1224
|
msgid "Create"
|
1332
1225
|
msgstr "உருவாக்கு"
|
1333
1226
|
|
1227
|
+
msgid "Create Export History"
|
1228
|
+
msgstr ""
|
1229
|
+
|
1230
|
+
msgid "Create Import History"
|
1231
|
+
msgstr ""
|
1232
|
+
|
1334
1233
|
msgid "Create Package Group"
|
1335
1234
|
msgstr ""
|
1336
1235
|
|
@@ -1391,24 +1290,21 @@ msgstr ""
|
|
1391
1290
|
msgid "Current organization not set."
|
1392
1291
|
msgstr ""
|
1393
1292
|
|
1394
|
-
msgid "Custom"
|
1395
|
-
msgstr ""
|
1396
|
-
|
1397
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1398
1293
|
msgid "Custom Content Repositories"
|
1399
1294
|
msgstr "தனிப்பயன் உள்ளடக்க தொகுப்பதிவகங்கள்"
|
1400
1295
|
|
1401
1296
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1402
1297
|
msgstr ""
|
1403
1298
|
|
1404
|
-
#, fuzzy
|
1405
1299
|
msgid "Custom repositories cannot be disabled."
|
1406
|
-
msgstr "
|
1300
|
+
msgstr ""
|
1407
1301
|
|
1408
1302
|
msgid "Database connection"
|
1409
1303
|
msgstr ""
|
1410
1304
|
|
1411
|
-
|
1305
|
+
msgid "Date"
|
1306
|
+
msgstr ""
|
1307
|
+
|
1412
1308
|
msgid "Date format is incorrect."
|
1413
1309
|
msgstr "தேதி வடிவம் தவறானது."
|
1414
1310
|
|
@@ -1424,7 +1320,6 @@ msgstr ""
|
|
1424
1320
|
msgid "Deb Packages"
|
1425
1321
|
msgstr ""
|
1426
1322
|
|
1427
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1428
1323
|
msgid "Debug Certificate"
|
1429
1324
|
msgstr "பிழைதிருத்த சான்றிதழ்"
|
1430
1325
|
|
@@ -1440,15 +1335,9 @@ msgstr ""
|
|
1440
1335
|
msgid "Default HTTP proxy"
|
1441
1336
|
msgstr ""
|
1442
1337
|
|
1443
|
-
msgid "Default Location Puppet content"
|
1444
|
-
msgstr ""
|
1445
|
-
|
1446
1338
|
msgid "Default Location subscribed hosts"
|
1447
1339
|
msgstr ""
|
1448
1340
|
|
1449
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1450
|
-
msgstr ""
|
1451
|
-
|
1452
1341
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1453
1342
|
msgstr ""
|
1454
1343
|
|
@@ -1467,9 +1356,8 @@ msgstr ""
|
|
1467
1356
|
msgid "Default Smart Proxy download policy"
|
1468
1357
|
msgstr ""
|
1469
1358
|
|
1470
|
-
#, fuzzy
|
1471
1359
|
msgid "Default System SLA"
|
1472
|
-
msgstr "
|
1360
|
+
msgstr ""
|
1473
1361
|
|
1474
1362
|
msgid "Default content view versions cannot be promoted"
|
1475
1363
|
msgstr ""
|
@@ -1534,7 +1422,6 @@ msgstr ""
|
|
1534
1422
|
msgid "Default user data for new Operating Systems created from synced content"
|
1535
1423
|
msgstr ""
|
1536
1424
|
|
1537
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
1538
1425
|
msgid "Delete"
|
1539
1426
|
msgstr "நீக்கு"
|
1540
1427
|
|
@@ -1544,11 +1431,9 @@ msgstr ""
|
|
1544
1431
|
msgid "Delete Host upon unregister"
|
1545
1432
|
msgstr ""
|
1546
1433
|
|
1547
|
-
#, fuzzy
|
1548
1434
|
msgid "Delete Lifecycle Environment"
|
1549
|
-
msgstr "
|
1435
|
+
msgstr ""
|
1550
1436
|
|
1551
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1552
1437
|
msgid "Delete Manifest"
|
1553
1438
|
msgstr "மேனிஃபெஸ்ட்டை நீக்கு"
|
1554
1439
|
|
@@ -1585,9 +1470,8 @@ msgstr ""
|
|
1585
1470
|
msgid "Delete manifest from Red Hat provider"
|
1586
1471
|
msgstr ""
|
1587
1472
|
|
1588
|
-
#, fuzzy
|
1589
1473
|
msgid "Deleted consumer '%s'"
|
1590
|
-
msgstr "
|
1474
|
+
msgstr ""
|
1591
1475
|
|
1592
1476
|
msgid "Deleted from %{environment}"
|
1593
1477
|
msgstr ""
|
@@ -1715,7 +1599,6 @@ msgstr ""
|
|
1715
1599
|
msgid "Duplicate branches specified - %{branches}"
|
1716
1600
|
msgstr ""
|
1717
1601
|
|
1718
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1719
1602
|
msgid "Duration"
|
1720
1603
|
msgstr "காலஇடைவெளி"
|
1721
1604
|
|
@@ -1731,11 +1614,9 @@ msgstr ""
|
|
1731
1614
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1732
1615
|
msgstr ""
|
1733
1616
|
|
1734
|
-
#, fuzzy
|
1735
1617
|
msgid "Either environments or versions must be specified."
|
1736
|
-
msgstr "
|
1618
|
+
msgstr ""
|
1737
1619
|
|
1738
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1739
1620
|
msgid "Either organization ID or environment ID needs to be specified"
|
1740
1621
|
msgstr "நிறுவன ID அல்லது சூழல் ID குறிப்பிடப்பட வேண்டும்"
|
1741
1622
|
|
@@ -1778,21 +1659,18 @@ msgstr ""
|
|
1778
1659
|
msgid "Ends"
|
1779
1660
|
msgstr ""
|
1780
1661
|
|
1781
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1782
1662
|
msgid "Enhancement"
|
1783
1663
|
msgstr "மேம்படுத்தல்"
|
1784
1664
|
|
1785
1665
|
msgid "Entitlements"
|
1786
1666
|
msgstr ""
|
1787
1667
|
|
1788
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1789
1668
|
msgid "Environment"
|
1790
1669
|
msgstr "சூழல்"
|
1791
1670
|
|
1792
1671
|
msgid "Environment IDs"
|
1793
1672
|
msgstr ""
|
1794
1673
|
|
1795
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1796
1674
|
msgid "Environment cannot be in its own promotion path"
|
1797
1675
|
msgstr "சூழல் உள்ளடக்கம் அதனுடைய சொந்த முன்னேற்ற பார்வை இருக்காது"
|
1798
1676
|
|
@@ -1802,30 +1680,23 @@ msgstr ""
|
|
1802
1680
|
msgid "Environments"
|
1803
1681
|
msgstr ""
|
1804
1682
|
|
1805
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1806
1683
|
msgid "Errata"
|
1807
1684
|
msgstr "பிழை"
|
1808
1685
|
|
1809
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1810
|
-
#, fuzzy
|
1811
1686
|
msgid "Errata ID"
|
1812
|
-
msgstr "
|
1687
|
+
msgstr ""
|
1813
1688
|
|
1814
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1815
1689
|
msgid "Errata Install"
|
1816
1690
|
msgstr "பிழை நிறுவல்"
|
1817
1691
|
|
1818
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1819
1692
|
msgid "Errata Install scheduled by %s"
|
1820
1693
|
msgstr "பிழை நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
|
1821
1694
|
|
1822
1695
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1823
1696
|
msgstr ""
|
1824
1697
|
|
1825
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1826
|
-
#, fuzzy
|
1827
1698
|
msgid "Errata mail"
|
1828
|
-
msgstr "
|
1699
|
+
msgstr ""
|
1829
1700
|
|
1830
1701
|
msgid "Errata to exclusively include in the action"
|
1831
1702
|
msgstr ""
|
@@ -1833,28 +1704,21 @@ msgstr ""
|
|
1833
1704
|
msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
|
1834
1705
|
msgstr ""
|
1835
1706
|
|
1836
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1837
|
-
#, fuzzy
|
1838
1707
|
msgid "Erratum"
|
1839
|
-
msgstr "
|
1708
|
+
msgstr ""
|
1840
1709
|
|
1841
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1842
1710
|
msgid "Erratum Install Canceled"
|
1843
1711
|
msgstr "Erratum நிறுவல் ரத்துசெய்யப்பட்டது"
|
1844
1712
|
|
1845
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1846
1713
|
msgid "Erratum Install Complete"
|
1847
1714
|
msgstr "Erratum நிறுவல் முடிவடைந்தது"
|
1848
1715
|
|
1849
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1850
1716
|
msgid "Erratum Install Failed"
|
1851
1717
|
msgstr "Erratum நிறுவல் தோல்வி"
|
1852
1718
|
|
1853
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1854
1719
|
msgid "Erratum Install Timed Out"
|
1855
1720
|
msgstr "Erratum நிறுவல் நேரம் முடிந்தது"
|
1856
1721
|
|
1857
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
1858
1722
|
msgid "Error"
|
1859
1723
|
msgstr "பிழை"
|
1860
1724
|
|
@@ -1873,10 +1737,15 @@ msgstr ""
|
|
1873
1737
|
msgid "Exceeds available quantity"
|
1874
1738
|
msgstr ""
|
1875
1739
|
|
1740
|
+
msgid "Exclude"
|
1741
|
+
msgstr ""
|
1742
|
+
|
1743
|
+
msgid "Excluded"
|
1744
|
+
msgstr ""
|
1745
|
+
|
1876
1746
|
msgid "Exit"
|
1877
1747
|
msgstr ""
|
1878
1748
|
|
1879
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
1880
1749
|
msgid "Expand All"
|
1881
1750
|
msgstr "அனைத்து விரிவாக்கு"
|
1882
1751
|
|
@@ -1895,9 +1764,6 @@ msgstr ""
|
|
1895
1764
|
msgid "Export Types"
|
1896
1765
|
msgstr ""
|
1897
1766
|
|
1898
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1899
|
-
msgstr ""
|
1900
|
-
|
1901
1767
|
msgid "Export a repository"
|
1902
1768
|
msgstr ""
|
1903
1769
|
|
@@ -1910,17 +1776,12 @@ msgstr ""
|
|
1910
1776
|
msgid "Export to ISO format"
|
1911
1777
|
msgstr ""
|
1912
1778
|
|
1913
|
-
msgid "Export to ISO format."
|
1914
|
-
msgstr ""
|
1915
|
-
|
1916
1779
|
msgid "Exported version"
|
1917
1780
|
msgstr ""
|
1918
1781
|
|
1919
|
-
#, fuzzy
|
1920
1782
|
msgid "Facts successfully updated."
|
1921
|
-
msgstr "
|
1783
|
+
msgstr ""
|
1922
1784
|
|
1923
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
1924
1785
|
msgid "Failed"
|
1925
1786
|
msgstr "தோல்வியுற்றது"
|
1926
1787
|
|
@@ -1930,11 +1791,6 @@ msgstr ""
|
|
1930
1791
|
msgid "Failed to delete %{host}: %{errors}"
|
1931
1792
|
msgstr ""
|
1932
1793
|
|
1933
|
-
msgid "Failed to download %s module."
|
1934
|
-
msgid_plural "Failed to download %s modules."
|
1935
|
-
msgstr[0] ""
|
1936
|
-
msgstr[1] ""
|
1937
|
-
|
1938
1794
|
msgid "Failed to download %s package."
|
1939
1795
|
msgid_plural "Failed to download %s packages."
|
1940
1796
|
msgstr[0] ""
|
@@ -2012,9 +1868,6 @@ msgstr ""
|
|
2012
1868
|
msgid "Filter versions by environment"
|
2013
1869
|
msgstr ""
|
2014
1870
|
|
2015
|
-
msgid "Filter versions by puppet module"
|
2016
|
-
msgstr ""
|
2017
|
-
|
2018
1871
|
msgid "Filter versions by version number"
|
2019
1872
|
msgstr ""
|
2020
1873
|
|
@@ -2036,6 +1889,9 @@ msgstr ""
|
|
2036
1889
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2037
1890
|
msgstr ""
|
2038
1891
|
|
1892
|
+
msgid "Force"
|
1893
|
+
msgstr ""
|
1894
|
+
|
2039
1895
|
msgid ""
|
2040
1896
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
2041
1897
|
" On Demand download policy) are skipped."
|
@@ -2065,7 +1921,6 @@ msgstr ""
|
|
2065
1921
|
msgid "GPG Key URL"
|
2066
1922
|
msgstr ""
|
2067
1923
|
|
2068
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
2069
1924
|
msgid "Generate and Download"
|
2070
1925
|
msgstr "உருவாக்கிப் பதிவிறக்கவும்"
|
2071
1926
|
|
@@ -2078,6 +1933,9 @@ msgstr ""
|
|
2078
1933
|
msgid "Get all content available, not just that provided by subscriptions"
|
2079
1934
|
msgstr ""
|
2080
1935
|
|
1936
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1937
|
+
msgstr ""
|
1938
|
+
|
2081
1939
|
msgid "Get content and overrides for the host"
|
2082
1940
|
msgstr ""
|
2083
1941
|
|
@@ -2090,12 +1948,6 @@ msgstr ""
|
|
2090
1948
|
msgid "Get list of available repositories for the repository set"
|
2091
1949
|
msgstr ""
|
2092
1950
|
|
2093
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
2094
|
-
msgstr ""
|
2095
|
-
|
2096
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
2097
|
-
msgstr ""
|
2098
|
-
|
2099
1951
|
msgid "Get status of repo synchronisation for given product"
|
2100
1952
|
msgstr ""
|
2101
1953
|
|
@@ -2126,7 +1978,9 @@ msgstr ""
|
|
2126
1978
|
msgid "History"
|
2127
1979
|
msgstr ""
|
2128
1980
|
|
2129
|
-
|
1981
|
+
msgid "History will appear here when the content view is published or promoted."
|
1982
|
+
msgstr ""
|
1983
|
+
|
2130
1984
|
msgid "Host"
|
2131
1985
|
msgstr "புரவலன்"
|
2132
1986
|
|
@@ -2214,6 +2068,9 @@ msgstr ""
|
|
2214
2068
|
msgid "Hosts with Installable Errata"
|
2215
2069
|
msgstr ""
|
2216
2070
|
|
2071
|
+
msgid "Hosts: "
|
2072
|
+
msgstr ""
|
2073
|
+
|
2217
2074
|
msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
|
2218
2075
|
msgstr ""
|
2219
2076
|
|
@@ -2283,7 +2140,6 @@ msgstr ""
|
|
2283
2140
|
msgid "ID of the sync plan"
|
2284
2141
|
msgstr ""
|
2285
2142
|
|
2286
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2287
2143
|
msgid "ID: %s doesn't exist "
|
2288
2144
|
msgstr "ID: %s இல்லை "
|
2289
2145
|
|
@@ -2368,7 +2224,7 @@ msgstr ""
|
|
2368
2224
|
msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
|
2369
2225
|
msgstr ""
|
2370
2226
|
|
2371
|
-
msgid "If set to true, use
|
2227
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2372
2228
|
msgstr ""
|
2373
2229
|
|
2374
2230
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2395,6 +2251,15 @@ msgstr ""
|
|
2395
2251
|
msgid "Ignorable content can be only set for Yum repositories."
|
2396
2252
|
msgstr ""
|
2397
2253
|
|
2254
|
+
msgid "Ignore errors"
|
2255
|
+
msgstr ""
|
2256
|
+
|
2257
|
+
msgid "Ignore subscription manager errors"
|
2258
|
+
msgstr ""
|
2259
|
+
|
2260
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2261
|
+
msgstr ""
|
2262
|
+
|
2398
2263
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2399
2264
|
msgstr ""
|
2400
2265
|
|
@@ -2410,9 +2275,8 @@ msgstr ""
|
|
2410
2275
|
msgid "Import Default Content View"
|
2411
2276
|
msgstr ""
|
2412
2277
|
|
2413
|
-
#, fuzzy
|
2414
2278
|
msgid "Import Manifest"
|
2415
|
-
msgstr "
|
2279
|
+
msgstr ""
|
2416
2280
|
|
2417
2281
|
msgid "Import New Manifest"
|
2418
2282
|
msgstr ""
|
@@ -2423,6 +2287,9 @@ msgstr ""
|
|
2423
2287
|
msgid "Import Puppet classes"
|
2424
2288
|
msgstr ""
|
2425
2289
|
|
2290
|
+
msgid "Import Types"
|
2291
|
+
msgstr ""
|
2292
|
+
|
2426
2293
|
msgid "Import a Manifest"
|
2427
2294
|
msgstr ""
|
2428
2295
|
|
@@ -2441,9 +2308,8 @@ msgstr ""
|
|
2441
2308
|
msgid "Import a content view version to the library"
|
2442
2309
|
msgstr ""
|
2443
2310
|
|
2444
|
-
#, fuzzy
|
2445
2311
|
msgid "Import facts"
|
2446
|
-
msgstr "
|
2312
|
+
msgstr ""
|
2447
2313
|
|
2448
2314
|
msgid "Import uploads into a repository"
|
2449
2315
|
msgstr ""
|
@@ -2454,15 +2320,21 @@ msgstr ""
|
|
2454
2320
|
msgid "Import-only content views can not be published directly"
|
2455
2321
|
msgstr ""
|
2456
2322
|
|
2457
|
-
msgid "Import-only content views will be available in a future version."
|
2458
|
-
msgstr ""
|
2459
|
-
|
2460
2323
|
msgid "Importing manifest into '%{subject}' failed."
|
2461
2324
|
msgstr ""
|
2462
2325
|
|
2463
2326
|
msgid "In Progress"
|
2464
2327
|
msgstr ""
|
2465
2328
|
|
2329
|
+
msgid "Include"
|
2330
|
+
msgstr ""
|
2331
|
+
|
2332
|
+
msgid "Included"
|
2333
|
+
msgstr ""
|
2334
|
+
|
2335
|
+
msgid "Includes associated content view filter ids in response"
|
2336
|
+
msgstr ""
|
2337
|
+
|
2466
2338
|
msgid "Inclusion type"
|
2467
2339
|
msgstr ""
|
2468
2340
|
|
@@ -2487,9 +2359,8 @@ msgstr ""
|
|
2487
2359
|
msgid "Index content"
|
2488
2360
|
msgstr ""
|
2489
2361
|
|
2490
|
-
#, fuzzy
|
2491
2362
|
msgid "Index errata"
|
2492
|
-
msgstr "
|
2363
|
+
msgstr ""
|
2493
2364
|
|
2494
2365
|
msgid "Index module streams"
|
2495
2366
|
msgstr ""
|
@@ -2512,29 +2383,26 @@ msgstr ""
|
|
2512
2383
|
msgid "Install Applicable Errata on %s"
|
2513
2384
|
msgstr ""
|
2514
2385
|
|
2515
|
-
msgid "Install content on one or more hosts"
|
2386
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2516
2387
|
msgstr ""
|
2517
2388
|
|
2518
2389
|
msgid "Install errata via Katello interface"
|
2519
2390
|
msgstr ""
|
2520
2391
|
|
2521
|
-
#, fuzzy
|
2522
2392
|
msgid "Install erratum"
|
2523
|
-
msgstr "
|
2393
|
+
msgstr ""
|
2524
2394
|
|
2525
2395
|
msgid "Install erratum for %s"
|
2526
2396
|
msgstr ""
|
2527
2397
|
|
2528
|
-
#, fuzzy
|
2529
2398
|
msgid "Install package"
|
2530
|
-
msgstr "
|
2399
|
+
msgstr ""
|
2531
2400
|
|
2532
2401
|
msgid "Install package for %s"
|
2533
2402
|
msgstr ""
|
2534
2403
|
|
2535
|
-
#, fuzzy
|
2536
2404
|
msgid "Install package group"
|
2537
|
-
msgstr "
|
2405
|
+
msgstr ""
|
2538
2406
|
|
2539
2407
|
msgid "Install package group via Katello interface"
|
2540
2408
|
msgstr ""
|
@@ -2542,7 +2410,7 @@ msgstr ""
|
|
2542
2410
|
msgid "Install package via Katello interface"
|
2543
2411
|
msgstr ""
|
2544
2412
|
|
2545
|
-
msgid "Install packages remotely"
|
2413
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2546
2414
|
msgstr ""
|
2547
2415
|
|
2548
2416
|
msgid "Installable errata from Content View"
|
@@ -2557,19 +2425,15 @@ msgstr ""
|
|
2557
2425
|
msgid "Installation of package(s) requested: %{packages}"
|
2558
2426
|
msgstr ""
|
2559
2427
|
|
2560
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2561
2428
|
msgid "Installed Packages"
|
2562
2429
|
msgstr "நிறுவப்பட்ட தொகுப்புகள்"
|
2563
2430
|
|
2564
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2565
2431
|
msgid "Installing Erratum..."
|
2566
2432
|
msgstr "Erratum ஐ நிறுவுகிறது..."
|
2567
2433
|
|
2568
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2569
2434
|
msgid "Installing Package Group..."
|
2570
2435
|
msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
|
2571
2436
|
|
2572
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2573
2437
|
msgid "Installing Package..."
|
2574
2438
|
msgstr "தொகுப்பை நிறுவுகிறது..."
|
2575
2439
|
|
@@ -2597,13 +2461,11 @@ msgstr ""
|
|
2597
2461
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2598
2462
|
msgstr ""
|
2599
2463
|
|
2600
|
-
#, fuzzy
|
2601
2464
|
msgid "Invalid content label: %s"
|
2602
|
-
msgstr "
|
2465
|
+
msgstr ""
|
2603
2466
|
|
2604
|
-
#, fuzzy
|
2605
2467
|
msgid "Invalid content type %s"
|
2606
|
-
msgstr "
|
2468
|
+
msgstr ""
|
2607
2469
|
|
2608
2470
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2609
2471
|
msgstr ""
|
@@ -2620,9 +2482,8 @@ msgstr ""
|
|
2620
2482
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2621
2483
|
msgstr ""
|
2622
2484
|
|
2623
|
-
#, fuzzy
|
2624
2485
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2625
|
-
msgstr "
|
2486
|
+
msgstr ""
|
2626
2487
|
|
2627
2488
|
msgid "Invalid event_type %s"
|
2628
2489
|
msgstr ""
|
@@ -2630,11 +2491,9 @@ msgstr ""
|
|
2630
2491
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2631
2492
|
msgstr ""
|
2632
2493
|
|
2633
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2634
2494
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2635
2495
|
msgstr "இந்த செயலுக்கான கோரிக்கையில் தவறான அளவுருக்கள் அனுப்பப்பட்டன. கணினி நிர்வாகி ஒருவரைத் தொடர்பு கொள்ளவும்."
|
2636
2496
|
|
2637
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2638
2497
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2639
2498
|
msgstr "தவறான அளவுருக்கள் அனுப்பப்பட்டது. நீங்கள் முகவரியை தட்டச்சு செய்ததில் பிழை இருக்கலாம். தொடர்ந்து இந்த சிக்கல் இருந்தால், நிர்வாகி ஒருவரைத் தொடர்பு கொள்ளவும்."
|
2640
2499
|
|
@@ -2644,20 +2503,6 @@ msgstr ""
|
|
2644
2503
|
msgid "Invalid params provided - date_type must be one of %s"
|
2645
2504
|
msgstr ""
|
2646
2505
|
|
2647
|
-
msgid ""
|
2648
|
-
"Invalid puppet module parameters specified. \\\n"
|
2649
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2650
|
-
msgstr ""
|
2651
|
-
|
2652
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2653
|
-
msgstr ""
|
2654
|
-
|
2655
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2656
|
-
msgstr ""
|
2657
|
-
|
2658
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2659
|
-
msgstr ""
|
2660
|
-
|
2661
2506
|
msgid "Invalid value specified for Container Image repositories."
|
2662
2507
|
msgstr ""
|
2663
2508
|
|
@@ -2667,9 +2512,6 @@ msgstr ""
|
|
2667
2512
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2668
2513
|
msgstr ""
|
2669
2514
|
|
2670
|
-
msgid "Katello"
|
2671
|
-
msgstr ""
|
2672
|
-
|
2673
2515
|
msgid "Katello ID of local pool to update"
|
2674
2516
|
msgstr ""
|
2675
2517
|
|
@@ -2724,15 +2566,23 @@ msgstr ""
|
|
2724
2566
|
msgid "Last published"
|
2725
2567
|
msgstr ""
|
2726
2568
|
|
2569
|
+
msgid "Last task"
|
2570
|
+
msgstr ""
|
2571
|
+
|
2572
|
+
msgid "Latest (automatically updates)"
|
2573
|
+
msgstr ""
|
2574
|
+
|
2727
2575
|
msgid "Latest Errata"
|
2728
2576
|
msgstr ""
|
2729
2577
|
|
2578
|
+
msgid "Latest version"
|
2579
|
+
msgstr ""
|
2580
|
+
|
2730
2581
|
msgid "Learn more about adding Subscription Manifests"
|
2731
2582
|
msgstr ""
|
2732
2583
|
|
2733
|
-
#, fuzzy
|
2734
2584
|
msgid "Library lifecycle environments may not be deleted."
|
2735
|
-
msgstr "
|
2585
|
+
msgstr ""
|
2736
2586
|
|
2737
2587
|
msgid "Library repository id to restrict comparisons to"
|
2738
2588
|
msgstr ""
|
@@ -2752,9 +2602,11 @@ msgstr ""
|
|
2752
2602
|
msgid "Lifecycle Environment ID"
|
2753
2603
|
msgstr ""
|
2754
2604
|
|
2755
|
-
#, fuzzy
|
2756
2605
|
msgid "Lifecycle Environments"
|
2757
|
-
msgstr "
|
2606
|
+
msgstr ""
|
2607
|
+
|
2608
|
+
msgid "Lifecycle environment"
|
2609
|
+
msgstr ""
|
2758
2610
|
|
2759
2611
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2760
2612
|
msgstr ""
|
@@ -2762,6 +2614,9 @@ msgstr ""
|
|
2762
2614
|
msgid "Lifecycle environment ID"
|
2763
2615
|
msgstr ""
|
2764
2616
|
|
2617
|
+
msgid "Lifecycle environment for the host."
|
2618
|
+
msgstr ""
|
2619
|
+
|
2765
2620
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2766
2621
|
msgstr ""
|
2767
2622
|
|
@@ -2771,6 +2626,9 @@ msgstr ""
|
|
2771
2626
|
msgid "Limit content to just that available in the activation key's content view version"
|
2772
2627
|
msgstr ""
|
2773
2628
|
|
2629
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2630
|
+
msgstr ""
|
2631
|
+
|
2774
2632
|
msgid "Limit content to just that available in the host's content view version"
|
2775
2633
|
msgstr ""
|
2776
2634
|
|
@@ -2807,9 +2665,6 @@ msgstr ""
|
|
2807
2665
|
msgid "List components attached to this content view"
|
2808
2666
|
msgstr ""
|
2809
2667
|
|
2810
|
-
msgid "List content view puppet modules"
|
2811
|
-
msgstr ""
|
2812
|
-
|
2813
2668
|
msgid "List content view versions"
|
2814
2669
|
msgstr ""
|
2815
2670
|
|
@@ -2849,6 +2704,9 @@ msgstr ""
|
|
2849
2704
|
msgid "List host collections within an organization"
|
2850
2705
|
msgstr ""
|
2851
2706
|
|
2707
|
+
msgid "List import histories"
|
2708
|
+
msgstr ""
|
2709
|
+
|
2852
2710
|
msgid "List module streams available to the host"
|
2853
2711
|
msgstr ""
|
2854
2712
|
|
@@ -3065,10 +2923,12 @@ msgstr ""
|
|
3065
2923
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
3066
2924
|
msgstr ""
|
3067
2925
|
|
2926
|
+
msgid "Media Selection"
|
2927
|
+
msgstr ""
|
2928
|
+
|
3068
2929
|
msgid "Medium IDs"
|
3069
2930
|
msgstr ""
|
3070
2931
|
|
3071
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3072
2932
|
msgid "Message"
|
3073
2933
|
msgstr "செய்தி"
|
3074
2934
|
|
@@ -3102,9 +2962,15 @@ msgstr ""
|
|
3102
2962
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
3103
2963
|
msgstr ""
|
3104
2964
|
|
2965
|
+
msgid "N/A"
|
2966
|
+
msgstr ""
|
2967
|
+
|
3105
2968
|
msgid "NA"
|
3106
2969
|
msgstr ""
|
3107
2970
|
|
2971
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2972
|
+
msgstr ""
|
2973
|
+
|
3108
2974
|
msgid ""
|
3109
2975
|
"NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
|
3110
2976
|
" %{repos}"
|
@@ -3145,15 +3011,11 @@ msgstr ""
|
|
3145
3011
|
msgid "Nest"
|
3146
3012
|
msgstr ""
|
3147
3013
|
|
3148
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3149
|
-
#, fuzzy
|
3150
3014
|
msgid "Never Synced"
|
3151
|
-
msgstr "
|
3015
|
+
msgstr ""
|
3152
3016
|
|
3153
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3154
|
-
#, fuzzy
|
3155
3017
|
msgid "New Errata"
|
3156
|
-
msgstr "
|
3018
|
+
msgstr ""
|
3157
3019
|
|
3158
3020
|
msgid "New Files: %s"
|
3159
3021
|
msgstr ""
|
@@ -3167,10 +3029,8 @@ msgstr ""
|
|
3167
3029
|
msgid "New host collection name"
|
3168
3030
|
msgstr ""
|
3169
3031
|
|
3170
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3171
|
-
#, fuzzy
|
3172
3032
|
msgid "New name cannot be blank"
|
3173
|
-
msgstr "
|
3033
|
+
msgstr ""
|
3174
3034
|
|
3175
3035
|
msgid "New name for the content view"
|
3176
3036
|
msgstr ""
|
@@ -3178,23 +3038,33 @@ msgstr ""
|
|
3178
3038
|
msgid "New packages: %{count} (%{size})."
|
3179
3039
|
msgstr ""
|
3180
3040
|
|
3041
|
+
msgid "New version is available: Version ${latestVersion}"
|
3042
|
+
msgstr ""
|
3043
|
+
|
3181
3044
|
msgid "No"
|
3182
3045
|
msgstr ""
|
3183
3046
|
|
3184
|
-
|
3047
|
+
msgid "No Activation Keys selected"
|
3048
|
+
msgstr ""
|
3049
|
+
|
3050
|
+
msgid "No Activation keys to select"
|
3051
|
+
msgstr ""
|
3052
|
+
|
3185
3053
|
msgid "No Content View"
|
3186
3054
|
msgstr "உள்ளடக்கக் காட்சி இல்லை"
|
3187
3055
|
|
3188
3056
|
msgid "No Content found"
|
3189
3057
|
msgstr ""
|
3190
3058
|
|
3059
|
+
msgid "No Lifecycle environment to select"
|
3060
|
+
msgstr ""
|
3061
|
+
|
3191
3062
|
msgid "No Manifest Uploaded"
|
3192
3063
|
msgstr ""
|
3193
3064
|
|
3194
3065
|
msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
|
3195
3066
|
msgstr ""
|
3196
3067
|
|
3197
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3198
3068
|
msgid "No Service Level Preference"
|
3199
3069
|
msgstr "சேவை நிலை விருப்பத்தேர்வுகள் இல்லை"
|
3200
3070
|
|
@@ -3210,9 +3080,8 @@ msgstr ""
|
|
3210
3080
|
msgid "No artifacts to show"
|
3211
3081
|
msgstr ""
|
3212
3082
|
|
3213
|
-
#, fuzzy
|
3214
3083
|
msgid "No content has been provided."
|
3215
|
-
msgstr "
|
3084
|
+
msgstr ""
|
3216
3085
|
|
3217
3086
|
msgid "No content ids provided"
|
3218
3087
|
msgstr ""
|
@@ -3220,16 +3089,27 @@ msgstr ""
|
|
3220
3089
|
msgid "No content view history events found."
|
3221
3090
|
msgstr ""
|
3222
3091
|
|
3092
|
+
msgid "No content views belong to ${label}"
|
3093
|
+
msgstr ""
|
3094
|
+
|
3223
3095
|
msgid "No content_view_version_ids provided"
|
3224
3096
|
msgstr ""
|
3225
3097
|
|
3098
|
+
msgid "No description"
|
3099
|
+
msgstr ""
|
3100
|
+
|
3226
3101
|
msgid "No enabled repositories match your search criteria."
|
3227
3102
|
msgstr ""
|
3228
3103
|
|
3104
|
+
msgid "No environment"
|
3105
|
+
msgstr ""
|
3106
|
+
|
3107
|
+
msgid "No environments"
|
3108
|
+
msgstr ""
|
3109
|
+
|
3229
3110
|
msgid "No errata has been specified."
|
3230
3111
|
msgstr ""
|
3231
3112
|
|
3232
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3233
3113
|
msgid "No errors"
|
3234
3114
|
msgstr "பிழைகள் இல்லை"
|
3235
3115
|
|
@@ -3260,22 +3140,33 @@ msgstr ""
|
|
3260
3140
|
msgid "No matching filters found"
|
3261
3141
|
msgstr ""
|
3262
3142
|
|
3143
|
+
msgid "No matching history record found"
|
3144
|
+
msgstr ""
|
3145
|
+
|
3146
|
+
msgid "No matching package groups found."
|
3147
|
+
msgstr ""
|
3148
|
+
|
3263
3149
|
msgid "No matching repositories found"
|
3264
3150
|
msgstr ""
|
3265
3151
|
|
3266
|
-
|
3152
|
+
msgid "No matching rules found."
|
3153
|
+
msgstr ""
|
3154
|
+
|
3155
|
+
msgid "No matching version found"
|
3156
|
+
msgstr ""
|
3157
|
+
|
3267
3158
|
msgid "No new packages installed"
|
3268
3159
|
msgstr "புதிய தொகுப்புகள் எதுவும் நிறுவப்படவில்லை"
|
3269
3160
|
|
3270
|
-
#, fuzzy
|
3271
3161
|
msgid "No new packages."
|
3272
|
-
msgstr "
|
3162
|
+
msgstr ""
|
3163
|
+
|
3164
|
+
msgid "No package groups have been added to this filter."
|
3165
|
+
msgstr ""
|
3273
3166
|
|
3274
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3275
3167
|
msgid "No packages removed"
|
3276
3168
|
msgstr "தொகுப்புகள் எதுவும் நீக்கப்படவில்லை"
|
3277
3169
|
|
3278
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3279
3170
|
msgid "No packages updated"
|
3280
3171
|
msgstr "தொகுப்புகள் எதுவும் புதுப்பிக்கப்படவில்லை"
|
3281
3172
|
|
@@ -3318,12 +3209,14 @@ msgstr ""
|
|
3318
3209
|
msgid "No repository sets match your search criteria."
|
3319
3210
|
msgstr ""
|
3320
3211
|
|
3212
|
+
msgid "No rules have been added to this filter."
|
3213
|
+
msgstr ""
|
3214
|
+
|
3321
3215
|
msgid "No services defined, is this class extended?"
|
3322
3216
|
msgstr ""
|
3323
3217
|
|
3324
|
-
#, fuzzy
|
3325
3218
|
msgid "No start time currently available."
|
3326
|
-
msgstr "
|
3219
|
+
msgstr ""
|
3327
3220
|
|
3328
3221
|
msgid "No subscriptions match your search criteria."
|
3329
3222
|
msgstr ""
|
@@ -3340,11 +3233,9 @@ msgstr ""
|
|
3340
3233
|
msgid "Non-security errata installable"
|
3341
3234
|
msgstr ""
|
3342
3235
|
|
3343
|
-
#, fuzzy
|
3344
3236
|
msgid "Non-system event"
|
3345
|
-
msgstr "
|
3237
|
+
msgstr ""
|
3346
3238
|
|
3347
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3348
3239
|
msgid "None"
|
3349
3240
|
msgstr "ஒன்றுமில்லாத"
|
3350
3241
|
|
@@ -3357,12 +3248,18 @@ msgstr ""
|
|
3357
3248
|
msgid "Not a number"
|
3358
3249
|
msgstr ""
|
3359
3250
|
|
3251
|
+
msgid "Not added"
|
3252
|
+
msgstr ""
|
3253
|
+
|
3360
3254
|
msgid "Not all necessary pulp workers running at %s."
|
3361
3255
|
msgstr ""
|
3362
3256
|
|
3363
3257
|
msgid "Not running"
|
3364
3258
|
msgstr ""
|
3365
3259
|
|
3260
|
+
msgid "Not yet published"
|
3261
|
+
msgstr ""
|
3262
|
+
|
3366
3263
|
msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
|
3367
3264
|
msgstr ""
|
3368
3265
|
|
@@ -3408,9 +3305,8 @@ msgstr ""
|
|
3408
3305
|
msgid "On-disk location for pulp 3 exported repositories"
|
3409
3306
|
msgstr ""
|
3410
3307
|
|
3411
|
-
#, fuzzy
|
3412
3308
|
msgid "One of parameters [ %s ] required but not specified."
|
3413
|
-
msgstr "
|
3309
|
+
msgstr ""
|
3414
3310
|
|
3415
3311
|
msgid "One of yum or docker"
|
3416
3312
|
msgstr ""
|
@@ -3421,14 +3317,12 @@ msgstr ""
|
|
3421
3317
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3422
3318
|
msgstr ""
|
3423
3319
|
|
3424
|
-
#, fuzzy
|
3425
3320
|
msgid "One or more packages failed to sync properly."
|
3426
|
-
msgstr "
|
3321
|
+
msgstr ""
|
3427
3322
|
|
3428
3323
|
msgid "One or more processes require restarting"
|
3429
3324
|
msgstr ""
|
3430
3325
|
|
3431
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3432
3326
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3433
3327
|
msgstr "ஒரு நிறுவனத்திற்காக ஒரே ஒரு Red Hat வழங்குநர் மட்டும் அனுமதிக்கப்பட்டனர்"
|
3434
3328
|
|
@@ -3441,10 +3335,6 @@ msgstr ""
|
|
3441
3335
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3442
3336
|
msgstr ""
|
3443
3337
|
|
3444
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3445
|
-
msgstr ""
|
3446
|
-
|
3447
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
3448
3338
|
msgid "Organization"
|
3449
3339
|
msgstr "நிறுவனம்"
|
3450
3340
|
|
@@ -3457,7 +3347,9 @@ msgstr ""
|
|
3457
3347
|
msgid "Organization ID is required"
|
3458
3348
|
msgstr ""
|
3459
3349
|
|
3460
|
-
|
3350
|
+
msgid "Organization Information not provided."
|
3351
|
+
msgstr ""
|
3352
|
+
|
3461
3353
|
msgid "Organization cannot be blank."
|
3462
3354
|
msgstr "நிறுவனம் காலியாக இருக்காது."
|
3463
3355
|
|
@@ -3473,11 +3365,9 @@ msgstr ""
|
|
3473
3365
|
msgid "Organization not found"
|
3474
3366
|
msgstr ""
|
3475
3367
|
|
3476
|
-
#, fuzzy
|
3477
3368
|
msgid "Organization required"
|
3478
|
-
msgstr "
|
3369
|
+
msgstr ""
|
3479
3370
|
|
3480
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3481
3371
|
msgid "Other"
|
3482
3372
|
msgstr "மற்றவை"
|
3483
3373
|
|
@@ -3502,97 +3392,72 @@ msgstr ""
|
|
3502
3392
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3503
3393
|
msgstr ""
|
3504
3394
|
|
3505
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3506
|
-
#, fuzzy
|
3507
3395
|
msgid "Package"
|
3508
|
-
msgstr "
|
3396
|
+
msgstr ""
|
3509
3397
|
|
3510
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3511
|
-
#, fuzzy
|
3512
3398
|
msgid "Package Group"
|
3513
|
-
msgstr "
|
3399
|
+
msgstr ""
|
3514
3400
|
|
3515
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3516
3401
|
msgid "Package Group Install"
|
3517
3402
|
msgstr "தொகுப்பு குழு நிறுவல்"
|
3518
3403
|
|
3519
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3520
3404
|
msgid "Package Group Install Canceled"
|
3521
3405
|
msgstr "தொகுப்பு குழு நிறுவல் ரத்துசெய்யப்பட்டது"
|
3522
3406
|
|
3523
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3524
3407
|
msgid "Package Group Install Complete"
|
3525
3408
|
msgstr "தொகுப்பு குழு நிறுவல் முடிவடைந்தது"
|
3526
3409
|
|
3527
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3528
3410
|
msgid "Package Group Install Failed"
|
3529
3411
|
msgstr "தொகுப்பு குழு நிறுவல் தோல்வி"
|
3530
3412
|
|
3531
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3532
3413
|
msgid "Package Group Install Timed Out"
|
3533
3414
|
msgstr "தொகுப்பு குழு நிறுவல் நேரம் முடிந்தது"
|
3534
3415
|
|
3535
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3536
3416
|
msgid "Package Group Install scheduled by %s"
|
3537
3417
|
msgstr "தொகுப்பு குழு நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
|
3538
3418
|
|
3539
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3540
3419
|
msgid "Package Group Remove"
|
3541
3420
|
msgstr "தொகுப்பு குழு நீக்கல்"
|
3542
3421
|
|
3543
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3544
3422
|
msgid "Package Group Remove Canceled"
|
3545
3423
|
msgstr "தொகுப்பு குழு நீக்கல் ரத்துசெய்யப்பட்டது"
|
3546
3424
|
|
3547
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3548
3425
|
msgid "Package Group Remove Complete"
|
3549
3426
|
msgstr "தொகுப்பு குழு நீக்கல் முடிவடைந்தது"
|
3550
3427
|
|
3551
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3552
3428
|
msgid "Package Group Remove Failed"
|
3553
3429
|
msgstr "தொகுப்பு குழு நீக்கல் தோல்வி"
|
3554
3430
|
|
3555
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3556
3431
|
msgid "Package Group Remove Timed Out"
|
3557
3432
|
msgstr "தொகுப்பு குழுவை நீக்க நேரம் முடிந்தது"
|
3558
3433
|
|
3559
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3560
3434
|
msgid "Package Group Remove scheduled by %s"
|
3561
3435
|
msgstr "தொகுப்பு குழு நீக்கல் %s-ஆல் திட்டமிடப்பட்டது"
|
3562
3436
|
|
3563
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3564
3437
|
msgid "Package Group Update"
|
3565
3438
|
msgstr "தொகுப்பு குழு புதுப்பித்தல்"
|
3566
3439
|
|
3567
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3568
3440
|
msgid "Package Group Update scheduled by %s"
|
3569
3441
|
msgstr "தொகுப்பு குழு புதுப்பித்தல் %s-ஆல் திட்டமிடப்பட்டது"
|
3570
3442
|
|
3571
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3572
3443
|
msgid "Package Groups"
|
3573
3444
|
msgstr "தொகுப்பு குழுக்கள்"
|
3574
3445
|
|
3575
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3576
3446
|
msgid "Package Install"
|
3577
3447
|
msgstr "தொகுப்பு நிறுவல்"
|
3578
3448
|
|
3579
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3580
3449
|
msgid "Package Install Canceled"
|
3581
3450
|
msgstr "தொகுப்பு நிறுவல் ரத்துசெய்யப்பட்டது"
|
3582
3451
|
|
3583
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3584
3452
|
msgid "Package Install Complete"
|
3585
3453
|
msgstr "தொகுப்பு நிறுவல் முடிவடைந்தது"
|
3586
3454
|
|
3587
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3588
3455
|
msgid "Package Install Failed"
|
3589
3456
|
msgstr "தொகுப்பு நிறுவல் தோல்வி"
|
3590
3457
|
|
3591
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3592
3458
|
msgid "Package Install Timed Out"
|
3593
3459
|
msgstr "தொகுப்பு நிறுவல் நேரம் முடிந்தது"
|
3594
3460
|
|
3595
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3596
3461
|
msgid "Package Install scheduled by %s"
|
3597
3462
|
msgstr "தொகுப்பு நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
|
3598
3463
|
|
@@ -3602,86 +3467,69 @@ msgstr ""
|
|
3602
3467
|
msgid "Package Profile Update for %s"
|
3603
3468
|
msgstr ""
|
3604
3469
|
|
3605
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3606
3470
|
msgid "Package Remove"
|
3607
3471
|
msgstr "தொகுப்பு நீக்கல்"
|
3608
3472
|
|
3609
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3610
3473
|
msgid "Package Remove Canceled"
|
3611
3474
|
msgstr "தொகுப்பு நீக்கல் ரத்துசெய்யப்பட்டது"
|
3612
3475
|
|
3613
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3614
3476
|
msgid "Package Remove Complete"
|
3615
3477
|
msgstr "தொகுப்பு நீக்கல் முடிவடைந்தது"
|
3616
3478
|
|
3617
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3618
3479
|
msgid "Package Remove Failed"
|
3619
3480
|
msgstr "தொகுப்பு நீக்கல் தோல்வி"
|
3620
3481
|
|
3621
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3622
3482
|
msgid "Package Remove Timed Out"
|
3623
3483
|
msgstr "தொகுப்பு நீக்கல் நேரம் முடிந்தது"
|
3624
3484
|
|
3625
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3626
3485
|
msgid "Package Remove scheduled by %s"
|
3627
3486
|
msgstr "தொகுப்பு நீக்கல் %s-ஆல் திட்டமிடப்பட்டது"
|
3628
3487
|
|
3629
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3630
3488
|
msgid "Package Update"
|
3631
3489
|
msgstr "தொகுப்பு புதுப்பித்தல்"
|
3632
3490
|
|
3633
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3634
3491
|
msgid "Package Update Canceled"
|
3635
3492
|
msgstr "தொகுப்பு புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
|
3636
3493
|
|
3637
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3638
3494
|
msgid "Package Update Complete"
|
3639
3495
|
msgstr "தொகுப்பு புதுப்பித்தல் முடிவடைந்தது"
|
3640
3496
|
|
3641
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3642
3497
|
msgid "Package Update Failed"
|
3643
3498
|
msgstr "தொகுப்பு புதுப்பித்தல் தோல்வி"
|
3644
3499
|
|
3645
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3646
3500
|
msgid "Package Update Timed Out"
|
3647
3501
|
msgstr "தொகுப்பு புதுப்பித்தல் நேரம் முடிந்தது"
|
3648
3502
|
|
3649
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3650
3503
|
msgid "Package Update scheduled by %s"
|
3651
3504
|
msgstr "தொகுப்பு புதுப்பித்தல் %s-ஆல் திட்டமிடப்பட்டது"
|
3652
3505
|
|
3653
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3654
3506
|
msgid "Package group update canceled"
|
3655
3507
|
msgstr "தொகுப்பு குழு புதுப்பிப்பு ரத்துசெய்யப்பட்டது"
|
3656
3508
|
|
3657
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3658
3509
|
msgid "Package group update complete"
|
3659
3510
|
msgstr "தொகுப்பு குழு புதுப்பித்தல் முடிவடைந்தது"
|
3660
3511
|
|
3661
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3662
3512
|
msgid "Package group update failed"
|
3663
3513
|
msgstr "தொகுப்பு குழு புதுப்பிப்பு தோல்வி"
|
3664
3514
|
|
3665
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3666
3515
|
msgid "Package group update timed out"
|
3667
3516
|
msgstr "தொகுப்பு குழுவை புதுப்பிக்க நேரம் முடிந்தது"
|
3668
3517
|
|
3518
|
+
msgid "Package groups"
|
3519
|
+
msgstr ""
|
3520
|
+
|
3669
3521
|
msgid "Package identifiers to filter content by"
|
3670
3522
|
msgstr ""
|
3671
3523
|
|
3672
|
-
#, fuzzy
|
3673
3524
|
msgid "Package install failed: \"%{package}\""
|
3674
|
-
msgstr "
|
3525
|
+
msgstr ""
|
3675
3526
|
|
3676
|
-
#, fuzzy
|
3677
3527
|
msgid "Package installation: \"%{package}\" "
|
3678
|
-
msgstr "
|
3528
|
+
msgstr ""
|
3679
3529
|
|
3680
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3681
3530
|
msgid "Packages"
|
3682
3531
|
msgstr "தொகுப்புகள்"
|
3683
3532
|
|
3684
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
3685
3533
|
msgid "Packages must be provided"
|
3686
3534
|
msgstr "தொகுப்புகள் வழங்கப்பட வேண்டும்"
|
3687
3535
|
|
@@ -3712,10 +3560,8 @@ msgstr ""
|
|
3712
3560
|
msgid "Paused"
|
3713
3561
|
msgstr ""
|
3714
3562
|
|
3715
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3716
|
-
#, fuzzy
|
3717
3563
|
msgid "Pending"
|
3718
|
-
msgstr "
|
3564
|
+
msgstr ""
|
3719
3565
|
|
3720
3566
|
msgid "Perform a module stream action via Katello interface"
|
3721
3567
|
msgstr ""
|
@@ -3735,17 +3581,18 @@ msgstr ""
|
|
3735
3581
|
msgid "Performs an incremental-export of the repositories in library."
|
3736
3582
|
msgstr ""
|
3737
3583
|
|
3738
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3739
3584
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3740
3585
|
msgstr "அனுமதி மறுக்கப்பட்டது. பயனர் '%{user}' க்கு நிறுவனம் '%{org}' ஐ அணுக அனுமதிகள் இல்லை."
|
3741
3586
|
|
3742
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3743
3587
|
msgid "Physical"
|
3744
|
-
msgstr "
|
3588
|
+
msgstr ""
|
3745
3589
|
|
3746
3590
|
msgid "Plan numeric identifier"
|
3747
3591
|
msgstr ""
|
3748
3592
|
|
3593
|
+
msgid "Please add some content views."
|
3594
|
+
msgstr ""
|
3595
|
+
|
3749
3596
|
msgid "Please add some repositories."
|
3750
3597
|
msgstr ""
|
3751
3598
|
|
@@ -3785,7 +3632,6 @@ msgstr ""
|
|
3785
3632
|
msgid "Processing metadata."
|
3786
3633
|
msgstr ""
|
3787
3634
|
|
3788
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3789
3635
|
msgid "Product"
|
3790
3636
|
msgstr "தயாரிப்பு"
|
3791
3637
|
|
@@ -3830,7 +3676,6 @@ msgstr ""
|
|
3830
3676
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3831
3677
|
msgstr ""
|
3832
3678
|
|
3833
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
3834
3679
|
msgid "Products"
|
3835
3680
|
msgstr "தயாரிப்புகள்"
|
3836
3681
|
|
@@ -3873,7 +3718,6 @@ msgstr ""
|
|
3873
3718
|
msgid "Public key block in DER encoding or certificate content"
|
3874
3719
|
msgstr ""
|
3875
3720
|
|
3876
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3877
3721
|
msgid "Publish"
|
3878
3722
|
msgstr "வெளியிடு"
|
3879
3723
|
|
@@ -3895,15 +3739,15 @@ msgstr ""
|
|
3895
3739
|
msgid "Pulp 3 export destination filepath"
|
3896
3740
|
msgstr ""
|
3897
3741
|
|
3898
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3899
|
-
msgstr ""
|
3900
|
-
|
3901
3742
|
msgid "Pulp Consumer %s has already been removed"
|
3902
3743
|
msgstr ""
|
3903
3744
|
|
3904
3745
|
msgid "Pulp Docker registry port"
|
3905
3746
|
msgstr ""
|
3906
3747
|
|
3748
|
+
msgid "Pulp bulk load size"
|
3749
|
+
msgstr ""
|
3750
|
+
|
3907
3751
|
msgid "Pulp client cert"
|
3908
3752
|
msgstr ""
|
3909
3753
|
|
@@ -3952,33 +3796,6 @@ msgstr ""
|
|
3952
3796
|
msgid "Pulpcore"
|
3953
3797
|
msgstr ""
|
3954
3798
|
|
3955
|
-
msgid "Puppet Environment"
|
3956
|
-
msgstr ""
|
3957
|
-
|
3958
|
-
msgid "Puppet Module"
|
3959
|
-
msgstr ""
|
3960
|
-
|
3961
|
-
msgid ""
|
3962
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3963
|
-
" '%{name}'"
|
3964
|
-
msgstr ""
|
3965
|
-
|
3966
|
-
msgid ""
|
3967
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3968
|
-
" not exist"
|
3969
|
-
msgstr ""
|
3970
|
-
|
3971
|
-
msgid ""
|
3972
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3973
|
-
" exist"
|
3974
|
-
msgstr ""
|
3975
|
-
|
3976
|
-
msgid "Puppet Modules"
|
3977
|
-
msgstr ""
|
3978
|
-
|
3979
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3980
|
-
msgstr ""
|
3981
|
-
|
3982
3799
|
msgid "Quantity"
|
3983
3800
|
msgstr ""
|
3984
3801
|
|
@@ -4009,7 +3826,9 @@ msgstr ""
|
|
4009
3826
|
msgid "RPM"
|
4010
3827
|
msgstr ""
|
4011
3828
|
|
4012
|
-
|
3829
|
+
msgid "RPM name"
|
3830
|
+
msgstr ""
|
3831
|
+
|
4013
3832
|
msgid "RPMs"
|
4014
3833
|
msgstr "RPMகள்"
|
4015
3834
|
|
@@ -4025,38 +3844,29 @@ msgstr ""
|
|
4025
3844
|
msgid "Recommended Repositories"
|
4026
3845
|
msgstr ""
|
4027
3846
|
|
4028
|
-
msgid "Red Hat"
|
4029
|
-
msgstr ""
|
4030
|
-
|
4031
|
-
#, fuzzy
|
4032
3847
|
msgid "Red Hat CDN URL"
|
4033
|
-
msgstr "
|
3848
|
+
msgstr ""
|
4034
3849
|
|
4035
3850
|
msgid "Red Hat Provider Details"
|
4036
3851
|
msgstr ""
|
4037
3852
|
|
4038
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4039
3853
|
msgid "Red Hat Repositories"
|
4040
3854
|
msgstr "Red Hat தொகுப்பதிவகங்கள்"
|
4041
3855
|
|
4042
|
-
#, fuzzy
|
4043
3856
|
msgid "Red Hat products cannot be manipulated."
|
4044
|
-
msgstr "
|
3857
|
+
msgstr ""
|
4045
3858
|
|
4046
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4047
3859
|
msgid "Red Hat provider can not be deleted"
|
4048
3860
|
msgstr "Red Hat வழங்குநரை சேர்க்க முடியவில்லை"
|
4049
3861
|
|
4050
|
-
#, fuzzy
|
4051
3862
|
msgid "Red Hat repositories cannot be manipulated."
|
4052
|
-
msgstr "
|
3863
|
+
msgstr ""
|
4053
3864
|
|
4054
3865
|
msgid "Refresh"
|
4055
3866
|
msgstr ""
|
4056
3867
|
|
4057
|
-
#, fuzzy
|
4058
3868
|
msgid "Refresh Manifest"
|
4059
|
-
msgstr "
|
3869
|
+
msgstr ""
|
4060
3870
|
|
4061
3871
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
4062
3872
|
msgstr ""
|
@@ -4106,32 +3916,29 @@ msgstr ""
|
|
4106
3916
|
msgid "Remove Content"
|
4107
3917
|
msgstr ""
|
4108
3918
|
|
4109
|
-
#, fuzzy
|
4110
3919
|
msgid "Remove Version"
|
4111
|
-
msgstr "
|
3920
|
+
msgstr ""
|
4112
3921
|
|
4113
|
-
#, fuzzy
|
4114
3922
|
msgid "Remove Versions and Associations"
|
4115
|
-
msgstr "
|
3923
|
+
msgstr ""
|
4116
3924
|
|
4117
3925
|
msgid "Remove a content view from an environment"
|
4118
3926
|
msgstr ""
|
4119
3927
|
|
4120
|
-
msgid "Remove
|
3928
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
4121
3929
|
msgstr ""
|
4122
3930
|
|
4123
3931
|
msgid "Remove components from the content view"
|
4124
3932
|
msgstr ""
|
4125
3933
|
|
4126
|
-
msgid "Remove content on one or more hosts"
|
3934
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
4127
3935
|
msgstr ""
|
4128
3936
|
|
4129
3937
|
msgid "Remove content view version"
|
4130
3938
|
msgstr ""
|
4131
3939
|
|
4132
|
-
#, fuzzy
|
4133
3940
|
msgid "Remove from Environment"
|
4134
|
-
msgstr "
|
3941
|
+
msgstr ""
|
4135
3942
|
|
4136
3943
|
msgid "Remove hosts from the host collection"
|
4137
3944
|
msgstr ""
|
@@ -4145,16 +3952,14 @@ msgstr ""
|
|
4145
3952
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
4146
3953
|
msgstr ""
|
4147
3954
|
|
4148
|
-
#, fuzzy
|
4149
3955
|
msgid "Remove package"
|
4150
|
-
msgstr "
|
3956
|
+
msgstr ""
|
4151
3957
|
|
4152
3958
|
msgid "Remove package for %s"
|
4153
3959
|
msgstr ""
|
4154
3960
|
|
4155
|
-
#, fuzzy
|
4156
3961
|
msgid "Remove package group"
|
4157
|
-
msgstr "
|
3962
|
+
msgstr ""
|
4158
3963
|
|
4159
3964
|
msgid "Remove package group via Katello interface"
|
4160
3965
|
msgstr ""
|
@@ -4177,25 +3982,21 @@ msgstr ""
|
|
4177
3982
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
4178
3983
|
msgstr ""
|
4179
3984
|
|
4180
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4181
3985
|
msgid "Removing Package Group..."
|
4182
3986
|
msgstr "தொகுப்பு குழுவை நீக்குகிறது..."
|
4183
3987
|
|
4184
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4185
3988
|
msgid "Removing Package..."
|
4186
3989
|
msgstr "பயனரை நீக்கவும்"
|
4187
3990
|
|
4188
3991
|
msgid "Repo Type"
|
4189
3992
|
msgstr ""
|
4190
3993
|
|
4191
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
4192
3994
|
msgid "Repositories"
|
4193
3995
|
msgstr "தொகுப்பதிவகங்கள்"
|
4194
3996
|
|
4195
3997
|
msgid "Repositories from published Content Views are not allowed."
|
4196
3998
|
msgstr ""
|
4197
3999
|
|
4198
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4199
4000
|
msgid "Repository"
|
4200
4001
|
msgstr "தொகுப்பதிவகம்"
|
4201
4002
|
|
@@ -4217,14 +4018,12 @@ msgstr ""
|
|
4217
4018
|
msgid "Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it."
|
4218
4019
|
msgstr ""
|
4219
4020
|
|
4220
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4221
4021
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4222
4022
|
msgstr "ஏற்கனவே முன்னேற்றப்பட்டிருந்தால் தொகுப்பதிவகத்தை செயல்நீக்க முடியாது."
|
4223
4023
|
|
4224
4024
|
msgid "Repository content type must be 'yum' to export."
|
4225
4025
|
msgstr ""
|
4226
4026
|
|
4227
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4228
4027
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4229
4028
|
msgstr "தொகுப்பதிவகம் ஏற்கனவே %{to_env} சூழலில் உள்ள %{cv_name} க்கு குளோன் செய்யப்பட்டது"
|
4230
4029
|
|
@@ -4240,14 +4039,12 @@ msgstr ""
|
|
4240
4039
|
msgid "Repository metadata publish"
|
4241
4040
|
msgstr ""
|
4242
4041
|
|
4243
|
-
#, fuzzy
|
4244
4042
|
msgid "Repository not found"
|
4245
|
-
msgstr "
|
4043
|
+
msgstr ""
|
4246
4044
|
|
4247
4045
|
msgid "Repository set name to search on"
|
4248
4046
|
msgstr ""
|
4249
4047
|
|
4250
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4251
4048
|
msgid "Repository sets are not available for custom products."
|
4252
4049
|
msgstr "தனிப்பயன் தயாரிப்புகளுக்கு தொகுப்பதிவகத் தொகுப்புகள் இல்லை."
|
4253
4050
|
|
@@ -4260,9 +4057,6 @@ msgstr ""
|
|
4260
4057
|
msgid "Requires Virt-Who"
|
4261
4058
|
msgstr ""
|
4262
4059
|
|
4263
|
-
msgid "Reset Puppet Environment"
|
4264
|
-
msgstr ""
|
4265
|
-
|
4266
4060
|
msgid "Resolve Traces"
|
4267
4061
|
msgstr ""
|
4268
4062
|
|
@@ -4278,7 +4072,6 @@ msgstr ""
|
|
4278
4072
|
msgid "Restrict Composite Content View promotion"
|
4279
4073
|
msgstr ""
|
4280
4074
|
|
4281
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
4282
4075
|
msgid "Result"
|
4283
4076
|
msgstr "முடிவு"
|
4284
4077
|
|
@@ -4342,16 +4135,21 @@ msgstr ""
|
|
4342
4135
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4343
4136
|
msgstr ""
|
4344
4137
|
|
4138
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4139
|
+
msgstr ""
|
4140
|
+
|
4345
4141
|
msgid "Role"
|
4346
4142
|
msgstr ""
|
4347
4143
|
|
4348
4144
|
msgid "Role of host"
|
4349
4145
|
msgstr ""
|
4350
4146
|
|
4147
|
+
msgid "Roles"
|
4148
|
+
msgstr ""
|
4149
|
+
|
4351
4150
|
msgid "Run Sync Plan:"
|
4352
4151
|
msgstr ""
|
4353
4152
|
|
4354
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4355
4153
|
msgid "Running"
|
4356
4154
|
msgstr "இயங்குகிறது"
|
4357
4155
|
|
@@ -4370,7 +4168,7 @@ msgstr ""
|
|
4370
4168
|
msgid "Save"
|
4371
4169
|
msgstr ""
|
4372
4170
|
|
4373
|
-
msgid "Schedule errata for installation"
|
4171
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4374
4172
|
msgstr ""
|
4375
4173
|
|
4376
4174
|
msgid "Search"
|
@@ -4391,7 +4189,6 @@ msgstr ""
|
|
4391
4189
|
msgid "Search string for hosts to perform an action on"
|
4392
4190
|
msgstr ""
|
4393
4191
|
|
4394
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4395
4192
|
msgid "Security"
|
4396
4193
|
msgstr "பாதுகாப்பு"
|
4397
4194
|
|
@@ -4404,15 +4201,12 @@ msgstr ""
|
|
4404
4201
|
msgid "Select"
|
4405
4202
|
msgstr ""
|
4406
4203
|
|
4407
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
4408
4204
|
msgid "Select All"
|
4409
4205
|
msgstr "அனைத்தையும் தேர்ந்தெடு"
|
4410
4206
|
|
4411
|
-
#, fuzzy
|
4412
4207
|
msgid "Select Content View"
|
4413
|
-
msgstr "
|
4208
|
+
msgstr ""
|
4414
4209
|
|
4415
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4416
4210
|
msgid "Select None"
|
4417
4211
|
msgstr "ஒன்றுமில்லாததை தேர்ந்தெடு"
|
4418
4212
|
|
@@ -4425,10 +4219,8 @@ msgstr ""
|
|
4425
4219
|
msgid "Select all rows"
|
4426
4220
|
msgstr ""
|
4427
4221
|
|
4428
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
4429
|
-
#, fuzzy
|
4430
4222
|
msgid "Select an Organization"
|
4431
|
-
msgstr "
|
4223
|
+
msgstr ""
|
4432
4224
|
|
4433
4225
|
msgid "Select an organization"
|
4434
4226
|
msgstr ""
|
@@ -4445,7 +4237,6 @@ msgstr ""
|
|
4445
4237
|
msgid "Service Level"
|
4446
4238
|
msgstr ""
|
4447
4239
|
|
4448
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4449
4240
|
msgid "Service Level %s"
|
4450
4241
|
msgstr "சேவை நிலை %s"
|
4451
4242
|
|
@@ -4476,13 +4267,9 @@ msgstr ""
|
|
4476
4267
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4477
4268
|
msgstr ""
|
4478
4269
|
|
4479
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4480
|
-
msgstr ""
|
4481
|
-
|
4482
4270
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4483
4271
|
msgstr ""
|
4484
4272
|
|
4485
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4486
4273
|
msgid "Severity"
|
4487
4274
|
msgstr "தீவிரம்"
|
4488
4275
|
|
@@ -4498,9 +4285,6 @@ msgstr ""
|
|
4498
4285
|
msgid "Show a content view component"
|
4499
4286
|
msgstr ""
|
4500
4287
|
|
4501
|
-
msgid "Show a content view puppet module"
|
4502
|
-
msgstr ""
|
4503
|
-
|
4504
4288
|
msgid "Show a content view's history"
|
4505
4289
|
msgstr ""
|
4506
4290
|
|
@@ -4576,9 +4360,8 @@ msgstr ""
|
|
4576
4360
|
msgid "Smart proxy IDs"
|
4577
4361
|
msgstr ""
|
4578
4362
|
|
4579
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4580
4363
|
msgid "Sockets: %s"
|
4581
|
-
msgstr "
|
4364
|
+
msgstr ""
|
4582
4365
|
|
4583
4366
|
msgid "Solve Dependencies"
|
4584
4367
|
msgstr ""
|
@@ -4592,10 +4375,28 @@ msgstr ""
|
|
4592
4375
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4593
4376
|
msgstr ""
|
4594
4377
|
|
4595
|
-
msgid "
|
4378
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4379
|
+
msgstr ""
|
4380
|
+
|
4381
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4382
|
+
msgstr ""
|
4383
|
+
|
4384
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4385
|
+
msgstr ""
|
4386
|
+
|
4387
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4388
|
+
msgstr ""
|
4389
|
+
|
4390
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4596
4391
|
msgstr ""
|
4597
4392
|
|
4598
|
-
msgid "Something went wrong while retrieving the
|
4393
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4394
|
+
msgstr ""
|
4395
|
+
|
4396
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4397
|
+
msgstr ""
|
4398
|
+
|
4399
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4599
4400
|
msgstr ""
|
4600
4401
|
|
4601
4402
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4613,22 +4414,18 @@ msgstr ""
|
|
4613
4414
|
msgid "Stacking ID"
|
4614
4415
|
msgstr ""
|
4615
4416
|
|
4616
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4617
4417
|
msgid "Start Date"
|
4618
4418
|
msgstr "துவக்க தேதி"
|
4619
4419
|
|
4620
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4621
4420
|
msgid "Start Date and Time can't be blank"
|
4622
4421
|
msgstr "துக்க தேதி மற்றும் நேரம் காலியாக இருக்காது"
|
4623
4422
|
|
4624
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
4625
4423
|
msgid "Start Time"
|
4626
4424
|
msgstr "துவக்க நேரம்"
|
4627
4425
|
|
4628
4426
|
msgid "Starts"
|
4629
4427
|
msgstr ""
|
4630
4428
|
|
4631
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4632
4429
|
msgid "Status"
|
4633
4430
|
msgstr "நிலை"
|
4634
4431
|
|
@@ -4647,7 +4444,6 @@ msgstr ""
|
|
4647
4444
|
msgid "Subnet IDs"
|
4648
4445
|
msgstr ""
|
4649
4446
|
|
4650
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4651
4447
|
msgid "Subscription"
|
4652
4448
|
msgstr "சந்தாபடுத்தல்"
|
4653
4449
|
|
@@ -4720,14 +4516,12 @@ msgstr ""
|
|
4720
4516
|
msgid "Subscriptions have been saved and are being updated. "
|
4721
4517
|
msgstr ""
|
4722
4518
|
|
4723
|
-
#, fuzzy
|
4724
4519
|
msgid "Subscriptions information based on selected activation keys:"
|
4725
|
-
msgstr "
|
4520
|
+
msgstr ""
|
4726
4521
|
|
4727
4522
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4728
4523
|
msgstr ""
|
4729
4524
|
|
4730
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
4731
4525
|
msgid "Success"
|
4732
4526
|
msgstr "வெற்றி"
|
4733
4527
|
|
@@ -4752,7 +4546,6 @@ msgstr ""
|
|
4752
4546
|
msgid "Successfully synchronized."
|
4753
4547
|
msgstr ""
|
4754
4548
|
|
4755
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4756
4549
|
msgid "Summary"
|
4757
4550
|
msgstr "சுருக்கம்"
|
4758
4551
|
|
@@ -4762,19 +4555,18 @@ msgstr ""
|
|
4762
4555
|
msgid "Supported Content Types"
|
4763
4556
|
msgstr ""
|
4764
4557
|
|
4765
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4766
4558
|
msgid "Sync Canceled"
|
4767
4559
|
msgstr "ஒத்திசைவு ரத்து செய்யப்பட்டது"
|
4768
4560
|
|
4561
|
+
msgid "Sync Connection Timeout"
|
4562
|
+
msgstr ""
|
4563
|
+
|
4769
4564
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4770
4565
|
msgstr ""
|
4771
4566
|
|
4772
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4773
|
-
#, fuzzy
|
4774
4567
|
msgid "Sync Incomplete"
|
4775
|
-
msgstr "
|
4568
|
+
msgstr ""
|
4776
4569
|
|
4777
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4778
4570
|
msgid "Sync Overview"
|
4779
4571
|
msgstr "மேற்பார்வையை ஒத்திசை"
|
4780
4572
|
|
@@ -4784,7 +4576,6 @@ msgstr ""
|
|
4784
4576
|
msgid "Sync Plan: "
|
4785
4577
|
msgstr ""
|
4786
4578
|
|
4787
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4788
4579
|
msgid "Sync Plans"
|
4789
4580
|
msgstr "திட்டங்களை ஒத்திசை"
|
4790
4581
|
|
@@ -4794,7 +4585,6 @@ msgstr ""
|
|
4794
4585
|
msgid "Sync Smart Proxies after Content View promotion"
|
4795
4586
|
msgstr ""
|
4796
4587
|
|
4797
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4798
4588
|
msgid "Sync Status"
|
4799
4589
|
msgstr "நிலையை ஒத்திசை"
|
4800
4590
|
|
@@ -4813,7 +4603,6 @@ msgstr ""
|
|
4813
4603
|
msgid "Sync capsule"
|
4814
4604
|
msgstr ""
|
4815
4605
|
|
4816
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4817
4606
|
msgid "Sync complete."
|
4818
4607
|
msgstr "ஒத்திசைவு முடிந்தது."
|
4819
4608
|
|
@@ -4835,11 +4624,9 @@ msgstr ""
|
|
4835
4624
|
msgid "Synced to smart proxy"
|
4836
4625
|
msgstr ""
|
4837
4626
|
|
4838
|
-
#, fuzzy
|
4839
4627
|
msgid "Synchronize"
|
4840
|
-
msgstr "
|
4628
|
+
msgstr ""
|
4841
4629
|
|
4842
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4843
4630
|
msgid "Synchronize Now"
|
4844
4631
|
msgstr "இப்போது ஒத்திசைக்கவும்"
|
4845
4632
|
|
@@ -4861,14 +4648,15 @@ msgstr ""
|
|
4861
4648
|
msgid "Synchronize: Validate Content"
|
4862
4649
|
msgstr ""
|
4863
4650
|
|
4864
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4865
|
-
#, fuzzy
|
4866
4651
|
msgid "Syncing Complete."
|
4867
|
-
msgstr "
|
4652
|
+
msgstr ""
|
4868
4653
|
|
4869
4654
|
msgid "System Purpose"
|
4870
4655
|
msgstr ""
|
4871
4656
|
|
4657
|
+
msgid "System Status"
|
4658
|
+
msgstr ""
|
4659
|
+
|
4872
4660
|
msgid "Tags"
|
4873
4661
|
msgstr ""
|
4874
4662
|
|
@@ -4887,29 +4675,29 @@ msgstr ""
|
|
4887
4675
|
msgid "Temporary"
|
4888
4676
|
msgstr ""
|
4889
4677
|
|
4890
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4891
4678
|
msgid "The '%s' environment cannot contain a changeset!"
|
4892
4679
|
msgstr "'%s' சூழல் changeset எதையும் கொண்டிருக்கவில்லை!"
|
4893
4680
|
|
4894
4681
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4895
4682
|
msgstr ""
|
4896
4683
|
|
4684
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4685
|
+
msgstr ""
|
4686
|
+
|
4897
4687
|
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."
|
4898
4688
|
msgstr ""
|
4899
4689
|
|
4900
4690
|
msgid "The actual file contents"
|
4901
4691
|
msgstr ""
|
4902
4692
|
|
4903
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
4904
4693
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4905
4694
|
msgstr "நடப்பு நிறுவனத்தை அழிக்க முடியாது. அழிப்பதற்கு முன் ஒரு வேறுபட்ட நிறுவனத்திற்கு மாற்றவும்."
|
4906
4695
|
|
4907
4696
|
msgid "The default content view cannot be edited, published, or deleted."
|
4908
4697
|
msgstr ""
|
4909
4698
|
|
4910
|
-
#, fuzzy
|
4911
4699
|
msgid "The default content view cannot be promoted"
|
4912
|
-
msgstr "
|
4700
|
+
msgstr ""
|
4913
4701
|
|
4914
4702
|
msgid "The default dependency solving value for new Content Views."
|
4915
4703
|
msgstr ""
|
@@ -4926,6 +4714,12 @@ msgstr ""
|
|
4926
4714
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4927
4715
|
msgstr ""
|
4928
4716
|
|
4717
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4718
|
+
msgstr ""
|
4719
|
+
|
4720
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4721
|
+
msgstr ""
|
4722
|
+
|
4929
4723
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4930
4724
|
msgstr ""
|
4931
4725
|
|
@@ -4949,6 +4743,11 @@ msgid ""
|
|
4949
4743
|
" %{repos}"
|
4950
4744
|
msgstr ""
|
4951
4745
|
|
4746
|
+
msgid ""
|
4747
|
+
"The following repositories provided in the import metadata have an incorrect content type or provider type. Make sure the export and import repositories are of the same type before importing\n"
|
4748
|
+
" %{repos}"
|
4749
|
+
msgstr ""
|
4750
|
+
|
4952
4751
|
msgid "The id of the host to alter"
|
4953
4752
|
msgstr ""
|
4954
4753
|
|
@@ -4961,6 +4760,9 @@ msgstr ""
|
|
4961
4760
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4962
4761
|
msgstr ""
|
4963
4762
|
|
4763
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4764
|
+
msgstr ""
|
4765
|
+
|
4964
4766
|
msgid "The offset in the file where the content starts"
|
4965
4767
|
msgstr ""
|
4966
4768
|
|
@@ -4982,15 +4784,8 @@ msgstr ""
|
|
4982
4784
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4983
4785
|
msgstr ""
|
4984
4786
|
|
4985
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4986
|
-
msgstr ""
|
4987
|
-
|
4988
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4989
|
-
msgstr ""
|
4990
|
-
|
4991
|
-
#, fuzzy
|
4992
4787
|
msgid "The repository is already enabled"
|
4993
|
-
msgstr "
|
4788
|
+
msgstr ""
|
4994
4789
|
|
4995
4790
|
msgid "The request did not contain any repository information."
|
4996
4791
|
msgstr ""
|
@@ -5004,9 +4799,6 @@ msgstr ""
|
|
5004
4799
|
msgid "The requested traces were not found for this host"
|
5005
4800
|
msgstr ""
|
5006
4801
|
|
5007
|
-
msgid "The selected content source and lifecycle environment do not match"
|
5008
|
-
msgstr ""
|
5009
|
-
|
5010
4802
|
msgid ""
|
5011
4803
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
5012
4804
|
" content source, operating system, and architecture"
|
@@ -5024,6 +4816,9 @@ msgstr ""
|
|
5024
4816
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
5025
4817
|
msgstr ""
|
5026
4818
|
|
4819
|
+
msgid "The token key to use for authentication."
|
4820
|
+
msgstr ""
|
4821
|
+
|
5027
4822
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
5028
4823
|
msgstr ""
|
5029
4824
|
|
@@ -5039,16 +4834,12 @@ msgstr ""
|
|
5039
4834
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5040
4835
|
msgstr ""
|
5041
4836
|
|
5042
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5043
4837
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5044
4838
|
msgstr "தயாரிப்புகள் அல்லது தொகுப்புதிவகங்கள் செயல்படுத்தப்படவில்லை. %{custom} அல்லது%{redhat} மூலம் செயல்படுத்த முயற்சிக்கவும்."
|
5045
4839
|
|
5046
4840
|
msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
|
5047
4841
|
msgstr ""
|
5048
4842
|
|
5049
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
5050
|
-
msgstr ""
|
5051
|
-
|
5052
4843
|
msgid "There is no Manifest History to display."
|
5053
4844
|
msgstr ""
|
5054
4845
|
|
@@ -5079,15 +4870,12 @@ msgstr ""
|
|
5079
4870
|
msgid "This action doesn't support package groups"
|
5080
4871
|
msgstr ""
|
5081
4872
|
|
5082
|
-
msgid "This action
|
4873
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
5083
4874
|
msgstr ""
|
5084
4875
|
|
5085
4876
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
5086
4877
|
msgstr ""
|
5087
4878
|
|
5088
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
5089
|
-
msgstr ""
|
5090
|
-
|
5091
4879
|
msgid "This content view version doesn't have a history."
|
5092
4880
|
msgstr ""
|
5093
4881
|
|
@@ -5151,17 +4939,16 @@ msgstr ""
|
|
5151
4939
|
msgid "Timestamp"
|
5152
4940
|
msgstr ""
|
5153
4941
|
|
5154
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
|
5155
4942
|
msgid "Title"
|
5156
4943
|
msgstr "தலைப்பு"
|
5157
4944
|
|
5158
4945
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
5159
4946
|
msgstr ""
|
5160
4947
|
|
5161
|
-
msgid "Total
|
4948
|
+
msgid "Total steps: "
|
5162
4949
|
msgstr ""
|
5163
4950
|
|
5164
|
-
msgid "Total
|
4951
|
+
msgid "Total timeout in seconds for connections when syncing"
|
5165
4952
|
msgstr ""
|
5166
4953
|
|
5167
4954
|
msgid "Tracer profile uploaded successfully"
|
@@ -5224,13 +5011,13 @@ msgstr ""
|
|
5224
5011
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5225
5012
|
msgstr ""
|
5226
5013
|
|
5227
|
-
msgid "Unable to
|
5014
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5228
5015
|
msgstr ""
|
5229
5016
|
|
5230
|
-
msgid "Unable to
|
5017
|
+
msgid "Unable to get users"
|
5231
5018
|
msgstr ""
|
5232
5019
|
|
5233
|
-
msgid "Unable to
|
5020
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5234
5021
|
msgstr ""
|
5235
5022
|
|
5236
5023
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5254,6 +5041,12 @@ msgstr ""
|
|
5254
5041
|
msgid "Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url."
|
5255
5042
|
msgstr ""
|
5256
5043
|
|
5044
|
+
msgid "Unable to update the repository list"
|
5045
|
+
msgstr ""
|
5046
|
+
|
5047
|
+
msgid "Unable to update the user-repository mapping"
|
5048
|
+
msgstr ""
|
5049
|
+
|
5257
5050
|
msgid "Unapplied Errata"
|
5258
5051
|
msgstr ""
|
5259
5052
|
|
@@ -5269,10 +5062,9 @@ msgstr ""
|
|
5269
5062
|
msgid "Unfiltered params array: %s."
|
5270
5063
|
msgstr ""
|
5271
5064
|
|
5272
|
-
msgid "Uninstall packages remotely"
|
5065
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5273
5066
|
msgstr ""
|
5274
5067
|
|
5275
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
5276
5068
|
msgid "Unknown"
|
5277
5069
|
msgstr "தெரியாத"
|
5278
5070
|
|
@@ -5309,14 +5101,12 @@ msgstr ""
|
|
5309
5101
|
msgid "Unsubscribed hypervisor"
|
5310
5102
|
msgstr ""
|
5311
5103
|
|
5312
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5313
5104
|
msgid "Unsupported URL protocol %s."
|
5314
5105
|
msgstr "ஆதரவில்லாத URL நெறிமுறை %s."
|
5315
5106
|
|
5316
5107
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5317
5108
|
msgstr ""
|
5318
5109
|
|
5319
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5320
5110
|
msgid "Update"
|
5321
5111
|
msgstr "புதுப்பி"
|
5322
5112
|
|
@@ -5347,9 +5137,6 @@ msgstr ""
|
|
5347
5137
|
msgid "Update a host collection"
|
5348
5138
|
msgstr ""
|
5349
5139
|
|
5350
|
-
msgid "Update a puppet module associated with the content view"
|
5351
|
-
msgstr ""
|
5352
|
-
|
5353
5140
|
msgid "Update a repository"
|
5354
5141
|
msgstr ""
|
5355
5142
|
|
@@ -5365,7 +5152,7 @@ msgstr ""
|
|
5365
5152
|
msgid "Update an environment in an organization"
|
5366
5153
|
msgstr ""
|
5367
5154
|
|
5368
|
-
msgid "Update content on one or more hosts"
|
5155
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5369
5156
|
msgstr ""
|
5370
5157
|
|
5371
5158
|
msgid "Update content urls"
|
@@ -5407,7 +5194,7 @@ msgstr ""
|
|
5407
5194
|
msgid "Update package via Katello interface"
|
5408
5195
|
msgstr ""
|
5409
5196
|
|
5410
|
-
msgid "Update packages remotely"
|
5197
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5411
5198
|
msgstr ""
|
5412
5199
|
|
5413
5200
|
msgid "Update redhat repository"
|
@@ -5443,7 +5230,6 @@ msgstr ""
|
|
5443
5230
|
msgid "Updates all packages on the host(s)"
|
5444
5231
|
msgstr ""
|
5445
5232
|
|
5446
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5447
5233
|
msgid "Updating Package..."
|
5448
5234
|
msgstr "தொகுப்பை புதுப்பிக்கிறது..."
|
5449
5235
|
|
@@ -5453,7 +5239,6 @@ msgstr ""
|
|
5453
5239
|
msgid "Updating System Purpose for host %s"
|
5454
5240
|
msgstr ""
|
5455
5241
|
|
5456
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5457
5242
|
msgid "Updating package group..."
|
5458
5243
|
msgstr "தொகுப்பு குழுவை புதுப்பிக்கிறது..."
|
5459
5244
|
|
@@ -5478,10 +5263,8 @@ msgstr ""
|
|
5478
5263
|
msgid "Upload errata into"
|
5479
5264
|
msgstr ""
|
5480
5265
|
|
5481
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5482
|
-
#, fuzzy
|
5483
5266
|
msgid "Upload into"
|
5484
|
-
msgstr "
|
5267
|
+
msgstr ""
|
5485
5268
|
|
5486
5269
|
msgid "Upload request id"
|
5487
5270
|
msgstr ""
|
@@ -5516,6 +5299,9 @@ msgstr ""
|
|
5516
5299
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5517
5300
|
msgstr ""
|
5518
5301
|
|
5302
|
+
msgid "User"
|
5303
|
+
msgstr ""
|
5304
|
+
|
5519
5305
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5520
5306
|
msgstr ""
|
5521
5307
|
|
@@ -5555,16 +5341,17 @@ msgstr ""
|
|
5555
5341
|
msgid "Versions"
|
5556
5342
|
msgstr ""
|
5557
5343
|
|
5558
|
-
|
5344
|
+
msgid "Versions will appear here when the content view is published."
|
5345
|
+
msgstr ""
|
5346
|
+
|
5559
5347
|
msgid "View %{view} has not been promoted to %{env}"
|
5560
5348
|
msgstr "காட்சி %{view} ஆனது %{env} க்கு முன்னேற்றப்படவில்லை"
|
5561
5349
|
|
5562
5350
|
msgid "View a report of the affected hosts"
|
5563
5351
|
msgstr ""
|
5564
5352
|
|
5565
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5566
5353
|
msgid "Virtual"
|
5567
|
-
msgstr "
|
5354
|
+
msgstr ""
|
5568
5355
|
|
5569
5356
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5570
5357
|
msgstr ""
|
@@ -5626,13 +5413,11 @@ msgstr ""
|
|
5626
5413
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5627
5414
|
msgstr ""
|
5628
5415
|
|
5629
|
-
#, fuzzy
|
5630
5416
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5631
|
-
msgstr "
|
5417
|
+
msgstr ""
|
5632
5418
|
|
5633
|
-
#, fuzzy
|
5634
5419
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5635
|
-
msgstr "
|
5420
|
+
msgstr ""
|
5636
5421
|
|
5637
5422
|
msgid "You currently don't have any Content Views."
|
5638
5423
|
msgstr ""
|
@@ -5640,9 +5425,15 @@ msgstr ""
|
|
5640
5425
|
msgid "You currently don't have any filters for this content view."
|
5641
5426
|
msgstr ""
|
5642
5427
|
|
5428
|
+
msgid "You currently don't have any history for this content view."
|
5429
|
+
msgstr ""
|
5430
|
+
|
5643
5431
|
msgid "You currently don't have any repositories to add to this content view."
|
5644
5432
|
msgstr ""
|
5645
5433
|
|
5434
|
+
msgid "You currently don't have any versions for this content view."
|
5435
|
+
msgstr ""
|
5436
|
+
|
5646
5437
|
msgid "You do not have permissions to delete %s"
|
5647
5438
|
msgstr ""
|
5648
5439
|
|
@@ -5691,19 +5482,16 @@ msgstr ""
|
|
5691
5482
|
msgid "a file"
|
5692
5483
|
msgstr ""
|
5693
5484
|
|
5485
|
+
msgid "a future release"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5694
5488
|
msgid "a module stream"
|
5695
5489
|
msgstr ""
|
5696
5490
|
|
5697
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5698
|
-
#, fuzzy
|
5699
5491
|
msgid "a package"
|
5700
|
-
msgstr "
|
5492
|
+
msgstr ""
|
5701
5493
|
|
5702
|
-
#, fuzzy
|
5703
5494
|
msgid "a package group"
|
5704
|
-
msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
|
5705
|
-
|
5706
|
-
msgid "a puppet module"
|
5707
5495
|
msgstr ""
|
5708
5496
|
|
5709
5497
|
msgid "actions not found"
|
@@ -5715,9 +5503,8 @@ msgstr ""
|
|
5715
5503
|
msgid "activation key name to filter by"
|
5716
5504
|
msgstr ""
|
5717
5505
|
|
5718
|
-
#, fuzzy
|
5719
5506
|
msgid "activation keys"
|
5720
|
-
msgstr "
|
5507
|
+
msgstr ""
|
5721
5508
|
|
5722
5509
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5723
5510
|
msgstr ""
|
@@ -5725,36 +5512,32 @@ msgstr ""
|
|
5725
5512
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5726
5513
|
msgstr ""
|
5727
5514
|
|
5728
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5729
5515
|
msgid "all packages"
|
5730
5516
|
msgstr "அனைத்து தொகுப்புகள்"
|
5731
5517
|
|
5732
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5733
5518
|
msgid "all packages update"
|
5734
5519
|
msgstr "அனைத்து தொகுப்புகள் புதுப்பித்தல்"
|
5735
5520
|
|
5736
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5737
5521
|
msgid "all packages update failed"
|
5738
5522
|
msgstr "அனைத்து தொகுப்புகள் புதுப்பித்தல் தோல்வி"
|
5739
5523
|
|
5740
5524
|
msgid "allow unauthenticed pull of container images"
|
5741
5525
|
msgstr ""
|
5742
5526
|
|
5743
|
-
|
5527
|
+
msgid "already belongs to the content view"
|
5528
|
+
msgstr ""
|
5529
|
+
|
5744
5530
|
msgid "already taken"
|
5745
|
-
msgstr "
|
5531
|
+
msgstr ""
|
5746
5532
|
|
5747
5533
|
msgid "an ansible collection"
|
5748
5534
|
msgstr ""
|
5749
5535
|
|
5750
|
-
#, fuzzy
|
5751
5536
|
msgid "an erratum"
|
5752
|
-
msgstr "
|
5537
|
+
msgstr ""
|
5753
5538
|
|
5754
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
5755
|
-
#, fuzzy
|
5756
5539
|
msgid "an organization"
|
5757
|
-
msgstr "
|
5540
|
+
msgstr ""
|
5758
5541
|
|
5759
5542
|
msgid "an ostree branch"
|
5760
5543
|
msgstr ""
|
@@ -5765,9 +5548,6 @@ msgstr ""
|
|
5765
5548
|
msgid "attempted to sync without a feed URL"
|
5766
5549
|
msgstr ""
|
5767
5550
|
|
5768
|
-
msgid "author of the puppet module"
|
5769
|
-
msgstr ""
|
5770
|
-
|
5771
5551
|
msgid "auto attach subscriptions upon registration"
|
5772
5552
|
msgstr ""
|
5773
5553
|
|
@@ -5777,43 +5557,35 @@ msgstr ""
|
|
5777
5557
|
msgid "can the activation key have unlimited hosts"
|
5778
5558
|
msgstr ""
|
5779
5559
|
|
5780
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5781
5560
|
msgid "can't be blank"
|
5782
5561
|
msgstr "காலியாக இல்லை"
|
5783
5562
|
|
5784
5563
|
msgid "cannot add filter to import-only view"
|
5785
5564
|
msgstr ""
|
5786
5565
|
|
5787
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5788
5566
|
msgid "cannot be a binary file."
|
5789
5567
|
msgstr "பைனரி கோப்பாக இருக்கக்கூடாது."
|
5790
5568
|
|
5791
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5792
5569
|
msgid "cannot be blank"
|
5793
5570
|
msgstr "காலியாக இருக்கக்கூடாது"
|
5794
5571
|
|
5795
5572
|
msgid "cannot be blank when Repository URL is provided."
|
5796
5573
|
msgstr ""
|
5797
5574
|
|
5798
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5799
|
-
#, fuzzy
|
5800
5575
|
msgid "cannot be changed."
|
5801
|
-
msgstr "
|
5576
|
+
msgstr ""
|
5802
5577
|
|
5803
|
-
#, fuzzy
|
5804
5578
|
msgid "cannot be deleted if it has been promoted."
|
5805
|
-
msgstr "
|
5579
|
+
msgstr ""
|
5806
5580
|
|
5807
5581
|
msgid "cannot be less than one"
|
5808
5582
|
msgstr ""
|
5809
5583
|
|
5810
|
-
#, fuzzy
|
5811
5584
|
msgid "cannot be lower than current usage count (%s)"
|
5812
|
-
msgstr "
|
5585
|
+
msgstr ""
|
5813
5586
|
|
5814
|
-
#, fuzzy
|
5815
5587
|
msgid "cannot be nil"
|
5816
|
-
msgstr "
|
5588
|
+
msgstr ""
|
5817
5589
|
|
5818
5590
|
msgid "cannot be set because unlimited hosts is set"
|
5819
5591
|
msgstr ""
|
@@ -5824,21 +5596,18 @@ msgstr ""
|
|
5824
5596
|
msgid "cannot be set for non-yum repositories."
|
5825
5597
|
msgstr ""
|
5826
5598
|
|
5827
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5828
5599
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5829
5600
|
msgstr "ascii எழுத்துகள் மற்றும் எண்கள், , '_', '-' ஆகியவை தவிர மற்ற எழுத்துக்களை கொண்டிருக்கக்கூடாது. "
|
5830
5601
|
|
5831
5602
|
msgid "cannot contain commas"
|
5832
5603
|
msgstr ""
|
5833
5604
|
|
5834
|
-
#, fuzzy
|
5835
5605
|
msgid "cannot contain filters if composite view"
|
5836
|
-
msgstr "
|
5606
|
+
msgstr ""
|
5837
5607
|
|
5838
5608
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5839
5609
|
msgstr ""
|
5840
5610
|
|
5841
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
5842
5611
|
msgid "cannot contain more than %s characters"
|
5843
5612
|
msgstr "%s எழுத்துக்களுக்கு மேல் கொண்டிருக்கக்கூடாது"
|
5844
5613
|
|
@@ -5848,15 +5617,6 @@ msgstr ""
|
|
5848
5617
|
msgid "checking Pulp task status"
|
5849
5618
|
msgstr ""
|
5850
5619
|
|
5851
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5852
|
-
msgstr ""
|
5853
|
-
|
5854
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5855
|
-
msgstr ""
|
5856
|
-
|
5857
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5858
|
-
msgstr ""
|
5859
|
-
|
5860
5620
|
msgid "composite content view identifier"
|
5861
5621
|
msgstr ""
|
5862
5622
|
|
@@ -5869,7 +5629,7 @@ msgstr ""
|
|
5869
5629
|
msgid "content release version"
|
5870
5630
|
msgstr ""
|
5871
5631
|
|
5872
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5632
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5873
5633
|
msgstr ""
|
5874
5634
|
|
5875
5635
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5896,13 +5656,11 @@ msgstr ""
|
|
5896
5656
|
msgid "content view numeric identifier"
|
5897
5657
|
msgstr ""
|
5898
5658
|
|
5899
|
-
#, fuzzy
|
5900
5659
|
msgid "content view publish"
|
5901
|
-
msgstr "
|
5660
|
+
msgstr ""
|
5902
5661
|
|
5903
|
-
#, fuzzy
|
5904
5662
|
msgid "content view refresh"
|
5905
|
-
msgstr "
|
5663
|
+
msgstr ""
|
5906
5664
|
|
5907
5665
|
msgid "content view to reassign orphaned activation keys to"
|
5908
5666
|
msgstr ""
|
@@ -5973,9 +5731,8 @@ msgstr ""
|
|
5973
5731
|
msgid "environment to reassign orphaned systems to"
|
5974
5732
|
msgstr ""
|
5975
5733
|
|
5976
|
-
#, fuzzy
|
5977
5734
|
msgid "environments"
|
5978
|
-
msgstr "
|
5735
|
+
msgstr ""
|
5979
5736
|
|
5980
5737
|
msgid "errata_id of the content view filter rule"
|
5981
5738
|
msgstr ""
|
@@ -6031,9 +5788,8 @@ msgstr ""
|
|
6031
5788
|
msgid "foreman-tasks service not running or is not ready yet"
|
6032
5789
|
msgstr ""
|
6033
5790
|
|
6034
|
-
#, fuzzy
|
6035
5791
|
msgid "has already been taken"
|
6036
|
-
msgstr "
|
5792
|
+
msgstr ""
|
6037
5793
|
|
6038
5794
|
msgid "has already been taken for a product in this organization."
|
6039
5795
|
msgstr ""
|
@@ -6080,27 +5836,21 @@ msgstr ""
|
|
6080
5836
|
msgid "initiating Pulp task"
|
6081
5837
|
msgstr ""
|
6082
5838
|
|
6083
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6084
5839
|
msgid "installing errata..."
|
6085
5840
|
msgstr "பிழையை நிறுவுகிறது..."
|
6086
5841
|
|
6087
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6088
5842
|
msgid "installing erratum..."
|
6089
5843
|
msgstr "பிழையை நிறுவுகிறது..."
|
6090
5844
|
|
6091
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6092
5845
|
msgid "installing package group..."
|
6093
5846
|
msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
|
6094
5847
|
|
6095
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6096
5848
|
msgid "installing package groups..."
|
6097
5849
|
msgstr "தொகுப்பு குழுக்களை நிறுவுகிறது..."
|
6098
5850
|
|
6099
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6100
5851
|
msgid "installing package..."
|
6101
5852
|
msgstr "தொகுப்பை நிறுவுகிறது..."
|
6102
5853
|
|
6103
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6104
5854
|
msgid "installing packages..."
|
6105
5855
|
msgstr "தொகுப்புகளை நிறுவுகிறது..."
|
6106
5856
|
|
@@ -6116,7 +5866,6 @@ msgstr ""
|
|
6116
5866
|
msgid "is already attached to the capsule"
|
6117
5867
|
msgstr ""
|
6118
5868
|
|
6119
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
|
6120
5869
|
msgid "is invalid"
|
6121
5870
|
msgstr "தவறானது"
|
6122
5871
|
|
@@ -6156,15 +5905,9 @@ msgstr ""
|
|
6156
5905
|
msgid "maximum size of each ISO in MB"
|
6157
5906
|
msgstr ""
|
6158
5907
|
|
6159
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6160
|
-
msgstr ""
|
6161
|
-
|
6162
5908
|
msgid "may not be less than the number of hosts associated with the host collection."
|
6163
5909
|
msgstr ""
|
6164
5910
|
|
6165
|
-
msgid "module name to restrict modules for"
|
6166
|
-
msgstr ""
|
6167
|
-
|
6168
5911
|
msgid "module stream ids"
|
6169
5912
|
msgstr ""
|
6170
5913
|
|
@@ -6174,7 +5917,6 @@ msgstr ""
|
|
6174
5917
|
msgid "must be %{gpg_key} or %{cert}"
|
6175
5918
|
msgstr ""
|
6176
5919
|
|
6177
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6178
5920
|
msgid "must be a positive integer value."
|
6179
5921
|
msgstr "நேர்க்குறி முழு எண் மதிப்பாகவே இருக்க வேன்டும்."
|
6180
5922
|
|
@@ -6184,19 +5926,15 @@ msgstr ""
|
|
6184
5926
|
msgid "must be one of: %s"
|
6185
5927
|
msgstr ""
|
6186
5928
|
|
6187
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6188
5929
|
msgid "must be unique within one organization"
|
6189
5930
|
msgstr "ஒரு நிறுவன எல்லைக்குள் தனிப்பட்ட இருக்க வேண்டும்"
|
6190
5931
|
|
6191
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6192
5932
|
msgid "must contain '%s'"
|
6193
5933
|
msgstr "'%s' ஐக் கொண்டிருக்க வேண்டும்"
|
6194
5934
|
|
6195
|
-
#, fuzzy
|
6196
5935
|
msgid "must contain GPG Key"
|
6197
|
-
msgstr "
|
5936
|
+
msgstr ""
|
6198
5937
|
|
6199
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6200
5938
|
msgid "must contain at least %s character"
|
6201
5939
|
msgstr "குறைந்தது %s எழுத்துக்கள் இருக்க வேண்டும்"
|
6202
5940
|
|
@@ -6206,7 +5944,6 @@ msgstr ""
|
|
6206
5944
|
msgid "must contain valid Public GPG Key"
|
6207
5945
|
msgstr ""
|
6208
5946
|
|
6209
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6210
5947
|
msgid "must not contain leading or trailing white spaces."
|
6211
5948
|
msgstr "முன்னணி அல்லது வெள்ளை இடங்களில் முன்னிலை கொண்டிருக்க கூடாது."
|
6212
5949
|
|
@@ -6231,13 +5968,12 @@ msgstr ""
|
|
6231
5968
|
msgid "name of the organization"
|
6232
5969
|
msgstr ""
|
6233
5970
|
|
6234
|
-
msgid "name of the
|
5971
|
+
msgid "name of the repository"
|
6235
5972
|
msgstr ""
|
6236
5973
|
|
6237
|
-
msgid "name of the
|
5974
|
+
msgid "name of the subscription"
|
6238
5975
|
msgstr ""
|
6239
5976
|
|
6240
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6241
5977
|
msgid "name: %s doesn't exist "
|
6242
5978
|
msgstr "பெயர்: %s இல்லை "
|
6243
5979
|
|
@@ -6256,13 +5992,15 @@ msgstr ""
|
|
6256
5992
|
msgid "obtain manifest history for subscriptions"
|
6257
5993
|
msgstr ""
|
6258
5994
|
|
6259
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6260
5995
|
msgid "of environment must be unique within one organization"
|
6261
5996
|
msgstr "ஒரு நிறுவனத்தில் சூழலின் இந்த அம்சம் தனித்துவமாக இருக்க வேண்டும்"
|
6262
5997
|
|
6263
5998
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6264
5999
|
msgstr ""
|
6265
6000
|
|
6001
|
+
msgid "only show the repositories readable by this user with this username"
|
6002
|
+
msgstr ""
|
6003
|
+
|
6266
6004
|
msgid "optional package names to include in the package group"
|
6267
6005
|
msgstr ""
|
6268
6006
|
|
@@ -6302,6 +6040,9 @@ msgstr ""
|
|
6302
6040
|
msgid "package_ids is not an array"
|
6303
6041
|
msgstr ""
|
6304
6042
|
|
6043
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6044
|
+
msgstr ""
|
6045
|
+
|
6305
6046
|
msgid "pattern for container image names"
|
6306
6047
|
msgstr ""
|
6307
6048
|
|
@@ -6323,28 +6064,18 @@ msgstr ""
|
|
6323
6064
|
msgid "product numeric identifier"
|
6324
6065
|
msgstr ""
|
6325
6066
|
|
6326
|
-
msgid "puppet module ID"
|
6327
|
-
msgstr ""
|
6328
|
-
|
6329
|
-
msgid "puppet_module_ids is not an array"
|
6330
|
-
msgstr ""
|
6331
|
-
|
6332
6067
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6333
6068
|
msgstr ""
|
6334
6069
|
|
6335
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6336
6070
|
msgid "removing package group..."
|
6337
6071
|
msgstr "தொகுப்பு குழுக்களை நீக்குகிறது..."
|
6338
6072
|
|
6339
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6340
6073
|
msgid "removing package groups..."
|
6341
6074
|
msgstr "தொகுப்பு குழுவை நீக்குகிறது..."
|
6342
6075
|
|
6343
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6344
6076
|
msgid "removing package..."
|
6345
6077
|
msgstr "தொகுப்பை நீக்கவும்..."
|
6346
6078
|
|
6347
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6348
6079
|
msgid "removing packages..."
|
6349
6080
|
msgstr "தொகுப்புக்களை நீக்குகிறது..."
|
6350
6081
|
|
@@ -6426,19 +6157,9 @@ msgstr ""
|
|
6426
6157
|
msgid "temporarily override feed URL for sync"
|
6427
6158
|
msgstr ""
|
6428
6159
|
|
6429
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6430
6160
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6431
6161
|
msgstr "Red Hat வழங்குநருக்காக பின்வரும் பண்புகளுக்காக புதுப்பிக்கப்படவில்லை: [ %s ]"
|
6432
6162
|
|
6433
|
-
msgid "the id of the puppet module to associate"
|
6434
|
-
msgstr ""
|
6435
|
-
|
6436
|
-
msgid "the uuid of the puppet module to associate"
|
6437
|
-
msgstr ""
|
6438
|
-
|
6439
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6440
|
-
msgstr ""
|
6441
|
-
|
6442
6163
|
msgid "true if the latest version of the component's content view is desired"
|
6443
6164
|
msgstr ""
|
6444
6165
|
|
@@ -6466,28 +6187,21 @@ msgstr ""
|
|
6466
6187
|
msgid "update a filter"
|
6467
6188
|
msgstr ""
|
6468
6189
|
|
6469
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6470
6190
|
msgid "updating package group..."
|
6471
6191
|
msgstr "தொகுப்பு குழுவை புதுப்பிக்கிறது..."
|
6472
6192
|
|
6473
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6474
6193
|
msgid "updating package groups..."
|
6475
6194
|
msgstr "தொகுப்பு குழுக்களை புதுப்பிக்கிறது..."
|
6476
6195
|
|
6477
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6478
6196
|
msgid "updating package..."
|
6479
6197
|
msgstr "தொகுப்பை புதுப்பிக்கிறது..."
|
6480
6198
|
|
6481
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
|
6482
6199
|
msgid "updating packages..."
|
6483
6200
|
msgstr "தொகுப்புகளை புதுப்பிக்கிறது..."
|
6484
6201
|
|
6485
6202
|
msgid "url not defined."
|
6486
6203
|
msgstr ""
|
6487
6204
|
|
6488
|
-
msgid "uuid of the puppet module"
|
6489
|
-
msgstr ""
|
6490
|
-
|
6491
6205
|
msgid "waiting for Candlepin to finish the task"
|
6492
6206
|
msgstr ""
|
6493
6207
|
|
@@ -6497,6 +6211,15 @@ msgstr ""
|
|
6497
6211
|
msgid "waiting for Pulp to start the task"
|
6498
6212
|
msgstr ""
|
6499
6213
|
|
6214
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6215
|
+
msgstr ""
|
6216
|
+
|
6217
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6218
|
+
msgstr ""
|
6219
|
+
|
6220
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6221
|
+
msgstr ""
|
6222
|
+
|
6500
6223
|
msgid "with"
|
6501
6224
|
msgstr ""
|
6502
6225
|
|