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/en/katello.po
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
8
|
+
"Project-Id-Version: katello 2.4.0-RC1\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2011-01-06 19:28-0700\n"
|
11
11
|
"Last-Translator: Jason E. Rist <jrist@redhat.com>\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18
18
|
|
19
19
|
msgid ""
|
20
20
|
"\n"
|
21
|
-
"* Product = '%{product}', Repository = '%{repository}'
|
21
|
+
"* Product = '%{product}', Repository = '%{repository}'"
|
22
22
|
msgstr ""
|
23
23
|
|
24
24
|
msgid " %{errata_count} Errata"
|
@@ -30,15 +30,15 @@ msgstr ""
|
|
30
30
|
msgid " %{package_count} Package(s)"
|
31
31
|
msgstr ""
|
32
32
|
|
33
|
-
msgid " %{puppet_module_count} Puppet Module(s)"
|
34
|
-
msgstr ""
|
35
|
-
|
36
33
|
msgid " Content view updated."
|
37
34
|
msgstr ""
|
38
35
|
|
39
36
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
40
37
|
msgstr ""
|
41
38
|
|
39
|
+
msgid " RPMs"
|
40
|
+
msgstr ""
|
41
|
+
|
42
42
|
msgid " environment cannot be set to an environment already on its path"
|
43
43
|
msgstr ""
|
44
44
|
|
@@ -287,6 +287,9 @@ msgstr ""
|
|
287
287
|
msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
|
288
288
|
msgstr ""
|
289
289
|
|
290
|
+
msgid "A Pool and its Subscription cannot belong to different organizations"
|
291
|
+
msgstr ""
|
292
|
+
|
290
293
|
msgid "A backend service [ %s ] is unreachable"
|
291
294
|
msgstr ""
|
292
295
|
|
@@ -323,6 +326,9 @@ msgstr ""
|
|
323
326
|
msgid "A summary of new errata after a repository is synchronized"
|
324
327
|
msgstr ""
|
325
328
|
|
329
|
+
msgid "About page"
|
330
|
+
msgstr ""
|
331
|
+
|
326
332
|
msgid "Abstract async task"
|
327
333
|
msgstr ""
|
328
334
|
|
@@ -332,16 +338,19 @@ msgstr ""
|
|
332
338
|
msgid "Account Number"
|
333
339
|
msgstr ""
|
334
340
|
|
341
|
+
msgid "Action"
|
342
|
+
msgstr ""
|
343
|
+
|
335
344
|
msgid "Action not allowed for the default smart proxy."
|
336
345
|
msgstr ""
|
337
346
|
|
338
|
-
msgid "Action unauthorized to be performed
|
347
|
+
msgid "Action unauthorized to be performed in this organization."
|
339
348
|
msgstr ""
|
340
349
|
|
341
|
-
msgid "Action
|
350
|
+
msgid "Action unauthorized to be performed on selected hosts."
|
342
351
|
msgstr ""
|
343
352
|
|
344
|
-
msgid "
|
353
|
+
msgid "Action with sub plans"
|
345
354
|
msgstr ""
|
346
355
|
|
347
356
|
msgid "Activation Keys"
|
@@ -350,12 +359,21 @@ msgstr ""
|
|
350
359
|
msgid "Activation key ID"
|
351
360
|
msgstr ""
|
352
361
|
|
353
|
-
msgid "Activation key
|
362
|
+
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."
|
363
|
+
msgstr ""
|
364
|
+
|
365
|
+
msgid "Activation key(s) for Subscription Manager."
|
366
|
+
msgstr ""
|
367
|
+
|
368
|
+
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"
|
354
369
|
msgstr ""
|
355
370
|
|
356
371
|
msgid "Activation keys and subscriptions can be managed"
|
357
372
|
msgstr ""
|
358
373
|
|
374
|
+
msgid "Activation keys: "
|
375
|
+
msgstr ""
|
376
|
+
|
359
377
|
msgid "Active Subscriptions"
|
360
378
|
msgstr ""
|
361
379
|
|
@@ -365,9 +383,6 @@ msgstr ""
|
|
365
383
|
msgid "Add Subscriptions"
|
366
384
|
msgstr ""
|
367
385
|
|
368
|
-
msgid "Add a puppet module to the content view"
|
369
|
-
msgstr ""
|
370
|
-
|
371
386
|
msgid "Add a subscription to a host"
|
372
387
|
msgstr ""
|
373
388
|
|
@@ -401,13 +416,22 @@ msgstr ""
|
|
401
416
|
msgid "Add subscriptions to one or more hosts"
|
402
417
|
msgstr ""
|
403
418
|
|
419
|
+
msgid "Add to this filter using the 'Add RPM' button."
|
420
|
+
msgstr ""
|
421
|
+
|
422
|
+
msgid "Add to this filter using the 'Add package group' button."
|
423
|
+
msgstr ""
|
424
|
+
|
425
|
+
msgid "Added"
|
426
|
+
msgstr ""
|
427
|
+
|
404
428
|
msgid "Added Content:"
|
405
429
|
msgstr ""
|
406
430
|
|
407
431
|
msgid "Adding content units"
|
408
432
|
msgstr ""
|
409
433
|
|
410
|
-
msgid "
|
434
|
+
msgid "Additional content"
|
411
435
|
msgstr ""
|
412
436
|
|
413
437
|
msgid "Addons"
|
@@ -469,6 +493,9 @@ msgstr ""
|
|
469
493
|
msgid "Arch"
|
470
494
|
msgstr ""
|
471
495
|
|
496
|
+
msgid "Architecture"
|
497
|
+
msgstr ""
|
498
|
+
|
472
499
|
msgid "Architecture of content in the repository"
|
473
500
|
msgstr ""
|
474
501
|
|
@@ -750,13 +777,10 @@ msgstr ""
|
|
750
777
|
msgid "Cannot delete redhat product content"
|
751
778
|
msgstr ""
|
752
779
|
|
753
|
-
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."
|
754
|
-
msgstr ""
|
755
|
-
|
756
780
|
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."
|
757
781
|
msgstr ""
|
758
782
|
|
759
|
-
msgid "Cannot delete the last Location.
|
783
|
+
msgid "Cannot delete the last Location."
|
760
784
|
msgstr ""
|
761
785
|
|
762
786
|
msgid "Cannot delete version while it is in environment %s"
|
@@ -822,15 +846,12 @@ msgstr ""
|
|
822
846
|
msgid "Cannot specify content for composite views"
|
823
847
|
msgstr ""
|
824
848
|
|
825
|
-
msgid "Cannot sync file:// repositories with On Demand
|
849
|
+
msgid "Cannot sync file:// repositories with the On Demand Download Policy"
|
826
850
|
msgstr ""
|
827
851
|
|
828
852
|
msgid "Cannot upload Container Image content."
|
829
853
|
msgstr ""
|
830
854
|
|
831
|
-
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
832
|
-
msgstr ""
|
833
|
-
|
834
855
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
835
856
|
msgstr ""
|
836
857
|
|
@@ -855,6 +876,9 @@ msgstr ""
|
|
855
876
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
856
877
|
msgstr ""
|
857
878
|
|
879
|
+
msgid "Clear any previous registration and run subscription-manager with --force."
|
880
|
+
msgstr ""
|
881
|
+
|
858
882
|
msgid "Click here to go to the tasks page for the task."
|
859
883
|
msgstr ""
|
860
884
|
|
@@ -948,12 +972,6 @@ msgstr ""
|
|
948
972
|
msgid "Content Hosts"
|
949
973
|
msgstr ""
|
950
974
|
|
951
|
-
msgid "Content Migration"
|
952
|
-
msgstr ""
|
953
|
-
|
954
|
-
msgid "Content Migration Reset"
|
955
|
-
msgstr ""
|
956
|
-
|
957
975
|
msgid "Content Source"
|
958
976
|
msgstr ""
|
959
977
|
|
@@ -966,9 +984,6 @@ msgstr ""
|
|
966
984
|
msgid "Content View"
|
967
985
|
msgstr ""
|
968
986
|
|
969
|
-
msgid "Content View %s cannot be published without an internal capsule."
|
970
|
-
msgstr ""
|
971
|
-
|
972
987
|
msgid "Content View %{view}: Versions: %{versions}"
|
973
988
|
msgstr ""
|
974
989
|
|
@@ -1020,6 +1035,9 @@ msgstr ""
|
|
1020
1035
|
msgid "Content host must be unregistered before performing this action."
|
1021
1036
|
msgstr ""
|
1022
1037
|
|
1038
|
+
msgid "Content imported from %{path} into content view '%{name}' by %{user}"
|
1039
|
+
msgstr ""
|
1040
|
+
|
1023
1041
|
msgid "Content source ID"
|
1024
1042
|
msgstr ""
|
1025
1043
|
|
@@ -1053,6 +1071,9 @@ msgstr ""
|
|
1053
1071
|
msgid "Content view label"
|
1054
1072
|
msgstr ""
|
1055
1073
|
|
1074
|
+
msgid "Content view not provided in the metadata"
|
1075
|
+
msgstr ""
|
1076
|
+
|
1056
1077
|
msgid "Content view numeric identifier"
|
1057
1078
|
msgstr ""
|
1058
1079
|
|
@@ -1062,6 +1083,9 @@ msgstr ""
|
|
1062
1083
|
msgid "Content view version identifier"
|
1063
1084
|
msgstr ""
|
1064
1085
|
|
1086
|
+
msgid "Content view version import history identifier"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1065
1089
|
msgid "Content_Host_Status"
|
1066
1090
|
msgstr ""
|
1067
1091
|
|
@@ -1107,9 +1131,6 @@ msgstr ""
|
|
1107
1131
|
msgid "Could not find Lifecycle Environment with id '%{id}'."
|
1108
1132
|
msgstr ""
|
1109
1133
|
|
1110
|
-
msgid "Could not find Repository for module %s."
|
1111
|
-
msgstr ""
|
1112
|
-
|
1113
1134
|
msgid "Could not find a host with id %s"
|
1114
1135
|
msgstr ""
|
1115
1136
|
|
@@ -1125,9 +1146,6 @@ msgstr ""
|
|
1125
1146
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
1126
1147
|
msgstr ""
|
1127
1148
|
|
1128
|
-
msgid "Could not unarchive puppet module. Please make sure the puppet module has been compressed properly."
|
1129
|
-
msgstr ""
|
1130
|
-
|
1131
1149
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
1132
1150
|
msgstr ""
|
1133
1151
|
|
@@ -1140,9 +1158,6 @@ msgstr ""
|
|
1140
1158
|
msgid "Couldn't find Organization '%s'."
|
1141
1159
|
msgstr ""
|
1142
1160
|
|
1143
|
-
msgid "Couldn't find Puppet Module with id '%s'"
|
1144
|
-
msgstr ""
|
1145
|
-
|
1146
1161
|
msgid "Couldn't find activation key '%s'"
|
1147
1162
|
msgstr ""
|
1148
1163
|
|
@@ -1206,6 +1221,12 @@ msgstr ""
|
|
1206
1221
|
msgid "Create"
|
1207
1222
|
msgstr ""
|
1208
1223
|
|
1224
|
+
msgid "Create Export History"
|
1225
|
+
msgstr ""
|
1226
|
+
|
1227
|
+
msgid "Create Import History"
|
1228
|
+
msgstr ""
|
1229
|
+
|
1209
1230
|
msgid "Create Package Group"
|
1210
1231
|
msgstr ""
|
1211
1232
|
|
@@ -1266,9 +1287,6 @@ msgstr ""
|
|
1266
1287
|
msgid "Current organization not set."
|
1267
1288
|
msgstr ""
|
1268
1289
|
|
1269
|
-
msgid "Custom"
|
1270
|
-
msgstr ""
|
1271
|
-
|
1272
1290
|
msgid "Custom Content Repositories"
|
1273
1291
|
msgstr ""
|
1274
1292
|
|
@@ -1281,6 +1299,9 @@ msgstr ""
|
|
1281
1299
|
msgid "Database connection"
|
1282
1300
|
msgstr ""
|
1283
1301
|
|
1302
|
+
msgid "Date"
|
1303
|
+
msgstr ""
|
1304
|
+
|
1284
1305
|
msgid "Date format is incorrect."
|
1285
1306
|
msgstr ""
|
1286
1307
|
|
@@ -1311,15 +1332,9 @@ msgstr ""
|
|
1311
1332
|
msgid "Default HTTP proxy"
|
1312
1333
|
msgstr ""
|
1313
1334
|
|
1314
|
-
msgid "Default Location Puppet content"
|
1315
|
-
msgstr ""
|
1316
|
-
|
1317
1335
|
msgid "Default Location subscribed hosts"
|
1318
1336
|
msgstr ""
|
1319
1337
|
|
1320
|
-
msgid "Default Location where new Puppet content will be put upon Content View publish"
|
1321
|
-
msgstr ""
|
1322
|
-
|
1323
1338
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
1324
1339
|
msgstr ""
|
1325
1340
|
|
@@ -1719,6 +1734,12 @@ msgstr ""
|
|
1719
1734
|
msgid "Exceeds available quantity"
|
1720
1735
|
msgstr ""
|
1721
1736
|
|
1737
|
+
msgid "Exclude"
|
1738
|
+
msgstr ""
|
1739
|
+
|
1740
|
+
msgid "Excluded"
|
1741
|
+
msgstr ""
|
1742
|
+
|
1722
1743
|
msgid "Exit"
|
1723
1744
|
msgstr ""
|
1724
1745
|
|
@@ -1740,9 +1761,6 @@ msgstr ""
|
|
1740
1761
|
msgid "Export Types"
|
1741
1762
|
msgstr ""
|
1742
1763
|
|
1743
|
-
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1744
|
-
msgstr ""
|
1745
|
-
|
1746
1764
|
msgid "Export a repository"
|
1747
1765
|
msgstr ""
|
1748
1766
|
|
@@ -1755,9 +1773,6 @@ msgstr ""
|
|
1755
1773
|
msgid "Export to ISO format"
|
1756
1774
|
msgstr ""
|
1757
1775
|
|
1758
|
-
msgid "Export to ISO format."
|
1759
|
-
msgstr ""
|
1760
|
-
|
1761
1776
|
msgid "Exported version"
|
1762
1777
|
msgstr ""
|
1763
1778
|
|
@@ -1773,11 +1788,6 @@ msgstr ""
|
|
1773
1788
|
msgid "Failed to delete %{host}: %{errors}"
|
1774
1789
|
msgstr ""
|
1775
1790
|
|
1776
|
-
msgid "Failed to download %s module."
|
1777
|
-
msgid_plural "Failed to download %s modules."
|
1778
|
-
msgstr[0] ""
|
1779
|
-
msgstr[1] ""
|
1780
|
-
|
1781
1791
|
msgid "Failed to download %s package."
|
1782
1792
|
msgid_plural "Failed to download %s packages."
|
1783
1793
|
msgstr[0] ""
|
@@ -1855,9 +1865,6 @@ msgstr ""
|
|
1855
1865
|
msgid "Filter versions by environment"
|
1856
1866
|
msgstr ""
|
1857
1867
|
|
1858
|
-
msgid "Filter versions by puppet module"
|
1859
|
-
msgstr ""
|
1860
|
-
|
1861
1868
|
msgid "Filter versions by version number"
|
1862
1869
|
msgstr ""
|
1863
1870
|
|
@@ -1879,6 +1886,9 @@ msgstr ""
|
|
1879
1886
|
msgid "For pages that support it, automatically perform search while typing in search input."
|
1880
1887
|
msgstr ""
|
1881
1888
|
|
1889
|
+
msgid "Force"
|
1890
|
+
msgstr ""
|
1891
|
+
|
1882
1892
|
msgid ""
|
1883
1893
|
"Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
|
1884
1894
|
" On Demand download policy) are skipped."
|
@@ -1920,6 +1930,9 @@ msgstr ""
|
|
1920
1930
|
msgid "Get all content available, not just that provided by subscriptions"
|
1921
1931
|
msgstr ""
|
1922
1932
|
|
1933
|
+
msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
|
1934
|
+
msgstr ""
|
1935
|
+
|
1923
1936
|
msgid "Get content and overrides for the host"
|
1924
1937
|
msgstr ""
|
1925
1938
|
|
@@ -1932,12 +1945,6 @@ msgstr ""
|
|
1932
1945
|
msgid "Get list of available repositories for the repository set"
|
1933
1946
|
msgstr ""
|
1934
1947
|
|
1935
|
-
msgid "Get puppet modules names that are available to be added to the content view"
|
1936
|
-
msgstr ""
|
1937
|
-
|
1938
|
-
msgid "Get puppet modules that are available to be added to the content view"
|
1939
|
-
msgstr ""
|
1940
|
-
|
1941
1948
|
msgid "Get status of repo synchronisation for given product"
|
1942
1949
|
msgstr ""
|
1943
1950
|
|
@@ -1968,6 +1975,9 @@ msgstr ""
|
|
1968
1975
|
msgid "History"
|
1969
1976
|
msgstr ""
|
1970
1977
|
|
1978
|
+
msgid "History will appear here when the content view is published or promoted."
|
1979
|
+
msgstr ""
|
1980
|
+
|
1971
1981
|
msgid "Host"
|
1972
1982
|
msgstr ""
|
1973
1983
|
|
@@ -2055,6 +2065,9 @@ msgstr ""
|
|
2055
2065
|
msgid "Hosts with Installable Errata"
|
2056
2066
|
msgstr ""
|
2057
2067
|
|
2068
|
+
msgid "Hosts: "
|
2069
|
+
msgstr ""
|
2070
|
+
|
2058
2071
|
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."
|
2059
2072
|
msgstr ""
|
2060
2073
|
|
@@ -2208,7 +2221,7 @@ msgstr ""
|
|
2208
2221
|
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."
|
2209
2222
|
msgstr ""
|
2210
2223
|
|
2211
|
-
msgid "If set to true, use
|
2224
|
+
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2212
2225
|
msgstr ""
|
2213
2226
|
|
2214
2227
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
@@ -2235,6 +2248,15 @@ msgstr ""
|
|
2235
2248
|
msgid "Ignorable content can be only set for Yum repositories."
|
2236
2249
|
msgstr ""
|
2237
2250
|
|
2251
|
+
msgid "Ignore errors"
|
2252
|
+
msgstr ""
|
2253
|
+
|
2254
|
+
msgid "Ignore subscription manager errors"
|
2255
|
+
msgstr ""
|
2256
|
+
|
2257
|
+
msgid "Ignore subscription-manager errors for `subscription-manager register` command"
|
2258
|
+
msgstr ""
|
2259
|
+
|
2238
2260
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2239
2261
|
msgstr ""
|
2240
2262
|
|
@@ -2262,6 +2284,9 @@ msgstr ""
|
|
2262
2284
|
msgid "Import Puppet classes"
|
2263
2285
|
msgstr ""
|
2264
2286
|
|
2287
|
+
msgid "Import Types"
|
2288
|
+
msgstr ""
|
2289
|
+
|
2265
2290
|
msgid "Import a Manifest"
|
2266
2291
|
msgstr ""
|
2267
2292
|
|
@@ -2292,15 +2317,21 @@ msgstr ""
|
|
2292
2317
|
msgid "Import-only content views can not be published directly"
|
2293
2318
|
msgstr ""
|
2294
2319
|
|
2295
|
-
msgid "Import-only content views will be available in a future version."
|
2296
|
-
msgstr ""
|
2297
|
-
|
2298
2320
|
msgid "Importing manifest into '%{subject}' failed."
|
2299
2321
|
msgstr ""
|
2300
2322
|
|
2301
2323
|
msgid "In Progress"
|
2302
2324
|
msgstr ""
|
2303
2325
|
|
2326
|
+
msgid "Include"
|
2327
|
+
msgstr ""
|
2328
|
+
|
2329
|
+
msgid "Included"
|
2330
|
+
msgstr ""
|
2331
|
+
|
2332
|
+
msgid "Includes associated content view filter ids in response"
|
2333
|
+
msgstr ""
|
2334
|
+
|
2304
2335
|
msgid "Inclusion type"
|
2305
2336
|
msgstr ""
|
2306
2337
|
|
@@ -2349,7 +2380,7 @@ msgstr ""
|
|
2349
2380
|
msgid "Install Applicable Errata on %s"
|
2350
2381
|
msgstr ""
|
2351
2382
|
|
2352
|
-
msgid "Install content on one or more hosts"
|
2383
|
+
msgid "Install content on one or more hosts using katello-agent. %s"
|
2353
2384
|
msgstr ""
|
2354
2385
|
|
2355
2386
|
msgid "Install errata via Katello interface"
|
@@ -2376,7 +2407,7 @@ msgstr ""
|
|
2376
2407
|
msgid "Install package via Katello interface"
|
2377
2408
|
msgstr ""
|
2378
2409
|
|
2379
|
-
msgid "Install packages remotely"
|
2410
|
+
msgid "Install packages remotely using katello-agent. %s"
|
2380
2411
|
msgstr ""
|
2381
2412
|
|
2382
2413
|
msgid "Installable errata from Content View"
|
@@ -2469,20 +2500,6 @@ msgstr ""
|
|
2469
2500
|
msgid "Invalid params provided - date_type must be one of %s"
|
2470
2501
|
msgstr ""
|
2471
2502
|
|
2472
|
-
msgid ""
|
2473
|
-
"Invalid puppet module parameters specified. \\\n"
|
2474
|
-
" Either 'uuid' or 'name' and 'author' must be specified."
|
2475
|
-
msgstr ""
|
2476
|
-
|
2477
|
-
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2478
|
-
msgstr ""
|
2479
|
-
|
2480
|
-
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2481
|
-
msgstr ""
|
2482
|
-
|
2483
|
-
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2484
|
-
msgstr ""
|
2485
|
-
|
2486
2503
|
msgid "Invalid value specified for Container Image repositories."
|
2487
2504
|
msgstr ""
|
2488
2505
|
|
@@ -2492,9 +2509,6 @@ msgstr ""
|
|
2492
2509
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2493
2510
|
msgstr ""
|
2494
2511
|
|
2495
|
-
msgid "Katello"
|
2496
|
-
msgstr ""
|
2497
|
-
|
2498
2512
|
msgid "Katello ID of local pool to update"
|
2499
2513
|
msgstr ""
|
2500
2514
|
|
@@ -2549,9 +2563,18 @@ msgstr ""
|
|
2549
2563
|
msgid "Last published"
|
2550
2564
|
msgstr ""
|
2551
2565
|
|
2566
|
+
msgid "Last task"
|
2567
|
+
msgstr ""
|
2568
|
+
|
2569
|
+
msgid "Latest (automatically updates)"
|
2570
|
+
msgstr ""
|
2571
|
+
|
2552
2572
|
msgid "Latest Errata"
|
2553
2573
|
msgstr ""
|
2554
2574
|
|
2575
|
+
msgid "Latest version"
|
2576
|
+
msgstr ""
|
2577
|
+
|
2555
2578
|
msgid "Learn more about adding Subscription Manifests"
|
2556
2579
|
msgstr ""
|
2557
2580
|
|
@@ -2579,12 +2602,18 @@ msgstr ""
|
|
2579
2602
|
msgid "Lifecycle Environments"
|
2580
2603
|
msgstr ""
|
2581
2604
|
|
2605
|
+
msgid "Lifecycle environment"
|
2606
|
+
msgstr ""
|
2607
|
+
|
2582
2608
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
2583
2609
|
msgstr ""
|
2584
2610
|
|
2585
2611
|
msgid "Lifecycle environment ID"
|
2586
2612
|
msgstr ""
|
2587
2613
|
|
2614
|
+
msgid "Lifecycle environment for the host."
|
2615
|
+
msgstr ""
|
2616
|
+
|
2588
2617
|
msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
|
2589
2618
|
msgstr ""
|
2590
2619
|
|
@@ -2594,6 +2623,9 @@ msgstr ""
|
|
2594
2623
|
msgid "Limit content to just that available in the activation key's content view version"
|
2595
2624
|
msgstr ""
|
2596
2625
|
|
2626
|
+
msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
|
2627
|
+
msgstr ""
|
2628
|
+
|
2597
2629
|
msgid "Limit content to just that available in the host's content view version"
|
2598
2630
|
msgstr ""
|
2599
2631
|
|
@@ -2630,9 +2662,6 @@ msgstr ""
|
|
2630
2662
|
msgid "List components attached to this content view"
|
2631
2663
|
msgstr ""
|
2632
2664
|
|
2633
|
-
msgid "List content view puppet modules"
|
2634
|
-
msgstr ""
|
2635
|
-
|
2636
2665
|
msgid "List content view versions"
|
2637
2666
|
msgstr ""
|
2638
2667
|
|
@@ -2672,6 +2701,9 @@ msgstr ""
|
|
2672
2701
|
msgid "List host collections within an organization"
|
2673
2702
|
msgstr ""
|
2674
2703
|
|
2704
|
+
msgid "List import histories"
|
2705
|
+
msgstr ""
|
2706
|
+
|
2675
2707
|
msgid "List module streams available to the host"
|
2676
2708
|
msgstr ""
|
2677
2709
|
|
@@ -2888,6 +2920,9 @@ msgstr ""
|
|
2888
2920
|
msgid "May not add an id rule to a filter that has an existing type or date range rule."
|
2889
2921
|
msgstr ""
|
2890
2922
|
|
2923
|
+
msgid "Media Selection"
|
2924
|
+
msgstr ""
|
2925
|
+
|
2891
2926
|
msgid "Medium IDs"
|
2892
2927
|
msgstr ""
|
2893
2928
|
|
@@ -2924,9 +2959,15 @@ msgstr ""
|
|
2924
2959
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
2925
2960
|
msgstr ""
|
2926
2961
|
|
2962
|
+
msgid "N/A"
|
2963
|
+
msgstr ""
|
2964
|
+
|
2927
2965
|
msgid "NA"
|
2928
2966
|
msgstr ""
|
2929
2967
|
|
2968
|
+
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2969
|
+
msgstr ""
|
2970
|
+
|
2930
2971
|
msgid ""
|
2931
2972
|
"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"
|
2932
2973
|
" %{repos}"
|
@@ -2994,15 +3035,27 @@ msgstr ""
|
|
2994
3035
|
msgid "New packages: %{count} (%{size})."
|
2995
3036
|
msgstr ""
|
2996
3037
|
|
3038
|
+
msgid "New version is available: Version ${latestVersion}"
|
3039
|
+
msgstr ""
|
3040
|
+
|
2997
3041
|
msgid "No"
|
2998
3042
|
msgstr ""
|
2999
3043
|
|
3044
|
+
msgid "No Activation Keys selected"
|
3045
|
+
msgstr ""
|
3046
|
+
|
3047
|
+
msgid "No Activation keys to select"
|
3048
|
+
msgstr ""
|
3049
|
+
|
3000
3050
|
msgid "No Content View"
|
3001
3051
|
msgstr ""
|
3002
3052
|
|
3003
3053
|
msgid "No Content found"
|
3004
3054
|
msgstr ""
|
3005
3055
|
|
3056
|
+
msgid "No Lifecycle environment to select"
|
3057
|
+
msgstr ""
|
3058
|
+
|
3006
3059
|
msgid "No Manifest Uploaded"
|
3007
3060
|
msgstr ""
|
3008
3061
|
|
@@ -3033,12 +3086,24 @@ msgstr ""
|
|
3033
3086
|
msgid "No content view history events found."
|
3034
3087
|
msgstr ""
|
3035
3088
|
|
3089
|
+
msgid "No content views belong to ${label}"
|
3090
|
+
msgstr ""
|
3091
|
+
|
3036
3092
|
msgid "No content_view_version_ids provided"
|
3037
3093
|
msgstr ""
|
3038
3094
|
|
3095
|
+
msgid "No description"
|
3096
|
+
msgstr ""
|
3097
|
+
|
3039
3098
|
msgid "No enabled repositories match your search criteria."
|
3040
3099
|
msgstr ""
|
3041
3100
|
|
3101
|
+
msgid "No environment"
|
3102
|
+
msgstr ""
|
3103
|
+
|
3104
|
+
msgid "No environments"
|
3105
|
+
msgstr ""
|
3106
|
+
|
3042
3107
|
msgid "No errata has been specified."
|
3043
3108
|
msgstr ""
|
3044
3109
|
|
@@ -3072,15 +3137,30 @@ msgstr ""
|
|
3072
3137
|
msgid "No matching filters found"
|
3073
3138
|
msgstr ""
|
3074
3139
|
|
3140
|
+
msgid "No matching history record found"
|
3141
|
+
msgstr ""
|
3142
|
+
|
3143
|
+
msgid "No matching package groups found."
|
3144
|
+
msgstr ""
|
3145
|
+
|
3075
3146
|
msgid "No matching repositories found"
|
3076
3147
|
msgstr ""
|
3077
3148
|
|
3149
|
+
msgid "No matching rules found."
|
3150
|
+
msgstr ""
|
3151
|
+
|
3152
|
+
msgid "No matching version found"
|
3153
|
+
msgstr ""
|
3154
|
+
|
3078
3155
|
msgid "No new packages installed"
|
3079
3156
|
msgstr ""
|
3080
3157
|
|
3081
3158
|
msgid "No new packages."
|
3082
3159
|
msgstr ""
|
3083
3160
|
|
3161
|
+
msgid "No package groups have been added to this filter."
|
3162
|
+
msgstr ""
|
3163
|
+
|
3084
3164
|
msgid "No packages removed"
|
3085
3165
|
msgstr ""
|
3086
3166
|
|
@@ -3126,6 +3206,9 @@ msgstr ""
|
|
3126
3206
|
msgid "No repository sets match your search criteria."
|
3127
3207
|
msgstr ""
|
3128
3208
|
|
3209
|
+
msgid "No rules have been added to this filter."
|
3210
|
+
msgstr ""
|
3211
|
+
|
3129
3212
|
msgid "No services defined, is this class extended?"
|
3130
3213
|
msgstr ""
|
3131
3214
|
|
@@ -3162,12 +3245,18 @@ msgstr ""
|
|
3162
3245
|
msgid "Not a number"
|
3163
3246
|
msgstr ""
|
3164
3247
|
|
3248
|
+
msgid "Not added"
|
3249
|
+
msgstr ""
|
3250
|
+
|
3165
3251
|
msgid "Not all necessary pulp workers running at %s."
|
3166
3252
|
msgstr ""
|
3167
3253
|
|
3168
3254
|
msgid "Not running"
|
3169
3255
|
msgstr ""
|
3170
3256
|
|
3257
|
+
msgid "Not yet published"
|
3258
|
+
msgstr ""
|
3259
|
+
|
3171
3260
|
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."
|
3172
3261
|
msgstr ""
|
3173
3262
|
|
@@ -3243,9 +3332,6 @@ msgstr ""
|
|
3243
3332
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3244
3333
|
msgstr ""
|
3245
3334
|
|
3246
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3247
|
-
msgstr ""
|
3248
|
-
|
3249
3335
|
msgid "Organization"
|
3250
3336
|
msgstr ""
|
3251
3337
|
|
@@ -3258,6 +3344,9 @@ msgstr ""
|
|
3258
3344
|
msgid "Organization ID is required"
|
3259
3345
|
msgstr ""
|
3260
3346
|
|
3347
|
+
msgid "Organization Information not provided."
|
3348
|
+
msgstr ""
|
3349
|
+
|
3261
3350
|
msgid "Organization cannot be blank."
|
3262
3351
|
msgstr ""
|
3263
3352
|
|
@@ -3423,6 +3512,9 @@ msgstr ""
|
|
3423
3512
|
msgid "Package group update timed out"
|
3424
3513
|
msgstr ""
|
3425
3514
|
|
3515
|
+
msgid "Package groups"
|
3516
|
+
msgstr ""
|
3517
|
+
|
3426
3518
|
msgid "Package identifiers to filter content by"
|
3427
3519
|
msgstr ""
|
3428
3520
|
|
@@ -3495,6 +3587,9 @@ msgstr ""
|
|
3495
3587
|
msgid "Plan numeric identifier"
|
3496
3588
|
msgstr ""
|
3497
3589
|
|
3590
|
+
msgid "Please add some content views."
|
3591
|
+
msgstr ""
|
3592
|
+
|
3498
3593
|
msgid "Please add some repositories."
|
3499
3594
|
msgstr ""
|
3500
3595
|
|
@@ -3641,15 +3736,15 @@ msgstr ""
|
|
3641
3736
|
msgid "Pulp 3 export destination filepath"
|
3642
3737
|
msgstr ""
|
3643
3738
|
|
3644
|
-
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3645
|
-
msgstr ""
|
3646
|
-
|
3647
3739
|
msgid "Pulp Consumer %s has already been removed"
|
3648
3740
|
msgstr ""
|
3649
3741
|
|
3650
3742
|
msgid "Pulp Docker registry port"
|
3651
3743
|
msgstr ""
|
3652
3744
|
|
3745
|
+
msgid "Pulp bulk load size"
|
3746
|
+
msgstr ""
|
3747
|
+
|
3653
3748
|
msgid "Pulp client cert"
|
3654
3749
|
msgstr ""
|
3655
3750
|
|
@@ -3698,33 +3793,6 @@ msgstr ""
|
|
3698
3793
|
msgid "Pulpcore"
|
3699
3794
|
msgstr ""
|
3700
3795
|
|
3701
|
-
msgid "Puppet Environment"
|
3702
|
-
msgstr ""
|
3703
|
-
|
3704
|
-
msgid "Puppet Module"
|
3705
|
-
msgstr ""
|
3706
|
-
|
3707
|
-
msgid ""
|
3708
|
-
"Puppet Module does not belong to content view organization\\\n"
|
3709
|
-
" '%{name}'"
|
3710
|
-
msgstr ""
|
3711
|
-
|
3712
|
-
msgid ""
|
3713
|
-
"Puppet Module with name='%{name}' and author='%{author}' does\\\n"
|
3714
|
-
" not exist"
|
3715
|
-
msgstr ""
|
3716
|
-
|
3717
|
-
msgid ""
|
3718
|
-
"Puppet Module with uuid='%{uuid}' does not\\\n"
|
3719
|
-
" exist"
|
3720
|
-
msgstr ""
|
3721
|
-
|
3722
|
-
msgid "Puppet Modules"
|
3723
|
-
msgstr ""
|
3724
|
-
|
3725
|
-
msgid "Puppet module conflict: '%{mod}' is in %{versions}."
|
3726
|
-
msgstr ""
|
3727
|
-
|
3728
3796
|
msgid "Quantity"
|
3729
3797
|
msgstr ""
|
3730
3798
|
|
@@ -3755,6 +3823,9 @@ msgstr ""
|
|
3755
3823
|
msgid "RPM"
|
3756
3824
|
msgstr ""
|
3757
3825
|
|
3826
|
+
msgid "RPM name"
|
3827
|
+
msgstr ""
|
3828
|
+
|
3758
3829
|
msgid "RPMs"
|
3759
3830
|
msgstr ""
|
3760
3831
|
|
@@ -3770,9 +3841,6 @@ msgstr ""
|
|
3770
3841
|
msgid "Recommended Repositories"
|
3771
3842
|
msgstr ""
|
3772
3843
|
|
3773
|
-
msgid "Red Hat"
|
3774
|
-
msgstr ""
|
3775
|
-
|
3776
3844
|
msgid "Red Hat CDN URL"
|
3777
3845
|
msgstr ""
|
3778
3846
|
|
@@ -3854,13 +3922,13 @@ msgstr ""
|
|
3854
3922
|
msgid "Remove a content view from an environment"
|
3855
3923
|
msgstr ""
|
3856
3924
|
|
3857
|
-
msgid "Remove
|
3925
|
+
msgid "Remove any `katello-ca-consumer` rpms before registration and run subscription-manager with `--force` argument."
|
3858
3926
|
msgstr ""
|
3859
3927
|
|
3860
3928
|
msgid "Remove components from the content view"
|
3861
3929
|
msgstr ""
|
3862
3930
|
|
3863
|
-
msgid "Remove content on one or more hosts"
|
3931
|
+
msgid "Remove content on one or more hosts using katello-agent. %s"
|
3864
3932
|
msgstr ""
|
3865
3933
|
|
3866
3934
|
msgid "Remove content view version"
|
@@ -3986,9 +4054,6 @@ msgstr ""
|
|
3986
4054
|
msgid "Requires Virt-Who"
|
3987
4055
|
msgstr ""
|
3988
4056
|
|
3989
|
-
msgid "Reset Puppet Environment"
|
3990
|
-
msgstr ""
|
3991
|
-
|
3992
4057
|
msgid "Resolve Traces"
|
3993
4058
|
msgstr ""
|
3994
4059
|
|
@@ -4067,12 +4132,18 @@ msgstr ""
|
|
4067
4132
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
4068
4133
|
msgstr ""
|
4069
4134
|
|
4135
|
+
msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
|
4136
|
+
msgstr ""
|
4137
|
+
|
4070
4138
|
msgid "Role"
|
4071
4139
|
msgstr ""
|
4072
4140
|
|
4073
4141
|
msgid "Role of host"
|
4074
4142
|
msgstr ""
|
4075
4143
|
|
4144
|
+
msgid "Roles"
|
4145
|
+
msgstr ""
|
4146
|
+
|
4076
4147
|
msgid "Run Sync Plan:"
|
4077
4148
|
msgstr ""
|
4078
4149
|
|
@@ -4094,7 +4165,7 @@ msgstr ""
|
|
4094
4165
|
msgid "Save"
|
4095
4166
|
msgstr ""
|
4096
4167
|
|
4097
|
-
msgid "Schedule errata for installation"
|
4168
|
+
msgid "Schedule errata for installation using katello-agent. %s"
|
4098
4169
|
msgstr ""
|
4099
4170
|
|
4100
4171
|
msgid "Search"
|
@@ -4193,9 +4264,6 @@ msgstr ""
|
|
4193
4264
|
msgid "Sets whether the Host will autoheal subscriptions upon checkin"
|
4194
4265
|
msgstr ""
|
4195
4266
|
|
4196
|
-
msgid "Setting 'default_location_puppet_content' is not set to a valid location."
|
4197
|
-
msgstr ""
|
4198
|
-
|
4199
4267
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4200
4268
|
msgstr ""
|
4201
4269
|
|
@@ -4214,9 +4282,6 @@ msgstr ""
|
|
4214
4282
|
msgid "Show a content view component"
|
4215
4283
|
msgstr ""
|
4216
4284
|
|
4217
|
-
msgid "Show a content view puppet module"
|
4218
|
-
msgstr ""
|
4219
|
-
|
4220
4285
|
msgid "Show a content view's history"
|
4221
4286
|
msgstr ""
|
4222
4287
|
|
@@ -4307,10 +4372,28 @@ msgstr ""
|
|
4307
4372
|
msgid "Some of your inputs contain errors. Please update them and save your changes again."
|
4308
4373
|
msgstr ""
|
4309
4374
|
|
4310
|
-
msgid "
|
4375
|
+
msgid "Some services are not properly started. See the About page for more information."
|
4311
4376
|
msgstr ""
|
4312
4377
|
|
4313
|
-
msgid "Something went wrong while retrieving the
|
4378
|
+
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4379
|
+
msgstr ""
|
4380
|
+
|
4381
|
+
msgid "Something went wrong while retrieving the content view filter rules! ${getResponseErrorMsgs(error.response)}"
|
4382
|
+
msgstr ""
|
4383
|
+
|
4384
|
+
msgid "Something went wrong while retrieving the content view filter! ${getResponseErrorMsgs(error.response)}"
|
4385
|
+
msgstr ""
|
4386
|
+
|
4387
|
+
msgid "Something went wrong while retrieving the content view filters! ${getResponseErrorMsgs(error.response)}"
|
4388
|
+
msgstr ""
|
4389
|
+
|
4390
|
+
msgid "Something went wrong while retrieving the content view history! ${getResponseErrorMsgs(error.response)}"
|
4391
|
+
msgstr ""
|
4392
|
+
|
4393
|
+
msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
|
4394
|
+
msgstr ""
|
4395
|
+
|
4396
|
+
msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
|
4314
4397
|
msgstr ""
|
4315
4398
|
|
4316
4399
|
msgid "Sort field and order, eg. 'id DESC'"
|
@@ -4472,6 +4555,9 @@ msgstr ""
|
|
4472
4555
|
msgid "Sync Canceled"
|
4473
4556
|
msgstr ""
|
4474
4557
|
|
4558
|
+
msgid "Sync Connection Timeout"
|
4559
|
+
msgstr ""
|
4560
|
+
|
4475
4561
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4476
4562
|
msgstr ""
|
4477
4563
|
|
@@ -4565,6 +4651,9 @@ msgstr ""
|
|
4565
4651
|
msgid "System Purpose"
|
4566
4652
|
msgstr ""
|
4567
4653
|
|
4654
|
+
msgid "System Status"
|
4655
|
+
msgstr ""
|
4656
|
+
|
4568
4657
|
msgid "Tags"
|
4569
4658
|
msgstr ""
|
4570
4659
|
|
@@ -4589,6 +4678,9 @@ msgstr ""
|
|
4589
4678
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4590
4679
|
msgstr ""
|
4591
4680
|
|
4681
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
4682
|
+
msgstr ""
|
4683
|
+
|
4592
4684
|
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."
|
4593
4685
|
msgstr ""
|
4594
4686
|
|
@@ -4619,6 +4711,12 @@ msgstr ""
|
|
4619
4711
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4620
4712
|
msgstr ""
|
4621
4713
|
|
4714
|
+
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4715
|
+
msgstr ""
|
4716
|
+
|
4717
|
+
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4718
|
+
msgstr ""
|
4719
|
+
|
4622
4720
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4623
4721
|
msgstr ""
|
4624
4722
|
|
@@ -4642,6 +4740,11 @@ msgid ""
|
|
4642
4740
|
" %{repos}"
|
4643
4741
|
msgstr ""
|
4644
4742
|
|
4743
|
+
msgid ""
|
4744
|
+
"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"
|
4745
|
+
" %{repos}"
|
4746
|
+
msgstr ""
|
4747
|
+
|
4645
4748
|
msgid "The id of the host to alter"
|
4646
4749
|
msgstr ""
|
4647
4750
|
|
@@ -4654,6 +4757,9 @@ msgstr ""
|
|
4654
4757
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4655
4758
|
msgstr ""
|
4656
4759
|
|
4760
|
+
msgid "The number of items fetched from a single paged Pulp API call."
|
4761
|
+
msgstr ""
|
4762
|
+
|
4657
4763
|
msgid "The offset in the file where the content starts"
|
4658
4764
|
msgstr ""
|
4659
4765
|
|
@@ -4675,12 +4781,6 @@ msgstr ""
|
|
4675
4781
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4676
4782
|
msgstr ""
|
4677
4783
|
|
4678
|
-
msgid "The puppet environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4679
|
-
msgstr ""
|
4680
|
-
|
4681
|
-
msgid "The puppet environment %{name} is in use by %{count} Host(s) including %{names}"
|
4682
|
-
msgstr ""
|
4683
|
-
|
4684
4784
|
msgid "The repository is already enabled"
|
4685
4785
|
msgstr ""
|
4686
4786
|
|
@@ -4696,9 +4796,6 @@ msgstr ""
|
|
4696
4796
|
msgid "The requested traces were not found for this host"
|
4697
4797
|
msgstr ""
|
4698
4798
|
|
4699
|
-
msgid "The selected content source and lifecycle environment do not match"
|
4700
|
-
msgstr ""
|
4701
|
-
|
4702
4799
|
msgid ""
|
4703
4800
|
"The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
|
4704
4801
|
" content source, operating system, and architecture"
|
@@ -4716,6 +4813,9 @@ msgstr ""
|
|
4716
4813
|
msgid "The synchronization of \"%s\" has completed. Below is a summary of new errata."
|
4717
4814
|
msgstr ""
|
4718
4815
|
|
4816
|
+
msgid "The token key to use for authentication."
|
4817
|
+
msgstr ""
|
4818
|
+
|
4719
4819
|
msgid "The type of content. The following types are supported: 'package' and 'package_group."
|
4720
4820
|
msgstr ""
|
4721
4821
|
|
@@ -4737,9 +4837,6 @@ msgstr ""
|
|
4737
4837
|
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."
|
4738
4838
|
msgstr ""
|
4739
4839
|
|
4740
|
-
msgid "There is already a module named \"%{value}\" in this content view."
|
4741
|
-
msgstr ""
|
4742
|
-
|
4743
4840
|
msgid "There is no Manifest History to display."
|
4744
4841
|
msgstr ""
|
4745
4842
|
|
@@ -4770,15 +4867,12 @@ msgstr ""
|
|
4770
4867
|
msgid "This action doesn't support package groups"
|
4771
4868
|
msgstr ""
|
4772
4869
|
|
4773
|
-
msgid "This action
|
4870
|
+
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
4774
4871
|
msgstr ""
|
4775
4872
|
|
4776
4873
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4777
4874
|
msgstr ""
|
4778
4875
|
|
4779
|
-
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
4780
|
-
msgstr ""
|
4781
|
-
|
4782
4876
|
msgid "This content view version doesn't have a history."
|
4783
4877
|
msgstr ""
|
4784
4878
|
|
@@ -4848,10 +4942,10 @@ msgstr ""
|
|
4848
4942
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4849
4943
|
msgstr ""
|
4850
4944
|
|
4851
|
-
msgid "Total
|
4945
|
+
msgid "Total steps: "
|
4852
4946
|
msgstr ""
|
4853
4947
|
|
4854
|
-
msgid "Total
|
4948
|
+
msgid "Total timeout in seconds for connections when syncing"
|
4855
4949
|
msgstr ""
|
4856
4950
|
|
4857
4951
|
msgid "Tracer profile uploaded successfully"
|
@@ -4914,13 +5008,13 @@ msgstr ""
|
|
4914
5008
|
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
4915
5009
|
msgstr ""
|
4916
5010
|
|
4917
|
-
msgid "Unable to
|
5011
|
+
msgid "Unable to find product '%s' in organization '%s'"
|
4918
5012
|
msgstr ""
|
4919
5013
|
|
4920
|
-
msgid "Unable to
|
5014
|
+
msgid "Unable to get users"
|
4921
5015
|
msgstr ""
|
4922
5016
|
|
4923
|
-
msgid "Unable to
|
5017
|
+
msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
|
4924
5018
|
msgstr ""
|
4925
5019
|
|
4926
5020
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -4944,6 +5038,12 @@ msgstr ""
|
|
4944
5038
|
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."
|
4945
5039
|
msgstr ""
|
4946
5040
|
|
5041
|
+
msgid "Unable to update the repository list"
|
5042
|
+
msgstr ""
|
5043
|
+
|
5044
|
+
msgid "Unable to update the user-repository mapping"
|
5045
|
+
msgstr ""
|
5046
|
+
|
4947
5047
|
msgid "Unapplied Errata"
|
4948
5048
|
msgstr ""
|
4949
5049
|
|
@@ -4959,7 +5059,7 @@ msgstr ""
|
|
4959
5059
|
msgid "Unfiltered params array: %s."
|
4960
5060
|
msgstr ""
|
4961
5061
|
|
4962
|
-
msgid "Uninstall packages remotely"
|
5062
|
+
msgid "Uninstall packages remotely using katello-agent. %s"
|
4963
5063
|
msgstr ""
|
4964
5064
|
|
4965
5065
|
msgid "Unknown"
|
@@ -5034,9 +5134,6 @@ msgstr ""
|
|
5034
5134
|
msgid "Update a host collection"
|
5035
5135
|
msgstr ""
|
5036
5136
|
|
5037
|
-
msgid "Update a puppet module associated with the content view"
|
5038
|
-
msgstr ""
|
5039
|
-
|
5040
5137
|
msgid "Update a repository"
|
5041
5138
|
msgstr ""
|
5042
5139
|
|
@@ -5052,7 +5149,7 @@ msgstr ""
|
|
5052
5149
|
msgid "Update an environment in an organization"
|
5053
5150
|
msgstr ""
|
5054
5151
|
|
5055
|
-
msgid "Update content on one or more hosts"
|
5152
|
+
msgid "Update content on one or more hosts using katello-agent. %s"
|
5056
5153
|
msgstr ""
|
5057
5154
|
|
5058
5155
|
msgid "Update content urls"
|
@@ -5094,7 +5191,7 @@ msgstr ""
|
|
5094
5191
|
msgid "Update package via Katello interface"
|
5095
5192
|
msgstr ""
|
5096
5193
|
|
5097
|
-
msgid "Update packages remotely"
|
5194
|
+
msgid "Update packages remotely using katello-agent. %s"
|
5098
5195
|
msgstr ""
|
5099
5196
|
|
5100
5197
|
msgid "Update redhat repository"
|
@@ -5199,6 +5296,9 @@ msgstr ""
|
|
5199
5296
|
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5200
5297
|
msgstr ""
|
5201
5298
|
|
5299
|
+
msgid "User"
|
5300
|
+
msgstr ""
|
5301
|
+
|
5202
5302
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5203
5303
|
msgstr ""
|
5204
5304
|
|
@@ -5238,6 +5338,9 @@ msgstr ""
|
|
5238
5338
|
msgid "Versions"
|
5239
5339
|
msgstr ""
|
5240
5340
|
|
5341
|
+
msgid "Versions will appear here when the content view is published."
|
5342
|
+
msgstr ""
|
5343
|
+
|
5241
5344
|
msgid "View %{view} has not been promoted to %{env}"
|
5242
5345
|
msgstr ""
|
5243
5346
|
|
@@ -5319,9 +5422,15 @@ msgstr ""
|
|
5319
5422
|
msgid "You currently don't have any filters for this content view."
|
5320
5423
|
msgstr ""
|
5321
5424
|
|
5425
|
+
msgid "You currently don't have any history for this content view."
|
5426
|
+
msgstr ""
|
5427
|
+
|
5322
5428
|
msgid "You currently don't have any repositories to add to this content view."
|
5323
5429
|
msgstr ""
|
5324
5430
|
|
5431
|
+
msgid "You currently don't have any versions for this content view."
|
5432
|
+
msgstr ""
|
5433
|
+
|
5325
5434
|
msgid "You do not have permissions to delete %s"
|
5326
5435
|
msgstr ""
|
5327
5436
|
|
@@ -5370,6 +5479,9 @@ msgstr ""
|
|
5370
5479
|
msgid "a file"
|
5371
5480
|
msgstr ""
|
5372
5481
|
|
5482
|
+
msgid "a future release"
|
5483
|
+
msgstr ""
|
5484
|
+
|
5373
5485
|
msgid "a module stream"
|
5374
5486
|
msgstr ""
|
5375
5487
|
|
@@ -5379,9 +5491,6 @@ msgstr ""
|
|
5379
5491
|
msgid "a package group"
|
5380
5492
|
msgstr ""
|
5381
5493
|
|
5382
|
-
msgid "a puppet module"
|
5383
|
-
msgstr ""
|
5384
|
-
|
5385
5494
|
msgid "actions not found"
|
5386
5495
|
msgstr ""
|
5387
5496
|
|
@@ -5412,6 +5521,9 @@ msgstr ""
|
|
5412
5521
|
msgid "allow unauthenticed pull of container images"
|
5413
5522
|
msgstr ""
|
5414
5523
|
|
5524
|
+
msgid "already belongs to the content view"
|
5525
|
+
msgstr ""
|
5526
|
+
|
5415
5527
|
msgid "already taken"
|
5416
5528
|
msgstr ""
|
5417
5529
|
|
@@ -5433,9 +5545,6 @@ msgstr ""
|
|
5433
5545
|
msgid "attempted to sync without a feed URL"
|
5434
5546
|
msgstr ""
|
5435
5547
|
|
5436
|
-
msgid "author of the puppet module"
|
5437
|
-
msgstr ""
|
5438
|
-
|
5439
5548
|
msgid "auto attach subscriptions upon registration"
|
5440
5549
|
msgstr ""
|
5441
5550
|
|
@@ -5505,15 +5614,6 @@ msgstr ""
|
|
5505
5614
|
msgid "checking Pulp task status"
|
5506
5615
|
msgstr ""
|
5507
5616
|
|
5508
|
-
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5509
|
-
msgstr ""
|
5510
|
-
|
5511
|
-
msgid "comma-separated list of releases to be synced from deb-archive"
|
5512
|
-
msgstr ""
|
5513
|
-
|
5514
|
-
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5515
|
-
msgstr ""
|
5516
|
-
|
5517
5617
|
msgid "composite content view identifier"
|
5518
5618
|
msgstr ""
|
5519
5619
|
|
@@ -5526,7 +5626,7 @@ msgstr ""
|
|
5526
5626
|
msgid "content release version"
|
5527
5627
|
msgstr ""
|
5528
5628
|
|
5529
|
-
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', '
|
5629
|
+
msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
|
5530
5630
|
msgstr ""
|
5531
5631
|
|
5532
5632
|
msgid "content view component ID. Identifier of the component association"
|
@@ -5802,15 +5902,9 @@ msgstr ""
|
|
5802
5902
|
msgid "maximum size of each ISO in MB"
|
5803
5903
|
msgstr ""
|
5804
5904
|
|
5805
|
-
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
5806
|
-
msgstr ""
|
5807
|
-
|
5808
5905
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5809
5906
|
msgstr ""
|
5810
5907
|
|
5811
|
-
msgid "module name to restrict modules for"
|
5812
|
-
msgstr ""
|
5813
|
-
|
5814
5908
|
msgid "module stream ids"
|
5815
5909
|
msgstr ""
|
5816
5910
|
|
@@ -5871,10 +5965,10 @@ msgstr ""
|
|
5871
5965
|
msgid "name of the organization"
|
5872
5966
|
msgstr ""
|
5873
5967
|
|
5874
|
-
msgid "name of the
|
5968
|
+
msgid "name of the repository"
|
5875
5969
|
msgstr ""
|
5876
5970
|
|
5877
|
-
msgid "name of the
|
5971
|
+
msgid "name of the subscription"
|
5878
5972
|
msgstr ""
|
5879
5973
|
|
5880
5974
|
msgid "name: %s doesn't exist "
|
@@ -5901,6 +5995,9 @@ msgstr ""
|
|
5901
5995
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
5902
5996
|
msgstr ""
|
5903
5997
|
|
5998
|
+
msgid "only show the repositories readable by this user with this username"
|
5999
|
+
msgstr ""
|
6000
|
+
|
5904
6001
|
msgid "optional package names to include in the package group"
|
5905
6002
|
msgstr ""
|
5906
6003
|
|
@@ -5940,6 +6037,9 @@ msgstr ""
|
|
5940
6037
|
msgid "package_ids is not an array"
|
5941
6038
|
msgstr ""
|
5942
6039
|
|
6040
|
+
msgid "params 'show_all_for' and 'available_for' must be used independently"
|
6041
|
+
msgstr ""
|
6042
|
+
|
5943
6043
|
msgid "pattern for container image names"
|
5944
6044
|
msgstr ""
|
5945
6045
|
|
@@ -5961,12 +6061,6 @@ msgstr ""
|
|
5961
6061
|
msgid "product numeric identifier"
|
5962
6062
|
msgstr ""
|
5963
6063
|
|
5964
|
-
msgid "puppet module ID"
|
5965
|
-
msgstr ""
|
5966
|
-
|
5967
|
-
msgid "puppet_module_ids is not an array"
|
5968
|
-
msgstr ""
|
5969
|
-
|
5970
6064
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
5971
6065
|
msgstr ""
|
5972
6066
|
|
@@ -6063,15 +6157,6 @@ msgstr ""
|
|
6063
6157
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6064
6158
|
msgstr ""
|
6065
6159
|
|
6066
|
-
msgid "the id of the puppet module to associate"
|
6067
|
-
msgstr ""
|
6068
|
-
|
6069
|
-
msgid "the uuid of the puppet module to associate"
|
6070
|
-
msgstr ""
|
6071
|
-
|
6072
|
-
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6073
|
-
msgstr ""
|
6074
|
-
|
6075
6160
|
msgid "true if the latest version of the component's content view is desired"
|
6076
6161
|
msgstr ""
|
6077
6162
|
|
@@ -6114,9 +6199,6 @@ msgstr ""
|
|
6114
6199
|
msgid "url not defined."
|
6115
6200
|
msgstr ""
|
6116
6201
|
|
6117
|
-
msgid "uuid of the puppet module"
|
6118
|
-
msgstr ""
|
6119
|
-
|
6120
6202
|
msgid "waiting for Candlepin to finish the task"
|
6121
6203
|
msgstr ""
|
6122
6204
|
|
@@ -6126,6 +6208,15 @@ msgstr ""
|
|
6126
6208
|
msgid "waiting for Pulp to start the task"
|
6127
6209
|
msgstr ""
|
6128
6210
|
|
6211
|
+
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6212
|
+
msgstr ""
|
6213
|
+
|
6214
|
+
msgid "whitespace-separated list of releases to be synced from deb-archive"
|
6215
|
+
msgstr ""
|
6216
|
+
|
6217
|
+
msgid "whitespace-separated list of repo components to be synced from deb-archive"
|
6218
|
+
msgstr ""
|
6219
|
+
|
6129
6220
|
msgid "with"
|
6130
6221
|
msgstr ""
|
6131
6222
|
|