katello 4.5.1 → 4.8.0.rc2

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.

Files changed (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/de/katello.po CHANGED
@@ -4,32 +4,33 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
- # mbacovsky <martin.bacovsky@gmail.com>, 2017
8
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2017
9
7
  # Hannes Schaller <admin@cyberkov.at>, 2017
10
8
  # stbenjam <stephen@redhat.com>, 2017
11
9
  # Christina Gurski <Gurski_christina@yahoo.de>, 2017
12
- # Markus Bucher <bucher@atix.de>, 2019
13
10
  # 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2020
14
11
  # Bernhard Suttner <bernhard.suttner@atix.de>, 2021
15
12
  # abf90805572190d649c59f7a021d76cb, 2021
16
13
  # Martin Zimmermann <martin.zimmermann@gmx.com>, 2021
17
14
  # Michael Moll, 2022
18
- # Lukáš Zapletal, 2022
19
- # Wiederoder <stefanwiederoder@googlemail.com>, 2022
20
- # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2022
21
- # Ettore Atalan <atalanttore@googlemail.com>, 2022
22
- # Patrick Dolinic, 2022
23
- # Crited <Alexander.Stoll@netways.de>, 2022
24
15
  # simon11 <transifex@stieger.co>, 2022
16
+ # mbacovsky <martin.bacovsky@gmail.com>, 2022
17
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
18
+ # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2022
19
+ # Wiederoder <stefanwiederoder@googlemail.com>, 2022
20
+ # Lukas Kallies <github.com@luke-web.de>, 2022
21
+ # Lukáš Zapletal, 2022
22
+ # Markus Bucher <bucher@atix.de>, 2022
25
23
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
24
+ # Crited <Alexander.Stoll@netways.de>, 2022
25
+ # Patrick Dolinic, 2022
26
+ # Ettore Atalan <atalanttore@googlemail.com>, 2023
26
27
  #
27
28
  msgid ""
28
29
  msgstr ""
29
- "Project-Id-Version: katello 2.5.0\n"
30
+ "Project-Id-Version: katello 2.4.0-RC1\n"
30
31
  "Report-Msgid-Bugs-To: \n"
31
32
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
32
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
33
+ "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2023\n"
33
34
  "Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
34
35
  "MIME-Version: 1.0\n"
35
36
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -56,12 +57,21 @@ msgstr "%{package_count} Paket(e)"
56
57
  msgid " Content view updated"
57
58
  msgstr "Inhaltsansicht aktualisiert"
58
59
 
60
+ msgid " DEBs"
61
+ msgstr " DEBs"
62
+
59
63
  msgid " Either select the latest content view or the content view version. Cannot set both."
60
64
  msgstr "Wähle entweder den aktuellste Kontent-View oder die Kontent-View Version. Beides gleichzeitig kann nicht gesetzt werden."
61
65
 
62
66
  msgid " RPMs"
63
67
  msgstr "RPMs"
64
68
 
69
+ msgid " The base path can be a web address or a filesystem location."
70
+ msgstr ""
71
+
72
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
73
+ msgstr ""
74
+
65
75
  msgid " View task details "
66
76
  msgstr "Aufgabendetails anzeigen"
67
77
 
@@ -72,15 +82,15 @@ msgid " ago."
72
82
  msgstr ""
73
83
 
74
84
  msgid " and"
75
- msgstr ""
85
+ msgstr " und"
76
86
 
77
87
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
78
88
  msgstr ""
79
89
 
80
- msgid " content view is used in listed component content views. For more information, "
90
+ msgid " content view is used in listed composite content views."
81
91
  msgstr ""
82
92
 
83
- msgid " content view is used in listed composite content views."
93
+ msgid " content view is used in listed content views. For more information, "
84
94
  msgstr ""
85
95
 
86
96
  msgid " environment cannot be set to an environment already on its path"
@@ -92,9 +102,18 @@ msgstr ""
92
102
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
93
103
  msgstr ""
94
104
 
105
+ msgid " or any step on the left."
106
+ msgstr ""
107
+
108
+ msgid " to manage and promote content views, or select a different environment."
109
+ msgstr ""
110
+
95
111
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
96
112
  msgstr ""
97
113
 
114
+ msgid "${option}"
115
+ msgstr "${option}"
116
+
98
117
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
99
118
  msgstr ""
100
119
 
@@ -121,8 +140,8 @@ msgstr "%s Errata"
121
140
 
122
141
  msgid "%s Host"
123
142
  msgid_plural "%s Hosts"
124
- msgstr[0] ""
125
- msgstr[1] ""
143
+ msgstr[0] "%s Host"
144
+ msgstr[1] "%s Hosts"
126
145
 
127
146
  msgid "%s Used"
128
147
  msgstr "%s verwendet"
@@ -130,6 +149,9 @@ msgstr "%s verwendet"
130
149
  msgid "%s ago"
131
150
  msgstr "vor %s"
132
151
 
152
+ msgid "%s guests"
153
+ msgstr ""
154
+
133
155
  msgid "%s has already been deleted"
134
156
  msgstr "%swurde bereits gelöscht"
135
157
 
@@ -337,9 +359,30 @@ msgstr "%{used} von %{total}"
337
359
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
338
360
  msgstr "%{view_label} konnte nicht zu %{environment_label} hochgestuft werden, da sich die Inhaltsansicht und die Umgebung nicht in derselben Organisation befinden!"
339
361
 
362
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
363
+ msgstr ""
364
+
365
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
366
+ msgstr ""
367
+
368
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
369
+ msgstr ""
370
+
371
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
372
+ msgstr ""
373
+
374
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
375
+ msgstr ""
376
+
377
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
378
+ msgstr ""
379
+
340
380
  msgid "(Orphaned)"
341
381
  msgstr "(Verwaist)"
342
382
 
383
+ msgid "(unset)"
384
+ msgstr ""
385
+
343
386
  msgid ", and"
344
387
  msgstr ", und"
345
388
 
@@ -367,8 +410,8 @@ msgstr "Ein Pool und sein Abonnement können nicht verschiedenen Organisationen
367
410
  msgid "A backend service [ %s ] is unreachable"
368
411
  msgstr "Ein Back-End-Dienst [ %s ] kann nicht erreicht werden"
369
412
 
370
- msgid "A content view can be added by using the \"Create content view\" button above."
371
- msgstr "Eine Inhaltsansicht kann über die Schaltfläche \"Inhaltsansicht erstellen\" oben hinzugefügt werden."
413
+ msgid "A content view can be added by using the \"Create content view\" button below."
414
+ msgstr ""
372
415
 
373
416
  msgid "A content_type must be provided."
374
417
  msgstr "Ein content_type muss angegeben werden."
@@ -388,6 +431,12 @@ msgstr "Eine neue Version von"
388
431
  msgid "A post-promotion summary of hosts with installable errata"
389
432
  msgstr "Eine Zusammenfassung (nach Übertragung) der Hosts mit installierbaren Errata"
390
433
 
434
+ msgid "A remote execution job is in progress"
435
+ msgstr ""
436
+
437
+ msgid "A remote execution job is in progress."
438
+ msgstr ""
439
+
391
440
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
392
441
  msgstr "Ein Servicelevel für automatische Neusubskription, z. B. SELBSTHILFE"
393
442
 
@@ -410,7 +459,7 @@ msgid "Abstract"
410
459
  msgstr ""
411
460
 
412
461
  msgid "Abstract async task"
413
- msgstr "Übersicht asynchrone Task"
462
+ msgstr "Übersicht asynchrone Aufgabe"
414
463
 
415
464
  msgid "Accept action timeout"
416
465
  msgstr "Aktionszeitüberschreitung akzeptieren"
@@ -440,7 +489,7 @@ msgid "Activation Keys"
440
489
  msgstr "Aktivierungsschlüssel"
441
490
 
442
491
  msgid "Activation key"
443
- msgstr ""
492
+ msgstr "Aktivierungsschlüssel"
444
493
 
445
494
  msgid "Activation key ID"
446
495
  msgstr "Aktivierungsschlüssel-ID"
@@ -475,6 +524,9 @@ msgstr "Hinzufügen"
475
524
  msgid "Add Bookmark"
476
525
  msgstr "Lesezeichen hinzufügen"
477
526
 
527
+ msgid "Add DEB rule"
528
+ msgstr ""
529
+
478
530
  msgid "Add RPM rule"
479
531
  msgstr ""
480
532
 
@@ -484,15 +536,15 @@ msgstr "Abonnements hinzufügen"
484
536
  msgid "Add a subscription to a host"
485
537
  msgstr "Subskription zu einem Host hinzufügen"
486
538
 
487
- msgid "Add component"
488
- msgstr "Komponente hinzufügen"
489
-
490
- msgid "Add component content views"
539
+ msgid "Add an alternate content source"
491
540
  msgstr ""
492
541
 
493
542
  msgid "Add components to the content view"
494
543
  msgstr "Füge Komponenten zum Kontent-View hinzu"
495
544
 
545
+ msgid "Add content view"
546
+ msgstr ""
547
+
496
548
  msgid "Add content views"
497
549
  msgstr ""
498
550
 
@@ -505,9 +557,6 @@ msgstr ""
505
557
  msgid "Add filter rule"
506
558
  msgstr ""
507
559
 
508
- msgid "Add filters using the 'Add filter' button above."
509
- msgstr "Fügen Sie Filter über die Schaltfläche \"Filter hinzufügen\" oben hinzu."
510
-
511
560
  msgid "Add host to collections"
512
561
  msgstr ""
513
562
 
@@ -539,7 +588,7 @@ msgid "Add rule"
539
588
  msgstr ""
540
589
 
541
590
  msgid "Add source"
542
- msgstr ""
591
+ msgstr "Quelle hinzufügen"
543
592
 
544
593
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
545
594
  msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription Management verwendet werden"
@@ -547,12 +596,18 @@ msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription
547
596
  msgid "Add subscriptions to one or more hosts"
548
597
  msgstr "Abonnements zu einem oder mehreren Hosts hinzufügen"
549
598
 
550
- msgid "Add to this filter using the 'Add RPM rule' button."
599
+ msgid "Add to a host collection"
600
+ msgstr ""
601
+
602
+ msgid "Add to this filter using the 'Add Deb rule' button."
551
603
  msgstr ""
552
604
 
553
605
  msgid "Add to this filter using the 'Add filter rule' button."
554
606
  msgstr ""
555
607
 
608
+ msgid "Add-ons"
609
+ msgstr ""
610
+
556
611
  msgid "Added"
557
612
  msgstr "Hinzugefügt"
558
613
 
@@ -571,6 +626,9 @@ msgstr "Zusätzlicher Inhalt"
571
626
  msgid "Addons"
572
627
  msgstr "Addons"
573
628
 
629
+ msgid "Affected Repositories"
630
+ msgstr "Betroffene Repositorys"
631
+
574
632
  msgid "Affected repositories"
575
633
  msgstr ""
576
634
 
@@ -601,6 +659,9 @@ msgstr ""
601
659
  msgid "All subpaths must have a slash at the end and none at the front"
602
660
  msgstr ""
603
661
 
662
+ msgid "All up to date"
663
+ msgstr ""
664
+
604
665
  msgid "All versions"
605
666
  msgstr ""
606
667
 
@@ -610,6 +671,9 @@ msgstr ""
610
671
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
611
672
  msgstr ""
612
673
 
674
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
675
+ msgstr ""
676
+
613
677
  msgid "Allow deleting repositories in published content views"
614
678
  msgstr ""
615
679
 
@@ -619,6 +683,9 @@ msgstr ""
619
683
  msgid "Allow hosts to re-register themselves only when they are in build mode"
620
684
  msgstr "Erlauben Sie Hosts, sich nur neu zu registrieren, wenn sie sich im Build-Modus befinden"
621
685
 
686
+ msgid "Allow multiple content views"
687
+ msgstr ""
688
+
622
689
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
623
690
  msgstr ""
624
691
 
@@ -628,6 +695,9 @@ msgstr ""
628
695
  msgid "Alter a host's host collections"
629
696
  msgstr ""
630
697
 
698
+ msgid "Alternate Content Source HTTP Proxy"
699
+ msgstr ""
700
+
631
701
  msgid "Alternate Content Sources"
632
702
  msgstr ""
633
703
 
@@ -640,7 +710,13 @@ msgstr ""
640
710
  msgid "Alternate content source deleted"
641
711
  msgstr ""
642
712
 
643
- msgid "Alternate content sources"
713
+ msgid "Alternate content source edited"
714
+ msgstr ""
715
+
716
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
717
+ msgstr ""
718
+
719
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
644
720
  msgstr ""
645
721
 
646
722
  msgid "Always Use Latest (currently %{version})"
@@ -652,7 +728,7 @@ msgstr "Immer auf die neueste Version aktualisieren"
652
728
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
653
729
  msgstr "Anzahl der Worker im Pool, die die Ausführung hostbezogener Aufgaben ausführen. Wenn auf 0 gesetzt, wird stattdessen die Standardwarteschlange verwendet. Neustart des Dienstes dynflowd/foreman-tasks ist erforderlich."
654
730
 
655
- msgid "An alternate content source can be added by using the \"Add source\" button above."
731
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
656
732
  msgstr ""
657
733
 
658
734
  msgid "An environment is missing a prior"
@@ -679,9 +755,6 @@ msgstr "Eine weitere Komponente beinhaltet bereits die Inhaltsansicht mit ID %s"
679
755
  msgid "Ansible Collection"
680
756
  msgstr "Ansible-Kollektion"
681
757
 
682
- msgid "Ansible Collection Details"
683
- msgstr "Details zur Ansible-Sammlung"
684
-
685
758
  msgid "Ansible Collections"
686
759
  msgstr "Ansible-Kollektionen"
687
760
 
@@ -694,9 +767,15 @@ msgstr ""
694
767
  msgid "Applicability Batch Size"
695
768
  msgstr "Anwendbarkeit Chargengröße"
696
769
 
770
+ msgid "Applicable"
771
+ msgstr "Relevant"
772
+
697
773
  msgid "Applicable Content Hosts"
698
774
  msgstr "Anwendbare Inhalts-Hosts"
699
775
 
776
+ msgid "Applicable errata apply to at least one package installed on the host."
777
+ msgstr ""
778
+
700
779
  msgid "Application"
701
780
  msgstr "Anwendung"
702
781
 
@@ -730,6 +809,9 @@ msgstr "Architektur"
730
809
  msgid "Architecture of content in the repository"
731
810
  msgstr "Inhaltsarchitektur im Repository"
732
811
 
812
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
813
+ msgstr ""
814
+
733
815
  msgid "Architecture(s)"
734
816
  msgstr "Architektur(en)"
735
817
 
@@ -834,6 +916,9 @@ msgstr "Es wurde versucht, den Verbraucher %s vom Kerzenhalter zu zerstören, ab
834
916
  msgid "Auth URL requires Auth token be set."
835
917
  msgstr "Für die Auth-URL muss ein Auth-Token festgelegt werden."
836
918
 
919
+ msgid "Authentication type"
920
+ msgstr ""
921
+
837
922
  msgid "Author"
838
923
  msgstr "Autor"
839
924
 
@@ -855,6 +940,9 @@ msgstr "Automatische Suche"
855
940
  msgid "Autosearch delay"
856
941
  msgstr "Verzögerung bei der automatischen Suche"
857
942
 
943
+ msgid "Available"
944
+ msgstr "Verfügbar"
945
+
858
946
  msgid "Available Entitlements"
859
947
  msgstr "Verfügbare Entitlements"
860
948
 
@@ -864,9 +952,15 @@ msgstr "Verfügbare Repositorys"
864
952
  msgid "Available Schema Versions"
865
953
  msgstr "Verfügbare Schemaversionen"
866
954
 
955
+ msgid "Back"
956
+ msgstr "Zurück"
957
+
867
958
  msgid "Backend System Status"
868
959
  msgstr "Back-End-Systemstatus"
869
960
 
961
+ msgid "Base URL"
962
+ msgstr "Basis URL"
963
+
870
964
  msgid "Base URL for finding alternate content"
871
965
  msgstr ""
872
966
 
@@ -912,6 +1006,9 @@ msgstr "Diese Suche als Lesezeichen abspeichern"
912
1006
  msgid "Bookmarks marked as public are available to all users"
913
1007
  msgstr ""
914
1008
 
1009
+ msgid "Both"
1010
+ msgstr "Beide"
1011
+
915
1012
  msgid "Both major and minor parameters have to be used to override a CV version"
916
1013
  msgstr "Sowohl Major- als auch Minor-Parameter müssen verwendet werden, um eine CV-Version zu überschreiben"
917
1014
 
@@ -924,6 +1021,12 @@ msgstr "Bugfix"
924
1021
  msgid "Bugs"
925
1022
  msgstr ""
926
1023
 
1024
+ msgid "Bulk alternate content source delete has started."
1025
+ msgstr ""
1026
+
1027
+ msgid "Bulk alternate content source refresh has started."
1028
+ msgstr ""
1029
+
927
1030
  msgid "Bulk generate applicability for host %s"
928
1031
  msgstr ""
929
1032
 
@@ -1008,6 +1111,9 @@ msgstr "Abgebrochen"
1008
1111
  msgid "Cancelled."
1009
1112
  msgstr "Abgebrochen."
1010
1113
 
1114
+ msgid "Candlepin"
1115
+ msgstr ""
1116
+
1011
1117
  msgid "Candlepin Event"
1012
1118
  msgstr "Candlepin-Ereignis"
1013
1119
 
@@ -1020,6 +1126,9 @@ msgstr "Candlepin-Verbraucher %s wurde bereits entfernt"
1020
1126
  msgid "Candlepin is not running properly"
1021
1127
  msgstr "Candlepin läuft nicht richtig"
1022
1128
 
1129
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1130
+ msgstr ""
1131
+
1023
1132
  msgid "Cannot add %s repositories to a content view."
1024
1133
  msgstr "%s Repositorys können nicht zu einer Inhaltsansicht hinzugefügt werden."
1025
1134
 
@@ -1038,6 +1147,9 @@ msgstr "Verbundversionen können nicht einer anderen Verbundinhaltsansicht hinzu
1038
1147
  msgid "Cannot add default content view to composite content view"
1039
1148
  msgstr "Standardinhaltsansicht kann nicht zu Verbundinhaltsansicht hinzugefügt werden"
1040
1149
 
1150
+ msgid "Cannot add generated content view versions to composite content view"
1151
+ msgstr ""
1152
+
1041
1153
  msgid "Cannot add repositories to a composite content view"
1042
1154
  msgstr "Repositorys können nicht zu einer Verbundinhaltsansicht hinzugefügt werden"
1043
1155
 
@@ -1131,8 +1243,8 @@ msgstr "Attribut %{attr} kann für Inhaltstyp %{type} nicht festgelegt werden"
1131
1243
  msgid "Cannot set auto publish to a non-composite content view"
1132
1244
  msgstr "Automatische Veröffentlichung kann nicht auf eine nicht zusammengesetzte Inhaltsansicht eingestellt werden"
1133
1245
 
1134
- msgid "Cannot skip metadata check on non-yum repositories."
1135
- msgstr "Metadatenprüfung in Nicht-Yum-Repositorys kann nicht übersprungen werden."
1246
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1247
+ msgstr ""
1136
1248
 
1137
1249
  msgid "Cannot specify components for non-composite views"
1138
1250
  msgstr "Komponenten für Nicht-Verbundansichten können nicht angegeben werden"
@@ -1153,7 +1265,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1153
1265
  msgstr "Inhalte in nicht-yum/deb-Repositorys können nicht validiert werden."
1154
1266
 
1155
1267
  msgid "Capacity"
1156
- msgstr ""
1268
+ msgstr "Kapazität"
1157
1269
 
1158
1270
  msgid "Change Content Source"
1159
1271
  msgstr ""
@@ -1167,6 +1279,9 @@ msgstr ""
1167
1279
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1168
1280
  msgstr "Prüfen Sie, ob eine Verbindung zu Red Hat Subscription Management hergestellt werden kann."
1169
1281
 
1282
+ msgid "Check if the specified organization has Simple Content Access enabled"
1283
+ msgstr ""
1284
+
1170
1285
  msgid "Check if the specified organization is eligible for Simple Content Access"
1171
1286
  msgstr "Prüfen Sie, ob die angegebene Organisation für den einfachen Inhaltszugriff berechtigt ist"
1172
1287
 
@@ -1188,9 +1303,18 @@ msgstr "Prüfsumme des Repositorys, derzeit werden 'sha1' & 'sha256' unterstütz
1188
1303
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1189
1304
  msgstr "Der Prüfsummentyp kann nicht für Yum-Repositorys mit On-Demand-Download-Richtlinie festgelegt werden."
1190
1305
 
1306
+ msgid "Choose content credentials if required for this RHUI source."
1307
+ msgstr ""
1308
+
1191
1309
  msgid "Clear any previous registration and run subscription-manager with --force."
1192
1310
  msgstr "Löschen Sie alle vorherigen Registrierungen und führen Sie den Subscription-Manager mit --force aus."
1193
1311
 
1312
+ msgid "Clear filters"
1313
+ msgstr ""
1314
+
1315
+ msgid "Clear search"
1316
+ msgstr ""
1317
+
1194
1318
  msgid "Click here to go to the tasks page for the task."
1195
1319
  msgstr "Klicken Sie hier, um zur Aufgabenseite für die Aufgabe zu gelangen."
1196
1320
 
@@ -1212,6 +1336,9 @@ msgstr "Kombiniertes Profil-Update"
1212
1336
  msgid "Combined Profile Update for %s"
1213
1337
  msgstr "Kombiniertes Profil-Update für %s"
1214
1338
 
1339
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1340
+ msgstr ""
1341
+
1215
1342
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1216
1343
  msgstr ""
1217
1344
 
@@ -1221,16 +1348,16 @@ msgstr ""
1221
1348
  msgid "Comma-separated list of tags to sync for a container image repository"
1222
1349
  msgstr ""
1223
1350
 
1351
+ msgid "Compare"
1352
+ msgstr "Vergleichen"
1353
+
1224
1354
  msgid "Component"
1225
1355
  msgstr "Komponente"
1226
1356
 
1227
1357
  msgid "Component Content View"
1228
1358
  msgstr "Komponenteninhaltsansicht"
1229
1359
 
1230
- msgid "Component content view"
1231
- msgstr "Komponenteninhaltsansicht"
1232
-
1233
- msgid "Component content views"
1360
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1234
1361
  msgstr ""
1235
1362
 
1236
1363
  msgid "Components"
@@ -1263,8 +1390,8 @@ msgstr "Manifest löschen bestätigen"
1263
1390
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1264
1391
  msgstr "Erwägen Sie, das Registrierungsnamenmuster der Lebenszyklusumgebung in etwas Spezifischeres zu ändern."
1265
1392
 
1266
- msgid "Consisting of multiple component content views"
1267
- msgstr "Bestehend aus mehreren Komponenteninhaltsansichten"
1393
+ msgid "Consisting of multiple content views"
1394
+ msgstr ""
1268
1395
 
1269
1396
  msgid "Consists of content views"
1270
1397
  msgstr ""
@@ -1383,8 +1510,8 @@ msgstr "Inhaltsansichtsversion nicht festgelegt"
1383
1510
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1384
1511
  msgstr "In den Metadaten angegebene Inhaltsansichtsversion - '%{name}' existiert bereits. Wenn Sie die vorhandene Version ersetzen möchten, löschen Sie %{name} und versuchen Sie es erneut."
1385
1512
 
1386
- msgid "Content View and Environment not set for registration."
1387
- msgstr "Inhaltsansicht und Umgebung für Registrierung nicht festgelegt."
1513
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1514
+ msgstr ""
1388
1515
 
1389
1516
  msgid "Content View id"
1390
1517
  msgstr "Content View id"
@@ -1395,6 +1522,21 @@ msgstr ""
1395
1522
  msgid "Content Views"
1396
1523
  msgstr "Inhaltsansichten"
1397
1524
 
1525
+ msgid "Content cannot be imported into a Composite Content View. "
1526
+ msgstr ""
1527
+
1528
+ msgid "Content credential"
1529
+ msgstr ""
1530
+
1531
+ msgid "Content credentials"
1532
+ msgstr ""
1533
+
1534
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1535
+ msgstr ""
1536
+
1537
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1538
+ msgstr ""
1539
+
1398
1540
  msgid "Content files to upload. Can be a single file or array of files."
1399
1541
  msgstr "Hochzuladende Inhaltsdateien. Kann eine einzelne Datei oder eine Array mit Dateien sein."
1400
1542
 
@@ -1413,12 +1555,12 @@ msgstr ""
1413
1555
  msgid "Content override search parameters"
1414
1556
  msgstr ""
1415
1557
 
1558
+ msgid "Content source"
1559
+ msgstr ""
1560
+
1416
1561
  msgid "Content source ID"
1417
1562
  msgstr "Inhaltsquellen-ID."
1418
1563
 
1419
- msgid "Content source successfully updated."
1420
- msgstr ""
1421
-
1422
1564
  msgid "Content source was not set for host '%{host}'"
1423
1565
  msgstr "Inhaltsquelle wurde nicht für Host '%{host}' festgelegt"
1424
1566
 
@@ -1437,6 +1579,9 @@ msgstr "Inhaltsansicht"
1437
1579
  msgid "Content view ${name} created"
1438
1580
  msgstr "Inhaltsansicht ${name} erstellt"
1439
1581
 
1582
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1583
+ msgstr ""
1584
+
1440
1585
  msgid "Content view '%{view}' is not in environment '%{env}'"
1441
1586
  msgstr "Inhaltsansicht \"%{view}\" ist nicht in der Umgebung \"%{env}\""
1442
1587
 
@@ -1446,9 +1591,18 @@ msgstr "Inhaltsansicht \"%{view}\" ist nicht in der Lebenszyklusumgebung \"%{en
1446
1591
  msgid "Content view ID"
1447
1592
  msgstr "Inhaltsansichts-ID"
1448
1593
 
1594
+ msgid "Content view and environment not set for registration."
1595
+ msgstr ""
1596
+
1449
1597
  msgid "Content view details"
1450
1598
  msgstr ""
1451
1599
 
1600
+ msgid "Content view environments and activation key must all belong to the same organization"
1601
+ msgstr ""
1602
+
1603
+ msgid "Content view environments must have both a content view and an environment"
1604
+ msgstr ""
1605
+
1452
1606
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1453
1607
  msgstr "Die Inhaltsansicht hat das Repository-Label '%s', das im Parameter repos_units nicht angegeben ist."
1454
1608
 
@@ -1458,6 +1612,9 @@ msgstr "ID der Inhaltsansicht"
1458
1612
  msgid "Content view label"
1459
1613
  msgstr "Kennung der Inhaltsansicht"
1460
1614
 
1615
+ msgid "Content view must be specified"
1616
+ msgstr ""
1617
+
1461
1618
  msgid "Content view name"
1462
1619
  msgstr ""
1463
1620
 
@@ -1479,6 +1636,9 @@ msgstr "Identifizierer der Kontent-View-Versions-Geschichte"
1479
1636
  msgid "Content views"
1480
1637
  msgstr ""
1481
1638
 
1639
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1640
+ msgstr ""
1641
+
1482
1642
  msgid "Content_Host_Status"
1483
1643
  msgstr "Content_Host_Status"
1484
1644
 
@@ -1495,7 +1655,7 @@ msgid "Contract Number"
1495
1655
  msgstr "Vertragsnummer"
1496
1656
 
1497
1657
  msgid "Copied to clipboard"
1498
- msgstr ""
1658
+ msgstr "In die Zwischenablage kopiert"
1499
1659
 
1500
1660
  msgid "Copy"
1501
1661
  msgstr "Kopieren"
@@ -1507,11 +1667,14 @@ msgid "Copy content view"
1507
1667
  msgstr ""
1508
1668
 
1509
1669
  msgid "Copy to clipboard"
1510
- msgstr ""
1670
+ msgstr "In Zwischenablage abspeichern"
1511
1671
 
1512
1672
  msgid "Copy version units to library"
1513
1673
  msgstr "Versionseinheiten in Bibliothek kopieren"
1514
1674
 
1675
+ msgid "Cores per socket"
1676
+ msgstr "Kerne pro Socket"
1677
+
1515
1678
  msgid "Cores: %s"
1516
1679
  msgstr "Kerne: %s"
1517
1680
 
@@ -1617,14 +1780,20 @@ msgstr "Vorherige Umgebung \"%s\" konnte nicht gefunden werden."
1617
1780
  msgid "Couldn't find product with id '%s'"
1618
1781
  msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
1619
1782
 
1783
+ msgid "Couldn't find products with id '%s'"
1784
+ msgstr ""
1785
+
1620
1786
  msgid "Couldn't find repository '%s'"
1621
1787
  msgstr "Repository \"%s\" konnte nicht gefunden werden."
1622
1788
 
1623
1789
  msgid "Couldn't find smart proxies with id '%s'"
1624
1790
  msgstr ""
1625
1791
 
1626
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1627
- msgstr "Die angegebene Inhaltsansicht und Lebenszyklusumgebung konnte nicht gefunden werden."
1792
+ msgid "Couldn't find smart proxies with name '%s'"
1793
+ msgstr ""
1794
+
1795
+ msgid "Couldn't find specified content view and lifecycle environment."
1796
+ msgstr ""
1628
1797
 
1629
1798
  msgid "Couldn't find subject of synchronization"
1630
1799
  msgstr "Subjekt der Synchronisation konnte nicht gefunden werden."
@@ -1635,6 +1804,9 @@ msgstr "Anzahl"
1635
1804
  msgid "Create"
1636
1805
  msgstr "Erstellen"
1637
1806
 
1807
+ msgid "Create ACS"
1808
+ msgstr ""
1809
+
1638
1810
  msgid "Create Alternate Content Source"
1639
1811
  msgstr ""
1640
1812
 
@@ -1650,12 +1822,18 @@ msgstr "Paketgruppe erstellen"
1650
1822
  msgid "Create Repositories"
1651
1823
  msgstr "Repositorys erstellen"
1652
1824
 
1825
+ msgid "Create Syncable Export History"
1826
+ msgstr ""
1827
+
1653
1828
  msgid "Create a Content Credential"
1654
1829
  msgstr "Erstelle Kontent-Kredentials"
1655
1830
 
1656
1831
  msgid "Create a content view"
1657
1832
  msgstr "Inhaltsansicht erstellen"
1658
1833
 
1834
+ msgid "Create a custom product"
1835
+ msgstr ""
1836
+
1659
1837
  msgid "Create a custom repository"
1660
1838
  msgstr "Benutzerdefiniertes Repository erstellen"
1661
1839
 
@@ -1674,12 +1852,12 @@ msgstr "Produkt erstellen"
1674
1852
  msgid "Create a sync plan"
1675
1853
  msgstr "Synchronisationsplan erstellen"
1676
1854
 
1677
- msgid "Create an ACS"
1678
- msgstr ""
1679
-
1680
1855
  msgid "Create an activation key"
1681
1856
  msgstr "Aktivierungsschlüssel erstellen"
1682
1857
 
1858
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1859
+ msgstr ""
1860
+
1683
1861
  msgid "Create an environment"
1684
1862
  msgstr "Umgebung erstellen"
1685
1863
 
@@ -1689,23 +1867,38 @@ msgstr "Umgebung in einer Organisation erstellen"
1689
1867
  msgid "Create an upload request"
1690
1868
  msgstr "Upload-Anforderung erstellen"
1691
1869
 
1870
+ msgid "Create content credentials with the generated SSL certificate and key."
1871
+ msgstr ""
1872
+
1692
1873
  msgid "Create content view"
1693
1874
  msgstr "Inhaltsansicht erstellen"
1694
1875
 
1695
1876
  msgid "Create filter"
1696
1877
  msgstr "Filter erstellen"
1697
1878
 
1879
+ msgid "Create host collection"
1880
+ msgstr ""
1881
+
1698
1882
  msgid "Create organization"
1699
1883
  msgstr "Organisation erstellen"
1700
1884
 
1885
+ msgid "Create package filter rule"
1886
+ msgstr ""
1887
+
1888
+ msgid "Create rule"
1889
+ msgstr "Regel erstellen"
1890
+
1891
+ msgid "Credentials"
1892
+ msgstr "Anmeldedaten"
1893
+
1701
1894
  msgid "Critical"
1702
1895
  msgstr "Kritisch"
1703
1896
 
1704
1897
  msgid "Cron expression is not valid!"
1705
1898
  msgstr "Cron-Ausdruck ungültig!"
1706
1899
 
1707
- msgid "Current organization has no manifest imported."
1708
- msgstr "In der aktuellen Organisation wurde kein Manifest importiert."
1900
+ msgid "Current organization does not have a manifest imported."
1901
+ msgstr ""
1709
1902
 
1710
1903
  msgid "Current organization is not set."
1711
1904
  msgstr "Die aktuelle Organisation ist nicht festgelegt."
@@ -1713,6 +1906,12 @@ msgstr "Die aktuelle Organisation ist nicht festgelegt."
1713
1906
  msgid "Current organization not set."
1714
1907
  msgstr "Aktuelle Organisation nicht festgelegt."
1715
1908
 
1909
+ msgid "Custom"
1910
+ msgstr ""
1911
+
1912
+ msgid "Custom CDN"
1913
+ msgstr ""
1914
+
1716
1915
  msgid "Custom Content Repositories"
1717
1916
  msgstr "Benutzerdefinierte Inhaltsrepositorys"
1718
1917
 
@@ -1725,6 +1924,12 @@ msgstr "Benutzerdefinierte Repositorys können nicht deaktiviert werden."
1725
1924
  msgid "Customize with Rex"
1726
1925
  msgstr ""
1727
1926
 
1927
+ msgid "DEB name"
1928
+ msgstr "DEB-Name"
1929
+
1930
+ msgid "DEB package updates"
1931
+ msgstr ""
1932
+
1728
1933
  msgid "Database connection"
1729
1934
  msgstr "Verbindung zur Datenbank "
1730
1935
 
@@ -1740,12 +1945,18 @@ msgstr "verbleibende Tage"
1740
1945
  msgid "Days from Now"
1741
1946
  msgstr "Tage ab jetzt"
1742
1947
 
1948
+ msgid "Deb"
1949
+ msgstr ""
1950
+
1743
1951
  msgid "Deb Package"
1744
1952
  msgstr "Deb-Paket"
1745
1953
 
1746
1954
  msgid "Deb Packages"
1747
1955
  msgstr "Deb Packete"
1748
1956
 
1957
+ msgid "Deb name"
1958
+ msgstr ""
1959
+
1749
1960
  msgid "Deb package identifiers to filter content by"
1750
1961
  msgstr ""
1751
1962
 
@@ -1854,6 +2065,12 @@ msgstr "Standardmäßig synchronisierte OS-Benutzerdaten"
1854
2065
  msgid "Default user data for new Operating Systems created from synced content"
1855
2066
  msgstr "Standardbenutzerdaten für neue Betriebssysteme, die aus synchronisierten Inhalten erstellt wurden"
1856
2067
 
2068
+ msgid "Define RHUI repository paths with guided steps."
2069
+ msgstr ""
2070
+
2071
+ msgid "Define repositories structured under a common web or filesystem path."
2072
+ msgstr ""
2073
+
1857
2074
  msgid "Delete"
1858
2075
  msgstr "Löschen"
1859
2076
 
@@ -1992,7 +2209,7 @@ msgstr "Synchronisationsplan löschen"
1992
2209
  msgid "Destroy an activation key"
1993
2210
  msgstr "Aktivierungsschlüssel löschen"
1994
2211
 
1995
- msgid "Destroy an alternate content source"
2212
+ msgid "Destroy an alternate content source."
1996
2213
  msgstr ""
1997
2214
 
1998
2215
  msgid "Destroy an environment"
@@ -2001,6 +2218,9 @@ msgstr "Umgebung löschen"
2001
2218
  msgid "Destroy an environment in an organization"
2002
2219
  msgstr "Umgebung in einer Organisation löschen"
2003
2220
 
2221
+ msgid "Destroy one or more alternate content sources"
2222
+ msgstr ""
2223
+
2004
2224
  msgid "Destroy one or more hosts"
2005
2225
  msgstr "Zerstöre einen oder mehrere Hosts"
2006
2226
 
@@ -2052,6 +2272,9 @@ msgstr "Suchen"
2052
2272
  msgid "Discover Repositories"
2053
2273
  msgstr "Repositorys suchen"
2054
2274
 
2275
+ msgid "Distribute archived content view versions"
2276
+ msgstr ""
2277
+
2055
2278
  msgid "Do not include this array of content views"
2056
2279
  msgstr "Dieses Array mit Inhaltsansichten nicht einbeziehen"
2057
2280
 
@@ -2088,15 +2311,36 @@ msgstr "Bearbeiten"
2088
2311
  msgid "Edit RPM rule"
2089
2312
  msgstr ""
2090
2313
 
2314
+ msgid "Edit URL and subpaths"
2315
+ msgstr ""
2316
+
2091
2317
  msgid "Edit content view assignment"
2092
2318
  msgstr ""
2093
2319
 
2320
+ msgid "Edit credentials"
2321
+ msgstr "Anmeldeinformationen bearbeiten"
2322
+
2323
+ msgid "Edit details"
2324
+ msgstr "Details bearbeiten"
2325
+
2094
2326
  msgid "Edit filter rule"
2095
2327
  msgstr ""
2096
2328
 
2329
+ msgid "Edit package filter rule"
2330
+ msgstr ""
2331
+
2332
+ msgid "Edit products"
2333
+ msgstr "Produkte bearbeiten"
2334
+
2097
2335
  msgid "Edit rule"
2098
2336
  msgstr ""
2099
2337
 
2338
+ msgid "Edit smart proxies"
2339
+ msgstr ""
2340
+
2341
+ msgid "Edit system purpose attributes"
2342
+ msgstr ""
2343
+
2100
2344
  msgid "Editing Entitlements"
2101
2345
  msgstr "Entitlements bearbeiten"
2102
2346
 
@@ -2118,9 +2362,15 @@ msgstr "Legen Sie entweder die Inhaltsansicht mit dem neuesten Flag fest oder le
2118
2362
  msgid "Either set the latest content view or the content view version. Cannot set both"
2119
2363
  msgstr "Legen Sie entweder die neueste Inhaltsansicht oder die Inhaltsansichtsversion fest. Kann nicht beides einstellen"
2120
2364
 
2365
+ msgid "Empty content view versions"
2366
+ msgstr ""
2367
+
2121
2368
  msgid "Enable"
2122
2369
  msgstr "Aktivieren"
2123
2370
 
2371
+ msgid "Enable Red Hat repositories"
2372
+ msgstr ""
2373
+
2124
2374
  msgid "Enable Simple Content Access"
2125
2375
  msgstr "Einfachen Inhaltszugriff aktivieren"
2126
2376
 
@@ -2133,6 +2383,9 @@ msgstr "Traces aktivieren"
2133
2383
  msgid "Enable a repository from the set"
2134
2384
  msgstr "Ein Repository aus der Gruppe aktivieren"
2135
2385
 
2386
+ msgid "Enable repository sets"
2387
+ msgstr ""
2388
+
2136
2389
  msgid "Enable simple content access for a manifest"
2137
2390
  msgstr "Einfachen Inhaltszugriff für ein Manifest aktivieren"
2138
2391
 
@@ -2155,7 +2408,7 @@ msgid "End Date"
2155
2408
  msgstr "Enddatum"
2156
2409
 
2157
2410
  msgid "End date"
2158
- msgstr ""
2411
+ msgstr "Enddatum"
2159
2412
 
2160
2413
  msgid "Ends"
2161
2414
  msgstr "Endet"
@@ -2166,9 +2419,18 @@ msgstr "Erweiterung"
2166
2419
  msgid "Enter a name"
2167
2420
  msgstr ""
2168
2421
 
2422
+ msgid "Enter a name for your source."
2423
+ msgstr ""
2424
+
2169
2425
  msgid "Enter a valid date: MM/DD/YYYY"
2170
2426
  msgstr ""
2171
2427
 
2428
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2429
+ msgstr ""
2430
+
2431
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2432
+ msgstr ""
2433
+
2172
2434
  msgid "Entitlements"
2173
2435
  msgstr "Entitlements"
2174
2436
 
@@ -2188,7 +2450,7 @@ msgid "Environments"
2188
2450
  msgstr "Umgebungen"
2189
2451
 
2190
2452
  msgid "Epoch"
2191
- msgstr ""
2453
+ msgstr "Epoche"
2192
2454
 
2193
2455
  msgid "Equal to"
2194
2456
  msgstr ""
@@ -2262,11 +2524,11 @@ msgstr "Überschreitet die verfügbare Menge"
2262
2524
  msgid "Exclude"
2263
2525
  msgstr "Ausschließen"
2264
2526
 
2265
- msgid "Exclude all Module Streams with no errata."
2266
- msgstr "Alle Modulstreams ohne Errata ausschließen."
2527
+ msgid "Exclude all RPMs not associated to any errata"
2528
+ msgstr ""
2267
2529
 
2268
- msgid "Exclude all RPMs with no errata."
2269
- msgstr "Alle RPMs ohne Errata ausschließen."
2530
+ msgid "Exclude all module streams not associated to any errata"
2531
+ msgstr ""
2270
2532
 
2271
2533
  msgid "Exclude filter"
2272
2534
  msgstr ""
@@ -2310,6 +2572,11 @@ msgstr "Export Typen"
2310
2572
  msgid "Export as CSV"
2311
2573
  msgstr "Als CSV exportieren"
2312
2574
 
2575
+ msgid ""
2576
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2577
+ " Defaults to importable."
2578
+ msgstr ""
2579
+
2313
2580
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2314
2581
  msgstr "Exportiere History-Identifitierer die für inkrementellen Export benötigt werden. Falls nicht benötigt wird die aktuellste History benutzt."
2315
2582
 
@@ -2360,6 +2627,9 @@ msgstr "pxe-Dateien abrufen"
2360
2627
  msgid "Fetch traces for one or more hosts"
2361
2628
  msgstr "Abrufen von Traces für einen oder mehrere Hosts"
2362
2629
 
2630
+ msgid "Fetching content credentials"
2631
+ msgstr ""
2632
+
2363
2633
  msgid "Field to sort the results on"
2364
2634
  msgstr "Ergebnisse nach diesem Feld sortieren"
2365
2635
 
@@ -2417,6 +2687,9 @@ msgstr "Produkte nach Subskription filtern"
2417
2687
  msgid "Filter products by sync plan id"
2418
2688
  msgstr "Produkte nach Synchronisationsplan-ID filtern"
2419
2689
 
2690
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2691
+ msgstr ""
2692
+
2420
2693
  msgid "Filter rule added"
2421
2694
  msgstr ""
2422
2695
 
@@ -2450,6 +2723,12 @@ msgstr "Filter"
2450
2723
  msgid "Filters deleted"
2451
2724
  msgstr ""
2452
2725
 
2726
+ msgid "Filters will appear here when the filter is created."
2727
+ msgstr ""
2728
+
2729
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2730
+ msgstr ""
2731
+
2453
2732
  msgid "Finish"
2454
2733
  msgstr ""
2455
2734
 
@@ -2493,8 +2772,8 @@ msgstr "Erzwingen Sie die Anwendbarkeit der Regenerierung."
2493
2772
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2494
2773
  msgstr "Synchronisierung erzwingen, auch wenn keine Upstream-Änderungen erkannt werden. Nicht-yum-Repositorys werden übersprungen."
2495
2774
 
2496
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2497
- msgstr "Synchronisierung erzwingen, auch wenn keine Upstream-Änderungen erkannt werden. Wird nur mit Yum-Repositorys verwendet."
2775
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2776
+ msgstr ""
2498
2777
 
2499
2778
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
2500
2779
  msgstr "Erzwingt eine erneute Veröffentlichung des angegebenen Repositorys, wobei Metadaten und symbolische Links im Dateisystem neu generiert werden."
@@ -2511,6 +2790,9 @@ msgstr "Voll berechtigt"
2511
2790
  msgid "GPG Key URL"
2512
2791
  msgstr "GPG-Schlüssel-URL"
2513
2792
 
2793
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2794
+ msgstr ""
2795
+
2514
2796
  msgid "Generate and Download"
2515
2797
  msgstr "Generieren und herunterladen"
2516
2798
 
@@ -2521,9 +2803,9 @@ msgid "Generate repository applicability"
2521
2803
  msgstr "Repository-Anwendbarkeit generieren"
2522
2804
 
2523
2805
  msgid "Generated"
2524
- msgstr ""
2806
+ msgstr "Generiert"
2525
2807
 
2526
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2808
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2527
2809
  msgstr ""
2528
2810
 
2529
2811
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2556,6 +2838,9 @@ msgstr "Status der Synchronisation für angegebenes Repository abrufen"
2556
2838
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2557
2839
  msgstr "Listet bei einer Reihe von Hosts und Errata die Inhaltsansichtsversionen und -umgebungen auf, die aktualisiert werden müssen."
2558
2840
 
2841
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2842
+ msgstr ""
2843
+
2559
2844
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2560
2845
  msgstr ""
2561
2846
 
@@ -2586,6 +2871,9 @@ msgstr "HTTP-Proxies"
2586
2871
  msgid "HTTP Proxy identifier to associated"
2587
2872
  msgstr "HTTP-Proxy-Kennung für verknüpfte"
2588
2873
 
2874
+ msgid "HW properties"
2875
+ msgstr "HW-Eigenschaften"
2876
+
2589
2877
  msgid "Has to be > 0"
2590
2878
  msgstr "Muss > 0 . sein"
2591
2879
 
@@ -2664,6 +2952,9 @@ msgstr ""
2664
2952
  msgid "Host collections updated"
2665
2953
  msgstr ""
2666
2954
 
2955
+ msgid "Host configurations are not updated yet"
2956
+ msgstr ""
2957
+
2667
2958
  msgid "Host content and subscription details"
2668
2959
  msgstr "Hostinhalt und Subskriptionsdetails"
2669
2960
 
@@ -2715,6 +3006,9 @@ msgstr "Host mit ID %s nicht gefunden."
2715
3006
  msgid "Hosts"
2716
3007
  msgstr "Hosts"
2717
3008
 
3009
+ msgid "Hosts to update"
3010
+ msgstr ""
3011
+
2718
3012
  msgid "Hosts with Installable Errata"
2719
3013
  msgstr "Hosts mit installierbaren Errata"
2720
3014
 
@@ -2793,7 +3087,7 @@ msgstr "ID des Synchronisationsplans"
2793
3087
  msgid "ID: %s doesn't exist "
2794
3088
  msgstr "ID: %s existiert nicht"
2795
3089
 
2796
- msgid "Id"
3090
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
2797
3091
  msgstr ""
2798
3092
 
2799
3093
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2811,6 +3105,9 @@ msgstr "ID einer Ansible-Sammlung, um Repositorys zu finden, die die Ansible-Sam
2811
3105
  msgid "Id of an erratum to find repositories that contain the erratum"
2812
3106
  msgstr "ID eines Erratum um Repositorys mit diesem Erratum zu finden"
2813
3107
 
3108
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3109
+ msgstr ""
3110
+
2814
3111
  msgid "Id of the content host"
2815
3112
  msgstr "ID des Inhaltshosts"
2816
3113
 
@@ -2883,6 +3180,9 @@ msgstr ""
2883
3180
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2884
3181
  msgstr "Falls angegeben, entfernen Sie die erste Instanz einer Subskription mit passender ID und Anzahl"
2885
3182
 
3183
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3184
+ msgstr ""
3185
+
2886
3186
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2887
3187
  msgstr ""
2888
3188
 
@@ -2895,6 +3195,9 @@ msgstr ""
2895
3195
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2896
3196
  msgstr ""
2897
3197
 
3198
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3199
+ msgstr ""
3200
+
2898
3201
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2899
3202
  msgstr "Bei true werden nur Repository-Sets zurückgegeben, die mit einem aktiven Abonnement verknüpft sind"
2900
3203
 
@@ -2916,6 +3219,9 @@ msgstr ""
2916
3219
  msgid "Ignorable content can be only set for Yum repositories."
2917
3220
  msgstr "Ignorierbarer Inhalt kann nur für Yum-Repositorys festgelegt werden."
2918
3221
 
3222
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3223
+ msgstr ""
3224
+
2919
3225
  msgid "Ignore errors"
2920
3226
  msgstr "Fehler ignorieren"
2921
3227
 
@@ -2928,6 +3234,9 @@ msgstr "Abo-Manager-Fehler für den Befehl `subscription-manager register` ignor
2928
3234
  msgid "Ignore subscriptions that are unavailable to the specified host"
2929
3235
  msgstr "Subskriptionen, die für den angegebenen Host nicht verfügbar sind, ignorieren"
2930
3236
 
3237
+ msgid "Ignored hosts"
3238
+ msgstr ""
3239
+
2931
3240
  msgid "Immediate"
2932
3241
  msgstr "SRPMs ignorieren"
2933
3242
 
@@ -2995,7 +3304,7 @@ msgid "Import-only content views can not be published directly"
2995
3304
  msgstr "Nur-Import-Inhaltsansichten können nicht direkt veröffentlicht werden"
2996
3305
 
2997
3306
  msgid "Import/Export"
2998
- msgstr ""
3307
+ msgstr "Importieren/Exportieren"
2999
3308
 
3000
3309
  msgid "Important"
3001
3310
  msgstr "Wichtig"
@@ -3012,11 +3321,11 @@ msgstr "Im Gange"
3012
3321
  msgid "Include"
3013
3322
  msgstr "Einschließen"
3014
3323
 
3015
- msgid "Include all Module Streams with no errata."
3016
- msgstr "Schließen Sie alle Modulstreams ohne Errata ein."
3324
+ msgid "Include all RPMs not associated to any errata"
3325
+ msgstr ""
3017
3326
 
3018
- msgid "Include all RPMs with no errata."
3019
- msgstr "Alle RPMs ohne Errata einschließen."
3327
+ msgid "Include all module streams not associated to any errata"
3328
+ msgstr ""
3020
3329
 
3021
3330
  msgid "Include content views generated by imports/exports. Defaults to false"
3022
3331
  msgstr ""
@@ -3082,7 +3391,7 @@ msgid "Initiate a sync of the products attached to the sync plan"
3082
3391
  msgstr "Synchronisation von Produkten des Synchronisationsplans einleiten"
3083
3392
 
3084
3393
  msgid "Install"
3085
- msgstr ""
3394
+ msgstr "Installieren"
3086
3395
 
3087
3396
  msgid "Install Applicable Errata"
3088
3397
  msgstr "Relevante Errata installieren"
@@ -3121,7 +3430,7 @@ msgid "Install package via Katello interface"
3121
3430
  msgstr "Paket über Katello-Schnittstelle installieren"
3122
3431
 
3123
3432
  msgid "Install packages"
3124
- msgstr ""
3433
+ msgstr "Pakete installieren"
3125
3434
 
3126
3435
  msgid "Install packages remotely using katello-agent. %s"
3127
3436
  msgstr "Installieren Sie Pakete aus der Ferne mit katello-agent. %s"
@@ -3141,12 +3450,15 @@ msgstr ""
3141
3450
  msgid "Installable"
3142
3451
  msgstr "Installierbar"
3143
3452
 
3144
- msgid "Installable errata"
3453
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3145
3454
  msgstr ""
3146
3455
 
3147
3456
  msgid "Installable errata from content view"
3148
3457
  msgstr ""
3149
3458
 
3459
+ msgid "Installable updates"
3460
+ msgstr ""
3461
+
3150
3462
  msgid "Installation of errata requested: %{errata}"
3151
3463
  msgstr "Installation von Errata angefordert: %{errata}"
3152
3464
 
@@ -3157,7 +3469,10 @@ msgid "Installation of package(s) requested: %{packages}"
3157
3469
  msgstr "Installation der angeforderten Pakete: %{packages}"
3158
3470
 
3159
3471
  msgid "Installation status"
3160
- msgstr ""
3472
+ msgstr "Installationsstatus"
3473
+
3474
+ msgid "Installed"
3475
+ msgstr "Installiert"
3161
3476
 
3162
3477
  msgid "Installed Packages"
3163
3478
  msgstr "Installierte Pakete"
@@ -3166,13 +3481,13 @@ msgid "Installed module profiles will be removed. Additionally, all packages who
3166
3481
  msgstr ""
3167
3482
 
3168
3483
  msgid "Installed products"
3169
- msgstr ""
3484
+ msgstr "Installierte Produkte"
3170
3485
 
3171
3486
  msgid "Installed profile"
3172
- msgstr ""
3487
+ msgstr "Installierte Profile"
3173
3488
 
3174
3489
  msgid "Installed version"
3175
- msgstr ""
3490
+ msgstr "Installierte Version"
3176
3491
 
3177
3492
  msgid "Installing Erratum..."
3178
3493
  msgstr "Erratum wird installiert …"
@@ -3204,9 +3519,6 @@ msgstr "Intervall nicht richtig gesetzt"
3204
3519
  msgid "Invalid"
3205
3520
  msgstr "Ungültig"
3206
3521
 
3207
- msgid "Invalid SSL CA certificate given for CDN"
3208
- msgstr ""
3209
-
3210
3522
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3211
3523
  msgstr "Ungültige Zuordnung der Inhaltsansichts-ID. Inhaltsansicht muss mit der gespeicherten Inhaltsansichtsversion übereinstimmen"
3212
3524
 
@@ -3234,6 +3546,9 @@ msgstr "Ungültige Erratumtypen %{invalid_types} angegeben. Folgende Werte sind
3234
3546
  msgid "Invalid event_type %s"
3235
3547
  msgstr "Ungültiger event_type %s"
3236
3548
 
3549
+ msgid "Invalid export format provided. Format must be one of %s "
3550
+ msgstr ""
3551
+
3237
3552
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3238
3553
  msgstr "Ungültige Regel angegeben, \"version\" kann nicht in demselben Tupel angegeben werden wie \"min_version\" oder \"max_version\""
3239
3554
 
@@ -3252,6 +3567,15 @@ msgstr "Ungültige Parameter angegeben - content_type muss einer von %s sein"
3252
3567
  msgid "Invalid params provided - date_type must be one of %s"
3253
3568
  msgstr "Ungültige Parameter angegeben - date_type muss einer von %s sein"
3254
3569
 
3570
+ msgid "Invalid params provided - with_content must be one of %s"
3571
+ msgstr ""
3572
+
3573
+ msgid "Invalid path provided. Content can be only imported from file system. "
3574
+ msgstr ""
3575
+
3576
+ msgid "Invalid release version: [%s]"
3577
+ msgstr ""
3578
+
3255
3579
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3256
3580
  msgstr ""
3257
3581
 
@@ -3270,7 +3594,13 @@ msgstr "Ausgegeben"
3270
3594
  msgid "Issued from"
3271
3595
  msgstr ""
3272
3596
 
3273
- msgid "Job ${description} has started."
3597
+ msgid "Items will appear here when a filter rule is added."
3598
+ msgstr ""
3599
+
3600
+ msgid "Job '${description}' completed"
3601
+ msgstr ""
3602
+
3603
+ msgid "Job '${description}' has started."
3274
3604
  msgstr ""
3275
3605
 
3276
3606
  msgid "Katello ID of local pool to update"
@@ -3342,9 +3672,21 @@ msgstr "Kennung des Inhalts"
3342
3672
  msgid "Label of the content view"
3343
3673
  msgstr ""
3344
3674
 
3675
+ msgid "Last check-in:"
3676
+ msgstr ""
3677
+
3678
+ msgid "Last checkin"
3679
+ msgstr ""
3680
+
3345
3681
  msgid "Last published"
3346
3682
  msgstr "Zuletzt veröffentlicht"
3347
3683
 
3684
+ msgid "Last refresh"
3685
+ msgstr ""
3686
+
3687
+ msgid "Last refresh :"
3688
+ msgstr ""
3689
+
3348
3690
  msgid "Last task"
3349
3691
  msgstr "Letzte Aufgabe"
3350
3692
 
@@ -3360,11 +3702,14 @@ msgstr "Letzte Version"
3360
3702
  msgid "Learn more about adding Subscription Manifests"
3361
3703
  msgstr "Weitere Informationen zum Hinzufügen von Abonnementmanifesten"
3362
3704
 
3705
+ msgid "Legacy content host UI"
3706
+ msgstr ""
3707
+
3363
3708
  msgid "Less than"
3364
3709
  msgstr ""
3365
3710
 
3366
3711
  msgid "Library"
3367
- msgstr ""
3712
+ msgstr "Library"
3368
3713
 
3369
3714
  msgid "Library lifecycle environments may not be deleted."
3370
3715
  msgstr "Library-Lebenszyklusumgebungen dürfen nicht gelöscht werden."
@@ -3405,6 +3750,9 @@ msgstr "ID der Lebenszyklusumgebung"
3405
3750
  msgid "Lifecycle environment for the host."
3406
3751
  msgstr "Lebenszyklusumgebung für den Host."
3407
3752
 
3753
+ msgid "Lifecycle environment must be specified"
3754
+ msgstr ""
3755
+
3408
3756
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3409
3757
  msgstr "Die Lebenszyklusumgebung wurde nicht an den Smart Proxy angehängt; daher wurden keine Änderungen vorgenommen."
3410
3758
 
@@ -3426,6 +3774,9 @@ msgstr "Beschränken Sie den Inhalt auf den Inhalt, der in der Inhaltsansichtsve
3426
3774
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3427
3775
  msgstr ""
3428
3776
 
3777
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3778
+ msgstr ""
3779
+
3429
3780
  msgid "Limit to environment"
3430
3781
  msgstr "Auf Umgebung beschränken"
3431
3782
 
@@ -3456,6 +3807,9 @@ msgstr "Alle :resource_id auflisten"
3456
3807
  msgid "List all organizations"
3457
3808
  msgstr "Alle Organisationen auflisten"
3458
3809
 
3810
+ msgid "List alternate content sources."
3811
+ msgstr ""
3812
+
3459
3813
  msgid "List an activation key's subscriptions"
3460
3814
  msgstr "Subskriptionen eines Aktivierungsschlüssels auflisten"
3461
3815
 
@@ -3525,7 +3879,7 @@ msgstr "Liste der zu installierenden Errata-IDs. Wird entfernt in %s"
3525
3879
  msgid "List of Products for sync plan"
3526
3880
  msgstr "Produktliste für Synchronisationsplan"
3527
3881
 
3528
- msgid "List of alternate_content_sources"
3882
+ msgid "List of alternate content source IDs"
3529
3883
  msgstr ""
3530
3884
 
3531
3885
  msgid "List of component content view version ids for composite views"
@@ -3618,6 +3972,9 @@ msgstr "Liste der Repositorys in einer Organisation"
3618
3972
  msgid "List of repository ids"
3619
3973
  msgstr "Liste mit Repository-IDs"
3620
3974
 
3975
+ msgid "List of resources types that will be automatically associated"
3976
+ msgstr "Auflisten aller Ressourcetypen die automatisch zugewiesen werden"
3977
+
3621
3978
  msgid "List of subscription products in a subscription"
3622
3979
  msgstr "Liste mit Subskriptionsprodukten in einer Subskription"
3623
3980
 
@@ -3676,10 +4033,10 @@ msgid "Loading versions"
3676
4033
  msgstr ""
3677
4034
 
3678
4035
  msgid "Loading..."
3679
- msgstr ""
4036
+ msgstr "Laden …"
3680
4037
 
3681
4038
  msgid "Low"
3682
- msgstr ""
4039
+ msgstr "Niedrig"
3683
4040
 
3684
4041
  msgid "Make copy of a content view"
3685
4042
  msgstr "Kopie einer Inhaltsansicht erstellen"
@@ -3723,6 +4080,12 @@ msgstr "Zeitüberschreitung bei Manifestaktualisierung"
3723
4080
  msgid "Manifest refreshed"
3724
4081
  msgstr "Manifest aufgefrischt"
3725
4082
 
4083
+ msgid "Manual"
4084
+ msgstr "Manuell"
4085
+
4086
+ msgid "Manual authentication"
4087
+ msgstr ""
4088
+
3726
4089
  msgid "Mark Content Host Statuses as Unknown for %s"
3727
4090
  msgstr "Inhaltshoststatus als unbekannt markieren für %s"
3728
4091
 
@@ -3786,6 +4149,9 @@ msgstr "Aktivierungsschlüssel fehlt!"
3786
4149
  msgid "Missing arguments %{substitutions} for %{content_url}"
3787
4150
  msgstr "Fehlende Argumente %{substitutions} für %{content_url}"
3788
4151
 
4152
+ msgid "Model"
4153
+ msgstr "Modell"
4154
+
3789
4155
  msgid "Moderate"
3790
4156
  msgstr "Moderat (Mittel)"
3791
4157
 
@@ -3807,7 +4173,7 @@ msgstr "Modul stream"
3807
4173
  msgid "Module streams"
3808
4174
  msgstr ""
3809
4175
 
3810
- msgid "Module streams will appear here when available."
4176
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3811
4177
  msgstr ""
3812
4178
 
3813
4179
  msgid "Multi-entitlement"
@@ -3825,6 +4191,9 @@ msgstr "Nicht verfügbar"
3825
4191
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3826
4192
  msgstr "HINWEIS: Katello-agent ist veraltet und wird in entfernt in %s. Ziehen Sie stattdessen die Verwendung von Remote-Ausführung in Betracht."
3827
4193
 
4194
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4195
+ msgstr ""
4196
+
3828
4197
  msgid ""
3829
4198
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
3830
4199
  " %{repos}"
@@ -3832,6 +4201,11 @@ msgstr ""
3832
4201
  "HINWEIS: Die Bibliothek der Organisation '%{organization}' kann nicht vollständig exportiert werden, da sie Repositorys ohne die Richtlinie für den sofortigen Download enthält. Aktualisieren Sie die Download-Richtlinie und synchronisieren Sie betroffene Repositorys, um sie in den Export einzubeziehen.\n"
3833
4202
  " %{repos}"
3834
4203
 
4204
+ msgid ""
4205
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4206
+ " %{repos}"
4207
+ msgstr ""
4208
+
3835
4209
  msgid ""
3836
4210
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3837
4211
  " %{repos}"
@@ -3845,6 +4219,9 @@ msgstr ""
3845
4219
  msgid "Name"
3846
4220
  msgstr "Name"
3847
4221
 
4222
+ msgid "Name and label of default content view should not be changed"
4223
+ msgstr ""
4224
+
3848
4225
  msgid "Name is a required parameter."
3849
4226
  msgstr ""
3850
4227
 
@@ -3869,6 +4246,12 @@ msgstr "Name des Repositorys"
3869
4246
  msgid "Name of the upstream docker repository"
3870
4247
  msgstr "Name des upstream Docker-Repositorys"
3871
4248
 
4249
+ msgid "Name source"
4250
+ msgstr ""
4251
+
4252
+ msgid "Names of smart proxies to associate"
4253
+ msgstr ""
4254
+
3872
4255
  msgid "Needs to only be set for docker tags"
3873
4256
  msgstr "Muss nur für Docker-Tags festgelegt werden"
3874
4257
 
@@ -3881,6 +4264,9 @@ msgstr "Verschachteln"
3881
4264
  msgid "Network Sync"
3882
4265
  msgstr ""
3883
4266
 
4267
+ msgid "Never"
4268
+ msgstr "Niemals"
4269
+
3884
4270
  msgid "Never Synced"
3885
4271
  msgstr "Nie synchronisiert"
3886
4272
 
@@ -3951,7 +4337,7 @@ msgid "No action is needed because there are no applicable errata for this host.
3951
4337
  msgstr ""
3952
4338
 
3953
4339
  msgid "No action required"
3954
- msgstr ""
4340
+ msgstr "Keine Aktion erforderlich"
3955
4341
 
3956
4342
  msgid "No applicable errata"
3957
4343
  msgstr ""
@@ -3977,6 +4363,9 @@ msgstr "Kein Inhalt wurde bereitgestellt."
3977
4363
  msgid "No content ids provided"
3978
4364
  msgstr "Keine Inhalts-IDs angegeben"
3979
4365
 
4366
+ msgid "No content in selected versions."
4367
+ msgstr ""
4368
+
3980
4369
  msgid "No content view history events found."
3981
4370
  msgstr "Keine vergangenen Ereignisse der Inhaltsansicht gefunden."
3982
4371
 
@@ -4028,13 +4417,19 @@ msgstr ""
4028
4417
  msgid "No host collections found."
4029
4418
  msgstr "Keine Hostsammlungen gefunden"
4030
4419
 
4420
+ msgid "No host collections yet"
4421
+ msgstr ""
4422
+
4423
+ msgid "No hosts found"
4424
+ msgstr ""
4425
+
4031
4426
  msgid "No hosts have been specified."
4032
4427
  msgstr "Es wurden keine Hosts angegeben."
4033
4428
 
4034
4429
  msgid "No hosts registered with subscription-manager found in selection."
4035
4430
  msgstr "Keine beim Subscription-Manager registrierten Hosts in der Auswahl gefunden."
4036
4431
 
4037
- msgid "No hosts with content source found!"
4432
+ msgid "No hosts were specified"
4038
4433
  msgstr ""
4039
4434
 
4040
4435
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4052,9 +4447,15 @@ msgstr "Kein Manifest gefunden. Importieren Sie ein Manifest mit den entsprechen
4052
4447
  msgid "No matching "
4053
4448
  msgstr ""
4054
4449
 
4450
+ msgid "No matching ${name} found."
4451
+ msgstr ""
4452
+
4055
4453
  msgid "No matching ${selectedContentType} found"
4056
4454
  msgstr ""
4057
4455
 
4456
+ msgid "No matching DEB found."
4457
+ msgstr ""
4458
+
4058
4459
  msgid "No matching RPM found."
4059
4460
  msgstr ""
4060
4461
 
@@ -4139,6 +4540,9 @@ msgstr "Keine Prozesse erfordern einen Neustart"
4139
4540
  msgid "No products are enabled."
4140
4541
  msgstr "Es sind keine Produkte aktiviert."
4141
4542
 
4543
+ msgid "No profiles to show"
4544
+ msgstr "Keine Profile zum Anzeigen"
4545
+
4142
4546
  msgid "No pulp workers running."
4143
4547
  msgstr "Pulp-Worker laufen nicht."
4144
4548
 
@@ -4214,11 +4618,14 @@ msgstr "Nicht hinzugefügt"
4214
4618
  msgid "Not all necessary pulp workers running at %s."
4215
4619
  msgstr "Nicht alle notwendigen Pulp-Worker laufen bei %s ."
4216
4620
 
4621
+ msgid "Not installed"
4622
+ msgstr "Nicht installiert"
4623
+
4217
4624
  msgid "Not running"
4218
4625
  msgstr "Läuft nicht"
4219
4626
 
4220
4627
  msgid "Not specified"
4221
- msgstr ""
4628
+ msgstr "Keine Angabe"
4222
4629
 
4223
4630
  msgid "Not yet published"
4224
4631
  msgstr "Noch nicht veröffentlicht"
@@ -4232,6 +4639,9 @@ msgstr "Hinweis: Die Zahl in Klammern gibt alle relevanten Errata in der Library
4232
4639
  msgid "Nothing selected"
4233
4640
  msgstr "Nothing selected"
4234
4641
 
4642
+ msgid "Number of CPU(s)"
4643
+ msgstr ""
4644
+
4235
4645
  msgid "Number of host applicability calculations to process per task."
4236
4646
  msgstr "Anzahl der Hostanwendbarkeitsberechnungen, die pro Aufgabe verarbeitet werden sollen."
4237
4647
 
@@ -4244,6 +4654,9 @@ msgstr "Anzahl der Ergebnisse pro Seite, die zurückgegeben werden sollen."
4244
4654
  msgid "Number to Allocate"
4245
4655
  msgstr "Zuzuweisende Nummer"
4246
4656
 
4657
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4658
+ msgstr ""
4659
+
4247
4660
  msgid "OSTree Branch"
4248
4661
  msgstr "OSTree Branch"
4249
4662
 
@@ -4265,6 +4678,9 @@ msgstr "Objekt zeigt Liste verfügbarer Subskriptionen für 'host' oder 'activat
4265
4678
  msgid "On Demand"
4266
4679
  msgstr "Auf Nachfrage"
4267
4680
 
4681
+ msgid "On the RHUA Instance, check the available repositories."
4682
+ msgstr ""
4683
+
4268
4684
  msgid "On-disk location for exported repositories"
4269
4685
  msgstr "Speicherort auf der Festplatte für exportierte Repositorys"
4270
4686
 
@@ -4337,7 +4753,10 @@ msgstr "Organisation nicht gefunden"
4337
4753
  msgid "Organization required"
4338
4754
  msgstr "Organisation erforderlich"
4339
4755
 
4340
- msgid "Orphaned Content Protection Time"
4756
+ msgid "Orphaned Content Protection Time"
4757
+ msgstr ""
4758
+
4759
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4341
4760
  msgstr ""
4342
4761
 
4343
4762
  msgid "Other"
@@ -4559,12 +4978,6 @@ msgstr "Passwort für den Zugriff auf die URL"
4559
4978
  msgid "Path"
4560
4979
  msgstr "Pfad"
4561
4980
 
4562
- msgid "Path for ssl cert used for pulp server auth"
4563
- msgstr "Pfad für das SSL-Zertifikat, das für die Pulserver-Authentifizierung verwendet wird"
4564
-
4565
- msgid "Path for ssl key used for pulp server auth"
4566
- msgstr "Pfad für den SSL-Schlüssel, der für die Pulserver-Authentifizierung verwendet wird"
4567
-
4568
4981
  msgid "Path suffixes for finding alternate content"
4569
4982
  msgstr ""
4570
4983
 
@@ -4649,6 +5062,9 @@ msgstr "Bitte wählen Sie aus der Liste unten, Sie werden anschließend weiterge
4649
5062
  msgid "Please wait while the task starts.."
4650
5063
  msgstr ""
4651
5064
 
5065
+ msgid "Please wait..."
5066
+ msgstr "Bitte warten..."
5067
+
4652
5068
  msgid "Policy to set for mirroring content. Must be one of %s."
4653
5069
  msgstr ""
4654
5070
 
@@ -4740,9 +5156,18 @@ msgstr "Produkt mit ID %s nicht in Candlepin gefunden. Überspringen des Inhalts
4740
5156
  msgid "Product: '%{product}', Repository: '%{repository}'"
4741
5157
  msgstr "Produkt: '%{product}', Repository: '%{repository}'"
4742
5158
 
5159
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5160
+ msgstr ""
5161
+
4743
5162
  msgid "Products"
4744
5163
  msgstr "Produkte"
4745
5164
 
5165
+ msgid "Products updated."
5166
+ msgstr "Produkte aktualisiert."
5167
+
5168
+ msgid "Profiles"
5169
+ msgstr "Profile"
5170
+
4746
5171
  msgid "Promote"
4747
5172
  msgstr "Fördern"
4748
5173
 
@@ -4827,18 +5252,9 @@ msgstr "Pulp 3 Exportzieldateipfad"
4827
5252
  msgid "Pulp 3 is not enabled on Smart proxy!"
4828
5253
  msgstr "Pulp 3 ist auf Smart Proxy nicht aktiviert!"
4829
5254
 
4830
- msgid "Pulp Docker registry port"
4831
- msgstr "Pulp Docker-Registrierungsport"
4832
-
4833
5255
  msgid "Pulp bulk load size"
4834
5256
  msgstr "Pulp-bulk Belastungsgröße"
4835
5257
 
4836
- msgid "Pulp client cert"
4837
- msgstr "Pulp-Client-Zertifikat"
4838
-
4839
- msgid "Pulp client key"
4840
- msgstr "Pulp-Client-Schlüssel"
4841
-
4842
5258
  msgid "Pulp database connection issue at %s."
4843
5259
  msgstr "Problem mit der Pulp-Datenbankverbindung bei %s."
4844
5260
 
@@ -4876,7 +5292,7 @@ msgid "Pulp storage"
4876
5292
  msgstr "Pulp-Speicher"
4877
5293
 
4878
5294
  msgid "Pulp task error"
4879
- msgstr "Pulp-Taskfehler"
5295
+ msgstr "Pulp-Aufgabenfehler"
4880
5296
 
4881
5297
  msgid "Python Package"
4882
5298
  msgstr ""
@@ -4917,12 +5333,18 @@ msgstr "Hinzuzufügende Anzahl der Subskription"
4917
5333
  msgid "Quantity to Allocate"
4918
5334
  msgstr "Zuzuweisende Menge"
4919
5335
 
5336
+ msgid "RAM"
5337
+ msgstr "RAM"
5338
+
4920
5339
  msgid "RAM: %s GB"
4921
5340
  msgstr "RAM: %s GB"
4922
5341
 
4923
5342
  msgid "RH Repos"
4924
5343
  msgstr "RH Repos"
4925
5344
 
5345
+ msgid "RHUI"
5346
+ msgstr ""
5347
+
4926
5348
  msgid "RPM"
4927
5349
  msgstr "RPM"
4928
5350
 
@@ -4935,6 +5357,12 @@ msgstr ""
4935
5357
  msgid "RPM name"
4936
5358
  msgstr "RPM Name"
4937
5359
 
5360
+ msgid "RPM package groups"
5361
+ msgstr "RPM-Paketgruppen"
5362
+
5363
+ msgid "RPM package updates"
5364
+ msgstr ""
5365
+
4938
5366
  msgid "RPM packages"
4939
5367
  msgstr ""
4940
5368
 
@@ -5001,6 +5429,9 @@ msgstr ""
5001
5429
  msgid "Red Hat content will be consumed from the {type}."
5002
5430
  msgstr ""
5003
5431
 
5432
+ msgid "Red Hat content will be consumed from {type}."
5433
+ msgstr ""
5434
+
5004
5435
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5005
5436
  msgstr ""
5006
5437
 
@@ -5016,15 +5447,27 @@ msgstr "Red Hat Repositorys können nicht verändert werden."
5016
5447
  msgid "Refresh"
5017
5448
  msgstr "Aktualisieren"
5018
5449
 
5450
+ msgid "Refresh Alternate Content Source"
5451
+ msgstr ""
5452
+
5019
5453
  msgid "Refresh Content Host Statuses for %s"
5020
5454
  msgstr ""
5021
5455
 
5022
5456
  msgid "Refresh Manifest"
5023
5457
  msgstr "Manifest aktualisieren"
5024
5458
 
5459
+ msgid "Refresh alternate content sources"
5460
+ msgstr ""
5461
+
5462
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5463
+ msgstr ""
5464
+
5025
5465
  msgid "Refresh previously imported manifest for Red Hat provider"
5026
5466
  msgstr "Zuvor importiertes Manifest für Red Hat Anbieter aktualisieren"
5027
5467
 
5468
+ msgid "Refresh source"
5469
+ msgstr ""
5470
+
5028
5471
  msgid "Refresh_Content_Host_Status"
5029
5472
  msgstr ""
5030
5473
 
@@ -5034,13 +5477,16 @@ msgstr "Registrieren Sie einen Host mit Abonnement und Informationen"
5034
5477
  msgid "Register host '%s' before attaching subscriptions"
5035
5478
  msgstr "Registrieren Sie den Host '%s', bevor Sie Abonnements anhängen"
5036
5479
 
5480
+ msgid "Registered"
5481
+ msgstr "Registriert"
5482
+
5037
5483
  msgid "Registered by"
5038
- msgstr ""
5484
+ msgstr "Registriert durch"
5039
5485
 
5040
5486
  msgid "Registered on"
5041
5487
  msgstr ""
5042
5488
 
5043
- msgid "Registered through"
5489
+ msgid "Registering to multiple environments is not enabled."
5044
5490
  msgstr ""
5045
5491
 
5046
5492
  msgid "Registration details"
@@ -5058,24 +5504,27 @@ msgstr "Das Namensmuster der Registrierung führt zu einem ungültigen Container
5058
5504
  msgid "Reindex subscriptions"
5059
5505
  msgstr "Subskriptionen neu indizieren"
5060
5506
 
5061
- msgid "Related component content views"
5507
+ msgid "Related composite content views"
5062
5508
  msgstr ""
5063
5509
 
5064
- msgid "Related component cvs: "
5510
+ msgid "Related composite content views: "
5065
5511
  msgstr ""
5066
5512
 
5067
- msgid "Related composite content views"
5513
+ msgid "Related content views"
5068
5514
  msgstr ""
5069
5515
 
5070
- msgid "Related composite cvs: "
5516
+ msgid "Related content views will appear here when created."
5071
5517
  msgstr ""
5072
5518
 
5073
- msgid "Related content views will appear here when created."
5519
+ msgid "Related content views: "
5074
5520
  msgstr ""
5075
5521
 
5076
5522
  msgid "Release"
5077
5523
  msgstr "Release"
5078
5524
 
5525
+ msgid "Release version"
5526
+ msgstr ""
5527
+
5079
5528
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5080
5529
  msgstr "Release-Version für diesen Host (7Server, 7.1 usw.)"
5081
5530
 
@@ -5094,6 +5543,9 @@ msgstr "Daten neu laden"
5094
5543
  msgid "Remote action:"
5095
5544
  msgstr "Entfernte Aktion:"
5096
5545
 
5546
+ msgid "Remote execution job '${description}' failed."
5547
+ msgstr ""
5548
+
5097
5549
  msgid "Removal of package group(s) requested: %{groups}"
5098
5550
  msgstr "Entfernung der angeforderten Paketgruppe(n): %{groups}"
5099
5551
 
@@ -5154,8 +5606,8 @@ msgstr ""
5154
5606
  msgid "Remove one or more host collections from one or more hosts"
5155
5607
  msgstr "Entfernen Sie eine oder mehrere Hostsammlungen von einem oder mehreren Hosts"
5156
5608
 
5157
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5158
- msgstr "Entfernen Sie ein oder mehrere Abonnements aus einer Upstream-Abonnementzuweisung"
5609
+ msgid "Remove one or more subscriptions from an upstream manifest"
5610
+ msgstr ""
5159
5611
 
5160
5612
  msgid "Remove package"
5161
5613
  msgstr "Paket entfernen"
@@ -5205,6 +5657,9 @@ msgstr "Paketgruppe wird entfernt …"
5205
5657
  msgid "Removing Package..."
5206
5658
  msgstr "Paket wird entfernt …"
5207
5659
 
5660
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5661
+ msgstr ""
5662
+
5208
5663
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5209
5664
  msgstr ""
5210
5665
 
@@ -5289,7 +5744,7 @@ msgstr ""
5289
5744
  msgid "Repository sets reset to default"
5290
5745
  msgstr ""
5291
5746
 
5292
- msgid "Repository sets will appear here when available."
5747
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5293
5748
  msgstr ""
5294
5749
 
5295
5750
  msgid "Republish Repositories of %{name} %{version}"
@@ -5314,7 +5769,7 @@ msgid "Requires Virt-Who"
5314
5769
  msgstr "Benötigt Virt-Who"
5315
5770
 
5316
5771
  msgid "Reset"
5317
- msgstr ""
5772
+ msgstr "Zurücksetzen"
5318
5773
 
5319
5774
  msgid "Reset filters"
5320
5775
  msgstr ""
@@ -5424,6 +5879,9 @@ msgstr "Pakete zurücksenden, die auf einem oder mehreren Hosts aktualisiert wer
5424
5879
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5425
5880
  msgstr "Gibt Pakete zurück, die dem angegebenen Objekt hinzugefügt werden können. Nur der Wert 'content_view_version' wird unterstützt."
5426
5881
 
5882
+ msgid "Return same, different or all results"
5883
+ msgstr ""
5884
+
5427
5885
  msgid "Return subscriptions that match installed products of the specified host"
5428
5886
  msgstr "Subskriptionen ausgeben, die auf dem angegebenen Host installierten Produkten entsprechen"
5429
5887
 
@@ -5451,6 +5909,9 @@ msgstr ""
5451
5909
  msgid "Review details"
5452
5910
  msgstr "Bewertungsdetails"
5453
5911
 
5912
+ msgid "Review the information below and click "
5913
+ msgstr ""
5914
+
5454
5915
  msgid "Review your currently selected changes for "
5455
5916
  msgstr ""
5456
5917
 
@@ -5469,21 +5930,30 @@ msgstr ""
5469
5930
  msgid "Run Sync Plan:"
5470
5931
  msgstr "Synchronisierungsplan ausführen:"
5471
5932
 
5472
- msgid "Run job invocation"
5473
- msgstr ""
5474
-
5475
5933
  msgid "Running"
5476
5934
  msgstr "Läuft"
5477
5935
 
5478
5936
  msgid "SKU"
5479
5937
  msgstr "SKU"
5480
5938
 
5939
+ msgid "SLA"
5940
+ msgstr ""
5941
+
5481
5942
  msgid "SRPM details"
5482
5943
  msgstr "SRPM-Details"
5483
5944
 
5484
5945
  msgid "SSL CA Content Credential"
5485
5946
  msgstr ""
5486
5947
 
5948
+ msgid "SSL CA certificate"
5949
+ msgstr ""
5950
+
5951
+ msgid "SSL client certificate"
5952
+ msgstr ""
5953
+
5954
+ msgid "SSL client key"
5955
+ msgstr ""
5956
+
5487
5957
  msgid "SSL version used to communicate with the CDN"
5488
5958
  msgstr "SSL-Version zur Kommunikation mit dem CDN"
5489
5959
 
@@ -5493,6 +5963,9 @@ msgstr "ABONNEMENTS LAUFEN BALD AB"
5493
5963
  msgid "Save"
5494
5964
  msgstr "Speichern"
5495
5965
 
5966
+ msgid "Saving alternate content source..."
5967
+ msgstr ""
5968
+
5496
5969
  msgid "Schedule errata for installation using katello-agent. %s"
5497
5970
  msgstr "Planen Sie Errata für die Installation mit katello-agent. %s"
5498
5971
 
@@ -5562,6 +6035,15 @@ msgstr "Organisation auswählen"
5562
6035
  msgid "Select Value"
5563
6036
  msgstr "Wähle Wert"
5564
6037
 
6038
+ msgid "Select a CA certificate"
6039
+ msgstr ""
6040
+
6041
+ msgid "Select a client certificate"
6042
+ msgstr ""
6043
+
6044
+ msgid "Select a client key"
6045
+ msgstr ""
6046
+
5565
6047
  msgid "Select a content view"
5566
6048
  msgstr ""
5567
6049
 
@@ -5577,6 +6059,9 @@ msgstr "Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Promotionspfa
5577
6059
  msgid "Select a provider to install katello-host-tools-tracer"
5578
6060
  msgstr ""
5579
6061
 
6062
+ msgid "Select add-ons"
6063
+ msgstr ""
6064
+
5580
6065
  msgid "Select all"
5581
6066
  msgstr "Alles auswählen"
5582
6067
 
@@ -5592,20 +6077,23 @@ msgstr ""
5592
6077
  msgid "Select an environment above"
5593
6078
  msgstr ""
5594
6079
 
6080
+ msgid "Select an option"
6081
+ msgstr ""
6082
+
5595
6083
  msgid "Select an organization"
5596
6084
  msgstr "Wählen Sie eine Organisation aus"
5597
6085
 
5598
6086
  msgid "Select available version of ${cvName} to use"
5599
6087
  msgstr "Wählen Sie die verfügbare Version von ${cvName} zur Verwendung aus"
5600
6088
 
5601
- msgid "Select available version of components to use"
6089
+ msgid "Select available version of content views to use"
5602
6090
  msgstr ""
5603
6091
 
5604
6092
  msgid "Select content view"
5605
6093
  msgstr ""
5606
6094
 
5607
6095
  msgid "Select environment"
5608
- msgstr ""
6096
+ msgstr "Umgebung auswählen"
5609
6097
 
5610
6098
  msgid "Select host collection(s) to associate with host {hostName}."
5611
6099
  msgstr ""
@@ -5631,9 +6119,27 @@ msgstr ""
5631
6119
  msgid "Select page"
5632
6120
  msgstr ""
5633
6121
 
6122
+ msgid "Select products"
6123
+ msgstr "Produkte auswählen"
6124
+
6125
+ msgid "Select products to associate to this source."
6126
+ msgstr ""
6127
+
5634
6128
  msgid "Select row"
5635
6129
  msgstr "Zeile auswählen"
5636
6130
 
6131
+ msgid "Select smart proxies to be used with this source."
6132
+ msgstr ""
6133
+
6134
+ msgid "Select smart proxy"
6135
+ msgstr ""
6136
+
6137
+ msgid "Select source type"
6138
+ msgstr ""
6139
+
6140
+ msgid "Select system purpose attributes for host {hostName}."
6141
+ msgstr ""
6142
+
5637
6143
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5638
6144
  msgstr "Wählen Sie das Installationsmedium aus, das zum Bereitstellen dieses Hosts verwendet wird. Wählen Sie „Synchronisierter Inhalt“ für synchronisierte Kickstart-Repositorys oder „Alle Medien“ für andere Medien."
5639
6145
 
@@ -5736,7 +6242,7 @@ msgstr ""
5736
6242
  msgid "Show an activation key"
5737
6243
  msgstr "Aktivierungsschlüssel anzeigen"
5738
6244
 
5739
- msgid "Show an alternate content source"
6245
+ msgid "Show an alternate content source."
5740
6246
  msgstr ""
5741
6247
 
5742
6248
  msgid "Show an environment"
@@ -5763,6 +6269,9 @@ msgstr "Verfügbare Release-Versionen für einen Aktivierungsschlüssel anzeigen
5763
6269
  msgid "Show releases available for the content host"
5764
6270
  msgstr "Verfügbare Releases für den Inhaltshost anzeigen"
5765
6271
 
6272
+ msgid "Show repositories enabled on the host that are known to Katello"
6273
+ msgstr ""
6274
+
5766
6275
  msgid "Show the available repository types"
5767
6276
  msgstr "Verfügbare Repository-Typen anzeigen"
5768
6277
 
@@ -5784,6 +6293,9 @@ msgstr "Der einfache Inhaltszugriff wurde für '%{subject}' deaktiviert."
5784
6293
  msgid "Simple Content Access has been enabled for '%{subject}'."
5785
6294
  msgstr "Der einfache Inhaltszugriff wurde für '%{subject}' aktiviert."
5786
6295
 
6296
+ msgid "Simplified"
6297
+ msgstr ""
6298
+
5787
6299
  msgid "Single content view consisting of e.g. repositories"
5788
6300
  msgstr ""
5789
6301
 
@@ -5796,12 +6308,18 @@ msgstr "Überspringe den Metadaten-Check auf jedem Repository des Smart-Proxies"
5796
6308
  msgid "Skipped pulp_auth check after failed pulp check"
5797
6309
  msgstr "pulp_auth Check wurde übersprungen, nachdem Pulp-Check fehlschlug"
5798
6310
 
6311
+ msgid "Smart proxies"
6312
+ msgstr "Smart-Proxys"
6313
+
5799
6314
  msgid "Smart proxy IDs"
5800
6315
  msgstr "Smart-Proxy-IDs"
5801
6316
 
5802
6317
  msgid "Smart proxy content source not found!"
5803
6318
  msgstr "Smart Proxy-Inhaltsquelle nicht gefunden!"
5804
6319
 
6320
+ msgid "Sockets"
6321
+ msgstr "Sockets"
6322
+
5805
6323
  msgid "Sockets: %s"
5806
6324
  msgstr "Sockets: %s"
5807
6325
 
@@ -5814,7 +6332,7 @@ msgstr "Lösen Sie RPM-Abhängigkeiten standardmäßig beim Veröffentlichen von
5814
6332
  msgid "Solve dependencies"
5815
6333
  msgstr "Abhängigkeiten lösen"
5816
6334
 
5817
- msgid "Some hosts are ignored!"
6335
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5818
6336
  msgstr ""
5819
6337
 
5820
6338
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5838,15 +6356,15 @@ msgstr ""
5838
6356
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5839
6357
  msgstr "Beim Erstellen des Filters ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5840
6358
 
6359
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6360
+ msgstr ""
6361
+
5841
6362
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5842
6363
  msgstr ""
5843
6364
 
5844
6365
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5845
6366
  msgstr "Beim Löschen von Filtern ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5846
6367
 
5847
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
5848
- msgstr ""
5849
-
5850
6368
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5851
6369
  msgstr "Beim Löschen dieses Filters ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5852
6370
 
@@ -5892,9 +6410,15 @@ msgstr ""
5892
6410
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5893
6411
  msgstr ""
5894
6412
 
6413
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6414
+ msgstr ""
6415
+
5895
6416
  msgid "Something went wrong while loading the content views. See the logs for more information"
5896
6417
  msgstr ""
5897
6418
 
6419
+ msgid "Something went wrong while refreshing alternate content sources: "
6420
+ msgstr ""
6421
+
5898
6422
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5899
6423
  msgstr ""
5900
6424
 
@@ -5907,6 +6431,9 @@ msgstr ""
5907
6431
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5908
6432
  msgstr ""
5909
6433
 
6434
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6435
+ msgstr ""
6436
+
5910
6437
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5911
6438
  msgstr "Beim Abrufen der Inhaltsansichtskomponenten ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5912
6439
 
@@ -5925,9 +6452,33 @@ msgstr "Beim Abrufen des Inhaltsansichtsverlaufs ist ein Fehler aufgetreten! ${g
5925
6452
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5926
6453
  msgstr "Beim Abrufen der Inhaltsansichtsversionen ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5927
6454
 
6455
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6456
+ msgstr ""
6457
+
6458
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6459
+ msgstr ""
6460
+
6461
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6462
+ msgstr ""
6463
+
6464
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6465
+ msgstr ""
6466
+
5928
6467
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5929
6468
  msgstr ""
5930
6469
 
6470
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6471
+ msgstr ""
6472
+
6473
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6474
+ msgstr ""
6475
+
6476
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6477
+ msgstr ""
6478
+
6479
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6480
+ msgstr ""
6481
+
5931
6482
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5932
6483
  msgstr "Beim Abrufen der Repository-Typen ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5933
6484
 
@@ -5946,6 +6497,9 @@ msgstr "Quell-RPM"
5946
6497
  msgid "Source RPMs"
5947
6498
  msgstr "Quell-RPMs"
5948
6499
 
6500
+ msgid "Source type"
6501
+ msgstr ""
6502
+
5949
6503
  msgid "Specify an export chunk size less than 1_000_000 GB"
5950
6504
  msgstr "Geben Sie eine Exportchunkgröße von weniger als 1_000_000 GB an"
5951
6505
 
@@ -5968,13 +6522,13 @@ msgid "Start Time"
5968
6522
  msgstr "Startzeit"
5969
6523
 
5970
6524
  msgid "Start date"
5971
- msgstr ""
6525
+ msgstr "Startdatum"
5972
6526
 
5973
6527
  msgid "Starts"
5974
6528
  msgstr "Beginnt"
5975
6529
 
5976
6530
  msgid "State"
5977
- msgstr ""
6531
+ msgstr "Status"
5978
6532
 
5979
6533
  msgid "Status"
5980
6534
  msgstr "Status"
@@ -5989,7 +6543,7 @@ msgid "Stream"
5989
6543
  msgstr "Stream"
5990
6544
 
5991
6545
  msgid "Streamed"
5992
- msgstr ""
6546
+ msgstr "Durchreichen"
5993
6547
 
5994
6548
  msgid "Streams based on the host based on the installation status"
5995
6549
  msgstr ""
@@ -6003,12 +6557,12 @@ msgstr "Absenden"
6003
6557
  msgid "Subnet IDs"
6004
6558
  msgstr "Subnetz-IDs"
6005
6559
 
6560
+ msgid "Subpaths"
6561
+ msgstr ""
6562
+
6006
6563
  msgid "Subscription"
6007
6564
  msgstr "Subskription"
6008
6565
 
6009
- msgid "Subscription Allocation"
6010
- msgstr "Abonnementzuweisung"
6011
-
6012
6566
  msgid "Subscription Details"
6013
6567
  msgstr "Subskriptionsdetails"
6014
6568
 
@@ -6037,10 +6591,7 @@ msgid "Subscription Status"
6037
6591
  msgstr "Subskriptions Status"
6038
6592
 
6039
6593
  msgid "Subscription UUID"
6040
- msgstr ""
6041
-
6042
- msgid "Subscription Watch"
6043
- msgstr "Abonnement-Uhr"
6594
+ msgstr "Abonnement-UUID"
6044
6595
 
6045
6596
  msgid "Subscription connection enabled"
6046
6597
  msgstr ""
@@ -6066,6 +6617,9 @@ msgstr "Subskriptionsmanifest-Datei"
6066
6617
  msgid "Subscription not found"
6067
6618
  msgstr "Abonnement nicht gefunden"
6068
6619
 
6620
+ msgid "Subscription status"
6621
+ msgstr ""
6622
+
6069
6623
  msgid "Subscription was not persisted - %{error_message}"
6070
6624
  msgstr "Abonnement wurde nicht beibehalten - %{error_message}"
6071
6625
 
@@ -6084,6 +6638,9 @@ msgstr "Abonnements wurden gespeichert und werden aktualisiert."
6084
6638
  msgid "Subscriptions information based on selected activation keys:"
6085
6639
  msgstr "Subskriptionsinformationen basieren auf ausgewählten Aktivierungsschlüsseln:"
6086
6640
 
6641
+ msgid "Subscriptions service"
6642
+ msgstr ""
6643
+
6087
6644
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6088
6645
  msgstr "Substitutions-Mismatch. Inhalt kann nicht aktualisiert werden: (%{content}). Von [%{content_url}] bis [%{new_url}]."
6089
6646
 
@@ -6102,12 +6659,18 @@ msgstr "Synchronisationsplan erfolgreich geändert für %s Produkte"
6102
6659
  msgid "Successfully initiated removal of %s product(s)"
6103
6660
  msgstr "Entfernen von %s Produkten erfolgreich initiiert"
6104
6661
 
6662
+ msgid "Successfully refreshed."
6663
+ msgstr ""
6664
+
6105
6665
  msgid "Successfully removed %s Host(s)."
6106
6666
  msgstr "%s Host(s) erfolgreich entfernt."
6107
6667
 
6108
6668
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6109
6669
  msgstr "%{count} Inhaltshosts erfolgreich von Hostsammlung %{host_collection} entfernt."
6110
6670
 
6671
+ msgid "Successfully synced capsule."
6672
+ msgstr ""
6673
+
6111
6674
  msgid "Successfully synchronized."
6112
6675
  msgstr "Erfolgreich synchronisiert."
6113
6676
 
@@ -6189,9 +6752,15 @@ msgstr "Ein oder mehrere Produkte synchronisieren"
6189
6752
  msgid "Sync plan identifier to attach"
6190
6753
  msgstr "ID des zu verknüpfenden Synchronisationsplans"
6191
6754
 
6755
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6756
+ msgstr ""
6757
+
6192
6758
  msgid "Sync state"
6193
6759
  msgstr "Synchronisierungsstatus"
6194
6760
 
6761
+ msgid "Syncable export"
6762
+ msgstr ""
6763
+
6195
6764
  msgid "Synced "
6196
6765
  msgstr ""
6197
6766
 
@@ -6240,6 +6809,12 @@ msgstr "Systemstatus"
6240
6809
  msgid "System purpose"
6241
6810
  msgstr ""
6242
6811
 
6812
+ msgid "System purpose attributes updated"
6813
+ msgstr ""
6814
+
6815
+ msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6816
+ msgstr ""
6817
+
6243
6818
  msgid "Tag name"
6244
6819
  msgstr ""
6245
6820
 
@@ -6247,7 +6822,7 @@ msgid "Tags"
6247
6822
  msgstr "Tags"
6248
6823
 
6249
6824
  msgid "Task"
6250
- msgstr "Task"
6825
+ msgstr "Aufgabe"
6251
6826
 
6252
6827
  msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
6253
6828
  msgstr ""
@@ -6256,7 +6831,7 @@ msgid "Task ${task.humanized.action} has started."
6256
6831
  msgstr "Aufgabe ${task.humanized.action} wurde gestartet."
6257
6832
 
6258
6833
  msgid "Task canceled"
6259
- msgstr "Task abgebrochen"
6834
+ msgstr "Aufgabe abgebrochen"
6260
6835
 
6261
6836
  msgid "Task detail"
6262
6837
  msgstr "Aufgabendetail"
@@ -6270,9 +6845,6 @@ msgstr "Die \"%s\" Umgebung kann keinen Änderungssatz enthalten!"
6270
6845
  msgid "The Alternate Content Source type"
6271
6846
  msgstr ""
6272
6847
 
6273
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6274
- msgstr "Die Abonnementzuordnung, die das importierte Manifest bereitstellt, wurde entfernt. Bitte erstellen Sie eine neue Abonnementzuordnung und importieren Sie das neue Manifest."
6275
-
6276
6848
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6277
6849
  msgstr "Die URL, von der ein Sitzungstoken empfangen werden soll, z. mit Automation Hub verwendet."
6278
6850
 
@@ -6324,9 +6896,6 @@ msgstr "Die exportierte Inhaltsansichtsversion '%{content_view} %{current}' kann
6324
6896
  msgid "The field to sort the data by. Defaults to the created date."
6325
6897
  msgstr "Das Feld, nach dem die Daten sortiert werden sollen. Standardmäßig wird das Erstellungsdatum verwendet."
6326
6898
 
6327
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6328
- msgstr ""
6329
-
6330
6899
  msgid "The following hosts have errata that apply to them: "
6331
6900
  msgstr "DIe folgenden Hosts haben relevante Errata: "
6332
6901
 
@@ -6355,6 +6924,9 @@ msgstr ""
6355
6924
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6356
6925
  msgstr "Die Liste der Umgebungen, auf die die angegebene Inhaltsansichtsversion hochgestuft werden soll (ersetzt die ältere Version)"
6357
6926
 
6927
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6928
+ msgstr ""
6929
+
6358
6930
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6359
6931
  msgstr "Das in Organisation %{subject} importierte Manifest ist nicht mehr gültig. Bitte importieren Sie ein neues Manifest."
6360
6932
 
@@ -6398,8 +6970,8 @@ msgstr "Die Seite, auf die Sie zugreifen möchten, erfordert die Auswahl einer b
6398
6970
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6399
6971
  msgstr "Der Pfad %{real_path} scheint kein gültiges Repository zu sein. Wenn Sie der Meinung sind, dass dies ein Fehler ist, aktualisieren Sie bitte Ihr Manifest."
6400
6972
 
6401
- msgid "The port used by Pulp Crane to provide Docker Registries"
6402
- msgstr "Der von Pulp Crane verwendete Port, um Docker-Registries bereitzustellen"
6973
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6974
+ msgstr ""
6403
6975
 
6404
6976
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6405
6977
  msgstr "Die Übertragung von %{content_view} nach %{environment} wurde abgeschlossen. %{count} Errata stehen Ihren Hosts zur Verfügung."
@@ -6410,6 +6982,9 @@ msgstr "Die Übertragung von %{content_view} nach <b>%{environment}</b> wurde ab
6410
6982
  msgid "The repository is already enabled"
6411
6983
  msgstr "Das Repository ist bereits aktiviert"
6412
6984
 
6985
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6986
+ msgstr ""
6987
+
6413
6988
  msgid "The request did not contain any repository information."
6414
6989
  msgstr "Das Request beinhaltet keine Repository-Informationen"
6415
6990
 
@@ -6443,14 +7018,20 @@ msgstr "Die Synchronisation von \"%s\" wurde abgeschlossen. Nachfolgend sehen Si
6443
7018
  msgid "The token key to use for authentication."
6444
7019
  msgstr "Der für die Authentifizierung zu verwendende Tokenschlüssel."
6445
7020
 
7021
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7022
+ msgstr ""
7023
+
7024
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7025
+ msgstr ""
7026
+
6446
7027
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6447
7028
  msgstr "Der Inhaltstyp. Die folgenden Typen werden unterstützt: \"package\" und \"package_group\"."
6448
7029
 
6449
7030
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6450
7031
  msgstr "Der Inhaltstyp. Die folgenden Typen werden unterstützt: \"package\", \"package_group\" und \"errata\"."
6451
7032
 
6452
- msgid "There are no Subscription Allocations to display"
6453
- msgstr "Es sind keine Abonnementzuordnungen zum Anzeigen vorhanden"
7033
+ msgid "There are no Manifests to display"
7034
+ msgstr ""
6454
7035
 
6455
7036
  msgid "There are no Subscriptions to display"
6456
7037
  msgstr "Es sind keine Abonnements zum Anzeigen vorhanden"
@@ -6476,6 +7057,9 @@ msgstr "Entweder wurden keine Umgebungen oder Versionen angegeben, oder es wurde
6476
7057
  msgid "There is no Manifest History to display."
6477
7058
  msgstr "Es gibt keinen anzuzeigenden Manifestverlauf."
6478
7059
 
7060
+ msgid "There is no downloaded content to clean."
7061
+ msgstr ""
7062
+
6479
7063
  msgid "There is no such HTTP proxy"
6480
7064
  msgstr "Es gibt keinen solchen HTTP-Proxy"
6481
7065
 
@@ -6518,6 +7102,9 @@ msgstr ""
6518
7102
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6519
7103
  msgstr "Die Aktion benutzt den Katello-Agenten, der aktuell abgeschaltet ist. Benutze stattdesses Remote-Ausführung."
6520
7104
 
7105
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7106
+ msgstr ""
7107
+
6521
7108
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6522
7109
  msgstr "Dieses Zertifikat ermöglicht es dem Benutzer, die Repositorys in jeder Umgebung mit einem Browser anzuzeigen."
6523
7110
 
@@ -6542,7 +7129,7 @@ msgstr ""
6542
7129
  msgid "This host does not have any packages."
6543
7130
  msgstr ""
6544
7131
 
6545
- msgid "This host has errata that are applicable, but not installable."
7132
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6546
7133
  msgstr ""
6547
7134
 
6548
7135
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6551,14 +7138,14 @@ msgstr "Die Organisation dieses Gastgebers befindet sich im einfachen Inhaltszug
6551
7138
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6552
7139
  msgstr "Die Organisation dieses Gastgebers befindet sich im einfachen Inhaltszugriffsmodus. Automatisches Anhängen ist deaktiviert"
6553
7140
 
6554
- msgid "This is disabled because a manifest related task is in progress."
6555
- msgstr "Dies ist deaktiviert, da eine Manifest-bezogene Aufgabe ausgeführt wird."
6556
-
6557
7141
  msgid "This is disabled because a manifest task is in progress"
6558
7142
  msgstr "Dies ist deaktiviert, da eine Manifestaufgabe ausgeführt wird"
6559
7143
 
6560
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6561
- msgstr "Dies ist deaktiviert, da keine Verbindung zur Upstream-Abonnementzuordnung hergestellt werden konnte."
7144
+ msgid "This is disabled because a manifest-related task is in progress."
7145
+ msgstr ""
7146
+
7147
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7148
+ msgstr ""
6562
7149
 
6563
7150
  msgid "This is disabled because no manifest exists"
6564
7151
  msgstr "Dies ist deaktiviert, da kein Manifest vorhanden ist"
@@ -6572,10 +7159,10 @@ msgstr "Dies ist deaktiviert, da keine Abonnements ausgewählt sind."
6572
7159
  msgid "This is not a linked repository"
6573
7160
  msgstr "Dies ist kein verlinktes Repository"
6574
7161
 
6575
- msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
7162
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
6576
7163
  msgstr ""
6577
7164
 
6578
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7165
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6579
7166
  msgstr ""
6580
7167
 
6581
7168
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6626,12 +7213,24 @@ msgstr "Zeitstempel"
6626
7213
  msgid "Title"
6627
7214
  msgstr "Titel"
6628
7215
 
7216
+ msgid "To get started, add this host to a host collection."
7217
+ msgstr ""
7218
+
7219
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7220
+ msgstr ""
7221
+
7222
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7223
+ msgstr ""
7224
+
6629
7225
  msgid "Toggling Simple Content Access will refresh your manifest."
6630
7226
  msgstr "Durch Umschalten des einfachen Inhaltszugriffs wird Ihr Manifest aktualisiert."
6631
7227
 
6632
7228
  msgid "Total steps: "
6633
7229
  msgstr "Gesamtschritte:"
6634
7230
 
7231
+ msgid "Tracer"
7232
+ msgstr ""
7233
+
6635
7234
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6636
7235
  msgstr "Tracer hilft Administratoren, Anwendungen zu identifizieren, die nach dem Patchen eines Systems neu gestartet werden müssen."
6637
7236
 
@@ -6641,18 +7240,33 @@ msgstr "Tracer Profil erfolgreich hochgeladen"
6641
7240
  msgid "Traces"
6642
7241
  msgstr "Spuren"
6643
7242
 
7243
+ msgid "Traces are being enabled"
7244
+ msgstr ""
7245
+
6644
7246
  msgid "Traces are not enabled"
6645
7247
  msgstr ""
6646
7248
 
6647
7249
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6648
7250
  msgstr ""
6649
7251
 
7252
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7253
+ msgstr ""
7254
+
6650
7255
  msgid "Traces may be listed here after {pkgLink}."
6651
7256
  msgstr ""
6652
7257
 
7258
+ msgid "Traces not available"
7259
+ msgstr ""
7260
+
6653
7261
  msgid "Traces that require logout cannot be restarted remotely"
6654
7262
  msgstr ""
6655
7263
 
7264
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7265
+ msgstr ""
7266
+
7267
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7268
+ msgstr ""
7269
+
6656
7270
  msgid "Trigger an auto-attach of subscriptions"
6657
7271
  msgstr "Automatische Verknüpfung von Subskriptionen auslösen "
6658
7272
 
@@ -6683,9 +7297,18 @@ msgstr "Typ des Kontents"
6683
7297
  msgid "Type of content: \"cert\", \"gpg_key\""
6684
7298
  msgstr "Type of Kontents: \"cert\", \"gpg_key\""
6685
7299
 
7300
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7301
+ msgstr ""
7302
+
6686
7303
  msgid "URL"
6687
7304
  msgstr "URL"
6688
7305
 
7306
+ msgid "URL and paths"
7307
+ msgstr "URL und Pfade"
7308
+
7309
+ msgid "URL and subpaths"
7310
+ msgstr ""
7311
+
6689
7312
  msgid "URL needs to have a trailing /"
6690
7313
  msgstr "URL muss einen nachgestellten / haben"
6691
7314
 
@@ -6719,6 +7342,12 @@ msgstr "Verbindung kann nicht hergestellt werden"
6719
7342
  msgid "Unable to connect. Got: %s"
6720
7343
  msgstr "Verbindung fehlgeschlagen: %s"
6721
7344
 
7345
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7346
+ msgstr ""
7347
+
7348
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7349
+ msgstr ""
7350
+
6722
7351
  msgid "Unable to detect pulp storage"
6723
7352
  msgstr "Pulp-Speicher nicht gefunden"
6724
7353
 
@@ -6752,6 +7381,9 @@ msgstr "Inhaltshosts konnten nicht neu zugewiesen werden. Bitte geben Sie die Pa
6752
7381
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6753
7382
  msgstr "Systeme konnten nicht neu zugewiesen werden. Bitte prüfen Sie die Parameter system_content_view_id und system_environment_id."
6754
7383
 
7384
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7385
+ msgstr ""
7386
+
6755
7387
  msgid "Unable to send errata e-mail notification: %{error}"
6756
7388
  msgstr "Errata-E-Mail-Benachrichtigung kann nicht gesendet werden: %{error}"
6757
7389
 
@@ -6881,7 +7513,7 @@ msgstr "Synchronisationsplan aktualisieren"
6881
7513
  msgid "Update an activation key"
6882
7514
  msgstr "Aktivierungsschlüssel aktualisieren"
6883
7515
 
6884
- msgid "Update an alternate content source"
7516
+ msgid "Update an alternate content source."
6885
7517
  msgstr ""
6886
7518
 
6887
7519
  msgid "Update an environment"
@@ -7037,6 +7669,9 @@ msgstr ""
7037
7669
  msgid "Upload request id"
7038
7670
  msgstr "Anfrage-ID hochladen"
7039
7671
 
7672
+ msgid "Upstream Candlepin"
7673
+ msgstr ""
7674
+
7040
7675
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7041
7676
  msgstr ""
7042
7677
 
@@ -7085,6 +7720,15 @@ msgstr "Nutzungstyp"
7085
7720
  msgid "Usage of host"
7086
7721
  msgstr "Verwendung von Host"
7087
7722
 
7723
+ msgid "Usage type"
7724
+ msgstr ""
7725
+
7726
+ msgid "Use HTTP Proxies"
7727
+ msgstr ""
7728
+
7729
+ msgid "Use HTTP proxies"
7730
+ msgstr ""
7731
+
7088
7732
  msgid "Use remote execution by default"
7089
7733
  msgstr "Standardmäßig Remote-Ausführung verwenden"
7090
7734
 
@@ -7130,6 +7774,9 @@ msgstr "Gültig"
7130
7774
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7131
7775
  msgstr "Der Wert muss entweder ein boolescher Wert oder 'Standard' für 'aktiviert' sein."
7132
7776
 
7777
+ msgid "Verify SSL"
7778
+ msgstr "SSL überprüfen"
7779
+
7133
7780
  msgid "Verify checksum"
7134
7781
  msgstr "Prüfsumme überprüfen"
7135
7782
 
@@ -7157,6 +7804,12 @@ msgstr ""
7157
7804
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7158
7805
  msgstr ""
7159
7806
 
7807
+ msgid "Version ${versionOne}"
7808
+ msgstr "Version ${versionOne}"
7809
+
7810
+ msgid "Version ${versionTwo}"
7811
+ msgstr "Version ${versionTwo}"
7812
+
7160
7813
  msgid "Version details updated."
7161
7814
  msgstr ""
7162
7815
 
@@ -7167,7 +7820,10 @@ msgid "Versions"
7167
7820
  msgstr "Versionen"
7168
7821
 
7169
7822
  msgid "Versions "
7170
- msgstr ""
7823
+ msgstr "Versionen "
7824
+
7825
+ msgid "Versions to compare"
7826
+ msgstr "Zu vergleichende Versionen"
7171
7827
 
7172
7828
  msgid "Versions to exclusively include in the action"
7173
7829
  msgstr ""
@@ -7181,30 +7837,45 @@ msgstr "Versionen werden hier angezeigt, wenn die Inhaltsansicht veröffentlicht
7181
7837
  msgid "View %{view} has not been promoted to %{env}"
7182
7838
  msgstr "Ansicht %{view} wurde bereits übertragen in %{env}"
7183
7839
 
7840
+ msgid "View Subscription Usage"
7841
+ msgstr ""
7842
+
7184
7843
  msgid "View a report of the affected hosts"
7185
7844
  msgstr "Sehen Sie sich einen Bericht der betroffenen Hosts an"
7186
7845
 
7846
+ msgid "View applicable errata"
7847
+ msgstr ""
7848
+
7849
+ msgid "View by"
7850
+ msgstr ""
7851
+
7187
7852
  msgid "View matching content"
7188
7853
  msgstr ""
7189
7854
 
7190
7855
  msgid "View tasks "
7856
+ msgstr "Aufgaben ansehen"
7857
+
7858
+ msgid "View the Content Views page"
7191
7859
  msgstr ""
7192
7860
 
7193
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7861
+ msgid "View the job"
7194
7862
  msgstr ""
7195
7863
 
7196
7864
  msgid "Virtual"
7197
7865
  msgstr "Virtuell"
7198
7866
 
7867
+ msgid "Virtual guests"
7868
+ msgstr ""
7869
+
7870
+ msgid "Virtual host"
7871
+ msgstr ""
7872
+
7199
7873
  msgid "Waiting to start."
7200
7874
  msgstr ""
7201
7875
 
7202
7876
  msgid "Warning"
7203
7877
  msgstr "Warnung"
7204
7878
 
7205
- msgid "What's next?"
7206
- msgstr ""
7207
-
7208
7879
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7209
7880
  msgstr ""
7210
7881
 
@@ -7244,6 +7915,9 @@ msgstr "Ob eine externe Kapsel nach dem Hochladen synchronisiert werden soll ode
7244
7915
  msgid "Whether to include available content attribute in results"
7245
7916
  msgstr "Ob verfügbare Inhaltsattribute in Ergebnisse eingeschlossen werden sollen"
7246
7917
 
7918
+ msgid "Whether to turn on Simple Content Access for the organization."
7919
+ msgstr ""
7920
+
7247
7921
  msgid "Workers"
7248
7922
  msgstr "Worker"
7249
7923
 
@@ -7316,9 +7990,6 @@ msgstr "Du hast Abonnements, die innerhalb von %s Tagen ablaufen"
7316
7990
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7317
7991
  msgstr "Du hast nicht gespeicherte Änderungen. Möchten Sie den Vorgang beenden, ohne Ihre Änderungen zu speichern?"
7318
7992
 
7319
- msgid "You may want to check the host's content view and lifecycle environment."
7320
- msgstr ""
7321
-
7322
7993
  msgid "You were not allowed to add %s"
7323
7994
  msgstr "Sie haben keine Berechtigung, %s hinzuzufügen"
7324
7995
 
@@ -7340,6 +8011,12 @@ msgstr "Deine Such-Anfrage war ungültig. Bitte überarbeite sie und versuche es
7340
8011
  msgid "Your search returned no matching "
7341
8012
  msgstr ""
7342
8013
 
8014
+ msgid "Your search returned no matching ${name}."
8015
+ msgstr ""
8016
+
8017
+ msgid "Your search returned no matching DEBs."
8018
+ msgstr ""
8019
+
7343
8020
  msgid "Your search returned no matching Module streams."
7344
8021
  msgstr ""
7345
8022
 
@@ -7352,12 +8029,18 @@ msgstr ""
7352
8029
  msgid "Your search returned no matching hosts."
7353
8030
  msgstr ""
7354
8031
 
8032
+ msgid "Yum"
8033
+ msgstr ""
8034
+
7355
8035
  msgid "Yum Metadata: %s"
7356
8036
  msgstr "Yum Metadaten: %s"
7357
8037
 
7358
8038
  msgid "a content unit"
7359
8039
  msgstr ""
7360
8040
 
8041
+ msgid "a custom CDN URL"
8042
+ msgstr ""
8043
+
7361
8044
  msgid "a deb package"
7362
8045
  msgstr ""
7363
8046
 
@@ -7445,6 +8128,12 @@ msgstr "Nach Registrierung automatisch mit Subskriptionen verknüpfen"
7445
8128
  msgid "base url to perform repo discovery on"
7446
8129
  msgstr "Basis-URL zur Durchführung der Suche"
7447
8130
 
8131
+ msgid "bug fix"
8132
+ msgstr ""
8133
+
8134
+ msgid "bug fixes"
8135
+ msgstr ""
8136
+
7448
8137
  msgid "bulk add filter rules"
7449
8138
  msgstr ""
7450
8139
 
@@ -7508,8 +8197,8 @@ msgstr "darf keine Filter enthalten, deren Repositorys nicht zu dieser Inhaltsan
7508
8197
  msgid "cannot contain more than %s characters"
7509
8198
  msgstr "darf nicht mehr als %s Zeichen enthalten"
7510
8199
 
7511
- msgid "checking Candlepin task status"
7512
- msgstr "Candlepin-Aufgabenstatus prüfen"
8200
+ msgid "checking %s task status"
8201
+ msgstr ""
7513
8202
 
7514
8203
  msgid "checking Pulp task status"
7515
8204
  msgstr "Status der Pulp-Aufgabe prüfen"
@@ -7529,9 +8218,6 @@ msgstr "Bedingte Paketnamen, die in die Paketgruppe aufgenommen werden sollen"
7529
8218
  msgid "content release version"
7530
8219
  msgstr "Inhalts-Release-Version"
7531
8220
 
7532
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7533
- msgstr "Kontent-Typ ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7534
-
7535
8221
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7536
8222
  msgstr ""
7537
8223
 
@@ -7586,8 +8272,8 @@ msgstr "Zu vergleichende Inhaltsansichtsversionen"
7586
8272
  msgid "create a filter for a content view"
7587
8273
  msgstr "Filter für eine Inhaltsansicht erstellen"
7588
8274
 
7589
- msgid "deb Packages"
7590
- msgstr "deb Packete"
8275
+ msgid "deb, package, package group, or docker tag names"
8276
+ msgstr ""
7591
8277
 
7592
8278
  msgid "deb_ids is not an array"
7593
8279
  msgstr "deb_ids ist kein Array"
@@ -7613,12 +8299,21 @@ msgstr "Beschreibung des Filters"
7613
8299
  msgid "description of the repository"
7614
8300
  msgstr "Beschreibung des Repositorys"
7615
8301
 
8302
+ msgid "disk"
8303
+ msgstr "Festplatte"
8304
+
7616
8305
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7617
8306
  msgstr ""
7618
8307
 
7619
8308
  msgid "enables or disables synchronization"
7620
8309
  msgstr "aktiviert oder deaktiviert die Synchronisation"
7621
8310
 
8311
+ msgid "enhancement"
8312
+ msgstr ""
8313
+
8314
+ msgid "enhancements"
8315
+ msgstr ""
8316
+
7622
8317
  msgid "environment"
7623
8318
  msgstr "Umgebung"
7624
8319
 
@@ -7701,7 +8396,7 @@ msgid "force content view promotion and bypass lifecycle environment restriction
7701
8396
  msgstr "Übertragung der Inhaltsansicht erzwingen und Einschränkungen der Lebenszyklusumgebung umgehen"
7702
8397
 
7703
8398
  msgid "foreman-tasks service not running or is not ready yet"
7704
- msgstr "Foreman-Tasks Service läuft nicht oder ist noch nicht bereit"
8399
+ msgstr "Dienst Foreman-Tasks läuft nicht oder ist noch nicht bereit"
7705
8400
 
7706
8401
  msgid "has already been taken"
7707
8402
  msgstr "wird bereits verwendet"
@@ -7742,8 +8437,8 @@ msgstr "IDs, nach denen Inhalte gefiltert werden sollen"
7742
8437
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7743
8438
  msgstr "Wenn wahr, überprüft Katello, ob die SSL-Zertifikate der Upstream-URL von einer vertrauenswürdigen Zertifizierungsstelle signiert sind"
7744
8439
 
7745
- msgid "initiating Candlepin task"
7746
- msgstr "Candlepin-Aufgabe einleiten"
8440
+ msgid "initiating %s task"
8441
+ msgstr ""
7747
8442
 
7748
8443
  msgid "initiating Pulp task"
7749
8444
  msgstr "Pulp-Aufgabe eingeleitet"
@@ -7802,9 +8497,6 @@ msgstr "Kennung der Umgebung"
7802
8497
  msgid "label of the repository"
7803
8498
  msgstr "Label des Repositorys"
7804
8499
 
7805
- msgid "limit to only repositories of this type"
7806
- msgstr "auf nur Repositorys dieses Typs beschränken"
7807
-
7808
8500
  msgid "limit to only repositories with this download policy"
7809
8501
  msgstr "Beschränken Sie sich auf nur Repositorys mit dieser Download-Richtlinie"
7810
8502
 
@@ -7922,9 +8614,6 @@ msgstr "Manifestchronik für Subskriptionen laden"
7922
8614
  msgid "of environment must be unique within one organization"
7923
8615
  msgstr "der Umgebung muss eindeutig innerhalb einer Organisation sein"
7924
8616
 
7925
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7926
- msgstr "nur Repositorys mit mindestens einem der angegebenen Inhaltstypen, z. B.: rpm , erratum"
7927
-
7928
8617
  msgid "only show the repositories readable by this user with this username"
7929
8618
  msgstr "nur die Repositorys anzeigen, die von diesem Benutzer mit diesem Benutzernamen gelesen werden können"
7930
8619
 
@@ -8036,6 +8725,15 @@ msgstr "Stammknoten von Antworten einzelner Ressourcen (optional)"
8036
8725
  msgid "rule identifier"
8037
8726
  msgstr "Regel-ID"
8038
8727
 
8728
+ msgid "run job invocation"
8729
+ msgstr ""
8730
+
8731
+ msgid "security advisories"
8732
+ msgstr ""
8733
+
8734
+ msgid "security advisory"
8735
+ msgstr ""
8736
+
8039
8737
  msgid "service level"
8040
8738
  msgstr "Servicelevel"
8041
8739
 
@@ -8088,10 +8786,7 @@ msgid "the following attributes can not be updated for the Red Hat provider: [ %
8088
8786
  msgstr "Die folgenden Attribute können nicht für den Red Hat Anbieter aktualisiert werden: [ %s ]"
8089
8787
 
8090
8788
  msgid "to"
8091
- msgstr ""
8092
-
8093
- msgid "to update configuration on all hosts, or"
8094
- msgstr ""
8789
+ msgstr "bis"
8095
8790
 
8096
8791
  msgid "true if the latest version of the component's content view is desired"
8097
8792
  msgstr "Wahr falls die aktuellste Version des Kontent-Views des Komponenten gewünscht ist"
@@ -8105,12 +8800,9 @@ msgstr "\"true\", falls dieses Repository mittels HTTP veröffentlicht werden ka
8105
8800
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8106
8801
  msgstr ""
8107
8802
 
8108
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8803
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8109
8804
  msgstr ""
8110
8805
 
8111
- msgid "type of repo"
8112
- msgstr "Art des Repositorys"
8113
-
8114
8806
  msgid "types of filters"
8115
8807
  msgstr "Arten von Filtern"
8116
8808
 
@@ -8118,14 +8810,11 @@ msgid "unknown permission for %s"
8118
8810
  msgstr "unbekannte Berechtigung für %s"
8119
8811
 
8120
8812
  msgid "unlimited"
8121
- msgstr ""
8813
+ msgstr "unbegrenzt"
8122
8814
 
8123
8815
  msgid "update a filter"
8124
8816
  msgstr "Filter aktualisieren"
8125
8817
 
8126
- msgid "update configuration on the hosts manually:"
8127
- msgstr ""
8128
-
8129
8818
  msgid "updating package group..."
8130
8819
  msgstr "Paketgruppe wird aktualisiert …"
8131
8820
 
@@ -8153,8 +8842,8 @@ msgstr "über Remote-Ausführung"
8153
8842
  msgid "view content view tabs."
8154
8843
  msgstr ""
8155
8844
 
8156
- msgid "waiting for Candlepin to finish the task"
8157
- msgstr "Warten, bis Candlepin die Aufgabe abgeschlossen hat"
8845
+ msgid "waiting for %s to finish the task"
8846
+ msgstr ""
8158
8847
 
8159
8848
  msgid "waiting for Pulp to finish the task"
8160
8849
  msgstr "Warten, bis Pulp die Aufgabe abgeschlossen hat"