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/kn/katello.po
CHANGED
@@ -1,29 +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
|
-
#
|
8
|
-
# bkearney <bkearney@fedoraproject.org>, 2014. #zanata
|
9
|
-
# shanky <shanky@fedoraproject.org>, 2014. #zanata
|
7
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
8
|
+
#
|
10
9
|
msgid ""
|
11
10
|
msgstr ""
|
12
|
-
"Project-Id-Version:
|
11
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
13
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
+
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
14
|
+
"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2021\n"
|
15
|
+
"Language-Team: Kannada (https://www.transifex.com/foreman/teams/114/kn/)\n"
|
14
16
|
"MIME-Version: 1.0\n"
|
15
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
18
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"PO-Revision-Date: 2014-03-21 08:38-0400\n"
|
18
|
-
"Last-Translator: shanky <shanky@fedoraproject.org>\n"
|
19
|
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
20
19
|
"Language: kn\n"
|
21
|
-
"Plural-Forms: nplurals=
|
22
|
-
"X-Generator: Zanata 3.6.2\n"
|
20
|
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
23
21
|
|
24
22
|
msgid ""
|
25
23
|
"\n"
|
26
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
24
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
27
25
|
msgstr ""
|
28
26
|
|
29
27
|
msgid " %{errata_count} Errata"
|
@@ -35,18 +33,17 @@ msgstr ""
|
|
35
33
|
msgid " %{package_count} Package(s)"
|
36
34
|
msgstr ""
|
37
35
|
|
38
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
39
|
-
msgstr ""
|
40
|
-
|
41
36
|
msgid " Content view updated."
|
42
37
|
msgstr ""
|
43
38
|
|
44
39
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
45
40
|
msgstr ""
|
46
41
|
|
47
|
-
|
42
|
+
msgid " RPMs"
|
43
|
+
msgstr ""
|
44
|
+
|
48
45
|
msgid " environment cannot be set to an environment already on its path"
|
49
|
-
msgstr "
|
46
|
+
msgstr ""
|
50
47
|
|
51
48
|
msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
|
52
49
|
msgstr ""
|
@@ -54,10 +51,8 @@ msgstr ""
|
|
54
51
|
msgid "%s Available"
|
55
52
|
msgstr ""
|
56
53
|
|
57
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
58
|
-
#, fuzzy
|
59
54
|
msgid "%s Errata"
|
60
|
-
msgstr "
|
55
|
+
msgstr ""
|
61
56
|
|
62
57
|
msgid "%s Host"
|
63
58
|
msgid_plural "%s Hosts"
|
@@ -67,16 +62,14 @@ msgstr[1] ""
|
|
67
62
|
msgid "%s Used"
|
68
63
|
msgstr ""
|
69
64
|
|
70
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
71
65
|
msgid "%s ago"
|
72
66
|
msgstr "%s ಹಿಂದೆ"
|
73
67
|
|
74
68
|
msgid "%s has already been deleted"
|
75
69
|
msgstr ""
|
76
70
|
|
77
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
78
71
|
msgid "%s is not a valid package name"
|
79
|
-
msgstr "
|
72
|
+
msgstr ""
|
80
73
|
|
81
74
|
msgid "%s is unreachable. %s"
|
82
75
|
msgstr ""
|
@@ -84,236 +77,179 @@ msgstr ""
|
|
84
77
|
msgid "%s must be an array."
|
85
78
|
msgstr ""
|
86
79
|
|
87
|
-
#, fuzzy
|
88
80
|
msgid "%{errata} (%{total} other errata)"
|
89
|
-
msgstr "
|
81
|
+
msgstr ""
|
90
82
|
|
91
|
-
#, fuzzy
|
92
83
|
msgid "%{errata} (%{total} other errata) install canceled"
|
93
|
-
msgstr "
|
84
|
+
msgstr ""
|
94
85
|
|
95
|
-
#, fuzzy
|
96
86
|
msgid "%{errata} (%{total} other errata) install failed"
|
97
|
-
msgstr "
|
87
|
+
msgstr ""
|
98
88
|
|
99
|
-
#, fuzzy
|
100
89
|
msgid "%{errata} (%{total} other errata) install timed out"
|
101
|
-
msgstr "
|
90
|
+
msgstr ""
|
102
91
|
|
103
|
-
#, fuzzy
|
104
92
|
msgid "%{errata} (%{total} other errata) installed"
|
105
|
-
msgstr "
|
93
|
+
msgstr ""
|
106
94
|
|
107
|
-
#, fuzzy
|
108
95
|
msgid "%{errata} erratum install canceled"
|
109
|
-
msgstr "
|
96
|
+
msgstr ""
|
110
97
|
|
111
|
-
#, fuzzy
|
112
98
|
msgid "%{errata} erratum install failed"
|
113
|
-
msgstr "
|
99
|
+
msgstr ""
|
114
100
|
|
115
|
-
#, fuzzy
|
116
101
|
msgid "%{errata} erratum install timed out"
|
117
|
-
msgstr "
|
102
|
+
msgstr ""
|
118
103
|
|
119
|
-
#, fuzzy
|
120
104
|
msgid "%{errata} erratum installed"
|
121
|
-
msgstr "
|
105
|
+
msgstr ""
|
122
106
|
|
123
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."
|
124
108
|
msgstr ""
|
125
109
|
|
126
|
-
#, fuzzy
|
127
110
|
msgid "%{group} (%{total} other package groups)"
|
128
|
-
msgstr "
|
111
|
+
msgstr ""
|
129
112
|
|
130
|
-
#, fuzzy
|
131
113
|
msgid "%{group} (%{total} other package groups) install canceled"
|
132
|
-
msgstr "
|
114
|
+
msgstr ""
|
133
115
|
|
134
|
-
#, fuzzy
|
135
116
|
msgid "%{group} (%{total} other package groups) install failed"
|
136
|
-
msgstr "
|
117
|
+
msgstr ""
|
137
118
|
|
138
|
-
#, fuzzy
|
139
119
|
msgid "%{group} (%{total} other package groups) install timed out"
|
140
|
-
msgstr "
|
120
|
+
msgstr ""
|
141
121
|
|
142
|
-
#, fuzzy
|
143
122
|
msgid "%{group} (%{total} other package groups) installed"
|
144
|
-
msgstr "
|
123
|
+
msgstr ""
|
145
124
|
|
146
|
-
#, fuzzy
|
147
125
|
msgid "%{group} (%{total} other package groups) remove canceled"
|
148
|
-
msgstr "
|
126
|
+
msgstr ""
|
149
127
|
|
150
|
-
#, fuzzy
|
151
128
|
msgid "%{group} (%{total} other package groups) remove failed"
|
152
|
-
msgstr "
|
129
|
+
msgstr ""
|
153
130
|
|
154
|
-
#, fuzzy
|
155
131
|
msgid "%{group} (%{total} other package groups) remove timed out"
|
156
|
-
msgstr "
|
132
|
+
msgstr ""
|
157
133
|
|
158
|
-
#, fuzzy
|
159
134
|
msgid "%{group} (%{total} other package groups) removed"
|
160
|
-
msgstr "
|
135
|
+
msgstr ""
|
161
136
|
|
162
|
-
#, fuzzy
|
163
137
|
msgid "%{group} (%{total} other package groups) update canceled"
|
164
|
-
msgstr "
|
138
|
+
msgstr ""
|
165
139
|
|
166
|
-
#, fuzzy
|
167
140
|
msgid "%{group} (%{total} other package groups) update failed"
|
168
|
-
msgstr "
|
141
|
+
msgstr ""
|
169
142
|
|
170
|
-
#, fuzzy
|
171
143
|
msgid "%{group} (%{total} other package groups) update timed out"
|
172
|
-
msgstr "
|
144
|
+
msgstr ""
|
173
145
|
|
174
|
-
#, fuzzy
|
175
146
|
msgid "%{group} (%{total} other package groups) updated"
|
176
|
-
msgstr "
|
147
|
+
msgstr ""
|
177
148
|
|
178
|
-
#, fuzzy
|
179
149
|
msgid "%{group} package group install canceled"
|
180
|
-
msgstr "
|
150
|
+
msgstr ""
|
181
151
|
|
182
|
-
#, fuzzy
|
183
152
|
msgid "%{group} package group install failed"
|
184
|
-
msgstr "
|
153
|
+
msgstr ""
|
185
154
|
|
186
|
-
#, fuzzy
|
187
155
|
msgid "%{group} package group install timed out"
|
188
|
-
msgstr "
|
156
|
+
msgstr ""
|
189
157
|
|
190
|
-
#, fuzzy
|
191
158
|
msgid "%{group} package group installed"
|
192
|
-
msgstr "
|
159
|
+
msgstr ""
|
193
160
|
|
194
|
-
#, fuzzy
|
195
161
|
msgid "%{group} package group remove canceled"
|
196
|
-
msgstr "
|
162
|
+
msgstr ""
|
197
163
|
|
198
|
-
#, fuzzy
|
199
164
|
msgid "%{group} package group remove failed"
|
200
|
-
msgstr "
|
165
|
+
msgstr ""
|
201
166
|
|
202
|
-
#, fuzzy
|
203
167
|
msgid "%{group} package group remove timed out"
|
204
|
-
msgstr "
|
168
|
+
msgstr ""
|
205
169
|
|
206
|
-
#, fuzzy
|
207
170
|
msgid "%{group} package group removed"
|
208
|
-
msgstr "
|
171
|
+
msgstr ""
|
209
172
|
|
210
|
-
#, fuzzy
|
211
173
|
msgid "%{group} package group update canceled"
|
212
|
-
msgstr "
|
174
|
+
msgstr ""
|
213
175
|
|
214
|
-
#, fuzzy
|
215
176
|
msgid "%{group} package group update failed"
|
216
|
-
msgstr "
|
177
|
+
msgstr ""
|
217
178
|
|
218
|
-
#, fuzzy
|
219
179
|
msgid "%{group} package group update timed out"
|
220
|
-
msgstr "
|
180
|
+
msgstr ""
|
221
181
|
|
222
|
-
#, fuzzy
|
223
182
|
msgid "%{group} package group updated"
|
224
|
-
msgstr "
|
183
|
+
msgstr ""
|
225
184
|
|
226
|
-
#, fuzzy
|
227
185
|
msgid "%{package} (%{total} other packages)"
|
228
|
-
msgstr "
|
186
|
+
msgstr ""
|
229
187
|
|
230
|
-
#, fuzzy
|
231
188
|
msgid "%{package} (%{total} other packages) install canceled"
|
232
|
-
msgstr "
|
189
|
+
msgstr ""
|
233
190
|
|
234
|
-
#, fuzzy
|
235
191
|
msgid "%{package} (%{total} other packages) install failed"
|
236
|
-
msgstr "
|
192
|
+
msgstr ""
|
237
193
|
|
238
|
-
#, fuzzy
|
239
194
|
msgid "%{package} (%{total} other packages) install timed out"
|
240
|
-
msgstr "
|
195
|
+
msgstr ""
|
241
196
|
|
242
|
-
#, fuzzy
|
243
197
|
msgid "%{package} (%{total} other packages) installed"
|
244
|
-
msgstr "
|
198
|
+
msgstr ""
|
245
199
|
|
246
|
-
#, fuzzy
|
247
200
|
msgid "%{package} (%{total} other packages) remove canceled"
|
248
|
-
msgstr "
|
201
|
+
msgstr ""
|
249
202
|
|
250
|
-
#, fuzzy
|
251
203
|
msgid "%{package} (%{total} other packages) remove failed"
|
252
|
-
msgstr "
|
204
|
+
msgstr ""
|
253
205
|
|
254
|
-
#, fuzzy
|
255
206
|
msgid "%{package} (%{total} other packages) remove timed out"
|
256
|
-
msgstr "
|
207
|
+
msgstr ""
|
257
208
|
|
258
|
-
#, fuzzy
|
259
209
|
msgid "%{package} (%{total} other packages) removed"
|
260
|
-
msgstr "
|
210
|
+
msgstr ""
|
261
211
|
|
262
|
-
#, fuzzy
|
263
212
|
msgid "%{package} (%{total} other packages) update canceled"
|
264
|
-
msgstr "
|
213
|
+
msgstr ""
|
265
214
|
|
266
|
-
#, fuzzy
|
267
215
|
msgid "%{package} (%{total} other packages) update failed"
|
268
|
-
msgstr "
|
216
|
+
msgstr ""
|
269
217
|
|
270
|
-
#, fuzzy
|
271
218
|
msgid "%{package} (%{total} other packages) update timed out"
|
272
|
-
msgstr "
|
219
|
+
msgstr ""
|
273
220
|
|
274
|
-
#, fuzzy
|
275
221
|
msgid "%{package} (%{total} other packages) updated"
|
276
|
-
msgstr "
|
222
|
+
msgstr ""
|
277
223
|
|
278
|
-
#, fuzzy
|
279
224
|
msgid "%{package} package install canceled"
|
280
|
-
msgstr "
|
225
|
+
msgstr ""
|
281
226
|
|
282
|
-
#, fuzzy
|
283
227
|
msgid "%{package} package install timed out"
|
284
|
-
msgstr "
|
228
|
+
msgstr ""
|
285
229
|
|
286
|
-
#, fuzzy
|
287
230
|
msgid "%{package} package remove canceled"
|
288
|
-
msgstr "
|
231
|
+
msgstr ""
|
289
232
|
|
290
|
-
#, fuzzy
|
291
233
|
msgid "%{package} package remove failed"
|
292
|
-
msgstr "
|
234
|
+
msgstr ""
|
293
235
|
|
294
|
-
#, fuzzy
|
295
236
|
msgid "%{package} package remove timed out"
|
296
|
-
msgstr "
|
237
|
+
msgstr ""
|
297
238
|
|
298
|
-
#, fuzzy
|
299
239
|
msgid "%{package} package removed"
|
300
|
-
msgstr "
|
240
|
+
msgstr ""
|
301
241
|
|
302
|
-
#, fuzzy
|
303
242
|
msgid "%{package} package update canceled"
|
304
|
-
msgstr "
|
243
|
+
msgstr ""
|
305
244
|
|
306
|
-
#, fuzzy
|
307
245
|
msgid "%{package} package update failed"
|
308
|
-
msgstr "
|
246
|
+
msgstr ""
|
309
247
|
|
310
|
-
#, fuzzy
|
311
248
|
msgid "%{package} package update timed out"
|
312
|
-
msgstr "
|
249
|
+
msgstr ""
|
313
250
|
|
314
|
-
#, fuzzy
|
315
251
|
msgid "%{package} package updated"
|
316
|
-
msgstr "
|
252
|
+
msgstr ""
|
317
253
|
|
318
254
|
msgid "%{sla}"
|
319
255
|
msgstr ""
|
@@ -339,9 +275,8 @@ msgstr ""
|
|
339
275
|
msgid ", must be unique to major and version id version."
|
340
276
|
msgstr ""
|
341
277
|
|
342
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
343
278
|
msgid ": '%s' is a built-in environment"
|
344
|
-
msgstr "
|
279
|
+
msgstr ""
|
345
280
|
|
346
281
|
msgid ":a_resource identifier"
|
347
282
|
msgstr ""
|
@@ -355,15 +290,17 @@ msgstr ""
|
|
355
290
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
356
291
|
msgstr ""
|
357
292
|
|
293
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
294
|
+
msgstr ""
|
295
|
+
|
358
296
|
msgid "A backend service [ %s ] is unreachable"
|
359
297
|
msgstr ""
|
360
298
|
|
361
299
|
msgid "A content view can be added by using the \"New content view\" button below."
|
362
300
|
msgstr ""
|
363
301
|
|
364
|
-
#, fuzzy
|
365
302
|
msgid "A content_type must be provided."
|
366
|
-
msgstr "
|
303
|
+
msgstr ""
|
367
304
|
|
368
305
|
msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
|
369
306
|
msgstr ""
|
@@ -392,6 +329,9 @@ msgstr ""
|
|
392
329
|
msgid "A summary of new errata after a repository is synchronized"
|
393
330
|
msgstr ""
|
394
331
|
|
332
|
+
msgid "About page"
|
333
|
+
msgstr ""
|
334
|
+
|
395
335
|
msgid "Abstract async task"
|
396
336
|
msgstr ""
|
397
337
|
|
@@ -401,44 +341,49 @@ msgstr ""
|
|
401
341
|
msgid "Account Number"
|
402
342
|
msgstr ""
|
403
343
|
|
344
|
+
msgid "Action"
|
345
|
+
msgstr "ಕ್ರಿಯೆ"
|
346
|
+
|
404
347
|
msgid "Action not allowed for the default smart proxy."
|
405
348
|
msgstr ""
|
406
349
|
|
407
|
-
msgid "Action unauthorized to be performed
|
350
|
+
msgid "Action unauthorized to be performed in this organization."
|
408
351
|
msgstr ""
|
409
352
|
|
410
|
-
msgid "Action
|
353
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
411
354
|
msgstr ""
|
412
355
|
|
413
|
-
msgid "
|
356
|
+
msgid "Action with sub plans"
|
414
357
|
msgstr ""
|
415
358
|
|
416
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
417
359
|
msgid "Activation Keys"
|
418
|
-
msgstr "
|
360
|
+
msgstr ""
|
419
361
|
|
420
362
|
msgid "Activation key ID"
|
421
363
|
msgstr ""
|
422
364
|
|
423
|
-
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"
|
424
372
|
msgstr ""
|
425
373
|
|
426
|
-
#, fuzzy
|
427
374
|
msgid "Activation keys and subscriptions can be managed"
|
428
|
-
msgstr "
|
375
|
+
msgstr ""
|
376
|
+
|
377
|
+
msgid "Activation keys: "
|
378
|
+
msgstr ""
|
429
379
|
|
430
380
|
msgid "Active Subscriptions"
|
431
381
|
msgstr ""
|
432
382
|
|
433
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
434
|
-
#, fuzzy
|
435
383
|
msgid "Active only"
|
436
|
-
msgstr "ಸಕ್ರಿಯಗೊಳಿಕೆ ಕೀಲಿಗಳು"
|
437
|
-
|
438
|
-
msgid "Add Subscriptions"
|
439
384
|
msgstr ""
|
440
385
|
|
441
|
-
msgid "Add
|
386
|
+
msgid "Add Subscriptions"
|
442
387
|
msgstr ""
|
443
388
|
|
444
389
|
msgid "Add a subscription to a host"
|
@@ -474,13 +419,22 @@ msgstr ""
|
|
474
419
|
msgid "Add subscriptions to one or more hosts"
|
475
420
|
msgstr ""
|
476
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
|
+
|
477
431
|
msgid "Added Content:"
|
478
432
|
msgstr ""
|
479
433
|
|
480
434
|
msgid "Adding content units"
|
481
435
|
msgstr ""
|
482
436
|
|
483
|
-
msgid "
|
437
|
+
msgid "Additional content"
|
484
438
|
msgstr ""
|
485
439
|
|
486
440
|
msgid "Addons"
|
@@ -542,6 +496,9 @@ msgstr ""
|
|
542
496
|
msgid "Arch"
|
543
497
|
msgstr ""
|
544
498
|
|
499
|
+
msgid "Architecture"
|
500
|
+
msgstr ""
|
501
|
+
|
545
502
|
msgid "Architecture of content in the repository"
|
546
503
|
msgstr ""
|
547
504
|
|
@@ -616,21 +573,17 @@ msgstr ""
|
|
616
573
|
msgid "At least one Content View Version must be specified"
|
617
574
|
msgstr ""
|
618
575
|
|
619
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
620
576
|
msgid "At least one activation key must be provided"
|
621
|
-
msgstr "
|
577
|
+
msgstr ""
|
622
578
|
|
623
579
|
msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
|
624
580
|
msgstr ""
|
625
581
|
|
626
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
627
582
|
msgid "At least one organization must exist."
|
628
|
-
msgstr "
|
583
|
+
msgstr ""
|
629
584
|
|
630
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
631
|
-
#, fuzzy
|
632
585
|
msgid "Attach a subscription"
|
633
|
-
msgstr "
|
586
|
+
msgstr ""
|
634
587
|
|
635
588
|
msgid "Attach subscriptions"
|
636
589
|
msgstr ""
|
@@ -642,7 +595,7 @@ msgid "Attempted to destroy consumer %s from candlepin, but consumer does not ex
|
|
642
595
|
msgstr ""
|
643
596
|
|
644
597
|
msgid "Author"
|
645
|
-
msgstr ""
|
598
|
+
msgstr "ಲೇಖಕ"
|
646
599
|
|
647
600
|
msgid "Auto Publish"
|
648
601
|
msgstr ""
|
@@ -650,10 +603,8 @@ msgstr ""
|
|
650
603
|
msgid "Auto Publish - Triggered by '%s'"
|
651
604
|
msgstr ""
|
652
605
|
|
653
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
654
|
-
#, fuzzy
|
655
606
|
msgid "Auto attach subscriptions"
|
656
|
-
msgstr "
|
607
|
+
msgstr ""
|
657
608
|
|
658
609
|
msgid "Autopublish"
|
659
610
|
msgstr ""
|
@@ -688,9 +639,8 @@ msgstr ""
|
|
688
639
|
msgid "Batch size to sync repositories in."
|
689
640
|
msgstr ""
|
690
641
|
|
691
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
692
642
|
msgid "Beta"
|
693
|
-
msgstr "
|
643
|
+
msgstr ""
|
694
644
|
|
695
645
|
msgid "Bind an entitlement to an allocation"
|
696
646
|
msgstr ""
|
@@ -704,14 +654,11 @@ msgstr ""
|
|
704
654
|
msgid "Branches updated"
|
705
655
|
msgstr ""
|
706
656
|
|
707
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
708
657
|
msgid "Bug Fix"
|
709
|
-
msgstr "
|
658
|
+
msgstr ""
|
710
659
|
|
711
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
712
|
-
#, fuzzy
|
713
660
|
msgid "Bugfix"
|
714
|
-
msgstr "
|
661
|
+
msgstr ""
|
715
662
|
|
716
663
|
msgid "Bulk generate applicability for hosts"
|
717
664
|
msgstr ""
|
@@ -719,17 +666,14 @@ msgstr ""
|
|
719
666
|
msgid "CDN SSL version"
|
720
667
|
msgstr ""
|
721
668
|
|
722
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
723
669
|
msgid "CDN loading error: %s not found"
|
724
|
-
msgstr "
|
670
|
+
msgstr ""
|
725
671
|
|
726
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
727
672
|
msgid "CDN loading error: access denied to %s"
|
728
|
-
msgstr "
|
673
|
+
msgstr ""
|
729
674
|
|
730
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
731
675
|
msgid "CDN loading error: access forbidden to %s"
|
732
|
-
msgstr "
|
676
|
+
msgstr ""
|
733
677
|
|
734
678
|
msgid "CVE identifier"
|
735
679
|
msgstr ""
|
@@ -755,11 +699,9 @@ msgstr ""
|
|
755
699
|
msgid "Can only upload to Yum Repositories."
|
756
700
|
msgstr ""
|
757
701
|
|
758
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
759
702
|
msgid "Can't update the '%s' environment"
|
760
|
-
msgstr "
|
703
|
+
msgstr ""
|
761
704
|
|
762
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
763
705
|
msgid "Cancel"
|
764
706
|
msgstr "ರದ್ದುಗೊಳಿಸು"
|
765
707
|
|
@@ -769,22 +711,17 @@ msgstr ""
|
|
769
711
|
msgid "Cancel running smart proxy synchronization"
|
770
712
|
msgstr ""
|
771
713
|
|
772
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
773
|
-
#, fuzzy
|
774
714
|
msgid "Canceled"
|
775
|
-
msgstr "
|
715
|
+
msgstr ""
|
776
716
|
|
777
717
|
msgid "Cancelled"
|
778
718
|
msgstr ""
|
779
719
|
|
780
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
781
|
-
#, fuzzy
|
782
720
|
msgid "Cancelled."
|
783
|
-
msgstr "
|
721
|
+
msgstr ""
|
784
722
|
|
785
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
786
723
|
msgid "Candlepin Event"
|
787
|
-
msgstr "
|
724
|
+
msgstr ""
|
788
725
|
|
789
726
|
msgid "Candlepin ID of pool to add"
|
790
727
|
msgstr ""
|
@@ -825,16 +762,14 @@ msgstr ""
|
|
825
762
|
msgid "Cannot clone into the Default Content View"
|
826
763
|
msgstr ""
|
827
764
|
|
828
|
-
#, fuzzy
|
829
765
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
830
|
-
msgstr "
|
766
|
+
msgstr ""
|
831
767
|
|
832
768
|
msgid "Cannot delete Red Hat product: %{product}"
|
833
769
|
msgstr ""
|
834
770
|
|
835
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
836
771
|
msgid "Cannot delete from %s, view does not exist there."
|
837
|
-
msgstr "
|
772
|
+
msgstr ""
|
838
773
|
|
839
774
|
msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
|
840
775
|
msgstr ""
|
@@ -845,29 +780,23 @@ msgstr ""
|
|
845
780
|
msgid "Cannot delete redhat product content"
|
846
781
|
msgstr ""
|
847
782
|
|
848
|
-
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."
|
849
|
-
msgstr ""
|
850
|
-
|
851
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."
|
852
784
|
msgstr ""
|
853
785
|
|
854
|
-
msgid "Cannot delete the last Location.
|
786
|
+
msgid "Cannot delete the last Location."
|
855
787
|
msgstr ""
|
856
788
|
|
857
|
-
#, fuzzy
|
858
789
|
msgid "Cannot delete version while it is in environment %s"
|
859
|
-
msgstr "
|
790
|
+
msgstr ""
|
860
791
|
|
861
|
-
#, fuzzy
|
862
792
|
msgid "Cannot delete version while it is in environments: %s"
|
863
|
-
msgstr "
|
793
|
+
msgstr ""
|
864
794
|
|
865
795
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
866
796
|
msgstr ""
|
867
797
|
|
868
|
-
#, fuzzy
|
869
798
|
msgid "Cannot delete view while it exists in environments"
|
870
|
-
msgstr "
|
799
|
+
msgstr ""
|
871
800
|
|
872
801
|
msgid "Cannot import a composite content view"
|
873
802
|
msgstr ""
|
@@ -893,9 +822,8 @@ msgstr ""
|
|
893
822
|
msgid "Cannot publish default content view"
|
894
823
|
msgstr ""
|
895
824
|
|
896
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
897
825
|
msgid "Cannot register a system to the '%s' environment"
|
898
|
-
msgstr "
|
826
|
+
msgstr ""
|
899
827
|
|
900
828
|
msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
|
901
829
|
msgstr ""
|
@@ -921,15 +849,12 @@ msgstr ""
|
|
921
849
|
msgid "Cannot specify content for composite views"
|
922
850
|
msgstr ""
|
923
851
|
|
924
|
-
msgid "Cannot sync file:// repositories with On Demand
|
852
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
925
853
|
msgstr ""
|
926
854
|
|
927
855
|
msgid "Cannot upload Container Image content."
|
928
856
|
msgstr ""
|
929
857
|
|
930
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
931
|
-
msgstr ""
|
932
|
-
|
933
858
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
934
859
|
msgstr ""
|
935
860
|
|
@@ -954,19 +879,20 @@ msgstr ""
|
|
954
879
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
955
880
|
msgstr ""
|
956
881
|
|
882
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
883
|
+
msgstr ""
|
884
|
+
|
957
885
|
msgid "Click here to go to the tasks page for the task."
|
958
886
|
msgstr ""
|
959
887
|
|
960
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
961
888
|
msgid "Clone"
|
962
889
|
msgstr "ತದ್ರೂಪು"
|
963
890
|
|
964
891
|
msgid "Close"
|
965
|
-
msgstr ""
|
892
|
+
msgstr "ಮುಚ್ಚು"
|
966
893
|
|
967
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
968
894
|
msgid "Collapse All"
|
969
|
-
msgstr "
|
895
|
+
msgstr ""
|
970
896
|
|
971
897
|
msgid "Combined Profile Update"
|
972
898
|
msgstr ""
|
@@ -977,9 +903,8 @@ msgstr ""
|
|
977
903
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
978
904
|
msgstr ""
|
979
905
|
|
980
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
981
906
|
msgid "Component"
|
982
|
-
msgstr "
|
907
|
+
msgstr ""
|
983
908
|
|
984
909
|
msgid "Component Content View"
|
985
910
|
msgstr ""
|
@@ -1029,9 +954,8 @@ msgstr ""
|
|
1029
954
|
msgid "Container image tag"
|
1030
955
|
msgstr ""
|
1031
956
|
|
1032
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author shanky
|
1033
957
|
msgid "Content"
|
1034
|
-
msgstr "
|
958
|
+
msgstr ""
|
1035
959
|
|
1036
960
|
msgid "Content Credential ID"
|
1037
961
|
msgstr ""
|
@@ -1048,14 +972,7 @@ msgstr ""
|
|
1048
972
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1049
973
|
msgstr ""
|
1050
974
|
|
1051
|
-
#, fuzzy
|
1052
975
|
msgid "Content Hosts"
|
1053
|
-
msgstr "ಕಂಟೆಂಟ್"
|
1054
|
-
|
1055
|
-
msgid "Content Migration"
|
1056
|
-
msgstr ""
|
1057
|
-
|
1058
|
-
msgid "Content Migration Reset"
|
1059
976
|
msgstr ""
|
1060
977
|
|
1061
978
|
msgid "Content Source"
|
@@ -1067,11 +984,7 @@ msgstr ""
|
|
1067
984
|
msgid "Content Types"
|
1068
985
|
msgstr ""
|
1069
986
|
|
1070
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
1071
987
|
msgid "Content View"
|
1072
|
-
msgstr "ಕಂಟೆಂಟ್ ನೋಟ"
|
1073
|
-
|
1074
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
1075
988
|
msgstr ""
|
1076
989
|
|
1077
990
|
msgid "Content View %{view}: Versions: %{versions}"
|
@@ -1086,10 +999,8 @@ msgstr ""
|
|
1086
999
|
msgid "Content View Details"
|
1087
1000
|
msgstr ""
|
1088
1001
|
|
1089
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
1090
|
-
#, fuzzy
|
1091
1002
|
msgid "Content View Filter id"
|
1092
|
-
msgstr "
|
1003
|
+
msgstr ""
|
1093
1004
|
|
1094
1005
|
msgid "Content View Filter identifier"
|
1095
1006
|
msgstr ""
|
@@ -1118,9 +1029,8 @@ msgstr ""
|
|
1118
1029
|
msgid "Content View id"
|
1119
1030
|
msgstr ""
|
1120
1031
|
|
1121
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
1122
1032
|
msgid "Content Views"
|
1123
|
-
msgstr "
|
1033
|
+
msgstr ""
|
1124
1034
|
|
1125
1035
|
msgid "Content files to upload. Can be a single file or array of files."
|
1126
1036
|
msgstr ""
|
@@ -1128,6 +1038,9 @@ msgstr ""
|
|
1128
1038
|
msgid "Content host must be unregistered before performing this action."
|
1129
1039
|
msgstr ""
|
1130
1040
|
|
1041
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1042
|
+
msgstr ""
|
1043
|
+
|
1131
1044
|
msgid "Content source ID"
|
1132
1045
|
msgstr ""
|
1133
1046
|
|
@@ -1143,9 +1056,8 @@ msgstr ""
|
|
1143
1056
|
msgid "Content view ${name} created"
|
1144
1057
|
msgstr ""
|
1145
1058
|
|
1146
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1147
1059
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1148
|
-
msgstr "
|
1060
|
+
msgstr ""
|
1149
1061
|
|
1150
1062
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
1151
1063
|
msgstr ""
|
@@ -1162,6 +1074,9 @@ msgstr ""
|
|
1162
1074
|
msgid "Content view label"
|
1163
1075
|
msgstr ""
|
1164
1076
|
|
1077
|
+
msgid "Content view not provided in the metadata"
|
1078
|
+
msgstr ""
|
1079
|
+
|
1165
1080
|
msgid "Content view numeric identifier"
|
1166
1081
|
msgstr ""
|
1167
1082
|
|
@@ -1171,6 +1086,9 @@ msgstr ""
|
|
1171
1086
|
msgid "Content view version identifier"
|
1172
1087
|
msgstr ""
|
1173
1088
|
|
1089
|
+
msgid "Content view version import history identifier"
|
1090
|
+
msgstr ""
|
1091
|
+
|
1174
1092
|
msgid "Content_Host_Status"
|
1175
1093
|
msgstr ""
|
1176
1094
|
|
@@ -1186,20 +1104,17 @@ msgstr ""
|
|
1186
1104
|
msgid "Contract Number"
|
1187
1105
|
msgstr ""
|
1188
1106
|
|
1189
|
-
#, fuzzy
|
1190
1107
|
msgid "Copy an activation key"
|
1191
|
-
msgstr "
|
1108
|
+
msgstr ""
|
1192
1109
|
|
1193
1110
|
msgid "Copy version units to library"
|
1194
1111
|
msgstr ""
|
1195
1112
|
|
1196
|
-
#, fuzzy
|
1197
1113
|
msgid "Cores: %s"
|
1198
|
-
msgstr "
|
1114
|
+
msgstr ""
|
1199
1115
|
|
1200
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1201
1116
|
msgid "Could not delete organization '%s'."
|
1202
|
-
msgstr "
|
1117
|
+
msgstr ""
|
1203
1118
|
|
1204
1119
|
msgid "Could not find %{content} with id '%{id}' in repository."
|
1205
1120
|
msgstr ""
|
@@ -1219,9 +1134,6 @@ msgstr ""
|
|
1219
1134
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1220
1135
|
msgstr ""
|
1221
1136
|
|
1222
|
-
msgid "Could not find Repository for module %s."
|
1223
|
-
msgstr ""
|
1224
|
-
|
1225
1137
|
msgid "Could not find a host with id %s"
|
1226
1138
|
msgstr ""
|
1227
1139
|
|
@@ -1237,28 +1149,20 @@ msgstr ""
|
|
1237
1149
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1238
1150
|
msgstr ""
|
1239
1151
|
|
1240
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1241
|
-
msgstr ""
|
1242
|
-
|
1243
1152
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1244
1153
|
msgstr ""
|
1245
1154
|
|
1246
1155
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1247
1156
|
msgstr ""
|
1248
1157
|
|
1249
|
-
#, fuzzy
|
1250
1158
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1251
|
-
msgstr "'%s' id ಯನ್ನು ಹೊಂದಿದ ಉತ್ಪನ್ನವು ಕಂಡುಬಂದಿಲ್ಲ"
|
1252
|
-
|
1253
|
-
msgid "Couldn't find Organization '%s'."
|
1254
1159
|
msgstr ""
|
1255
1160
|
|
1256
|
-
msgid "Couldn't find
|
1161
|
+
msgid "Couldn't find Organization '%s'."
|
1257
1162
|
msgstr ""
|
1258
1163
|
|
1259
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1260
1164
|
msgid "Couldn't find activation key '%s'"
|
1261
|
-
msgstr "
|
1165
|
+
msgstr ""
|
1262
1166
|
|
1263
1167
|
msgid "Couldn't find activation key content view id '%s'"
|
1264
1168
|
msgstr ""
|
@@ -1266,9 +1170,8 @@ msgstr ""
|
|
1266
1170
|
msgid "Couldn't find activation key environment '%s'"
|
1267
1171
|
msgstr ""
|
1268
1172
|
|
1269
|
-
#, fuzzy
|
1270
1173
|
msgid "Couldn't find consumer '%s'"
|
1271
|
-
msgstr "
|
1174
|
+
msgstr ""
|
1272
1175
|
|
1273
1176
|
msgid "Couldn't find content host content view id '%s'"
|
1274
1177
|
msgstr ""
|
@@ -1276,28 +1179,20 @@ msgstr ""
|
|
1276
1179
|
msgid "Couldn't find content host environment '%s'"
|
1277
1180
|
msgstr ""
|
1278
1181
|
|
1279
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1280
1182
|
msgid "Couldn't find content view '%s'"
|
1281
|
-
msgstr "
|
1183
|
+
msgstr ""
|
1282
1184
|
|
1283
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1284
|
-
#, fuzzy
|
1285
1185
|
msgid "Couldn't find content view version '%s'"
|
1286
|
-
msgstr "
|
1186
|
+
msgstr ""
|
1287
1187
|
|
1288
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1289
|
-
#, fuzzy
|
1290
1188
|
msgid "Couldn't find content view versions '%s'"
|
1291
|
-
msgstr "
|
1189
|
+
msgstr ""
|
1292
1190
|
|
1293
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1294
1191
|
msgid "Couldn't find environment '%s'"
|
1295
|
-
msgstr "
|
1192
|
+
msgstr ""
|
1296
1193
|
|
1297
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1298
|
-
#, fuzzy
|
1299
1194
|
msgid "Couldn't find errata ids '%s'"
|
1300
|
-
msgstr "
|
1195
|
+
msgstr ""
|
1301
1196
|
|
1302
1197
|
msgid "Couldn't find host collection '%s'"
|
1303
1198
|
msgstr ""
|
@@ -1305,35 +1200,35 @@ msgstr ""
|
|
1305
1200
|
msgid "Couldn't find host with host id '%s'"
|
1306
1201
|
msgstr ""
|
1307
1202
|
|
1308
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1309
1203
|
msgid "Couldn't find organization '%s'"
|
1310
|
-
msgstr "
|
1204
|
+
msgstr ""
|
1311
1205
|
|
1312
|
-
#, fuzzy
|
1313
1206
|
msgid "Couldn't find prior-environment '%s'"
|
1314
|
-
msgstr "
|
1207
|
+
msgstr ""
|
1315
1208
|
|
1316
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1317
1209
|
msgid "Couldn't find product with id '%s'"
|
1318
|
-
msgstr "
|
1210
|
+
msgstr ""
|
1319
1211
|
|
1320
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1321
1212
|
msgid "Couldn't find repository '%s'"
|
1322
|
-
msgstr "
|
1213
|
+
msgstr ""
|
1323
1214
|
|
1324
1215
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1325
1216
|
msgstr ""
|
1326
1217
|
|
1327
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1328
1218
|
msgid "Couldn't find subject of synchronization"
|
1329
|
-
msgstr "
|
1219
|
+
msgstr ""
|
1330
1220
|
|
1331
1221
|
msgid "Count"
|
1332
1222
|
msgstr ""
|
1333
1223
|
|
1334
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1335
1224
|
msgid "Create"
|
1336
|
-
msgstr "
|
1225
|
+
msgstr ""
|
1226
|
+
|
1227
|
+
msgid "Create Export History"
|
1228
|
+
msgstr ""
|
1229
|
+
|
1230
|
+
msgid "Create Import History"
|
1231
|
+
msgstr ""
|
1337
1232
|
|
1338
1233
|
msgid "Create Package Group"
|
1339
1234
|
msgstr ""
|
@@ -1395,26 +1290,23 @@ msgstr ""
|
|
1395
1290
|
msgid "Current organization not set."
|
1396
1291
|
msgstr ""
|
1397
1292
|
|
1398
|
-
msgid "Custom"
|
1399
|
-
msgstr ""
|
1400
|
-
|
1401
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1402
1293
|
msgid "Custom Content Repositories"
|
1403
|
-
msgstr "
|
1294
|
+
msgstr ""
|
1404
1295
|
|
1405
1296
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1406
1297
|
msgstr ""
|
1407
1298
|
|
1408
|
-
#, fuzzy
|
1409
1299
|
msgid "Custom repositories cannot be disabled."
|
1410
|
-
msgstr "
|
1300
|
+
msgstr ""
|
1411
1301
|
|
1412
1302
|
msgid "Database connection"
|
1413
1303
|
msgstr ""
|
1414
1304
|
|
1415
|
-
|
1305
|
+
msgid "Date"
|
1306
|
+
msgstr ""
|
1307
|
+
|
1416
1308
|
msgid "Date format is incorrect."
|
1417
|
-
msgstr "
|
1309
|
+
msgstr ""
|
1418
1310
|
|
1419
1311
|
msgid "Days Remaining"
|
1420
1312
|
msgstr ""
|
@@ -1428,9 +1320,8 @@ msgstr ""
|
|
1428
1320
|
msgid "Deb Packages"
|
1429
1321
|
msgstr ""
|
1430
1322
|
|
1431
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1432
1323
|
msgid "Debug Certificate"
|
1433
|
-
msgstr "
|
1324
|
+
msgstr ""
|
1434
1325
|
|
1435
1326
|
msgid "Debug RPM"
|
1436
1327
|
msgstr ""
|
@@ -1444,15 +1335,9 @@ msgstr ""
|
|
1444
1335
|
msgid "Default HTTP proxy"
|
1445
1336
|
msgstr ""
|
1446
1337
|
|
1447
|
-
msgid "Default Location Puppet content"
|
1448
|
-
msgstr ""
|
1449
|
-
|
1450
1338
|
msgid "Default Location subscribed hosts"
|
1451
1339
|
msgstr ""
|
1452
1340
|
|
1453
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1454
|
-
msgstr ""
|
1455
|
-
|
1456
1341
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1457
1342
|
msgstr ""
|
1458
1343
|
|
@@ -1471,9 +1356,8 @@ msgstr ""
|
|
1471
1356
|
msgid "Default Smart Proxy download policy"
|
1472
1357
|
msgstr ""
|
1473
1358
|
|
1474
|
-
#, fuzzy
|
1475
1359
|
msgid "Default System SLA"
|
1476
|
-
msgstr "
|
1360
|
+
msgstr ""
|
1477
1361
|
|
1478
1362
|
msgid "Default content view versions cannot be promoted"
|
1479
1363
|
msgstr ""
|
@@ -1538,7 +1422,6 @@ msgstr ""
|
|
1538
1422
|
msgid "Default user data for new Operating Systems created from synced content"
|
1539
1423
|
msgstr ""
|
1540
1424
|
|
1541
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
1542
1425
|
msgid "Delete"
|
1543
1426
|
msgstr "ಅಳಿಸು"
|
1544
1427
|
|
@@ -1548,13 +1431,11 @@ msgstr ""
|
|
1548
1431
|
msgid "Delete Host upon unregister"
|
1549
1432
|
msgstr ""
|
1550
1433
|
|
1551
|
-
#, fuzzy
|
1552
1434
|
msgid "Delete Lifecycle Environment"
|
1553
|
-
msgstr "
|
1435
|
+
msgstr ""
|
1554
1436
|
|
1555
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
1556
1437
|
msgid "Delete Manifest"
|
1557
|
-
msgstr "
|
1438
|
+
msgstr ""
|
1558
1439
|
|
1559
1440
|
msgid "Delete Package Group"
|
1560
1441
|
msgstr ""
|
@@ -1589,9 +1470,8 @@ msgstr ""
|
|
1589
1470
|
msgid "Delete manifest from Red Hat provider"
|
1590
1471
|
msgstr ""
|
1591
1472
|
|
1592
|
-
#, fuzzy
|
1593
1473
|
msgid "Deleted consumer '%s'"
|
1594
|
-
msgstr "
|
1474
|
+
msgstr ""
|
1595
1475
|
|
1596
1476
|
msgid "Deleted from %{environment}"
|
1597
1477
|
msgstr ""
|
@@ -1600,7 +1480,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1600
1480
|
msgstr ""
|
1601
1481
|
|
1602
1482
|
msgid "Description"
|
1603
|
-
msgstr ""
|
1483
|
+
msgstr "ವಿವರಣೆ"
|
1604
1484
|
|
1605
1485
|
msgid "Description for the content view"
|
1606
1486
|
msgstr ""
|
@@ -1621,7 +1501,7 @@ msgid "Destination Server name"
|
|
1621
1501
|
msgstr ""
|
1622
1502
|
|
1623
1503
|
msgid "Destroy"
|
1624
|
-
msgstr ""
|
1504
|
+
msgstr "ನಾಶಪಡಿಸು"
|
1625
1505
|
|
1626
1506
|
msgid "Destroy Content Host"
|
1627
1507
|
msgstr ""
|
@@ -1663,7 +1543,7 @@ msgid "Destroy one or more repositories"
|
|
1663
1543
|
msgstr ""
|
1664
1544
|
|
1665
1545
|
msgid "Details"
|
1666
|
-
msgstr ""
|
1546
|
+
msgstr "ವಿವರಗಳು"
|
1667
1547
|
|
1668
1548
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1669
1549
|
msgstr ""
|
@@ -1719,15 +1599,14 @@ msgstr ""
|
|
1719
1599
|
msgid "Duplicate branches specified - %{branches}"
|
1720
1600
|
msgstr ""
|
1721
1601
|
|
1722
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1723
1602
|
msgid "Duration"
|
1724
|
-
msgstr "
|
1603
|
+
msgstr ""
|
1725
1604
|
|
1726
1605
|
msgid "ERRATA ADVISORY"
|
1727
1606
|
msgstr ""
|
1728
1607
|
|
1729
1608
|
msgid "Edit"
|
1730
|
-
msgstr ""
|
1609
|
+
msgstr "ಸಂಪಾದಿಸು"
|
1731
1610
|
|
1732
1611
|
msgid "Editing Entitlements"
|
1733
1612
|
msgstr ""
|
@@ -1735,13 +1614,11 @@ msgstr ""
|
|
1735
1614
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1736
1615
|
msgstr ""
|
1737
1616
|
|
1738
|
-
#, fuzzy
|
1739
1617
|
msgid "Either environments or versions must be specified."
|
1740
|
-
msgstr "
|
1618
|
+
msgstr ""
|
1741
1619
|
|
1742
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
1743
1620
|
msgid "Either organization ID or environment ID needs to be specified"
|
1744
|
-
msgstr "
|
1621
|
+
msgstr ""
|
1745
1622
|
|
1746
1623
|
msgid "Either packages or groups must be provided"
|
1747
1624
|
msgstr ""
|
@@ -1768,7 +1645,7 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1768
1645
|
msgstr ""
|
1769
1646
|
|
1770
1647
|
msgid "Enabled"
|
1771
|
-
msgstr ""
|
1648
|
+
msgstr "ಸಕ್ರಿಯಗೊಂಡಿದೆ"
|
1772
1649
|
|
1773
1650
|
msgid "Enabled Repositories"
|
1774
1651
|
msgstr ""
|
@@ -1782,54 +1659,44 @@ msgstr ""
|
|
1782
1659
|
msgid "Ends"
|
1783
1660
|
msgstr ""
|
1784
1661
|
|
1785
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1786
1662
|
msgid "Enhancement"
|
1787
|
-
msgstr "
|
1663
|
+
msgstr ""
|
1788
1664
|
|
1789
1665
|
msgid "Entitlements"
|
1790
1666
|
msgstr ""
|
1791
1667
|
|
1792
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author shanky
|
1793
1668
|
msgid "Environment"
|
1794
1669
|
msgstr "ಪರಿಸರ"
|
1795
1670
|
|
1796
1671
|
msgid "Environment IDs"
|
1797
1672
|
msgstr ""
|
1798
1673
|
|
1799
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1800
1674
|
msgid "Environment cannot be in its own promotion path"
|
1801
|
-
msgstr "
|
1675
|
+
msgstr ""
|
1802
1676
|
|
1803
1677
|
msgid "Environment identifier"
|
1804
1678
|
msgstr ""
|
1805
1679
|
|
1806
1680
|
msgid "Environments"
|
1807
|
-
msgstr ""
|
1681
|
+
msgstr "ಪರಿಸರಗಳು"
|
1808
1682
|
|
1809
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1810
1683
|
msgid "Errata"
|
1811
|
-
msgstr "
|
1684
|
+
msgstr ""
|
1812
1685
|
|
1813
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1814
|
-
#, fuzzy
|
1815
1686
|
msgid "Errata ID"
|
1816
|
-
msgstr "
|
1687
|
+
msgstr ""
|
1817
1688
|
|
1818
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1819
1689
|
msgid "Errata Install"
|
1820
|
-
msgstr "
|
1690
|
+
msgstr ""
|
1821
1691
|
|
1822
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1823
1692
|
msgid "Errata Install scheduled by %s"
|
1824
|
-
msgstr "
|
1693
|
+
msgstr ""
|
1825
1694
|
|
1826
1695
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1827
1696
|
msgstr ""
|
1828
1697
|
|
1829
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1830
|
-
#, fuzzy
|
1831
1698
|
msgid "Errata mail"
|
1832
|
-
msgstr "
|
1699
|
+
msgstr ""
|
1833
1700
|
|
1834
1701
|
msgid "Errata to exclusively include in the action"
|
1835
1702
|
msgstr ""
|
@@ -1837,28 +1704,21 @@ msgstr ""
|
|
1837
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."
|
1838
1705
|
msgstr ""
|
1839
1706
|
|
1840
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1841
|
-
#, fuzzy
|
1842
1707
|
msgid "Erratum"
|
1843
|
-
msgstr "
|
1708
|
+
msgstr ""
|
1844
1709
|
|
1845
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
1846
1710
|
msgid "Erratum Install Canceled"
|
1847
|
-
msgstr "
|
1711
|
+
msgstr ""
|
1848
1712
|
|
1849
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1850
1713
|
msgid "Erratum Install Complete"
|
1851
|
-
msgstr "
|
1714
|
+
msgstr ""
|
1852
1715
|
|
1853
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1854
1716
|
msgid "Erratum Install Failed"
|
1855
|
-
msgstr "
|
1717
|
+
msgstr ""
|
1856
1718
|
|
1857
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1858
1719
|
msgid "Erratum Install Timed Out"
|
1859
|
-
msgstr "
|
1720
|
+
msgstr ""
|
1860
1721
|
|
1861
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1862
1722
|
msgid "Error"
|
1863
1723
|
msgstr "ದೋಷ"
|
1864
1724
|
|
@@ -1877,12 +1737,17 @@ msgstr ""
|
|
1877
1737
|
msgid "Exceeds available quantity"
|
1878
1738
|
msgstr ""
|
1879
1739
|
|
1740
|
+
msgid "Exclude"
|
1741
|
+
msgstr ""
|
1742
|
+
|
1743
|
+
msgid "Excluded"
|
1744
|
+
msgstr ""
|
1745
|
+
|
1880
1746
|
msgid "Exit"
|
1881
1747
|
msgstr ""
|
1882
1748
|
|
1883
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1884
1749
|
msgid "Expand All"
|
1885
|
-
msgstr "
|
1750
|
+
msgstr ""
|
1886
1751
|
|
1887
1752
|
msgid "Expire soon days"
|
1888
1753
|
msgstr ""
|
@@ -1899,9 +1764,6 @@ msgstr ""
|
|
1899
1764
|
msgid "Export Types"
|
1900
1765
|
msgstr ""
|
1901
1766
|
|
1902
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1903
|
-
msgstr ""
|
1904
|
-
|
1905
1767
|
msgid "Export a repository"
|
1906
1768
|
msgstr ""
|
1907
1769
|
|
@@ -1914,17 +1776,12 @@ msgstr ""
|
|
1914
1776
|
msgid "Export to ISO format"
|
1915
1777
|
msgstr ""
|
1916
1778
|
|
1917
|
-
msgid "Export to ISO format."
|
1918
|
-
msgstr ""
|
1919
|
-
|
1920
1779
|
msgid "Exported version"
|
1921
1780
|
msgstr ""
|
1922
1781
|
|
1923
|
-
#, fuzzy
|
1924
1782
|
msgid "Facts successfully updated."
|
1925
|
-
msgstr "
|
1783
|
+
msgstr ""
|
1926
1784
|
|
1927
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
1928
1785
|
msgid "Failed"
|
1929
1786
|
msgstr "ವಿಫಲಗೊಂಡಿದೆ"
|
1930
1787
|
|
@@ -1934,11 +1791,6 @@ msgstr ""
|
|
1934
1791
|
msgid "Failed to delete %{host}: %{errors}"
|
1935
1792
|
msgstr ""
|
1936
1793
|
|
1937
|
-
msgid "Failed to download %s module."
|
1938
|
-
msgid_plural "Failed to download %s modules."
|
1939
|
-
msgstr[0] ""
|
1940
|
-
msgstr[1] ""
|
1941
|
-
|
1942
1794
|
msgid "Failed to download %s package."
|
1943
1795
|
msgid_plural "Failed to download %s packages."
|
1944
1796
|
msgstr[0] ""
|
@@ -2016,9 +1868,6 @@ msgstr ""
|
|
2016
1868
|
msgid "Filter versions by environment"
|
2017
1869
|
msgstr ""
|
2018
1870
|
|
2019
|
-
msgid "Filter versions by puppet module"
|
2020
|
-
msgstr ""
|
2021
|
-
|
2022
1871
|
msgid "Filter versions by version number"
|
2023
1872
|
msgstr ""
|
2024
1873
|
|
@@ -2029,7 +1878,7 @@ msgid "Filtered index content"
|
|
2029
1878
|
msgstr ""
|
2030
1879
|
|
2031
1880
|
msgid "Filters"
|
2032
|
-
msgstr ""
|
1881
|
+
msgstr "ಫಿಲ್ಟರುಗಳು"
|
2033
1882
|
|
2034
1883
|
msgid "Finish action timeout"
|
2035
1884
|
msgstr ""
|
@@ -2040,6 +1889,9 @@ msgstr ""
|
|
2040
1889
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2041
1890
|
msgstr ""
|
2042
1891
|
|
1892
|
+
msgid "Force"
|
1893
|
+
msgstr ""
|
1894
|
+
|
2043
1895
|
msgid ""
|
2044
1896
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
2045
1897
|
" On Demand download policy) are skipped."
|
@@ -2069,9 +1921,8 @@ msgstr ""
|
|
2069
1921
|
msgid "GPG Key URL"
|
2070
1922
|
msgstr ""
|
2071
1923
|
|
2072
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
2073
1924
|
msgid "Generate and Download"
|
2074
|
-
msgstr "
|
1925
|
+
msgstr ""
|
2075
1926
|
|
2076
1927
|
msgid "Generate host applicability"
|
2077
1928
|
msgstr ""
|
@@ -2082,6 +1933,9 @@ msgstr ""
|
|
2082
1933
|
msgid "Get all content available, not just that provided by subscriptions"
|
2083
1934
|
msgstr ""
|
2084
1935
|
|
1936
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1937
|
+
msgstr ""
|
1938
|
+
|
2085
1939
|
msgid "Get content and overrides for the host"
|
2086
1940
|
msgstr ""
|
2087
1941
|
|
@@ -2094,12 +1948,6 @@ msgstr ""
|
|
2094
1948
|
msgid "Get list of available repositories for the repository set"
|
2095
1949
|
msgstr ""
|
2096
1950
|
|
2097
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
2098
|
-
msgstr ""
|
2099
|
-
|
2100
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
2101
|
-
msgstr ""
|
2102
|
-
|
2103
1951
|
msgid "Get status of repo synchronisation for given product"
|
2104
1952
|
msgstr ""
|
2105
1953
|
|
@@ -2128,9 +1976,11 @@ msgid "Has to be > 0"
|
|
2128
1976
|
msgstr ""
|
2129
1977
|
|
2130
1978
|
msgid "History"
|
1979
|
+
msgstr "ಇತಿಹಾಸ"
|
1980
|
+
|
1981
|
+
msgid "History will appear here when the content view is published or promoted."
|
2131
1982
|
msgstr ""
|
2132
1983
|
|
2133
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
2134
1984
|
msgid "Host"
|
2135
1985
|
msgstr "ಆತಿಥೇಯ"
|
2136
1986
|
|
@@ -2218,6 +2068,9 @@ msgstr ""
|
|
2218
2068
|
msgid "Hosts with Installable Errata"
|
2219
2069
|
msgstr ""
|
2220
2070
|
|
2071
|
+
msgid "Hosts: "
|
2072
|
+
msgstr ""
|
2073
|
+
|
2221
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."
|
2222
2075
|
msgstr ""
|
2223
2076
|
|
@@ -2287,9 +2140,8 @@ msgstr ""
|
|
2287
2140
|
msgid "ID of the sync plan"
|
2288
2141
|
msgstr ""
|
2289
2142
|
|
2290
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
2291
2143
|
msgid "ID: %s doesn't exist "
|
2292
|
-
msgstr "
|
2144
|
+
msgstr ""
|
2293
2145
|
|
2294
2146
|
msgid "ISO export must be enabled when specifying ISO size"
|
2295
2147
|
msgstr ""
|
@@ -2372,7 +2224,7 @@ msgstr ""
|
|
2372
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."
|
2373
2225
|
msgstr ""
|
2374
2226
|
|
2375
|
-
msgid "If set to true, use
|
2227
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2376
2228
|
msgstr ""
|
2377
2229
|
|
2378
2230
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2399,6 +2251,15 @@ msgstr ""
|
|
2399
2251
|
msgid "Ignorable content can be only set for Yum repositories."
|
2400
2252
|
msgstr ""
|
2401
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
|
+
|
2402
2263
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2403
2264
|
msgstr ""
|
2404
2265
|
|
@@ -2406,7 +2267,7 @@ msgid "Immediate"
|
|
2406
2267
|
msgstr ""
|
2407
2268
|
|
2408
2269
|
msgid "Import"
|
2409
|
-
msgstr ""
|
2270
|
+
msgstr "ಆಮದು ಮಾಡಿಕೊ"
|
2410
2271
|
|
2411
2272
|
msgid "Import Content View Version"
|
2412
2273
|
msgstr ""
|
@@ -2414,9 +2275,8 @@ msgstr ""
|
|
2414
2275
|
msgid "Import Default Content View"
|
2415
2276
|
msgstr ""
|
2416
2277
|
|
2417
|
-
#, fuzzy
|
2418
2278
|
msgid "Import Manifest"
|
2419
|
-
msgstr "
|
2279
|
+
msgstr ""
|
2420
2280
|
|
2421
2281
|
msgid "Import New Manifest"
|
2422
2282
|
msgstr ""
|
@@ -2427,6 +2287,9 @@ msgstr ""
|
|
2427
2287
|
msgid "Import Puppet classes"
|
2428
2288
|
msgstr ""
|
2429
2289
|
|
2290
|
+
msgid "Import Types"
|
2291
|
+
msgstr ""
|
2292
|
+
|
2430
2293
|
msgid "Import a Manifest"
|
2431
2294
|
msgstr ""
|
2432
2295
|
|
@@ -2445,9 +2308,8 @@ msgstr ""
|
|
2445
2308
|
msgid "Import a content view version to the library"
|
2446
2309
|
msgstr ""
|
2447
2310
|
|
2448
|
-
#, fuzzy
|
2449
2311
|
msgid "Import facts"
|
2450
|
-
msgstr "
|
2312
|
+
msgstr ""
|
2451
2313
|
|
2452
2314
|
msgid "Import uploads into a repository"
|
2453
2315
|
msgstr ""
|
@@ -2458,15 +2320,21 @@ msgstr ""
|
|
2458
2320
|
msgid "Import-only content views can not be published directly"
|
2459
2321
|
msgstr ""
|
2460
2322
|
|
2461
|
-
msgid "Import-only content views will be available in a future version."
|
2462
|
-
msgstr ""
|
2463
|
-
|
2464
2323
|
msgid "Importing manifest into '%{subject}' failed."
|
2465
2324
|
msgstr ""
|
2466
2325
|
|
2467
2326
|
msgid "In Progress"
|
2468
2327
|
msgstr ""
|
2469
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
|
+
|
2470
2338
|
msgid "Inclusion type"
|
2471
2339
|
msgstr ""
|
2472
2340
|
|
@@ -2491,9 +2359,8 @@ msgstr ""
|
|
2491
2359
|
msgid "Index content"
|
2492
2360
|
msgstr ""
|
2493
2361
|
|
2494
|
-
#, fuzzy
|
2495
2362
|
msgid "Index errata"
|
2496
|
-
msgstr "
|
2363
|
+
msgstr ""
|
2497
2364
|
|
2498
2365
|
msgid "Index module streams"
|
2499
2366
|
msgstr ""
|
@@ -2516,29 +2383,26 @@ msgstr ""
|
|
2516
2383
|
msgid "Install Applicable Errata on %s"
|
2517
2384
|
msgstr ""
|
2518
2385
|
|
2519
|
-
msgid "Install content on one or more hosts"
|
2386
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2520
2387
|
msgstr ""
|
2521
2388
|
|
2522
2389
|
msgid "Install errata via Katello interface"
|
2523
2390
|
msgstr ""
|
2524
2391
|
|
2525
|
-
#, fuzzy
|
2526
2392
|
msgid "Install erratum"
|
2527
|
-
msgstr "
|
2393
|
+
msgstr ""
|
2528
2394
|
|
2529
2395
|
msgid "Install erratum for %s"
|
2530
2396
|
msgstr ""
|
2531
2397
|
|
2532
|
-
#, fuzzy
|
2533
2398
|
msgid "Install package"
|
2534
|
-
msgstr "
|
2399
|
+
msgstr ""
|
2535
2400
|
|
2536
2401
|
msgid "Install package for %s"
|
2537
2402
|
msgstr ""
|
2538
2403
|
|
2539
|
-
#, fuzzy
|
2540
2404
|
msgid "Install package group"
|
2541
|
-
msgstr "
|
2405
|
+
msgstr ""
|
2542
2406
|
|
2543
2407
|
msgid "Install package group via Katello interface"
|
2544
2408
|
msgstr ""
|
@@ -2546,7 +2410,7 @@ msgstr ""
|
|
2546
2410
|
msgid "Install package via Katello interface"
|
2547
2411
|
msgstr ""
|
2548
2412
|
|
2549
|
-
msgid "Install packages remotely"
|
2413
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2550
2414
|
msgstr ""
|
2551
2415
|
|
2552
2416
|
msgid "Installable errata from Content View"
|
@@ -2561,21 +2425,17 @@ msgstr ""
|
|
2561
2425
|
msgid "Installation of package(s) requested: %{packages}"
|
2562
2426
|
msgstr ""
|
2563
2427
|
|
2564
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
2565
2428
|
msgid "Installed Packages"
|
2566
|
-
msgstr "
|
2429
|
+
msgstr ""
|
2567
2430
|
|
2568
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2569
2431
|
msgid "Installing Erratum..."
|
2570
|
-
msgstr "
|
2432
|
+
msgstr ""
|
2571
2433
|
|
2572
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2573
2434
|
msgid "Installing Package Group..."
|
2574
|
-
msgstr "
|
2435
|
+
msgstr ""
|
2575
2436
|
|
2576
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2577
2437
|
msgid "Installing Package..."
|
2578
|
-
msgstr "
|
2438
|
+
msgstr ""
|
2579
2439
|
|
2580
2440
|
msgid "Instance update"
|
2581
2441
|
msgstr ""
|
@@ -2601,13 +2461,11 @@ msgstr ""
|
|
2601
2461
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2602
2462
|
msgstr ""
|
2603
2463
|
|
2604
|
-
#, fuzzy
|
2605
2464
|
msgid "Invalid content label: %s"
|
2606
|
-
msgstr "
|
2465
|
+
msgstr ""
|
2607
2466
|
|
2608
|
-
#, fuzzy
|
2609
2467
|
msgid "Invalid content type %s"
|
2610
|
-
msgstr "
|
2468
|
+
msgstr ""
|
2611
2469
|
|
2612
2470
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2613
2471
|
msgstr ""
|
@@ -2624,9 +2482,8 @@ msgstr ""
|
|
2624
2482
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2625
2483
|
msgstr ""
|
2626
2484
|
|
2627
|
-
#, fuzzy
|
2628
2485
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2629
|
-
msgstr "
|
2486
|
+
msgstr ""
|
2630
2487
|
|
2631
2488
|
msgid "Invalid event_type %s"
|
2632
2489
|
msgstr ""
|
@@ -2634,13 +2491,11 @@ msgstr ""
|
|
2634
2491
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2635
2492
|
msgstr ""
|
2636
2493
|
|
2637
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2638
2494
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2639
|
-
msgstr "
|
2495
|
+
msgstr ""
|
2640
2496
|
|
2641
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
2642
2497
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2643
|
-
msgstr "
|
2498
|
+
msgstr ""
|
2644
2499
|
|
2645
2500
|
msgid "Invalid params provided - content_type must be one of %s"
|
2646
2501
|
msgstr ""
|
@@ -2648,20 +2503,6 @@ msgstr ""
|
|
2648
2503
|
msgid "Invalid params provided - date_type must be one of %s"
|
2649
2504
|
msgstr ""
|
2650
2505
|
|
2651
|
-
msgid ""
|
2652
|
-
"Invalid puppet module parameters specified. \\\n"
|
2653
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2654
|
-
msgstr ""
|
2655
|
-
|
2656
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2657
|
-
msgstr ""
|
2658
|
-
|
2659
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2660
|
-
msgstr ""
|
2661
|
-
|
2662
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2663
|
-
msgstr ""
|
2664
|
-
|
2665
2506
|
msgid "Invalid value specified for Container Image repositories."
|
2666
2507
|
msgstr ""
|
2667
2508
|
|
@@ -2671,9 +2512,6 @@ msgstr ""
|
|
2671
2512
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2672
2513
|
msgstr ""
|
2673
2514
|
|
2674
|
-
msgid "Katello"
|
2675
|
-
msgstr ""
|
2676
|
-
|
2677
2515
|
msgid "Katello ID of local pool to update"
|
2678
2516
|
msgstr ""
|
2679
2517
|
|
@@ -2728,15 +2566,23 @@ msgstr ""
|
|
2728
2566
|
msgid "Last published"
|
2729
2567
|
msgstr ""
|
2730
2568
|
|
2569
|
+
msgid "Last task"
|
2570
|
+
msgstr ""
|
2571
|
+
|
2572
|
+
msgid "Latest (automatically updates)"
|
2573
|
+
msgstr ""
|
2574
|
+
|
2731
2575
|
msgid "Latest Errata"
|
2732
2576
|
msgstr ""
|
2733
2577
|
|
2578
|
+
msgid "Latest version"
|
2579
|
+
msgstr ""
|
2580
|
+
|
2734
2581
|
msgid "Learn more about adding Subscription Manifests"
|
2735
2582
|
msgstr ""
|
2736
2583
|
|
2737
|
-
#, fuzzy
|
2738
2584
|
msgid "Library lifecycle environments may not be deleted."
|
2739
|
-
msgstr "
|
2585
|
+
msgstr ""
|
2740
2586
|
|
2741
2587
|
msgid "Library repository id to restrict comparisons to"
|
2742
2588
|
msgstr ""
|
@@ -2756,9 +2602,11 @@ msgstr ""
|
|
2756
2602
|
msgid "Lifecycle Environment ID"
|
2757
2603
|
msgstr ""
|
2758
2604
|
|
2759
|
-
#, fuzzy
|
2760
2605
|
msgid "Lifecycle Environments"
|
2761
|
-
msgstr "
|
2606
|
+
msgstr ""
|
2607
|
+
|
2608
|
+
msgid "Lifecycle environment"
|
2609
|
+
msgstr ""
|
2762
2610
|
|
2763
2611
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2764
2612
|
msgstr ""
|
@@ -2766,6 +2614,9 @@ msgstr ""
|
|
2766
2614
|
msgid "Lifecycle environment ID"
|
2767
2615
|
msgstr ""
|
2768
2616
|
|
2617
|
+
msgid "Lifecycle environment for the host."
|
2618
|
+
msgstr ""
|
2619
|
+
|
2769
2620
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2770
2621
|
msgstr ""
|
2771
2622
|
|
@@ -2775,6 +2626,9 @@ msgstr ""
|
|
2775
2626
|
msgid "Limit content to just that available in the activation key's content view version"
|
2776
2627
|
msgstr ""
|
2777
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
|
+
|
2778
2632
|
msgid "Limit content to just that available in the host's content view version"
|
2779
2633
|
msgstr ""
|
2780
2634
|
|
@@ -2811,9 +2665,6 @@ msgstr ""
|
|
2811
2665
|
msgid "List components attached to this content view"
|
2812
2666
|
msgstr ""
|
2813
2667
|
|
2814
|
-
msgid "List content view puppet modules"
|
2815
|
-
msgstr ""
|
2816
|
-
|
2817
2668
|
msgid "List content view versions"
|
2818
2669
|
msgstr ""
|
2819
2670
|
|
@@ -2853,6 +2704,9 @@ msgstr ""
|
|
2853
2704
|
msgid "List host collections within an organization"
|
2854
2705
|
msgstr ""
|
2855
2706
|
|
2707
|
+
msgid "List import histories"
|
2708
|
+
msgstr ""
|
2709
|
+
|
2856
2710
|
msgid "List module streams available to the host"
|
2857
2711
|
msgstr ""
|
2858
2712
|
|
@@ -3001,7 +2855,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
3001
2855
|
msgstr ""
|
3002
2856
|
|
3003
2857
|
msgid "Loading"
|
3004
|
-
msgstr ""
|
2858
|
+
msgstr "ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
|
3005
2859
|
|
3006
2860
|
msgid "Make copy of a content view"
|
3007
2861
|
msgstr ""
|
@@ -3069,10 +2923,12 @@ msgstr ""
|
|
3069
2923
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
3070
2924
|
msgstr ""
|
3071
2925
|
|
2926
|
+
msgid "Media Selection"
|
2927
|
+
msgstr ""
|
2928
|
+
|
3072
2929
|
msgid "Medium IDs"
|
3073
2930
|
msgstr ""
|
3074
2931
|
|
3075
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3076
2932
|
msgid "Message"
|
3077
2933
|
msgstr "ಸಂದೇಶ"
|
3078
2934
|
|
@@ -3106,9 +2962,15 @@ msgstr ""
|
|
3106
2962
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
3107
2963
|
msgstr ""
|
3108
2964
|
|
2965
|
+
msgid "N/A"
|
2966
|
+
msgstr ""
|
2967
|
+
|
3109
2968
|
msgid "NA"
|
3110
2969
|
msgstr ""
|
3111
2970
|
|
2971
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2972
|
+
msgstr ""
|
2973
|
+
|
3112
2974
|
msgid ""
|
3113
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"
|
3114
2976
|
" %{repos}"
|
@@ -3149,15 +3011,11 @@ msgstr ""
|
|
3149
3011
|
msgid "Nest"
|
3150
3012
|
msgstr ""
|
3151
3013
|
|
3152
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3153
|
-
#, fuzzy
|
3154
3014
|
msgid "Never Synced"
|
3155
|
-
msgstr "
|
3015
|
+
msgstr ""
|
3156
3016
|
|
3157
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3158
|
-
#, fuzzy
|
3159
3017
|
msgid "New Errata"
|
3160
|
-
msgstr "
|
3018
|
+
msgstr ""
|
3161
3019
|
|
3162
3020
|
msgid "New Files: %s"
|
3163
3021
|
msgstr ""
|
@@ -3171,10 +3029,8 @@ msgstr ""
|
|
3171
3029
|
msgid "New host collection name"
|
3172
3030
|
msgstr ""
|
3173
3031
|
|
3174
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3175
|
-
#, fuzzy
|
3176
3032
|
msgid "New name cannot be blank"
|
3177
|
-
msgstr "
|
3033
|
+
msgstr ""
|
3178
3034
|
|
3179
3035
|
msgid "New name for the content view"
|
3180
3036
|
msgstr ""
|
@@ -3182,25 +3038,35 @@ msgstr ""
|
|
3182
3038
|
msgid "New packages: %{count} (%{size})."
|
3183
3039
|
msgstr ""
|
3184
3040
|
|
3041
|
+
msgid "New version is available: Version ${latestVersion}"
|
3042
|
+
msgstr ""
|
3043
|
+
|
3185
3044
|
msgid "No"
|
3186
3045
|
msgstr ""
|
3187
3046
|
|
3188
|
-
|
3047
|
+
msgid "No Activation Keys selected"
|
3048
|
+
msgstr ""
|
3049
|
+
|
3050
|
+
msgid "No Activation keys to select"
|
3051
|
+
msgstr ""
|
3052
|
+
|
3189
3053
|
msgid "No Content View"
|
3190
|
-
msgstr "
|
3054
|
+
msgstr ""
|
3191
3055
|
|
3192
3056
|
msgid "No Content found"
|
3193
3057
|
msgstr ""
|
3194
3058
|
|
3059
|
+
msgid "No Lifecycle environment to select"
|
3060
|
+
msgstr ""
|
3061
|
+
|
3195
3062
|
msgid "No Manifest Uploaded"
|
3196
3063
|
msgstr ""
|
3197
3064
|
|
3198
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."
|
3199
3066
|
msgstr ""
|
3200
3067
|
|
3201
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3202
3068
|
msgid "No Service Level Preference"
|
3203
|
-
msgstr "
|
3069
|
+
msgstr ""
|
3204
3070
|
|
3205
3071
|
msgid "No URL found for a container registry. Please check the configuration."
|
3206
3072
|
msgstr ""
|
@@ -3214,9 +3080,8 @@ msgstr ""
|
|
3214
3080
|
msgid "No artifacts to show"
|
3215
3081
|
msgstr ""
|
3216
3082
|
|
3217
|
-
#, fuzzy
|
3218
3083
|
msgid "No content has been provided."
|
3219
|
-
msgstr "
|
3084
|
+
msgstr ""
|
3220
3085
|
|
3221
3086
|
msgid "No content ids provided"
|
3222
3087
|
msgstr ""
|
@@ -3224,17 +3089,29 @@ msgstr ""
|
|
3224
3089
|
msgid "No content view history events found."
|
3225
3090
|
msgstr ""
|
3226
3091
|
|
3092
|
+
msgid "No content views belong to ${label}"
|
3093
|
+
msgstr ""
|
3094
|
+
|
3227
3095
|
msgid "No content_view_version_ids provided"
|
3228
3096
|
msgstr ""
|
3229
3097
|
|
3098
|
+
msgid "No description"
|
3099
|
+
msgstr ""
|
3100
|
+
|
3230
3101
|
msgid "No enabled repositories match your search criteria."
|
3231
3102
|
msgstr ""
|
3232
3103
|
|
3104
|
+
msgid "No environment"
|
3105
|
+
msgstr ""
|
3106
|
+
|
3107
|
+
msgid "No environments"
|
3108
|
+
msgstr ""
|
3109
|
+
|
3233
3110
|
msgid "No errata has been specified."
|
3234
3111
|
msgstr ""
|
3235
3112
|
|
3236
3113
|
msgid "No errors"
|
3237
|
-
msgstr "
|
3114
|
+
msgstr ""
|
3238
3115
|
|
3239
3116
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3240
3117
|
msgstr ""
|
@@ -3263,24 +3140,35 @@ msgstr ""
|
|
3263
3140
|
msgid "No matching filters found"
|
3264
3141
|
msgstr ""
|
3265
3142
|
|
3143
|
+
msgid "No matching history record found"
|
3144
|
+
msgstr ""
|
3145
|
+
|
3146
|
+
msgid "No matching package groups found."
|
3147
|
+
msgstr ""
|
3148
|
+
|
3266
3149
|
msgid "No matching repositories found"
|
3267
3150
|
msgstr ""
|
3268
3151
|
|
3269
|
-
|
3152
|
+
msgid "No matching rules found."
|
3153
|
+
msgstr ""
|
3154
|
+
|
3155
|
+
msgid "No matching version found"
|
3156
|
+
msgstr ""
|
3157
|
+
|
3270
3158
|
msgid "No new packages installed"
|
3271
|
-
msgstr "
|
3159
|
+
msgstr ""
|
3272
3160
|
|
3273
|
-
#, fuzzy
|
3274
3161
|
msgid "No new packages."
|
3275
|
-
msgstr "
|
3162
|
+
msgstr ""
|
3163
|
+
|
3164
|
+
msgid "No package groups have been added to this filter."
|
3165
|
+
msgstr ""
|
3276
3166
|
|
3277
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3278
3167
|
msgid "No packages removed"
|
3279
|
-
msgstr "
|
3168
|
+
msgstr ""
|
3280
3169
|
|
3281
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3282
3170
|
msgid "No packages updated"
|
3283
|
-
msgstr "
|
3171
|
+
msgstr ""
|
3284
3172
|
|
3285
3173
|
msgid "No pool IDs were provided."
|
3286
3174
|
msgstr ""
|
@@ -3321,12 +3209,14 @@ msgstr ""
|
|
3321
3209
|
msgid "No repository sets match your search criteria."
|
3322
3210
|
msgstr ""
|
3323
3211
|
|
3212
|
+
msgid "No rules have been added to this filter."
|
3213
|
+
msgstr ""
|
3214
|
+
|
3324
3215
|
msgid "No services defined, is this class extended?"
|
3325
3216
|
msgstr ""
|
3326
3217
|
|
3327
|
-
#, fuzzy
|
3328
3218
|
msgid "No start time currently available."
|
3329
|
-
msgstr "
|
3219
|
+
msgstr ""
|
3330
3220
|
|
3331
3221
|
msgid "No subscriptions match your search criteria."
|
3332
3222
|
msgstr ""
|
@@ -3343,11 +3233,9 @@ msgstr ""
|
|
3343
3233
|
msgid "Non-security errata installable"
|
3344
3234
|
msgstr ""
|
3345
3235
|
|
3346
|
-
#, fuzzy
|
3347
3236
|
msgid "Non-system event"
|
3348
|
-
msgstr "
|
3237
|
+
msgstr ""
|
3349
3238
|
|
3350
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3351
3239
|
msgid "None"
|
3352
3240
|
msgstr "ಯಾವುದೂ ಇಲ್ಲ"
|
3353
3241
|
|
@@ -3360,12 +3248,18 @@ msgstr ""
|
|
3360
3248
|
msgid "Not a number"
|
3361
3249
|
msgstr ""
|
3362
3250
|
|
3251
|
+
msgid "Not added"
|
3252
|
+
msgstr ""
|
3253
|
+
|
3363
3254
|
msgid "Not all necessary pulp workers running at %s."
|
3364
3255
|
msgstr ""
|
3365
3256
|
|
3366
3257
|
msgid "Not running"
|
3367
3258
|
msgstr ""
|
3368
3259
|
|
3260
|
+
msgid "Not yet published"
|
3261
|
+
msgstr ""
|
3262
|
+
|
3369
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."
|
3370
3264
|
msgstr ""
|
3371
3265
|
|
@@ -3411,9 +3305,8 @@ msgstr ""
|
|
3411
3305
|
msgid "On-disk location for pulp 3 exported repositories"
|
3412
3306
|
msgstr ""
|
3413
3307
|
|
3414
|
-
#, fuzzy
|
3415
3308
|
msgid "One of parameters [ %s ] required but not specified."
|
3416
|
-
msgstr "
|
3309
|
+
msgstr ""
|
3417
3310
|
|
3418
3311
|
msgid "One of yum or docker"
|
3419
3312
|
msgstr ""
|
@@ -3424,16 +3317,14 @@ msgstr ""
|
|
3424
3317
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3425
3318
|
msgstr ""
|
3426
3319
|
|
3427
|
-
#, fuzzy
|
3428
3320
|
msgid "One or more packages failed to sync properly."
|
3429
|
-
msgstr "
|
3321
|
+
msgstr ""
|
3430
3322
|
|
3431
3323
|
msgid "One or more processes require restarting"
|
3432
3324
|
msgstr ""
|
3433
3325
|
|
3434
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3435
3326
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3436
|
-
msgstr "
|
3327
|
+
msgstr ""
|
3437
3328
|
|
3438
3329
|
msgid "Only returns id and quantity fields"
|
3439
3330
|
msgstr ""
|
@@ -3444,10 +3335,6 @@ msgstr ""
|
|
3444
3335
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3445
3336
|
msgstr ""
|
3446
3337
|
|
3447
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3448
|
-
msgstr ""
|
3449
|
-
|
3450
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
3451
3338
|
msgid "Organization"
|
3452
3339
|
msgstr "ಸಂಸ್ಥೆ"
|
3453
3340
|
|
@@ -3460,9 +3347,11 @@ msgstr ""
|
|
3460
3347
|
msgid "Organization ID is required"
|
3461
3348
|
msgstr ""
|
3462
3349
|
|
3463
|
-
|
3350
|
+
msgid "Organization Information not provided."
|
3351
|
+
msgstr ""
|
3352
|
+
|
3464
3353
|
msgid "Organization cannot be blank."
|
3465
|
-
msgstr "
|
3354
|
+
msgstr ""
|
3466
3355
|
|
3467
3356
|
msgid "Organization id"
|
3468
3357
|
msgstr ""
|
@@ -3476,13 +3365,11 @@ msgstr ""
|
|
3476
3365
|
msgid "Organization not found"
|
3477
3366
|
msgstr ""
|
3478
3367
|
|
3479
|
-
#, fuzzy
|
3480
3368
|
msgid "Organization required"
|
3481
|
-
msgstr "
|
3369
|
+
msgstr ""
|
3482
3370
|
|
3483
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3484
3371
|
msgid "Other"
|
3485
|
-
msgstr "
|
3372
|
+
msgstr ""
|
3486
3373
|
|
3487
3374
|
msgid "Override content for activation_key"
|
3488
3375
|
msgstr ""
|
@@ -3505,99 +3392,74 @@ msgstr ""
|
|
3505
3392
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3506
3393
|
msgstr ""
|
3507
3394
|
|
3508
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3509
|
-
#, fuzzy
|
3510
3395
|
msgid "Package"
|
3511
|
-
msgstr "
|
3396
|
+
msgstr ""
|
3512
3397
|
|
3513
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3514
|
-
#, fuzzy
|
3515
3398
|
msgid "Package Group"
|
3516
|
-
msgstr "
|
3399
|
+
msgstr ""
|
3517
3400
|
|
3518
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3519
3401
|
msgid "Package Group Install"
|
3520
|
-
msgstr "
|
3402
|
+
msgstr ""
|
3521
3403
|
|
3522
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3523
3404
|
msgid "Package Group Install Canceled"
|
3524
|
-
msgstr "
|
3405
|
+
msgstr ""
|
3525
3406
|
|
3526
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3527
3407
|
msgid "Package Group Install Complete"
|
3528
|
-
msgstr "
|
3408
|
+
msgstr ""
|
3529
3409
|
|
3530
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3531
3410
|
msgid "Package Group Install Failed"
|
3532
|
-
msgstr "
|
3411
|
+
msgstr ""
|
3533
3412
|
|
3534
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3535
3413
|
msgid "Package Group Install Timed Out"
|
3536
|
-
msgstr "
|
3414
|
+
msgstr ""
|
3537
3415
|
|
3538
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3539
3416
|
msgid "Package Group Install scheduled by %s"
|
3540
|
-
msgstr "
|
3417
|
+
msgstr ""
|
3541
3418
|
|
3542
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3543
3419
|
msgid "Package Group Remove"
|
3544
|
-
msgstr "
|
3420
|
+
msgstr ""
|
3545
3421
|
|
3546
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3547
3422
|
msgid "Package Group Remove Canceled"
|
3548
|
-
msgstr "
|
3423
|
+
msgstr ""
|
3549
3424
|
|
3550
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3551
3425
|
msgid "Package Group Remove Complete"
|
3552
|
-
msgstr "
|
3426
|
+
msgstr ""
|
3553
3427
|
|
3554
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3555
3428
|
msgid "Package Group Remove Failed"
|
3556
|
-
msgstr "
|
3429
|
+
msgstr ""
|
3557
3430
|
|
3558
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3559
3431
|
msgid "Package Group Remove Timed Out"
|
3560
|
-
msgstr "
|
3432
|
+
msgstr ""
|
3561
3433
|
|
3562
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3563
3434
|
msgid "Package Group Remove scheduled by %s"
|
3564
|
-
msgstr "
|
3435
|
+
msgstr ""
|
3565
3436
|
|
3566
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3567
3437
|
msgid "Package Group Update"
|
3568
|
-
msgstr "
|
3438
|
+
msgstr ""
|
3569
3439
|
|
3570
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3571
3440
|
msgid "Package Group Update scheduled by %s"
|
3572
|
-
msgstr "
|
3441
|
+
msgstr ""
|
3573
3442
|
|
3574
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3575
3443
|
msgid "Package Groups"
|
3576
|
-
msgstr "
|
3444
|
+
msgstr ""
|
3577
3445
|
|
3578
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3579
3446
|
msgid "Package Install"
|
3580
|
-
msgstr "
|
3447
|
+
msgstr ""
|
3581
3448
|
|
3582
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3583
3449
|
msgid "Package Install Canceled"
|
3584
|
-
msgstr "
|
3450
|
+
msgstr ""
|
3585
3451
|
|
3586
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3587
3452
|
msgid "Package Install Complete"
|
3588
|
-
msgstr "
|
3453
|
+
msgstr ""
|
3589
3454
|
|
3590
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3591
3455
|
msgid "Package Install Failed"
|
3592
|
-
msgstr "
|
3456
|
+
msgstr ""
|
3593
3457
|
|
3594
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3595
3458
|
msgid "Package Install Timed Out"
|
3596
|
-
msgstr "
|
3459
|
+
msgstr ""
|
3597
3460
|
|
3598
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3599
3461
|
msgid "Package Install scheduled by %s"
|
3600
|
-
msgstr "
|
3462
|
+
msgstr ""
|
3601
3463
|
|
3602
3464
|
msgid "Package Profile Update"
|
3603
3465
|
msgstr ""
|
@@ -3605,88 +3467,71 @@ msgstr ""
|
|
3605
3467
|
msgid "Package Profile Update for %s"
|
3606
3468
|
msgstr ""
|
3607
3469
|
|
3608
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3609
3470
|
msgid "Package Remove"
|
3610
|
-
msgstr "
|
3471
|
+
msgstr ""
|
3611
3472
|
|
3612
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3613
3473
|
msgid "Package Remove Canceled"
|
3614
|
-
msgstr "
|
3474
|
+
msgstr ""
|
3615
3475
|
|
3616
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3617
3476
|
msgid "Package Remove Complete"
|
3618
|
-
msgstr "
|
3477
|
+
msgstr ""
|
3619
3478
|
|
3620
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3621
3479
|
msgid "Package Remove Failed"
|
3622
|
-
msgstr "
|
3480
|
+
msgstr ""
|
3623
3481
|
|
3624
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3625
3482
|
msgid "Package Remove Timed Out"
|
3626
|
-
msgstr "
|
3483
|
+
msgstr ""
|
3627
3484
|
|
3628
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3629
3485
|
msgid "Package Remove scheduled by %s"
|
3630
|
-
msgstr "
|
3486
|
+
msgstr ""
|
3631
3487
|
|
3632
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3633
3488
|
msgid "Package Update"
|
3634
|
-
msgstr "
|
3489
|
+
msgstr ""
|
3635
3490
|
|
3636
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3637
3491
|
msgid "Package Update Canceled"
|
3638
|
-
msgstr "
|
3492
|
+
msgstr ""
|
3639
3493
|
|
3640
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3641
3494
|
msgid "Package Update Complete"
|
3642
|
-
msgstr "
|
3495
|
+
msgstr ""
|
3643
3496
|
|
3644
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3645
3497
|
msgid "Package Update Failed"
|
3646
|
-
msgstr "
|
3498
|
+
msgstr ""
|
3647
3499
|
|
3648
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3649
3500
|
msgid "Package Update Timed Out"
|
3650
|
-
msgstr "
|
3501
|
+
msgstr ""
|
3651
3502
|
|
3652
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3653
3503
|
msgid "Package Update scheduled by %s"
|
3654
|
-
msgstr "
|
3504
|
+
msgstr ""
|
3655
3505
|
|
3656
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3657
3506
|
msgid "Package group update canceled"
|
3658
|
-
msgstr "
|
3507
|
+
msgstr ""
|
3659
3508
|
|
3660
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3661
3509
|
msgid "Package group update complete"
|
3662
|
-
msgstr "
|
3510
|
+
msgstr ""
|
3663
3511
|
|
3664
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3665
3512
|
msgid "Package group update failed"
|
3666
|
-
msgstr "
|
3513
|
+
msgstr ""
|
3667
3514
|
|
3668
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3669
3515
|
msgid "Package group update timed out"
|
3670
|
-
msgstr "
|
3516
|
+
msgstr ""
|
3517
|
+
|
3518
|
+
msgid "Package groups"
|
3519
|
+
msgstr ""
|
3671
3520
|
|
3672
3521
|
msgid "Package identifiers to filter content by"
|
3673
3522
|
msgstr ""
|
3674
3523
|
|
3675
|
-
#, fuzzy
|
3676
3524
|
msgid "Package install failed: \"%{package}\""
|
3677
|
-
msgstr "
|
3525
|
+
msgstr ""
|
3678
3526
|
|
3679
|
-
#, fuzzy
|
3680
3527
|
msgid "Package installation: \"%{package}\" "
|
3681
|
-
msgstr "
|
3528
|
+
msgstr ""
|
3682
3529
|
|
3683
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3684
3530
|
msgid "Packages"
|
3685
|
-
msgstr "
|
3531
|
+
msgstr ""
|
3686
3532
|
|
3687
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3688
3533
|
msgid "Packages must be provided"
|
3689
|
-
msgstr "
|
3534
|
+
msgstr ""
|
3690
3535
|
|
3691
3536
|
msgid "Page number, starting at 1"
|
3692
3537
|
msgstr ""
|
@@ -3715,10 +3560,8 @@ msgstr ""
|
|
3715
3560
|
msgid "Paused"
|
3716
3561
|
msgstr ""
|
3717
3562
|
|
3718
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3719
|
-
#, fuzzy
|
3720
3563
|
msgid "Pending"
|
3721
|
-
msgstr "
|
3564
|
+
msgstr "ಬಾಕಿ ಇರುವ"
|
3722
3565
|
|
3723
3566
|
msgid "Perform a module stream action via Katello interface"
|
3724
3567
|
msgstr ""
|
@@ -3738,17 +3581,18 @@ msgstr ""
|
|
3738
3581
|
msgid "Performs an incremental-export of the repositories in library."
|
3739
3582
|
msgstr ""
|
3740
3583
|
|
3741
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3742
3584
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3743
|
-
msgstr "
|
3585
|
+
msgstr ""
|
3744
3586
|
|
3745
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3746
3587
|
msgid "Physical"
|
3747
|
-
msgstr "
|
3588
|
+
msgstr ""
|
3748
3589
|
|
3749
3590
|
msgid "Plan numeric identifier"
|
3750
3591
|
msgstr ""
|
3751
3592
|
|
3593
|
+
msgid "Please add some content views."
|
3594
|
+
msgstr ""
|
3595
|
+
|
3752
3596
|
msgid "Please add some repositories."
|
3753
3597
|
msgstr ""
|
3754
3598
|
|
@@ -3788,9 +3632,8 @@ msgstr ""
|
|
3788
3632
|
msgid "Processing metadata."
|
3789
3633
|
msgstr ""
|
3790
3634
|
|
3791
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3792
3635
|
msgid "Product"
|
3793
|
-
msgstr "
|
3636
|
+
msgstr ""
|
3794
3637
|
|
3795
3638
|
msgid "Product Content"
|
3796
3639
|
msgstr ""
|
@@ -3833,9 +3676,8 @@ msgstr ""
|
|
3833
3676
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3834
3677
|
msgstr ""
|
3835
3678
|
|
3836
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3837
3679
|
msgid "Products"
|
3838
|
-
msgstr "
|
3680
|
+
msgstr ""
|
3839
3681
|
|
3840
3682
|
msgid "Profiles"
|
3841
3683
|
msgstr ""
|
@@ -3876,9 +3718,8 @@ msgstr ""
|
|
3876
3718
|
msgid "Public key block in DER encoding or certificate content"
|
3877
3719
|
msgstr ""
|
3878
3720
|
|
3879
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3880
3721
|
msgid "Publish"
|
3881
|
-
msgstr "
|
3722
|
+
msgstr ""
|
3882
3723
|
|
3883
3724
|
msgid "Publish Lifecycle Environment Repositories"
|
3884
3725
|
msgstr ""
|
@@ -3898,15 +3739,15 @@ msgstr ""
|
|
3898
3739
|
msgid "Pulp 3 export destination filepath"
|
3899
3740
|
msgstr ""
|
3900
3741
|
|
3901
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3902
|
-
msgstr ""
|
3903
|
-
|
3904
3742
|
msgid "Pulp Consumer %s has already been removed"
|
3905
3743
|
msgstr ""
|
3906
3744
|
|
3907
3745
|
msgid "Pulp Docker registry port"
|
3908
3746
|
msgstr ""
|
3909
3747
|
|
3748
|
+
msgid "Pulp bulk load size"
|
3749
|
+
msgstr ""
|
3750
|
+
|
3910
3751
|
msgid "Pulp client cert"
|
3911
3752
|
msgstr ""
|
3912
3753
|
|
@@ -3955,33 +3796,6 @@ msgstr ""
|
|
3955
3796
|
msgid "Pulpcore"
|
3956
3797
|
msgstr ""
|
3957
3798
|
|
3958
|
-
msgid "Puppet Environment"
|
3959
|
-
msgstr ""
|
3960
|
-
|
3961
|
-
msgid "Puppet Module"
|
3962
|
-
msgstr ""
|
3963
|
-
|
3964
|
-
msgid ""
|
3965
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3966
|
-
" '%{name}'"
|
3967
|
-
msgstr ""
|
3968
|
-
|
3969
|
-
msgid ""
|
3970
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3971
|
-
" not exist"
|
3972
|
-
msgstr ""
|
3973
|
-
|
3974
|
-
msgid ""
|
3975
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3976
|
-
" exist"
|
3977
|
-
msgstr ""
|
3978
|
-
|
3979
|
-
msgid "Puppet Modules"
|
3980
|
-
msgstr ""
|
3981
|
-
|
3982
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3983
|
-
msgstr ""
|
3984
|
-
|
3985
3799
|
msgid "Quantity"
|
3986
3800
|
msgstr ""
|
3987
3801
|
|
@@ -4012,9 +3826,11 @@ msgstr ""
|
|
4012
3826
|
msgid "RPM"
|
4013
3827
|
msgstr ""
|
4014
3828
|
|
4015
|
-
|
3829
|
+
msgid "RPM name"
|
3830
|
+
msgstr ""
|
3831
|
+
|
4016
3832
|
msgid "RPMs"
|
4017
|
-
msgstr "
|
3833
|
+
msgstr ""
|
4018
3834
|
|
4019
3835
|
msgid "Realm IDs"
|
4020
3836
|
msgstr ""
|
@@ -4028,38 +3844,29 @@ msgstr ""
|
|
4028
3844
|
msgid "Recommended Repositories"
|
4029
3845
|
msgstr ""
|
4030
3846
|
|
4031
|
-
msgid "Red Hat"
|
4032
|
-
msgstr ""
|
4033
|
-
|
4034
|
-
#, fuzzy
|
4035
3847
|
msgid "Red Hat CDN URL"
|
4036
|
-
msgstr "
|
3848
|
+
msgstr ""
|
4037
3849
|
|
4038
3850
|
msgid "Red Hat Provider Details"
|
4039
3851
|
msgstr ""
|
4040
3852
|
|
4041
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4042
3853
|
msgid "Red Hat Repositories"
|
4043
|
-
msgstr "
|
3854
|
+
msgstr ""
|
4044
3855
|
|
4045
|
-
#, fuzzy
|
4046
3856
|
msgid "Red Hat products cannot be manipulated."
|
4047
|
-
msgstr "
|
3857
|
+
msgstr ""
|
4048
3858
|
|
4049
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4050
3859
|
msgid "Red Hat provider can not be deleted"
|
4051
|
-
msgstr "
|
3860
|
+
msgstr ""
|
4052
3861
|
|
4053
|
-
#, fuzzy
|
4054
3862
|
msgid "Red Hat repositories cannot be manipulated."
|
4055
|
-
msgstr "
|
3863
|
+
msgstr ""
|
4056
3864
|
|
4057
3865
|
msgid "Refresh"
|
4058
3866
|
msgstr ""
|
4059
3867
|
|
4060
|
-
#, fuzzy
|
4061
3868
|
msgid "Refresh Manifest"
|
4062
|
-
msgstr "
|
3869
|
+
msgstr ""
|
4063
3870
|
|
4064
3871
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
4065
3872
|
msgstr ""
|
@@ -4109,32 +3916,29 @@ msgstr ""
|
|
4109
3916
|
msgid "Remove Content"
|
4110
3917
|
msgstr ""
|
4111
3918
|
|
4112
|
-
#, fuzzy
|
4113
3919
|
msgid "Remove Version"
|
4114
|
-
msgstr "
|
3920
|
+
msgstr ""
|
4115
3921
|
|
4116
|
-
#, fuzzy
|
4117
3922
|
msgid "Remove Versions and Associations"
|
4118
|
-
msgstr "
|
3923
|
+
msgstr ""
|
4119
3924
|
|
4120
3925
|
msgid "Remove a content view from an environment"
|
4121
3926
|
msgstr ""
|
4122
3927
|
|
4123
|
-
msgid "Remove
|
3928
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
4124
3929
|
msgstr ""
|
4125
3930
|
|
4126
3931
|
msgid "Remove components from the content view"
|
4127
3932
|
msgstr ""
|
4128
3933
|
|
4129
|
-
msgid "Remove content on one or more hosts"
|
3934
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
4130
3935
|
msgstr ""
|
4131
3936
|
|
4132
3937
|
msgid "Remove content view version"
|
4133
3938
|
msgstr ""
|
4134
3939
|
|
4135
|
-
#, fuzzy
|
4136
3940
|
msgid "Remove from Environment"
|
4137
|
-
msgstr "
|
3941
|
+
msgstr ""
|
4138
3942
|
|
4139
3943
|
msgid "Remove hosts from the host collection"
|
4140
3944
|
msgstr ""
|
@@ -4148,16 +3952,14 @@ msgstr ""
|
|
4148
3952
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
4149
3953
|
msgstr ""
|
4150
3954
|
|
4151
|
-
#, fuzzy
|
4152
3955
|
msgid "Remove package"
|
4153
|
-
msgstr "
|
3956
|
+
msgstr ""
|
4154
3957
|
|
4155
3958
|
msgid "Remove package for %s"
|
4156
3959
|
msgstr ""
|
4157
3960
|
|
4158
|
-
#, fuzzy
|
4159
3961
|
msgid "Remove package group"
|
4160
|
-
msgstr "
|
3962
|
+
msgstr ""
|
4161
3963
|
|
4162
3964
|
msgid "Remove package group via Katello interface"
|
4163
3965
|
msgstr ""
|
@@ -4180,27 +3982,23 @@ msgstr ""
|
|
4180
3982
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
4181
3983
|
msgstr ""
|
4182
3984
|
|
4183
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4184
3985
|
msgid "Removing Package Group..."
|
4185
|
-
msgstr "
|
3986
|
+
msgstr ""
|
4186
3987
|
|
4187
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4188
3988
|
msgid "Removing Package..."
|
4189
|
-
msgstr "
|
3989
|
+
msgstr ""
|
4190
3990
|
|
4191
3991
|
msgid "Repo Type"
|
4192
3992
|
msgstr ""
|
4193
3993
|
|
4194
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4195
3994
|
msgid "Repositories"
|
4196
|
-
msgstr "
|
3995
|
+
msgstr ""
|
4197
3996
|
|
4198
3997
|
msgid "Repositories from published Content Views are not allowed."
|
4199
3998
|
msgstr ""
|
4200
3999
|
|
4201
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4202
4000
|
msgid "Repository"
|
4203
|
-
msgstr "
|
4001
|
+
msgstr ""
|
4204
4002
|
|
4205
4003
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4206
4004
|
msgstr ""
|
@@ -4220,16 +4018,14 @@ msgstr ""
|
|
4220
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."
|
4221
4019
|
msgstr ""
|
4222
4020
|
|
4223
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4224
4021
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4225
|
-
msgstr "
|
4022
|
+
msgstr ""
|
4226
4023
|
|
4227
4024
|
msgid "Repository content type must be 'yum' to export."
|
4228
4025
|
msgstr ""
|
4229
4026
|
|
4230
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4231
4027
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4232
|
-
msgstr "
|
4028
|
+
msgstr ""
|
4233
4029
|
|
4234
4030
|
msgid "Repository id"
|
4235
4031
|
msgstr ""
|
@@ -4243,16 +4039,14 @@ msgstr ""
|
|
4243
4039
|
msgid "Repository metadata publish"
|
4244
4040
|
msgstr ""
|
4245
4041
|
|
4246
|
-
#, fuzzy
|
4247
4042
|
msgid "Repository not found"
|
4248
|
-
msgstr "
|
4043
|
+
msgstr ""
|
4249
4044
|
|
4250
4045
|
msgid "Repository set name to search on"
|
4251
4046
|
msgstr ""
|
4252
4047
|
|
4253
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4254
4048
|
msgid "Repository sets are not available for custom products."
|
4255
|
-
msgstr "
|
4049
|
+
msgstr ""
|
4256
4050
|
|
4257
4051
|
msgid "Republish Repositories of %{name} %{version}"
|
4258
4052
|
msgstr ""
|
@@ -4263,9 +4057,6 @@ msgstr ""
|
|
4263
4057
|
msgid "Requires Virt-Who"
|
4264
4058
|
msgstr ""
|
4265
4059
|
|
4266
|
-
msgid "Reset Puppet Environment"
|
4267
|
-
msgstr ""
|
4268
|
-
|
4269
4060
|
msgid "Resolve Traces"
|
4270
4061
|
msgstr ""
|
4271
4062
|
|
@@ -4273,7 +4064,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4273
4064
|
msgstr ""
|
4274
4065
|
|
4275
4066
|
msgid "Resource"
|
4276
|
-
msgstr ""
|
4067
|
+
msgstr "ಸಂಪನ್ಮೂಲ"
|
4277
4068
|
|
4278
4069
|
msgid "Restart Services via Katello interface"
|
4279
4070
|
msgstr ""
|
@@ -4281,9 +4072,8 @@ msgstr ""
|
|
4281
4072
|
msgid "Restrict Composite Content View promotion"
|
4282
4073
|
msgstr ""
|
4283
4074
|
|
4284
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4285
4075
|
msgid "Result"
|
4286
|
-
msgstr "
|
4076
|
+
msgstr ""
|
4287
4077
|
|
4288
4078
|
msgid "Retrieve a single errata for a host"
|
4289
4079
|
msgstr ""
|
@@ -4345,18 +4135,23 @@ msgstr ""
|
|
4345
4135
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4346
4136
|
msgstr ""
|
4347
4137
|
|
4348
|
-
msgid "
|
4138
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4349
4139
|
msgstr ""
|
4350
4140
|
|
4141
|
+
msgid "Role"
|
4142
|
+
msgstr "ಪಾತ್ರ"
|
4143
|
+
|
4351
4144
|
msgid "Role of host"
|
4352
4145
|
msgstr ""
|
4353
4146
|
|
4147
|
+
msgid "Roles"
|
4148
|
+
msgstr "ಪಾತ್ರಗಳು"
|
4149
|
+
|
4354
4150
|
msgid "Run Sync Plan:"
|
4355
4151
|
msgstr ""
|
4356
4152
|
|
4357
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4358
4153
|
msgid "Running"
|
4359
|
-
msgstr "
|
4154
|
+
msgstr ""
|
4360
4155
|
|
4361
4156
|
msgid "SKU"
|
4362
4157
|
msgstr ""
|
@@ -4371,13 +4166,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4371
4166
|
msgstr ""
|
4372
4167
|
|
4373
4168
|
msgid "Save"
|
4374
|
-
msgstr ""
|
4169
|
+
msgstr "ಉಳಿಸು"
|
4375
4170
|
|
4376
|
-
msgid "Schedule errata for installation"
|
4171
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4377
4172
|
msgstr ""
|
4378
4173
|
|
4379
4174
|
msgid "Search"
|
4380
|
-
msgstr ""
|
4175
|
+
msgstr "ಹುಡುಕು"
|
4381
4176
|
|
4382
4177
|
msgid "Search pattern (defaults to '*')"
|
4383
4178
|
msgstr ""
|
@@ -4394,9 +4189,8 @@ msgstr ""
|
|
4394
4189
|
msgid "Search string for hosts to perform an action on"
|
4395
4190
|
msgstr ""
|
4396
4191
|
|
4397
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4398
4192
|
msgid "Security"
|
4399
|
-
msgstr "
|
4193
|
+
msgstr ""
|
4400
4194
|
|
4401
4195
|
msgid "Security errata applicable"
|
4402
4196
|
msgstr ""
|
@@ -4407,20 +4201,17 @@ msgstr ""
|
|
4407
4201
|
msgid "Select"
|
4408
4202
|
msgstr ""
|
4409
4203
|
|
4410
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4411
4204
|
msgid "Select All"
|
4412
4205
|
msgstr "ಎಲ್ಲವನ್ನೂ ಆರಿಸು"
|
4413
4206
|
|
4414
|
-
#, fuzzy
|
4415
4207
|
msgid "Select Content View"
|
4416
|
-
msgstr "
|
4208
|
+
msgstr ""
|
4417
4209
|
|
4418
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4419
4210
|
msgid "Select None"
|
4420
|
-
msgstr "
|
4211
|
+
msgstr ""
|
4421
4212
|
|
4422
4213
|
msgid "Select Organization"
|
4423
|
-
msgstr ""
|
4214
|
+
msgstr "ಸಂಸ್ಥೆಯನ್ನು ಆರಿಸು"
|
4424
4215
|
|
4425
4216
|
msgid "Select Value"
|
4426
4217
|
msgstr ""
|
@@ -4428,10 +4219,8 @@ msgstr ""
|
|
4428
4219
|
msgid "Select all rows"
|
4429
4220
|
msgstr ""
|
4430
4221
|
|
4431
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4432
|
-
#, fuzzy
|
4433
4222
|
msgid "Select an Organization"
|
4434
|
-
msgstr "
|
4223
|
+
msgstr ""
|
4435
4224
|
|
4436
4225
|
msgid "Select an organization"
|
4437
4226
|
msgstr ""
|
@@ -4448,9 +4237,8 @@ msgstr ""
|
|
4448
4237
|
msgid "Service Level"
|
4449
4238
|
msgstr ""
|
4450
4239
|
|
4451
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4452
4240
|
msgid "Service Level %s"
|
4453
|
-
msgstr "
|
4241
|
+
msgstr ""
|
4454
4242
|
|
4455
4243
|
msgid "Service Level (SLA)"
|
4456
4244
|
msgstr ""
|
@@ -4479,15 +4267,11 @@ msgstr ""
|
|
4479
4267
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4480
4268
|
msgstr ""
|
4481
4269
|
|
4482
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4483
|
-
msgstr ""
|
4484
|
-
|
4485
4270
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4486
4271
|
msgstr ""
|
4487
4272
|
|
4488
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4489
4273
|
msgid "Severity"
|
4490
|
-
msgstr "
|
4274
|
+
msgstr ""
|
4491
4275
|
|
4492
4276
|
msgid "Show :a_resource"
|
4493
4277
|
msgstr ""
|
@@ -4501,9 +4285,6 @@ msgstr ""
|
|
4501
4285
|
msgid "Show a content view component"
|
4502
4286
|
msgstr ""
|
4503
4287
|
|
4504
|
-
msgid "Show a content view puppet module"
|
4505
|
-
msgstr ""
|
4506
|
-
|
4507
4288
|
msgid "Show a content view's history"
|
4508
4289
|
msgstr ""
|
4509
4290
|
|
@@ -4579,9 +4360,8 @@ msgstr ""
|
|
4579
4360
|
msgid "Smart proxy IDs"
|
4580
4361
|
msgstr ""
|
4581
4362
|
|
4582
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4583
4363
|
msgid "Sockets: %s"
|
4584
|
-
msgstr "
|
4364
|
+
msgstr ""
|
4585
4365
|
|
4586
4366
|
msgid "Solve Dependencies"
|
4587
4367
|
msgstr ""
|
@@ -4595,10 +4375,28 @@ msgstr ""
|
|
4595
4375
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4596
4376
|
msgstr ""
|
4597
4377
|
|
4598
|
-
msgid "
|
4378
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4599
4379
|
msgstr ""
|
4600
4380
|
|
4601
|
-
msgid "Something went wrong while retrieving the
|
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)}"
|
4391
|
+
msgstr ""
|
4392
|
+
|
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)}"
|
4602
4400
|
msgstr ""
|
4603
4401
|
|
4604
4402
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4616,27 +4414,23 @@ msgstr ""
|
|
4616
4414
|
msgid "Stacking ID"
|
4617
4415
|
msgstr ""
|
4618
4416
|
|
4619
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4620
4417
|
msgid "Start Date"
|
4621
|
-
msgstr "
|
4418
|
+
msgstr ""
|
4622
4419
|
|
4623
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4624
4420
|
msgid "Start Date and Time can't be blank"
|
4625
|
-
msgstr "
|
4421
|
+
msgstr ""
|
4626
4422
|
|
4627
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4628
4423
|
msgid "Start Time"
|
4629
|
-
msgstr "
|
4424
|
+
msgstr ""
|
4630
4425
|
|
4631
4426
|
msgid "Starts"
|
4632
4427
|
msgstr ""
|
4633
4428
|
|
4634
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4635
4429
|
msgid "Status"
|
4636
4430
|
msgstr "ಸ್ಥಿತಿ"
|
4637
4431
|
|
4638
4432
|
msgid "Storage"
|
4639
|
-
msgstr ""
|
4433
|
+
msgstr "ಶೇಖರಣೆ"
|
4640
4434
|
|
4641
4435
|
msgid "Stream"
|
4642
4436
|
msgstr ""
|
@@ -4650,9 +4444,8 @@ msgstr ""
|
|
4650
4444
|
msgid "Subnet IDs"
|
4651
4445
|
msgstr ""
|
4652
4446
|
|
4653
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4654
4447
|
msgid "Subscription"
|
4655
|
-
msgstr "
|
4448
|
+
msgstr ""
|
4656
4449
|
|
4657
4450
|
msgid "Subscription Allocation"
|
4658
4451
|
msgstr ""
|
@@ -4723,14 +4516,12 @@ msgstr ""
|
|
4723
4516
|
msgid "Subscriptions have been saved and are being updated. "
|
4724
4517
|
msgstr ""
|
4725
4518
|
|
4726
|
-
#, fuzzy
|
4727
4519
|
msgid "Subscriptions information based on selected activation keys:"
|
4728
|
-
msgstr "
|
4520
|
+
msgstr ""
|
4729
4521
|
|
4730
4522
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4731
4523
|
msgstr ""
|
4732
4524
|
|
4733
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4734
4525
|
msgid "Success"
|
4735
4526
|
msgstr "ಯಶಸ್ವಿಯಾಗಿದೆ"
|
4736
4527
|
|
@@ -4755,9 +4546,8 @@ msgstr ""
|
|
4755
4546
|
msgid "Successfully synchronized."
|
4756
4547
|
msgstr ""
|
4757
4548
|
|
4758
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4759
4549
|
msgid "Summary"
|
4760
|
-
msgstr "
|
4550
|
+
msgstr ""
|
4761
4551
|
|
4762
4552
|
msgid "Support Type"
|
4763
4553
|
msgstr ""
|
@@ -4765,21 +4555,20 @@ msgstr ""
|
|
4765
4555
|
msgid "Supported Content Types"
|
4766
4556
|
msgstr ""
|
4767
4557
|
|
4768
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4769
4558
|
msgid "Sync Canceled"
|
4770
|
-
msgstr "
|
4559
|
+
msgstr ""
|
4560
|
+
|
4561
|
+
msgid "Sync Connection Timeout"
|
4562
|
+
msgstr ""
|
4771
4563
|
|
4772
4564
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4773
4565
|
msgstr ""
|
4774
4566
|
|
4775
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4776
|
-
#, fuzzy
|
4777
4567
|
msgid "Sync Incomplete"
|
4778
|
-
msgstr "
|
4568
|
+
msgstr ""
|
4779
4569
|
|
4780
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4781
4570
|
msgid "Sync Overview"
|
4782
|
-
msgstr "
|
4571
|
+
msgstr ""
|
4783
4572
|
|
4784
4573
|
msgid "Sync Plan"
|
4785
4574
|
msgstr ""
|
@@ -4787,9 +4576,8 @@ msgstr ""
|
|
4787
4576
|
msgid "Sync Plan: "
|
4788
4577
|
msgstr ""
|
4789
4578
|
|
4790
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4791
4579
|
msgid "Sync Plans"
|
4792
|
-
msgstr "
|
4580
|
+
msgstr ""
|
4793
4581
|
|
4794
4582
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4795
4583
|
msgstr ""
|
@@ -4797,9 +4585,8 @@ msgstr ""
|
|
4797
4585
|
msgid "Sync Smart Proxies after Content View promotion"
|
4798
4586
|
msgstr ""
|
4799
4587
|
|
4800
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4801
4588
|
msgid "Sync Status"
|
4802
|
-
msgstr "
|
4589
|
+
msgstr ""
|
4803
4590
|
|
4804
4591
|
msgid "Sync Summary"
|
4805
4592
|
msgstr ""
|
@@ -4816,9 +4603,8 @@ msgstr ""
|
|
4816
4603
|
msgid "Sync capsule"
|
4817
4604
|
msgstr ""
|
4818
4605
|
|
4819
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4820
4606
|
msgid "Sync complete."
|
4821
|
-
msgstr "
|
4607
|
+
msgstr ""
|
4822
4608
|
|
4823
4609
|
msgid "Sync errata"
|
4824
4610
|
msgstr ""
|
@@ -4838,13 +4624,11 @@ msgstr ""
|
|
4838
4624
|
msgid "Synced to smart proxy"
|
4839
4625
|
msgstr ""
|
4840
4626
|
|
4841
|
-
#, fuzzy
|
4842
4627
|
msgid "Synchronize"
|
4843
|
-
msgstr "
|
4628
|
+
msgstr ""
|
4844
4629
|
|
4845
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4846
4630
|
msgid "Synchronize Now"
|
4847
|
-
msgstr "
|
4631
|
+
msgstr ""
|
4848
4632
|
|
4849
4633
|
msgid "Synchronize capsule content"
|
4850
4634
|
msgstr ""
|
@@ -4864,14 +4648,15 @@ msgstr ""
|
|
4864
4648
|
msgid "Synchronize: Validate Content"
|
4865
4649
|
msgstr ""
|
4866
4650
|
|
4867
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4868
|
-
#, fuzzy
|
4869
4651
|
msgid "Syncing Complete."
|
4870
|
-
msgstr "
|
4652
|
+
msgstr ""
|
4871
4653
|
|
4872
4654
|
msgid "System Purpose"
|
4873
4655
|
msgstr ""
|
4874
4656
|
|
4657
|
+
msgid "System Status"
|
4658
|
+
msgstr ""
|
4659
|
+
|
4875
4660
|
msgid "Tags"
|
4876
4661
|
msgstr ""
|
4877
4662
|
|
@@ -4890,29 +4675,29 @@ msgstr ""
|
|
4890
4675
|
msgid "Temporary"
|
4891
4676
|
msgstr ""
|
4892
4677
|
|
4893
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4894
4678
|
msgid "The '%s' environment cannot contain a changeset!"
|
4895
|
-
msgstr "
|
4679
|
+
msgstr ""
|
4896
4680
|
|
4897
4681
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4898
4682
|
msgstr ""
|
4899
4683
|
|
4684
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4685
|
+
msgstr ""
|
4686
|
+
|
4900
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."
|
4901
4688
|
msgstr ""
|
4902
4689
|
|
4903
4690
|
msgid "The actual file contents"
|
4904
4691
|
msgstr ""
|
4905
4692
|
|
4906
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4907
4693
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4908
|
-
msgstr "
|
4694
|
+
msgstr ""
|
4909
4695
|
|
4910
4696
|
msgid "The default content view cannot be edited, published, or deleted."
|
4911
4697
|
msgstr ""
|
4912
4698
|
|
4913
|
-
#, fuzzy
|
4914
4699
|
msgid "The default content view cannot be promoted"
|
4915
|
-
msgstr "
|
4700
|
+
msgstr ""
|
4916
4701
|
|
4917
4702
|
msgid "The default dependency solving value for new Content Views."
|
4918
4703
|
msgstr ""
|
@@ -4929,6 +4714,12 @@ msgstr ""
|
|
4929
4714
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4930
4715
|
msgstr ""
|
4931
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
|
+
|
4932
4723
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4933
4724
|
msgstr ""
|
4934
4725
|
|
@@ -4952,6 +4743,11 @@ msgid ""
|
|
4952
4743
|
" %{repos}"
|
4953
4744
|
msgstr ""
|
4954
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
|
+
|
4955
4751
|
msgid "The id of the host to alter"
|
4956
4752
|
msgstr ""
|
4957
4753
|
|
@@ -4964,6 +4760,9 @@ msgstr ""
|
|
4964
4760
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4965
4761
|
msgstr ""
|
4966
4762
|
|
4763
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4764
|
+
msgstr ""
|
4765
|
+
|
4967
4766
|
msgid "The offset in the file where the content starts"
|
4968
4767
|
msgstr ""
|
4969
4768
|
|
@@ -4985,15 +4784,8 @@ msgstr ""
|
|
4985
4784
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4986
4785
|
msgstr ""
|
4987
4786
|
|
4988
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4989
|
-
msgstr ""
|
4990
|
-
|
4991
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4992
|
-
msgstr ""
|
4993
|
-
|
4994
|
-
#, fuzzy
|
4995
4787
|
msgid "The repository is already enabled"
|
4996
|
-
msgstr "
|
4788
|
+
msgstr ""
|
4997
4789
|
|
4998
4790
|
msgid "The request did not contain any repository information."
|
4999
4791
|
msgstr ""
|
@@ -5007,9 +4799,6 @@ msgstr ""
|
|
5007
4799
|
msgid "The requested traces were not found for this host"
|
5008
4800
|
msgstr ""
|
5009
4801
|
|
5010
|
-
msgid "The selected content source and lifecycle environment do not match"
|
5011
|
-
msgstr ""
|
5012
|
-
|
5013
4802
|
msgid ""
|
5014
4803
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
5015
4804
|
" content source, operating system, and architecture"
|
@@ -5027,6 +4816,9 @@ msgstr ""
|
|
5027
4816
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
5028
4817
|
msgstr ""
|
5029
4818
|
|
4819
|
+
msgid "The token key to use for authentication."
|
4820
|
+
msgstr ""
|
4821
|
+
|
5030
4822
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
5031
4823
|
msgstr ""
|
5032
4824
|
|
@@ -5042,14 +4834,10 @@ msgstr ""
|
|
5042
4834
|
msgid "There are no errata that need to be applied to registered content hosts."
|
5043
4835
|
msgstr ""
|
5044
4836
|
|
5045
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5046
4837
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
5047
|
-
msgstr "ಯಾವುದೆ ಉತ್ಪನ್ನಗಳು ಅಥವ ರೆಪೊಸಿಟರಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿಲ್ಲ. %{custom} ಮೂಲಕ ಅಥವ %{redhat} ಮೂಲಕ ಸಕ್ರಿಯಗೊಳಿಸಲು ಪ್ರಯತ್ನಿಸಿ."
|
5048
|
-
|
5049
|
-
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."
|
5050
4838
|
msgstr ""
|
5051
4839
|
|
5052
|
-
msgid "There
|
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."
|
5053
4841
|
msgstr ""
|
5054
4842
|
|
5055
4843
|
msgid "There is no Manifest History to display."
|
@@ -5082,15 +4870,12 @@ msgstr ""
|
|
5082
4870
|
msgid "This action doesn't support package groups"
|
5083
4871
|
msgstr ""
|
5084
4872
|
|
5085
|
-
msgid "This action
|
4873
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
5086
4874
|
msgstr ""
|
5087
4875
|
|
5088
4876
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
5089
4877
|
msgstr ""
|
5090
4878
|
|
5091
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
5092
|
-
msgstr ""
|
5093
|
-
|
5094
4879
|
msgid "This content view version doesn't have a history."
|
5095
4880
|
msgstr ""
|
5096
4881
|
|
@@ -5154,17 +4939,16 @@ msgstr ""
|
|
5154
4939
|
msgid "Timestamp"
|
5155
4940
|
msgstr ""
|
5156
4941
|
|
5157
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
5158
4942
|
msgid "Title"
|
5159
|
-
msgstr "
|
4943
|
+
msgstr ""
|
5160
4944
|
|
5161
4945
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
5162
4946
|
msgstr ""
|
5163
4947
|
|
5164
|
-
msgid "Total
|
4948
|
+
msgid "Total steps: "
|
5165
4949
|
msgstr ""
|
5166
4950
|
|
5167
|
-
msgid "Total
|
4951
|
+
msgid "Total timeout in seconds for connections when syncing"
|
5168
4952
|
msgstr ""
|
5169
4953
|
|
5170
4954
|
msgid "Tracer profile uploaded successfully"
|
@@ -5195,7 +4979,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
5195
4979
|
msgstr ""
|
5196
4980
|
|
5197
4981
|
msgid "UUID"
|
5198
|
-
msgstr ""
|
4982
|
+
msgstr "UUID"
|
5199
4983
|
|
5200
4984
|
msgid "UUID of the consumer"
|
5201
4985
|
msgstr ""
|
@@ -5227,13 +5011,13 @@ msgstr ""
|
|
5227
5011
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5228
5012
|
msgstr ""
|
5229
5013
|
|
5230
|
-
msgid "Unable to
|
5014
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5231
5015
|
msgstr ""
|
5232
5016
|
|
5233
|
-
msgid "Unable to
|
5017
|
+
msgid "Unable to get users"
|
5234
5018
|
msgstr ""
|
5235
5019
|
|
5236
|
-
msgid "Unable to
|
5020
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5237
5021
|
msgstr ""
|
5238
5022
|
|
5239
5023
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5257,6 +5041,12 @@ msgstr ""
|
|
5257
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."
|
5258
5042
|
msgstr ""
|
5259
5043
|
|
5044
|
+
msgid "Unable to update the repository list"
|
5045
|
+
msgstr ""
|
5046
|
+
|
5047
|
+
msgid "Unable to update the user-repository mapping"
|
5048
|
+
msgstr ""
|
5049
|
+
|
5260
5050
|
msgid "Unapplied Errata"
|
5261
5051
|
msgstr ""
|
5262
5052
|
|
@@ -5272,10 +5062,9 @@ msgstr ""
|
|
5272
5062
|
msgid "Unfiltered params array: %s."
|
5273
5063
|
msgstr ""
|
5274
5064
|
|
5275
|
-
msgid "Uninstall packages remotely"
|
5065
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5276
5066
|
msgstr ""
|
5277
5067
|
|
5278
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
5279
5068
|
msgid "Unknown"
|
5280
5069
|
msgstr "ಅಜ್ಞಾತ"
|
5281
5070
|
|
@@ -5312,14 +5101,12 @@ msgstr ""
|
|
5312
5101
|
msgid "Unsubscribed hypervisor"
|
5313
5102
|
msgstr ""
|
5314
5103
|
|
5315
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5316
5104
|
msgid "Unsupported URL protocol %s."
|
5317
|
-
msgstr "
|
5105
|
+
msgstr ""
|
5318
5106
|
|
5319
5107
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5320
5108
|
msgstr ""
|
5321
5109
|
|
5322
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5323
5110
|
msgid "Update"
|
5324
5111
|
msgstr "ಅಪ್ಡೇಟ್ ಮಾಡು"
|
5325
5112
|
|
@@ -5350,9 +5137,6 @@ msgstr ""
|
|
5350
5137
|
msgid "Update a host collection"
|
5351
5138
|
msgstr ""
|
5352
5139
|
|
5353
|
-
msgid "Update a puppet module associated with the content view"
|
5354
|
-
msgstr ""
|
5355
|
-
|
5356
5140
|
msgid "Update a repository"
|
5357
5141
|
msgstr ""
|
5358
5142
|
|
@@ -5368,7 +5152,7 @@ msgstr ""
|
|
5368
5152
|
msgid "Update an environment in an organization"
|
5369
5153
|
msgstr ""
|
5370
5154
|
|
5371
|
-
msgid "Update content on one or more hosts"
|
5155
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5372
5156
|
msgstr ""
|
5373
5157
|
|
5374
5158
|
msgid "Update content urls"
|
@@ -5410,7 +5194,7 @@ msgstr ""
|
|
5410
5194
|
msgid "Update package via Katello interface"
|
5411
5195
|
msgstr ""
|
5412
5196
|
|
5413
|
-
msgid "Update packages remotely"
|
5197
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5414
5198
|
msgstr ""
|
5415
5199
|
|
5416
5200
|
msgid "Update redhat repository"
|
@@ -5435,7 +5219,7 @@ msgid "Update the quantity of one or more subscriptions on an upstream allocatio
|
|
5435
5219
|
msgstr ""
|
5436
5220
|
|
5437
5221
|
msgid "Updated"
|
5438
|
-
msgstr ""
|
5222
|
+
msgstr "ಅಪ್ಡೇಟ್ ಆಗಿದ"
|
5439
5223
|
|
5440
5224
|
msgid "Updates"
|
5441
5225
|
msgstr ""
|
@@ -5446,9 +5230,8 @@ msgstr ""
|
|
5446
5230
|
msgid "Updates all packages on the host(s)"
|
5447
5231
|
msgstr ""
|
5448
5232
|
|
5449
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5450
5233
|
msgid "Updating Package..."
|
5451
|
-
msgstr "
|
5234
|
+
msgstr ""
|
5452
5235
|
|
5453
5236
|
msgid "Updating System Purpose for host"
|
5454
5237
|
msgstr ""
|
@@ -5456,9 +5239,8 @@ msgstr ""
|
|
5456
5239
|
msgid "Updating System Purpose for host %s"
|
5457
5240
|
msgstr ""
|
5458
5241
|
|
5459
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5460
5242
|
msgid "Updating package group..."
|
5461
|
-
msgstr "
|
5243
|
+
msgstr ""
|
5462
5244
|
|
5463
5245
|
msgid "Updating repository authentication configuration"
|
5464
5246
|
msgstr ""
|
@@ -5481,10 +5263,8 @@ msgstr ""
|
|
5481
5263
|
msgid "Upload errata into"
|
5482
5264
|
msgstr ""
|
5483
5265
|
|
5484
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5485
|
-
#, fuzzy
|
5486
5266
|
msgid "Upload into"
|
5487
|
-
msgstr "
|
5267
|
+
msgstr ""
|
5488
5268
|
|
5489
5269
|
msgid "Upload request id"
|
5490
5270
|
msgstr ""
|
@@ -5519,6 +5299,9 @@ msgstr ""
|
|
5519
5299
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5520
5300
|
msgstr ""
|
5521
5301
|
|
5302
|
+
msgid "User"
|
5303
|
+
msgstr "ಬಳಕೆದಾರ"
|
5304
|
+
|
5522
5305
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5523
5306
|
msgstr ""
|
5524
5307
|
|
@@ -5553,21 +5336,22 @@ msgid "Verify checksum of repository contents"
|
|
5553
5336
|
msgstr ""
|
5554
5337
|
|
5555
5338
|
msgid "Version"
|
5556
|
-
msgstr ""
|
5339
|
+
msgstr "ಆವೃತ್ತಿ"
|
5557
5340
|
|
5558
5341
|
msgid "Versions"
|
5559
5342
|
msgstr ""
|
5560
5343
|
|
5561
|
-
|
5344
|
+
msgid "Versions will appear here when the content view is published."
|
5345
|
+
msgstr ""
|
5346
|
+
|
5562
5347
|
msgid "View %{view} has not been promoted to %{env}"
|
5563
|
-
msgstr "
|
5348
|
+
msgstr ""
|
5564
5349
|
|
5565
5350
|
msgid "View a report of the affected hosts"
|
5566
5351
|
msgstr ""
|
5567
5352
|
|
5568
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5569
5353
|
msgid "Virtual"
|
5570
|
-
msgstr "
|
5354
|
+
msgstr ""
|
5571
5355
|
|
5572
5356
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5573
5357
|
msgstr ""
|
@@ -5629,13 +5413,11 @@ msgstr ""
|
|
5629
5413
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5630
5414
|
msgstr ""
|
5631
5415
|
|
5632
|
-
#, fuzzy
|
5633
5416
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5634
|
-
msgstr "
|
5417
|
+
msgstr ""
|
5635
5418
|
|
5636
|
-
#, fuzzy
|
5637
5419
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5638
|
-
msgstr "
|
5420
|
+
msgstr ""
|
5639
5421
|
|
5640
5422
|
msgid "You currently don't have any Content Views."
|
5641
5423
|
msgstr ""
|
@@ -5643,9 +5425,15 @@ msgstr ""
|
|
5643
5425
|
msgid "You currently don't have any filters for this content view."
|
5644
5426
|
msgstr ""
|
5645
5427
|
|
5428
|
+
msgid "You currently don't have any history for this content view."
|
5429
|
+
msgstr ""
|
5430
|
+
|
5646
5431
|
msgid "You currently don't have any repositories to add to this content view."
|
5647
5432
|
msgstr ""
|
5648
5433
|
|
5434
|
+
msgid "You currently don't have any versions for this content view."
|
5435
|
+
msgstr ""
|
5436
|
+
|
5649
5437
|
msgid "You do not have permissions to delete %s"
|
5650
5438
|
msgstr ""
|
5651
5439
|
|
@@ -5694,19 +5482,16 @@ msgstr ""
|
|
5694
5482
|
msgid "a file"
|
5695
5483
|
msgstr ""
|
5696
5484
|
|
5485
|
+
msgid "a future release"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5697
5488
|
msgid "a module stream"
|
5698
5489
|
msgstr ""
|
5699
5490
|
|
5700
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5701
|
-
#, fuzzy
|
5702
5491
|
msgid "a package"
|
5703
|
-
msgstr "
|
5492
|
+
msgstr ""
|
5704
5493
|
|
5705
|
-
#, fuzzy
|
5706
5494
|
msgid "a package group"
|
5707
|
-
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅನುಸ್ಥಾಪಿಸುವಿಕೆ..."
|
5708
|
-
|
5709
|
-
msgid "a puppet module"
|
5710
5495
|
msgstr ""
|
5711
5496
|
|
5712
5497
|
msgid "actions not found"
|
@@ -5718,9 +5503,8 @@ msgstr ""
|
|
5718
5503
|
msgid "activation key name to filter by"
|
5719
5504
|
msgstr ""
|
5720
5505
|
|
5721
|
-
#, fuzzy
|
5722
5506
|
msgid "activation keys"
|
5723
|
-
msgstr "
|
5507
|
+
msgstr ""
|
5724
5508
|
|
5725
5509
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5726
5510
|
msgstr ""
|
@@ -5728,36 +5512,32 @@ msgstr ""
|
|
5728
5512
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5729
5513
|
msgstr ""
|
5730
5514
|
|
5731
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5732
5515
|
msgid "all packages"
|
5733
|
-
msgstr "
|
5516
|
+
msgstr ""
|
5734
5517
|
|
5735
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5736
5518
|
msgid "all packages update"
|
5737
|
-
msgstr "
|
5519
|
+
msgstr ""
|
5738
5520
|
|
5739
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5740
5521
|
msgid "all packages update failed"
|
5741
|
-
msgstr "
|
5522
|
+
msgstr ""
|
5742
5523
|
|
5743
5524
|
msgid "allow unauthenticed pull of container images"
|
5744
5525
|
msgstr ""
|
5745
5526
|
|
5746
|
-
|
5527
|
+
msgid "already belongs to the content view"
|
5528
|
+
msgstr ""
|
5529
|
+
|
5747
5530
|
msgid "already taken"
|
5748
|
-
msgstr "
|
5531
|
+
msgstr ""
|
5749
5532
|
|
5750
5533
|
msgid "an ansible collection"
|
5751
5534
|
msgstr ""
|
5752
5535
|
|
5753
|
-
#, fuzzy
|
5754
5536
|
msgid "an erratum"
|
5755
|
-
msgstr "
|
5537
|
+
msgstr ""
|
5756
5538
|
|
5757
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
5758
|
-
#, fuzzy
|
5759
5539
|
msgid "an organization"
|
5760
|
-
msgstr "
|
5540
|
+
msgstr ""
|
5761
5541
|
|
5762
5542
|
msgid "an ostree branch"
|
5763
5543
|
msgstr ""
|
@@ -5768,9 +5548,6 @@ msgstr ""
|
|
5768
5548
|
msgid "attempted to sync without a feed URL"
|
5769
5549
|
msgstr ""
|
5770
5550
|
|
5771
|
-
msgid "author of the puppet module"
|
5772
|
-
msgstr ""
|
5773
|
-
|
5774
5551
|
msgid "auto attach subscriptions upon registration"
|
5775
5552
|
msgstr ""
|
5776
5553
|
|
@@ -5780,43 +5557,35 @@ msgstr ""
|
|
5780
5557
|
msgid "can the activation key have unlimited hosts"
|
5781
5558
|
msgstr ""
|
5782
5559
|
|
5783
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5784
5560
|
msgid "can't be blank"
|
5785
|
-
msgstr "
|
5561
|
+
msgstr ""
|
5786
5562
|
|
5787
5563
|
msgid "cannot add filter to import-only view"
|
5788
5564
|
msgstr ""
|
5789
5565
|
|
5790
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5791
5566
|
msgid "cannot be a binary file."
|
5792
|
-
msgstr "
|
5567
|
+
msgstr ""
|
5793
5568
|
|
5794
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5795
5569
|
msgid "cannot be blank"
|
5796
|
-
msgstr "
|
5570
|
+
msgstr ""
|
5797
5571
|
|
5798
5572
|
msgid "cannot be blank when Repository URL is provided."
|
5799
5573
|
msgstr ""
|
5800
5574
|
|
5801
|
-
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5802
|
-
#, fuzzy
|
5803
5575
|
msgid "cannot be changed."
|
5804
|
-
msgstr "
|
5576
|
+
msgstr ""
|
5805
5577
|
|
5806
|
-
#, fuzzy
|
5807
5578
|
msgid "cannot be deleted if it has been promoted."
|
5808
|
-
msgstr "
|
5579
|
+
msgstr ""
|
5809
5580
|
|
5810
5581
|
msgid "cannot be less than one"
|
5811
5582
|
msgstr ""
|
5812
5583
|
|
5813
|
-
#, fuzzy
|
5814
5584
|
msgid "cannot be lower than current usage count (%s)"
|
5815
|
-
msgstr "
|
5585
|
+
msgstr ""
|
5816
5586
|
|
5817
|
-
#, fuzzy
|
5818
5587
|
msgid "cannot be nil"
|
5819
|
-
msgstr "
|
5588
|
+
msgstr ""
|
5820
5589
|
|
5821
5590
|
msgid "cannot be set because unlimited hosts is set"
|
5822
5591
|
msgstr ""
|
@@ -5827,23 +5596,20 @@ msgstr ""
|
|
5827
5596
|
msgid "cannot be set for non-yum repositories."
|
5828
5597
|
msgstr ""
|
5829
5598
|
|
5830
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5831
5599
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5832
|
-
msgstr "
|
5600
|
+
msgstr ""
|
5833
5601
|
|
5834
5602
|
msgid "cannot contain commas"
|
5835
5603
|
msgstr ""
|
5836
5604
|
|
5837
|
-
#, fuzzy
|
5838
5605
|
msgid "cannot contain filters if composite view"
|
5839
|
-
msgstr "
|
5606
|
+
msgstr ""
|
5840
5607
|
|
5841
5608
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5842
5609
|
msgstr ""
|
5843
5610
|
|
5844
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5845
5611
|
msgid "cannot contain more than %s characters"
|
5846
|
-
msgstr "
|
5612
|
+
msgstr ""
|
5847
5613
|
|
5848
5614
|
msgid "checking Candlepin task status"
|
5849
5615
|
msgstr ""
|
@@ -5851,15 +5617,6 @@ msgstr ""
|
|
5851
5617
|
msgid "checking Pulp task status"
|
5852
5618
|
msgstr ""
|
5853
5619
|
|
5854
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5855
|
-
msgstr ""
|
5856
|
-
|
5857
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5858
|
-
msgstr ""
|
5859
|
-
|
5860
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5861
|
-
msgstr ""
|
5862
|
-
|
5863
5620
|
msgid "composite content view identifier"
|
5864
5621
|
msgstr ""
|
5865
5622
|
|
@@ -5872,7 +5629,7 @@ msgstr ""
|
|
5872
5629
|
msgid "content release version"
|
5873
5630
|
msgstr ""
|
5874
5631
|
|
5875
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5632
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5876
5633
|
msgstr ""
|
5877
5634
|
|
5878
5635
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5899,13 +5656,11 @@ msgstr ""
|
|
5899
5656
|
msgid "content view numeric identifier"
|
5900
5657
|
msgstr ""
|
5901
5658
|
|
5902
|
-
#, fuzzy
|
5903
5659
|
msgid "content view publish"
|
5904
|
-
msgstr "
|
5660
|
+
msgstr ""
|
5905
5661
|
|
5906
|
-
#, fuzzy
|
5907
5662
|
msgid "content view refresh"
|
5908
|
-
msgstr "
|
5663
|
+
msgstr ""
|
5909
5664
|
|
5910
5665
|
msgid "content view to reassign orphaned activation keys to"
|
5911
5666
|
msgstr ""
|
@@ -5976,9 +5731,8 @@ msgstr ""
|
|
5976
5731
|
msgid "environment to reassign orphaned systems to"
|
5977
5732
|
msgstr ""
|
5978
5733
|
|
5979
|
-
#, fuzzy
|
5980
5734
|
msgid "environments"
|
5981
|
-
msgstr "
|
5735
|
+
msgstr ""
|
5982
5736
|
|
5983
5737
|
msgid "errata_id of the content view filter rule"
|
5984
5738
|
msgstr ""
|
@@ -6034,9 +5788,8 @@ msgstr ""
|
|
6034
5788
|
msgid "foreman-tasks service not running or is not ready yet"
|
6035
5789
|
msgstr ""
|
6036
5790
|
|
6037
|
-
#, fuzzy
|
6038
5791
|
msgid "has already been taken"
|
6039
|
-
msgstr "
|
5792
|
+
msgstr ""
|
6040
5793
|
|
6041
5794
|
msgid "has already been taken for a product in this organization."
|
6042
5795
|
msgstr ""
|
@@ -6083,29 +5836,23 @@ msgstr ""
|
|
6083
5836
|
msgid "initiating Pulp task"
|
6084
5837
|
msgstr ""
|
6085
5838
|
|
6086
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6087
5839
|
msgid "installing errata..."
|
6088
|
-
msgstr "
|
5840
|
+
msgstr ""
|
6089
5841
|
|
6090
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6091
5842
|
msgid "installing erratum..."
|
6092
|
-
msgstr "
|
5843
|
+
msgstr ""
|
6093
5844
|
|
6094
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6095
5845
|
msgid "installing package group..."
|
6096
|
-
msgstr "
|
5846
|
+
msgstr ""
|
6097
5847
|
|
6098
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6099
5848
|
msgid "installing package groups..."
|
6100
|
-
msgstr "
|
5849
|
+
msgstr ""
|
6101
5850
|
|
6102
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6103
5851
|
msgid "installing package..."
|
6104
|
-
msgstr "
|
5852
|
+
msgstr ""
|
6105
5853
|
|
6106
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6107
5854
|
msgid "installing packages..."
|
6108
|
-
msgstr "
|
5855
|
+
msgstr ""
|
6109
5856
|
|
6110
5857
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
6111
5858
|
msgstr ""
|
@@ -6119,7 +5866,6 @@ msgstr ""
|
|
6119
5866
|
msgid "is already attached to the capsule"
|
6120
5867
|
msgstr ""
|
6121
5868
|
|
6122
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
6123
5869
|
msgid "is invalid"
|
6124
5870
|
msgstr "ಇದು ಅಸಿಂಧುವಾಗಿದೆ"
|
6125
5871
|
|
@@ -6159,15 +5905,9 @@ msgstr ""
|
|
6159
5905
|
msgid "maximum size of each ISO in MB"
|
6160
5906
|
msgstr ""
|
6161
5907
|
|
6162
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6163
|
-
msgstr ""
|
6164
|
-
|
6165
5908
|
msgid "may not be less than the number of hosts associated with the host collection."
|
6166
5909
|
msgstr ""
|
6167
5910
|
|
6168
|
-
msgid "module name to restrict modules for"
|
6169
|
-
msgstr ""
|
6170
|
-
|
6171
5911
|
msgid "module stream ids"
|
6172
5912
|
msgstr ""
|
6173
5913
|
|
@@ -6177,9 +5917,8 @@ msgstr ""
|
|
6177
5917
|
msgid "must be %{gpg_key} or %{cert}"
|
6178
5918
|
msgstr ""
|
6179
5919
|
|
6180
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6181
5920
|
msgid "must be a positive integer value."
|
6182
|
-
msgstr "
|
5921
|
+
msgstr ""
|
6183
5922
|
|
6184
5923
|
msgid "must be one of the following: %s"
|
6185
5924
|
msgstr ""
|
@@ -6187,21 +5926,17 @@ msgstr ""
|
|
6187
5926
|
msgid "must be one of: %s"
|
6188
5927
|
msgstr ""
|
6189
5928
|
|
6190
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6191
5929
|
msgid "must be unique within one organization"
|
6192
|
-
msgstr "
|
5930
|
+
msgstr ""
|
6193
5931
|
|
6194
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
6195
5932
|
msgid "must contain '%s'"
|
6196
|
-
msgstr "
|
5933
|
+
msgstr ""
|
6197
5934
|
|
6198
|
-
#, fuzzy
|
6199
5935
|
msgid "must contain GPG Key"
|
6200
|
-
msgstr "
|
5936
|
+
msgstr ""
|
6201
5937
|
|
6202
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
6203
5938
|
msgid "must contain at least %s character"
|
6204
|
-
msgstr "
|
5939
|
+
msgstr ""
|
6205
5940
|
|
6206
5941
|
msgid "must contain valid Public GPG Key"
|
6207
5942
|
msgstr ""
|
@@ -6209,9 +5944,8 @@ msgstr ""
|
|
6209
5944
|
msgid "must contain valid Public GPG Key"
|
6210
5945
|
msgstr ""
|
6211
5946
|
|
6212
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6213
5947
|
msgid "must not contain leading or trailing white spaces."
|
6214
|
-
msgstr "
|
5948
|
+
msgstr ""
|
6215
5949
|
|
6216
5950
|
msgid "name"
|
6217
5951
|
msgstr ""
|
@@ -6234,14 +5968,14 @@ msgstr ""
|
|
6234
5968
|
msgid "name of the organization"
|
6235
5969
|
msgstr ""
|
6236
5970
|
|
6237
|
-
msgid "name of the
|
5971
|
+
msgid "name of the repository"
|
6238
5972
|
msgstr ""
|
6239
5973
|
|
6240
|
-
msgid "name of the
|
5974
|
+
msgid "name of the subscription"
|
6241
5975
|
msgstr ""
|
6242
5976
|
|
6243
5977
|
msgid "name: %s doesn't exist "
|
6244
|
-
msgstr "
|
5978
|
+
msgstr ""
|
6245
5979
|
|
6246
5980
|
msgid "new name for the filter"
|
6247
5981
|
msgstr ""
|
@@ -6258,13 +5992,15 @@ msgstr ""
|
|
6258
5992
|
msgid "obtain manifest history for subscriptions"
|
6259
5993
|
msgstr ""
|
6260
5994
|
|
6261
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
6262
5995
|
msgid "of environment must be unique within one organization"
|
6263
|
-
msgstr "
|
5996
|
+
msgstr ""
|
6264
5997
|
|
6265
5998
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6266
5999
|
msgstr ""
|
6267
6000
|
|
6001
|
+
msgid "only show the repositories readable by this user with this username"
|
6002
|
+
msgstr ""
|
6003
|
+
|
6268
6004
|
msgid "optional package names to include in the package group"
|
6269
6005
|
msgstr ""
|
6270
6006
|
|
@@ -6304,6 +6040,9 @@ msgstr ""
|
|
6304
6040
|
msgid "package_ids is not an array"
|
6305
6041
|
msgstr ""
|
6306
6042
|
|
6043
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6044
|
+
msgstr ""
|
6045
|
+
|
6307
6046
|
msgid "pattern for container image names"
|
6308
6047
|
msgstr ""
|
6309
6048
|
|
@@ -6325,30 +6064,20 @@ msgstr ""
|
|
6325
6064
|
msgid "product numeric identifier"
|
6326
6065
|
msgstr ""
|
6327
6066
|
|
6328
|
-
msgid "puppet module ID"
|
6329
|
-
msgstr ""
|
6330
|
-
|
6331
|
-
msgid "puppet_module_ids is not an array"
|
6332
|
-
msgstr ""
|
6333
|
-
|
6334
6067
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6335
6068
|
msgstr ""
|
6336
6069
|
|
6337
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6338
6070
|
msgid "removing package group..."
|
6339
|
-
msgstr "
|
6071
|
+
msgstr ""
|
6340
6072
|
|
6341
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6342
6073
|
msgid "removing package groups..."
|
6343
|
-
msgstr "
|
6074
|
+
msgstr ""
|
6344
6075
|
|
6345
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6346
6076
|
msgid "removing package..."
|
6347
|
-
msgstr "
|
6077
|
+
msgstr ""
|
6348
6078
|
|
6349
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6350
6079
|
msgid "removing packages..."
|
6351
|
-
msgstr "
|
6080
|
+
msgstr ""
|
6352
6081
|
|
6353
6082
|
msgid "repo label"
|
6354
6083
|
msgstr ""
|
@@ -6428,17 +6157,7 @@ msgstr ""
|
|
6428
6157
|
msgid "temporarily override feed URL for sync"
|
6429
6158
|
msgstr ""
|
6430
6159
|
|
6431
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6432
6160
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6433
|
-
msgstr "Red Hat ಒದಗಿಸುವವರಿಗೆ ಈ ಕೆಳಗಿನ ಗುಣವಿಶೇಷಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: [ %s ]"
|
6434
|
-
|
6435
|
-
msgid "the id of the puppet module to associate"
|
6436
|
-
msgstr ""
|
6437
|
-
|
6438
|
-
msgid "the uuid of the puppet module to associate"
|
6439
|
-
msgstr ""
|
6440
|
-
|
6441
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6442
6161
|
msgstr ""
|
6443
6162
|
|
6444
6163
|
msgid "true if the latest version of the component's content view is desired"
|
@@ -6468,26 +6187,19 @@ msgstr ""
|
|
6468
6187
|
msgid "update a filter"
|
6469
6188
|
msgstr ""
|
6470
6189
|
|
6471
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6472
6190
|
msgid "updating package group..."
|
6473
|
-
msgstr "
|
6191
|
+
msgstr ""
|
6474
6192
|
|
6475
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6476
6193
|
msgid "updating package groups..."
|
6477
|
-
msgstr "
|
6194
|
+
msgstr ""
|
6478
6195
|
|
6479
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6480
6196
|
msgid "updating package..."
|
6481
|
-
msgstr "
|
6197
|
+
msgstr ""
|
6482
6198
|
|
6483
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6484
6199
|
msgid "updating packages..."
|
6485
|
-
msgstr "ಪ್ಯಾಕೇಜುಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
6486
|
-
|
6487
|
-
msgid "url not defined."
|
6488
6200
|
msgstr ""
|
6489
6201
|
|
6490
|
-
msgid "
|
6202
|
+
msgid "url not defined."
|
6491
6203
|
msgstr ""
|
6492
6204
|
|
6493
6205
|
msgid "waiting for Candlepin to finish the task"
|
@@ -6499,6 +6211,15 @@ msgstr ""
|
|
6499
6211
|
msgid "waiting for Pulp to start the task"
|
6500
6212
|
msgstr ""
|
6501
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
|
+
|
6502
6223
|
msgid "with"
|
6503
6224
|
msgstr ""
|
6504
6225
|
|