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/pa/katello.po
CHANGED
@@ -1,28 +1,28 @@
|
|
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
|
-
# jassy <jassy@fedoraproject.org>, 2013. #zanata
|
7
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
8
|
+
#
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version:
|
11
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
12
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: Panjabi (Punjabi) (https://www.transifex.com/foreman/teams/114/"
|
16
|
+
"pa/)\n"
|
13
17
|
"MIME-Version: 1.0\n"
|
14
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
15
19
|
"Content-Transfer-Encoding: 8bit\n"
|
16
|
-
"PO-Revision-Date: 2013-07-09 04:33-0400\n"
|
17
|
-
"Last-Translator: jassy <jassy@fedoraproject.org>\n"
|
18
|
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
20
|
"Language: pa\n"
|
20
21
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21
|
-
"X-Generator: Zanata 3.6.2\n"
|
22
22
|
|
23
23
|
msgid ""
|
24
24
|
"\n"
|
25
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
25
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
26
26
|
msgstr ""
|
27
27
|
|
28
28
|
msgid " %{errata_count} Errata"
|
@@ -34,18 +34,17 @@ msgstr ""
|
|
34
34
|
msgid " %{package_count} Package(s)"
|
35
35
|
msgstr ""
|
36
36
|
|
37
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
38
|
-
msgstr ""
|
39
|
-
|
40
37
|
msgid " Content view updated."
|
41
38
|
msgstr ""
|
42
39
|
|
43
40
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
44
41
|
msgstr ""
|
45
42
|
|
46
|
-
|
43
|
+
msgid " RPMs"
|
44
|
+
msgstr ""
|
45
|
+
|
47
46
|
msgid " environment cannot be set to an environment already on its path"
|
48
|
-
msgstr "
|
47
|
+
msgstr ""
|
49
48
|
|
50
49
|
msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
|
51
50
|
msgstr ""
|
@@ -53,10 +52,8 @@ msgstr ""
|
|
53
52
|
msgid "%s Available"
|
54
53
|
msgstr ""
|
55
54
|
|
56
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
57
|
-
#, fuzzy
|
58
55
|
msgid "%s Errata"
|
59
|
-
msgstr "
|
56
|
+
msgstr ""
|
60
57
|
|
61
58
|
msgid "%s Host"
|
62
59
|
msgid_plural "%s Hosts"
|
@@ -66,16 +63,14 @@ msgstr[1] ""
|
|
66
63
|
msgid "%s Used"
|
67
64
|
msgstr ""
|
68
65
|
|
69
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
70
66
|
msgid "%s ago"
|
71
67
|
msgstr "%s ਪਹਿਲਾਂ"
|
72
68
|
|
73
69
|
msgid "%s has already been deleted"
|
74
70
|
msgstr ""
|
75
71
|
|
76
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
77
72
|
msgid "%s is not a valid package name"
|
78
|
-
msgstr "
|
73
|
+
msgstr ""
|
79
74
|
|
80
75
|
msgid "%s is unreachable. %s"
|
81
76
|
msgstr ""
|
@@ -83,236 +78,179 @@ msgstr ""
|
|
83
78
|
msgid "%s must be an array."
|
84
79
|
msgstr ""
|
85
80
|
|
86
|
-
#, fuzzy
|
87
81
|
msgid "%{errata} (%{total} other errata)"
|
88
|
-
msgstr "
|
82
|
+
msgstr ""
|
89
83
|
|
90
|
-
#, fuzzy
|
91
84
|
msgid "%{errata} (%{total} other errata) install canceled"
|
92
|
-
msgstr "
|
85
|
+
msgstr ""
|
93
86
|
|
94
|
-
#, fuzzy
|
95
87
|
msgid "%{errata} (%{total} other errata) install failed"
|
96
|
-
msgstr "
|
88
|
+
msgstr ""
|
97
89
|
|
98
|
-
#, fuzzy
|
99
90
|
msgid "%{errata} (%{total} other errata) install timed out"
|
100
|
-
msgstr "
|
91
|
+
msgstr ""
|
101
92
|
|
102
|
-
#, fuzzy
|
103
93
|
msgid "%{errata} (%{total} other errata) installed"
|
104
|
-
msgstr "
|
94
|
+
msgstr ""
|
105
95
|
|
106
|
-
#, fuzzy
|
107
96
|
msgid "%{errata} erratum install canceled"
|
108
|
-
msgstr "
|
97
|
+
msgstr ""
|
109
98
|
|
110
|
-
#, fuzzy
|
111
99
|
msgid "%{errata} erratum install failed"
|
112
|
-
msgstr "
|
100
|
+
msgstr ""
|
113
101
|
|
114
|
-
#, fuzzy
|
115
102
|
msgid "%{errata} erratum install timed out"
|
116
|
-
msgstr "
|
103
|
+
msgstr ""
|
117
104
|
|
118
|
-
#, fuzzy
|
119
105
|
msgid "%{errata} erratum installed"
|
120
|
-
msgstr "
|
106
|
+
msgstr ""
|
121
107
|
|
122
108
|
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."
|
123
109
|
msgstr ""
|
124
110
|
|
125
|
-
#, fuzzy
|
126
111
|
msgid "%{group} (%{total} other package groups)"
|
127
|
-
msgstr "
|
112
|
+
msgstr ""
|
128
113
|
|
129
|
-
#, fuzzy
|
130
114
|
msgid "%{group} (%{total} other package groups) install canceled"
|
131
|
-
msgstr "
|
115
|
+
msgstr ""
|
132
116
|
|
133
|
-
#, fuzzy
|
134
117
|
msgid "%{group} (%{total} other package groups) install failed"
|
135
|
-
msgstr "
|
118
|
+
msgstr ""
|
136
119
|
|
137
|
-
#, fuzzy
|
138
120
|
msgid "%{group} (%{total} other package groups) install timed out"
|
139
|
-
msgstr "
|
121
|
+
msgstr ""
|
140
122
|
|
141
|
-
#, fuzzy
|
142
123
|
msgid "%{group} (%{total} other package groups) installed"
|
143
|
-
msgstr "
|
124
|
+
msgstr ""
|
144
125
|
|
145
|
-
#, fuzzy
|
146
126
|
msgid "%{group} (%{total} other package groups) remove canceled"
|
147
|
-
msgstr "
|
127
|
+
msgstr ""
|
148
128
|
|
149
|
-
#, fuzzy
|
150
129
|
msgid "%{group} (%{total} other package groups) remove failed"
|
151
|
-
msgstr "
|
130
|
+
msgstr ""
|
152
131
|
|
153
|
-
#, fuzzy
|
154
132
|
msgid "%{group} (%{total} other package groups) remove timed out"
|
155
|
-
msgstr "
|
133
|
+
msgstr ""
|
156
134
|
|
157
|
-
#, fuzzy
|
158
135
|
msgid "%{group} (%{total} other package groups) removed"
|
159
|
-
msgstr "
|
136
|
+
msgstr ""
|
160
137
|
|
161
|
-
#, fuzzy
|
162
138
|
msgid "%{group} (%{total} other package groups) update canceled"
|
163
|
-
msgstr "
|
139
|
+
msgstr ""
|
164
140
|
|
165
|
-
#, fuzzy
|
166
141
|
msgid "%{group} (%{total} other package groups) update failed"
|
167
|
-
msgstr "
|
142
|
+
msgstr ""
|
168
143
|
|
169
|
-
#, fuzzy
|
170
144
|
msgid "%{group} (%{total} other package groups) update timed out"
|
171
|
-
msgstr "
|
145
|
+
msgstr ""
|
172
146
|
|
173
|
-
#, fuzzy
|
174
147
|
msgid "%{group} (%{total} other package groups) updated"
|
175
|
-
msgstr "
|
148
|
+
msgstr ""
|
176
149
|
|
177
|
-
#, fuzzy
|
178
150
|
msgid "%{group} package group install canceled"
|
179
|
-
msgstr "
|
151
|
+
msgstr ""
|
180
152
|
|
181
|
-
#, fuzzy
|
182
153
|
msgid "%{group} package group install failed"
|
183
|
-
msgstr "
|
154
|
+
msgstr ""
|
184
155
|
|
185
|
-
#, fuzzy
|
186
156
|
msgid "%{group} package group install timed out"
|
187
|
-
msgstr "
|
157
|
+
msgstr ""
|
188
158
|
|
189
|
-
#, fuzzy
|
190
159
|
msgid "%{group} package group installed"
|
191
|
-
msgstr "
|
160
|
+
msgstr ""
|
192
161
|
|
193
|
-
#, fuzzy
|
194
162
|
msgid "%{group} package group remove canceled"
|
195
|
-
msgstr "
|
163
|
+
msgstr ""
|
196
164
|
|
197
|
-
#, fuzzy
|
198
165
|
msgid "%{group} package group remove failed"
|
199
|
-
msgstr "
|
166
|
+
msgstr ""
|
200
167
|
|
201
|
-
#, fuzzy
|
202
168
|
msgid "%{group} package group remove timed out"
|
203
|
-
msgstr "
|
169
|
+
msgstr ""
|
204
170
|
|
205
|
-
#, fuzzy
|
206
171
|
msgid "%{group} package group removed"
|
207
|
-
msgstr "
|
172
|
+
msgstr ""
|
208
173
|
|
209
|
-
#, fuzzy
|
210
174
|
msgid "%{group} package group update canceled"
|
211
|
-
msgstr "
|
175
|
+
msgstr ""
|
212
176
|
|
213
|
-
#, fuzzy
|
214
177
|
msgid "%{group} package group update failed"
|
215
|
-
msgstr "
|
178
|
+
msgstr ""
|
216
179
|
|
217
|
-
#, fuzzy
|
218
180
|
msgid "%{group} package group update timed out"
|
219
|
-
msgstr "
|
181
|
+
msgstr ""
|
220
182
|
|
221
|
-
#, fuzzy
|
222
183
|
msgid "%{group} package group updated"
|
223
|
-
msgstr "
|
184
|
+
msgstr ""
|
224
185
|
|
225
|
-
#, fuzzy
|
226
186
|
msgid "%{package} (%{total} other packages)"
|
227
|
-
msgstr "
|
187
|
+
msgstr ""
|
228
188
|
|
229
|
-
#, fuzzy
|
230
189
|
msgid "%{package} (%{total} other packages) install canceled"
|
231
|
-
msgstr "
|
190
|
+
msgstr ""
|
232
191
|
|
233
|
-
#, fuzzy
|
234
192
|
msgid "%{package} (%{total} other packages) install failed"
|
235
|
-
msgstr "
|
193
|
+
msgstr ""
|
236
194
|
|
237
|
-
#, fuzzy
|
238
195
|
msgid "%{package} (%{total} other packages) install timed out"
|
239
|
-
msgstr "
|
196
|
+
msgstr ""
|
240
197
|
|
241
|
-
#, fuzzy
|
242
198
|
msgid "%{package} (%{total} other packages) installed"
|
243
|
-
msgstr "
|
199
|
+
msgstr ""
|
244
200
|
|
245
|
-
#, fuzzy
|
246
201
|
msgid "%{package} (%{total} other packages) remove canceled"
|
247
|
-
msgstr "
|
202
|
+
msgstr ""
|
248
203
|
|
249
|
-
#, fuzzy
|
250
204
|
msgid "%{package} (%{total} other packages) remove failed"
|
251
|
-
msgstr "
|
205
|
+
msgstr ""
|
252
206
|
|
253
|
-
#, fuzzy
|
254
207
|
msgid "%{package} (%{total} other packages) remove timed out"
|
255
|
-
msgstr "
|
208
|
+
msgstr ""
|
256
209
|
|
257
|
-
#, fuzzy
|
258
210
|
msgid "%{package} (%{total} other packages) removed"
|
259
|
-
msgstr "
|
211
|
+
msgstr ""
|
260
212
|
|
261
|
-
#, fuzzy
|
262
213
|
msgid "%{package} (%{total} other packages) update canceled"
|
263
|
-
msgstr "
|
214
|
+
msgstr ""
|
264
215
|
|
265
|
-
#, fuzzy
|
266
216
|
msgid "%{package} (%{total} other packages) update failed"
|
267
|
-
msgstr "
|
217
|
+
msgstr ""
|
268
218
|
|
269
|
-
#, fuzzy
|
270
219
|
msgid "%{package} (%{total} other packages) update timed out"
|
271
|
-
msgstr "
|
220
|
+
msgstr ""
|
272
221
|
|
273
|
-
#, fuzzy
|
274
222
|
msgid "%{package} (%{total} other packages) updated"
|
275
|
-
msgstr "
|
223
|
+
msgstr ""
|
276
224
|
|
277
|
-
#, fuzzy
|
278
225
|
msgid "%{package} package install canceled"
|
279
|
-
msgstr "
|
226
|
+
msgstr ""
|
280
227
|
|
281
|
-
#, fuzzy
|
282
228
|
msgid "%{package} package install timed out"
|
283
|
-
msgstr "
|
229
|
+
msgstr ""
|
284
230
|
|
285
|
-
#, fuzzy
|
286
231
|
msgid "%{package} package remove canceled"
|
287
|
-
msgstr "
|
232
|
+
msgstr ""
|
288
233
|
|
289
|
-
#, fuzzy
|
290
234
|
msgid "%{package} package remove failed"
|
291
|
-
msgstr "
|
235
|
+
msgstr ""
|
292
236
|
|
293
|
-
#, fuzzy
|
294
237
|
msgid "%{package} package remove timed out"
|
295
|
-
msgstr "
|
238
|
+
msgstr ""
|
296
239
|
|
297
|
-
#, fuzzy
|
298
240
|
msgid "%{package} package removed"
|
299
|
-
msgstr "
|
241
|
+
msgstr ""
|
300
242
|
|
301
|
-
#, fuzzy
|
302
243
|
msgid "%{package} package update canceled"
|
303
|
-
msgstr "
|
244
|
+
msgstr ""
|
304
245
|
|
305
|
-
#, fuzzy
|
306
246
|
msgid "%{package} package update failed"
|
307
|
-
msgstr "
|
247
|
+
msgstr ""
|
308
248
|
|
309
|
-
#, fuzzy
|
310
249
|
msgid "%{package} package update timed out"
|
311
|
-
msgstr "
|
250
|
+
msgstr ""
|
312
251
|
|
313
|
-
#, fuzzy
|
314
252
|
msgid "%{package} package updated"
|
315
|
-
msgstr "
|
253
|
+
msgstr ""
|
316
254
|
|
317
255
|
msgid "%{sla}"
|
318
256
|
msgstr ""
|
@@ -338,9 +276,8 @@ msgstr ""
|
|
338
276
|
msgid ", must be unique to major and version id version."
|
339
277
|
msgstr ""
|
340
278
|
|
341
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
342
279
|
msgid ": '%s' is a built-in environment"
|
343
|
-
msgstr "
|
280
|
+
msgstr ""
|
344
281
|
|
345
282
|
msgid ":a_resource identifier"
|
346
283
|
msgstr ""
|
@@ -354,15 +291,17 @@ msgstr ""
|
|
354
291
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
355
292
|
msgstr ""
|
356
293
|
|
294
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
295
|
+
msgstr ""
|
296
|
+
|
357
297
|
msgid "A backend service [ %s ] is unreachable"
|
358
298
|
msgstr ""
|
359
299
|
|
360
300
|
msgid "A content view can be added by using the \"New content view\" button below."
|
361
301
|
msgstr ""
|
362
302
|
|
363
|
-
#, fuzzy
|
364
303
|
msgid "A content_type must be provided."
|
365
|
-
msgstr "
|
304
|
+
msgstr ""
|
366
305
|
|
367
306
|
msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
|
368
307
|
msgstr ""
|
@@ -391,6 +330,9 @@ msgstr ""
|
|
391
330
|
msgid "A summary of new errata after a repository is synchronized"
|
392
331
|
msgstr ""
|
393
332
|
|
333
|
+
msgid "About page"
|
334
|
+
msgstr ""
|
335
|
+
|
394
336
|
msgid "Abstract async task"
|
395
337
|
msgstr ""
|
396
338
|
|
@@ -400,44 +342,49 @@ msgstr ""
|
|
400
342
|
msgid "Account Number"
|
401
343
|
msgstr ""
|
402
344
|
|
345
|
+
msgid "Action"
|
346
|
+
msgstr "ਕਾਰਵਾਈ"
|
347
|
+
|
403
348
|
msgid "Action not allowed for the default smart proxy."
|
404
349
|
msgstr ""
|
405
350
|
|
406
|
-
msgid "Action unauthorized to be performed
|
351
|
+
msgid "Action unauthorized to be performed in this organization."
|
407
352
|
msgstr ""
|
408
353
|
|
409
|
-
msgid "Action
|
354
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
410
355
|
msgstr ""
|
411
356
|
|
412
|
-
msgid "
|
357
|
+
msgid "Action with sub plans"
|
413
358
|
msgstr ""
|
414
359
|
|
415
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
416
360
|
msgid "Activation Keys"
|
417
|
-
msgstr "
|
361
|
+
msgstr ""
|
418
362
|
|
419
363
|
msgid "Activation key ID"
|
420
364
|
msgstr ""
|
421
365
|
|
422
|
-
msgid "Activation key
|
366
|
+
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."
|
367
|
+
msgstr ""
|
368
|
+
|
369
|
+
msgid "Activation key(s) for Subscription Manager."
|
370
|
+
msgstr ""
|
371
|
+
|
372
|
+
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"
|
423
373
|
msgstr ""
|
424
374
|
|
425
|
-
#, fuzzy
|
426
375
|
msgid "Activation keys and subscriptions can be managed"
|
427
|
-
msgstr "
|
376
|
+
msgstr ""
|
377
|
+
|
378
|
+
msgid "Activation keys: "
|
379
|
+
msgstr ""
|
428
380
|
|
429
381
|
msgid "Active Subscriptions"
|
430
382
|
msgstr ""
|
431
383
|
|
432
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
433
|
-
#, fuzzy
|
434
384
|
msgid "Active only"
|
435
|
-
msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
|
436
|
-
|
437
|
-
msgid "Add Subscriptions"
|
438
385
|
msgstr ""
|
439
386
|
|
440
|
-
msgid "Add
|
387
|
+
msgid "Add Subscriptions"
|
441
388
|
msgstr ""
|
442
389
|
|
443
390
|
msgid "Add a subscription to a host"
|
@@ -473,13 +420,22 @@ msgstr ""
|
|
473
420
|
msgid "Add subscriptions to one or more hosts"
|
474
421
|
msgstr ""
|
475
422
|
|
423
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
424
|
+
msgstr ""
|
425
|
+
|
426
|
+
msgid "Add to this filter using the 'Add package group' button."
|
427
|
+
msgstr ""
|
428
|
+
|
429
|
+
msgid "Added"
|
430
|
+
msgstr ""
|
431
|
+
|
476
432
|
msgid "Added Content:"
|
477
433
|
msgstr ""
|
478
434
|
|
479
435
|
msgid "Adding content units"
|
480
436
|
msgstr ""
|
481
437
|
|
482
|
-
msgid "
|
438
|
+
msgid "Additional content"
|
483
439
|
msgstr ""
|
484
440
|
|
485
441
|
msgid "Addons"
|
@@ -541,6 +497,9 @@ msgstr ""
|
|
541
497
|
msgid "Arch"
|
542
498
|
msgstr ""
|
543
499
|
|
500
|
+
msgid "Architecture"
|
501
|
+
msgstr ""
|
502
|
+
|
544
503
|
msgid "Architecture of content in the repository"
|
545
504
|
msgstr ""
|
546
505
|
|
@@ -615,21 +574,17 @@ msgstr ""
|
|
615
574
|
msgid "At least one Content View Version must be specified"
|
616
575
|
msgstr ""
|
617
576
|
|
618
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
619
577
|
msgid "At least one activation key must be provided"
|
620
|
-
msgstr "
|
578
|
+
msgstr ""
|
621
579
|
|
622
580
|
msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
|
623
581
|
msgstr ""
|
624
582
|
|
625
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
626
583
|
msgid "At least one organization must exist."
|
627
|
-
msgstr "
|
584
|
+
msgstr ""
|
628
585
|
|
629
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
630
|
-
#, fuzzy
|
631
586
|
msgid "Attach a subscription"
|
632
|
-
msgstr "
|
587
|
+
msgstr ""
|
633
588
|
|
634
589
|
msgid "Attach subscriptions"
|
635
590
|
msgstr ""
|
@@ -641,7 +596,7 @@ msgid "Attempted to destroy consumer %s from candlepin, but consumer does not ex
|
|
641
596
|
msgstr ""
|
642
597
|
|
643
598
|
msgid "Author"
|
644
|
-
msgstr ""
|
599
|
+
msgstr "ਲੇਖਕ"
|
645
600
|
|
646
601
|
msgid "Auto Publish"
|
647
602
|
msgstr ""
|
@@ -649,10 +604,8 @@ msgstr ""
|
|
649
604
|
msgid "Auto Publish - Triggered by '%s'"
|
650
605
|
msgstr ""
|
651
606
|
|
652
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
653
|
-
#, fuzzy
|
654
607
|
msgid "Auto attach subscriptions"
|
655
|
-
msgstr "
|
608
|
+
msgstr ""
|
656
609
|
|
657
610
|
msgid "Autopublish"
|
658
611
|
msgstr ""
|
@@ -702,14 +655,11 @@ msgstr ""
|
|
702
655
|
msgid "Branches updated"
|
703
656
|
msgstr ""
|
704
657
|
|
705
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
706
658
|
msgid "Bug Fix"
|
707
|
-
msgstr "
|
659
|
+
msgstr ""
|
708
660
|
|
709
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
710
|
-
#, fuzzy
|
711
661
|
msgid "Bugfix"
|
712
|
-
msgstr "
|
662
|
+
msgstr ""
|
713
663
|
|
714
664
|
msgid "Bulk generate applicability for hosts"
|
715
665
|
msgstr ""
|
@@ -717,17 +667,14 @@ msgstr ""
|
|
717
667
|
msgid "CDN SSL version"
|
718
668
|
msgstr ""
|
719
669
|
|
720
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
721
670
|
msgid "CDN loading error: %s not found"
|
722
|
-
msgstr "
|
671
|
+
msgstr ""
|
723
672
|
|
724
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
725
673
|
msgid "CDN loading error: access denied to %s"
|
726
|
-
msgstr "
|
674
|
+
msgstr ""
|
727
675
|
|
728
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
729
676
|
msgid "CDN loading error: access forbidden to %s"
|
730
|
-
msgstr "
|
677
|
+
msgstr ""
|
731
678
|
|
732
679
|
msgid "CVE identifier"
|
733
680
|
msgstr ""
|
@@ -753,11 +700,9 @@ msgstr ""
|
|
753
700
|
msgid "Can only upload to Yum Repositories."
|
754
701
|
msgstr ""
|
755
702
|
|
756
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
757
703
|
msgid "Can't update the '%s' environment"
|
758
|
-
msgstr "
|
704
|
+
msgstr ""
|
759
705
|
|
760
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
761
706
|
msgid "Cancel"
|
762
707
|
msgstr "ਰੱਦ ਕਰੋ"
|
763
708
|
|
@@ -767,22 +712,17 @@ msgstr ""
|
|
767
712
|
msgid "Cancel running smart proxy synchronization"
|
768
713
|
msgstr ""
|
769
714
|
|
770
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
771
|
-
#, fuzzy
|
772
715
|
msgid "Canceled"
|
773
|
-
msgstr "
|
716
|
+
msgstr ""
|
774
717
|
|
775
718
|
msgid "Cancelled"
|
776
719
|
msgstr ""
|
777
720
|
|
778
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
779
|
-
#, fuzzy
|
780
721
|
msgid "Cancelled."
|
781
|
-
msgstr "
|
722
|
+
msgstr ""
|
782
723
|
|
783
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
784
724
|
msgid "Candlepin Event"
|
785
|
-
msgstr "
|
725
|
+
msgstr ""
|
786
726
|
|
787
727
|
msgid "Candlepin ID of pool to add"
|
788
728
|
msgstr ""
|
@@ -823,16 +763,14 @@ msgstr ""
|
|
823
763
|
msgid "Cannot clone into the Default Content View"
|
824
764
|
msgstr ""
|
825
765
|
|
826
|
-
#, fuzzy
|
827
766
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
828
|
-
msgstr "
|
767
|
+
msgstr ""
|
829
768
|
|
830
769
|
msgid "Cannot delete Red Hat product: %{product}"
|
831
770
|
msgstr ""
|
832
771
|
|
833
|
-
#, fuzzy
|
834
772
|
msgid "Cannot delete from %s, view does not exist there."
|
835
|
-
msgstr "
|
773
|
+
msgstr ""
|
836
774
|
|
837
775
|
msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
|
838
776
|
msgstr ""
|
@@ -843,29 +781,23 @@ msgstr ""
|
|
843
781
|
msgid "Cannot delete redhat product content"
|
844
782
|
msgstr ""
|
845
783
|
|
846
|
-
msgid "Cannot delete the default Location for Puppet content. If you no longer want this Location, change the default Location for Puppet content under Administer > Settings, tab Content."
|
847
|
-
msgstr ""
|
848
|
-
|
849
784
|
msgid "Cannot delete the default Location for subscribed hosts. If you no longer want this Location, change the default Location for subscribed hosts under Administer > Settings, tab Content."
|
850
785
|
msgstr ""
|
851
786
|
|
852
|
-
msgid "Cannot delete the last Location.
|
787
|
+
msgid "Cannot delete the last Location."
|
853
788
|
msgstr ""
|
854
789
|
|
855
|
-
#, fuzzy
|
856
790
|
msgid "Cannot delete version while it is in environment %s"
|
857
|
-
msgstr "
|
791
|
+
msgstr ""
|
858
792
|
|
859
|
-
#, fuzzy
|
860
793
|
msgid "Cannot delete version while it is in environments: %s"
|
861
|
-
msgstr "
|
794
|
+
msgstr ""
|
862
795
|
|
863
796
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
864
797
|
msgstr ""
|
865
798
|
|
866
|
-
#, fuzzy
|
867
799
|
msgid "Cannot delete view while it exists in environments"
|
868
|
-
msgstr "
|
800
|
+
msgstr ""
|
869
801
|
|
870
802
|
msgid "Cannot import a composite content view"
|
871
803
|
msgstr ""
|
@@ -891,9 +823,8 @@ msgstr ""
|
|
891
823
|
msgid "Cannot publish default content view"
|
892
824
|
msgstr ""
|
893
825
|
|
894
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
895
826
|
msgid "Cannot register a system to the '%s' environment"
|
896
|
-
msgstr "
|
827
|
+
msgstr ""
|
897
828
|
|
898
829
|
msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
|
899
830
|
msgstr ""
|
@@ -919,15 +850,12 @@ msgstr ""
|
|
919
850
|
msgid "Cannot specify content for composite views"
|
920
851
|
msgstr ""
|
921
852
|
|
922
|
-
msgid "Cannot sync file:// repositories with On Demand
|
853
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
923
854
|
msgstr ""
|
924
855
|
|
925
856
|
msgid "Cannot upload Container Image content."
|
926
857
|
msgstr ""
|
927
858
|
|
928
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
929
|
-
msgstr ""
|
930
|
-
|
931
859
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
932
860
|
msgstr ""
|
933
861
|
|
@@ -952,18 +880,20 @@ msgstr ""
|
|
952
880
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
953
881
|
msgstr ""
|
954
882
|
|
883
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
884
|
+
msgstr ""
|
885
|
+
|
955
886
|
msgid "Click here to go to the tasks page for the task."
|
956
887
|
msgstr ""
|
957
888
|
|
958
889
|
msgid "Clone"
|
959
|
-
msgstr ""
|
890
|
+
msgstr "ਕਲੋਨ"
|
960
891
|
|
961
892
|
msgid "Close"
|
962
|
-
msgstr ""
|
893
|
+
msgstr "ਬੰਦ"
|
963
894
|
|
964
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
965
895
|
msgid "Collapse All"
|
966
|
-
msgstr "
|
896
|
+
msgstr ""
|
967
897
|
|
968
898
|
msgid "Combined Profile Update"
|
969
899
|
msgstr ""
|
@@ -974,9 +904,8 @@ msgstr ""
|
|
974
904
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
975
905
|
msgstr ""
|
976
906
|
|
977
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
978
907
|
msgid "Component"
|
979
|
-
msgstr "
|
908
|
+
msgstr ""
|
980
909
|
|
981
910
|
msgid "Component Content View"
|
982
911
|
msgstr ""
|
@@ -1026,9 +955,8 @@ msgstr ""
|
|
1026
955
|
msgid "Container image tag"
|
1027
956
|
msgstr ""
|
1028
957
|
|
1029
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1030
958
|
msgid "Content"
|
1031
|
-
msgstr "
|
959
|
+
msgstr ""
|
1032
960
|
|
1033
961
|
msgid "Content Credential ID"
|
1034
962
|
msgstr ""
|
@@ -1045,14 +973,7 @@ msgstr ""
|
|
1045
973
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1046
974
|
msgstr ""
|
1047
975
|
|
1048
|
-
#, fuzzy
|
1049
976
|
msgid "Content Hosts"
|
1050
|
-
msgstr "ਸੰਖੇਪ"
|
1051
|
-
|
1052
|
-
msgid "Content Migration"
|
1053
|
-
msgstr ""
|
1054
|
-
|
1055
|
-
msgid "Content Migration Reset"
|
1056
977
|
msgstr ""
|
1057
978
|
|
1058
979
|
msgid "Content Source"
|
@@ -1064,11 +985,7 @@ msgstr ""
|
|
1064
985
|
msgid "Content Types"
|
1065
986
|
msgstr ""
|
1066
987
|
|
1067
|
-
#, fuzzy
|
1068
988
|
msgid "Content View"
|
1069
|
-
msgstr "ਸੰਖੇਪ"
|
1070
|
-
|
1071
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
1072
989
|
msgstr ""
|
1073
990
|
|
1074
991
|
msgid "Content View %{view}: Versions: %{versions}"
|
@@ -1083,9 +1000,8 @@ msgstr ""
|
|
1083
1000
|
msgid "Content View Details"
|
1084
1001
|
msgstr ""
|
1085
1002
|
|
1086
|
-
#, fuzzy
|
1087
1003
|
msgid "Content View Filter id"
|
1088
|
-
msgstr "
|
1004
|
+
msgstr ""
|
1089
1005
|
|
1090
1006
|
msgid "Content View Filter identifier"
|
1091
1007
|
msgstr ""
|
@@ -1114,9 +1030,8 @@ msgstr ""
|
|
1114
1030
|
msgid "Content View id"
|
1115
1031
|
msgstr ""
|
1116
1032
|
|
1117
|
-
#, fuzzy
|
1118
1033
|
msgid "Content Views"
|
1119
|
-
msgstr "
|
1034
|
+
msgstr ""
|
1120
1035
|
|
1121
1036
|
msgid "Content files to upload. Can be a single file or array of files."
|
1122
1037
|
msgstr ""
|
@@ -1124,6 +1039,9 @@ msgstr ""
|
|
1124
1039
|
msgid "Content host must be unregistered before performing this action."
|
1125
1040
|
msgstr ""
|
1126
1041
|
|
1042
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1043
|
+
msgstr ""
|
1044
|
+
|
1127
1045
|
msgid "Content source ID"
|
1128
1046
|
msgstr ""
|
1129
1047
|
|
@@ -1139,9 +1057,8 @@ msgstr ""
|
|
1139
1057
|
msgid "Content view ${name} created"
|
1140
1058
|
msgstr ""
|
1141
1059
|
|
1142
|
-
#, fuzzy
|
1143
1060
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1144
|
-
msgstr "
|
1061
|
+
msgstr ""
|
1145
1062
|
|
1146
1063
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
1147
1064
|
msgstr ""
|
@@ -1158,6 +1075,9 @@ msgstr ""
|
|
1158
1075
|
msgid "Content view label"
|
1159
1076
|
msgstr ""
|
1160
1077
|
|
1078
|
+
msgid "Content view not provided in the metadata"
|
1079
|
+
msgstr ""
|
1080
|
+
|
1161
1081
|
msgid "Content view numeric identifier"
|
1162
1082
|
msgstr ""
|
1163
1083
|
|
@@ -1167,6 +1087,9 @@ msgstr ""
|
|
1167
1087
|
msgid "Content view version identifier"
|
1168
1088
|
msgstr ""
|
1169
1089
|
|
1090
|
+
msgid "Content view version import history identifier"
|
1091
|
+
msgstr ""
|
1092
|
+
|
1170
1093
|
msgid "Content_Host_Status"
|
1171
1094
|
msgstr ""
|
1172
1095
|
|
@@ -1182,20 +1105,17 @@ msgstr ""
|
|
1182
1105
|
msgid "Contract Number"
|
1183
1106
|
msgstr ""
|
1184
1107
|
|
1185
|
-
#, fuzzy
|
1186
1108
|
msgid "Copy an activation key"
|
1187
|
-
msgstr "
|
1109
|
+
msgstr ""
|
1188
1110
|
|
1189
1111
|
msgid "Copy version units to library"
|
1190
1112
|
msgstr ""
|
1191
1113
|
|
1192
|
-
#, fuzzy
|
1193
1114
|
msgid "Cores: %s"
|
1194
|
-
msgstr "
|
1115
|
+
msgstr ""
|
1195
1116
|
|
1196
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1197
1117
|
msgid "Could not delete organization '%s'."
|
1198
|
-
msgstr "
|
1118
|
+
msgstr ""
|
1199
1119
|
|
1200
1120
|
msgid "Could not find %{content} with id '%{id}' in repository."
|
1201
1121
|
msgstr ""
|
@@ -1215,9 +1135,6 @@ msgstr ""
|
|
1215
1135
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1216
1136
|
msgstr ""
|
1217
1137
|
|
1218
|
-
msgid "Could not find Repository for module %s."
|
1219
|
-
msgstr ""
|
1220
|
-
|
1221
1138
|
msgid "Could not find a host with id %s"
|
1222
1139
|
msgstr ""
|
1223
1140
|
|
@@ -1233,28 +1150,20 @@ msgstr ""
|
|
1233
1150
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1234
1151
|
msgstr ""
|
1235
1152
|
|
1236
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1237
|
-
msgstr ""
|
1238
|
-
|
1239
1153
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1240
1154
|
msgstr ""
|
1241
1155
|
|
1242
1156
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1243
1157
|
msgstr ""
|
1244
1158
|
|
1245
|
-
#, fuzzy
|
1246
1159
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1247
|
-
msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
|
1248
|
-
|
1249
|
-
msgid "Couldn't find Organization '%s'."
|
1250
1160
|
msgstr ""
|
1251
1161
|
|
1252
|
-
msgid "Couldn't find
|
1162
|
+
msgid "Couldn't find Organization '%s'."
|
1253
1163
|
msgstr ""
|
1254
1164
|
|
1255
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1256
1165
|
msgid "Couldn't find activation key '%s'"
|
1257
|
-
msgstr "
|
1166
|
+
msgstr ""
|
1258
1167
|
|
1259
1168
|
msgid "Couldn't find activation key content view id '%s'"
|
1260
1169
|
msgstr ""
|
@@ -1262,9 +1171,8 @@ msgstr ""
|
|
1262
1171
|
msgid "Couldn't find activation key environment '%s'"
|
1263
1172
|
msgstr ""
|
1264
1173
|
|
1265
|
-
#, fuzzy
|
1266
1174
|
msgid "Couldn't find consumer '%s'"
|
1267
|
-
msgstr "
|
1175
|
+
msgstr ""
|
1268
1176
|
|
1269
1177
|
msgid "Couldn't find content host content view id '%s'"
|
1270
1178
|
msgstr ""
|
@@ -1272,26 +1180,20 @@ msgstr ""
|
|
1272
1180
|
msgid "Couldn't find content host environment '%s'"
|
1273
1181
|
msgstr ""
|
1274
1182
|
|
1275
|
-
#, fuzzy
|
1276
1183
|
msgid "Couldn't find content view '%s'"
|
1277
|
-
msgstr "
|
1184
|
+
msgstr ""
|
1278
1185
|
|
1279
|
-
#, fuzzy
|
1280
1186
|
msgid "Couldn't find content view version '%s'"
|
1281
|
-
msgstr "
|
1187
|
+
msgstr ""
|
1282
1188
|
|
1283
|
-
#, fuzzy
|
1284
1189
|
msgid "Couldn't find content view versions '%s'"
|
1285
|
-
msgstr "
|
1190
|
+
msgstr ""
|
1286
1191
|
|
1287
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1288
1192
|
msgid "Couldn't find environment '%s'"
|
1289
|
-
msgstr "
|
1193
|
+
msgstr ""
|
1290
1194
|
|
1291
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1292
|
-
#, fuzzy
|
1293
1195
|
msgid "Couldn't find errata ids '%s'"
|
1294
|
-
msgstr "
|
1196
|
+
msgstr ""
|
1295
1197
|
|
1296
1198
|
msgid "Couldn't find host collection '%s'"
|
1297
1199
|
msgstr ""
|
@@ -1299,35 +1201,35 @@ msgstr ""
|
|
1299
1201
|
msgid "Couldn't find host with host id '%s'"
|
1300
1202
|
msgstr ""
|
1301
1203
|
|
1302
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1303
1204
|
msgid "Couldn't find organization '%s'"
|
1304
|
-
msgstr "
|
1205
|
+
msgstr ""
|
1305
1206
|
|
1306
|
-
#, fuzzy
|
1307
1207
|
msgid "Couldn't find prior-environment '%s'"
|
1308
|
-
msgstr "
|
1208
|
+
msgstr ""
|
1309
1209
|
|
1310
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1311
1210
|
msgid "Couldn't find product with id '%s'"
|
1312
|
-
msgstr "
|
1211
|
+
msgstr ""
|
1313
1212
|
|
1314
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1315
1213
|
msgid "Couldn't find repository '%s'"
|
1316
|
-
msgstr "
|
1214
|
+
msgstr ""
|
1317
1215
|
|
1318
1216
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1319
1217
|
msgstr ""
|
1320
1218
|
|
1321
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1322
1219
|
msgid "Couldn't find subject of synchronization"
|
1323
|
-
msgstr "
|
1220
|
+
msgstr ""
|
1324
1221
|
|
1325
1222
|
msgid "Count"
|
1326
1223
|
msgstr ""
|
1327
1224
|
|
1328
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1329
1225
|
msgid "Create"
|
1330
|
-
msgstr "
|
1226
|
+
msgstr ""
|
1227
|
+
|
1228
|
+
msgid "Create Export History"
|
1229
|
+
msgstr ""
|
1230
|
+
|
1231
|
+
msgid "Create Import History"
|
1232
|
+
msgstr ""
|
1331
1233
|
|
1332
1234
|
msgid "Create Package Group"
|
1333
1235
|
msgstr ""
|
@@ -1389,26 +1291,23 @@ msgstr ""
|
|
1389
1291
|
msgid "Current organization not set."
|
1390
1292
|
msgstr ""
|
1391
1293
|
|
1392
|
-
msgid "Custom"
|
1393
|
-
msgstr ""
|
1394
|
-
|
1395
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1396
1294
|
msgid "Custom Content Repositories"
|
1397
|
-
msgstr "
|
1295
|
+
msgstr ""
|
1398
1296
|
|
1399
1297
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1400
1298
|
msgstr ""
|
1401
1299
|
|
1402
|
-
#, fuzzy
|
1403
1300
|
msgid "Custom repositories cannot be disabled."
|
1404
|
-
msgstr "
|
1301
|
+
msgstr ""
|
1405
1302
|
|
1406
1303
|
msgid "Database connection"
|
1407
1304
|
msgstr ""
|
1408
1305
|
|
1409
|
-
|
1306
|
+
msgid "Date"
|
1307
|
+
msgstr ""
|
1308
|
+
|
1410
1309
|
msgid "Date format is incorrect."
|
1411
|
-
msgstr "
|
1310
|
+
msgstr ""
|
1412
1311
|
|
1413
1312
|
msgid "Days Remaining"
|
1414
1313
|
msgstr ""
|
@@ -1422,9 +1321,8 @@ msgstr ""
|
|
1422
1321
|
msgid "Deb Packages"
|
1423
1322
|
msgstr ""
|
1424
1323
|
|
1425
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1426
1324
|
msgid "Debug Certificate"
|
1427
|
-
msgstr "
|
1325
|
+
msgstr ""
|
1428
1326
|
|
1429
1327
|
msgid "Debug RPM"
|
1430
1328
|
msgstr ""
|
@@ -1438,15 +1336,9 @@ msgstr ""
|
|
1438
1336
|
msgid "Default HTTP proxy"
|
1439
1337
|
msgstr ""
|
1440
1338
|
|
1441
|
-
msgid "Default Location Puppet content"
|
1442
|
-
msgstr ""
|
1443
|
-
|
1444
1339
|
msgid "Default Location subscribed hosts"
|
1445
1340
|
msgstr ""
|
1446
1341
|
|
1447
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1448
|
-
msgstr ""
|
1449
|
-
|
1450
1342
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1451
1343
|
msgstr ""
|
1452
1344
|
|
@@ -1465,9 +1357,8 @@ msgstr ""
|
|
1465
1357
|
msgid "Default Smart Proxy download policy"
|
1466
1358
|
msgstr ""
|
1467
1359
|
|
1468
|
-
#, fuzzy
|
1469
1360
|
msgid "Default System SLA"
|
1470
|
-
msgstr "
|
1361
|
+
msgstr ""
|
1471
1362
|
|
1472
1363
|
msgid "Default content view versions cannot be promoted"
|
1473
1364
|
msgstr ""
|
@@ -1532,7 +1423,6 @@ msgstr ""
|
|
1532
1423
|
msgid "Default user data for new Operating Systems created from synced content"
|
1533
1424
|
msgstr ""
|
1534
1425
|
|
1535
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
1536
1426
|
msgid "Delete"
|
1537
1427
|
msgstr "ਹਟਾਓ"
|
1538
1428
|
|
@@ -1542,13 +1432,11 @@ msgstr ""
|
|
1542
1432
|
msgid "Delete Host upon unregister"
|
1543
1433
|
msgstr ""
|
1544
1434
|
|
1545
|
-
#, fuzzy
|
1546
1435
|
msgid "Delete Lifecycle Environment"
|
1547
|
-
msgstr "
|
1436
|
+
msgstr ""
|
1548
1437
|
|
1549
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1550
1438
|
msgid "Delete Manifest"
|
1551
|
-
msgstr "
|
1439
|
+
msgstr ""
|
1552
1440
|
|
1553
1441
|
msgid "Delete Package Group"
|
1554
1442
|
msgstr ""
|
@@ -1583,9 +1471,8 @@ msgstr ""
|
|
1583
1471
|
msgid "Delete manifest from Red Hat provider"
|
1584
1472
|
msgstr ""
|
1585
1473
|
|
1586
|
-
#, fuzzy
|
1587
1474
|
msgid "Deleted consumer '%s'"
|
1588
|
-
msgstr "
|
1475
|
+
msgstr ""
|
1589
1476
|
|
1590
1477
|
msgid "Deleted from %{environment}"
|
1591
1478
|
msgstr ""
|
@@ -1594,7 +1481,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1594
1481
|
msgstr ""
|
1595
1482
|
|
1596
1483
|
msgid "Description"
|
1597
|
-
msgstr ""
|
1484
|
+
msgstr "ਵਰਣਨ"
|
1598
1485
|
|
1599
1486
|
msgid "Description for the content view"
|
1600
1487
|
msgstr ""
|
@@ -1615,7 +1502,7 @@ msgid "Destination Server name"
|
|
1615
1502
|
msgstr ""
|
1616
1503
|
|
1617
1504
|
msgid "Destroy"
|
1618
|
-
msgstr ""
|
1505
|
+
msgstr "ਨਸ਼ਟ"
|
1619
1506
|
|
1620
1507
|
msgid "Destroy Content Host"
|
1621
1508
|
msgstr ""
|
@@ -1657,7 +1544,7 @@ msgid "Destroy one or more repositories"
|
|
1657
1544
|
msgstr ""
|
1658
1545
|
|
1659
1546
|
msgid "Details"
|
1660
|
-
msgstr ""
|
1547
|
+
msgstr "ਵੇਰਵਾ"
|
1661
1548
|
|
1662
1549
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1663
1550
|
msgstr ""
|
@@ -1713,15 +1600,14 @@ msgstr ""
|
|
1713
1600
|
msgid "Duplicate branches specified - %{branches}"
|
1714
1601
|
msgstr ""
|
1715
1602
|
|
1716
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
1717
1603
|
msgid "Duration"
|
1718
|
-
msgstr "
|
1604
|
+
msgstr ""
|
1719
1605
|
|
1720
1606
|
msgid "ERRATA ADVISORY"
|
1721
1607
|
msgstr ""
|
1722
1608
|
|
1723
1609
|
msgid "Edit"
|
1724
|
-
msgstr ""
|
1610
|
+
msgstr "ਸੋਧ"
|
1725
1611
|
|
1726
1612
|
msgid "Editing Entitlements"
|
1727
1613
|
msgstr ""
|
@@ -1729,13 +1615,11 @@ msgstr ""
|
|
1729
1615
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1730
1616
|
msgstr ""
|
1731
1617
|
|
1732
|
-
#, fuzzy
|
1733
1618
|
msgid "Either environments or versions must be specified."
|
1734
|
-
msgstr "
|
1619
|
+
msgstr ""
|
1735
1620
|
|
1736
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1737
1621
|
msgid "Either organization ID or environment ID needs to be specified"
|
1738
|
-
msgstr "
|
1622
|
+
msgstr ""
|
1739
1623
|
|
1740
1624
|
msgid "Either packages or groups must be provided"
|
1741
1625
|
msgstr ""
|
@@ -1762,7 +1646,7 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1762
1646
|
msgstr ""
|
1763
1647
|
|
1764
1648
|
msgid "Enabled"
|
1765
|
-
msgstr ""
|
1649
|
+
msgstr "ਯੋਗ ਕੀਤਾ"
|
1766
1650
|
|
1767
1651
|
msgid "Enabled Repositories"
|
1768
1652
|
msgstr ""
|
@@ -1776,53 +1660,44 @@ msgstr ""
|
|
1776
1660
|
msgid "Ends"
|
1777
1661
|
msgstr ""
|
1778
1662
|
|
1779
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1780
1663
|
msgid "Enhancement"
|
1781
|
-
msgstr "
|
1664
|
+
msgstr ""
|
1782
1665
|
|
1783
1666
|
msgid "Entitlements"
|
1784
1667
|
msgstr ""
|
1785
1668
|
|
1786
1669
|
msgid "Environment"
|
1787
|
-
msgstr "
|
1670
|
+
msgstr "ਇਨਵਾਇਰਮੈਂਟ"
|
1788
1671
|
|
1789
1672
|
msgid "Environment IDs"
|
1790
1673
|
msgstr ""
|
1791
1674
|
|
1792
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1793
1675
|
msgid "Environment cannot be in its own promotion path"
|
1794
|
-
msgstr "
|
1676
|
+
msgstr ""
|
1795
1677
|
|
1796
1678
|
msgid "Environment identifier"
|
1797
1679
|
msgstr ""
|
1798
1680
|
|
1799
1681
|
msgid "Environments"
|
1800
|
-
msgstr ""
|
1682
|
+
msgstr "ਇਨਵਾਇਰਮੈਂਟ"
|
1801
1683
|
|
1802
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
1803
1684
|
msgid "Errata"
|
1804
|
-
msgstr "
|
1685
|
+
msgstr ""
|
1805
1686
|
|
1806
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
1807
|
-
#, fuzzy
|
1808
1687
|
msgid "Errata ID"
|
1809
|
-
msgstr "
|
1688
|
+
msgstr ""
|
1810
1689
|
|
1811
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1812
1690
|
msgid "Errata Install"
|
1813
|
-
msgstr "
|
1691
|
+
msgstr ""
|
1814
1692
|
|
1815
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1816
1693
|
msgid "Errata Install scheduled by %s"
|
1817
|
-
msgstr "
|
1694
|
+
msgstr ""
|
1818
1695
|
|
1819
1696
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1820
1697
|
msgstr ""
|
1821
1698
|
|
1822
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1823
|
-
#, fuzzy
|
1824
1699
|
msgid "Errata mail"
|
1825
|
-
msgstr "
|
1700
|
+
msgstr ""
|
1826
1701
|
|
1827
1702
|
msgid "Errata to exclusively include in the action"
|
1828
1703
|
msgstr ""
|
@@ -1830,28 +1705,21 @@ msgstr ""
|
|
1830
1705
|
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."
|
1831
1706
|
msgstr ""
|
1832
1707
|
|
1833
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
1834
|
-
#, fuzzy
|
1835
1708
|
msgid "Erratum"
|
1836
|
-
msgstr "
|
1709
|
+
msgstr ""
|
1837
1710
|
|
1838
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1839
1711
|
msgid "Erratum Install Canceled"
|
1840
|
-
msgstr "
|
1712
|
+
msgstr ""
|
1841
1713
|
|
1842
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1843
1714
|
msgid "Erratum Install Complete"
|
1844
|
-
msgstr "
|
1715
|
+
msgstr ""
|
1845
1716
|
|
1846
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1847
1717
|
msgid "Erratum Install Failed"
|
1848
|
-
msgstr "
|
1718
|
+
msgstr ""
|
1849
1719
|
|
1850
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1851
1720
|
msgid "Erratum Install Timed Out"
|
1852
|
-
msgstr "
|
1721
|
+
msgstr ""
|
1853
1722
|
|
1854
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
1855
1723
|
msgid "Error"
|
1856
1724
|
msgstr "ਗਲਤੀ"
|
1857
1725
|
|
@@ -1870,12 +1738,17 @@ msgstr ""
|
|
1870
1738
|
msgid "Exceeds available quantity"
|
1871
1739
|
msgstr ""
|
1872
1740
|
|
1741
|
+
msgid "Exclude"
|
1742
|
+
msgstr ""
|
1743
|
+
|
1744
|
+
msgid "Excluded"
|
1745
|
+
msgstr ""
|
1746
|
+
|
1873
1747
|
msgid "Exit"
|
1874
1748
|
msgstr ""
|
1875
1749
|
|
1876
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
1877
1750
|
msgid "Expand All"
|
1878
|
-
msgstr "
|
1751
|
+
msgstr ""
|
1879
1752
|
|
1880
1753
|
msgid "Expire soon days"
|
1881
1754
|
msgstr ""
|
@@ -1892,9 +1765,6 @@ msgstr ""
|
|
1892
1765
|
msgid "Export Types"
|
1893
1766
|
msgstr ""
|
1894
1767
|
|
1895
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1896
|
-
msgstr ""
|
1897
|
-
|
1898
1768
|
msgid "Export a repository"
|
1899
1769
|
msgstr ""
|
1900
1770
|
|
@@ -1907,17 +1777,12 @@ msgstr ""
|
|
1907
1777
|
msgid "Export to ISO format"
|
1908
1778
|
msgstr ""
|
1909
1779
|
|
1910
|
-
msgid "Export to ISO format."
|
1911
|
-
msgstr ""
|
1912
|
-
|
1913
1780
|
msgid "Exported version"
|
1914
1781
|
msgstr ""
|
1915
1782
|
|
1916
|
-
#, fuzzy
|
1917
1783
|
msgid "Facts successfully updated."
|
1918
|
-
msgstr "
|
1784
|
+
msgstr ""
|
1919
1785
|
|
1920
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
1921
1786
|
msgid "Failed"
|
1922
1787
|
msgstr "ਫੇਲ ਹੋਇਆ ਹੈ"
|
1923
1788
|
|
@@ -1927,11 +1792,6 @@ msgstr ""
|
|
1927
1792
|
msgid "Failed to delete %{host}: %{errors}"
|
1928
1793
|
msgstr ""
|
1929
1794
|
|
1930
|
-
msgid "Failed to download %s module."
|
1931
|
-
msgid_plural "Failed to download %s modules."
|
1932
|
-
msgstr[0] ""
|
1933
|
-
msgstr[1] ""
|
1934
|
-
|
1935
1795
|
msgid "Failed to download %s package."
|
1936
1796
|
msgid_plural "Failed to download %s packages."
|
1937
1797
|
msgstr[0] ""
|
@@ -2009,9 +1869,6 @@ msgstr ""
|
|
2009
1869
|
msgid "Filter versions by environment"
|
2010
1870
|
msgstr ""
|
2011
1871
|
|
2012
|
-
msgid "Filter versions by puppet module"
|
2013
|
-
msgstr ""
|
2014
|
-
|
2015
1872
|
msgid "Filter versions by version number"
|
2016
1873
|
msgstr ""
|
2017
1874
|
|
@@ -2022,7 +1879,7 @@ msgid "Filtered index content"
|
|
2022
1879
|
msgstr ""
|
2023
1880
|
|
2024
1881
|
msgid "Filters"
|
2025
|
-
msgstr ""
|
1882
|
+
msgstr "ਫਿਲਟਰ"
|
2026
1883
|
|
2027
1884
|
msgid "Finish action timeout"
|
2028
1885
|
msgstr ""
|
@@ -2033,6 +1890,9 @@ msgstr ""
|
|
2033
1890
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
2034
1891
|
msgstr ""
|
2035
1892
|
|
1893
|
+
msgid "Force"
|
1894
|
+
msgstr ""
|
1895
|
+
|
2036
1896
|
msgid ""
|
2037
1897
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
2038
1898
|
" On Demand download policy) are skipped."
|
@@ -2074,6 +1934,9 @@ msgstr ""
|
|
2074
1934
|
msgid "Get all content available, not just that provided by subscriptions"
|
2075
1935
|
msgstr ""
|
2076
1936
|
|
1937
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1938
|
+
msgstr ""
|
1939
|
+
|
2077
1940
|
msgid "Get content and overrides for the host"
|
2078
1941
|
msgstr ""
|
2079
1942
|
|
@@ -2086,12 +1949,6 @@ msgstr ""
|
|
2086
1949
|
msgid "Get list of available repositories for the repository set"
|
2087
1950
|
msgstr ""
|
2088
1951
|
|
2089
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
2090
|
-
msgstr ""
|
2091
|
-
|
2092
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
2093
|
-
msgstr ""
|
2094
|
-
|
2095
1952
|
msgid "Get status of repo synchronisation for given product"
|
2096
1953
|
msgstr ""
|
2097
1954
|
|
@@ -2120,9 +1977,11 @@ msgid "Has to be > 0"
|
|
2120
1977
|
msgstr ""
|
2121
1978
|
|
2122
1979
|
msgid "History"
|
1980
|
+
msgstr "ਅਤੀਤ"
|
1981
|
+
|
1982
|
+
msgid "History will appear here when the content view is published or promoted."
|
2123
1983
|
msgstr ""
|
2124
1984
|
|
2125
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
2126
1985
|
msgid "Host"
|
2127
1986
|
msgstr "ਹੋਸਟ"
|
2128
1987
|
|
@@ -2210,6 +2069,9 @@ msgstr ""
|
|
2210
2069
|
msgid "Hosts with Installable Errata"
|
2211
2070
|
msgstr ""
|
2212
2071
|
|
2072
|
+
msgid "Hosts: "
|
2073
|
+
msgstr ""
|
2074
|
+
|
2213
2075
|
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."
|
2214
2076
|
msgstr ""
|
2215
2077
|
|
@@ -2279,9 +2141,8 @@ msgstr ""
|
|
2279
2141
|
msgid "ID of the sync plan"
|
2280
2142
|
msgstr ""
|
2281
2143
|
|
2282
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2283
2144
|
msgid "ID: %s doesn't exist "
|
2284
|
-
msgstr "
|
2145
|
+
msgstr ""
|
2285
2146
|
|
2286
2147
|
msgid "ISO export must be enabled when specifying ISO size"
|
2287
2148
|
msgstr ""
|
@@ -2364,7 +2225,7 @@ msgstr ""
|
|
2364
2225
|
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."
|
2365
2226
|
msgstr ""
|
2366
2227
|
|
2367
|
-
msgid "If set to true, use
|
2228
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2368
2229
|
msgstr ""
|
2369
2230
|
|
2370
2231
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2391,6 +2252,15 @@ msgstr ""
|
|
2391
2252
|
msgid "Ignorable content can be only set for Yum repositories."
|
2392
2253
|
msgstr ""
|
2393
2254
|
|
2255
|
+
msgid "Ignore errors"
|
2256
|
+
msgstr ""
|
2257
|
+
|
2258
|
+
msgid "Ignore subscription manager errors"
|
2259
|
+
msgstr ""
|
2260
|
+
|
2261
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2262
|
+
msgstr ""
|
2263
|
+
|
2394
2264
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2395
2265
|
msgstr ""
|
2396
2266
|
|
@@ -2398,7 +2268,7 @@ msgid "Immediate"
|
|
2398
2268
|
msgstr ""
|
2399
2269
|
|
2400
2270
|
msgid "Import"
|
2401
|
-
msgstr ""
|
2271
|
+
msgstr "ਇੰਪੋਰਟ"
|
2402
2272
|
|
2403
2273
|
msgid "Import Content View Version"
|
2404
2274
|
msgstr ""
|
@@ -2406,9 +2276,8 @@ msgstr ""
|
|
2406
2276
|
msgid "Import Default Content View"
|
2407
2277
|
msgstr ""
|
2408
2278
|
|
2409
|
-
#, fuzzy
|
2410
2279
|
msgid "Import Manifest"
|
2411
|
-
msgstr "
|
2280
|
+
msgstr ""
|
2412
2281
|
|
2413
2282
|
msgid "Import New Manifest"
|
2414
2283
|
msgstr ""
|
@@ -2419,6 +2288,9 @@ msgstr ""
|
|
2419
2288
|
msgid "Import Puppet classes"
|
2420
2289
|
msgstr ""
|
2421
2290
|
|
2291
|
+
msgid "Import Types"
|
2292
|
+
msgstr ""
|
2293
|
+
|
2422
2294
|
msgid "Import a Manifest"
|
2423
2295
|
msgstr ""
|
2424
2296
|
|
@@ -2437,9 +2309,8 @@ msgstr ""
|
|
2437
2309
|
msgid "Import a content view version to the library"
|
2438
2310
|
msgstr ""
|
2439
2311
|
|
2440
|
-
#, fuzzy
|
2441
2312
|
msgid "Import facts"
|
2442
|
-
msgstr "
|
2313
|
+
msgstr ""
|
2443
2314
|
|
2444
2315
|
msgid "Import uploads into a repository"
|
2445
2316
|
msgstr ""
|
@@ -2450,15 +2321,21 @@ msgstr ""
|
|
2450
2321
|
msgid "Import-only content views can not be published directly"
|
2451
2322
|
msgstr ""
|
2452
2323
|
|
2453
|
-
msgid "Import-only content views will be available in a future version."
|
2454
|
-
msgstr ""
|
2455
|
-
|
2456
2324
|
msgid "Importing manifest into '%{subject}' failed."
|
2457
2325
|
msgstr ""
|
2458
2326
|
|
2459
2327
|
msgid "In Progress"
|
2460
2328
|
msgstr ""
|
2461
2329
|
|
2330
|
+
msgid "Include"
|
2331
|
+
msgstr ""
|
2332
|
+
|
2333
|
+
msgid "Included"
|
2334
|
+
msgstr ""
|
2335
|
+
|
2336
|
+
msgid "Includes associated content view filter ids in response"
|
2337
|
+
msgstr ""
|
2338
|
+
|
2462
2339
|
msgid "Inclusion type"
|
2463
2340
|
msgstr ""
|
2464
2341
|
|
@@ -2483,9 +2360,8 @@ msgstr ""
|
|
2483
2360
|
msgid "Index content"
|
2484
2361
|
msgstr ""
|
2485
2362
|
|
2486
|
-
#, fuzzy
|
2487
2363
|
msgid "Index errata"
|
2488
|
-
msgstr "
|
2364
|
+
msgstr ""
|
2489
2365
|
|
2490
2366
|
msgid "Index module streams"
|
2491
2367
|
msgstr ""
|
@@ -2508,29 +2384,26 @@ msgstr ""
|
|
2508
2384
|
msgid "Install Applicable Errata on %s"
|
2509
2385
|
msgstr ""
|
2510
2386
|
|
2511
|
-
msgid "Install content on one or more hosts"
|
2387
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2512
2388
|
msgstr ""
|
2513
2389
|
|
2514
2390
|
msgid "Install errata via Katello interface"
|
2515
2391
|
msgstr ""
|
2516
2392
|
|
2517
|
-
#, fuzzy
|
2518
2393
|
msgid "Install erratum"
|
2519
|
-
msgstr "
|
2394
|
+
msgstr ""
|
2520
2395
|
|
2521
2396
|
msgid "Install erratum for %s"
|
2522
2397
|
msgstr ""
|
2523
2398
|
|
2524
|
-
#, fuzzy
|
2525
2399
|
msgid "Install package"
|
2526
|
-
msgstr "
|
2400
|
+
msgstr ""
|
2527
2401
|
|
2528
2402
|
msgid "Install package for %s"
|
2529
2403
|
msgstr ""
|
2530
2404
|
|
2531
|
-
#, fuzzy
|
2532
2405
|
msgid "Install package group"
|
2533
|
-
msgstr "
|
2406
|
+
msgstr ""
|
2534
2407
|
|
2535
2408
|
msgid "Install package group via Katello interface"
|
2536
2409
|
msgstr ""
|
@@ -2538,7 +2411,7 @@ msgstr ""
|
|
2538
2411
|
msgid "Install package via Katello interface"
|
2539
2412
|
msgstr ""
|
2540
2413
|
|
2541
|
-
msgid "Install packages remotely"
|
2414
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2542
2415
|
msgstr ""
|
2543
2416
|
|
2544
2417
|
msgid "Installable errata from Content View"
|
@@ -2553,21 +2426,17 @@ msgstr ""
|
|
2553
2426
|
msgid "Installation of package(s) requested: %{packages}"
|
2554
2427
|
msgstr ""
|
2555
2428
|
|
2556
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
2557
2429
|
msgid "Installed Packages"
|
2558
|
-
msgstr "
|
2430
|
+
msgstr ""
|
2559
2431
|
|
2560
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
2561
2432
|
msgid "Installing Erratum..."
|
2562
|
-
msgstr "
|
2433
|
+
msgstr ""
|
2563
2434
|
|
2564
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
2565
2435
|
msgid "Installing Package Group..."
|
2566
|
-
msgstr "
|
2436
|
+
msgstr ""
|
2567
2437
|
|
2568
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
2569
2438
|
msgid "Installing Package..."
|
2570
|
-
msgstr "
|
2439
|
+
msgstr ""
|
2571
2440
|
|
2572
2441
|
msgid "Instance update"
|
2573
2442
|
msgstr ""
|
@@ -2593,13 +2462,11 @@ msgstr ""
|
|
2593
2462
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2594
2463
|
msgstr ""
|
2595
2464
|
|
2596
|
-
#, fuzzy
|
2597
2465
|
msgid "Invalid content label: %s"
|
2598
|
-
msgstr "
|
2466
|
+
msgstr ""
|
2599
2467
|
|
2600
|
-
#, fuzzy
|
2601
2468
|
msgid "Invalid content type %s"
|
2602
|
-
msgstr "
|
2469
|
+
msgstr ""
|
2603
2470
|
|
2604
2471
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2605
2472
|
msgstr ""
|
@@ -2616,9 +2483,8 @@ msgstr ""
|
|
2616
2483
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2617
2484
|
msgstr ""
|
2618
2485
|
|
2619
|
-
#, fuzzy
|
2620
2486
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2621
|
-
msgstr "
|
2487
|
+
msgstr ""
|
2622
2488
|
|
2623
2489
|
msgid "Invalid event_type %s"
|
2624
2490
|
msgstr ""
|
@@ -2626,13 +2492,11 @@ msgstr ""
|
|
2626
2492
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2627
2493
|
msgstr ""
|
2628
2494
|
|
2629
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
2630
2495
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2631
|
-
msgstr "
|
2496
|
+
msgstr ""
|
2632
2497
|
|
2633
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2634
2498
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2635
|
-
msgstr "
|
2499
|
+
msgstr ""
|
2636
2500
|
|
2637
2501
|
msgid "Invalid params provided - content_type must be one of %s"
|
2638
2502
|
msgstr ""
|
@@ -2640,20 +2504,6 @@ msgstr ""
|
|
2640
2504
|
msgid "Invalid params provided - date_type must be one of %s"
|
2641
2505
|
msgstr ""
|
2642
2506
|
|
2643
|
-
msgid ""
|
2644
|
-
"Invalid puppet module parameters specified. \\\n"
|
2645
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2646
|
-
msgstr ""
|
2647
|
-
|
2648
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2649
|
-
msgstr ""
|
2650
|
-
|
2651
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2652
|
-
msgstr ""
|
2653
|
-
|
2654
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2655
|
-
msgstr ""
|
2656
|
-
|
2657
2507
|
msgid "Invalid value specified for Container Image repositories."
|
2658
2508
|
msgstr ""
|
2659
2509
|
|
@@ -2663,9 +2513,6 @@ msgstr ""
|
|
2663
2513
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2664
2514
|
msgstr ""
|
2665
2515
|
|
2666
|
-
msgid "Katello"
|
2667
|
-
msgstr ""
|
2668
|
-
|
2669
2516
|
msgid "Katello ID of local pool to update"
|
2670
2517
|
msgstr ""
|
2671
2518
|
|
@@ -2720,15 +2567,23 @@ msgstr ""
|
|
2720
2567
|
msgid "Last published"
|
2721
2568
|
msgstr ""
|
2722
2569
|
|
2570
|
+
msgid "Last task"
|
2571
|
+
msgstr ""
|
2572
|
+
|
2573
|
+
msgid "Latest (automatically updates)"
|
2574
|
+
msgstr ""
|
2575
|
+
|
2723
2576
|
msgid "Latest Errata"
|
2724
2577
|
msgstr ""
|
2725
2578
|
|
2579
|
+
msgid "Latest version"
|
2580
|
+
msgstr ""
|
2581
|
+
|
2726
2582
|
msgid "Learn more about adding Subscription Manifests"
|
2727
2583
|
msgstr ""
|
2728
2584
|
|
2729
|
-
#, fuzzy
|
2730
2585
|
msgid "Library lifecycle environments may not be deleted."
|
2731
|
-
msgstr "
|
2586
|
+
msgstr ""
|
2732
2587
|
|
2733
2588
|
msgid "Library repository id to restrict comparisons to"
|
2734
2589
|
msgstr ""
|
@@ -2748,9 +2603,11 @@ msgstr ""
|
|
2748
2603
|
msgid "Lifecycle Environment ID"
|
2749
2604
|
msgstr ""
|
2750
2605
|
|
2751
|
-
#, fuzzy
|
2752
2606
|
msgid "Lifecycle Environments"
|
2753
|
-
msgstr "
|
2607
|
+
msgstr ""
|
2608
|
+
|
2609
|
+
msgid "Lifecycle environment"
|
2610
|
+
msgstr ""
|
2754
2611
|
|
2755
2612
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2756
2613
|
msgstr ""
|
@@ -2758,6 +2615,9 @@ msgstr ""
|
|
2758
2615
|
msgid "Lifecycle environment ID"
|
2759
2616
|
msgstr ""
|
2760
2617
|
|
2618
|
+
msgid "Lifecycle environment for the host."
|
2619
|
+
msgstr ""
|
2620
|
+
|
2761
2621
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2762
2622
|
msgstr ""
|
2763
2623
|
|
@@ -2767,6 +2627,9 @@ msgstr ""
|
|
2767
2627
|
msgid "Limit content to just that available in the activation key's content view version"
|
2768
2628
|
msgstr ""
|
2769
2629
|
|
2630
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2631
|
+
msgstr ""
|
2632
|
+
|
2770
2633
|
msgid "Limit content to just that available in the host's content view version"
|
2771
2634
|
msgstr ""
|
2772
2635
|
|
@@ -2803,9 +2666,6 @@ msgstr ""
|
|
2803
2666
|
msgid "List components attached to this content view"
|
2804
2667
|
msgstr ""
|
2805
2668
|
|
2806
|
-
msgid "List content view puppet modules"
|
2807
|
-
msgstr ""
|
2808
|
-
|
2809
2669
|
msgid "List content view versions"
|
2810
2670
|
msgstr ""
|
2811
2671
|
|
@@ -2845,6 +2705,9 @@ msgstr ""
|
|
2845
2705
|
msgid "List host collections within an organization"
|
2846
2706
|
msgstr ""
|
2847
2707
|
|
2708
|
+
msgid "List import histories"
|
2709
|
+
msgstr ""
|
2710
|
+
|
2848
2711
|
msgid "List module streams available to the host"
|
2849
2712
|
msgstr ""
|
2850
2713
|
|
@@ -2993,7 +2856,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2993
2856
|
msgstr ""
|
2994
2857
|
|
2995
2858
|
msgid "Loading"
|
2996
|
-
msgstr ""
|
2859
|
+
msgstr "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ"
|
2997
2860
|
|
2998
2861
|
msgid "Make copy of a content view"
|
2999
2862
|
msgstr ""
|
@@ -3061,10 +2924,12 @@ msgstr ""
|
|
3061
2924
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
3062
2925
|
msgstr ""
|
3063
2926
|
|
2927
|
+
msgid "Media Selection"
|
2928
|
+
msgstr ""
|
2929
|
+
|
3064
2930
|
msgid "Medium IDs"
|
3065
2931
|
msgstr ""
|
3066
2932
|
|
3067
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3068
2933
|
msgid "Message"
|
3069
2934
|
msgstr "ਸੁਨੇਹਾ"
|
3070
2935
|
|
@@ -3098,9 +2963,15 @@ msgstr ""
|
|
3098
2963
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
3099
2964
|
msgstr ""
|
3100
2965
|
|
2966
|
+
msgid "N/A"
|
2967
|
+
msgstr ""
|
2968
|
+
|
3101
2969
|
msgid "NA"
|
3102
2970
|
msgstr ""
|
3103
2971
|
|
2972
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2973
|
+
msgstr ""
|
2974
|
+
|
3104
2975
|
msgid ""
|
3105
2976
|
"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"
|
3106
2977
|
" %{repos}"
|
@@ -3141,15 +3012,11 @@ msgstr ""
|
|
3141
3012
|
msgid "Nest"
|
3142
3013
|
msgstr ""
|
3143
3014
|
|
3144
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3145
|
-
#, fuzzy
|
3146
3015
|
msgid "Never Synced"
|
3147
|
-
msgstr "
|
3016
|
+
msgstr ""
|
3148
3017
|
|
3149
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3150
|
-
#, fuzzy
|
3151
3018
|
msgid "New Errata"
|
3152
|
-
msgstr "
|
3019
|
+
msgstr ""
|
3153
3020
|
|
3154
3021
|
msgid "New Files: %s"
|
3155
3022
|
msgstr ""
|
@@ -3163,9 +3030,8 @@ msgstr ""
|
|
3163
3030
|
msgid "New host collection name"
|
3164
3031
|
msgstr ""
|
3165
3032
|
|
3166
|
-
#, fuzzy
|
3167
3033
|
msgid "New name cannot be blank"
|
3168
|
-
msgstr "
|
3034
|
+
msgstr ""
|
3169
3035
|
|
3170
3036
|
msgid "New name for the content view"
|
3171
3037
|
msgstr ""
|
@@ -3173,25 +3039,35 @@ msgstr ""
|
|
3173
3039
|
msgid "New packages: %{count} (%{size})."
|
3174
3040
|
msgstr ""
|
3175
3041
|
|
3042
|
+
msgid "New version is available: Version ${latestVersion}"
|
3043
|
+
msgstr ""
|
3044
|
+
|
3176
3045
|
msgid "No"
|
3177
3046
|
msgstr ""
|
3178
3047
|
|
3179
|
-
|
3048
|
+
msgid "No Activation Keys selected"
|
3049
|
+
msgstr ""
|
3050
|
+
|
3051
|
+
msgid "No Activation keys to select"
|
3052
|
+
msgstr ""
|
3053
|
+
|
3180
3054
|
msgid "No Content View"
|
3181
|
-
msgstr "
|
3055
|
+
msgstr ""
|
3182
3056
|
|
3183
3057
|
msgid "No Content found"
|
3184
3058
|
msgstr ""
|
3185
3059
|
|
3060
|
+
msgid "No Lifecycle environment to select"
|
3061
|
+
msgstr ""
|
3062
|
+
|
3186
3063
|
msgid "No Manifest Uploaded"
|
3187
3064
|
msgstr ""
|
3188
3065
|
|
3189
3066
|
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."
|
3190
3067
|
msgstr ""
|
3191
3068
|
|
3192
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3193
3069
|
msgid "No Service Level Preference"
|
3194
|
-
msgstr "
|
3070
|
+
msgstr ""
|
3195
3071
|
|
3196
3072
|
msgid "No URL found for a container registry. Please check the configuration."
|
3197
3073
|
msgstr ""
|
@@ -3205,9 +3081,8 @@ msgstr ""
|
|
3205
3081
|
msgid "No artifacts to show"
|
3206
3082
|
msgstr ""
|
3207
3083
|
|
3208
|
-
#, fuzzy
|
3209
3084
|
msgid "No content has been provided."
|
3210
|
-
msgstr "
|
3085
|
+
msgstr ""
|
3211
3086
|
|
3212
3087
|
msgid "No content ids provided"
|
3213
3088
|
msgstr ""
|
@@ -3215,18 +3090,29 @@ msgstr ""
|
|
3215
3090
|
msgid "No content view history events found."
|
3216
3091
|
msgstr ""
|
3217
3092
|
|
3093
|
+
msgid "No content views belong to ${label}"
|
3094
|
+
msgstr ""
|
3095
|
+
|
3218
3096
|
msgid "No content_view_version_ids provided"
|
3219
3097
|
msgstr ""
|
3220
3098
|
|
3099
|
+
msgid "No description"
|
3100
|
+
msgstr ""
|
3101
|
+
|
3221
3102
|
msgid "No enabled repositories match your search criteria."
|
3222
3103
|
msgstr ""
|
3223
3104
|
|
3105
|
+
msgid "No environment"
|
3106
|
+
msgstr ""
|
3107
|
+
|
3108
|
+
msgid "No environments"
|
3109
|
+
msgstr ""
|
3110
|
+
|
3224
3111
|
msgid "No errata has been specified."
|
3225
3112
|
msgstr ""
|
3226
3113
|
|
3227
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3228
3114
|
msgid "No errors"
|
3229
|
-
msgstr "
|
3115
|
+
msgstr ""
|
3230
3116
|
|
3231
3117
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3232
3118
|
msgstr ""
|
@@ -3255,24 +3141,35 @@ msgstr ""
|
|
3255
3141
|
msgid "No matching filters found"
|
3256
3142
|
msgstr ""
|
3257
3143
|
|
3144
|
+
msgid "No matching history record found"
|
3145
|
+
msgstr ""
|
3146
|
+
|
3147
|
+
msgid "No matching package groups found."
|
3148
|
+
msgstr ""
|
3149
|
+
|
3258
3150
|
msgid "No matching repositories found"
|
3259
3151
|
msgstr ""
|
3260
3152
|
|
3261
|
-
|
3153
|
+
msgid "No matching rules found."
|
3154
|
+
msgstr ""
|
3155
|
+
|
3156
|
+
msgid "No matching version found"
|
3157
|
+
msgstr ""
|
3158
|
+
|
3262
3159
|
msgid "No new packages installed"
|
3263
|
-
msgstr "
|
3160
|
+
msgstr ""
|
3264
3161
|
|
3265
|
-
#, fuzzy
|
3266
3162
|
msgid "No new packages."
|
3267
|
-
msgstr "
|
3163
|
+
msgstr ""
|
3164
|
+
|
3165
|
+
msgid "No package groups have been added to this filter."
|
3166
|
+
msgstr ""
|
3268
3167
|
|
3269
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3270
3168
|
msgid "No packages removed"
|
3271
|
-
msgstr "
|
3169
|
+
msgstr ""
|
3272
3170
|
|
3273
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3274
3171
|
msgid "No packages updated"
|
3275
|
-
msgstr "
|
3172
|
+
msgstr ""
|
3276
3173
|
|
3277
3174
|
msgid "No pool IDs were provided."
|
3278
3175
|
msgstr ""
|
@@ -3313,12 +3210,14 @@ msgstr ""
|
|
3313
3210
|
msgid "No repository sets match your search criteria."
|
3314
3211
|
msgstr ""
|
3315
3212
|
|
3213
|
+
msgid "No rules have been added to this filter."
|
3214
|
+
msgstr ""
|
3215
|
+
|
3316
3216
|
msgid "No services defined, is this class extended?"
|
3317
3217
|
msgstr ""
|
3318
3218
|
|
3319
|
-
#, fuzzy
|
3320
3219
|
msgid "No start time currently available."
|
3321
|
-
msgstr "
|
3220
|
+
msgstr ""
|
3322
3221
|
|
3323
3222
|
msgid "No subscriptions match your search criteria."
|
3324
3223
|
msgstr ""
|
@@ -3335,11 +3234,9 @@ msgstr ""
|
|
3335
3234
|
msgid "Non-security errata installable"
|
3336
3235
|
msgstr ""
|
3337
3236
|
|
3338
|
-
#, fuzzy
|
3339
3237
|
msgid "Non-system event"
|
3340
|
-
msgstr "
|
3238
|
+
msgstr ""
|
3341
3239
|
|
3342
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author aalam
|
3343
3240
|
msgid "None"
|
3344
3241
|
msgstr "ਕੋਈ ਨਹੀਂ"
|
3345
3242
|
|
@@ -3352,12 +3249,18 @@ msgstr ""
|
|
3352
3249
|
msgid "Not a number"
|
3353
3250
|
msgstr ""
|
3354
3251
|
|
3252
|
+
msgid "Not added"
|
3253
|
+
msgstr ""
|
3254
|
+
|
3355
3255
|
msgid "Not all necessary pulp workers running at %s."
|
3356
3256
|
msgstr ""
|
3357
3257
|
|
3358
3258
|
msgid "Not running"
|
3359
3259
|
msgstr ""
|
3360
3260
|
|
3261
|
+
msgid "Not yet published"
|
3262
|
+
msgstr ""
|
3263
|
+
|
3361
3264
|
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."
|
3362
3265
|
msgstr ""
|
3363
3266
|
|
@@ -3403,9 +3306,8 @@ msgstr ""
|
|
3403
3306
|
msgid "On-disk location for pulp 3 exported repositories"
|
3404
3307
|
msgstr ""
|
3405
3308
|
|
3406
|
-
#, fuzzy
|
3407
3309
|
msgid "One of parameters [ %s ] required but not specified."
|
3408
|
-
msgstr "
|
3310
|
+
msgstr ""
|
3409
3311
|
|
3410
3312
|
msgid "One of yum or docker"
|
3411
3313
|
msgstr ""
|
@@ -3416,16 +3318,14 @@ msgstr ""
|
|
3416
3318
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3417
3319
|
msgstr ""
|
3418
3320
|
|
3419
|
-
#, fuzzy
|
3420
3321
|
msgid "One or more packages failed to sync properly."
|
3421
|
-
msgstr "
|
3322
|
+
msgstr ""
|
3422
3323
|
|
3423
3324
|
msgid "One or more processes require restarting"
|
3424
3325
|
msgstr ""
|
3425
3326
|
|
3426
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3427
3327
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3428
|
-
msgstr "
|
3328
|
+
msgstr ""
|
3429
3329
|
|
3430
3330
|
msgid "Only returns id and quantity fields"
|
3431
3331
|
msgstr ""
|
@@ -3436,10 +3336,6 @@ msgstr ""
|
|
3436
3336
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3437
3337
|
msgstr ""
|
3438
3338
|
|
3439
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3440
|
-
msgstr ""
|
3441
|
-
|
3442
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
3443
3339
|
msgid "Organization"
|
3444
3340
|
msgstr "ਸੰਗਠਨ"
|
3445
3341
|
|
@@ -3452,9 +3348,11 @@ msgstr ""
|
|
3452
3348
|
msgid "Organization ID is required"
|
3453
3349
|
msgstr ""
|
3454
3350
|
|
3455
|
-
|
3351
|
+
msgid "Organization Information not provided."
|
3352
|
+
msgstr ""
|
3353
|
+
|
3456
3354
|
msgid "Organization cannot be blank."
|
3457
|
-
msgstr "
|
3355
|
+
msgstr ""
|
3458
3356
|
|
3459
3357
|
msgid "Organization id"
|
3460
3358
|
msgstr ""
|
@@ -3468,9 +3366,8 @@ msgstr ""
|
|
3468
3366
|
msgid "Organization not found"
|
3469
3367
|
msgstr ""
|
3470
3368
|
|
3471
|
-
#, fuzzy
|
3472
3369
|
msgid "Organization required"
|
3473
|
-
msgstr "
|
3370
|
+
msgstr ""
|
3474
3371
|
|
3475
3372
|
msgid "Other"
|
3476
3373
|
msgstr ""
|
@@ -3496,99 +3393,74 @@ msgstr ""
|
|
3496
3393
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3497
3394
|
msgstr ""
|
3498
3395
|
|
3499
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3500
|
-
#, fuzzy
|
3501
3396
|
msgid "Package"
|
3502
|
-
msgstr "
|
3397
|
+
msgstr ""
|
3503
3398
|
|
3504
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3505
|
-
#, fuzzy
|
3506
3399
|
msgid "Package Group"
|
3507
|
-
msgstr "
|
3400
|
+
msgstr ""
|
3508
3401
|
|
3509
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3510
3402
|
msgid "Package Group Install"
|
3511
|
-
msgstr "
|
3403
|
+
msgstr ""
|
3512
3404
|
|
3513
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3514
3405
|
msgid "Package Group Install Canceled"
|
3515
|
-
msgstr "
|
3406
|
+
msgstr ""
|
3516
3407
|
|
3517
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3518
3408
|
msgid "Package Group Install Complete"
|
3519
|
-
msgstr "
|
3409
|
+
msgstr ""
|
3520
3410
|
|
3521
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3522
3411
|
msgid "Package Group Install Failed"
|
3523
|
-
msgstr "
|
3412
|
+
msgstr ""
|
3524
3413
|
|
3525
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3526
3414
|
msgid "Package Group Install Timed Out"
|
3527
|
-
msgstr "
|
3415
|
+
msgstr ""
|
3528
3416
|
|
3529
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3530
3417
|
msgid "Package Group Install scheduled by %s"
|
3531
|
-
msgstr "
|
3418
|
+
msgstr ""
|
3532
3419
|
|
3533
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3534
3420
|
msgid "Package Group Remove"
|
3535
|
-
msgstr "
|
3421
|
+
msgstr ""
|
3536
3422
|
|
3537
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3538
3423
|
msgid "Package Group Remove Canceled"
|
3539
|
-
msgstr "
|
3424
|
+
msgstr ""
|
3540
3425
|
|
3541
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3542
3426
|
msgid "Package Group Remove Complete"
|
3543
|
-
msgstr "
|
3427
|
+
msgstr ""
|
3544
3428
|
|
3545
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3546
3429
|
msgid "Package Group Remove Failed"
|
3547
|
-
msgstr "
|
3430
|
+
msgstr ""
|
3548
3431
|
|
3549
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3550
3432
|
msgid "Package Group Remove Timed Out"
|
3551
|
-
msgstr "
|
3433
|
+
msgstr ""
|
3552
3434
|
|
3553
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3554
3435
|
msgid "Package Group Remove scheduled by %s"
|
3555
|
-
msgstr "
|
3436
|
+
msgstr ""
|
3556
3437
|
|
3557
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3558
3438
|
msgid "Package Group Update"
|
3559
|
-
msgstr "
|
3439
|
+
msgstr ""
|
3560
3440
|
|
3561
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3562
3441
|
msgid "Package Group Update scheduled by %s"
|
3563
|
-
msgstr "
|
3442
|
+
msgstr ""
|
3564
3443
|
|
3565
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3566
3444
|
msgid "Package Groups"
|
3567
|
-
msgstr "
|
3445
|
+
msgstr ""
|
3568
3446
|
|
3569
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3570
3447
|
msgid "Package Install"
|
3571
|
-
msgstr "
|
3448
|
+
msgstr ""
|
3572
3449
|
|
3573
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3574
3450
|
msgid "Package Install Canceled"
|
3575
|
-
msgstr "
|
3451
|
+
msgstr ""
|
3576
3452
|
|
3577
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3578
3453
|
msgid "Package Install Complete"
|
3579
|
-
msgstr "
|
3454
|
+
msgstr ""
|
3580
3455
|
|
3581
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3582
3456
|
msgid "Package Install Failed"
|
3583
|
-
msgstr "
|
3457
|
+
msgstr ""
|
3584
3458
|
|
3585
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3586
3459
|
msgid "Package Install Timed Out"
|
3587
|
-
msgstr "
|
3460
|
+
msgstr ""
|
3588
3461
|
|
3589
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3590
3462
|
msgid "Package Install scheduled by %s"
|
3591
|
-
msgstr "
|
3463
|
+
msgstr ""
|
3592
3464
|
|
3593
3465
|
msgid "Package Profile Update"
|
3594
3466
|
msgstr ""
|
@@ -3596,88 +3468,71 @@ msgstr ""
|
|
3596
3468
|
msgid "Package Profile Update for %s"
|
3597
3469
|
msgstr ""
|
3598
3470
|
|
3599
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3600
3471
|
msgid "Package Remove"
|
3601
|
-
msgstr "
|
3472
|
+
msgstr ""
|
3602
3473
|
|
3603
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3604
3474
|
msgid "Package Remove Canceled"
|
3605
|
-
msgstr "
|
3475
|
+
msgstr ""
|
3606
3476
|
|
3607
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3608
3477
|
msgid "Package Remove Complete"
|
3609
|
-
msgstr "
|
3478
|
+
msgstr ""
|
3610
3479
|
|
3611
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3612
3480
|
msgid "Package Remove Failed"
|
3613
|
-
msgstr "
|
3481
|
+
msgstr ""
|
3614
3482
|
|
3615
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3616
3483
|
msgid "Package Remove Timed Out"
|
3617
|
-
msgstr "
|
3484
|
+
msgstr ""
|
3618
3485
|
|
3619
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3620
3486
|
msgid "Package Remove scheduled by %s"
|
3621
|
-
msgstr "
|
3487
|
+
msgstr ""
|
3622
3488
|
|
3623
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3624
3489
|
msgid "Package Update"
|
3625
|
-
msgstr "
|
3490
|
+
msgstr ""
|
3626
3491
|
|
3627
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3628
3492
|
msgid "Package Update Canceled"
|
3629
|
-
msgstr "
|
3493
|
+
msgstr ""
|
3630
3494
|
|
3631
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3632
3495
|
msgid "Package Update Complete"
|
3633
|
-
msgstr "
|
3496
|
+
msgstr ""
|
3634
3497
|
|
3635
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3636
3498
|
msgid "Package Update Failed"
|
3637
|
-
msgstr "
|
3499
|
+
msgstr ""
|
3638
3500
|
|
3639
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3640
3501
|
msgid "Package Update Timed Out"
|
3641
|
-
msgstr "
|
3502
|
+
msgstr ""
|
3642
3503
|
|
3643
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3644
3504
|
msgid "Package Update scheduled by %s"
|
3645
|
-
msgstr "
|
3505
|
+
msgstr ""
|
3646
3506
|
|
3647
|
-
#, fuzzy
|
3648
3507
|
msgid "Package group update canceled"
|
3649
|
-
msgstr "
|
3508
|
+
msgstr ""
|
3650
3509
|
|
3651
|
-
#, fuzzy
|
3652
3510
|
msgid "Package group update complete"
|
3653
|
-
msgstr "
|
3511
|
+
msgstr ""
|
3654
3512
|
|
3655
|
-
#, fuzzy
|
3656
3513
|
msgid "Package group update failed"
|
3657
|
-
msgstr "
|
3514
|
+
msgstr ""
|
3658
3515
|
|
3659
|
-
#, fuzzy
|
3660
3516
|
msgid "Package group update timed out"
|
3661
|
-
msgstr "
|
3517
|
+
msgstr ""
|
3518
|
+
|
3519
|
+
msgid "Package groups"
|
3520
|
+
msgstr ""
|
3662
3521
|
|
3663
3522
|
msgid "Package identifiers to filter content by"
|
3664
3523
|
msgstr ""
|
3665
3524
|
|
3666
|
-
#, fuzzy
|
3667
3525
|
msgid "Package install failed: \"%{package}\""
|
3668
|
-
msgstr "
|
3526
|
+
msgstr ""
|
3669
3527
|
|
3670
|
-
#, fuzzy
|
3671
3528
|
msgid "Package installation: \"%{package}\" "
|
3672
|
-
msgstr "
|
3529
|
+
msgstr ""
|
3673
3530
|
|
3674
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3675
3531
|
msgid "Packages"
|
3676
|
-
msgstr "
|
3532
|
+
msgstr ""
|
3677
3533
|
|
3678
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
3679
3534
|
msgid "Packages must be provided"
|
3680
|
-
msgstr "
|
3535
|
+
msgstr ""
|
3681
3536
|
|
3682
3537
|
msgid "Page number, starting at 1"
|
3683
3538
|
msgstr ""
|
@@ -3706,10 +3561,8 @@ msgstr ""
|
|
3706
3561
|
msgid "Paused"
|
3707
3562
|
msgstr ""
|
3708
3563
|
|
3709
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3710
|
-
#, fuzzy
|
3711
3564
|
msgid "Pending"
|
3712
|
-
msgstr "
|
3565
|
+
msgstr "ਅਧੂਰੇ"
|
3713
3566
|
|
3714
3567
|
msgid "Perform a module stream action via Katello interface"
|
3715
3568
|
msgstr ""
|
@@ -3729,17 +3582,18 @@ msgstr ""
|
|
3729
3582
|
msgid "Performs an incremental-export of the repositories in library."
|
3730
3583
|
msgstr ""
|
3731
3584
|
|
3732
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3733
3585
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3734
|
-
msgstr "
|
3586
|
+
msgstr ""
|
3735
3587
|
|
3736
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3737
3588
|
msgid "Physical"
|
3738
|
-
msgstr "
|
3589
|
+
msgstr ""
|
3739
3590
|
|
3740
3591
|
msgid "Plan numeric identifier"
|
3741
3592
|
msgstr ""
|
3742
3593
|
|
3594
|
+
msgid "Please add some content views."
|
3595
|
+
msgstr ""
|
3596
|
+
|
3743
3597
|
msgid "Please add some repositories."
|
3744
3598
|
msgstr ""
|
3745
3599
|
|
@@ -3779,9 +3633,8 @@ msgstr ""
|
|
3779
3633
|
msgid "Processing metadata."
|
3780
3634
|
msgstr ""
|
3781
3635
|
|
3782
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3783
3636
|
msgid "Product"
|
3784
|
-
msgstr "
|
3637
|
+
msgstr ""
|
3785
3638
|
|
3786
3639
|
msgid "Product Content"
|
3787
3640
|
msgstr ""
|
@@ -3824,9 +3677,8 @@ msgstr ""
|
|
3824
3677
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3825
3678
|
msgstr ""
|
3826
3679
|
|
3827
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
3828
3680
|
msgid "Products"
|
3829
|
-
msgstr "
|
3681
|
+
msgstr ""
|
3830
3682
|
|
3831
3683
|
msgid "Profiles"
|
3832
3684
|
msgstr ""
|
@@ -3888,15 +3740,15 @@ msgstr ""
|
|
3888
3740
|
msgid "Pulp 3 export destination filepath"
|
3889
3741
|
msgstr ""
|
3890
3742
|
|
3891
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3892
|
-
msgstr ""
|
3893
|
-
|
3894
3743
|
msgid "Pulp Consumer %s has already been removed"
|
3895
3744
|
msgstr ""
|
3896
3745
|
|
3897
3746
|
msgid "Pulp Docker registry port"
|
3898
3747
|
msgstr ""
|
3899
3748
|
|
3749
|
+
msgid "Pulp bulk load size"
|
3750
|
+
msgstr ""
|
3751
|
+
|
3900
3752
|
msgid "Pulp client cert"
|
3901
3753
|
msgstr ""
|
3902
3754
|
|
@@ -3945,33 +3797,6 @@ msgstr ""
|
|
3945
3797
|
msgid "Pulpcore"
|
3946
3798
|
msgstr ""
|
3947
3799
|
|
3948
|
-
msgid "Puppet Environment"
|
3949
|
-
msgstr ""
|
3950
|
-
|
3951
|
-
msgid "Puppet Module"
|
3952
|
-
msgstr ""
|
3953
|
-
|
3954
|
-
msgid ""
|
3955
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3956
|
-
" '%{name}'"
|
3957
|
-
msgstr ""
|
3958
|
-
|
3959
|
-
msgid ""
|
3960
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3961
|
-
" not exist"
|
3962
|
-
msgstr ""
|
3963
|
-
|
3964
|
-
msgid ""
|
3965
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3966
|
-
" exist"
|
3967
|
-
msgstr ""
|
3968
|
-
|
3969
|
-
msgid "Puppet Modules"
|
3970
|
-
msgstr ""
|
3971
|
-
|
3972
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3973
|
-
msgstr ""
|
3974
|
-
|
3975
3800
|
msgid "Quantity"
|
3976
3801
|
msgstr ""
|
3977
3802
|
|
@@ -4002,6 +3827,9 @@ msgstr ""
|
|
4002
3827
|
msgid "RPM"
|
4003
3828
|
msgstr ""
|
4004
3829
|
|
3830
|
+
msgid "RPM name"
|
3831
|
+
msgstr ""
|
3832
|
+
|
4005
3833
|
msgid "RPMs"
|
4006
3834
|
msgstr ""
|
4007
3835
|
|
@@ -4017,38 +3845,29 @@ msgstr ""
|
|
4017
3845
|
msgid "Recommended Repositories"
|
4018
3846
|
msgstr ""
|
4019
3847
|
|
4020
|
-
msgid "Red Hat"
|
4021
|
-
msgstr ""
|
4022
|
-
|
4023
|
-
#, fuzzy
|
4024
3848
|
msgid "Red Hat CDN URL"
|
4025
|
-
msgstr "
|
3849
|
+
msgstr ""
|
4026
3850
|
|
4027
3851
|
msgid "Red Hat Provider Details"
|
4028
3852
|
msgstr ""
|
4029
3853
|
|
4030
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4031
3854
|
msgid "Red Hat Repositories"
|
4032
|
-
msgstr "
|
3855
|
+
msgstr ""
|
4033
3856
|
|
4034
|
-
#, fuzzy
|
4035
3857
|
msgid "Red Hat products cannot be manipulated."
|
4036
|
-
msgstr "
|
3858
|
+
msgstr ""
|
4037
3859
|
|
4038
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4039
3860
|
msgid "Red Hat provider can not be deleted"
|
4040
|
-
msgstr "
|
3861
|
+
msgstr ""
|
4041
3862
|
|
4042
|
-
#, fuzzy
|
4043
3863
|
msgid "Red Hat repositories cannot be manipulated."
|
4044
|
-
msgstr "
|
3864
|
+
msgstr ""
|
4045
3865
|
|
4046
3866
|
msgid "Refresh"
|
4047
3867
|
msgstr ""
|
4048
3868
|
|
4049
|
-
#, fuzzy
|
4050
3869
|
msgid "Refresh Manifest"
|
4051
|
-
msgstr "
|
3870
|
+
msgstr ""
|
4052
3871
|
|
4053
3872
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
4054
3873
|
msgstr ""
|
@@ -4098,32 +3917,29 @@ msgstr ""
|
|
4098
3917
|
msgid "Remove Content"
|
4099
3918
|
msgstr ""
|
4100
3919
|
|
4101
|
-
#, fuzzy
|
4102
3920
|
msgid "Remove Version"
|
4103
|
-
msgstr "
|
3921
|
+
msgstr ""
|
4104
3922
|
|
4105
|
-
#, fuzzy
|
4106
3923
|
msgid "Remove Versions and Associations"
|
4107
|
-
msgstr "
|
3924
|
+
msgstr ""
|
4108
3925
|
|
4109
3926
|
msgid "Remove a content view from an environment"
|
4110
3927
|
msgstr ""
|
4111
3928
|
|
4112
|
-
msgid "Remove
|
3929
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
4113
3930
|
msgstr ""
|
4114
3931
|
|
4115
3932
|
msgid "Remove components from the content view"
|
4116
3933
|
msgstr ""
|
4117
3934
|
|
4118
|
-
msgid "Remove content on one or more hosts"
|
3935
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
4119
3936
|
msgstr ""
|
4120
3937
|
|
4121
3938
|
msgid "Remove content view version"
|
4122
3939
|
msgstr ""
|
4123
3940
|
|
4124
|
-
#, fuzzy
|
4125
3941
|
msgid "Remove from Environment"
|
4126
|
-
msgstr "
|
3942
|
+
msgstr ""
|
4127
3943
|
|
4128
3944
|
msgid "Remove hosts from the host collection"
|
4129
3945
|
msgstr ""
|
@@ -4137,16 +3953,14 @@ msgstr ""
|
|
4137
3953
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
4138
3954
|
msgstr ""
|
4139
3955
|
|
4140
|
-
#, fuzzy
|
4141
3956
|
msgid "Remove package"
|
4142
|
-
msgstr "
|
3957
|
+
msgstr ""
|
4143
3958
|
|
4144
3959
|
msgid "Remove package for %s"
|
4145
3960
|
msgstr ""
|
4146
3961
|
|
4147
|
-
#, fuzzy
|
4148
3962
|
msgid "Remove package group"
|
4149
|
-
msgstr "
|
3963
|
+
msgstr ""
|
4150
3964
|
|
4151
3965
|
msgid "Remove package group via Katello interface"
|
4152
3966
|
msgstr ""
|
@@ -4169,27 +3983,23 @@ msgstr ""
|
|
4169
3983
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
4170
3984
|
msgstr ""
|
4171
3985
|
|
4172
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4173
3986
|
msgid "Removing Package Group..."
|
4174
|
-
msgstr "
|
3987
|
+
msgstr ""
|
4175
3988
|
|
4176
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4177
3989
|
msgid "Removing Package..."
|
4178
|
-
msgstr "
|
3990
|
+
msgstr ""
|
4179
3991
|
|
4180
3992
|
msgid "Repo Type"
|
4181
3993
|
msgstr ""
|
4182
3994
|
|
4183
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
4184
3995
|
msgid "Repositories"
|
4185
|
-
msgstr "
|
3996
|
+
msgstr ""
|
4186
3997
|
|
4187
3998
|
msgid "Repositories from published Content Views are not allowed."
|
4188
3999
|
msgstr ""
|
4189
4000
|
|
4190
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4191
4001
|
msgid "Repository"
|
4192
|
-
msgstr "
|
4002
|
+
msgstr ""
|
4193
4003
|
|
4194
4004
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4195
4005
|
msgstr ""
|
@@ -4209,16 +4019,14 @@ msgstr ""
|
|
4209
4019
|
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."
|
4210
4020
|
msgstr ""
|
4211
4021
|
|
4212
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4213
4022
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4214
|
-
msgstr "
|
4023
|
+
msgstr ""
|
4215
4024
|
|
4216
4025
|
msgid "Repository content type must be 'yum' to export."
|
4217
4026
|
msgstr ""
|
4218
4027
|
|
4219
|
-
#, fuzzy
|
4220
4028
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4221
|
-
msgstr "
|
4029
|
+
msgstr ""
|
4222
4030
|
|
4223
4031
|
msgid "Repository id"
|
4224
4032
|
msgstr ""
|
@@ -4232,16 +4040,14 @@ msgstr ""
|
|
4232
4040
|
msgid "Repository metadata publish"
|
4233
4041
|
msgstr ""
|
4234
4042
|
|
4235
|
-
#, fuzzy
|
4236
4043
|
msgid "Repository not found"
|
4237
|
-
msgstr "
|
4044
|
+
msgstr ""
|
4238
4045
|
|
4239
4046
|
msgid "Repository set name to search on"
|
4240
4047
|
msgstr ""
|
4241
4048
|
|
4242
|
-
#, fuzzy
|
4243
4049
|
msgid "Repository sets are not available for custom products."
|
4244
|
-
msgstr "
|
4050
|
+
msgstr ""
|
4245
4051
|
|
4246
4052
|
msgid "Republish Repositories of %{name} %{version}"
|
4247
4053
|
msgstr ""
|
@@ -4252,9 +4058,6 @@ msgstr ""
|
|
4252
4058
|
msgid "Requires Virt-Who"
|
4253
4059
|
msgstr ""
|
4254
4060
|
|
4255
|
-
msgid "Reset Puppet Environment"
|
4256
|
-
msgstr ""
|
4257
|
-
|
4258
4061
|
msgid "Resolve Traces"
|
4259
4062
|
msgstr ""
|
4260
4063
|
|
@@ -4262,7 +4065,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4262
4065
|
msgstr ""
|
4263
4066
|
|
4264
4067
|
msgid "Resource"
|
4265
|
-
msgstr ""
|
4068
|
+
msgstr "ਸਰੋਤ"
|
4266
4069
|
|
4267
4070
|
msgid "Restart Services via Katello interface"
|
4268
4071
|
msgstr ""
|
@@ -4270,9 +4073,8 @@ msgstr ""
|
|
4270
4073
|
msgid "Restrict Composite Content View promotion"
|
4271
4074
|
msgstr ""
|
4272
4075
|
|
4273
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
4274
4076
|
msgid "Result"
|
4275
|
-
msgstr "
|
4077
|
+
msgstr ""
|
4276
4078
|
|
4277
4079
|
msgid "Retrieve a single errata for a host"
|
4278
4080
|
msgstr ""
|
@@ -4334,18 +4136,23 @@ msgstr ""
|
|
4334
4136
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4335
4137
|
msgstr ""
|
4336
4138
|
|
4337
|
-
msgid "
|
4139
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4338
4140
|
msgstr ""
|
4339
4141
|
|
4142
|
+
msgid "Role"
|
4143
|
+
msgstr "ਰੋਲ"
|
4144
|
+
|
4340
4145
|
msgid "Role of host"
|
4341
4146
|
msgstr ""
|
4342
4147
|
|
4148
|
+
msgid "Roles"
|
4149
|
+
msgstr "ਰੋਲ"
|
4150
|
+
|
4343
4151
|
msgid "Run Sync Plan:"
|
4344
4152
|
msgstr ""
|
4345
4153
|
|
4346
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4347
4154
|
msgid "Running"
|
4348
|
-
msgstr "
|
4155
|
+
msgstr ""
|
4349
4156
|
|
4350
4157
|
msgid "SKU"
|
4351
4158
|
msgstr ""
|
@@ -4360,13 +4167,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4360
4167
|
msgstr ""
|
4361
4168
|
|
4362
4169
|
msgid "Save"
|
4363
|
-
msgstr ""
|
4170
|
+
msgstr "ਸੰਭਾਲੋ"
|
4364
4171
|
|
4365
|
-
msgid "Schedule errata for installation"
|
4172
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4366
4173
|
msgstr ""
|
4367
4174
|
|
4368
4175
|
msgid "Search"
|
4369
|
-
msgstr ""
|
4176
|
+
msgstr "ਖੋਜ"
|
4370
4177
|
|
4371
4178
|
msgid "Search pattern (defaults to '*')"
|
4372
4179
|
msgstr ""
|
@@ -4383,9 +4190,8 @@ msgstr ""
|
|
4383
4190
|
msgid "Search string for hosts to perform an action on"
|
4384
4191
|
msgstr ""
|
4385
4192
|
|
4386
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4387
4193
|
msgid "Security"
|
4388
|
-
msgstr "
|
4194
|
+
msgstr ""
|
4389
4195
|
|
4390
4196
|
msgid "Security errata applicable"
|
4391
4197
|
msgstr ""
|
@@ -4396,20 +4202,17 @@ msgstr ""
|
|
4396
4202
|
msgid "Select"
|
4397
4203
|
msgstr ""
|
4398
4204
|
|
4399
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
4400
4205
|
msgid "Select All"
|
4401
4206
|
msgstr "ਸਭ ਚੁਣੋ"
|
4402
4207
|
|
4403
|
-
#, fuzzy
|
4404
4208
|
msgid "Select Content View"
|
4405
|
-
msgstr "
|
4209
|
+
msgstr ""
|
4406
4210
|
|
4407
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4408
4211
|
msgid "Select None"
|
4409
|
-
msgstr "
|
4212
|
+
msgstr ""
|
4410
4213
|
|
4411
4214
|
msgid "Select Organization"
|
4412
|
-
msgstr ""
|
4215
|
+
msgstr "ਸੰਗਠਨ ਚੁਣੋ"
|
4413
4216
|
|
4414
4217
|
msgid "Select Value"
|
4415
4218
|
msgstr ""
|
@@ -4417,10 +4220,8 @@ msgstr ""
|
|
4417
4220
|
msgid "Select all rows"
|
4418
4221
|
msgstr ""
|
4419
4222
|
|
4420
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
4421
|
-
#, fuzzy
|
4422
4223
|
msgid "Select an Organization"
|
4423
|
-
msgstr "
|
4224
|
+
msgstr ""
|
4424
4225
|
|
4425
4226
|
msgid "Select an organization"
|
4426
4227
|
msgstr ""
|
@@ -4437,9 +4238,8 @@ msgstr ""
|
|
4437
4238
|
msgid "Service Level"
|
4438
4239
|
msgstr ""
|
4439
4240
|
|
4440
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4441
4241
|
msgid "Service Level %s"
|
4442
|
-
msgstr "
|
4242
|
+
msgstr ""
|
4443
4243
|
|
4444
4244
|
msgid "Service Level (SLA)"
|
4445
4245
|
msgstr ""
|
@@ -4468,15 +4268,11 @@ msgstr ""
|
|
4468
4268
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4469
4269
|
msgstr ""
|
4470
4270
|
|
4471
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4472
|
-
msgstr ""
|
4473
|
-
|
4474
4271
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4475
4272
|
msgstr ""
|
4476
4273
|
|
4477
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4478
4274
|
msgid "Severity"
|
4479
|
-
msgstr "
|
4275
|
+
msgstr ""
|
4480
4276
|
|
4481
4277
|
msgid "Show :a_resource"
|
4482
4278
|
msgstr ""
|
@@ -4490,9 +4286,6 @@ msgstr ""
|
|
4490
4286
|
msgid "Show a content view component"
|
4491
4287
|
msgstr ""
|
4492
4288
|
|
4493
|
-
msgid "Show a content view puppet module"
|
4494
|
-
msgstr ""
|
4495
|
-
|
4496
4289
|
msgid "Show a content view's history"
|
4497
4290
|
msgstr ""
|
4498
4291
|
|
@@ -4568,9 +4361,8 @@ msgstr ""
|
|
4568
4361
|
msgid "Smart proxy IDs"
|
4569
4362
|
msgstr ""
|
4570
4363
|
|
4571
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4572
4364
|
msgid "Sockets: %s"
|
4573
|
-
msgstr "
|
4365
|
+
msgstr ""
|
4574
4366
|
|
4575
4367
|
msgid "Solve Dependencies"
|
4576
4368
|
msgstr ""
|
@@ -4584,10 +4376,28 @@ msgstr ""
|
|
4584
4376
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4585
4377
|
msgstr ""
|
4586
4378
|
|
4587
|
-
msgid "
|
4379
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4380
|
+
msgstr ""
|
4381
|
+
|
4382
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4383
|
+
msgstr ""
|
4384
|
+
|
4385
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4386
|
+
msgstr ""
|
4387
|
+
|
4388
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4588
4389
|
msgstr ""
|
4589
4390
|
|
4590
|
-
msgid "Something went wrong while retrieving the
|
4391
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4392
|
+
msgstr ""
|
4393
|
+
|
4394
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4395
|
+
msgstr ""
|
4396
|
+
|
4397
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4398
|
+
msgstr ""
|
4399
|
+
|
4400
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4591
4401
|
msgstr ""
|
4592
4402
|
|
4593
4403
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4605,27 +4415,23 @@ msgstr ""
|
|
4605
4415
|
msgid "Stacking ID"
|
4606
4416
|
msgstr ""
|
4607
4417
|
|
4608
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4609
4418
|
msgid "Start Date"
|
4610
|
-
msgstr "
|
4419
|
+
msgstr ""
|
4611
4420
|
|
4612
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4613
4421
|
msgid "Start Date and Time can't be blank"
|
4614
|
-
msgstr "
|
4422
|
+
msgstr ""
|
4615
4423
|
|
4616
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
4617
4424
|
msgid "Start Time"
|
4618
|
-
msgstr "
|
4425
|
+
msgstr ""
|
4619
4426
|
|
4620
4427
|
msgid "Starts"
|
4621
4428
|
msgstr ""
|
4622
4429
|
|
4623
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4624
4430
|
msgid "Status"
|
4625
4431
|
msgstr "ਹਾਲਤ"
|
4626
4432
|
|
4627
4433
|
msgid "Storage"
|
4628
|
-
msgstr ""
|
4434
|
+
msgstr "ਸਟੋਰੇਜ਼"
|
4629
4435
|
|
4630
4436
|
msgid "Stream"
|
4631
4437
|
msgstr ""
|
@@ -4639,9 +4445,8 @@ msgstr ""
|
|
4639
4445
|
msgid "Subnet IDs"
|
4640
4446
|
msgstr ""
|
4641
4447
|
|
4642
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4643
4448
|
msgid "Subscription"
|
4644
|
-
msgstr "
|
4449
|
+
msgstr ""
|
4645
4450
|
|
4646
4451
|
msgid "Subscription Allocation"
|
4647
4452
|
msgstr ""
|
@@ -4712,14 +4517,12 @@ msgstr ""
|
|
4712
4517
|
msgid "Subscriptions have been saved and are being updated. "
|
4713
4518
|
msgstr ""
|
4714
4519
|
|
4715
|
-
#, fuzzy
|
4716
4520
|
msgid "Subscriptions information based on selected activation keys:"
|
4717
|
-
msgstr "
|
4521
|
+
msgstr ""
|
4718
4522
|
|
4719
4523
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4720
4524
|
msgstr ""
|
4721
4525
|
|
4722
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
4723
4526
|
msgid "Success"
|
4724
4527
|
msgstr "ਸਫਲਤਾ"
|
4725
4528
|
|
@@ -4744,9 +4547,8 @@ msgstr ""
|
|
4744
4547
|
msgid "Successfully synchronized."
|
4745
4548
|
msgstr ""
|
4746
4549
|
|
4747
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4748
4550
|
msgid "Summary"
|
4749
|
-
msgstr "
|
4551
|
+
msgstr ""
|
4750
4552
|
|
4751
4553
|
msgid "Support Type"
|
4752
4554
|
msgstr ""
|
@@ -4754,21 +4556,20 @@ msgstr ""
|
|
4754
4556
|
msgid "Supported Content Types"
|
4755
4557
|
msgstr ""
|
4756
4558
|
|
4757
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4758
4559
|
msgid "Sync Canceled"
|
4759
|
-
msgstr "
|
4560
|
+
msgstr ""
|
4561
|
+
|
4562
|
+
msgid "Sync Connection Timeout"
|
4563
|
+
msgstr ""
|
4760
4564
|
|
4761
4565
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4762
4566
|
msgstr ""
|
4763
4567
|
|
4764
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4765
|
-
#, fuzzy
|
4766
4568
|
msgid "Sync Incomplete"
|
4767
|
-
msgstr "
|
4569
|
+
msgstr ""
|
4768
4570
|
|
4769
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4770
4571
|
msgid "Sync Overview"
|
4771
|
-
msgstr "
|
4572
|
+
msgstr ""
|
4772
4573
|
|
4773
4574
|
msgid "Sync Plan"
|
4774
4575
|
msgstr ""
|
@@ -4776,9 +4577,8 @@ msgstr ""
|
|
4776
4577
|
msgid "Sync Plan: "
|
4777
4578
|
msgstr ""
|
4778
4579
|
|
4779
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4780
4580
|
msgid "Sync Plans"
|
4781
|
-
msgstr "
|
4581
|
+
msgstr ""
|
4782
4582
|
|
4783
4583
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4784
4584
|
msgstr ""
|
@@ -4786,9 +4586,8 @@ msgstr ""
|
|
4786
4586
|
msgid "Sync Smart Proxies after Content View promotion"
|
4787
4587
|
msgstr ""
|
4788
4588
|
|
4789
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4790
4589
|
msgid "Sync Status"
|
4791
|
-
msgstr "
|
4590
|
+
msgstr ""
|
4792
4591
|
|
4793
4592
|
msgid "Sync Summary"
|
4794
4593
|
msgstr ""
|
@@ -4805,9 +4604,8 @@ msgstr ""
|
|
4805
4604
|
msgid "Sync capsule"
|
4806
4605
|
msgstr ""
|
4807
4606
|
|
4808
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4809
4607
|
msgid "Sync complete."
|
4810
|
-
msgstr "
|
4608
|
+
msgstr ""
|
4811
4609
|
|
4812
4610
|
msgid "Sync errata"
|
4813
4611
|
msgstr ""
|
@@ -4827,13 +4625,11 @@ msgstr ""
|
|
4827
4625
|
msgid "Synced to smart proxy"
|
4828
4626
|
msgstr ""
|
4829
4627
|
|
4830
|
-
#, fuzzy
|
4831
4628
|
msgid "Synchronize"
|
4832
|
-
msgstr "
|
4629
|
+
msgstr ""
|
4833
4630
|
|
4834
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4835
4631
|
msgid "Synchronize Now"
|
4836
|
-
msgstr "
|
4632
|
+
msgstr ""
|
4837
4633
|
|
4838
4634
|
msgid "Synchronize capsule content"
|
4839
4635
|
msgstr ""
|
@@ -4853,14 +4649,15 @@ msgstr ""
|
|
4853
4649
|
msgid "Synchronize: Validate Content"
|
4854
4650
|
msgstr ""
|
4855
4651
|
|
4856
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4857
|
-
#, fuzzy
|
4858
4652
|
msgid "Syncing Complete."
|
4859
|
-
msgstr "
|
4653
|
+
msgstr ""
|
4860
4654
|
|
4861
4655
|
msgid "System Purpose"
|
4862
4656
|
msgstr ""
|
4863
4657
|
|
4658
|
+
msgid "System Status"
|
4659
|
+
msgstr ""
|
4660
|
+
|
4864
4661
|
msgid "Tags"
|
4865
4662
|
msgstr ""
|
4866
4663
|
|
@@ -4879,29 +4676,29 @@ msgstr ""
|
|
4879
4676
|
msgid "Temporary"
|
4880
4677
|
msgstr ""
|
4881
4678
|
|
4882
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4883
4679
|
msgid "The '%s' environment cannot contain a changeset!"
|
4884
|
-
msgstr "
|
4680
|
+
msgstr ""
|
4885
4681
|
|
4886
4682
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4887
4683
|
msgstr ""
|
4888
4684
|
|
4685
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4686
|
+
msgstr ""
|
4687
|
+
|
4889
4688
|
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."
|
4890
4689
|
msgstr ""
|
4891
4690
|
|
4892
4691
|
msgid "The actual file contents"
|
4893
4692
|
msgstr ""
|
4894
4693
|
|
4895
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
4896
4694
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4897
|
-
msgstr "
|
4695
|
+
msgstr ""
|
4898
4696
|
|
4899
4697
|
msgid "The default content view cannot be edited, published, or deleted."
|
4900
4698
|
msgstr ""
|
4901
4699
|
|
4902
|
-
#, fuzzy
|
4903
4700
|
msgid "The default content view cannot be promoted"
|
4904
|
-
msgstr "
|
4701
|
+
msgstr ""
|
4905
4702
|
|
4906
4703
|
msgid "The default dependency solving value for new Content Views."
|
4907
4704
|
msgstr ""
|
@@ -4918,6 +4715,12 @@ msgstr ""
|
|
4918
4715
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4919
4716
|
msgstr ""
|
4920
4717
|
|
4718
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4719
|
+
msgstr ""
|
4720
|
+
|
4721
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4722
|
+
msgstr ""
|
4723
|
+
|
4921
4724
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4922
4725
|
msgstr ""
|
4923
4726
|
|
@@ -4941,6 +4744,11 @@ msgid ""
|
|
4941
4744
|
" %{repos}"
|
4942
4745
|
msgstr ""
|
4943
4746
|
|
4747
|
+
msgid ""
|
4748
|
+
"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"
|
4749
|
+
" %{repos}"
|
4750
|
+
msgstr ""
|
4751
|
+
|
4944
4752
|
msgid "The id of the host to alter"
|
4945
4753
|
msgstr ""
|
4946
4754
|
|
@@ -4953,6 +4761,9 @@ msgstr ""
|
|
4953
4761
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4954
4762
|
msgstr ""
|
4955
4763
|
|
4764
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4765
|
+
msgstr ""
|
4766
|
+
|
4956
4767
|
msgid "The offset in the file where the content starts"
|
4957
4768
|
msgstr ""
|
4958
4769
|
|
@@ -4974,15 +4785,8 @@ msgstr ""
|
|
4974
4785
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4975
4786
|
msgstr ""
|
4976
4787
|
|
4977
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4978
|
-
msgstr ""
|
4979
|
-
|
4980
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4981
|
-
msgstr ""
|
4982
|
-
|
4983
|
-
#, fuzzy
|
4984
4788
|
msgid "The repository is already enabled"
|
4985
|
-
msgstr "
|
4789
|
+
msgstr ""
|
4986
4790
|
|
4987
4791
|
msgid "The request did not contain any repository information."
|
4988
4792
|
msgstr ""
|
@@ -4996,9 +4800,6 @@ msgstr ""
|
|
4996
4800
|
msgid "The requested traces were not found for this host"
|
4997
4801
|
msgstr ""
|
4998
4802
|
|
4999
|
-
msgid "The selected content source and lifecycle environment do not match"
|
5000
|
-
msgstr ""
|
5001
|
-
|
5002
4803
|
msgid ""
|
5003
4804
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
5004
4805
|
" content source, operating system, and architecture"
|
@@ -5016,6 +4817,9 @@ msgstr ""
|
|
5016
4817
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
5017
4818
|
msgstr ""
|
5018
4819
|
|
4820
|
+
msgid "The token key to use for authentication."
|
4821
|
+
msgstr ""
|
4822
|
+
|
5019
4823
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
5020
4824
|
msgstr ""
|
5021
4825
|
|
@@ -5037,9 +4841,6 @@ msgstr ""
|
|
5037
4841
|
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."
|
5038
4842
|
msgstr ""
|
5039
4843
|
|
5040
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
5041
|
-
msgstr ""
|
5042
|
-
|
5043
4844
|
msgid "There is no Manifest History to display."
|
5044
4845
|
msgstr ""
|
5045
4846
|
|
@@ -5070,15 +4871,12 @@ msgstr ""
|
|
5070
4871
|
msgid "This action doesn't support package groups"
|
5071
4872
|
msgstr ""
|
5072
4873
|
|
5073
|
-
msgid "This action
|
4874
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
5074
4875
|
msgstr ""
|
5075
4876
|
|
5076
4877
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
5077
4878
|
msgstr ""
|
5078
4879
|
|
5079
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
5080
|
-
msgstr ""
|
5081
|
-
|
5082
4880
|
msgid "This content view version doesn't have a history."
|
5083
4881
|
msgstr ""
|
5084
4882
|
|
@@ -5142,17 +4940,16 @@ msgstr ""
|
|
5142
4940
|
msgid "Timestamp"
|
5143
4941
|
msgstr ""
|
5144
4942
|
|
5145
|
-
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
5146
4943
|
msgid "Title"
|
5147
|
-
msgstr "
|
4944
|
+
msgstr ""
|
5148
4945
|
|
5149
4946
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
5150
4947
|
msgstr ""
|
5151
4948
|
|
5152
|
-
msgid "Total
|
4949
|
+
msgid "Total steps: "
|
5153
4950
|
msgstr ""
|
5154
4951
|
|
5155
|
-
msgid "Total
|
4952
|
+
msgid "Total timeout in seconds for connections when syncing"
|
5156
4953
|
msgstr ""
|
5157
4954
|
|
5158
4955
|
msgid "Tracer profile uploaded successfully"
|
@@ -5183,7 +4980,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
|
|
5183
4980
|
msgstr ""
|
5184
4981
|
|
5185
4982
|
msgid "UUID"
|
5186
|
-
msgstr ""
|
4983
|
+
msgstr "UUID"
|
5187
4984
|
|
5188
4985
|
msgid "UUID of the consumer"
|
5189
4986
|
msgstr ""
|
@@ -5215,13 +5012,13 @@ msgstr ""
|
|
5215
5012
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5216
5013
|
msgstr ""
|
5217
5014
|
|
5218
|
-
msgid "Unable to
|
5015
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5219
5016
|
msgstr ""
|
5220
5017
|
|
5221
|
-
msgid "Unable to
|
5018
|
+
msgid "Unable to get users"
|
5222
5019
|
msgstr ""
|
5223
5020
|
|
5224
|
-
msgid "Unable to
|
5021
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5225
5022
|
msgstr ""
|
5226
5023
|
|
5227
5024
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5245,6 +5042,12 @@ msgstr ""
|
|
5245
5042
|
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."
|
5246
5043
|
msgstr ""
|
5247
5044
|
|
5045
|
+
msgid "Unable to update the repository list"
|
5046
|
+
msgstr ""
|
5047
|
+
|
5048
|
+
msgid "Unable to update the user-repository mapping"
|
5049
|
+
msgstr ""
|
5050
|
+
|
5248
5051
|
msgid "Unapplied Errata"
|
5249
5052
|
msgstr ""
|
5250
5053
|
|
@@ -5260,10 +5063,9 @@ msgstr ""
|
|
5260
5063
|
msgid "Unfiltered params array: %s."
|
5261
5064
|
msgstr ""
|
5262
5065
|
|
5263
|
-
msgid "Uninstall packages remotely"
|
5066
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5264
5067
|
msgstr ""
|
5265
5068
|
|
5266
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
5267
5069
|
msgid "Unknown"
|
5268
5070
|
msgstr "ਅਣਜਾਣ"
|
5269
5071
|
|
@@ -5306,7 +5108,6 @@ msgstr ""
|
|
5306
5108
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5307
5109
|
msgstr ""
|
5308
5110
|
|
5309
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5310
5111
|
msgid "Update"
|
5311
5112
|
msgstr "ਅੱਪਡੇਟ"
|
5312
5113
|
|
@@ -5337,9 +5138,6 @@ msgstr ""
|
|
5337
5138
|
msgid "Update a host collection"
|
5338
5139
|
msgstr ""
|
5339
5140
|
|
5340
|
-
msgid "Update a puppet module associated with the content view"
|
5341
|
-
msgstr ""
|
5342
|
-
|
5343
5141
|
msgid "Update a repository"
|
5344
5142
|
msgstr ""
|
5345
5143
|
|
@@ -5355,7 +5153,7 @@ msgstr ""
|
|
5355
5153
|
msgid "Update an environment in an organization"
|
5356
5154
|
msgstr ""
|
5357
5155
|
|
5358
|
-
msgid "Update content on one or more hosts"
|
5156
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5359
5157
|
msgstr ""
|
5360
5158
|
|
5361
5159
|
msgid "Update content urls"
|
@@ -5397,7 +5195,7 @@ msgstr ""
|
|
5397
5195
|
msgid "Update package via Katello interface"
|
5398
5196
|
msgstr ""
|
5399
5197
|
|
5400
|
-
msgid "Update packages remotely"
|
5198
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5401
5199
|
msgstr ""
|
5402
5200
|
|
5403
5201
|
msgid "Update redhat repository"
|
@@ -5422,7 +5220,7 @@ msgid "Update the quantity of one or more subscriptions on an upstream allocatio
|
|
5422
5220
|
msgstr ""
|
5423
5221
|
|
5424
5222
|
msgid "Updated"
|
5425
|
-
msgstr ""
|
5223
|
+
msgstr "ਅੱਪਡੇਟ ਹੋ ਗਏ"
|
5426
5224
|
|
5427
5225
|
msgid "Updates"
|
5428
5226
|
msgstr ""
|
@@ -5433,9 +5231,8 @@ msgstr ""
|
|
5433
5231
|
msgid "Updates all packages on the host(s)"
|
5434
5232
|
msgstr ""
|
5435
5233
|
|
5436
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5437
5234
|
msgid "Updating Package..."
|
5438
|
-
msgstr "
|
5235
|
+
msgstr ""
|
5439
5236
|
|
5440
5237
|
msgid "Updating System Purpose for host"
|
5441
5238
|
msgstr ""
|
@@ -5443,9 +5240,8 @@ msgstr ""
|
|
5443
5240
|
msgid "Updating System Purpose for host %s"
|
5444
5241
|
msgstr ""
|
5445
5242
|
|
5446
|
-
#, fuzzy
|
5447
5243
|
msgid "Updating package group..."
|
5448
|
-
msgstr "
|
5244
|
+
msgstr ""
|
5449
5245
|
|
5450
5246
|
msgid "Updating repository authentication configuration"
|
5451
5247
|
msgstr ""
|
@@ -5468,10 +5264,8 @@ msgstr ""
|
|
5468
5264
|
msgid "Upload errata into"
|
5469
5265
|
msgstr ""
|
5470
5266
|
|
5471
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5472
|
-
#, fuzzy
|
5473
5267
|
msgid "Upload into"
|
5474
|
-
msgstr "
|
5268
|
+
msgstr ""
|
5475
5269
|
|
5476
5270
|
msgid "Upload request id"
|
5477
5271
|
msgstr ""
|
@@ -5506,6 +5300,9 @@ msgstr ""
|
|
5506
5300
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5507
5301
|
msgstr ""
|
5508
5302
|
|
5303
|
+
msgid "User"
|
5304
|
+
msgstr "ਯੂਜ਼ਰ"
|
5305
|
+
|
5509
5306
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5510
5307
|
msgstr ""
|
5511
5308
|
|
@@ -5540,21 +5337,22 @@ msgid "Verify checksum of repository contents"
|
|
5540
5337
|
msgstr ""
|
5541
5338
|
|
5542
5339
|
msgid "Version"
|
5543
|
-
msgstr ""
|
5340
|
+
msgstr "ਵਰਜਨ"
|
5544
5341
|
|
5545
5342
|
msgid "Versions"
|
5546
5343
|
msgstr ""
|
5547
5344
|
|
5548
|
-
|
5345
|
+
msgid "Versions will appear here when the content view is published."
|
5346
|
+
msgstr ""
|
5347
|
+
|
5549
5348
|
msgid "View %{view} has not been promoted to %{env}"
|
5550
|
-
msgstr "
|
5349
|
+
msgstr ""
|
5551
5350
|
|
5552
5351
|
msgid "View a report of the affected hosts"
|
5553
5352
|
msgstr ""
|
5554
5353
|
|
5555
|
-
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5556
5354
|
msgid "Virtual"
|
5557
|
-
msgstr "
|
5355
|
+
msgstr ""
|
5558
5356
|
|
5559
5357
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5560
5358
|
msgstr ""
|
@@ -5616,13 +5414,11 @@ msgstr ""
|
|
5616
5414
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5617
5415
|
msgstr ""
|
5618
5416
|
|
5619
|
-
#, fuzzy
|
5620
5417
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5621
|
-
msgstr "
|
5418
|
+
msgstr ""
|
5622
5419
|
|
5623
|
-
#, fuzzy
|
5624
5420
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5625
|
-
msgstr "
|
5421
|
+
msgstr ""
|
5626
5422
|
|
5627
5423
|
msgid "You currently don't have any Content Views."
|
5628
5424
|
msgstr ""
|
@@ -5630,9 +5426,15 @@ msgstr ""
|
|
5630
5426
|
msgid "You currently don't have any filters for this content view."
|
5631
5427
|
msgstr ""
|
5632
5428
|
|
5429
|
+
msgid "You currently don't have any history for this content view."
|
5430
|
+
msgstr ""
|
5431
|
+
|
5633
5432
|
msgid "You currently don't have any repositories to add to this content view."
|
5634
5433
|
msgstr ""
|
5635
5434
|
|
5435
|
+
msgid "You currently don't have any versions for this content view."
|
5436
|
+
msgstr ""
|
5437
|
+
|
5636
5438
|
msgid "You do not have permissions to delete %s"
|
5637
5439
|
msgstr ""
|
5638
5440
|
|
@@ -5681,19 +5483,16 @@ msgstr ""
|
|
5681
5483
|
msgid "a file"
|
5682
5484
|
msgstr ""
|
5683
5485
|
|
5486
|
+
msgid "a future release"
|
5487
|
+
msgstr ""
|
5488
|
+
|
5684
5489
|
msgid "a module stream"
|
5685
5490
|
msgstr ""
|
5686
5491
|
|
5687
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5688
|
-
#, fuzzy
|
5689
5492
|
msgid "a package"
|
5690
|
-
msgstr "
|
5493
|
+
msgstr ""
|
5691
5494
|
|
5692
|
-
#, fuzzy
|
5693
5495
|
msgid "a package group"
|
5694
|
-
msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
|
5695
|
-
|
5696
|
-
msgid "a puppet module"
|
5697
5496
|
msgstr ""
|
5698
5497
|
|
5699
5498
|
msgid "actions not found"
|
@@ -5705,9 +5504,8 @@ msgstr ""
|
|
5705
5504
|
msgid "activation key name to filter by"
|
5706
5505
|
msgstr ""
|
5707
5506
|
|
5708
|
-
#, fuzzy
|
5709
5507
|
msgid "activation keys"
|
5710
|
-
msgstr "
|
5508
|
+
msgstr ""
|
5711
5509
|
|
5712
5510
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5713
5511
|
msgstr ""
|
@@ -5715,36 +5513,32 @@ msgstr ""
|
|
5715
5513
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5716
5514
|
msgstr ""
|
5717
5515
|
|
5718
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5719
5516
|
msgid "all packages"
|
5720
|
-
msgstr "
|
5517
|
+
msgstr ""
|
5721
5518
|
|
5722
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5723
5519
|
msgid "all packages update"
|
5724
|
-
msgstr "
|
5520
|
+
msgstr ""
|
5725
5521
|
|
5726
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5727
5522
|
msgid "all packages update failed"
|
5728
|
-
msgstr "
|
5523
|
+
msgstr ""
|
5729
5524
|
|
5730
5525
|
msgid "allow unauthenticed pull of container images"
|
5731
5526
|
msgstr ""
|
5732
5527
|
|
5733
|
-
|
5528
|
+
msgid "already belongs to the content view"
|
5529
|
+
msgstr ""
|
5530
|
+
|
5734
5531
|
msgid "already taken"
|
5735
|
-
msgstr "
|
5532
|
+
msgstr ""
|
5736
5533
|
|
5737
5534
|
msgid "an ansible collection"
|
5738
5535
|
msgstr ""
|
5739
5536
|
|
5740
|
-
#, fuzzy
|
5741
5537
|
msgid "an erratum"
|
5742
|
-
msgstr "
|
5538
|
+
msgstr ""
|
5743
5539
|
|
5744
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
5745
|
-
#, fuzzy
|
5746
5540
|
msgid "an organization"
|
5747
|
-
msgstr "
|
5541
|
+
msgstr ""
|
5748
5542
|
|
5749
5543
|
msgid "an ostree branch"
|
5750
5544
|
msgstr ""
|
@@ -5755,9 +5549,6 @@ msgstr ""
|
|
5755
5549
|
msgid "attempted to sync without a feed URL"
|
5756
5550
|
msgstr ""
|
5757
5551
|
|
5758
|
-
msgid "author of the puppet module"
|
5759
|
-
msgstr ""
|
5760
|
-
|
5761
5552
|
msgid "auto attach subscriptions upon registration"
|
5762
5553
|
msgstr ""
|
5763
5554
|
|
@@ -5767,42 +5558,35 @@ msgstr ""
|
|
5767
5558
|
msgid "can the activation key have unlimited hosts"
|
5768
5559
|
msgstr ""
|
5769
5560
|
|
5770
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5771
5561
|
msgid "can't be blank"
|
5772
|
-
msgstr "
|
5562
|
+
msgstr ""
|
5773
5563
|
|
5774
5564
|
msgid "cannot add filter to import-only view"
|
5775
5565
|
msgstr ""
|
5776
5566
|
|
5777
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5778
5567
|
msgid "cannot be a binary file."
|
5779
|
-
msgstr "
|
5568
|
+
msgstr ""
|
5780
5569
|
|
5781
|
-
#, fuzzy
|
5782
5570
|
msgid "cannot be blank"
|
5783
|
-
msgstr "
|
5571
|
+
msgstr ""
|
5784
5572
|
|
5785
5573
|
msgid "cannot be blank when Repository URL is provided."
|
5786
5574
|
msgstr ""
|
5787
5575
|
|
5788
|
-
#, fuzzy
|
5789
5576
|
msgid "cannot be changed."
|
5790
|
-
msgstr "
|
5577
|
+
msgstr ""
|
5791
5578
|
|
5792
|
-
#, fuzzy
|
5793
5579
|
msgid "cannot be deleted if it has been promoted."
|
5794
|
-
msgstr "
|
5580
|
+
msgstr ""
|
5795
5581
|
|
5796
5582
|
msgid "cannot be less than one"
|
5797
5583
|
msgstr ""
|
5798
5584
|
|
5799
|
-
#, fuzzy
|
5800
5585
|
msgid "cannot be lower than current usage count (%s)"
|
5801
|
-
msgstr "
|
5586
|
+
msgstr ""
|
5802
5587
|
|
5803
|
-
#, fuzzy
|
5804
5588
|
msgid "cannot be nil"
|
5805
|
-
msgstr "
|
5589
|
+
msgstr ""
|
5806
5590
|
|
5807
5591
|
msgid "cannot be set because unlimited hosts is set"
|
5808
5592
|
msgstr ""
|
@@ -5814,21 +5598,19 @@ msgid "cannot be set for non-yum repositories."
|
|
5814
5598
|
msgstr ""
|
5815
5599
|
|
5816
5600
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5817
|
-
msgstr "
|
5601
|
+
msgstr ""
|
5818
5602
|
|
5819
5603
|
msgid "cannot contain commas"
|
5820
5604
|
msgstr ""
|
5821
5605
|
|
5822
|
-
#, fuzzy
|
5823
5606
|
msgid "cannot contain filters if composite view"
|
5824
|
-
msgstr "
|
5607
|
+
msgstr ""
|
5825
5608
|
|
5826
5609
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5827
5610
|
msgstr ""
|
5828
5611
|
|
5829
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
5830
5612
|
msgid "cannot contain more than %s characters"
|
5831
|
-
msgstr "
|
5613
|
+
msgstr ""
|
5832
5614
|
|
5833
5615
|
msgid "checking Candlepin task status"
|
5834
5616
|
msgstr ""
|
@@ -5836,15 +5618,6 @@ msgstr ""
|
|
5836
5618
|
msgid "checking Pulp task status"
|
5837
5619
|
msgstr ""
|
5838
5620
|
|
5839
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5840
|
-
msgstr ""
|
5841
|
-
|
5842
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5843
|
-
msgstr ""
|
5844
|
-
|
5845
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5846
|
-
msgstr ""
|
5847
|
-
|
5848
5621
|
msgid "composite content view identifier"
|
5849
5622
|
msgstr ""
|
5850
5623
|
|
@@ -5857,7 +5630,7 @@ msgstr ""
|
|
5857
5630
|
msgid "content release version"
|
5858
5631
|
msgstr ""
|
5859
5632
|
|
5860
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5633
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5861
5634
|
msgstr ""
|
5862
5635
|
|
5863
5636
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5884,13 +5657,11 @@ msgstr ""
|
|
5884
5657
|
msgid "content view numeric identifier"
|
5885
5658
|
msgstr ""
|
5886
5659
|
|
5887
|
-
#, fuzzy
|
5888
5660
|
msgid "content view publish"
|
5889
|
-
msgstr "
|
5661
|
+
msgstr ""
|
5890
5662
|
|
5891
|
-
#, fuzzy
|
5892
5663
|
msgid "content view refresh"
|
5893
|
-
msgstr "
|
5664
|
+
msgstr ""
|
5894
5665
|
|
5895
5666
|
msgid "content view to reassign orphaned activation keys to"
|
5896
5667
|
msgstr ""
|
@@ -5961,9 +5732,8 @@ msgstr ""
|
|
5961
5732
|
msgid "environment to reassign orphaned systems to"
|
5962
5733
|
msgstr ""
|
5963
5734
|
|
5964
|
-
#, fuzzy
|
5965
5735
|
msgid "environments"
|
5966
|
-
msgstr "
|
5736
|
+
msgstr ""
|
5967
5737
|
|
5968
5738
|
msgid "errata_id of the content view filter rule"
|
5969
5739
|
msgstr ""
|
@@ -6019,9 +5789,8 @@ msgstr ""
|
|
6019
5789
|
msgid "foreman-tasks service not running or is not ready yet"
|
6020
5790
|
msgstr ""
|
6021
5791
|
|
6022
|
-
#, fuzzy
|
6023
5792
|
msgid "has already been taken"
|
6024
|
-
msgstr "
|
5793
|
+
msgstr ""
|
6025
5794
|
|
6026
5795
|
msgid "has already been taken for a product in this organization."
|
6027
5796
|
msgstr ""
|
@@ -6068,29 +5837,23 @@ msgstr ""
|
|
6068
5837
|
msgid "initiating Pulp task"
|
6069
5838
|
msgstr ""
|
6070
5839
|
|
6071
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6072
5840
|
msgid "installing errata..."
|
6073
|
-
msgstr "
|
5841
|
+
msgstr ""
|
6074
5842
|
|
6075
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6076
5843
|
msgid "installing erratum..."
|
6077
|
-
msgstr "
|
5844
|
+
msgstr ""
|
6078
5845
|
|
6079
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6080
5846
|
msgid "installing package group..."
|
6081
|
-
msgstr "
|
5847
|
+
msgstr ""
|
6082
5848
|
|
6083
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6084
5849
|
msgid "installing package groups..."
|
6085
|
-
msgstr "
|
5850
|
+
msgstr ""
|
6086
5851
|
|
6087
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6088
5852
|
msgid "installing package..."
|
6089
|
-
msgstr "
|
5853
|
+
msgstr ""
|
6090
5854
|
|
6091
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6092
5855
|
msgid "installing packages..."
|
6093
|
-
msgstr "
|
5856
|
+
msgstr ""
|
6094
5857
|
|
6095
5858
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
6096
5859
|
msgstr ""
|
@@ -6104,7 +5867,6 @@ msgstr ""
|
|
6104
5867
|
msgid "is already attached to the capsule"
|
6105
5868
|
msgstr ""
|
6106
5869
|
|
6107
|
-
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
6108
5870
|
msgid "is invalid"
|
6109
5871
|
msgstr "ਯੋਗ ਹੈ"
|
6110
5872
|
|
@@ -6144,15 +5906,9 @@ msgstr ""
|
|
6144
5906
|
msgid "maximum size of each ISO in MB"
|
6145
5907
|
msgstr ""
|
6146
5908
|
|
6147
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6148
|
-
msgstr ""
|
6149
|
-
|
6150
5909
|
msgid "may not be less than the number of hosts associated with the host collection."
|
6151
5910
|
msgstr ""
|
6152
5911
|
|
6153
|
-
msgid "module name to restrict modules for"
|
6154
|
-
msgstr ""
|
6155
|
-
|
6156
5912
|
msgid "module stream ids"
|
6157
5913
|
msgstr ""
|
6158
5914
|
|
@@ -6162,9 +5918,8 @@ msgstr ""
|
|
6162
5918
|
msgid "must be %{gpg_key} or %{cert}"
|
6163
5919
|
msgstr ""
|
6164
5920
|
|
6165
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6166
5921
|
msgid "must be a positive integer value."
|
6167
|
-
msgstr "
|
5922
|
+
msgstr ""
|
6168
5923
|
|
6169
5924
|
msgid "must be one of the following: %s"
|
6170
5925
|
msgstr ""
|
@@ -6172,21 +5927,17 @@ msgstr ""
|
|
6172
5927
|
msgid "must be one of: %s"
|
6173
5928
|
msgstr ""
|
6174
5929
|
|
6175
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6176
5930
|
msgid "must be unique within one organization"
|
6177
|
-
msgstr "
|
5931
|
+
msgstr ""
|
6178
5932
|
|
6179
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6180
5933
|
msgid "must contain '%s'"
|
6181
|
-
msgstr "
|
5934
|
+
msgstr ""
|
6182
5935
|
|
6183
|
-
#, fuzzy
|
6184
5936
|
msgid "must contain GPG Key"
|
6185
|
-
msgstr "
|
5937
|
+
msgstr ""
|
6186
5938
|
|
6187
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6188
5939
|
msgid "must contain at least %s character"
|
6189
|
-
msgstr "
|
5940
|
+
msgstr ""
|
6190
5941
|
|
6191
5942
|
msgid "must contain valid Public GPG Key"
|
6192
5943
|
msgstr ""
|
@@ -6194,9 +5945,8 @@ msgstr ""
|
|
6194
5945
|
msgid "must contain valid Public GPG Key"
|
6195
5946
|
msgstr ""
|
6196
5947
|
|
6197
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6198
5948
|
msgid "must not contain leading or trailing white spaces."
|
6199
|
-
msgstr "
|
5949
|
+
msgstr ""
|
6200
5950
|
|
6201
5951
|
msgid "name"
|
6202
5952
|
msgstr ""
|
@@ -6219,15 +5969,14 @@ msgstr ""
|
|
6219
5969
|
msgid "name of the organization"
|
6220
5970
|
msgstr ""
|
6221
5971
|
|
6222
|
-
msgid "name of the
|
5972
|
+
msgid "name of the repository"
|
6223
5973
|
msgstr ""
|
6224
5974
|
|
6225
|
-
msgid "name of the
|
5975
|
+
msgid "name of the subscription"
|
6226
5976
|
msgstr ""
|
6227
5977
|
|
6228
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6229
5978
|
msgid "name: %s doesn't exist "
|
6230
|
-
msgstr "
|
5979
|
+
msgstr ""
|
6231
5980
|
|
6232
5981
|
msgid "new name for the filter"
|
6233
5982
|
msgstr ""
|
@@ -6244,13 +5993,15 @@ msgstr ""
|
|
6244
5993
|
msgid "obtain manifest history for subscriptions"
|
6245
5994
|
msgstr ""
|
6246
5995
|
|
6247
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6248
5996
|
msgid "of environment must be unique within one organization"
|
6249
|
-
msgstr "
|
5997
|
+
msgstr ""
|
6250
5998
|
|
6251
5999
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6252
6000
|
msgstr ""
|
6253
6001
|
|
6002
|
+
msgid "only show the repositories readable by this user with this username"
|
6003
|
+
msgstr ""
|
6004
|
+
|
6254
6005
|
msgid "optional package names to include in the package group"
|
6255
6006
|
msgstr ""
|
6256
6007
|
|
@@ -6290,6 +6041,9 @@ msgstr ""
|
|
6290
6041
|
msgid "package_ids is not an array"
|
6291
6042
|
msgstr ""
|
6292
6043
|
|
6044
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6045
|
+
msgstr ""
|
6046
|
+
|
6293
6047
|
msgid "pattern for container image names"
|
6294
6048
|
msgstr ""
|
6295
6049
|
|
@@ -6311,30 +6065,20 @@ msgstr ""
|
|
6311
6065
|
msgid "product numeric identifier"
|
6312
6066
|
msgstr ""
|
6313
6067
|
|
6314
|
-
msgid "puppet module ID"
|
6315
|
-
msgstr ""
|
6316
|
-
|
6317
|
-
msgid "puppet_module_ids is not an array"
|
6318
|
-
msgstr ""
|
6319
|
-
|
6320
6068
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6321
6069
|
msgstr ""
|
6322
6070
|
|
6323
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6324
6071
|
msgid "removing package group..."
|
6325
|
-
msgstr "
|
6072
|
+
msgstr ""
|
6326
6073
|
|
6327
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6328
6074
|
msgid "removing package groups..."
|
6329
|
-
msgstr "
|
6075
|
+
msgstr ""
|
6330
6076
|
|
6331
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6332
6077
|
msgid "removing package..."
|
6333
|
-
msgstr "
|
6078
|
+
msgstr ""
|
6334
6079
|
|
6335
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6336
6080
|
msgid "removing packages..."
|
6337
|
-
msgstr "
|
6081
|
+
msgstr ""
|
6338
6082
|
|
6339
6083
|
msgid "repo label"
|
6340
6084
|
msgstr ""
|
@@ -6414,17 +6158,7 @@ msgstr ""
|
|
6414
6158
|
msgid "temporarily override feed URL for sync"
|
6415
6159
|
msgstr ""
|
6416
6160
|
|
6417
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6418
6161
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6419
|
-
msgstr "Red Hat ਪਰੋਵਾਈਡਰ ਲਈ ਹੇਠਲੇ ਐਟਰੀਬਿਊਟ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕਦੇ: [ %s ]"
|
6420
|
-
|
6421
|
-
msgid "the id of the puppet module to associate"
|
6422
|
-
msgstr ""
|
6423
|
-
|
6424
|
-
msgid "the uuid of the puppet module to associate"
|
6425
|
-
msgstr ""
|
6426
|
-
|
6427
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6428
6162
|
msgstr ""
|
6429
6163
|
|
6430
6164
|
msgid "true if the latest version of the component's content view is desired"
|
@@ -6454,26 +6188,19 @@ msgstr ""
|
|
6454
6188
|
msgid "update a filter"
|
6455
6189
|
msgstr ""
|
6456
6190
|
|
6457
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6458
6191
|
msgid "updating package group..."
|
6459
|
-
msgstr "
|
6192
|
+
msgstr ""
|
6460
6193
|
|
6461
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6462
6194
|
msgid "updating package groups..."
|
6463
|
-
msgstr "
|
6195
|
+
msgstr ""
|
6464
6196
|
|
6465
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6466
6197
|
msgid "updating package..."
|
6467
|
-
msgstr "
|
6198
|
+
msgstr ""
|
6468
6199
|
|
6469
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
6470
6200
|
msgid "updating packages..."
|
6471
|
-
msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
|
6472
|
-
|
6473
|
-
msgid "url not defined."
|
6474
6201
|
msgstr ""
|
6475
6202
|
|
6476
|
-
msgid "
|
6203
|
+
msgid "url not defined."
|
6477
6204
|
msgstr ""
|
6478
6205
|
|
6479
6206
|
msgid "waiting for Candlepin to finish the task"
|
@@ -6485,6 +6212,15 @@ msgstr ""
|
|
6485
6212
|
msgid "waiting for Pulp to start the task"
|
6486
6213
|
msgstr ""
|
6487
6214
|
|
6215
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6216
|
+
msgstr ""
|
6217
|
+
|
6218
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6219
|
+
msgstr ""
|
6220
|
+
|
6221
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6222
|
+
msgstr ""
|
6223
|
+
|
6488
6224
|
msgid "with"
|
6489
6225
|
msgstr ""
|
6490
6226
|
|