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/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
CHANGED
@@ -12,6 +12,10 @@ msgstr ""
|
|
12
12
|
msgid "-- select an interval --"
|
13
13
|
msgstr ""
|
14
14
|
|
15
|
+
#: app/assets/javascripts/bastion_katello/subscriptions/subscription-start-date.directive.js
|
16
|
+
msgid "(future)"
|
17
|
+
msgstr ""
|
18
|
+
|
15
19
|
#: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
|
16
20
|
msgid "(Not all Activation Keys editable )"
|
17
21
|
msgstr ""
|
@@ -24,10 +28,6 @@ msgstr ""
|
|
24
28
|
msgid "{{ 'Add Selected' | translate }}"
|
25
29
|
msgstr ""
|
26
30
|
|
27
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
|
28
|
-
msgid "{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules"
|
29
|
-
msgstr ""
|
30
|
-
|
31
31
|
#: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
|
32
32
|
msgid "{{ componentContentView.repositories.length || 0 }} Repositories"
|
33
33
|
msgstr ""
|
@@ -46,10 +46,6 @@ msgid ""
|
|
46
46
|
" Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted."
|
47
47
|
msgstr ""
|
48
48
|
|
49
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
|
50
|
-
msgid "{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules"
|
51
|
-
msgstr ""
|
52
|
-
|
53
49
|
#: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
|
54
50
|
msgid "{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories"
|
55
51
|
msgstr ""
|
@@ -118,10 +114,6 @@ msgstr ""
|
|
118
114
|
msgid "{{ product.name }}"
|
119
115
|
msgstr ""
|
120
116
|
|
121
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
122
|
-
msgid "{{ puppetModule.name }}"
|
123
|
-
msgstr ""
|
124
|
-
|
125
117
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
126
118
|
msgid "{{ repository.content_counts.ansible_collection || 0 }} Ansible Collections"
|
127
119
|
msgstr ""
|
@@ -180,10 +172,6 @@ msgstr ""
|
|
180
172
|
msgid "{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches"
|
181
173
|
msgstr ""
|
182
174
|
|
183
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
184
|
-
msgid "{{ repository.content_counts.puppet_module || 0 }} Puppet Modules"
|
185
|
-
msgstr ""
|
186
|
-
|
187
175
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
|
188
176
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
|
189
177
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
|
@@ -205,7 +193,6 @@ msgstr ""
|
|
205
193
|
#: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-repositories.html
|
206
194
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
|
207
195
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
208
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
209
196
|
msgid "{{ repository.last_sync_words }} ago"
|
210
197
|
msgstr ""
|
211
198
|
|
@@ -262,11 +249,11 @@ msgid "{{ version.package_count }} Packages"
|
|
262
249
|
msgstr ""
|
263
250
|
|
264
251
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
|
265
|
-
msgid "{{ version.
|
252
|
+
msgid "{{ version.srpm_count }} Source RPMs"
|
266
253
|
msgstr ""
|
267
254
|
|
268
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-
|
269
|
-
msgid "{{
|
255
|
+
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
|
256
|
+
msgid "{{contentView.errors['messages'][0]}}"
|
270
257
|
msgstr ""
|
271
258
|
|
272
259
|
#: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
|
@@ -415,9 +402,6 @@ msgstr ""
|
|
415
402
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
|
416
403
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
|
417
404
|
#: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
|
418
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
419
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
420
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
421
405
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
|
422
406
|
#: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
|
423
407
|
msgid "Actions"
|
@@ -508,10 +492,6 @@ msgstr ""
|
|
508
492
|
msgid "Add New Environment"
|
509
493
|
msgstr ""
|
510
494
|
|
511
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
512
|
-
msgid "Add New Module"
|
513
|
-
msgstr ""
|
514
|
-
|
515
495
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
|
516
496
|
msgid "Add New Yum Filter"
|
517
497
|
msgstr ""
|
@@ -725,8 +705,6 @@ msgid "An error occurred trying to auto-attach subscriptions. Please check your
|
|
725
705
|
msgstr ""
|
726
706
|
|
727
707
|
#: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
|
728
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js
|
729
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
730
708
|
msgid "An error occurred updating the Content View:"
|
731
709
|
msgstr ""
|
732
710
|
|
@@ -970,12 +948,6 @@ msgid_plural "Are you sure you want to remove {{ table.getSelected().length }} p
|
|
970
948
|
msgstr[0] ""
|
971
949
|
msgstr[1] ""
|
972
950
|
|
973
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
974
|
-
msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} Puppet Module?"
|
975
|
-
msgid_plural "Are you sure you want to remove the {{ table.numSelected }} Puppet Modules?"
|
976
|
-
msgstr[0] ""
|
977
|
-
msgstr[1] ""
|
978
|
-
|
979
951
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
980
952
|
msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} repository?"
|
981
953
|
msgid_plural "Are you sure you want to remove {{ table.getSelected().length }} repositories?"
|
@@ -1045,7 +1017,7 @@ msgid "Assign Release Version"
|
|
1045
1017
|
msgstr ""
|
1046
1018
|
|
1047
1019
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
1048
|
-
msgid "Assign System Purpose
|
1020
|
+
msgid "Assign System Purpose"
|
1049
1021
|
msgstr ""
|
1050
1022
|
|
1051
1023
|
#: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
|
@@ -1061,14 +1033,17 @@ msgstr ""
|
|
1061
1033
|
msgid "Attached"
|
1062
1034
|
msgstr ""
|
1063
1035
|
|
1064
|
-
#: app/assets/javascripts/bastion_katello/
|
1065
|
-
#: app/assets/javascripts/bastion_katello/
|
1066
|
-
|
1067
|
-
|
1036
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
1037
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1038
|
+
msgid "Auth Token"
|
1039
|
+
msgstr ""
|
1040
|
+
|
1041
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
1042
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1043
|
+
msgid "Auth URL"
|
1044
|
+
msgstr ""
|
1045
|
+
|
1068
1046
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ansible-collections.html
|
1069
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
1070
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
1071
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
1072
1047
|
msgid "Author"
|
1073
1048
|
msgstr ""
|
1074
1049
|
|
@@ -1101,10 +1076,6 @@ msgstr ""
|
|
1101
1076
|
msgid "Available Module Streams"
|
1102
1077
|
msgstr ""
|
1103
1078
|
|
1104
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
1105
|
-
msgid "Available Puppet Modules for Content View:"
|
1106
|
-
msgstr ""
|
1107
|
-
|
1108
1079
|
#: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
|
1109
1080
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html
|
1110
1081
|
msgid "Available Schema Versions"
|
@@ -1124,10 +1095,6 @@ msgstr ""
|
|
1124
1095
|
msgid "Backend Identifier"
|
1125
1096
|
msgstr ""
|
1126
1097
|
|
1127
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/download-policy.service.js
|
1128
|
-
msgid "Background (Deprecated)"
|
1129
|
-
msgstr ""
|
1130
|
-
|
1131
1098
|
#: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
|
1132
1099
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
|
1133
1100
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
|
@@ -1138,7 +1105,6 @@ msgstr ""
|
|
1138
1105
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
1139
1106
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1140
1107
|
#: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
|
1141
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
1142
1108
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
|
1143
1109
|
msgid "Basic Information"
|
1144
1110
|
msgstr ""
|
@@ -1334,18 +1300,6 @@ msgstr ""
|
|
1334
1300
|
msgid "Collection Name"
|
1335
1301
|
msgstr ""
|
1336
1302
|
|
1337
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1338
|
-
msgid "Comma separated list of components to sync from (leave clear to sync all). Example: main"
|
1339
|
-
msgstr ""
|
1340
|
-
|
1341
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1342
|
-
msgid "Comma separated list of processor architectures to filter the sync by. Example: amd64"
|
1343
|
-
msgstr ""
|
1344
|
-
|
1345
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
1346
|
-
msgid "Comma separated list of releases (suite or codename) to sync from. Default: stable"
|
1347
|
-
msgstr ""
|
1348
|
-
|
1349
1303
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html
|
1350
1304
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html
|
1351
1305
|
#: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-info.html
|
@@ -1530,10 +1484,6 @@ msgstr ""
|
|
1530
1484
|
msgid "Content Host Status"
|
1531
1485
|
msgstr ""
|
1532
1486
|
|
1533
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
1534
|
-
msgid "Content Host System Purpose"
|
1535
|
-
msgstr ""
|
1536
|
-
|
1537
1487
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
|
1538
1488
|
msgid "Content Host:"
|
1539
1489
|
msgstr ""
|
@@ -1618,7 +1568,6 @@ msgstr ""
|
|
1618
1568
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
|
1619
1569
|
#: app/assets/javascripts/bastion_katello/environments/views/environments.html
|
1620
1570
|
#: app/assets/javascripts/bastion_katello/files/details/views/file.html
|
1621
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
1622
1571
|
#: app/assets/javascripts/bastion_katello/environments/content.service.js
|
1623
1572
|
msgid "Content Views"
|
1624
1573
|
msgstr ""
|
@@ -1643,10 +1592,6 @@ msgstr ""
|
|
1643
1592
|
msgid "Content Views for File:"
|
1644
1593
|
msgstr ""
|
1645
1594
|
|
1646
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
1647
|
-
msgid "Content Views for Puppet Module:"
|
1648
|
-
msgstr ""
|
1649
|
-
|
1650
1595
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
|
1651
1596
|
msgid "Content Views that contain this Deb"
|
1652
1597
|
msgstr ""
|
@@ -1655,10 +1600,6 @@ msgstr ""
|
|
1655
1600
|
msgid "Content Views that contain this File"
|
1656
1601
|
msgstr ""
|
1657
1602
|
|
1658
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
1659
|
-
msgid "Content Views that contain this Puppet Module"
|
1660
|
-
msgstr ""
|
1661
|
-
|
1662
1603
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
|
1663
1604
|
#: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
|
1664
1605
|
msgid "Context"
|
@@ -1793,14 +1734,6 @@ msgstr ""
|
|
1793
1734
|
msgid "Current Subscriptions for Activation Key:"
|
1794
1735
|
msgstr ""
|
1795
1736
|
|
1796
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
1797
|
-
msgid "Currently %s"
|
1798
|
-
msgstr ""
|
1799
|
-
|
1800
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
1801
|
-
msgid "Currently Selected Puppet Modules"
|
1802
|
-
msgstr ""
|
1803
|
-
|
1804
1737
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js
|
1805
1738
|
#: app/assets/javascripts/bastion_katello/sync-plans/sync-plan-helper.service.js
|
1806
1739
|
msgid "custom cron"
|
@@ -1948,7 +1881,6 @@ msgstr ""
|
|
1948
1881
|
#: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
|
1949
1882
|
#: app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
|
1950
1883
|
#: app/assets/javascripts/bastion_katello/products/views/products.html
|
1951
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
1952
1884
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
|
1953
1885
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
|
1954
1886
|
#: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
|
@@ -1981,7 +1913,6 @@ msgstr ""
|
|
1981
1913
|
#: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch.html
|
1982
1914
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package.html
|
1983
1915
|
#: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
|
1984
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
1985
1916
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
|
1986
1917
|
#: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
|
1987
1918
|
msgid "Details"
|
@@ -2150,7 +2081,6 @@ msgstr ""
|
|
2150
2081
|
#: app/assets/javascripts/bastion_katello/files/details/views/file-content-views.html
|
2151
2082
|
#: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html
|
2152
2083
|
#: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
|
2153
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
2154
2084
|
msgid "Environment"
|
2155
2085
|
msgstr ""
|
2156
2086
|
|
@@ -2381,12 +2311,8 @@ msgstr ""
|
|
2381
2311
|
msgid "Filter:"
|
2382
2312
|
msgstr ""
|
2383
2313
|
|
2384
|
-
#: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
|
2385
2314
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
|
2386
2315
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
|
2387
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
|
2388
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
2389
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
2390
2316
|
msgid "Filter..."
|
2391
2317
|
msgstr ""
|
2392
2318
|
|
@@ -2414,22 +2340,13 @@ msgstr ""
|
|
2414
2340
|
msgid ""
|
2415
2341
|
"For On Demand synchronization, only the metadata is downloaded during sync and packages are fetched and stored on the filesystem when clients request them.\n"
|
2416
2342
|
" On Demand is not recommended for custom repositories unless the upstream repository maintains older versions of packages within the repository.\n"
|
2417
|
-
" For Background synchronization, a background task will download all packages after the initial sync (Deprecated).\n"
|
2418
2343
|
" The Immediate option will download all metadata and packages immediately during the sync."
|
2419
2344
|
msgstr ""
|
2420
2345
|
|
2421
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
2422
|
-
msgid "For remote actions via katello-agent:"
|
2423
|
-
msgstr ""
|
2424
|
-
|
2425
2346
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
|
2426
2347
|
msgid "Force Promote?"
|
2427
2348
|
msgstr ""
|
2428
2349
|
|
2429
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
|
2430
|
-
msgid "Force Puppet Environment"
|
2431
|
-
msgstr ""
|
2432
|
-
|
2433
2350
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
|
2434
2351
|
msgid "Global Default"
|
2435
2352
|
msgstr ""
|
@@ -2468,6 +2385,10 @@ msgstr ""
|
|
2468
2385
|
msgid "Group Remove"
|
2469
2386
|
msgstr ""
|
2470
2387
|
|
2388
|
+
#: app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
|
2389
|
+
msgid "Guests of"
|
2390
|
+
msgstr ""
|
2391
|
+
|
2471
2392
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
|
2472
2393
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
|
2473
2394
|
msgid "Helper"
|
@@ -2590,12 +2511,6 @@ msgstr ""
|
|
2590
2511
|
msgid "Id"
|
2591
2512
|
msgstr ""
|
2592
2513
|
|
2593
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
|
2594
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
|
2595
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
|
2596
|
-
msgid "If you are not using Remote Execution to manage content on this host, ensure that it has the katello-agent package installed."
|
2597
|
-
msgstr ""
|
2598
|
-
|
2599
2514
|
#: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
|
2600
2515
|
msgid "If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click"
|
2601
2516
|
msgstr ""
|
@@ -2679,10 +2594,6 @@ msgstr ""
|
|
2679
2594
|
msgid "Install"
|
2680
2595
|
msgstr ""
|
2681
2596
|
|
2682
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
2683
|
-
msgid "Install client package:"
|
2684
|
-
msgstr ""
|
2685
|
-
|
2686
2597
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
|
2687
2598
|
msgid "Install Selected"
|
2688
2599
|
msgstr ""
|
@@ -2777,7 +2688,6 @@ msgid "Katello Tracer"
|
|
2777
2688
|
msgstr ""
|
2778
2689
|
|
2779
2690
|
#: app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html
|
2780
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
2781
2691
|
msgid "Katello-agent is deprecated and will be removed in a future release."
|
2782
2692
|
msgstr ""
|
2783
2693
|
|
@@ -2819,7 +2729,6 @@ msgstr ""
|
|
2819
2729
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
|
2820
2730
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
2821
2731
|
#: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
|
2822
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
2823
2732
|
msgid "Last Sync"
|
2824
2733
|
msgstr ""
|
2825
2734
|
|
@@ -2832,7 +2741,6 @@ msgid "Last Updated On"
|
|
2832
2741
|
msgstr ""
|
2833
2742
|
|
2834
2743
|
#: app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js
|
2835
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
2836
2744
|
msgid "Latest (Currently %s)"
|
2837
2745
|
msgstr ""
|
2838
2746
|
|
@@ -2844,10 +2752,6 @@ msgstr ""
|
|
2844
2752
|
msgid "Latest Only"
|
2845
2753
|
msgstr ""
|
2846
2754
|
|
2847
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
2848
|
-
msgid "Learn more about these packages in the <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>"
|
2849
|
-
msgstr ""
|
2850
|
-
|
2851
2755
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
|
2852
2756
|
msgid "Less Than"
|
2853
2757
|
msgstr ""
|
@@ -2862,7 +2766,6 @@ msgstr ""
|
|
2862
2766
|
|
2863
2767
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
|
2864
2768
|
#: app/assets/javascripts/bastion_katello/files/details/views/file.html
|
2865
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
2866
2769
|
msgid "Library Repositories"
|
2867
2770
|
msgstr ""
|
2868
2771
|
|
@@ -2874,16 +2777,11 @@ msgstr ""
|
|
2874
2777
|
msgid "Library Repositories that contain this File."
|
2875
2778
|
msgstr ""
|
2876
2779
|
|
2877
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
2878
|
-
msgid "Library Repositories that contain this Puppet Module."
|
2879
|
-
msgstr ""
|
2880
|
-
|
2881
2780
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js
|
2882
2781
|
msgid "Library Synced Content"
|
2883
2782
|
msgstr ""
|
2884
2783
|
|
2885
2784
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
|
2886
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
2887
2785
|
msgid "License"
|
2888
2786
|
msgstr ""
|
2889
2787
|
|
@@ -3029,14 +2927,6 @@ msgstr ""
|
|
3029
2927
|
msgid "Manage Packages for Repository:"
|
3030
2928
|
msgstr ""
|
3031
2929
|
|
3032
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
3033
|
-
msgid "Manage Puppet Modules for {{ repository.name }}"
|
3034
|
-
msgstr ""
|
3035
|
-
|
3036
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
3037
|
-
msgid "Manage Puppet Modules for Repository:"
|
3038
|
-
msgstr ""
|
3039
|
-
|
3040
2930
|
#: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
|
3041
2931
|
msgid "Manage Repository Sets"
|
3042
2932
|
msgstr ""
|
@@ -3092,10 +2982,6 @@ msgstr ""
|
|
3092
2982
|
msgid "Modular"
|
3093
2983
|
msgstr ""
|
3094
2984
|
|
3095
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
3096
|
-
msgid "Module %s removed from Content View."
|
3097
|
-
msgstr ""
|
3098
|
-
|
3099
2985
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
|
3100
2986
|
msgid "Module Stream"
|
3101
2987
|
msgstr ""
|
@@ -3160,7 +3046,6 @@ msgstr ""
|
|
3160
3046
|
#: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-repositories.html
|
3161
3047
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
|
3162
3048
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
3163
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
3164
3049
|
#: app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
|
3165
3050
|
msgid "N/A"
|
3166
3051
|
msgstr ""
|
@@ -3193,8 +3078,6 @@ msgstr ""
|
|
3193
3078
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
|
3194
3079
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
|
3195
3080
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
|
3196
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
3197
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
3198
3081
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
|
3199
3082
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
|
3200
3083
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
|
@@ -3209,7 +3092,6 @@ msgstr ""
|
|
3209
3092
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html
|
3210
3093
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
|
3211
3094
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
|
3212
|
-
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html
|
3213
3095
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
|
3214
3096
|
#: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
|
3215
3097
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
|
@@ -3222,7 +3104,6 @@ msgstr ""
|
|
3222
3104
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
|
3223
3105
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html
|
3224
3106
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
|
3225
|
-
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html
|
3226
3107
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
|
3227
3108
|
#: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
|
3228
3109
|
#: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
|
@@ -3246,16 +3127,12 @@ msgstr ""
|
|
3246
3127
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
|
3247
3128
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-package-groups.html
|
3248
3129
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
|
3249
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
3250
3130
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
3251
3131
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
3252
3132
|
#: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
|
3253
3133
|
#: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
|
3254
3134
|
#: app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
|
3255
3135
|
#: app/assets/javascripts/bastion_katello/products/views/products.html
|
3256
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
3257
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
3258
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
3259
3136
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
|
3260
3137
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
|
3261
3138
|
#: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
|
@@ -3410,10 +3287,6 @@ msgstr ""
|
|
3410
3287
|
msgid "No Content Views contain this File"
|
3411
3288
|
msgstr ""
|
3412
3289
|
|
3413
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
3414
|
-
msgid "No Content Views contain this Puppet Module"
|
3415
|
-
msgstr ""
|
3416
|
-
|
3417
3290
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
|
3418
3291
|
msgid "No content views exist for {{selected.environment.name}}"
|
3419
3292
|
msgstr ""
|
@@ -3470,10 +3343,6 @@ msgstr ""
|
|
3470
3343
|
msgid "No products are have been added to this Sync Plan."
|
3471
3344
|
msgstr ""
|
3472
3345
|
|
3473
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
3474
|
-
msgid "No puppet modules found"
|
3475
|
-
msgstr ""
|
3476
|
-
|
3477
3346
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
|
3478
3347
|
msgid "No releases exist in the Library."
|
3479
3348
|
msgstr ""
|
@@ -3498,10 +3367,6 @@ msgstr ""
|
|
3498
3367
|
msgid "No Repositories contain this Package."
|
3499
3368
|
msgstr ""
|
3500
3369
|
|
3501
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
3502
|
-
msgid "No Repositories contain this Puppet Module"
|
3503
|
-
msgstr ""
|
3504
|
-
|
3505
3370
|
#: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
|
3506
3371
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
|
3507
3372
|
msgid "No repository sets provided through subscriptions."
|
@@ -3525,10 +3390,6 @@ msgstr ""
|
|
3525
3390
|
msgid "No tasks exist for this resource."
|
3526
3391
|
msgstr ""
|
3527
3392
|
|
3528
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
3529
|
-
msgid "No versions found for {{ $stateParams.moduleName }}"
|
3530
|
-
msgstr ""
|
3531
|
-
|
3532
3393
|
#: app/assets/javascripts/bastion_katello/products/views/products.html
|
3533
3394
|
msgid "None"
|
3534
3395
|
msgstr ""
|
@@ -3559,7 +3420,6 @@ msgstr ""
|
|
3559
3420
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
|
3560
3421
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
3561
3422
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
|
3562
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
3563
3423
|
msgid "Not Synced"
|
3564
3424
|
msgstr ""
|
3565
3425
|
|
@@ -3851,10 +3711,23 @@ msgstr ""
|
|
3851
3711
|
msgid "Perform"
|
3852
3712
|
msgstr ""
|
3853
3713
|
|
3714
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
|
3715
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
|
3716
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
|
3717
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
|
3718
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
|
3719
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
|
3720
|
+
msgid "Performing host package actions is disabled because Katello is not configured for Remote Execution or Katello Agent."
|
3721
|
+
msgstr ""
|
3722
|
+
|
3854
3723
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
|
3855
3724
|
msgid "Performs a complete sync, verifying the checksum of all packages afterwards. Any missing or corrupt package will be re-downloaded. This option will take the longest amount of time. Choose this option if:"
|
3856
3725
|
msgstr ""
|
3857
3726
|
|
3727
|
+
#: app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
|
3728
|
+
msgid "Physical"
|
3729
|
+
msgstr ""
|
3730
|
+
|
3858
3731
|
#: app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js
|
3859
3732
|
msgid "Please enter cron below"
|
3860
3733
|
msgstr ""
|
@@ -3923,7 +3796,6 @@ msgstr ""
|
|
3923
3796
|
#: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-repositories.html
|
3924
3797
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
|
3925
3798
|
#: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
|
3926
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
3927
3799
|
msgid "Product"
|
3928
3800
|
msgstr ""
|
3929
3801
|
|
@@ -3995,10 +3867,6 @@ msgstr ""
|
|
3995
3867
|
msgid "Products not covered"
|
3996
3868
|
msgstr ""
|
3997
3869
|
|
3998
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
3999
|
-
msgid "Project Page"
|
4000
|
-
msgstr ""
|
4001
|
-
|
4002
3870
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
|
4003
3871
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
|
4004
3872
|
msgid "Promote"
|
@@ -4096,37 +3964,6 @@ msgstr ""
|
|
4096
3964
|
msgid "Puppet Environment"
|
4097
3965
|
msgstr ""
|
4098
3966
|
|
4099
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js
|
4100
|
-
msgid "Puppet module added to Content View"
|
4101
|
-
msgstr ""
|
4102
|
-
|
4103
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
4104
|
-
msgid ""
|
4105
|
-
"Puppet module metadata generation has been initiated in the background.\n"
|
4106
|
-
" Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
|
4107
|
-
msgstr ""
|
4108
|
-
|
4109
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
4110
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
4111
|
-
msgid "Puppet Module:"
|
4112
|
-
msgstr ""
|
4113
|
-
|
4114
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
|
4115
|
-
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
|
4116
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
4117
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
4118
|
-
#: app/assets/javascripts/bastion_katello/environments/content.service.js
|
4119
|
-
msgid "Puppet Modules"
|
4120
|
-
msgstr ""
|
4121
|
-
|
4122
|
-
#: app/assets/javascripts/bastion_katello/environments/views/environments.html
|
4123
|
-
msgid "Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>"
|
4124
|
-
msgstr ""
|
4125
|
-
|
4126
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
4127
|
-
msgid "Puppet Modules for Content View:"
|
4128
|
-
msgstr ""
|
4129
|
-
|
4130
3967
|
#: app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
|
4131
3968
|
msgid "Quantity"
|
4132
3969
|
msgstr ""
|
@@ -4185,10 +4022,6 @@ msgstr ""
|
|
4185
4022
|
msgid "Register Content Host"
|
4186
4023
|
msgstr ""
|
4187
4024
|
|
4188
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
|
4189
|
-
msgid "Register using subscription-manager:"
|
4190
|
-
msgstr ""
|
4191
|
-
|
4192
4025
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
|
4193
4026
|
#: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
|
4194
4027
|
msgid "Registered"
|
@@ -4320,10 +4153,6 @@ msgstr ""
|
|
4320
4153
|
msgid "Remove Host Collection \"{{ hostCollection.name }}\"?"
|
4321
4154
|
msgstr ""
|
4322
4155
|
|
4323
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
4324
|
-
msgid "Remove Module"
|
4325
|
-
msgstr ""
|
4326
|
-
|
4327
4156
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
|
4328
4157
|
msgid "Remove Module Stream"
|
4329
4158
|
msgstr ""
|
@@ -4358,16 +4187,6 @@ msgid_plural "Remove {{ table.getSelected().length }} products?"
|
|
4358
4187
|
msgstr[0] ""
|
4359
4188
|
msgstr[1] ""
|
4360
4189
|
|
4361
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
4362
|
-
msgid "Remove Puppet Module?"
|
4363
|
-
msgid_plural "Remove {{ table.numSelected }} Puppet Modules?"
|
4364
|
-
msgstr[0] ""
|
4365
|
-
msgstr[1] ""
|
4366
|
-
|
4367
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
4368
|
-
msgid "Remove Puppet Modules"
|
4369
|
-
msgstr ""
|
4370
|
-
|
4371
4190
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
|
4372
4191
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
|
4373
4192
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
|
@@ -4458,7 +4277,6 @@ msgstr ""
|
|
4458
4277
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
|
4459
4278
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
|
4460
4279
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
|
4461
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
4462
4280
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
|
4463
4281
|
#: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
|
4464
4282
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
|
@@ -4519,10 +4337,6 @@ msgstr ""
|
|
4519
4337
|
msgid "Repositories for Product:"
|
4520
4338
|
msgstr ""
|
4521
4339
|
|
4522
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
4523
|
-
msgid "Repositories for Puppet Module:"
|
4524
|
-
msgstr ""
|
4525
|
-
|
4526
4340
|
#: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
|
4527
4341
|
msgid "Repositories to Create"
|
4528
4342
|
msgstr ""
|
@@ -4769,22 +4583,10 @@ msgstr ""
|
|
4769
4583
|
msgid "Select a Content Source:"
|
4770
4584
|
msgstr ""
|
4771
4585
|
|
4772
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
4773
|
-
msgid "Select A New Puppet Module To Add"
|
4774
|
-
msgstr ""
|
4775
|
-
|
4776
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
4777
|
-
msgid "Select a Version"
|
4778
|
-
msgstr ""
|
4779
|
-
|
4780
4586
|
#: app/assets/javascripts/bastion_katello/common/views/select-action-dropdown.html
|
4781
4587
|
msgid "Select Action"
|
4782
4588
|
msgstr ""
|
4783
4589
|
|
4784
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
4785
|
-
msgid "Select an Available Version of {{ $stateParams.moduleName }}"
|
4786
|
-
msgstr ""
|
4787
|
-
|
4788
4590
|
#: app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html
|
4789
4591
|
msgid "Select an Organization"
|
4790
4592
|
msgstr ""
|
@@ -4802,20 +4604,12 @@ msgstr ""
|
|
4802
4604
|
msgid "Select Environment"
|
4803
4605
|
msgstr ""
|
4804
4606
|
|
4805
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
4806
|
-
msgid "Select new version"
|
4807
|
-
msgstr ""
|
4808
|
-
|
4809
4607
|
#: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
|
4810
4608
|
msgid "Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:"
|
4811
4609
|
msgstr ""
|
4812
4610
|
|
4813
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
4814
|
-
msgid "Select Version"
|
4815
|
-
msgstr ""
|
4816
|
-
|
4817
4611
|
#: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html
|
4818
|
-
msgid "Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\"
|
4612
|
+
msgid "Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" download policy to be synced."
|
4819
4613
|
msgstr ""
|
4820
4614
|
|
4821
4615
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
@@ -4845,17 +4639,13 @@ msgid "Service Level (SLA)"
|
|
4845
4639
|
msgstr ""
|
4846
4640
|
|
4847
4641
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
4848
|
-
msgid "Service Level:"
|
4642
|
+
msgid "Service Level (SLA):"
|
4849
4643
|
msgstr ""
|
4850
4644
|
|
4851
4645
|
#: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
|
4852
4646
|
msgid "Set Release Version"
|
4853
4647
|
msgstr ""
|
4854
4648
|
|
4855
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
4856
|
-
msgid "Set System Purpose values on {{ hostCount }} selected content hosts?"
|
4857
|
-
msgstr ""
|
4858
|
-
|
4859
4649
|
#: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
|
4860
4650
|
msgid "Severity"
|
4861
4651
|
msgstr ""
|
@@ -4926,10 +4716,6 @@ msgstr ""
|
|
4926
4716
|
msgid "Something went wrong when saving the resource."
|
4927
4717
|
msgstr ""
|
4928
4718
|
|
4929
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
4930
|
-
msgid "Source"
|
4931
|
-
msgstr ""
|
4932
|
-
|
4933
4719
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
|
4934
4720
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
|
4935
4721
|
msgid "Source RPM"
|
@@ -5138,11 +4924,8 @@ msgid "Successfully uploaded content:"
|
|
5138
4924
|
msgstr ""
|
5139
4925
|
|
5140
4926
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
|
5141
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
5142
4927
|
#: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
|
5143
4928
|
#: app/assets/javascripts/bastion_katello/packages/views/packages.html
|
5144
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
5145
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
5146
4929
|
msgid "Summary"
|
5147
4930
|
msgstr ""
|
5148
4931
|
|
@@ -5284,6 +5067,10 @@ msgstr ""
|
|
5284
5067
|
msgid "Tasks"
|
5285
5068
|
msgstr ""
|
5286
5069
|
|
5070
|
+
#: app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
|
5071
|
+
msgid "Temporary"
|
5072
|
+
msgstr ""
|
5073
|
+
|
5287
5074
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
|
5288
5075
|
msgid ""
|
5289
5076
|
"The <i>Registry Name Pattern</i> overrides the default name by which container images may be pulled from the server. (By default this name is a combination of Organization, Lifecycle Environment, Content View, Product, and Repository labels.)\n"
|
@@ -5379,6 +5166,14 @@ msgstr ""
|
|
5379
5166
|
msgid "The time the sync should happen in your current time zone."
|
5380
5167
|
msgstr ""
|
5381
5168
|
|
5169
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
5170
|
+
msgid "The token key to use for authentication."
|
5171
|
+
msgstr ""
|
5172
|
+
|
5173
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
5174
|
+
msgid "The URL to receive a session token from, e.g. used with Automation Hub."
|
5175
|
+
msgstr ""
|
5176
|
+
|
5382
5177
|
#: app/assets/javascripts/bastion_katello/errata/views/errata.html
|
5383
5178
|
msgid "There are {{ errataCount }} total Errata in this organization but none match the above filters."
|
5384
5179
|
msgstr ""
|
@@ -5483,6 +5278,10 @@ msgstr ""
|
|
5483
5278
|
msgid "There is currently no history associated with this Content View."
|
5484
5279
|
msgstr ""
|
5485
5280
|
|
5281
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
|
5282
|
+
msgid "These instructions will be removed in a future release. NEW: To register a content host without following these manual steps, see <a href=\"https://{{ katelloHostname }}/hosts/register\">Register Host</a>"
|
5283
|
+
msgstr ""
|
5284
|
+
|
5486
5285
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
|
5487
5286
|
msgid ""
|
5488
5287
|
"This action will affect only those Content Hosts that require a change.\n"
|
@@ -5497,6 +5296,10 @@ msgstr ""
|
|
5497
5296
|
msgid "This activation key may be used during system registration. For example:"
|
5498
5297
|
msgstr ""
|
5499
5298
|
|
5299
|
+
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
5300
|
+
msgid "This change will be applied to <b>{{ hostCount }} systems.</b>"
|
5301
|
+
msgstr ""
|
5302
|
+
|
5500
5303
|
#: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
|
5501
5304
|
msgid "This Container Image Tag is not present in any Lifecycle Environments."
|
5502
5305
|
msgstr ""
|
@@ -5566,10 +5369,6 @@ msgstr ""
|
|
5566
5369
|
msgid "To register a content host to this server, follow these steps."
|
5567
5370
|
msgstr ""
|
5568
5371
|
|
5569
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
5570
|
-
msgid "To report package & errata information:"
|
5571
|
-
msgstr ""
|
5572
|
-
|
5573
5372
|
#: app/assets/javascripts/bastion_katello/common/views/select-action-dropdown.html
|
5574
5373
|
msgid "Toggle Dropdown"
|
5575
5374
|
msgstr ""
|
@@ -5583,10 +5382,6 @@ msgstr ""
|
|
5583
5382
|
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
|
5584
5383
|
msgstr ""
|
5585
5384
|
|
5586
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
5587
|
-
msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched. To optionally report tracer information:"
|
5588
|
-
msgstr ""
|
5589
|
-
|
5590
5385
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
|
5591
5386
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
|
5592
5387
|
msgid "Traces"
|
@@ -5623,10 +5418,6 @@ msgstr ""
|
|
5623
5418
|
msgid "Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}"
|
5624
5419
|
msgstr ""
|
5625
5420
|
|
5626
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
5627
|
-
msgid "Unable to determine version"
|
5628
|
-
msgstr ""
|
5629
|
-
|
5630
5421
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
|
5631
5422
|
msgid "Unauthenticated Pull"
|
5632
5423
|
msgstr ""
|
@@ -5744,10 +5535,6 @@ msgstr ""
|
|
5744
5535
|
msgid "Upload Package"
|
5745
5536
|
msgstr ""
|
5746
5537
|
|
5747
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
5748
|
-
msgid "Upload Puppet Module"
|
5749
|
-
msgstr ""
|
5750
|
-
|
5751
5538
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
|
5752
5539
|
msgid "Upload Requirements"
|
5753
5540
|
msgstr ""
|
@@ -5850,14 +5637,6 @@ msgstr ""
|
|
5850
5637
|
msgid "Username of the upstream repository user for authentication. Leave empty if repository does not require authentication."
|
5851
5638
|
msgstr ""
|
5852
5639
|
|
5853
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
|
5854
|
-
msgid "Using a username and password:"
|
5855
|
-
msgstr ""
|
5856
|
-
|
5857
|
-
#: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
|
5858
|
-
msgid "Using an Activation Key:"
|
5859
|
-
msgstr ""
|
5860
|
-
|
5861
5640
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
|
5862
5641
|
msgid "Validate Content Sync"
|
5863
5642
|
msgstr ""
|
@@ -5884,8 +5663,6 @@ msgstr ""
|
|
5884
5663
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
|
5885
5664
|
#: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
|
5886
5665
|
#: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
|
5887
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
5888
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
5889
5666
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
|
5890
5667
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
|
5891
5668
|
#: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
|
@@ -5898,7 +5675,6 @@ msgstr ""
|
|
5898
5675
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
|
5899
5676
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html
|
5900
5677
|
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
|
5901
|
-
#: app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html
|
5902
5678
|
#: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
|
5903
5679
|
#: app/assets/javascripts/bastion_katello/files/details/views/file-content-views.html
|
5904
5680
|
#: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
|
@@ -5908,10 +5684,6 @@ msgstr ""
|
|
5908
5684
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ansible-collections.html
|
5909
5685
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
|
5910
5686
|
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ostree-branches.html
|
5911
|
-
#: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
5912
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
5913
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
5914
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
5915
5687
|
msgid "Version"
|
5916
5688
|
msgstr ""
|
5917
5689
|
|
@@ -5939,10 +5711,6 @@ msgstr ""
|
|
5939
5711
|
msgid "Versions for Content View:"
|
5940
5712
|
msgstr ""
|
5941
5713
|
|
5942
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
5943
|
-
msgid "Versions for Puppet Module:"
|
5944
|
-
msgstr ""
|
5945
|
-
|
5946
5714
|
#: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
|
5947
5715
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
|
5948
5716
|
#: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
|
@@ -5984,6 +5752,10 @@ msgstr ""
|
|
5984
5752
|
msgid "View job invocations."
|
5985
5753
|
msgstr ""
|
5986
5754
|
|
5755
|
+
#: app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
|
5756
|
+
msgid "Virtual"
|
5757
|
+
msgstr ""
|
5758
|
+
|
5987
5759
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
|
5988
5760
|
msgid "Virtual Guest"
|
5989
5761
|
msgstr ""
|
@@ -6013,8 +5785,16 @@ msgstr ""
|
|
6013
5785
|
msgid "When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository."
|
6014
5786
|
msgstr ""
|
6015
5787
|
|
6016
|
-
#: app/assets/javascripts/bastion_katello/
|
6017
|
-
msgid "
|
5788
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
5789
|
+
msgid "Whitespace-separated list of components to sync from (leave clear to sync all). Example: main"
|
5790
|
+
msgstr ""
|
5791
|
+
|
5792
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
5793
|
+
msgid "Whitespace-separated list of processor architectures to filter the sync by. Example: amd64"
|
5794
|
+
msgstr ""
|
5795
|
+
|
5796
|
+
#: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
|
5797
|
+
msgid "Whitespace-separated list of releases (suite or codename) to sync from. Default: stable"
|
6018
5798
|
msgstr ""
|
6019
5799
|
|
6020
5800
|
#: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
|
@@ -6146,14 +5926,6 @@ msgstr ""
|
|
6146
5926
|
msgid "You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>."
|
6147
5927
|
msgstr ""
|
6148
5928
|
|
6149
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
6150
|
-
msgid "You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right."
|
6151
|
-
msgstr ""
|
6152
|
-
|
6153
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
6154
|
-
msgid "You currently don't have any Puppet Modules."
|
6155
|
-
msgstr ""
|
6156
|
-
|
6157
5929
|
#: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
|
6158
5930
|
msgid "You currently don't have any Repositories associated with this Content Credential."
|
6159
5931
|
msgstr ""
|
@@ -6235,7 +6007,6 @@ msgstr ""
|
|
6235
6007
|
|
6236
6008
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
|
6237
6009
|
#: app/assets/javascripts/bastion_katello/files/details/views/file-content-views.html
|
6238
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
6239
6010
|
msgid "Your search returned zero Content Views"
|
6240
6011
|
msgstr ""
|
6241
6012
|
|
@@ -6298,15 +6069,8 @@ msgstr ""
|
|
6298
6069
|
msgid "Your search returned zero Products."
|
6299
6070
|
msgstr ""
|
6300
6071
|
|
6301
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
6302
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
6303
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
6304
|
-
msgid "Your search returned zero Puppet Modules."
|
6305
|
-
msgstr ""
|
6306
|
-
|
6307
6072
|
#: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
|
6308
6073
|
#: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
|
6309
|
-
#: app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
6310
6074
|
msgid "Your search returned zero Repositories"
|
6311
6075
|
msgstr ""
|
6312
6076
|
|
@@ -6348,10 +6112,6 @@ msgstr ""
|
|
6348
6112
|
msgid "Your search returned zero Traces."
|
6349
6113
|
msgstr ""
|
6350
6114
|
|
6351
|
-
#: app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
6352
|
-
msgid "Your search returned zero versions for {{ $stateParams.moduleName }}"
|
6353
|
-
msgstr ""
|
6354
|
-
|
6355
6115
|
#: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
|
6356
6116
|
msgid "Yum Content"
|
6357
6117
|
msgstr ""
|