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/cs/katello.po
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
# <lzap@seznam.cz>, 2013.
|
8
8
|
msgid ""
|
9
9
|
msgstr ""
|
10
|
-
"Project-Id-Version:
|
10
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
12
|
"PO-Revision-Date: 2013-01-22 13:28+0000\n"
|
13
13
|
"Last-Translator: lzap <lzap@seznam.cz>\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20
20
|
|
21
21
|
msgid ""
|
22
22
|
"\n"
|
23
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
23
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
24
24
|
msgstr ""
|
25
25
|
|
26
26
|
msgid " %{errata_count} Errata"
|
@@ -32,15 +32,15 @@ msgstr ""
|
|
32
32
|
msgid " %{package_count} Package(s)"
|
33
33
|
msgstr ""
|
34
34
|
|
35
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
36
|
-
msgstr ""
|
37
|
-
|
38
35
|
msgid " Content view updated."
|
39
36
|
msgstr ""
|
40
37
|
|
41
38
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
42
39
|
msgstr ""
|
43
40
|
|
41
|
+
msgid " RPMs"
|
42
|
+
msgstr ""
|
43
|
+
|
44
44
|
msgid " environment cannot be set to an environment already on its path"
|
45
45
|
msgstr ""
|
46
46
|
|
@@ -311,6 +311,9 @@ msgstr ""
|
|
311
311
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
312
312
|
msgstr ""
|
313
313
|
|
314
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
315
|
+
msgstr ""
|
316
|
+
|
314
317
|
msgid "A backend service [ %s ] is unreachable"
|
315
318
|
msgstr ""
|
316
319
|
|
@@ -348,6 +351,9 @@ msgstr ""
|
|
348
351
|
msgid "A summary of new errata after a repository is synchronized"
|
349
352
|
msgstr ""
|
350
353
|
|
354
|
+
msgid "About page"
|
355
|
+
msgstr ""
|
356
|
+
|
351
357
|
msgid "Abstract async task"
|
352
358
|
msgstr ""
|
353
359
|
|
@@ -357,16 +363,19 @@ msgstr ""
|
|
357
363
|
msgid "Account Number"
|
358
364
|
msgstr ""
|
359
365
|
|
366
|
+
msgid "Action"
|
367
|
+
msgstr ""
|
368
|
+
|
360
369
|
msgid "Action not allowed for the default smart proxy."
|
361
370
|
msgstr ""
|
362
371
|
|
363
|
-
msgid "Action unauthorized to be performed
|
372
|
+
msgid "Action unauthorized to be performed in this organization."
|
364
373
|
msgstr ""
|
365
374
|
|
366
|
-
msgid "Action
|
375
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
367
376
|
msgstr ""
|
368
377
|
|
369
|
-
msgid "
|
378
|
+
msgid "Action with sub plans"
|
370
379
|
msgstr ""
|
371
380
|
|
372
381
|
msgid "Activation Keys"
|
@@ -376,12 +385,21 @@ msgstr "Aktivační klíče"
|
|
376
385
|
msgid "Activation key ID"
|
377
386
|
msgstr "Aktivační klíče"
|
378
387
|
|
379
|
-
msgid "Activation key
|
388
|
+
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."
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Activation key(s) for Subscription Manager."
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
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"
|
380
395
|
msgstr ""
|
381
396
|
|
382
397
|
msgid "Activation keys and subscriptions can be managed"
|
383
398
|
msgstr ""
|
384
399
|
|
400
|
+
msgid "Activation keys: "
|
401
|
+
msgstr ""
|
402
|
+
|
385
403
|
msgid "Active Subscriptions"
|
386
404
|
msgstr ""
|
387
405
|
|
@@ -392,9 +410,6 @@ msgstr "Aktivační klíče"
|
|
392
410
|
msgid "Add Subscriptions"
|
393
411
|
msgstr ""
|
394
412
|
|
395
|
-
msgid "Add a puppet module to the content view"
|
396
|
-
msgstr ""
|
397
|
-
|
398
413
|
msgid "Add a subscription to a host"
|
399
414
|
msgstr ""
|
400
415
|
|
@@ -428,13 +443,22 @@ msgstr ""
|
|
428
443
|
msgid "Add subscriptions to one or more hosts"
|
429
444
|
msgstr ""
|
430
445
|
|
446
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
447
|
+
msgstr ""
|
448
|
+
|
449
|
+
msgid "Add to this filter using the 'Add package group' button."
|
450
|
+
msgstr ""
|
451
|
+
|
452
|
+
msgid "Added"
|
453
|
+
msgstr ""
|
454
|
+
|
431
455
|
msgid "Added Content:"
|
432
456
|
msgstr ""
|
433
457
|
|
434
458
|
msgid "Adding content units"
|
435
459
|
msgstr ""
|
436
460
|
|
437
|
-
msgid "
|
461
|
+
msgid "Additional content"
|
438
462
|
msgstr ""
|
439
463
|
|
440
464
|
msgid "Addons"
|
@@ -496,6 +520,9 @@ msgstr ""
|
|
496
520
|
msgid "Arch"
|
497
521
|
msgstr ""
|
498
522
|
|
523
|
+
msgid "Architecture"
|
524
|
+
msgstr ""
|
525
|
+
|
499
526
|
msgid "Architecture of content in the repository"
|
500
527
|
msgstr ""
|
501
528
|
|
@@ -786,13 +813,10 @@ msgstr ""
|
|
786
813
|
msgid "Cannot delete redhat product content"
|
787
814
|
msgstr ""
|
788
815
|
|
789
|
-
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."
|
790
|
-
msgstr ""
|
791
|
-
|
792
816
|
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."
|
793
817
|
msgstr ""
|
794
818
|
|
795
|
-
msgid "Cannot delete the last Location.
|
819
|
+
msgid "Cannot delete the last Location."
|
796
820
|
msgstr ""
|
797
821
|
|
798
822
|
msgid "Cannot delete version while it is in environment %s"
|
@@ -858,15 +882,12 @@ msgstr ""
|
|
858
882
|
msgid "Cannot specify content for composite views"
|
859
883
|
msgstr ""
|
860
884
|
|
861
|
-
msgid "Cannot sync file:// repositories with On Demand
|
885
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
862
886
|
msgstr ""
|
863
887
|
|
864
888
|
msgid "Cannot upload Container Image content."
|
865
889
|
msgstr ""
|
866
890
|
|
867
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
868
|
-
msgstr ""
|
869
|
-
|
870
891
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
871
892
|
msgstr ""
|
872
893
|
|
@@ -891,6 +912,9 @@ msgstr ""
|
|
891
912
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
892
913
|
msgstr ""
|
893
914
|
|
915
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
916
|
+
msgstr ""
|
917
|
+
|
894
918
|
msgid "Click here to go to the tasks page for the task."
|
895
919
|
msgstr ""
|
896
920
|
|
@@ -987,12 +1011,6 @@ msgstr ""
|
|
987
1011
|
msgid "Content Hosts"
|
988
1012
|
msgstr "Vyhledat obsah"
|
989
1013
|
|
990
|
-
msgid "Content Migration"
|
991
|
-
msgstr ""
|
992
|
-
|
993
|
-
msgid "Content Migration Reset"
|
994
|
-
msgstr ""
|
995
|
-
|
996
1014
|
#, fuzzy
|
997
1015
|
msgid "Content Source"
|
998
1016
|
msgstr "Vyhledat obsah"
|
@@ -1007,9 +1025,6 @@ msgstr ""
|
|
1007
1025
|
msgid "Content View"
|
1008
1026
|
msgstr "Vyhledat obsah"
|
1009
1027
|
|
1010
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
1011
|
-
msgstr ""
|
1012
|
-
|
1013
1028
|
msgid "Content View %{view}: Versions: %{versions}"
|
1014
1029
|
msgstr ""
|
1015
1030
|
|
@@ -1063,6 +1078,9 @@ msgstr ""
|
|
1063
1078
|
msgid "Content host must be unregistered before performing this action."
|
1064
1079
|
msgstr ""
|
1065
1080
|
|
1081
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1082
|
+
msgstr ""
|
1083
|
+
|
1066
1084
|
msgid "Content source ID"
|
1067
1085
|
msgstr ""
|
1068
1086
|
|
@@ -1098,6 +1116,9 @@ msgstr "Vyhledat obsah"
|
|
1098
1116
|
msgid "Content view label"
|
1099
1117
|
msgstr "Vyhledat obsah"
|
1100
1118
|
|
1119
|
+
msgid "Content view not provided in the metadata"
|
1120
|
+
msgstr ""
|
1121
|
+
|
1101
1122
|
msgid "Content view numeric identifier"
|
1102
1123
|
msgstr ""
|
1103
1124
|
|
@@ -1107,6 +1128,9 @@ msgstr ""
|
|
1107
1128
|
msgid "Content view version identifier"
|
1108
1129
|
msgstr ""
|
1109
1130
|
|
1131
|
+
msgid "Content view version import history identifier"
|
1132
|
+
msgstr ""
|
1133
|
+
|
1110
1134
|
msgid "Content_Host_Status"
|
1111
1135
|
msgstr ""
|
1112
1136
|
|
@@ -1154,9 +1178,6 @@ msgstr ""
|
|
1154
1178
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1155
1179
|
msgstr ""
|
1156
1180
|
|
1157
|
-
msgid "Could not find Repository for module %s."
|
1158
|
-
msgstr ""
|
1159
|
-
|
1160
1181
|
msgid "Could not find a host with id %s"
|
1161
1182
|
msgstr ""
|
1162
1183
|
|
@@ -1172,9 +1193,6 @@ msgstr ""
|
|
1172
1193
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1173
1194
|
msgstr ""
|
1174
1195
|
|
1175
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1176
|
-
msgstr ""
|
1177
|
-
|
1178
1196
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1179
1197
|
msgstr ""
|
1180
1198
|
|
@@ -1188,9 +1206,6 @@ msgstr ""
|
|
1188
1206
|
msgid "Couldn't find Organization '%s'."
|
1189
1207
|
msgstr "Smazat organizaci"
|
1190
1208
|
|
1191
|
-
msgid "Couldn't find Puppet Module with id '%s'"
|
1192
|
-
msgstr ""
|
1193
|
-
|
1194
1209
|
msgid "Couldn't find activation key '%s'"
|
1195
1210
|
msgstr ""
|
1196
1211
|
|
@@ -1258,6 +1273,12 @@ msgstr ""
|
|
1258
1273
|
msgid "Create"
|
1259
1274
|
msgstr ""
|
1260
1275
|
|
1276
|
+
msgid "Create Export History"
|
1277
|
+
msgstr ""
|
1278
|
+
|
1279
|
+
msgid "Create Import History"
|
1280
|
+
msgstr ""
|
1281
|
+
|
1261
1282
|
msgid "Create Package Group"
|
1262
1283
|
msgstr ""
|
1263
1284
|
|
@@ -1323,9 +1344,6 @@ msgstr ""
|
|
1323
1344
|
msgid "Current organization not set."
|
1324
1345
|
msgstr ""
|
1325
1346
|
|
1326
|
-
msgid "Custom"
|
1327
|
-
msgstr ""
|
1328
|
-
|
1329
1347
|
#, fuzzy
|
1330
1348
|
msgid "Custom Content Repositories"
|
1331
1349
|
msgstr "Repozitáře"
|
@@ -1340,6 +1358,9 @@ msgstr "Neznámý štítek repozitáře: %s"
|
|
1340
1358
|
msgid "Database connection"
|
1341
1359
|
msgstr ""
|
1342
1360
|
|
1361
|
+
msgid "Date"
|
1362
|
+
msgstr ""
|
1363
|
+
|
1343
1364
|
msgid "Date format is incorrect."
|
1344
1365
|
msgstr "Nesprávný formát datumu."
|
1345
1366
|
|
@@ -1370,15 +1391,9 @@ msgstr ""
|
|
1370
1391
|
msgid "Default HTTP proxy"
|
1371
1392
|
msgstr ""
|
1372
1393
|
|
1373
|
-
msgid "Default Location Puppet content"
|
1374
|
-
msgstr ""
|
1375
|
-
|
1376
1394
|
msgid "Default Location subscribed hosts"
|
1377
1395
|
msgstr ""
|
1378
1396
|
|
1379
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1380
|
-
msgstr ""
|
1381
|
-
|
1382
1397
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1383
1398
|
msgstr ""
|
1384
1399
|
|
@@ -1796,6 +1811,12 @@ msgstr ""
|
|
1796
1811
|
msgid "Exceeds available quantity"
|
1797
1812
|
msgstr ""
|
1798
1813
|
|
1814
|
+
msgid "Exclude"
|
1815
|
+
msgstr ""
|
1816
|
+
|
1817
|
+
msgid "Excluded"
|
1818
|
+
msgstr ""
|
1819
|
+
|
1799
1820
|
msgid "Exit"
|
1800
1821
|
msgstr ""
|
1801
1822
|
|
@@ -1817,9 +1838,6 @@ msgstr ""
|
|
1817
1838
|
msgid "Export Types"
|
1818
1839
|
msgstr ""
|
1819
1840
|
|
1820
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1821
|
-
msgstr ""
|
1822
|
-
|
1823
1841
|
msgid "Export a repository"
|
1824
1842
|
msgstr ""
|
1825
1843
|
|
@@ -1832,9 +1850,6 @@ msgstr ""
|
|
1832
1850
|
msgid "Export to ISO format"
|
1833
1851
|
msgstr ""
|
1834
1852
|
|
1835
|
-
msgid "Export to ISO format."
|
1836
|
-
msgstr ""
|
1837
|
-
|
1838
1853
|
msgid "Exported version"
|
1839
1854
|
msgstr ""
|
1840
1855
|
|
@@ -1851,11 +1866,6 @@ msgstr ""
|
|
1851
1866
|
msgid "Failed to delete %{host}: %{errors}"
|
1852
1867
|
msgstr ""
|
1853
1868
|
|
1854
|
-
msgid "Failed to download %s module."
|
1855
|
-
msgid_plural "Failed to download %s modules."
|
1856
|
-
msgstr[0] ""
|
1857
|
-
msgstr[1] ""
|
1858
|
-
|
1859
1869
|
msgid "Failed to download %s package."
|
1860
1870
|
msgid_plural "Failed to download %s packages."
|
1861
1871
|
msgstr[0] ""
|
@@ -1933,9 +1943,6 @@ msgstr ""
|
|
1933
1943
|
msgid "Filter versions by environment"
|
1934
1944
|
msgstr ""
|
1935
1945
|
|
1936
|
-
msgid "Filter versions by puppet module"
|
1937
|
-
msgstr ""
|
1938
|
-
|
1939
1946
|
msgid "Filter versions by version number"
|
1940
1947
|
msgstr ""
|
1941
1948
|
|
@@ -1957,6 +1964,9 @@ msgstr ""
|
|
1957
1964
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
1958
1965
|
msgstr ""
|
1959
1966
|
|
1967
|
+
msgid "Force"
|
1968
|
+
msgstr ""
|
1969
|
+
|
1960
1970
|
msgid ""
|
1961
1971
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
1962
1972
|
" On Demand download policy) are skipped."
|
@@ -1998,6 +2008,9 @@ msgstr ""
|
|
1998
2008
|
msgid "Get all content available, not just that provided by subscriptions"
|
1999
2009
|
msgstr ""
|
2000
2010
|
|
2011
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
2012
|
+
msgstr ""
|
2013
|
+
|
2001
2014
|
msgid "Get content and overrides for the host"
|
2002
2015
|
msgstr ""
|
2003
2016
|
|
@@ -2010,12 +2023,6 @@ msgstr ""
|
|
2010
2023
|
msgid "Get list of available repositories for the repository set"
|
2011
2024
|
msgstr ""
|
2012
2025
|
|
2013
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
2014
|
-
msgstr ""
|
2015
|
-
|
2016
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
2017
|
-
msgstr ""
|
2018
|
-
|
2019
2026
|
msgid "Get status of repo synchronisation for given product"
|
2020
2027
|
msgstr ""
|
2021
2028
|
|
@@ -2046,6 +2053,9 @@ msgstr ""
|
|
2046
2053
|
msgid "History"
|
2047
2054
|
msgstr ""
|
2048
2055
|
|
2056
|
+
msgid "History will appear here when the content view is published or promoted."
|
2057
|
+
msgstr ""
|
2058
|
+
|
2049
2059
|
msgid "Host"
|
2050
2060
|
msgstr "Hostitel"
|
2051
2061
|
|
@@ -2135,6 +2145,9 @@ msgstr ""
|
|
2135
2145
|
msgid "Hosts with Installable Errata"
|
2136
2146
|
msgstr ""
|
2137
2147
|
|
2148
|
+
msgid "Hosts: "
|
2149
|
+
msgstr ""
|
2150
|
+
|
2138
2151
|
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."
|
2139
2152
|
msgstr ""
|
2140
2153
|
|
@@ -2290,7 +2303,7 @@ msgstr ""
|
|
2290
2303
|
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."
|
2291
2304
|
msgstr ""
|
2292
2305
|
|
2293
|
-
msgid "If set to true, use
|
2306
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2294
2307
|
msgstr ""
|
2295
2308
|
|
2296
2309
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2317,6 +2330,15 @@ msgstr ""
|
|
2317
2330
|
msgid "Ignorable content can be only set for Yum repositories."
|
2318
2331
|
msgstr ""
|
2319
2332
|
|
2333
|
+
msgid "Ignore errors"
|
2334
|
+
msgstr ""
|
2335
|
+
|
2336
|
+
msgid "Ignore subscription manager errors"
|
2337
|
+
msgstr ""
|
2338
|
+
|
2339
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2340
|
+
msgstr ""
|
2341
|
+
|
2320
2342
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2321
2343
|
msgstr ""
|
2322
2344
|
|
@@ -2345,6 +2367,9 @@ msgstr ""
|
|
2345
2367
|
msgid "Import Puppet classes"
|
2346
2368
|
msgstr ""
|
2347
2369
|
|
2370
|
+
msgid "Import Types"
|
2371
|
+
msgstr ""
|
2372
|
+
|
2348
2373
|
msgid "Import a Manifest"
|
2349
2374
|
msgstr ""
|
2350
2375
|
|
@@ -2376,15 +2401,21 @@ msgstr ""
|
|
2376
2401
|
msgid "Import-only content views can not be published directly"
|
2377
2402
|
msgstr ""
|
2378
2403
|
|
2379
|
-
msgid "Import-only content views will be available in a future version."
|
2380
|
-
msgstr ""
|
2381
|
-
|
2382
2404
|
msgid "Importing manifest into '%{subject}' failed."
|
2383
2405
|
msgstr ""
|
2384
2406
|
|
2385
2407
|
msgid "In Progress"
|
2386
2408
|
msgstr ""
|
2387
2409
|
|
2410
|
+
msgid "Include"
|
2411
|
+
msgstr ""
|
2412
|
+
|
2413
|
+
msgid "Included"
|
2414
|
+
msgstr ""
|
2415
|
+
|
2416
|
+
msgid "Includes associated content view filter ids in response"
|
2417
|
+
msgstr ""
|
2418
|
+
|
2388
2419
|
msgid "Inclusion type"
|
2389
2420
|
msgstr ""
|
2390
2421
|
|
@@ -2434,7 +2465,7 @@ msgstr ""
|
|
2434
2465
|
msgid "Install Applicable Errata on %s"
|
2435
2466
|
msgstr ""
|
2436
2467
|
|
2437
|
-
msgid "Install content on one or more hosts"
|
2468
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2438
2469
|
msgstr ""
|
2439
2470
|
|
2440
2471
|
msgid "Install errata via Katello interface"
|
@@ -2464,9 +2495,8 @@ msgstr ""
|
|
2464
2495
|
msgid "Install package via Katello interface"
|
2465
2496
|
msgstr ""
|
2466
2497
|
|
2467
|
-
|
2468
|
-
|
2469
|
-
msgstr "všechny balíčky"
|
2498
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2499
|
+
msgstr ""
|
2470
2500
|
|
2471
2501
|
msgid "Installable errata from Content View"
|
2472
2502
|
msgstr ""
|
@@ -2563,20 +2593,6 @@ msgstr ""
|
|
2563
2593
|
msgid "Invalid params provided - date_type must be one of %s"
|
2564
2594
|
msgstr ""
|
2565
2595
|
|
2566
|
-
msgid ""
|
2567
|
-
"Invalid puppet module parameters specified. \\\n"
|
2568
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2569
|
-
msgstr ""
|
2570
|
-
|
2571
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2572
|
-
msgstr ""
|
2573
|
-
|
2574
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2575
|
-
msgstr ""
|
2576
|
-
|
2577
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2578
|
-
msgstr ""
|
2579
|
-
|
2580
2596
|
msgid "Invalid value specified for Container Image repositories."
|
2581
2597
|
msgstr ""
|
2582
2598
|
|
@@ -2586,9 +2602,6 @@ msgstr ""
|
|
2586
2602
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2587
2603
|
msgstr ""
|
2588
2604
|
|
2589
|
-
msgid "Katello"
|
2590
|
-
msgstr ""
|
2591
|
-
|
2592
2605
|
msgid "Katello ID of local pool to update"
|
2593
2606
|
msgstr ""
|
2594
2607
|
|
@@ -2643,9 +2656,18 @@ msgstr ""
|
|
2643
2656
|
msgid "Last published"
|
2644
2657
|
msgstr ""
|
2645
2658
|
|
2659
|
+
msgid "Last task"
|
2660
|
+
msgstr ""
|
2661
|
+
|
2662
|
+
msgid "Latest (automatically updates)"
|
2663
|
+
msgstr ""
|
2664
|
+
|
2646
2665
|
msgid "Latest Errata"
|
2647
2666
|
msgstr ""
|
2648
2667
|
|
2668
|
+
msgid "Latest version"
|
2669
|
+
msgstr ""
|
2670
|
+
|
2649
2671
|
msgid "Learn more about adding Subscription Manifests"
|
2650
2672
|
msgstr ""
|
2651
2673
|
|
@@ -2675,12 +2697,18 @@ msgstr ""
|
|
2675
2697
|
msgid "Lifecycle Environments"
|
2676
2698
|
msgstr "prostředí"
|
2677
2699
|
|
2700
|
+
msgid "Lifecycle environment"
|
2701
|
+
msgstr ""
|
2702
|
+
|
2678
2703
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2679
2704
|
msgstr ""
|
2680
2705
|
|
2681
2706
|
msgid "Lifecycle environment ID"
|
2682
2707
|
msgstr ""
|
2683
2708
|
|
2709
|
+
msgid "Lifecycle environment for the host."
|
2710
|
+
msgstr ""
|
2711
|
+
|
2684
2712
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2685
2713
|
msgstr ""
|
2686
2714
|
|
@@ -2690,6 +2718,9 @@ msgstr ""
|
|
2690
2718
|
msgid "Limit content to just that available in the activation key's content view version"
|
2691
2719
|
msgstr ""
|
2692
2720
|
|
2721
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2722
|
+
msgstr ""
|
2723
|
+
|
2693
2724
|
msgid "Limit content to just that available in the host's content view version"
|
2694
2725
|
msgstr ""
|
2695
2726
|
|
@@ -2728,9 +2759,6 @@ msgstr ""
|
|
2728
2759
|
msgid "List components attached to this content view"
|
2729
2760
|
msgstr ""
|
2730
2761
|
|
2731
|
-
msgid "List content view puppet modules"
|
2732
|
-
msgstr ""
|
2733
|
-
|
2734
2762
|
msgid "List content view versions"
|
2735
2763
|
msgstr ""
|
2736
2764
|
|
@@ -2774,6 +2802,9 @@ msgstr ""
|
|
2774
2802
|
msgid "List host collections within an organization"
|
2775
2803
|
msgstr ""
|
2776
2804
|
|
2805
|
+
msgid "List import histories"
|
2806
|
+
msgstr ""
|
2807
|
+
|
2777
2808
|
msgid "List module streams available to the host"
|
2778
2809
|
msgstr ""
|
2779
2810
|
|
@@ -2995,6 +3026,9 @@ msgstr ""
|
|
2995
3026
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
2996
3027
|
msgstr ""
|
2997
3028
|
|
3029
|
+
msgid "Media Selection"
|
3030
|
+
msgstr ""
|
3031
|
+
|
2998
3032
|
msgid "Medium IDs"
|
2999
3033
|
msgstr ""
|
3000
3034
|
|
@@ -3031,9 +3065,15 @@ msgstr ""
|
|
3031
3065
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
3032
3066
|
msgstr ""
|
3033
3067
|
|
3068
|
+
msgid "N/A"
|
3069
|
+
msgstr ""
|
3070
|
+
|
3034
3071
|
msgid "NA"
|
3035
3072
|
msgstr ""
|
3036
3073
|
|
3074
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
3075
|
+
msgstr ""
|
3076
|
+
|
3037
3077
|
msgid ""
|
3038
3078
|
"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"
|
3039
3079
|
" %{repos}"
|
@@ -3106,9 +3146,18 @@ msgstr ""
|
|
3106
3146
|
msgid "New packages: %{count} (%{size})."
|
3107
3147
|
msgstr ""
|
3108
3148
|
|
3149
|
+
msgid "New version is available: Version ${latestVersion}"
|
3150
|
+
msgstr ""
|
3151
|
+
|
3109
3152
|
msgid "No"
|
3110
3153
|
msgstr ""
|
3111
3154
|
|
3155
|
+
msgid "No Activation Keys selected"
|
3156
|
+
msgstr ""
|
3157
|
+
|
3158
|
+
msgid "No Activation keys to select"
|
3159
|
+
msgstr ""
|
3160
|
+
|
3112
3161
|
#, fuzzy
|
3113
3162
|
msgid "No Content View"
|
3114
3163
|
msgstr "Vyhledat obsah"
|
@@ -3116,6 +3165,9 @@ msgstr "Vyhledat obsah"
|
|
3116
3165
|
msgid "No Content found"
|
3117
3166
|
msgstr ""
|
3118
3167
|
|
3168
|
+
msgid "No Lifecycle environment to select"
|
3169
|
+
msgstr ""
|
3170
|
+
|
3119
3171
|
msgid "No Manifest Uploaded"
|
3120
3172
|
msgstr ""
|
3121
3173
|
|
@@ -3148,12 +3200,24 @@ msgstr ""
|
|
3148
3200
|
msgid "No content view history events found."
|
3149
3201
|
msgstr "Vyhledat obsah"
|
3150
3202
|
|
3203
|
+
msgid "No content views belong to ${label}"
|
3204
|
+
msgstr ""
|
3205
|
+
|
3151
3206
|
msgid "No content_view_version_ids provided"
|
3152
3207
|
msgstr ""
|
3153
3208
|
|
3209
|
+
msgid "No description"
|
3210
|
+
msgstr ""
|
3211
|
+
|
3154
3212
|
msgid "No enabled repositories match your search criteria."
|
3155
3213
|
msgstr ""
|
3156
3214
|
|
3215
|
+
msgid "No environment"
|
3216
|
+
msgstr ""
|
3217
|
+
|
3218
|
+
msgid "No environments"
|
3219
|
+
msgstr ""
|
3220
|
+
|
3157
3221
|
msgid "No errata has been specified."
|
3158
3222
|
msgstr ""
|
3159
3223
|
|
@@ -3189,9 +3253,21 @@ msgstr ""
|
|
3189
3253
|
msgid "No matching filters found"
|
3190
3254
|
msgstr ""
|
3191
3255
|
|
3256
|
+
msgid "No matching history record found"
|
3257
|
+
msgstr ""
|
3258
|
+
|
3259
|
+
msgid "No matching package groups found."
|
3260
|
+
msgstr ""
|
3261
|
+
|
3192
3262
|
msgid "No matching repositories found"
|
3193
3263
|
msgstr ""
|
3194
3264
|
|
3265
|
+
msgid "No matching rules found."
|
3266
|
+
msgstr ""
|
3267
|
+
|
3268
|
+
msgid "No matching version found"
|
3269
|
+
msgstr ""
|
3270
|
+
|
3195
3271
|
msgid "No new packages installed"
|
3196
3272
|
msgstr "Žádné nové instalační balíčky"
|
3197
3273
|
|
@@ -3199,6 +3275,9 @@ msgstr "Žádné nové instalační balíčky"
|
|
3199
3275
|
msgid "No new packages."
|
3200
3276
|
msgstr "Žádné nové instalační balíčky"
|
3201
3277
|
|
3278
|
+
msgid "No package groups have been added to this filter."
|
3279
|
+
msgstr ""
|
3280
|
+
|
3202
3281
|
#, fuzzy
|
3203
3282
|
msgid "No packages removed"
|
3204
3283
|
msgstr "Balíček přesunut"
|
@@ -3246,6 +3325,9 @@ msgstr ""
|
|
3246
3325
|
msgid "No repository sets match your search criteria."
|
3247
3326
|
msgstr ""
|
3248
3327
|
|
3328
|
+
msgid "No rules have been added to this filter."
|
3329
|
+
msgstr ""
|
3330
|
+
|
3249
3331
|
msgid "No services defined, is this class extended?"
|
3250
3332
|
msgstr ""
|
3251
3333
|
|
@@ -3283,12 +3365,18 @@ msgstr ""
|
|
3283
3365
|
msgid "Not a number"
|
3284
3366
|
msgstr ""
|
3285
3367
|
|
3368
|
+
msgid "Not added"
|
3369
|
+
msgstr ""
|
3370
|
+
|
3286
3371
|
msgid "Not all necessary pulp workers running at %s."
|
3287
3372
|
msgstr ""
|
3288
3373
|
|
3289
3374
|
msgid "Not running"
|
3290
3375
|
msgstr ""
|
3291
3376
|
|
3377
|
+
msgid "Not yet published"
|
3378
|
+
msgstr ""
|
3379
|
+
|
3292
3380
|
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."
|
3293
3381
|
msgstr ""
|
3294
3382
|
|
@@ -3365,9 +3453,6 @@ msgstr ""
|
|
3365
3453
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3366
3454
|
msgstr ""
|
3367
3455
|
|
3368
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3369
|
-
msgstr ""
|
3370
|
-
|
3371
3456
|
msgid "Organization"
|
3372
3457
|
msgstr "Organizace"
|
3373
3458
|
|
@@ -3381,6 +3466,9 @@ msgstr "Organizace"
|
|
3381
3466
|
msgid "Organization ID is required"
|
3382
3467
|
msgstr ""
|
3383
3468
|
|
3469
|
+
msgid "Organization Information not provided."
|
3470
|
+
msgstr ""
|
3471
|
+
|
3384
3472
|
#, fuzzy
|
3385
3473
|
msgid "Organization cannot be blank."
|
3386
3474
|
msgstr "Název nesmí být prázdný."
|
@@ -3587,6 +3675,9 @@ msgstr "všechny aktualizační balíčky selhaly"
|
|
3587
3675
|
msgid "Package group update timed out"
|
3588
3676
|
msgstr "Skupiny balíčků"
|
3589
3677
|
|
3678
|
+
msgid "Package groups"
|
3679
|
+
msgstr ""
|
3680
|
+
|
3590
3681
|
msgid "Package identifiers to filter content by"
|
3591
3682
|
msgstr ""
|
3592
3683
|
|
@@ -3661,6 +3752,9 @@ msgstr ""
|
|
3661
3752
|
msgid "Plan numeric identifier"
|
3662
3753
|
msgstr ""
|
3663
3754
|
|
3755
|
+
msgid "Please add some content views."
|
3756
|
+
msgstr ""
|
3757
|
+
|
3664
3758
|
msgid "Please add some repositories."
|
3665
3759
|
msgstr ""
|
3666
3760
|
|
@@ -3812,15 +3906,15 @@ msgstr ""
|
|
3812
3906
|
msgid "Pulp 3 export destination filepath"
|
3813
3907
|
msgstr ""
|
3814
3908
|
|
3815
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3816
|
-
msgstr ""
|
3817
|
-
|
3818
3909
|
msgid "Pulp Consumer %s has already been removed"
|
3819
3910
|
msgstr ""
|
3820
3911
|
|
3821
3912
|
msgid "Pulp Docker registry port"
|
3822
3913
|
msgstr ""
|
3823
3914
|
|
3915
|
+
msgid "Pulp bulk load size"
|
3916
|
+
msgstr ""
|
3917
|
+
|
3824
3918
|
msgid "Pulp client cert"
|
3825
3919
|
msgstr ""
|
3826
3920
|
|
@@ -3869,34 +3963,6 @@ msgstr ""
|
|
3869
3963
|
msgid "Pulpcore"
|
3870
3964
|
msgstr ""
|
3871
3965
|
|
3872
|
-
#, fuzzy
|
3873
|
-
msgid "Puppet Environment"
|
3874
|
-
msgstr "prostředí"
|
3875
|
-
|
3876
|
-
msgid "Puppet Module"
|
3877
|
-
msgstr ""
|
3878
|
-
|
3879
|
-
msgid ""
|
3880
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3881
|
-
" '%{name}'"
|
3882
|
-
msgstr ""
|
3883
|
-
|
3884
|
-
msgid ""
|
3885
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3886
|
-
" not exist"
|
3887
|
-
msgstr ""
|
3888
|
-
|
3889
|
-
msgid ""
|
3890
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3891
|
-
" exist"
|
3892
|
-
msgstr ""
|
3893
|
-
|
3894
|
-
msgid "Puppet Modules"
|
3895
|
-
msgstr ""
|
3896
|
-
|
3897
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3898
|
-
msgstr ""
|
3899
|
-
|
3900
3966
|
msgid "Quantity"
|
3901
3967
|
msgstr ""
|
3902
3968
|
|
@@ -3927,6 +3993,9 @@ msgstr ""
|
|
3927
3993
|
msgid "RPM"
|
3928
3994
|
msgstr ""
|
3929
3995
|
|
3996
|
+
msgid "RPM name"
|
3997
|
+
msgstr ""
|
3998
|
+
|
3930
3999
|
msgid "RPMs"
|
3931
4000
|
msgstr ""
|
3932
4001
|
|
@@ -3942,9 +4011,6 @@ msgstr ""
|
|
3942
4011
|
msgid "Recommended Repositories"
|
3943
4012
|
msgstr ""
|
3944
4013
|
|
3945
|
-
msgid "Red Hat"
|
3946
|
-
msgstr ""
|
3947
|
-
|
3948
4014
|
#, fuzzy
|
3949
4015
|
msgid "Red Hat CDN URL"
|
3950
4016
|
msgstr "Produkty"
|
@@ -4032,13 +4098,13 @@ msgstr "Smazat organizaci"
|
|
4032
4098
|
msgid "Remove a content view from an environment"
|
4033
4099
|
msgstr ""
|
4034
4100
|
|
4035
|
-
msgid "Remove
|
4101
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
4036
4102
|
msgstr ""
|
4037
4103
|
|
4038
4104
|
msgid "Remove components from the content view"
|
4039
4105
|
msgstr ""
|
4040
4106
|
|
4041
|
-
msgid "Remove content on one or more hosts"
|
4107
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
4042
4108
|
msgstr ""
|
4043
4109
|
|
4044
4110
|
msgid "Remove content view version"
|
@@ -4173,9 +4239,6 @@ msgstr ""
|
|
4173
4239
|
msgid "Requires Virt-Who"
|
4174
4240
|
msgstr ""
|
4175
4241
|
|
4176
|
-
msgid "Reset Puppet Environment"
|
4177
|
-
msgstr ""
|
4178
|
-
|
4179
4242
|
msgid "Resolve Traces"
|
4180
4243
|
msgstr ""
|
4181
4244
|
|
@@ -4254,12 +4317,18 @@ msgstr ""
|
|
4254
4317
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4255
4318
|
msgstr ""
|
4256
4319
|
|
4320
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4321
|
+
msgstr ""
|
4322
|
+
|
4257
4323
|
msgid "Role"
|
4258
4324
|
msgstr ""
|
4259
4325
|
|
4260
4326
|
msgid "Role of host"
|
4261
4327
|
msgstr ""
|
4262
4328
|
|
4329
|
+
msgid "Roles"
|
4330
|
+
msgstr ""
|
4331
|
+
|
4263
4332
|
msgid "Run Sync Plan:"
|
4264
4333
|
msgstr ""
|
4265
4334
|
|
@@ -4281,7 +4350,7 @@ msgstr ""
|
|
4281
4350
|
msgid "Save"
|
4282
4351
|
msgstr ""
|
4283
4352
|
|
4284
|
-
msgid "Schedule errata for installation"
|
4353
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4285
4354
|
msgstr ""
|
4286
4355
|
|
4287
4356
|
msgid "Search"
|
@@ -4385,9 +4454,6 @@ msgstr ""
|
|
4385
4454
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4386
4455
|
msgstr ""
|
4387
4456
|
|
4388
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4389
|
-
msgstr ""
|
4390
|
-
|
4391
4457
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4392
4458
|
msgstr ""
|
4393
4459
|
|
@@ -4408,9 +4474,6 @@ msgstr "Vyhledat obsah"
|
|
4408
4474
|
msgid "Show a content view component"
|
4409
4475
|
msgstr ""
|
4410
4476
|
|
4411
|
-
msgid "Show a content view puppet module"
|
4412
|
-
msgstr ""
|
4413
|
-
|
4414
4477
|
msgid "Show a content view's history"
|
4415
4478
|
msgstr ""
|
4416
4479
|
|
@@ -4508,10 +4571,28 @@ msgstr ""
|
|
4508
4571
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4509
4572
|
msgstr ""
|
4510
4573
|
|
4511
|
-
msgid "
|
4574
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4575
|
+
msgstr ""
|
4576
|
+
|
4577
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4578
|
+
msgstr ""
|
4579
|
+
|
4580
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4512
4581
|
msgstr ""
|
4513
4582
|
|
4514
|
-
msgid "Something went wrong while retrieving the
|
4583
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4584
|
+
msgstr ""
|
4585
|
+
|
4586
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4587
|
+
msgstr ""
|
4588
|
+
|
4589
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4590
|
+
msgstr ""
|
4591
|
+
|
4592
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4593
|
+
msgstr ""
|
4594
|
+
|
4595
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4515
4596
|
msgstr ""
|
4516
4597
|
|
4517
4598
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4679,6 +4760,9 @@ msgstr ""
|
|
4679
4760
|
msgid "Sync Canceled"
|
4680
4761
|
msgstr "Stornováno."
|
4681
4762
|
|
4763
|
+
msgid "Sync Connection Timeout"
|
4764
|
+
msgstr ""
|
4765
|
+
|
4682
4766
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4683
4767
|
msgstr ""
|
4684
4768
|
|
@@ -4779,6 +4863,9 @@ msgstr "Žádné šablony"
|
|
4779
4863
|
msgid "System Purpose"
|
4780
4864
|
msgstr ""
|
4781
4865
|
|
4866
|
+
msgid "System Status"
|
4867
|
+
msgstr ""
|
4868
|
+
|
4782
4869
|
msgid "Tags"
|
4783
4870
|
msgstr ""
|
4784
4871
|
|
@@ -4804,6 +4891,9 @@ msgstr ""
|
|
4804
4891
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4805
4892
|
msgstr ""
|
4806
4893
|
|
4894
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4895
|
+
msgstr ""
|
4896
|
+
|
4807
4897
|
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."
|
4808
4898
|
msgstr ""
|
4809
4899
|
|
@@ -4834,6 +4924,12 @@ msgstr ""
|
|
4834
4924
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4835
4925
|
msgstr ""
|
4836
4926
|
|
4927
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4928
|
+
msgstr ""
|
4929
|
+
|
4930
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4931
|
+
msgstr ""
|
4932
|
+
|
4837
4933
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4838
4934
|
msgstr ""
|
4839
4935
|
|
@@ -4857,6 +4953,11 @@ msgid ""
|
|
4857
4953
|
" %{repos}"
|
4858
4954
|
msgstr ""
|
4859
4955
|
|
4956
|
+
msgid ""
|
4957
|
+
"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"
|
4958
|
+
" %{repos}"
|
4959
|
+
msgstr ""
|
4960
|
+
|
4860
4961
|
msgid "The id of the host to alter"
|
4861
4962
|
msgstr ""
|
4862
4963
|
|
@@ -4869,6 +4970,9 @@ msgstr ""
|
|
4869
4970
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4870
4971
|
msgstr ""
|
4871
4972
|
|
4973
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4974
|
+
msgstr ""
|
4975
|
+
|
4872
4976
|
msgid "The offset in the file where the content starts"
|
4873
4977
|
msgstr ""
|
4874
4978
|
|
@@ -4890,12 +4994,6 @@ msgstr ""
|
|
4890
4994
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4891
4995
|
msgstr ""
|
4892
4996
|
|
4893
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4894
|
-
msgstr ""
|
4895
|
-
|
4896
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4897
|
-
msgstr ""
|
4898
|
-
|
4899
4997
|
#, fuzzy
|
4900
4998
|
msgid "The repository is already enabled"
|
4901
4999
|
msgstr "Neznámý štítek repozitáře: %s"
|
@@ -4912,9 +5010,6 @@ msgstr ""
|
|
4912
5010
|
msgid "The requested traces were not found for this host"
|
4913
5011
|
msgstr ""
|
4914
5012
|
|
4915
|
-
msgid "The selected content source and lifecycle environment do not match"
|
4916
|
-
msgstr ""
|
4917
|
-
|
4918
5013
|
msgid ""
|
4919
5014
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
4920
5015
|
" content source, operating system, and architecture"
|
@@ -4932,6 +5027,9 @@ msgstr ""
|
|
4932
5027
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
4933
5028
|
msgstr ""
|
4934
5029
|
|
5030
|
+
msgid "The token key to use for authentication."
|
5031
|
+
msgstr ""
|
5032
|
+
|
4935
5033
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
4936
5034
|
msgstr ""
|
4937
5035
|
|
@@ -4953,9 +5051,6 @@ msgstr ""
|
|
4953
5051
|
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."
|
4954
5052
|
msgstr ""
|
4955
5053
|
|
4956
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
4957
|
-
msgstr ""
|
4958
|
-
|
4959
5054
|
msgid "There is no Manifest History to display."
|
4960
5055
|
msgstr ""
|
4961
5056
|
|
@@ -4986,15 +5081,12 @@ msgstr ""
|
|
4986
5081
|
msgid "This action doesn't support package groups"
|
4987
5082
|
msgstr ""
|
4988
5083
|
|
4989
|
-
msgid "This action
|
5084
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
4990
5085
|
msgstr ""
|
4991
5086
|
|
4992
5087
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4993
5088
|
msgstr ""
|
4994
5089
|
|
4995
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
4996
|
-
msgstr ""
|
4997
|
-
|
4998
5090
|
msgid "This content view version doesn't have a history."
|
4999
5091
|
msgstr ""
|
5000
5092
|
|
@@ -5064,10 +5156,10 @@ msgstr ""
|
|
5064
5156
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
5065
5157
|
msgstr ""
|
5066
5158
|
|
5067
|
-
msgid "Total
|
5159
|
+
msgid "Total steps: "
|
5068
5160
|
msgstr ""
|
5069
5161
|
|
5070
|
-
msgid "Total
|
5162
|
+
msgid "Total timeout in seconds for connections when syncing"
|
5071
5163
|
msgstr ""
|
5072
5164
|
|
5073
5165
|
msgid "Tracer profile uploaded successfully"
|
@@ -5130,13 +5222,13 @@ msgstr ""
|
|
5130
5222
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5131
5223
|
msgstr ""
|
5132
5224
|
|
5133
|
-
msgid "Unable to
|
5225
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
5134
5226
|
msgstr ""
|
5135
5227
|
|
5136
|
-
msgid "Unable to
|
5228
|
+
msgid "Unable to get users"
|
5137
5229
|
msgstr ""
|
5138
5230
|
|
5139
|
-
msgid "Unable to
|
5231
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
5140
5232
|
msgstr ""
|
5141
5233
|
|
5142
5234
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5160,6 +5252,12 @@ msgstr ""
|
|
5160
5252
|
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."
|
5161
5253
|
msgstr ""
|
5162
5254
|
|
5255
|
+
msgid "Unable to update the repository list"
|
5256
|
+
msgstr ""
|
5257
|
+
|
5258
|
+
msgid "Unable to update the user-repository mapping"
|
5259
|
+
msgstr ""
|
5260
|
+
|
5163
5261
|
msgid "Unapplied Errata"
|
5164
5262
|
msgstr ""
|
5165
5263
|
|
@@ -5176,7 +5274,7 @@ msgstr ""
|
|
5176
5274
|
msgid "Unfiltered params array: %s."
|
5177
5275
|
msgstr ""
|
5178
5276
|
|
5179
|
-
msgid "Uninstall packages remotely"
|
5277
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
5180
5278
|
msgstr ""
|
5181
5279
|
|
5182
5280
|
msgid "Unknown"
|
@@ -5253,9 +5351,6 @@ msgstr ""
|
|
5253
5351
|
msgid "Update a host collection"
|
5254
5352
|
msgstr ""
|
5255
5353
|
|
5256
|
-
msgid "Update a puppet module associated with the content view"
|
5257
|
-
msgstr ""
|
5258
|
-
|
5259
5354
|
#, fuzzy
|
5260
5355
|
msgid "Update a repository"
|
5261
5356
|
msgstr "Smazat poskytovatele"
|
@@ -5274,7 +5369,7 @@ msgstr "prostředí"
|
|
5274
5369
|
msgid "Update an environment in an organization"
|
5275
5370
|
msgstr ""
|
5276
5371
|
|
5277
|
-
msgid "Update content on one or more hosts"
|
5372
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5278
5373
|
msgstr ""
|
5279
5374
|
|
5280
5375
|
msgid "Update content urls"
|
@@ -5318,9 +5413,8 @@ msgstr ""
|
|
5318
5413
|
msgid "Update package via Katello interface"
|
5319
5414
|
msgstr ""
|
5320
5415
|
|
5321
|
-
|
5322
|
-
|
5323
|
-
msgstr "Balíček přesunut"
|
5416
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5417
|
+
msgstr ""
|
5324
5418
|
|
5325
5419
|
msgid "Update redhat repository"
|
5326
5420
|
msgstr ""
|
@@ -5427,6 +5521,9 @@ msgstr ""
|
|
5427
5521
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5428
5522
|
msgstr ""
|
5429
5523
|
|
5524
|
+
msgid "User"
|
5525
|
+
msgstr ""
|
5526
|
+
|
5430
5527
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5431
5528
|
msgstr ""
|
5432
5529
|
|
@@ -5466,6 +5563,9 @@ msgstr ""
|
|
5466
5563
|
msgid "Versions"
|
5467
5564
|
msgstr ""
|
5468
5565
|
|
5566
|
+
msgid "Versions will appear here when the content view is published."
|
5567
|
+
msgstr ""
|
5568
|
+
|
5469
5569
|
msgid "View %{view} has not been promoted to %{env}"
|
5470
5570
|
msgstr ""
|
5471
5571
|
|
@@ -5548,9 +5648,15 @@ msgstr ""
|
|
5548
5648
|
msgid "You currently don't have any filters for this content view."
|
5549
5649
|
msgstr ""
|
5550
5650
|
|
5651
|
+
msgid "You currently don't have any history for this content view."
|
5652
|
+
msgstr ""
|
5653
|
+
|
5551
5654
|
msgid "You currently don't have any repositories to add to this content view."
|
5552
5655
|
msgstr ""
|
5553
5656
|
|
5657
|
+
msgid "You currently don't have any versions for this content view."
|
5658
|
+
msgstr ""
|
5659
|
+
|
5554
5660
|
msgid "You do not have permissions to delete %s"
|
5555
5661
|
msgstr ""
|
5556
5662
|
|
@@ -5599,6 +5705,9 @@ msgstr ""
|
|
5599
5705
|
msgid "a file"
|
5600
5706
|
msgstr ""
|
5601
5707
|
|
5708
|
+
msgid "a future release"
|
5709
|
+
msgstr ""
|
5710
|
+
|
5602
5711
|
msgid "a module stream"
|
5603
5712
|
msgstr ""
|
5604
5713
|
|
@@ -5610,9 +5719,6 @@ msgstr "všechny balíčky"
|
|
5610
5719
|
msgid "a package group"
|
5611
5720
|
msgstr "všechny balíčky"
|
5612
5721
|
|
5613
|
-
msgid "a puppet module"
|
5614
|
-
msgstr ""
|
5615
|
-
|
5616
5722
|
msgid "actions not found"
|
5617
5723
|
msgstr ""
|
5618
5724
|
|
@@ -5644,6 +5750,9 @@ msgstr "všechny aktualizační balíčky selhaly"
|
|
5644
5750
|
msgid "allow unauthenticed pull of container images"
|
5645
5751
|
msgstr ""
|
5646
5752
|
|
5753
|
+
msgid "already belongs to the content view"
|
5754
|
+
msgstr ""
|
5755
|
+
|
5647
5756
|
msgid "already taken"
|
5648
5757
|
msgstr ""
|
5649
5758
|
|
@@ -5667,9 +5776,6 @@ msgstr ""
|
|
5667
5776
|
msgid "attempted to sync without a feed URL"
|
5668
5777
|
msgstr ""
|
5669
5778
|
|
5670
|
-
msgid "author of the puppet module"
|
5671
|
-
msgstr ""
|
5672
|
-
|
5673
5779
|
msgid "auto attach subscriptions upon registration"
|
5674
5780
|
msgstr ""
|
5675
5781
|
|
@@ -5746,15 +5852,6 @@ msgstr ""
|
|
5746
5852
|
msgid "checking Pulp task status"
|
5747
5853
|
msgstr ""
|
5748
5854
|
|
5749
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5750
|
-
msgstr ""
|
5751
|
-
|
5752
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5753
|
-
msgstr ""
|
5754
|
-
|
5755
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5756
|
-
msgstr ""
|
5757
|
-
|
5758
5855
|
msgid "composite content view identifier"
|
5759
5856
|
msgstr ""
|
5760
5857
|
|
@@ -5768,7 +5865,7 @@ msgstr ""
|
|
5768
5865
|
msgid "content release version"
|
5769
5866
|
msgstr "Vyhledat obsah"
|
5770
5867
|
|
5771
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5868
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5772
5869
|
msgstr ""
|
5773
5870
|
|
5774
5871
|
msgid "content view component ID. Identifier of the component association"
|
@@ -6059,15 +6156,9 @@ msgstr ""
|
|
6059
6156
|
msgid "maximum size of each ISO in MB"
|
6060
6157
|
msgstr ""
|
6061
6158
|
|
6062
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6063
|
-
msgstr ""
|
6064
|
-
|
6065
6159
|
msgid "may not be less than the number of hosts associated with the host collection."
|
6066
6160
|
msgstr ""
|
6067
6161
|
|
6068
|
-
msgid "module name to restrict modules for"
|
6069
|
-
msgstr ""
|
6070
|
-
|
6071
6162
|
msgid "module stream ids"
|
6072
6163
|
msgstr ""
|
6073
6164
|
|
@@ -6135,13 +6226,13 @@ msgstr ""
|
|
6135
6226
|
msgid "name of the organization"
|
6136
6227
|
msgstr "Vybrat organizaci"
|
6137
6228
|
|
6138
|
-
msgid "name of the puppet module"
|
6139
|
-
msgstr ""
|
6140
|
-
|
6141
6229
|
#, fuzzy
|
6142
6230
|
msgid "name of the repository"
|
6143
6231
|
msgstr "Vybrat organizaci"
|
6144
6232
|
|
6233
|
+
msgid "name of the subscription"
|
6234
|
+
msgstr ""
|
6235
|
+
|
6145
6236
|
msgid "name: %s doesn't exist "
|
6146
6237
|
msgstr ""
|
6147
6238
|
|
@@ -6167,6 +6258,9 @@ msgstr "Název musí být unikátní vrámci jedné organizace."
|
|
6167
6258
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6168
6259
|
msgstr ""
|
6169
6260
|
|
6261
|
+
msgid "only show the repositories readable by this user with this username"
|
6262
|
+
msgstr ""
|
6263
|
+
|
6170
6264
|
msgid "optional package names to include in the package group"
|
6171
6265
|
msgstr ""
|
6172
6266
|
|
@@ -6208,6 +6302,9 @@ msgstr ""
|
|
6208
6302
|
msgid "package_ids is not an array"
|
6209
6303
|
msgstr ""
|
6210
6304
|
|
6305
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6306
|
+
msgstr ""
|
6307
|
+
|
6211
6308
|
msgid "pattern for container image names"
|
6212
6309
|
msgstr ""
|
6213
6310
|
|
@@ -6229,12 +6326,6 @@ msgstr ""
|
|
6229
6326
|
msgid "product numeric identifier"
|
6230
6327
|
msgstr ""
|
6231
6328
|
|
6232
|
-
msgid "puppet module ID"
|
6233
|
-
msgstr ""
|
6234
|
-
|
6235
|
-
msgid "puppet_module_ids is not an array"
|
6236
|
-
msgstr ""
|
6237
|
-
|
6238
6329
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6239
6330
|
msgstr ""
|
6240
6331
|
|
@@ -6341,15 +6432,6 @@ msgstr ""
|
|
6341
6432
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6342
6433
|
msgstr ""
|
6343
6434
|
|
6344
|
-
msgid "the id of the puppet module to associate"
|
6345
|
-
msgstr ""
|
6346
|
-
|
6347
|
-
msgid "the uuid of the puppet module to associate"
|
6348
|
-
msgstr ""
|
6349
|
-
|
6350
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6351
|
-
msgstr ""
|
6352
|
-
|
6353
6435
|
msgid "true if the latest version of the component's content view is desired"
|
6354
6436
|
msgstr ""
|
6355
6437
|
|
@@ -6393,9 +6475,6 @@ msgstr "všechny balíčky"
|
|
6393
6475
|
msgid "url not defined."
|
6394
6476
|
msgstr ""
|
6395
6477
|
|
6396
|
-
msgid "uuid of the puppet module"
|
6397
|
-
msgstr ""
|
6398
|
-
|
6399
6478
|
msgid "waiting for Candlepin to finish the task"
|
6400
6479
|
msgstr ""
|
6401
6480
|
|
@@ -6405,6 +6484,15 @@ msgstr ""
|
|
6405
6484
|
msgid "waiting for Pulp to start the task"
|
6406
6485
|
msgstr ""
|
6407
6486
|
|
6487
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6488
|
+
msgstr ""
|
6489
|
+
|
6490
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6491
|
+
msgstr ""
|
6492
|
+
|
6493
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6494
|
+
msgstr ""
|
6495
|
+
|
6408
6496
|
msgid "with"
|
6409
6497
|
msgstr ""
|
6410
6498
|
|