katello 4.4.2.2 → 4.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/de/katello.po CHANGED
@@ -10,26 +10,26 @@
10
10
  # stbenjam <stephen@redhat.com>, 2017
11
11
  # Christina Gurski <Gurski_christina@yahoo.de>, 2017
12
12
  # Markus Bucher <bucher@atix.de>, 2019
13
- # simon11 <transifex@stieger.co>, 2020
14
- # Michael Moll, 2020
15
- # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2020
16
- # 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2021
17
- # Ettore Atalan <atalanttore@googlemail.com>, 2021
13
+ # 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2020
18
14
  # Bernhard Suttner <bernhard.suttner@atix.de>, 2021
19
- # Lukáš Zapletal, 2021
20
- # Wiederoder <stefanwiederoder@googlemail.com>, 2021
21
15
  # abf90805572190d649c59f7a021d76cb, 2021
22
- # Bryan Kearney <bryan.kearney@gmail.com>, 2021
23
16
  # Martin Zimmermann <martin.zimmermann@gmx.com>, 2021
24
- # Crited <Alexander.Stoll@netways.de>, 2021
25
- # Patrick Dolinic, 2021
17
+ # 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
+ # simon11 <transifex@stieger.co>, 2022
25
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
26
26
  #
27
27
  msgid ""
28
28
  msgstr ""
29
29
  "Project-Id-Version: katello 2.5.0\n"
30
30
  "Report-Msgid-Bugs-To: \n"
31
31
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
32
- "Last-Translator: Patrick Dolinic, 2021\n"
32
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
33
33
  "Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
34
34
  "MIME-Version: 1.0\n"
35
35
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -71,6 +71,9 @@ msgstr ""
71
71
  msgid " ago."
72
72
  msgstr ""
73
73
 
74
+ msgid " and"
75
+ msgstr ""
76
+
74
77
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
75
78
  msgstr ""
76
79
 
@@ -133,6 +136,9 @@ msgstr "%swurde bereits gelöscht"
133
136
  msgid "%s is not a valid package name"
134
137
  msgstr "%s ist kein gültiger Paketname"
135
138
 
139
+ msgid "%s is not a valid path"
140
+ msgstr ""
141
+
136
142
  msgid "%s is required"
137
143
  msgstr ""
138
144
 
@@ -382,9 +388,6 @@ msgstr "Eine neue Version von"
382
388
  msgid "A post-promotion summary of hosts with installable errata"
383
389
  msgstr "Eine Zusammenfassung (nach Übertragung) der Hosts mit installierbaren Errata"
384
390
 
385
- msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
386
- msgstr "Ein Server, der im getrennten Modus betrieben wird, kommuniziert nicht mit dem Red Hat CDN."
387
-
388
391
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
389
392
  msgstr "Ein Servicelevel für automatische Neusubskription, z. B. SELBSTHILFE"
390
393
 
@@ -403,12 +406,18 @@ msgstr ""
403
406
  msgid "About page"
404
407
  msgstr "Über die Seite"
405
408
 
409
+ msgid "Abstract"
410
+ msgstr ""
411
+
406
412
  msgid "Abstract async task"
407
413
  msgstr "Übersicht asynchrone Task"
408
414
 
409
415
  msgid "Accept action timeout"
410
416
  msgstr "Aktionszeitüberschreitung akzeptieren"
411
417
 
418
+ msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
419
+ msgstr ""
420
+
412
421
  msgid "Account Number"
413
422
  msgstr "Account-Nummer:"
414
423
 
@@ -427,12 +436,12 @@ msgstr "Aktion, die auf ausgewählten Hosts nicht ausgeführt werden darf."
427
436
  msgid "Action with sub plans"
428
437
  msgstr "Aktion mit Unterplänen"
429
438
 
430
- msgid "Actions"
431
- msgstr ""
432
-
433
439
  msgid "Activation Keys"
434
440
  msgstr "Aktivierungsschlüssel"
435
441
 
442
+ msgid "Activation key"
443
+ msgstr ""
444
+
436
445
  msgid "Activation key ID"
437
446
  msgstr "Aktivierungsschlüssel-ID"
438
447
 
@@ -464,7 +473,7 @@ msgid "Add"
464
473
  msgstr "Hinzufügen"
465
474
 
466
475
  msgid "Add Bookmark"
467
- msgstr ""
476
+ msgstr "Lesezeichen hinzufügen"
468
477
 
469
478
  msgid "Add RPM rule"
470
479
  msgstr ""
@@ -499,6 +508,12 @@ msgstr ""
499
508
  msgid "Add filters using the 'Add filter' button above."
500
509
  msgstr "Fügen Sie Filter über die Schaltfläche \"Filter hinzufügen\" oben hinzu."
501
510
 
511
+ msgid "Add host to collections"
512
+ msgstr ""
513
+
514
+ msgid "Add host to host collections"
515
+ msgstr ""
516
+
502
517
  msgid "Add host to the host collection"
503
518
  msgstr "Host zur Hostsammlung hinzufügen"
504
519
 
@@ -523,6 +538,9 @@ msgstr ""
523
538
  msgid "Add rule"
524
539
  msgstr ""
525
540
 
541
+ msgid "Add source"
542
+ msgstr ""
543
+
526
544
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
527
545
  msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription Management verwendet werden"
528
546
 
@@ -535,9 +553,6 @@ msgstr ""
535
553
  msgid "Add to this filter using the 'Add filter rule' button."
536
554
  msgstr ""
537
555
 
538
- msgid "Add traces by applying updates on this host."
539
- msgstr ""
540
-
541
556
  msgid "Added"
542
557
  msgstr "Hinzugefügt"
543
558
 
@@ -566,13 +581,13 @@ msgid "Agent action"
566
581
  msgstr "Agentenaktion"
567
582
 
568
583
  msgid "All"
569
- msgstr ""
584
+ msgstr "Alle"
570
585
 
571
586
  msgid "All Media"
572
587
  msgstr "Alle Medien"
573
588
 
574
589
  msgid "All Repositories"
575
- msgstr ""
590
+ msgstr "Alle Repositorys"
576
591
 
577
592
  msgid "All available architectures for this repo are enabled."
578
593
  msgstr "Alle verfügbaren Architekturen für dieses Repository sind aktiviert."
@@ -580,29 +595,53 @@ msgstr "Alle verfügbaren Architekturen für dieses Repository sind aktiviert."
580
595
  msgid "All errata applied"
581
596
  msgstr "Alle Errata angewendet"
582
597
 
598
+ msgid "All errata up-to-date"
599
+ msgstr ""
600
+
601
+ msgid "All subpaths must have a slash at the end and none at the front"
602
+ msgstr ""
603
+
583
604
  msgid "All versions"
584
605
  msgstr ""
585
606
 
586
607
  msgid "All versions will be removed from these environments"
587
608
  msgstr ""
588
609
 
589
- msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
590
- msgstr "Erlauben Sie Host-Registrierungen, 'Host Profile Assume' zu umgehen, solange sich der Host im Build-Modus befindet."
591
-
592
610
  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)"
593
611
  msgstr ""
594
612
 
613
+ msgid "Allow deleting repositories in published content views"
614
+ msgstr ""
615
+
616
+ msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
617
+ msgstr ""
618
+
595
619
  msgid "Allow hosts to re-register themselves only when they are in build mode"
596
620
  msgstr "Erlauben Sie Hosts, sich nur neu zu registrieren, wenn sie sich im Build-Modus befinden"
597
621
 
598
- 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."
599
- msgstr "Erlauben Sie neuen Host-Registrierungen, registrierte Profile mit übereinstimmendem Hostnamen zu übernehmen, solange die registrierende DMI-UUID nicht von einem anderen Host verwendet wird."
622
+ 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
+ msgstr ""
600
624
 
601
625
  msgid "Also include the latest upgradable package version for each host package"
602
626
  msgstr ""
603
627
 
604
- msgid "Alter a hosts host collections"
605
- msgstr "Ändern von Hosts und Hostsammlungen"
628
+ msgid "Alter a host's host collections"
629
+ msgstr ""
630
+
631
+ msgid "Alternate Content Sources"
632
+ msgstr ""
633
+
634
+ msgid "Alternate content source ${name} created"
635
+ msgstr ""
636
+
637
+ msgid "Alternate content source ID"
638
+ msgstr ""
639
+
640
+ msgid "Alternate content source deleted"
641
+ msgstr ""
642
+
643
+ msgid "Alternate content sources"
644
+ msgstr ""
606
645
 
607
646
  msgid "Always Use Latest (currently %{version})"
608
647
  msgstr "Immer das Neueste verwenden (derzeit %{version})"
@@ -613,6 +652,9 @@ msgstr "Immer auf die neueste Version aktualisieren"
613
652
  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."
614
653
  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."
615
654
 
655
+ msgid "An alternate content source can be added by using the \"Add source\" button above."
656
+ msgstr ""
657
+
616
658
  msgid "An environment is missing a prior"
617
659
  msgstr "Eine Umgebung fehlt ein Prior"
618
660
 
@@ -653,13 +695,13 @@ msgid "Applicability Batch Size"
653
695
  msgstr "Anwendbarkeit Chargengröße"
654
696
 
655
697
  msgid "Applicable Content Hosts"
656
- msgstr ""
698
+ msgstr "Anwendbare Inhalts-Hosts"
657
699
 
658
700
  msgid "Application"
659
- msgstr ""
701
+ msgstr "Anwendung"
660
702
 
661
703
  msgid "Apply"
662
- msgstr ""
704
+ msgstr "Anwenden"
663
705
 
664
706
  msgid "Apply Erratum"
665
707
  msgstr ""
@@ -756,6 +798,9 @@ msgstr "Weisen Sie die Release-Version einem oder mehreren Hosts zu"
756
798
  msgid "Associated location IDs"
757
799
  msgstr "Zugehörige Standort-IDs"
758
800
 
801
+ msgid "Associated version"
802
+ msgstr ""
803
+
759
804
  msgid "Associations"
760
805
  msgstr "Zuweisungen"
761
806
 
@@ -817,11 +862,14 @@ msgid "Available Repositories"
817
862
  msgstr "Verfügbare Repositorys"
818
863
 
819
864
  msgid "Available Schema Versions"
820
- msgstr ""
865
+ msgstr "Verfügbare Schemaversionen"
821
866
 
822
867
  msgid "Backend System Status"
823
868
  msgstr "Back-End-Systemstatus"
824
869
 
870
+ msgid "Base URL for finding alternate content"
871
+ msgstr ""
872
+
825
873
  msgid "Base URL to perform repo discovery on"
826
874
  msgstr "Basis-URL für die Repository-Erkennung auf"
827
875
 
@@ -831,9 +879,21 @@ msgstr "Zu deaktivierende Basisarchitektur"
831
879
  msgid "Basearch to enable"
832
880
  msgstr "Zu aktivierende Basisarchitektur"
833
881
 
882
+ msgid "Basic authentication password"
883
+ msgstr ""
884
+
885
+ msgid "Basic authentication username"
886
+ msgstr ""
887
+
834
888
  msgid "Batch size to sync repositories in."
835
889
  msgstr "Batchgröße zum Synchronisieren von Repositorys."
836
890
 
891
+ msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
892
+ msgstr ""
893
+
894
+ msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
895
+ msgstr ""
896
+
837
897
  msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
838
898
  msgstr ""
839
899
 
@@ -847,7 +907,7 @@ msgid "Bind entitlements to an allocation"
847
907
  msgstr "Entitlements an eine Allokation binden"
848
908
 
849
909
  msgid "Bookmark this search"
850
- msgstr ""
910
+ msgstr "Diese Suche als Lesezeichen abspeichern"
851
911
 
852
912
  msgid "Bookmarks marked as public are available to all users"
853
913
  msgstr ""
@@ -870,6 +930,9 @@ msgstr ""
870
930
  msgid "Bulk generate applicability for hosts"
871
931
  msgstr "Anwendbarkeit von Massengenerierung für Hosts"
872
932
 
933
+ msgid "Bulk remove versions from a content view and reassign systems and keys"
934
+ msgstr ""
935
+
873
936
  msgid "CDN Configuration"
874
937
  msgstr ""
875
938
 
@@ -882,6 +945,12 @@ msgstr ""
882
945
  msgid "CDN SSL version"
883
946
  msgstr "CDN-SSL-Version"
884
947
 
948
+ msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
949
+ msgstr ""
950
+
951
+ msgid "CDN configuration type. One of %s."
952
+ msgstr ""
953
+
885
954
  msgid "CDN loading error: %s not found"
886
955
  msgstr "CDN-Ladefehler: %s nicht gefunden"
887
956
 
@@ -895,7 +964,7 @@ msgid "CVE identifier"
895
964
  msgstr "CVE-ID"
896
965
 
897
966
  msgid "CVEs"
898
- msgstr ""
967
+ msgstr "CVEs"
899
968
 
900
969
  msgid "Calculate Applicable Errata based on a particular Content View"
901
970
  msgstr "Relevante Errata basierend auf einer bestimmten Inhaltsansicht berechnen"
@@ -903,8 +972,11 @@ msgstr "Relevante Errata basierend auf einer bestimmten Inhaltsansicht berechnen
903
972
  msgid "Calculate Applicable Errata based on a particular Environment"
904
973
  msgstr "Relevante Errata basierend auf einer bestimmten Umgebung berechnen"
905
974
 
906
- msgid "Calculate errata host status based only on errata in a Host's Content View and Lifecycle Environment"
907
- msgstr "Errata-Hoststatus nur basierend auf Errata in der Inhaltsansicht und Lebenszyklusumgebung eines Hosts berechnen"
975
+ msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
976
+ msgstr ""
977
+
978
+ msgid "Can communicate with the Red Hat Portal for subscriptions."
979
+ msgstr ""
908
980
 
909
981
  msgid "Can not add product %s because it is disabled."
910
982
  msgstr "Produkt %s kann nicht hinzugefügt werden, da es deaktiviert ist."
@@ -1026,6 +1098,9 @@ msgstr "Inhaltsblöcke ohne Inhaltsblocktyp können nicht übergeben werden"
1026
1098
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1027
1099
  msgstr "Inkrementelle Aktualisierung auf Verbund-Inhaltsansichtsversion kann nicht durchgeführt werden (%{name} Version %{version}"
1028
1100
 
1101
+ msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1102
+ msgstr ""
1103
+
1029
1104
  msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
1030
1105
  msgstr "Umgebung kann nicht in anderer Reihenfolge übertragen werden. Erzwingen Sie die Übertragung, um diese Einschränkung zu umgehen"
1031
1106
 
@@ -1077,6 +1152,18 @@ msgstr "Container-Image-Inhalt kann nicht hochgeladen werden."
1077
1152
  msgid "Cannot validate contents on non-yum/deb repositories."
1078
1153
  msgstr "Inhalte in nicht-yum/deb-Repositorys können nicht validiert werden."
1079
1154
 
1155
+ msgid "Capacity"
1156
+ msgstr ""
1157
+
1158
+ msgid "Change Content Source"
1159
+ msgstr ""
1160
+
1161
+ msgid "Change content source"
1162
+ msgstr ""
1163
+
1164
+ msgid "Change host content source"
1165
+ msgstr ""
1166
+
1080
1167
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1081
1168
  msgstr "Prüfen Sie, ob eine Verbindung zu Red Hat Subscription Management hergestellt werden kann."
1082
1169
 
@@ -1089,6 +1176,9 @@ msgstr "Überprüfen Sie die Dienste, bevor Sie Maßnahmen ergreifen"
1089
1176
  msgid "Checksum"
1090
1177
  msgstr "Prüfsumme"
1091
1178
 
1179
+ msgid "Checksum is a required parameter."
1180
+ msgstr ""
1181
+
1092
1182
  msgid "Checksum of file to upload"
1093
1183
  msgstr "Checksumme der Datei zum hochladen"
1094
1184
 
@@ -1104,6 +1194,9 @@ msgstr "Löschen Sie alle vorherigen Registrierungen und führen Sie den Subscri
1104
1194
  msgid "Click here to go to the tasks page for the task."
1105
1195
  msgstr "Klicken Sie hier, um zur Aufgabenseite für die Aufgabe zu gelangen."
1106
1196
 
1197
+ msgid "Click {update} below to save changes."
1198
+ msgstr ""
1199
+
1107
1200
  msgid "Clone"
1108
1201
  msgstr "Klonen"
1109
1202
 
@@ -1119,8 +1212,14 @@ msgstr "Kombiniertes Profil-Update"
1119
1212
  msgid "Combined Profile Update for %s"
1120
1213
  msgstr "Kombiniertes Profil-Update für %s"
1121
1214
 
1122
- msgid "Comma-separated list of tags to sync for Container Image repository"
1123
- msgstr "Durch Kommas getrennte Liste von Tags, die für das Container Image-Repository synchronisiert werden sollen"
1215
+ msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1216
+ msgstr ""
1217
+
1218
+ msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
1219
+ msgstr ""
1220
+
1221
+ msgid "Comma-separated list of tags to sync for a container image repository"
1222
+ msgstr ""
1124
1223
 
1125
1224
  msgid "Component"
1126
1225
  msgstr "Komponente"
@@ -1135,10 +1234,10 @@ msgid "Component content views"
1135
1234
  msgstr ""
1136
1235
 
1137
1236
  msgid "Components"
1138
- msgstr ""
1237
+ msgstr "Komponenten"
1139
1238
 
1140
1239
  msgid "Composite"
1141
- msgstr ""
1240
+ msgstr "Verbund"
1142
1241
 
1143
1242
  msgid "Composite Content View"
1144
1243
  msgstr "Zusammengesetzte Inhaltsansicht"
@@ -1206,6 +1305,9 @@ msgstr ""
1206
1305
  msgid "Container manifests"
1207
1306
  msgstr ""
1208
1307
 
1308
+ msgid "Container tags"
1309
+ msgstr ""
1310
+
1209
1311
  msgid "Content"
1210
1312
  msgstr "Inhalt"
1211
1313
 
@@ -1218,7 +1320,7 @@ msgstr "Kontent-Kredential ID"
1218
1320
  msgid "Content Credential numeric identifier"
1219
1321
  msgstr "Kontent-Kredentials Numerischer-Identifizierer"
1220
1322
 
1221
- msgid "Content Credential to use for SSL CA"
1323
+ msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
1222
1324
  msgstr ""
1223
1325
 
1224
1326
  msgid "Content Credentials"
@@ -1251,9 +1353,6 @@ msgstr "Inhaltsansicht"
1251
1353
  msgid "Content View %{view}: Versions: %{versions}"
1252
1354
  msgstr "Inhaltsansicht %{view}: Versionen: %{versions}"
1253
1355
 
1254
- msgid "Content View Dependency Solving Default"
1255
- msgstr "Inhaltsansichts-Abhängigkeitsauflösungsstandard"
1256
-
1257
1356
  msgid "Content View Details"
1258
1357
  msgstr "Inhaltsdetails anzeigen"
1259
1358
 
@@ -1266,11 +1365,8 @@ msgstr "Kennung des Inhaltsansichtsfilters"
1266
1365
  msgid "Content View ID"
1267
1366
  msgstr "Inhaltsansichts-ID"
1268
1367
 
1269
- msgid "Content View Label"
1270
- msgstr ""
1271
-
1272
1368
  msgid "Content View Name"
1273
- msgstr ""
1369
+ msgstr "Name der Inhaltsansicht"
1274
1370
 
1275
1371
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1276
1372
  msgstr "Inhaltsansichtsversion %{id} nicht in allen angegebenen Umgebungen %{envs}"
@@ -1293,6 +1389,9 @@ msgstr "Inhaltsansicht und Umgebung für Registrierung nicht festgelegt."
1293
1389
  msgid "Content View id"
1294
1390
  msgstr "Content View id"
1295
1391
 
1392
+ msgid "Content View label not provided."
1393
+ msgstr ""
1394
+
1296
1395
  msgid "Content Views"
1297
1396
  msgstr "Inhaltsansichten"
1298
1397
 
@@ -1305,15 +1404,21 @@ msgstr "Der Inhaltshost muss vor dem Ausführen dieser Aktion abgemeldet werden.
1305
1404
  msgid "Content hosts"
1306
1405
  msgstr ""
1307
1406
 
1308
- msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1309
- msgstr "Inhalt importiert von %{path} in Inhaltsansicht '%{name}' von %{user}"
1407
+ msgid "Content imported by %{user} into content view '%{name}'"
1408
+ msgstr ""
1310
1409
 
1311
1410
  msgid "Content not uploaded to pulp"
1312
1411
  msgstr ""
1313
1412
 
1413
+ msgid "Content override search parameters"
1414
+ msgstr ""
1415
+
1314
1416
  msgid "Content source ID"
1315
1417
  msgstr "Inhaltsquellen-ID."
1316
1418
 
1419
+ msgid "Content source successfully updated."
1420
+ msgstr ""
1421
+
1317
1422
  msgid "Content source was not set for host '%{host}'"
1318
1423
  msgstr "Inhaltsquelle wurde nicht für Host '%{host}' festgelegt"
1319
1424
 
@@ -1389,6 +1494,9 @@ msgstr "Vertrag"
1389
1494
  msgid "Contract Number"
1390
1495
  msgstr "Vertragsnummer"
1391
1496
 
1497
+ msgid "Copied to clipboard"
1498
+ msgstr ""
1499
+
1392
1500
  msgid "Copy"
1393
1501
  msgstr "Kopieren"
1394
1502
 
@@ -1398,6 +1506,9 @@ msgstr "Aktivierungsschlüssel kopieren"
1398
1506
  msgid "Copy content view"
1399
1507
  msgstr ""
1400
1508
 
1509
+ msgid "Copy to clipboard"
1510
+ msgstr ""
1511
+
1401
1512
  msgid "Copy version units to library"
1402
1513
  msgstr "Versionseinheiten in Bibliothek kopieren"
1403
1514
 
@@ -1509,6 +1620,9 @@ msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
1509
1620
  msgid "Couldn't find repository '%s'"
1510
1621
  msgstr "Repository \"%s\" konnte nicht gefunden werden."
1511
1622
 
1623
+ msgid "Couldn't find smart proxies with id '%s'"
1624
+ msgstr ""
1625
+
1512
1626
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1513
1627
  msgstr "Die angegebene Inhaltsansicht und Lebenszyklusumgebung konnte nicht gefunden werden."
1514
1628
 
@@ -1521,6 +1635,9 @@ msgstr "Anzahl"
1521
1635
  msgid "Create"
1522
1636
  msgstr "Erstellen"
1523
1637
 
1638
+ msgid "Create Alternate Content Source"
1639
+ msgstr ""
1640
+
1524
1641
  msgid "Create Export History"
1525
1642
  msgstr "Exportverlauf erstellen"
1526
1643
 
@@ -1557,6 +1674,9 @@ msgstr "Produkt erstellen"
1557
1674
  msgid "Create a sync plan"
1558
1675
  msgstr "Synchronisationsplan erstellen"
1559
1676
 
1677
+ msgid "Create an ACS"
1678
+ msgstr ""
1679
+
1560
1680
  msgid "Create an activation key"
1561
1681
  msgstr "Aktivierungsschlüssel erstellen"
1562
1682
 
@@ -1579,7 +1699,7 @@ msgid "Create organization"
1579
1699
  msgstr "Organisation erstellen"
1580
1700
 
1581
1701
  msgid "Critical"
1582
- msgstr ""
1702
+ msgstr "Kritisch"
1583
1703
 
1584
1704
  msgid "Cron expression is not valid!"
1585
1705
  msgstr "Cron-Ausdruck ungültig!"
@@ -1602,6 +1722,9 @@ msgstr "Der benutzerdefinierte Cron-Ausdruck muss nur für den Intervallwert des
1602
1722
  msgid "Custom repositories cannot be disabled."
1603
1723
  msgstr "Benutzerdefinierte Repositorys können nicht deaktiviert werden."
1604
1724
 
1725
+ msgid "Customize with Rex"
1726
+ msgstr ""
1727
+
1605
1728
  msgid "Database connection"
1606
1729
  msgstr "Verbindung zur Datenbank "
1607
1730
 
@@ -1638,14 +1761,11 @@ msgstr "Debug RPM"
1638
1761
  msgid "Default Custom Repository download policy"
1639
1762
  msgstr "Standardmäßige Downloadrichtlinie für benutzerdefiniertes Repository"
1640
1763
 
1641
- msgid "Default HTTP Proxy for syncing content"
1642
- msgstr "Standard-HTTP-Proxy zum Synchronisieren von Inhalten"
1643
-
1644
- msgid "Default HTTP proxy"
1645
- msgstr "Standard-HTTP-Proxy"
1764
+ msgid "Default HTTP Proxy"
1765
+ msgstr ""
1646
1766
 
1647
- msgid "Default Location subscribed hosts"
1648
- msgstr "Standardstandort abonnierte Hosts"
1767
+ msgid "Default HTTP proxy for syncing content"
1768
+ msgstr ""
1649
1769
 
1650
1770
  msgid "Default Location where new subscribed hosts will put upon registration"
1651
1771
  msgstr "Standardstandort, an dem neue abonnierte Hosts bei der Registrierung abgelegt werden"
@@ -1689,6 +1809,9 @@ msgstr "Standard-iPXE-Vorlage für neue Betriebssysteme, die aus synchronisierte
1689
1809
  msgid "Default kexec template for new Operating Systems created from synced content"
1690
1810
  msgstr "Standard-Kexec-Vorlage für neue Betriebssysteme, die aus synchronisierten Inhalten erstellt wurden"
1691
1811
 
1812
+ msgid "Default location for subscribed hosts"
1813
+ msgstr ""
1814
+
1692
1815
  msgid "Default partitioning table for new Operating Systems created from synced content"
1693
1816
  msgstr "Standardpartitionierungstabelle für neue Betriebssysteme, die aus synchronisierten Inhalten erstellt wurden"
1694
1817
 
@@ -1791,6 +1914,9 @@ msgstr "Löschen Sie mehrere Filter aus einer Inhaltsansicht"
1791
1914
  msgid "Delete version"
1792
1915
  msgstr ""
1793
1916
 
1917
+ msgid "Delete versions"
1918
+ msgstr ""
1919
+
1794
1920
  msgid "Deleted consumer '%s'"
1795
1921
  msgstr "Verbraucher \"%s\" gelöscht"
1796
1922
 
@@ -1806,9 +1932,18 @@ msgstr ""
1806
1932
  msgid "Deleting manifest in '%{subject}' failed."
1807
1933
  msgstr "Das Löschen des Manifests in '%{subject}' ist fehlgeschlagen."
1808
1934
 
1935
+ msgid "Deleting version {versionList}"
1936
+ msgstr ""
1937
+
1938
+ msgid "Deleting versions: {versionList}"
1939
+ msgstr ""
1940
+
1809
1941
  msgid "Description"
1810
1942
  msgstr "Beschreibung"
1811
1943
 
1944
+ msgid "Description for the alternate content source"
1945
+ msgstr ""
1946
+
1812
1947
  msgid "Description for the content view"
1813
1948
  msgstr "Beschreibung der Inhaltsansicht"
1814
1949
 
@@ -1830,6 +1965,9 @@ msgstr "Name des Ziel-Servers"
1830
1965
  msgid "Destroy"
1831
1966
  msgstr "Löschen"
1832
1967
 
1968
+ msgid "Destroy Alternate Content Source"
1969
+ msgstr ""
1970
+
1833
1971
  msgid "Destroy Content Host"
1834
1972
  msgstr "Inhaltshost löschen"
1835
1973
 
@@ -1854,6 +1992,9 @@ msgstr "Synchronisationsplan löschen"
1854
1992
  msgid "Destroy an activation key"
1855
1993
  msgstr "Aktivierungsschlüssel löschen"
1856
1994
 
1995
+ msgid "Destroy an alternate content source"
1996
+ msgstr ""
1997
+
1857
1998
  msgid "Destroy an environment"
1858
1999
  msgstr "Umgebung löschen"
1859
2000
 
@@ -1893,18 +2034,18 @@ msgstr "Einfachen Inhaltszugriff deaktivieren"
1893
2034
  msgid "Disable a repository from the set"
1894
2035
  msgstr "Deaktivieren Sie ein Repository aus dem Set"
1895
2036
 
2037
+ msgid "Disable module stream"
2038
+ msgstr ""
2039
+
1896
2040
  msgid "Disable simple content access for a manifest"
1897
2041
  msgstr "Deaktivieren Sie den einfachen Inhaltszugriff für ein Manifest"
1898
2042
 
1899
2043
  msgid "Disabled"
1900
- msgstr ""
2044
+ msgstr "Deaktiviert"
1901
2045
 
1902
2046
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1903
2047
  msgstr "Fehler beim Deaktivieren des einfachen Inhaltszugriffs für '%{subject}'."
1904
2048
 
1905
- msgid "Disconnected mode"
1906
- msgstr "Getrennter Modus"
1907
-
1908
2049
  msgid "Discover"
1909
2050
  msgstr "Suchen"
1910
2051
 
@@ -1920,9 +2061,6 @@ msgstr "Warten Sie nicht, bis die ImportUpload-Aktion abgeschlossen ist. Standar
1920
2061
  msgid "Do not wait for the update action to finish. Default: true"
1921
2062
  msgstr "Warten Sie nicht, bis die Aktualisierungsaktion abgeschlossen ist. Standard: wahr"
1922
2063
 
1923
- msgid "Docker Tags"
1924
- msgstr ""
1925
-
1926
2064
  msgid "Domain IDs"
1927
2065
  msgstr "Domain-IDs"
1928
2066
 
@@ -1932,6 +2070,9 @@ msgstr "Download-Richtlinie der Kapsel, muss einer von %s sein "
1932
2070
  msgid "Download a debug certificate"
1933
2071
  msgstr "Debug-Zertifikat herunterladen"
1934
2072
 
2073
+ msgid "Download rate limit"
2074
+ msgstr ""
2075
+
1935
2076
  msgid "Duplicate artifact detected"
1936
2077
  msgstr ""
1937
2078
 
@@ -1947,6 +2088,9 @@ msgstr "Bearbeiten"
1947
2088
  msgid "Edit RPM rule"
1948
2089
  msgstr ""
1949
2090
 
2091
+ msgid "Edit content view assignment"
2092
+ msgstr ""
2093
+
1950
2094
  msgid "Edit filter rule"
1951
2095
  msgstr ""
1952
2096
 
@@ -1984,7 +2128,7 @@ msgid "Enable Tracer"
1984
2128
  msgstr ""
1985
2129
 
1986
2130
  msgid "Enable Traces"
1987
- msgstr ""
2131
+ msgstr "Traces aktivieren"
1988
2132
 
1989
2133
  msgid "Enable a repository from the set"
1990
2134
  msgstr "Ein Repository aus der Gruppe aktivieren"
@@ -2010,6 +2154,9 @@ msgstr ""
2010
2154
  msgid "End Date"
2011
2155
  msgstr "Enddatum"
2012
2156
 
2157
+ msgid "End date"
2158
+ msgstr ""
2159
+
2013
2160
  msgid "Ends"
2014
2161
  msgstr "Endet"
2015
2162
 
@@ -2019,6 +2166,9 @@ msgstr "Erweiterung"
2019
2166
  msgid "Enter a name"
2020
2167
  msgstr ""
2021
2168
 
2169
+ msgid "Enter a valid date: MM/DD/YYYY"
2170
+ msgstr ""
2171
+
2022
2172
  msgid "Entitlements"
2023
2173
  msgstr "Entitlements"
2024
2174
 
@@ -2037,6 +2187,9 @@ msgstr "Umgebungskennung"
2037
2187
  msgid "Environments"
2038
2188
  msgstr "Umgebungen"
2039
2189
 
2190
+ msgid "Epoch"
2191
+ msgstr ""
2192
+
2040
2193
  msgid "Equal to"
2041
2194
  msgstr ""
2042
2195
 
@@ -2094,6 +2247,9 @@ msgstr "Fehler bei Verbindung zu Pulp-Dienst"
2094
2247
  msgid "Error connecting. Got: %s"
2095
2248
  msgstr "Verbindungsfehler. Ausgabe: %s"
2096
2249
 
2250
+ msgid "Error loading content views"
2251
+ msgstr ""
2252
+
2097
2253
  msgid "Error refreshing status for %s: "
2098
2254
  msgstr "Error refreshing status for %s : "
2099
2255
 
@@ -2107,10 +2263,10 @@ msgid "Exclude"
2107
2263
  msgstr "Ausschließen"
2108
2264
 
2109
2265
  msgid "Exclude all Module Streams with no errata."
2110
- msgstr ""
2266
+ msgstr "Alle Modulstreams ohne Errata ausschließen."
2111
2267
 
2112
2268
  msgid "Exclude all RPMs with no errata."
2113
- msgstr ""
2269
+ msgstr "Alle RPMs ohne Errata ausschließen."
2114
2270
 
2115
2271
  msgid "Exclude filter"
2116
2272
  msgstr ""
@@ -2142,6 +2298,12 @@ msgstr "CSV-Datei exportieren"
2142
2298
  msgid "Export Library"
2143
2299
  msgstr "Bibliothek exportieren"
2144
2300
 
2301
+ msgid "Export Repository"
2302
+ msgstr ""
2303
+
2304
+ msgid "Export Sync"
2305
+ msgstr ""
2306
+
2145
2307
  msgid "Export Types"
2146
2308
  msgstr "Export Typen"
2147
2309
 
@@ -2152,7 +2314,7 @@ msgid "Export history identifier used for incremental export. If not provided th
2152
2314
  msgstr "Exportiere History-Identifitierer die für inkrementellen Export benötigt werden. Falls nicht benötigt wird die aktuellste History benutzt."
2153
2315
 
2154
2316
  msgid "Exported content view"
2155
- msgstr ""
2317
+ msgstr "Exportierte Inhaltsansicht"
2156
2318
 
2157
2319
  msgid "Exported version"
2158
2320
  msgstr "Exportierte Version"
@@ -2166,6 +2328,9 @@ msgstr "Fehlgeschlagen"
2166
2328
  msgid "Failed to delete %{host}: %{errors}"
2167
2329
  msgstr "Fehler beim Löschen von %{host}: %{errors}"
2168
2330
 
2331
+ msgid "Failed to delete latest content view version of Content View '%{subject}'."
2332
+ msgstr ""
2333
+
2169
2334
  msgid "Failed to download %s package."
2170
2335
  msgid_plural "Failed to download %s packages."
2171
2336
  msgstr[0] "Herunterladen für %s Paket fehlgeschlagen."
@@ -2205,7 +2370,7 @@ msgid "File contents"
2205
2370
  msgstr "Dokumenten-Inhalte"
2206
2371
 
2207
2372
  msgid "Filename"
2208
- msgstr ""
2373
+ msgstr "Dateiname"
2209
2374
 
2210
2375
  msgid "Files"
2211
2376
  msgstr "Dateien"
@@ -2223,7 +2388,7 @@ msgid "Filter created"
2223
2388
  msgstr "Filter erstellt"
2224
2389
 
2225
2390
  msgid "Filter deleted"
2226
- msgstr ""
2391
+ msgstr "Filter gelöscht"
2227
2392
 
2228
2393
  msgid "Filter edited"
2229
2394
  msgstr ""
@@ -2355,6 +2520,15 @@ msgstr "Hostanwendbarkeit generieren"
2355
2520
  msgid "Generate repository applicability"
2356
2521
  msgstr "Repository-Anwendbarkeit generieren"
2357
2522
 
2523
+ msgid "Generated"
2524
+ msgstr ""
2525
+
2526
+ msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2527
+ msgstr ""
2528
+
2529
+ msgid "Generated content views cannot be directly published. They can updated only via export."
2530
+ msgstr ""
2531
+
2358
2532
  msgid "Get all content available, not just that provided by subscriptions"
2359
2533
  msgstr "Besorge dir allen verfügbaren Content, nicht nur den der über Subskriptionen verfügbar ist"
2360
2534
 
@@ -2391,6 +2565,9 @@ msgstr ""
2391
2565
  msgid "Given criteria doesn't match any hosts. Try changing your rule."
2392
2566
  msgstr ""
2393
2567
 
2568
+ msgid "Go to job details"
2569
+ msgstr ""
2570
+
2394
2571
  msgid "Go to task page"
2395
2572
  msgstr "Zur Aufgabenseite gehen"
2396
2573
 
@@ -2413,6 +2590,12 @@ msgid "Has to be > 0"
2413
2590
  msgstr "Muss > 0 . sein"
2414
2591
 
2415
2592
  msgid "Helper"
2593
+ msgstr "Helfer"
2594
+
2595
+ msgid "Hide affected activation keys"
2596
+ msgstr ""
2597
+
2598
+ msgid "Hide affected hosts"
2416
2599
  msgstr ""
2417
2600
 
2418
2601
  msgid "Hide description"
@@ -2466,15 +2649,27 @@ msgstr "Host-Subskriptions-Status"
2466
2649
  msgid "Host Tasks Workers Pool Size"
2467
2650
  msgstr "Größe des Workers-Pools für Host-Aufgaben"
2468
2651
 
2652
+ msgid "Host collection"
2653
+ msgstr ""
2654
+
2469
2655
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2470
2656
  msgstr "Hostsammlung \"%{name}\" überschreitet die Verbrauchsgrenze von \"%{limit}\""
2471
2657
 
2472
2658
  msgid "Host collection is empty."
2473
2659
  msgstr "Hostsammlung ist leer."
2474
2660
 
2661
+ msgid "Host collections"
2662
+ msgstr ""
2663
+
2664
+ msgid "Host collections updated"
2665
+ msgstr ""
2666
+
2475
2667
  msgid "Host content and subscription details"
2476
2668
  msgstr "Hostinhalt und Subskriptionsdetails"
2477
2669
 
2670
+ msgid "Host content view and environment updated"
2671
+ msgstr ""
2672
+
2478
2673
  msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2479
2674
  msgstr "Die Hosterstellung für %s wurde übersprungen, weil sie eine BIOS-UUID mit teilt. Um diesen Hypervisor zu melden, überschreiben Sie seinen dmi.system.uuid fakt oder setzen Sie 'candlepin.use_system_uuid_for_matching' in der Candlepin-Konfiguration auf 'true'."
2480
2675
 
@@ -2518,7 +2713,7 @@ msgid "Host with ID %s not found."
2518
2713
  msgstr "Host mit ID %s nicht gefunden."
2519
2714
 
2520
2715
  msgid "Hosts"
2521
- msgstr ""
2716
+ msgstr "Hosts"
2522
2717
 
2523
2718
  msgid "Hosts with Installable Errata"
2524
2719
  msgstr "Hosts mit installierbaren Errata"
@@ -2526,8 +2721,8 @@ msgstr "Hosts mit installierbaren Errata"
2526
2721
  msgid "Hosts: "
2527
2722
  msgstr "Hosts:"
2528
2723
 
2529
- msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2530
- msgstr "Wie viele Repositorys gleichzeitig auf der Kapsel synchronisiert werden sollen. Eine kleinere Zahl kann zu längeren Synchronisierungszeiten führen. Eine größere Zahl erhöht die Dyflow-Last."
2724
+ msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2725
+ msgstr ""
2531
2726
 
2532
2727
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2533
2728
  msgstr "Reihenfolge der sortierten Ergebnisse (z. B. ASC für aufsteigend)"
@@ -2589,12 +2784,18 @@ msgstr "ID des Repositorys, das deaktiviert ist"
2589
2784
  msgid "ID of the repository set to enable"
2590
2785
  msgstr "ID der zu aktivierenden Repository-Gruppe"
2591
2786
 
2787
+ msgid "ID of the repository within the set to disable"
2788
+ msgstr ""
2789
+
2592
2790
  msgid "ID of the sync plan"
2593
2791
  msgstr "ID des Synchronisationsplans"
2594
2792
 
2595
2793
  msgid "ID: %s doesn't exist "
2596
2794
  msgstr "ID: %s existiert nicht"
2597
2795
 
2796
+ msgid "Id"
2797
+ msgstr ""
2798
+
2598
2799
  msgid "Id of a deb package to find repositories that contain the deb"
2599
2800
  msgstr "ID eines Deb-Pakets, um Repositorys zu finden, die das Deb enthalten"
2600
2801
 
@@ -2667,16 +2868,22 @@ msgstr "Identifizierer des Lifecycle-Environments"
2667
2868
  msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2668
2869
  msgstr "Gibt an, ob das Repository auf einem Client mit einer nicht übereinstimmenden Betriebssystemversion deaktiviert werden soll. Übergeben Sie [], um unabhängig von der Betriebssystemversion zu aktivieren. Maximale Länge 1; Erlaubte Tags sind: %s"
2669
2870
 
2871
+ msgid "Ids of smart proxies to associate"
2872
+ msgstr ""
2873
+
2670
2874
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2671
2875
  msgstr "Wenn die automatische Suche aktiviert ist, verzögern Sie in Millisekunden, bevor Suchvorgänge während der Eingabe ausgeführt werden."
2672
2876
 
2673
- msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2674
- msgstr "Wenn sich Hosts aufgrund doppelter DMI-UUIDs nicht registrieren können, fügen Sie ihre durch Kommas getrennten Werte hier ein. Nachfolgende Registrierungen generieren eine eindeutige DMI-UUID für die betroffenen Hosts."
2877
+ msgid "If SSL should be verified for the upstream URL"
2878
+ msgstr ""
2879
+
2880
+ msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2881
+ msgstr ""
2675
2882
 
2676
2883
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2677
2884
  msgstr "Falls angegeben, entfernen Sie die erste Instanz einer Subskription mit passender ID und Anzahl"
2678
2885
 
2679
- 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."
2886
+ 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."
2680
2887
  msgstr ""
2681
2888
 
2682
2889
  msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
@@ -2685,6 +2892,9 @@ msgstr ""
2685
2892
  msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2686
2893
  msgstr ""
2687
2894
 
2895
+ 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
+ msgstr ""
2897
+
2688
2898
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2689
2899
  msgstr "Bei true werden nur Repository-Sets zurückgegeben, die mit einem aktiven Abonnement verknüpft sind"
2690
2900
 
@@ -2700,6 +2910,9 @@ msgstr "Wenn true, werden beim Hinzufügen der angegebenen Errata oder Pakete au
2700
2910
  msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
2701
2911
  msgstr "Bei true wird eine neue zusammengesetzte Version mit einer beliebigen angegebenen content_view_version_id veröffentlicht, die in eine Lebenszyklusumgebung hochgestuft wurde"
2702
2912
 
2913
+ msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
2914
+ msgstr ""
2915
+
2703
2916
  msgid "Ignorable content can be only set for Yum repositories."
2704
2917
  msgstr "Ignorierbarer Inhalt kann nur für Yum-Repositorys festgelegt werden."
2705
2918
 
@@ -2736,6 +2949,9 @@ msgstr "Neues Manifest importieren"
2736
2949
  msgid "Import Puppet classes"
2737
2950
  msgstr "Puppet-Klassen importieren"
2738
2951
 
2952
+ msgid "Import Repository"
2953
+ msgstr ""
2954
+
2739
2955
  msgid "Import Types"
2740
2956
  msgstr "Import Typen"
2741
2957
 
@@ -2757,12 +2973,18 @@ msgstr "Eine Inhaltsansichtsversion importieren"
2757
2973
  msgid "Import a content view version to the library"
2758
2974
  msgstr "Importiere eine Kontent-View-Version zur Library"
2759
2975
 
2976
+ msgid "Import a repository"
2977
+ msgstr ""
2978
+
2760
2979
  msgid "Import facts"
2761
2980
  msgstr "Fakten importieren"
2762
2981
 
2763
2982
  msgid "Import only"
2764
2983
  msgstr ""
2765
2984
 
2985
+ msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
2986
+ msgstr ""
2987
+
2766
2988
  msgid "Import uploads into a repository"
2767
2989
  msgstr "Uploads in ein Repository importieren"
2768
2990
 
@@ -2772,9 +2994,12 @@ msgstr "Nur Import kann nach der Erstellung nicht geändert werden"
2772
2994
  msgid "Import-only content views can not be published directly"
2773
2995
  msgstr "Nur-Import-Inhaltsansichten können nicht direkt veröffentlicht werden"
2774
2996
 
2775
- msgid "Important"
2997
+ msgid "Import/Export"
2776
2998
  msgstr ""
2777
2999
 
3000
+ msgid "Important"
3001
+ msgstr "Wichtig"
3002
+
2778
3003
  msgid "Importing manifest into '%{subject}' failed."
2779
3004
  msgstr "Das Importieren des Manifests in '%{subject}' ist fehlgeschlagen."
2780
3005
 
@@ -2788,9 +3013,12 @@ msgid "Include"
2788
3013
  msgstr "Einschließen"
2789
3014
 
2790
3015
  msgid "Include all Module Streams with no errata."
2791
- msgstr ""
3016
+ msgstr "Schließen Sie alle Modulstreams ohne Errata ein."
2792
3017
 
2793
3018
  msgid "Include all RPMs with no errata."
3019
+ msgstr "Alle RPMs ohne Errata einschließen."
3020
+
3021
+ msgid "Include content views generated by imports/exports. Defaults to false"
2794
3022
  msgstr ""
2795
3023
 
2796
3024
  msgid "Include filter"
@@ -2824,7 +3052,7 @@ msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2824
3052
  msgstr "Inkrementelles Update von %{content_view_count} Content View-Version(en)"
2825
3053
 
2826
3054
  msgid "Incremental update"
2827
- msgstr ""
3055
+ msgstr "Inkrementelles Update"
2828
3056
 
2829
3057
  msgid "Incremental update requires at least one content unit"
2830
3058
  msgstr "Für die inkrementelle Aktualisierung ist mindestens ein Inhaltsblock erforderlich"
@@ -2853,6 +3081,9 @@ msgstr "Vom Repository erben"
2853
3081
  msgid "Initiate a sync of the products attached to the sync plan"
2854
3082
  msgstr "Synchronisation von Produkten des Synchronisationsplans einleiten"
2855
3083
 
3084
+ msgid "Install"
3085
+ msgstr ""
3086
+
2856
3087
  msgid "Install Applicable Errata"
2857
3088
  msgstr "Relevante Errata installieren"
2858
3089
 
@@ -2862,6 +3093,9 @@ msgstr "Anwendbare Errata installieren auf %s"
2862
3093
  msgid "Install content on one or more hosts using katello-agent. %s"
2863
3094
  msgstr "Installieren Sie Inhalte auf einem oder mehreren Hosts mit katello-agent. %s"
2864
3095
 
3096
+ msgid "Install errata using scoped search query"
3097
+ msgstr ""
3098
+
2865
3099
  msgid "Install errata via Katello interface"
2866
3100
  msgstr "Errata über die Katello-Schnittstelle installieren"
2867
3101
 
@@ -2886,19 +3120,31 @@ msgstr "Paketgruppe über Katello-Schnittstelle installieren"
2886
3120
  msgid "Install package via Katello interface"
2887
3121
  msgstr "Paket über Katello-Schnittstelle installieren"
2888
3122
 
3123
+ msgid "Install packages"
3124
+ msgstr ""
3125
+
2889
3126
  msgid "Install packages remotely using katello-agent. %s"
2890
3127
  msgstr "Installieren Sie Pakete aus der Ferne mit katello-agent. %s"
2891
3128
 
2892
- msgid "Installable"
3129
+ msgid "Install packages via Katello interface"
3130
+ msgstr ""
3131
+
3132
+ msgid "Install via customized remote execution"
3133
+ msgstr ""
3134
+
3135
+ msgid "Install via katello-agent"
2893
3136
  msgstr ""
2894
3137
 
2895
- msgid "Installable Errata"
3138
+ msgid "Install via remote execution"
2896
3139
  msgstr ""
2897
3140
 
2898
- msgid "Installable errata from Content View"
2899
- msgstr "Installierbare Errata aus der Inhaltsansicht"
3141
+ msgid "Installable"
3142
+ msgstr "Installierbar"
3143
+
3144
+ msgid "Installable errata"
3145
+ msgstr ""
2900
3146
 
2901
- msgid "Installable errata will appear here when available."
3147
+ msgid "Installable errata from content view"
2902
3148
  msgstr ""
2903
3149
 
2904
3150
  msgid "Installation of errata requested: %{errata}"
@@ -2910,10 +3156,22 @@ msgstr "Installation der angeforderten Paketgruppe(n): %{groups}"
2910
3156
  msgid "Installation of package(s) requested: %{packages}"
2911
3157
  msgstr "Installation der angeforderten Pakete: %{packages}"
2912
3158
 
3159
+ msgid "Installation status"
3160
+ msgstr ""
3161
+
2913
3162
  msgid "Installed Packages"
2914
3163
  msgstr "Installierte Pakete"
2915
3164
 
2916
- msgid "Installed Version"
3165
+ msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
3166
+ msgstr ""
3167
+
3168
+ msgid "Installed products"
3169
+ msgstr ""
3170
+
3171
+ msgid "Installed profile"
3172
+ msgstr ""
3173
+
3174
+ msgid "Installed version"
2917
3175
  msgstr ""
2918
3176
 
2919
3177
  msgid "Installing Erratum..."
@@ -2994,6 +3252,9 @@ msgstr "Ungültige Parameter angegeben - content_type muss einer von %s sein"
2994
3252
  msgid "Invalid params provided - date_type must be one of %s"
2995
3253
  msgstr "Ungültige Parameter angegeben - date_type muss einer von %s sein"
2996
3254
 
3255
+ msgid "Invalid repository in the metadata %{repo} error=%{error}"
3256
+ msgstr ""
3257
+
2997
3258
  msgid "Invalid value specified for Container Image repositories."
2998
3259
  msgstr "Ungültiger Wert für Container Image-Repositorys angegeben."
2999
3260
 
@@ -3004,6 +3265,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
3004
3265
  msgstr "Ungültiger Wert für ignorierbaren Inhalt angegeben. Zulässige Werte %s"
3005
3266
 
3006
3267
  msgid "Issued"
3268
+ msgstr "Ausgegeben"
3269
+
3270
+ msgid "Issued from"
3271
+ msgstr ""
3272
+
3273
+ msgid "Job ${description} has started."
3007
3274
  msgstr ""
3008
3275
 
3009
3276
  msgid "Katello ID of local pool to update"
@@ -3018,6 +3285,12 @@ msgstr "Katello: Paket installieren"
3018
3285
  msgid "Katello: Install Package Group"
3019
3286
  msgstr "Katello: Paketgruppe installieren"
3020
3287
 
3288
+ msgid "Katello: Install errata by search query"
3289
+ msgstr ""
3290
+
3291
+ msgid "Katello: Install packages by search query"
3292
+ msgstr ""
3293
+
3021
3294
  msgid "Katello: Module Stream Actions"
3022
3295
  msgstr "Katello: Modul-Stream-Aktionen"
3023
3296
 
@@ -3027,6 +3300,9 @@ msgstr "Katello: Paket entfernen"
3027
3300
  msgid "Katello: Remove Package Group"
3028
3301
  msgstr "Katello: Paketgruppe entfernen"
3029
3302
 
3303
+ msgid "Katello: Remove Packages by search query"
3304
+ msgstr ""
3305
+
3030
3306
  msgid "Katello: Resolve Traces"
3031
3307
  msgstr ""
3032
3308
 
@@ -3039,6 +3315,9 @@ msgstr "Katello: Update-Paket"
3039
3315
  msgid "Katello: Update Package Group"
3040
3316
  msgstr "Katello: Paketgruppe aktualisieren"
3041
3317
 
3318
+ msgid "Katello: Update Packages by search query"
3319
+ msgstr ""
3320
+
3042
3321
  msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
3043
3322
  msgstr "Schlüsselwert-Hash von Abonnement-Manager-Fakten, Verschachtelung verwendet ein Punkttrennzeichen (.)"
3044
3323
 
@@ -3060,6 +3339,9 @@ msgstr "Kennung"
3060
3339
  msgid "Label of the content"
3061
3340
  msgstr "Kennung des Inhalts"
3062
3341
 
3342
+ msgid "Label of the content view"
3343
+ msgstr ""
3344
+
3063
3345
  msgid "Last published"
3064
3346
  msgstr "Zuletzt veröffentlicht"
3065
3347
 
@@ -3078,13 +3360,10 @@ msgstr "Letzte Version"
3078
3360
  msgid "Learn more about adding Subscription Manifests"
3079
3361
  msgstr "Weitere Informationen zum Hinzufügen von Abonnementmanifesten"
3080
3362
 
3081
- msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3363
+ msgid "Less than"
3082
3364
  msgstr ""
3083
3365
 
3084
- msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3085
- msgstr ""
3086
-
3087
- msgid "Less than"
3366
+ msgid "Library"
3088
3367
  msgstr ""
3089
3368
 
3090
3369
  msgid "Library lifecycle environments may not be deleted."
@@ -3129,9 +3408,15 @@ msgstr "Lebenszyklusumgebung für den Host."
3129
3408
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3130
3409
  msgstr "Die Lebenszyklusumgebung wurde nicht an den Smart Proxy angehängt; daher wurden keine Änderungen vorgenommen."
3131
3410
 
3411
+ msgid "Lifecycle environment: {lce}"
3412
+ msgstr ""
3413
+
3132
3414
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3133
3415
  msgstr "Lebenszyklusumgebungen können auf dem standardmäßigen Smart Proxy nicht geändert werden. Der Inhalt aller Lifecycle-Umgebungen ist auf diesem Smart Proxy vorhanden."
3134
3416
 
3417
+ msgid "Limit content to enabled / disabled / overridden"
3418
+ msgstr ""
3419
+
3135
3420
  msgid "Limit content to just that available in the activation key's content view version"
3136
3421
  msgstr "Beschränkte den Kontent nur auf den der verfügbar ist im Kontent-View des Aktivierungsschlüssels"
3137
3422
 
@@ -3142,7 +3427,7 @@ msgid "Limit content to just that available in the host's or activation key's co
3142
3427
  msgstr ""
3143
3428
 
3144
3429
  msgid "Limit to environment"
3145
- msgstr ""
3430
+ msgstr "Auf Umgebung beschränken"
3146
3431
 
3147
3432
  msgid "Limits"
3148
3433
  msgstr "Grenzen"
@@ -3240,6 +3525,9 @@ msgstr "Liste der zu installierenden Errata-IDs. Wird entfernt in %s"
3240
3525
  msgid "List of Products for sync plan"
3241
3526
  msgstr "Produktliste für Synchronisationsplan"
3242
3527
 
3528
+ msgid "List of alternate_content_sources"
3529
+ msgstr ""
3530
+
3243
3531
  msgid "List of component content view version ids for composite views"
3244
3532
  msgstr "Liste der Komponenteninhaltsansichts-Versions-IDs für Verbundansichten"
3245
3533
 
@@ -3336,6 +3624,12 @@ msgstr "Liste mit Subskriptionsprodukten in einer Subskription"
3336
3624
  msgid "List of subscription products in an activation key"
3337
3625
  msgstr "Liste mit Subskriptionsprodukten in einem Aktivierungsschlüssel"
3338
3626
 
3627
+ msgid "List of versions to exclude and not run an action on"
3628
+ msgstr ""
3629
+
3630
+ msgid "List of versions to perform an action on"
3631
+ msgstr ""
3632
+
3339
3633
  msgid "List organization subscriptions"
3340
3634
  msgstr "Subskriptionen der Organisation auflisten"
3341
3635
 
@@ -3381,6 +3675,12 @@ msgstr "Lade"
3381
3675
  msgid "Loading versions"
3382
3676
  msgstr ""
3383
3677
 
3678
+ msgid "Loading..."
3679
+ msgstr ""
3680
+
3681
+ msgid "Low"
3682
+ msgstr ""
3683
+
3384
3684
  msgid "Make copy of a content view"
3385
3685
  msgstr "Kopie einer Inhaltsansicht erstellen"
3386
3686
 
@@ -3438,6 +3738,9 @@ msgstr "Max %(maxQuantity)s"
3438
3738
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3439
3739
  msgstr "Maximale Anzahl an Hosts (%{limit}) erreicht für Aktivierungs-Schlüssel '%{name}'"
3440
3740
 
3741
+ msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3742
+ msgstr ""
3743
+
3441
3744
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3442
3745
  msgstr "Höchstanzahl von Inhaltshosts überschritten für Hostsammlungen: %s"
3443
3746
 
@@ -3484,10 +3787,10 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
3484
3787
  msgstr "Fehlende Argumente %{substitutions} für %{content_url}"
3485
3788
 
3486
3789
  msgid "Moderate"
3487
- msgstr ""
3790
+ msgstr "Moderat (Mittel)"
3488
3791
 
3489
3792
  msgid "Modular"
3490
- msgstr ""
3793
+ msgstr "Modular"
3491
3794
 
3492
3795
  msgid "Module Stream"
3493
3796
  msgstr "Modul-Stream"
@@ -3504,6 +3807,9 @@ msgstr "Modul stream"
3504
3807
  msgid "Module streams"
3505
3808
  msgstr ""
3506
3809
 
3810
+ msgid "Module streams will appear here when available."
3811
+ msgstr ""
3812
+
3507
3813
  msgid "Multi-entitlement"
3508
3814
  msgstr "Multi-Berechtigung"
3509
3815
 
@@ -3533,15 +3839,24 @@ msgstr ""
3533
3839
  "HINWEIS: Die Inhaltsansichtsversion '%{content_view} %{current}' kann nicht vollständig exportiert werden. Sie enthält Repositorys ohne die Richtlinie für sofortigen Download. Aktualisieren Sie die Download-Richtlinie und synchronisieren Sie betroffene Repositorys. Veröffentlichen Sie die Inhaltsansicht nach der Synchronisierung erneut und exportieren Sie die generierte Version.\n"
3534
3840
  " %{repos}"
3535
3841
 
3842
+ msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
3843
+ msgstr ""
3844
+
3536
3845
  msgid "Name"
3537
3846
  msgstr "Name"
3538
3847
 
3848
+ msgid "Name is a required parameter."
3849
+ msgstr ""
3850
+
3539
3851
  msgid "Name of new activation key"
3540
3852
  msgstr "Name des neuen Aktivierungsschlüssels"
3541
3853
 
3542
3854
  msgid "Name of the Content Credential"
3543
3855
  msgstr "Der Name des Kontent-Credentials"
3544
3856
 
3857
+ msgid "Name of the alternate content source"
3858
+ msgstr ""
3859
+
3545
3860
  msgid "Name of the content view"
3546
3861
  msgstr "Name der Inhaltsansicht"
3547
3862
 
@@ -3563,6 +3878,9 @@ msgstr "Muss nur für Datei-Repositorys oder Docker-Tags festgelegt werden"
3563
3878
  msgid "Nest"
3564
3879
  msgstr "Verschachteln"
3565
3880
 
3881
+ msgid "Network Sync"
3882
+ msgstr ""
3883
+
3566
3884
  msgid "Never Synced"
3567
3885
  msgstr "Nie synchronisiert"
3568
3886
 
@@ -3629,12 +3947,21 @@ msgstr "Keine URL für eine Containerregistrierung gefunden. Bitte überprüfen
3629
3947
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3630
3948
  msgstr "Keine Version der Inhaltsansicht %{component} existiert bereits als Komponente der Verbundinhaltsansicht %{composite} Version %{version}"
3631
3949
 
3950
+ msgid "No action is needed because there are no applicable errata for this host."
3951
+ msgstr ""
3952
+
3953
+ msgid "No action required"
3954
+ msgstr ""
3955
+
3632
3956
  msgid "No applicable errata"
3633
3957
  msgstr ""
3634
3958
 
3635
3959
  msgid "No applicable errata for %s, skipping"
3636
3960
  msgstr "Keine zutreffenden Errata für %s , Überspringen"
3637
3961
 
3962
+ msgid "No applications to restart"
3963
+ msgstr ""
3964
+
3638
3965
  msgid "No artifacts to show"
3639
3966
  msgstr "Keine Artefakte zum Anzeigen"
3640
3967
 
@@ -3656,6 +3983,9 @@ msgstr "Keine vergangenen Ereignisse der Inhaltsansicht gefunden."
3656
3983
  msgid "No content views available"
3657
3984
  msgstr ""
3658
3985
 
3986
+ msgid "No content views available for the selected environment"
3987
+ msgstr ""
3988
+
3659
3989
  msgid "No content views belong to ${label}"
3660
3990
  msgstr "Keine Inhaltsansichten gehören zu ${label}"
3661
3991
 
@@ -3665,6 +3995,9 @@ msgstr "Keine content_view_version_ids angegeben"
3665
3995
  msgid "No description"
3666
3996
  msgstr "Keine Beschreibung"
3667
3997
 
3998
+ msgid "No description provided"
3999
+ msgstr ""
4000
+
3668
4001
  msgid "No enabled repositories match your search criteria."
3669
4002
  msgstr "Keine aktivierten Repositorys entsprechen Ihren Suchkriterien."
3670
4003
 
@@ -3689,6 +4022,9 @@ msgstr "Keine existierende Export-History wurde gefunden um einen inkrementellen
3689
4022
  msgid "No file uploaded"
3690
4023
  msgstr "Keine Datei hochgeladen"
3691
4024
 
4025
+ msgid "No host collections"
4026
+ msgstr ""
4027
+
3692
4028
  msgid "No host collections found."
3693
4029
  msgstr "Keine Hostsammlungen gefunden"
3694
4030
 
@@ -3698,6 +4034,9 @@ msgstr "Es wurden keine Hosts angegeben."
3698
4034
  msgid "No hosts registered with subscription-manager found in selection."
3699
4035
  msgstr "Keine beim Subscription-Manager registrierten Hosts in der Auswahl gefunden."
3700
4036
 
4037
+ msgid "No hosts with content source found!"
4038
+ msgstr ""
4039
+
3701
4040
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3702
4041
  msgstr "Keine installierten Pakete und/oder aktivierten Repositorys wurden von %s gemeldet."
3703
4042
 
@@ -3722,6 +4061,9 @@ msgstr ""
3722
4061
  msgid "No matching activation keys found."
3723
4062
  msgstr ""
3724
4063
 
4064
+ msgid "No matching alternate content sources found"
4065
+ msgstr ""
4066
+
3725
4067
  msgid "No matching content views found"
3726
4068
  msgstr "Keine übereinstimmenden Inhaltsansichten gefunden"
3727
4069
 
@@ -3737,6 +4079,9 @@ msgstr "Keine passenden Filter gefunden"
3737
4079
  msgid "No matching history record found"
3738
4080
  msgstr "Kein passender Verlaufsdatensatz gefunden"
3739
4081
 
4082
+ msgid "No matching host collections found"
4083
+ msgstr ""
4084
+
3740
4085
  msgid "No matching hosts found."
3741
4086
  msgstr ""
3742
4087
 
@@ -3767,6 +4112,12 @@ msgstr "Keine neuen Pakete"
3767
4112
  msgid "No packages"
3768
4113
  msgstr ""
3769
4114
 
4115
+ msgid "No packages available to install"
4116
+ msgstr ""
4117
+
4118
+ msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4119
+ msgstr ""
4120
+
3770
4121
  msgid "No packages removed"
3771
4122
  msgstr "Keine Pakete entfernt"
3772
4123
 
@@ -3788,9 +4139,6 @@ msgstr "Keine Prozesse erfordern einen Neustart"
3788
4139
  msgid "No products are enabled."
3789
4140
  msgstr "Es sind keine Produkte aktiviert."
3790
4141
 
3791
- msgid "No profiles to show"
3792
- msgstr "Keine Profile zum Anzeigen"
3793
-
3794
4142
  msgid "No pulp workers running."
3795
4143
  msgstr "Pulp-Worker laufen nicht."
3796
4144
 
@@ -3857,9 +4205,6 @@ msgstr "Keine"
3857
4205
  msgid "None provided"
3858
4206
  msgstr "Keine bereitgestellt"
3859
4207
 
3860
- msgid "Not Specified"
3861
- msgstr "Keine Angabe"
3862
-
3863
4208
  msgid "Not a number"
3864
4209
  msgstr "Keine Zahl"
3865
4210
 
@@ -3872,6 +4217,9 @@ msgstr "Nicht alle notwendigen Pulp-Worker laufen bei %s ."
3872
4217
  msgid "Not running"
3873
4218
  msgstr "Läuft nicht"
3874
4219
 
4220
+ msgid "Not specified"
4221
+ msgstr ""
4222
+
3875
4223
  msgid "Not yet published"
3876
4224
  msgstr "Noch nicht veröffentlicht"
3877
4225
 
@@ -3971,9 +4319,6 @@ msgstr "Organisations-ID ist erforderlich"
3971
4319
  msgid "Organization Information not provided."
3972
4320
  msgstr "Organisationsinformationen nicht bereitgestellt."
3973
4321
 
3974
- msgid "Organization Label"
3975
- msgstr ""
3976
-
3977
4322
  msgid "Organization cannot be blank."
3978
4323
  msgstr "Organisation darf nicht leer sein."
3979
4324
 
@@ -4002,7 +4347,7 @@ msgid "Other Content Types"
4002
4347
  msgstr ""
4003
4348
 
4004
4349
  msgid "Overridden"
4005
- msgstr ""
4350
+ msgstr "Überschreiben"
4006
4351
 
4007
4352
  msgid "Override content for activation_key"
4008
4353
  msgstr "Inhalt überschreiben für activation_key"
@@ -4178,9 +4523,6 @@ msgstr ""
4178
4523
  msgid "Packages"
4179
4524
  msgstr "Pakete"
4180
4525
 
4181
- msgid "Packages management functionality on this page is incomplete"
4182
- msgstr ""
4183
-
4184
4526
  msgid "Packages must be provided"
4185
4527
  msgstr "Pakete müssen angegeben werden"
4186
4528
 
@@ -4200,9 +4542,9 @@ msgid "Partition template IDs"
4200
4542
  msgstr "Partitionsvorlagenkennungen"
4201
4543
 
4202
4544
  msgid "Password"
4203
- msgstr ""
4545
+ msgstr "Passwort"
4204
4546
 
4205
- msgid "Password for authentication"
4547
+ msgid "Password for authentication. Relevant only for 'upstream_server' type."
4206
4548
  msgstr ""
4207
4549
 
4208
4550
  msgid "Password of the upstream authentication token."
@@ -4215,7 +4557,7 @@ msgid "Password to access URL"
4215
4557
  msgstr "Passwort für den Zugriff auf die URL"
4216
4558
 
4217
4559
  msgid "Path"
4218
- msgstr ""
4560
+ msgstr "Pfad"
4219
4561
 
4220
4562
  msgid "Path for ssl cert used for pulp server auth"
4221
4563
  msgstr "Pfad für das SSL-Zertifikat, das für die Pulserver-Authentifizierung verwendet wird"
@@ -4223,6 +4565,9 @@ msgstr "Pfad für das SSL-Zertifikat, das für die Pulserver-Authentifizierung v
4223
4565
  msgid "Path for ssl key used for pulp server auth"
4224
4566
  msgstr "Pfad für den SSL-Schlüssel, der für die Pulserver-Authentifizierung verwendet wird"
4225
4567
 
4568
+ msgid "Path suffixes for finding alternate content"
4569
+ msgstr ""
4570
+
4226
4571
  msgid "Paused"
4227
4572
  msgstr "Pausiert"
4228
4573
 
@@ -4241,6 +4586,12 @@ msgstr "Führt einen vollständigen Export einer Kontent-View-Version durch"
4241
4586
  msgid "Performs a full-export of the repositories in library."
4242
4587
  msgstr "Führt einen vollständigen Export der Repositories einer Library durch"
4243
4588
 
4589
+ msgid "Performs a full-export of the repository in library."
4590
+ msgstr ""
4591
+
4592
+ msgid "Performs a incremental-export of the repository in library."
4593
+ msgstr ""
4594
+
4244
4595
  msgid "Performs an incremental-export of a content view version."
4245
4596
  msgstr "Performt einen inkrementellen Export einer Kontent-View Version"
4246
4597
 
@@ -4274,6 +4625,12 @@ msgstr "Bitte Anzahl auf 10 Stellen begrenzen"
4274
4625
  msgid "Please select a content source before assigning a kickstart repository"
4275
4626
  msgstr "Bitte wählen Sie eine Inhaltsquelle aus, bevor Sie ein Kickstart-Repository zuweisen"
4276
4627
 
4628
+ msgid "Please select a lifecycle environment and a content view to move these activation keys."
4629
+ msgstr ""
4630
+
4631
+ msgid "Please select a lifecycle environment and a content view to move this activation key."
4632
+ msgstr ""
4633
+
4277
4634
  msgid "Please select an architecture before assigning a kickstart repository"
4278
4635
  msgstr "Bitte wählen Sie eine Architektur aus, bevor Sie ein Kickstart-Repository zuweisen"
4279
4636
 
@@ -4295,9 +4652,39 @@ msgstr ""
4295
4652
  msgid "Policy to set for mirroring content. Must be one of %s."
4296
4653
  msgstr ""
4297
4654
 
4655
+ msgid "Prefer registered through proxy for remote execution"
4656
+ msgstr ""
4657
+
4658
+ msgid "Prefer using a proxy to which a host is registered when using remote execution"
4659
+ msgstr ""
4660
+
4661
+ msgid "Prevent from further updates"
4662
+ msgstr ""
4663
+
4298
4664
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
4299
4665
  msgstr "In den Metadaten angegebene vorherige Version der Inhaltsansicht - '%{name}' existiert nicht. Bitte importieren Sie die Metadaten für '%{name}', bevor Sie '%{current}' importieren"
4300
4666
 
4667
+ msgid "Problem searching"
4668
+ msgstr ""
4669
+
4670
+ msgid "Problem searching errata"
4671
+ msgstr ""
4672
+
4673
+ msgid "Problem searching host collections"
4674
+ msgstr ""
4675
+
4676
+ msgid "Problem searching module streams"
4677
+ msgstr ""
4678
+
4679
+ msgid "Problem searching packages"
4680
+ msgstr ""
4681
+
4682
+ msgid "Problem searching repository sets"
4683
+ msgstr ""
4684
+
4685
+ msgid "Problem searching traces"
4686
+ msgstr ""
4687
+
4301
4688
  msgid "Processing metadata"
4302
4689
  msgstr "Metadaten werden verarbeitet"
4303
4690
 
@@ -4317,7 +4704,7 @@ msgid "Product ID"
4317
4704
  msgstr "Produkt-ID"
4318
4705
 
4319
4706
  msgid "Product Name"
4320
- msgstr ""
4707
+ msgstr "Produktname"
4321
4708
 
4322
4709
  msgid "Product and Repositories"
4323
4710
  msgstr "Produkte und Repositorys"
@@ -4356,9 +4743,6 @@ msgstr "Produkt: '%{product}', Repository: '%{repository}'"
4356
4743
  msgid "Products"
4357
4744
  msgstr "Produkte"
4358
4745
 
4359
- msgid "Profiles"
4360
- msgstr "Profile"
4361
-
4362
4746
  msgid "Promote"
4363
4747
  msgstr "Fördern"
4364
4748
 
@@ -4386,6 +4770,9 @@ msgstr "Zusammenfassung der Promotions-Zusammenfassung für %{content_view}"
4386
4770
  msgid "Promotion to Environment"
4387
4771
  msgstr "Promotion des Environments"
4388
4772
 
4773
+ msgid "Provide the required information and click {update} below to save changes."
4774
+ msgstr ""
4775
+
4389
4776
  msgid "Provided Products"
4390
4777
  msgstr "Bereitgestellte Produkte"
4391
4778
 
@@ -4399,7 +4786,7 @@ msgid "Proxies"
4399
4786
  msgstr "Proxies"
4400
4787
 
4401
4788
  msgid "Public"
4402
- msgstr ""
4789
+ msgstr "Öffentlich"
4403
4790
 
4404
4791
  msgid "Public key block in DER encoding or certificate content"
4405
4792
  msgstr "Öffentlicher Schlüssel-Block in DER-Kodiertung oder Zertifikatsinhalt"
@@ -4548,18 +4935,27 @@ msgstr ""
4548
4935
  msgid "RPM name"
4549
4936
  msgstr "RPM Name"
4550
4937
 
4938
+ msgid "RPM packages"
4939
+ msgstr ""
4940
+
4551
4941
  msgid "RPMs"
4552
4942
  msgstr "RPMs"
4553
4943
 
4554
4944
  msgid "Range"
4555
- msgstr ""
4945
+ msgstr "Bereich"
4556
4946
 
4557
4947
  msgid "Realm IDs"
4558
4948
  msgstr "Realm-IDs"
4559
4949
 
4950
+ msgid "Reassign affected activation key"
4951
+ msgstr ""
4952
+
4560
4953
  msgid "Reassign affected activation keys"
4561
4954
  msgstr ""
4562
4955
 
4956
+ msgid "Reassign affected host"
4957
+ msgstr ""
4958
+
4563
4959
  msgid "Reassign affected hosts"
4564
4960
  msgstr ""
4565
4961
 
@@ -4587,6 +4983,9 @@ msgstr ""
4587
4983
  msgid "Recommended Repositories"
4588
4984
  msgstr "Empfohlene Repositorys"
4589
4985
 
4986
+ msgid "Red Hat CDN"
4987
+ msgstr ""
4988
+
4590
4989
  msgid "Red Hat CDN URL"
4591
4990
  msgstr "Red Hat CDN-URL"
4592
4991
 
@@ -4594,6 +4993,15 @@ msgid "Red Hat Repositories"
4594
4993
  msgstr "Red Hat Repositorys"
4595
4994
 
4596
4995
  msgid "Red Hat Repositories page"
4996
+ msgstr "Red Hat Repositorys"
4997
+
4998
+ msgid "Red Hat content will be consumed from an {type}."
4999
+ msgstr ""
5000
+
5001
+ msgid "Red Hat content will be consumed from the {type}."
5002
+ msgstr ""
5003
+
5004
+ msgid "Red Hat content will be enabled and consumed via the {type} process."
4597
5005
  msgstr ""
4598
5006
 
4599
5007
  msgid "Red Hat products cannot be manipulated."
@@ -4626,6 +5034,18 @@ msgstr "Registrieren Sie einen Host mit Abonnement und Informationen"
4626
5034
  msgid "Register host '%s' before attaching subscriptions"
4627
5035
  msgstr "Registrieren Sie den Host '%s', bevor Sie Abonnements anhängen"
4628
5036
 
5037
+ msgid "Registered by"
5038
+ msgstr ""
5039
+
5040
+ msgid "Registered on"
5041
+ msgstr ""
5042
+
5043
+ msgid "Registered through"
5044
+ msgstr ""
5045
+
5046
+ msgid "Registration details"
5047
+ msgstr ""
5048
+
4629
5049
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
4630
5050
  msgstr "Das Registrierungsnamenmuster führt zu doppelten Container-Image-Namen für diese Repositorys: %s."
4631
5051
 
@@ -4654,7 +5074,7 @@ msgid "Related content views will appear here when created."
4654
5074
  msgstr ""
4655
5075
 
4656
5076
  msgid "Release"
4657
- msgstr ""
5077
+ msgstr "Release"
4658
5078
 
4659
5079
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
4660
5080
  msgstr "Release-Version für diesen Host (7Server, 7.1 usw.)"
@@ -4716,12 +5136,21 @@ msgstr ""
4716
5136
  msgid "Remove from environments"
4717
5137
  msgstr ""
4718
5138
 
5139
+ msgid "Remove host from collections"
5140
+ msgstr ""
5141
+
5142
+ msgid "Remove host from host collections"
5143
+ msgstr ""
5144
+
4719
5145
  msgid "Remove hosts from the host collection"
4720
5146
  msgstr "Hosts aus der Hostsammlung entfernen"
4721
5147
 
4722
5148
  msgid "Remove lifecycle environments from the smart proxy"
4723
5149
  msgstr "Lebenszyklusumgebung von Smart Proxy löschen"
4724
5150
 
5151
+ msgid "Remove module stream"
5152
+ msgstr ""
5153
+
4725
5154
  msgid "Remove one or more host collections from one or more hosts"
4726
5155
  msgstr "Entfernen Sie eine oder mehrere Hostsammlungen von einem oder mehreren Hosts"
4727
5156
 
@@ -4743,6 +5172,9 @@ msgstr "Paketgruppe über Katello-Schnittstelle entfernen"
4743
5172
  msgid "Remove package via Katello interface"
4744
5173
  msgstr "Paket über Katello-Schnittstelle entfernen"
4745
5174
 
5175
+ msgid "Remove packages via Katello interface"
5176
+ msgstr ""
5177
+
4746
5178
  msgid "Remove products from sync plan"
4747
5179
  msgstr "Produkte aus Synchronisationsplan entfernen"
4748
5180
 
@@ -4782,6 +5214,9 @@ msgstr "Repository-Typ"
4782
5214
  msgid "Repositories"
4783
5215
  msgstr "Repositorys"
4784
5216
 
5217
+ msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
5218
+ msgstr ""
5219
+
4785
5220
  msgid "Repositories from published Content Views are not allowed."
4786
5221
  msgstr "Repositorys aus veröffentlichten Inhaltsansichten sind nicht zulässig."
4787
5222
 
@@ -4857,9 +5292,6 @@ msgstr ""
4857
5292
  msgid "Repository sets will appear here when available."
4858
5293
  msgstr ""
4859
5294
 
4860
- msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4861
- msgstr ""
4862
-
4863
5295
  msgid "Republish Repositories of %{name} %{version}"
4864
5296
  msgstr "Repositorys von %{name} %{version} erneut veröffentlichen"
4865
5297
 
@@ -4881,10 +5313,19 @@ msgstr ""
4881
5313
  msgid "Requires Virt-Who"
4882
5314
  msgstr "Benötigt Virt-Who"
4883
5315
 
5316
+ msgid "Reset"
5317
+ msgstr ""
5318
+
4884
5319
  msgid "Reset filters"
4885
5320
  msgstr ""
4886
5321
 
5322
+ msgid "Reset module stream"
5323
+ msgstr ""
5324
+
4887
5325
  msgid "Reset to default"
5326
+ msgstr "Rücksetzen auf Standardeinstellungen"
5327
+
5328
+ msgid "Reset to the default state"
4888
5329
  msgstr ""
4889
5330
 
4890
5331
  msgid "Resolve traces"
@@ -4911,8 +5352,8 @@ msgstr ""
4911
5352
  msgid "Restart via remote execution"
4912
5353
  msgstr ""
4913
5354
 
4914
- msgid "Restrict Composite Content View promotion"
4915
- msgstr "Werbung für zusammengesetzte Inhaltsansicht einschränken"
5355
+ msgid "Restrict composite content view promotion"
5356
+ msgstr ""
4916
5357
 
4917
5358
  msgid "Result"
4918
5359
  msgstr "Ergebnis"
@@ -5001,12 +5442,15 @@ msgstr ""
5001
5442
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5002
5443
  msgstr "Gibt Inhalt zurück, der sowohl hinzugefügt werden kann als auch dem Objekt derzeit hinzugefügt wird. Der Wert 'content_view_filter' wird unterstützt"
5003
5444
 
5004
- msgid "Review Details"
5445
+ msgid "Review affected environment"
5005
5446
  msgstr ""
5006
5447
 
5007
- msgid "Review details"
5448
+ msgid "Review affected environments"
5008
5449
  msgstr ""
5009
5450
 
5451
+ msgid "Review details"
5452
+ msgstr "Bewertungsdetails"
5453
+
5010
5454
  msgid "Review your currently selected changes for "
5011
5455
  msgstr ""
5012
5456
 
@@ -5019,15 +5463,15 @@ msgstr "Rolle des Gastgebers"
5019
5463
  msgid "Roles"
5020
5464
  msgstr "Rollen"
5021
5465
 
5022
- msgid "Rpm packages"
5023
- msgstr ""
5024
-
5025
5466
  msgid "Rules to be added"
5026
5467
  msgstr ""
5027
5468
 
5028
5469
  msgid "Run Sync Plan:"
5029
5470
  msgstr "Synchronisierungsplan ausführen:"
5030
5471
 
5472
+ msgid "Run job invocation"
5473
+ msgstr ""
5474
+
5031
5475
  msgid "Running"
5032
5476
  msgstr "Läuft"
5033
5477
 
@@ -5053,15 +5497,21 @@ msgid "Schedule errata for installation using katello-agent. %s"
5053
5497
  msgstr "Planen Sie Errata für die Installation mit katello-agent. %s"
5054
5498
 
5055
5499
  msgid "Schema Version 1"
5056
- msgstr ""
5500
+ msgstr "Schema Version 1"
5057
5501
 
5058
5502
  msgid "Schema Version 2"
5059
- msgstr ""
5503
+ msgstr "Schema Version 2"
5060
5504
 
5061
5505
  msgid "Search"
5062
5506
  msgstr "Suche"
5063
5507
 
5064
5508
  msgid "Search Query"
5509
+ msgstr "Suchanfrage"
5510
+
5511
+ msgid "Search available packages"
5512
+ msgstr ""
5513
+
5514
+ msgid "Search host collections"
5065
5515
  msgstr ""
5066
5516
 
5067
5517
  msgid "Search pattern (defaults to '*')"
@@ -5079,6 +5529,9 @@ msgstr "Suchzeichenfolge für Host, auf dem eine Aktion ausgeführt werden soll"
5079
5529
  msgid "Search string for hosts to perform an action on"
5080
5530
  msgstr "Suchzeichenfolge für Hosts, auf denen eine Aktion ausgeführt werden soll"
5081
5531
 
5532
+ msgid "Search string for versions to perform an action on"
5533
+ msgstr ""
5534
+
5082
5535
  msgid "Security"
5083
5536
  msgstr "Sicherheit"
5084
5537
 
@@ -5091,6 +5544,9 @@ msgstr "Sicherheitserrata installierbar"
5091
5544
  msgid "Select"
5092
5545
  msgstr "Auswählen"
5093
5546
 
5547
+ msgid "Select ..."
5548
+ msgstr ""
5549
+
5094
5550
  msgid "Select All"
5095
5551
  msgstr "Alle auswählen"
5096
5552
 
@@ -5109,6 +5565,12 @@ msgstr "Wähle Wert"
5109
5565
  msgid "Select a content view"
5110
5566
  msgstr ""
5111
5567
 
5568
+ msgid "Select a lifecycle environment and a content view to move these hosts."
5569
+ msgstr ""
5570
+
5571
+ msgid "Select a lifecycle environment and a content view to move this host."
5572
+ msgstr ""
5573
+
5112
5574
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
5113
5575
  msgstr "Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Promotionspfaden aus, um eine neue Version hochzustufen."
5114
5576
 
@@ -5116,7 +5578,7 @@ msgid "Select a provider to install katello-host-tools-tracer"
5116
5578
  msgstr ""
5117
5579
 
5118
5580
  msgid "Select all"
5119
- msgstr ""
5581
+ msgstr "Alles auswählen"
5120
5582
 
5121
5583
  msgid "Select all rows"
5122
5584
  msgstr "Alle Zeilen auswählen"
@@ -5124,6 +5586,12 @@ msgstr "Alle Zeilen auswählen"
5124
5586
  msgid "Select an Organization"
5125
5587
  msgstr "Organisation wählen"
5126
5588
 
5589
+ msgid "Select an environment"
5590
+ msgstr ""
5591
+
5592
+ msgid "Select an environment above"
5593
+ msgstr ""
5594
+
5127
5595
  msgid "Select an organization"
5128
5596
  msgstr "Wählen Sie eine Organisation aus"
5129
5597
 
@@ -5136,6 +5604,15 @@ msgstr ""
5136
5604
  msgid "Select content view"
5137
5605
  msgstr ""
5138
5606
 
5607
+ msgid "Select environment"
5608
+ msgstr ""
5609
+
5610
+ msgid "Select host collection(s) to associate with host {hostName}."
5611
+ msgstr ""
5612
+
5613
+ msgid "Select host collection(s) to remove from host {hostName}."
5614
+ msgstr ""
5615
+
5139
5616
  msgid "Select hosts to assign to %s"
5140
5617
  msgstr "Hosts zum Zuweisen zu %s auswählen"
5141
5618
 
@@ -5148,6 +5625,9 @@ msgstr ""
5148
5625
  msgid "Select one"
5149
5626
  msgstr ""
5150
5627
 
5628
+ msgid "Select packages to install to the host {hostName}."
5629
+ msgstr ""
5630
+
5151
5631
  msgid "Select page"
5152
5632
  msgstr ""
5153
5633
 
@@ -5166,15 +5646,15 @@ msgstr ""
5166
5646
  msgid "Sending a list of included IDs is not allowed when all items are being selected."
5167
5647
  msgstr ""
5168
5648
 
5169
- msgid "Service Level"
5170
- msgstr "Servicelevel"
5171
-
5172
5649
  msgid "Service Level %s"
5173
5650
  msgstr "Servicelevel %s"
5174
5651
 
5175
5652
  msgid "Service Level (SLA)"
5176
5653
  msgstr "Service Level (SLA)"
5177
5654
 
5655
+ msgid "Service level"
5656
+ msgstr ""
5657
+
5178
5658
  msgid "Service level of host"
5179
5659
  msgstr "Servicelevel des Hosts"
5180
5660
 
@@ -5187,6 +5667,9 @@ msgstr "Inhaltsüberschreibungen für den Host festlegen"
5187
5667
  msgid "Set content overrides to one or more hosts"
5188
5668
  msgstr "Legen Sie Inhaltsüberschreibungen für einen oder mehrere Hosts fest"
5189
5669
 
5670
+ msgid "Set true to override to enabled; Set false to override to disabled.'"
5671
+ msgstr ""
5672
+
5190
5673
  msgid "Set true to remove an override and reset it to 'default'"
5191
5674
  msgstr "Setze auf wahr um einen Override zu entfernen und setze es auf 'default' zurück"
5192
5675
 
@@ -5241,12 +5724,21 @@ msgstr "Subskription anzeigen"
5241
5724
  msgid "Show a sync plan"
5242
5725
  msgstr "Synchronisationsplan anzeigen"
5243
5726
 
5727
+ msgid "Show affected activation keys"
5728
+ msgstr ""
5729
+
5730
+ msgid "Show affected hosts"
5731
+ msgstr ""
5732
+
5244
5733
  msgid "Show all"
5245
5734
  msgstr ""
5246
5735
 
5247
5736
  msgid "Show an activation key"
5248
5737
  msgstr "Aktivierungsschlüssel anzeigen"
5249
5738
 
5739
+ msgid "Show an alternate content source"
5740
+ msgstr ""
5741
+
5250
5742
  msgid "Show an environment"
5251
5743
  msgstr "Umgebung anzeigen"
5252
5744
 
@@ -5314,7 +5806,7 @@ msgid "Sockets: %s"
5314
5806
  msgstr "Sockets: %s"
5315
5807
 
5316
5808
  msgid "Solution"
5317
- msgstr ""
5809
+ msgstr "Lösung"
5318
5810
 
5319
5811
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
5320
5812
  msgstr "Lösen Sie RPM-Abhängigkeiten standardmäßig beim Veröffentlichen von Inhaltsansichten, standardmäßig auf false"
@@ -5322,6 +5814,9 @@ msgstr "Lösen Sie RPM-Abhängigkeiten standardmäßig beim Veröffentlichen von
5322
5814
  msgid "Solve dependencies"
5323
5815
  msgstr "Abhängigkeiten lösen"
5324
5816
 
5817
+ msgid "Some hosts are ignored!"
5818
+ msgstr ""
5819
+
5325
5820
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
5326
5821
  msgstr "Einige Ihrer Eingaben enthalten Fehler. Bitte aktualisieren Sie diese und speichern Sie Ihre Änderungen erneut."
5327
5822
 
@@ -5349,9 +5844,15 @@ msgstr ""
5349
5844
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5350
5845
  msgstr "Beim Löschen von Filtern ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5351
5846
 
5847
+ msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
5848
+ msgstr ""
5849
+
5352
5850
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5353
5851
  msgstr "Beim Löschen dieses Filters ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5354
5852
 
5853
+ msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
5854
+ msgstr ""
5855
+
5355
5856
  msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5356
5857
  msgstr ""
5357
5858
 
@@ -5370,10 +5871,10 @@ msgstr ""
5370
5871
  msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5371
5872
  msgstr ""
5372
5873
 
5373
- msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5874
+ msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
5374
5875
  msgstr ""
5375
5876
 
5376
- msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5877
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5377
5878
  msgstr ""
5378
5879
 
5379
5880
  msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
@@ -5385,9 +5886,15 @@ msgstr ""
5385
5886
  msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5386
5887
  msgstr ""
5387
5888
 
5889
+ msgid "Something went wrong while getting the data. See the logs for more information"
5890
+ msgstr ""
5891
+
5388
5892
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5389
5893
  msgstr ""
5390
5894
 
5895
+ msgid "Something went wrong while loading the content views. See the logs for more information"
5896
+ msgstr ""
5897
+
5391
5898
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5392
5899
  msgstr ""
5393
5900
 
@@ -5424,6 +5931,9 @@ msgstr ""
5424
5931
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5425
5932
  msgstr "Beim Abrufen der Repository-Typen ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
5426
5933
 
5934
+ msgid "Something went wrong while updating the content source. See the logs for more information"
5935
+ msgstr ""
5936
+
5427
5937
  msgid "Something went wrong! Please check server logs!"
5428
5938
  msgstr ""
5429
5939
 
@@ -5434,7 +5944,7 @@ msgid "Source RPM"
5434
5944
  msgstr "Quell-RPM"
5435
5945
 
5436
5946
  msgid "Source RPMs"
5437
- msgstr ""
5947
+ msgstr "Quell-RPMs"
5438
5948
 
5439
5949
  msgid "Specify an export chunk size less than 1_000_000 GB"
5440
5950
  msgstr "Geben Sie eine Exportchunkgröße von weniger als 1_000_000 GB an"
@@ -5457,9 +5967,15 @@ msgstr "Startdatum und -zeit dürfen nicht leer sein"
5457
5967
  msgid "Start Time"
5458
5968
  msgstr "Startzeit"
5459
5969
 
5970
+ msgid "Start date"
5971
+ msgstr ""
5972
+
5460
5973
  msgid "Starts"
5461
5974
  msgstr "Beginnt"
5462
5975
 
5976
+ msgid "State"
5977
+ msgstr ""
5978
+
5463
5979
  msgid "Status"
5464
5980
  msgstr "Status"
5465
5981
 
@@ -5472,6 +5988,12 @@ msgstr "Speicher"
5472
5988
  msgid "Stream"
5473
5989
  msgstr "Stream"
5474
5990
 
5991
+ msgid "Streamed"
5992
+ msgstr ""
5993
+
5994
+ msgid "Streams based on the host based on the installation status"
5995
+ msgstr ""
5996
+
5475
5997
  msgid "Streams based on the host based on their status"
5476
5998
  msgstr "Streams basierend auf dem Host basierend auf ihrem Status"
5477
5999
 
@@ -5514,9 +6036,15 @@ msgstr "Subskriptionspool-UUID"
5514
6036
  msgid "Subscription Status"
5515
6037
  msgstr "Subskriptions Status"
5516
6038
 
6039
+ msgid "Subscription UUID"
6040
+ msgstr ""
6041
+
5517
6042
  msgid "Subscription Watch"
5518
6043
  msgstr "Abonnement-Uhr"
5519
6044
 
6045
+ msgid "Subscription connection enabled"
6046
+ msgstr ""
6047
+
5520
6048
  msgid "Subscription expiration notification"
5521
6049
  msgstr "Benachrichtigung zum Ablauf des Abonnements"
5522
6050
 
@@ -5595,8 +6123,8 @@ msgstr "Unterstützte Inhaltstypen"
5595
6123
  msgid "Sync Canceled"
5596
6124
  msgstr "Synchronisation abgebrochen"
5597
6125
 
5598
- msgid "Sync Connection Timeout"
5599
- msgstr "Zeitüberschreitung der Synchronisierungsverbindung"
6126
+ msgid "Sync Connect Timeout"
6127
+ msgstr ""
5600
6128
 
5601
6129
  msgid "Sync Content View on Smart Proxy(ies)"
5602
6130
  msgstr "Inhaltsansicht auf Smart Proxy(s) synchronisieren"
@@ -5619,8 +6147,14 @@ msgstr "Synchronisationspläne"
5619
6147
  msgid "Sync Repository on Smart Proxy(ies)"
5620
6148
  msgstr "Repository auf Smart Proxy(s) synchronisieren"
5621
6149
 
5622
- msgid "Sync Smart Proxies after Content View promotion"
5623
- msgstr "Synchronisieren Sie Smart Proxys nach der Content View-Werbung"
6150
+ msgid "Sync Smart Proxies after content view promotion"
6151
+ msgstr ""
6152
+
6153
+ msgid "Sync Sock Connect Timeout"
6154
+ msgstr ""
6155
+
6156
+ msgid "Sync Sock Read Timeout"
6157
+ msgstr ""
5624
6158
 
5625
6159
  msgid "Sync Status"
5626
6160
  msgstr "Synchronisationsstatus"
@@ -5631,6 +6165,9 @@ msgstr "Zusammenfassung der Synchronisierung"
5631
6165
  msgid "Sync Summary for %s"
5632
6166
  msgstr "Synchronisierungszusammenfassung für %s"
5633
6167
 
6168
+ msgid "Sync Total Timeout"
6169
+ msgstr ""
6170
+
5634
6171
  msgid "Sync a repository"
5635
6172
  msgstr "Repository synchronisieren"
5636
6173
 
@@ -5700,6 +6237,9 @@ msgstr "Systemzweck"
5700
6237
  msgid "System Status"
5701
6238
  msgstr "Systemstatus"
5702
6239
 
6240
+ msgid "System purpose"
6241
+ msgstr ""
6242
+
5703
6243
  msgid "Tag name"
5704
6244
  msgstr ""
5705
6245
 
@@ -5727,6 +6267,9 @@ msgstr "Temporär"
5727
6267
  msgid "The '%s' environment cannot contain a changeset!"
5728
6268
  msgstr "Die \"%s\" Umgebung kann keinen Änderungssatz enthalten!"
5729
6269
 
6270
+ msgid "The Alternate Content Source type"
6271
+ msgstr ""
6272
+
5730
6273
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
5731
6274
  msgstr "Die Abonnementzuordnung, die das importierte Manifest bereitstellt, wurde entfernt. Bitte erstellen Sie eine neue Abonnementzuordnung und importieren Sie das neue Manifest."
5732
6275
 
@@ -5739,6 +6282,9 @@ msgstr "Die für diese zusammengesetzte Ansicht angeforderte Aktion kann erst au
5739
6282
  msgid "The actual file contents"
5740
6283
  msgstr "Die eigentlichen Dateiinhalte"
5741
6284
 
6285
+ msgid "The content type for the Alternate Content Source"
6286
+ msgstr ""
6287
+
5742
6288
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
5743
6289
  msgstr "Die derzeitige Organisation kann nicht gelöscht werden. Bitte wechseln Sie vor dem Löschen zu einer anderen Organisation."
5744
6290
 
@@ -5748,8 +6294,8 @@ msgstr "Die standardmäßige Inhaltsansicht kann nicht bearbeitet, veröffentlic
5748
6294
  msgid "The default content view cannot be promoted"
5749
6295
  msgstr "Die standardmäßige Inhaltsansicht kann nicht übertragen werden"
5750
6296
 
5751
- msgid "The default dependency solving value for new Content Views."
5752
- msgstr "Der Standardwert zum Lösen von Abhängigkeiten für neue Inhaltsansichten."
6297
+ msgid "The default dependency solving value for new content views."
6298
+ msgstr ""
5753
6299
 
5754
6300
  msgid "The description for the content view version"
5755
6301
  msgstr "Die Beschreibung der Kontent-View Version"
@@ -5778,6 +6324,9 @@ msgstr "Die exportierte Inhaltsansichtsversion '%{content_view} %{current}' kann
5778
6324
  msgid "The field to sort the data by. Defaults to the created date."
5779
6325
  msgstr "Das Feld, nach dem die Daten sortiert werden sollen. Standardmäßig wird das Erstellungsdatum verwendet."
5780
6326
 
6327
+ msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6328
+ msgstr ""
6329
+
5781
6330
  msgid "The following hosts have errata that apply to them: "
5782
6331
  msgstr "DIe folgenden Hosts haben relevante Errata: "
5783
6332
 
@@ -5788,15 +6337,39 @@ msgstr ""
5788
6337
  "Die folgenden Repositorys, die in den Importmetadaten bereitgestellt werden, weisen einen falschen Inhaltstyp oder Anbietertyp auf. Stellen Sie vor dem Import sicher, dass die Export- und Import-Repositorys vom gleichen Typ sind\n"
5789
6338
  " %{repos}"
5790
6339
 
6340
+ msgid "The id of the content source"
6341
+ msgstr ""
6342
+
6343
+ msgid "The id of the content view"
6344
+ msgstr ""
6345
+
5791
6346
  msgid "The id of the host to alter"
5792
6347
  msgstr "ID des zu ändernden Hosts"
5793
6348
 
6349
+ msgid "The id of the lifecycle environment"
6350
+ msgstr ""
6351
+
6352
+ msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
6353
+ msgstr ""
6354
+
5794
6355
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
5795
6356
  msgstr "Die Liste der Umgebungen, auf die die angegebene Inhaltsansichtsversion hochgestuft werden soll (ersetzt die ältere Version)"
5796
6357
 
5797
6358
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
5798
6359
  msgstr "Das in Organisation %{subject} importierte Manifest ist nicht mehr gültig. Bitte importieren Sie ein neues Manifest."
5799
6360
 
6361
+ msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6362
+ msgstr ""
6363
+
6364
+ msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
6365
+ msgstr ""
6366
+
6367
+ msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
6368
+ msgstr ""
6369
+
6370
+ msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
6371
+ msgstr ""
6372
+
5800
6373
  msgid "The maximum number of versions of each package to keep."
5801
6374
  msgstr "Die maximale Anzahl von Versionen jedes Pakets, die aufbewahrt werden sollen."
5802
6375
 
@@ -5885,9 +6458,18 @@ msgstr "Es sind keine Abonnements zum Anzeigen vorhanden"
5885
6458
  msgid "There are no errata that need to be applied to registered content hosts."
5886
6459
  msgstr "Es gibt keine Errata, die auf registrierte Inhaltshosts angewendet werden müssen."
5887
6460
 
6461
+ msgid "There are no host collections available to add."
6462
+ msgstr ""
6463
+
5888
6464
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5889
6465
  msgstr "Es sind keine Produkte oder Repositorys aktiviert. Versuchen Sie eine Aktivierung unter %{custom} oder ${redhat}."
5890
6466
 
6467
+ msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
6468
+ msgstr ""
6469
+
6470
+ msgid "There are {numberOfHosts} hosts that need to be reassigned."
6471
+ msgstr ""
6472
+
5891
6473
  msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
5892
6474
  msgstr "Entweder wurden keine Umgebungen oder Versionen angegeben, oder es wurden ungültige Umgebungen oder Versionen angegeben. Bitte überprüfen Sie die Parameter environment_ids und content_view_version_ids."
5893
6475
 
@@ -5900,6 +6482,12 @@ msgstr "Es gibt keinen solchen HTTP-Proxy"
5900
6482
  msgid "There is nothing to see here"
5901
6483
  msgstr "Hier gibt es nichts zu sehen"
5902
6484
 
6485
+ msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
6486
+ msgstr ""
6487
+
6488
+ msgid "There is {numberOfHosts} host that needs to be reassigned."
6489
+ msgstr ""
6490
+
5903
6491
  msgid "There was a problem retrieving Activation Key data from the server."
5904
6492
  msgstr "Beim Abrufen der Aktivierungsschlüsseldaten vom Server ist ein Problem aufgetreten."
5905
6493
 
@@ -5948,13 +6536,13 @@ msgstr ""
5948
6536
  msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5949
6537
  msgstr ""
5950
6538
 
5951
- msgid "This host currently does not have traces."
6539
+ msgid "This host does not have any Module streams."
5952
6540
  msgstr ""
5953
6541
 
5954
- msgid "This host does not have any installable errata."
6542
+ msgid "This host does not have any packages."
5955
6543
  msgstr ""
5956
6544
 
5957
- msgid "This host does not have any packages."
6545
+ msgid "This host has errata that are applicable, but not installable."
5958
6546
  msgstr ""
5959
6547
 
5960
6548
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -5987,6 +6575,9 @@ msgstr "Dies ist kein verlinktes Repository"
5987
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}."
5988
6576
  msgstr ""
5989
6577
 
6578
+ msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
6579
+ msgstr ""
6580
+
5990
6581
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5991
6582
  msgstr "Dieses Repository wird nicht empfohlen. Bitte lesen Sie die zusätzliche %(anchorBegin)s Dokumentation %(anchorEnd)s vor der Verwendung."
5992
6583
 
@@ -6012,7 +6603,7 @@ msgid "This version is not promoted to any environments."
6012
6603
  msgstr ""
6013
6604
 
6014
6605
  msgid "This version will be removed from:"
6015
- msgstr ""
6606
+ msgstr "Diese Version wird entfernt von:"
6016
6607
 
6017
6608
  msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
6018
6609
  msgstr ""
@@ -6020,11 +6611,11 @@ msgstr ""
6020
6611
  msgid "Time in minutes to consider orphan content as orphaned."
6021
6612
  msgstr ""
6022
6613
 
6023
- msgid "Time in seconds to wait for a Host to finish a remote action"
6024
- msgstr "Wartezeit in Sekunden, bis ein Host eine entfernte Aktion abschließt"
6614
+ msgid "Time in seconds to wait for a host to finish a katello-agent action"
6615
+ msgstr ""
6025
6616
 
6026
- msgid "Time in seconds to wait for a Host to pickup a remote action"
6027
- msgstr "Wartezeit in Sekunden, bis ein Host eine entfernte Aktion aufnimmt"
6617
+ msgid "Time in seconds to wait for a host to pick up a katello-agent action"
6618
+ msgstr ""
6028
6619
 
6029
6620
  msgid "Timeout when refreshing a manifest (in seconds)"
6030
6621
  msgstr "Zeitüberschreitung beim Aktualisieren eines Manifests (in Sekunden)"
@@ -6041,11 +6632,8 @@ msgstr "Durch Umschalten des einfachen Inhaltszugriffs wird Ihr Manifest aktuali
6041
6632
  msgid "Total steps: "
6042
6633
  msgstr "Gesamtschritte:"
6043
6634
 
6044
- msgid "Total timeout in seconds for connections when syncing"
6045
- msgstr "Gesamtzeitüberschreitung in Sekunden für Verbindungen beim Synchronisieren"
6046
-
6047
6635
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6048
- msgstr ""
6636
+ msgstr "Tracer hilft Administratoren, Anwendungen zu identifizieren, die nach dem Patchen eines Systems neu gestartet werden müssen."
6049
6637
 
6050
6638
  msgid "Tracer profile uploaded successfully"
6051
6639
  msgstr "Tracer Profil erfolgreich hochgeladen"
@@ -6059,6 +6647,9 @@ msgstr ""
6059
6647
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6060
6648
  msgstr ""
6061
6649
 
6650
+ msgid "Traces may be listed here after {pkgLink}."
6651
+ msgstr ""
6652
+
6062
6653
  msgid "Traces that require logout cannot be restarted remotely"
6063
6654
  msgstr ""
6064
6655
 
@@ -6093,7 +6684,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
6093
6684
  msgstr "Type of Kontents: \"cert\", \"gpg_key\""
6094
6685
 
6095
6686
  msgid "URL"
6096
- msgstr ""
6687
+ msgstr "URL"
6097
6688
 
6098
6689
  msgid "URL needs to have a trailing /"
6099
6690
  msgstr "URL muss einen nachgestellten / haben"
@@ -6123,7 +6714,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
6123
6714
  msgstr "UUIDs der virtuellen Gäste vom Hypervisor des Hosts"
6124
6715
 
6125
6716
  msgid "Unable to connect"
6126
- msgstr ""
6717
+ msgstr "Verbindung kann nicht hergestellt werden"
6127
6718
 
6128
6719
  msgid "Unable to connect. Got: %s"
6129
6720
  msgstr "Verbindung fehlgeschlagen: %s"
@@ -6140,9 +6731,15 @@ msgstr "Unable to find product '%s' in organization '%s'"
6140
6731
  msgid "Unable to get users"
6141
6732
  msgstr "Benutzer können nicht abgerufen werden"
6142
6733
 
6734
+ msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
6735
+ msgstr ""
6736
+
6143
6737
  msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
6144
6738
  msgstr "Es ist nicht möglich inkrementell zu exportieren. Tätige einen vollen Export des Library-Kontents vor dem Upgrade des neuesten Inkrements."
6145
6739
 
6740
+ msgid "Unable to incrementally export. Do a Full Export on the repository content."
6741
+ msgstr ""
6742
+
6146
6743
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
6147
6744
  msgstr "Aktivierungsschlüssel konnten nicht neu zugewiesen werden. Bitte prüfen Sie die Parameter activation_key_content_view_id und activation_key_environment_id."
6148
6745
 
@@ -6185,6 +6782,9 @@ msgstr "Unberechtigt"
6185
6782
  msgid "Unfiltered params array: %s."
6186
6783
  msgstr "Ungefiltertes Parameter-Array: %s ."
6187
6784
 
6785
+ msgid "Uninstall and reset"
6786
+ msgstr ""
6787
+
6188
6788
  msgid "Uninstall packages remotely using katello-agent. %s"
6189
6789
  msgstr "Deinstallieren Sie Pakete aus der Ferne mit katello-agent. %s"
6190
6790
 
@@ -6239,6 +6839,9 @@ msgstr ""
6239
6839
  msgid "Update"
6240
6840
  msgstr "Aktualisieren"
6241
6841
 
6842
+ msgid "Update Alternate Content Source"
6843
+ msgstr ""
6844
+
6242
6845
  msgid "Update CDN Configuration"
6243
6846
  msgstr ""
6244
6847
 
@@ -6278,6 +6881,9 @@ msgstr "Synchronisationsplan aktualisieren"
6278
6881
  msgid "Update an activation key"
6279
6882
  msgstr "Aktivierungsschlüssel aktualisieren"
6280
6883
 
6884
+ msgid "Update an alternate content source"
6885
+ msgstr ""
6886
+
6281
6887
  msgid "Update an environment"
6282
6888
  msgstr "Umgebung aktualisieren"
6283
6889
 
@@ -6329,6 +6935,9 @@ msgstr "Update-Paket über Katello-Schnittstelle"
6329
6935
  msgid "Update packages remotely using katello-agent. %s"
6330
6936
  msgstr "Aktualisieren Sie Pakete aus der Ferne mit katello-agent. %s"
6331
6937
 
6938
+ msgid "Update packages via Katello interface"
6939
+ msgstr ""
6940
+
6332
6941
  msgid "Update redhat repository"
6333
6942
  msgstr "Redhat-Repository aktualisieren"
6334
6943
 
@@ -6347,6 +6956,9 @@ msgstr ""
6347
6956
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
6348
6957
  msgstr "Aktualisieren Sie die HTTP-Proxy-Konfiguration in den Repositorys eines oder mehrerer Produkte."
6349
6958
 
6959
+ msgid "Update the content source for specified hosts and generate the reconfiguration script"
6960
+ msgstr ""
6961
+
6350
6962
  msgid "Update the information about enabled repositories"
6351
6963
  msgstr "Informationen über aktivierte Repositorys aktualisieren"
6352
6964
 
@@ -6362,6 +6974,9 @@ msgstr "Aktualisiert"
6362
6974
  msgid "Updated component details"
6363
6975
  msgstr "Aktualisierte Komponentendetails"
6364
6976
 
6977
+ msgid "Updated from"
6978
+ msgstr ""
6979
+
6365
6980
  msgid "Updates"
6366
6981
  msgstr "Updates"
6367
6982
 
@@ -6387,9 +7002,9 @@ msgid "Updating repository authentication configuration"
6387
7002
  msgstr "Aktualisieren der Repository-Authentifizierungskonfiguration"
6388
7003
 
6389
7004
  msgid "Upgradable"
6390
- msgstr ""
7005
+ msgstr "Aufrüstbar"
6391
7006
 
6392
- msgid "Upgradable To"
7007
+ msgid "Upgradable to"
6393
7008
  msgstr ""
6394
7009
 
6395
7010
  msgid "Upgrade"
@@ -6422,9 +7037,18 @@ msgstr ""
6422
7037
  msgid "Upload request id"
6423
7038
  msgstr "Anfrage-ID hochladen"
6424
7039
 
7040
+ msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7041
+ msgstr ""
7042
+
7043
+ msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
7044
+ msgstr ""
7045
+
6425
7046
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6426
7047
  msgstr "Upstream-Name darf nicht leer sein, wenn das Repository-URL angegeben wird."
6427
7048
 
7049
+ msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
7050
+ msgstr ""
7051
+
6428
7052
  msgid "Upstream identity certificate not available"
6429
7053
  msgstr "Upstream-Identitätszertifikat nicht verfügbar"
6430
7054
 
@@ -6437,15 +7061,12 @@ msgstr ""
6437
7061
  msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6438
7062
  msgstr ""
6439
7063
 
6440
- msgid "Upstream organization to sync CDN content from"
7064
+ msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
6441
7065
  msgstr ""
6442
7066
 
6443
7067
  msgid "Upstream password requires upstream username be set."
6444
7068
  msgstr "Das Upstream-Passwort erfordert, dass der Upstream-Benutzername festgelegt wird."
6445
7069
 
6446
- msgid "Upstream server to sync CDN content from"
6447
- msgstr ""
6448
-
6449
7070
  msgid "Upstream username and password may only be set on custom repositories."
6450
7071
  msgstr "Upstream-Benutzername und -Passwort können nur für benutzerdefinierte Repositorys festgelegt werden."
6451
7072
 
@@ -6486,9 +7107,9 @@ msgid "User must be logged in."
6486
7107
  msgstr "Benutzer muss angemeldet sein."
6487
7108
 
6488
7109
  msgid "Username"
6489
- msgstr ""
7110
+ msgstr "Benutzername"
6490
7111
 
6491
- msgid "Username for authentication"
7112
+ msgid "Username for authentication. Relevant only for 'upstream_server' type."
6492
7113
  msgstr ""
6493
7114
 
6494
7115
  msgid "Username of the upstream repository user used for authentication"
@@ -6500,7 +7121,7 @@ msgstr "Benutzername für Zugriffs-URL"
6500
7121
  msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6501
7122
  msgstr ""
6502
7123
 
6503
- msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
7124
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
6504
7125
  msgstr ""
6505
7126
 
6506
7127
  msgid "Valid"
@@ -6545,6 +7166,15 @@ msgstr ""
6545
7166
  msgid "Versions"
6546
7167
  msgstr "Versionen"
6547
7168
 
7169
+ msgid "Versions "
7170
+ msgstr ""
7171
+
7172
+ msgid "Versions to exclusively include in the action"
7173
+ msgstr ""
7174
+
7175
+ msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
7176
+ msgstr ""
7177
+
6548
7178
  msgid "Versions will appear here when the content view is published."
6549
7179
  msgstr "Versionen werden hier angezeigt, wenn die Inhaltsansicht veröffentlicht wird."
6550
7180
 
@@ -6557,16 +7187,22 @@ msgstr "Sehen Sie sich einen Bericht der betroffenen Hosts an"
6557
7187
  msgid "View matching content"
6558
7188
  msgstr ""
6559
7189
 
6560
- msgid "Virtual"
6561
- msgstr "Virtuell"
7190
+ msgid "View tasks "
7191
+ msgstr ""
6562
7192
 
6563
- msgid "Visit the previous Packages page"
7193
+ msgid "View the Content Views page to manage and promote content views, or select a different environment."
6564
7194
  msgstr ""
6565
7195
 
7196
+ msgid "Virtual"
7197
+ msgstr "Virtuell"
7198
+
6566
7199
  msgid "Waiting to start."
6567
7200
  msgstr ""
6568
7201
 
6569
7202
  msgid "Warning"
7203
+ msgstr "Warnung"
7204
+
7205
+ msgid "What's next?"
6570
7206
  msgstr ""
6571
7207
 
6572
7208
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -6590,8 +7226,8 @@ msgstr "Löschen Sie beim Abmelden eines Hosts über den Subscription-Manager au
6590
7226
  msgid "Whether or not the host collection may have unlimited hosts"
6591
7227
  msgstr "Ob die Hostsammlung unbegrenzt viele Hosts haben darf"
6592
7228
 
6593
- msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
6594
- msgstr "Ob die Smart Proxys nach einer Content View-Werbung automatisch synchronisiert werden sollen oder nicht."
7229
+ msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
7230
+ msgstr ""
6595
7231
 
6596
7232
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
6597
7233
  msgstr "Ob der Status von Backend-Diensten wie Pulp und Candlepin vor der Ausführung von Aktionen überprüft werden soll. "
@@ -6620,9 +7256,6 @@ msgstr "Yay leerer Zustand"
6620
7256
  msgid "Yes"
6621
7257
  msgstr "Ja"
6622
7258
 
6623
- msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
6624
- msgstr "Sie arbeiten derzeit im getrennten Modus, in dem der Zugriff auf Red Hat Subscription Management verboten ist. Wenn Sie dies ändern möchten, aktualisieren Sie bitte die Inhaltseinstellung 'Getrennter Modus'."
6625
-
6626
7259
  msgid "You are not allowed to promote to Environments %s"
6627
7260
  msgstr "Sie sind nicht dazu berechtigt, in die Umgebungen %s zu übertragen"
6628
7261
 
@@ -6647,6 +7280,9 @@ msgstr ""
6647
7280
  msgid "You currently don't have any Content views."
6648
7281
  msgstr ""
6649
7282
 
7283
+ msgid "You currently don't have any alternate content sources."
7284
+ msgstr ""
7285
+
6650
7286
  msgid "You currently don't have any filters for this content view."
6651
7287
  msgstr "Sie haben derzeit keine Filter für diese Inhaltsansicht."
6652
7288
 
@@ -6680,6 +7316,9 @@ msgstr "Du hast Abonnements, die innerhalb von %s Tagen ablaufen"
6680
7316
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
6681
7317
  msgstr "Du hast nicht gespeicherte Änderungen. Möchten Sie den Vorgang beenden, ohne Ihre Änderungen zu speichern?"
6682
7318
 
7319
+ msgid "You may want to check the host's content view and lifecycle environment."
7320
+ msgstr ""
7321
+
6683
7322
  msgid "You were not allowed to add %s"
6684
7323
  msgstr "Sie haben keine Berechtigung, %s hinzuzufügen"
6685
7324
 
@@ -6701,6 +7340,9 @@ msgstr "Deine Such-Anfrage war ungültig. Bitte überarbeite sie und versuche es
6701
7340
  msgid "Your search returned no matching "
6702
7341
  msgstr ""
6703
7342
 
7343
+ msgid "Your search returned no matching Module streams."
7344
+ msgstr ""
7345
+
6704
7346
  msgid "Your search returned no matching RPMs."
6705
7347
  msgstr ""
6706
7348
 
@@ -6815,6 +7457,9 @@ msgstr "darf der Aktivierungs-Schlüssel unbegrenzt Hosts haben"
6815
7457
  msgid "can't be blank"
6816
7458
  msgstr "darf nicht leer sein"
6817
7459
 
7460
+ msgid "cannot add filter to generated content views"
7461
+ msgstr ""
7462
+
6818
7463
  msgid "cannot add filter to import-only view"
6819
7464
  msgstr "Filter kann nicht zur Nur-Import-Ansicht hinzugefügt werden"
6820
7465
 
@@ -6869,6 +7514,9 @@ msgstr "Candlepin-Aufgabenstatus prüfen"
6869
7514
  msgid "checking Pulp task status"
6870
7515
  msgstr "Status der Pulp-Aufgabe prüfen"
6871
7516
 
7517
+ msgid "click here"
7518
+ msgstr ""
7519
+
6872
7520
  msgid "composite content view identifier"
6873
7521
  msgstr "Zusammengesetzer Kontent-View-Identifizierer"
6874
7522
 
@@ -6887,6 +7535,9 @@ msgstr "Kontent-Typ ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
6887
7535
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6888
7536
  msgstr ""
6889
7537
 
7538
+ msgid "content view Dependency Solving Default"
7539
+ msgstr ""
7540
+
6890
7541
  msgid "content view component ID. Identifier of the component association"
6891
7542
  msgstr "Kontent-View Komponenten-ID. Identifizierer der Komponenten-Assoziation"
6892
7543
 
@@ -6962,8 +7613,8 @@ msgstr "Beschreibung des Filters"
6962
7613
  msgid "description of the repository"
6963
7614
  msgstr "Beschreibung des Repositorys"
6964
7615
 
6965
- msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
6966
- msgstr "Download-Richtlinie für Yum-Repos (entweder 'immediate' oder 'on_demand')"
7616
+ msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7617
+ msgstr ""
6967
7618
 
6968
7619
  msgid "enables or disables synchronization"
6969
7620
  msgstr "aktiviert oder deaktiviert die Synchronisation"
@@ -7037,6 +7688,9 @@ msgstr "ID filtern"
7037
7688
  msgid "filter identifiers"
7038
7689
  msgstr "Filterkennungen"
7039
7690
 
7691
+ msgid "filter only environments containing this label"
7692
+ msgstr ""
7693
+
7040
7694
  msgid "filter only environments containing this name"
7041
7695
  msgstr "nur Umgebungen mit diesem Namen filtern"
7042
7696
 
@@ -7100,6 +7754,9 @@ msgstr "Errata werden installiert …"
7100
7754
  msgid "installing erratum..."
7101
7755
  msgstr "Erratum wird installiert …"
7102
7756
 
7757
+ msgid "installing or updating packages"
7758
+ msgstr ""
7759
+
7103
7760
  msgid "installing package group..."
7104
7761
  msgstr "Paketgruppe wird installiert …"
7105
7762
 
@@ -7127,9 +7784,18 @@ msgstr "ist bereits mit der Capsule verknüpft"
7127
7784
  msgid "is invalid"
7128
7785
  msgstr "ist ungültig"
7129
7786
 
7787
+ msgid "is not a valid type. Must be one of the following: %s"
7788
+ msgstr ""
7789
+
7790
+ msgid "is not allowed for ACS. Must be one of the following: %s"
7791
+ msgstr ""
7792
+
7130
7793
  msgid "is not enabled. must be one of the following: %s"
7131
7794
  msgstr "ist nicht aktiviert. muss einer der folgenden sein: %s"
7132
7795
 
7796
+ msgid "is only allowed for Yum repositories."
7797
+ msgstr ""
7798
+
7133
7799
  msgid "label of the environment"
7134
7800
  msgstr "Kennung der Umgebung"
7135
7801
 
@@ -7202,6 +7868,9 @@ msgstr "muss einen gültigen öffentlichen GPG-Schlüssel enthalten"
7202
7868
  msgid "must contain valid Public GPG Key"
7203
7869
  msgstr "muss einen gültigen öffentlichen GPG-Schlüssel enthalten"
7204
7870
 
7871
+ msgid "must not be a negative value."
7872
+ msgstr ""
7873
+
7205
7874
  msgid "must not contain leading or trailing white spaces."
7206
7875
  msgstr "darf keine führenden oder nachfolgenden Leerstellen enthalten."
7207
7876
 
@@ -7298,6 +7967,9 @@ msgstr "Paket: Version"
7298
7967
  msgid "package_ids is not an array"
7299
7968
  msgstr "package_ids ist kein Array"
7300
7969
 
7970
+ msgid "package_names_for_job_template: Action must be one of %s"
7971
+ msgstr ""
7972
+
7301
7973
  msgid "params 'show_all_for' and 'available_for' must be used independently"
7302
7974
  msgstr "params 'show_all_for' und 'available_for' müssen unabhängig voneinander verwendet werden"
7303
7975
 
@@ -7415,6 +8087,12 @@ msgstr "Feed-URL für Synchronisation vorübergehend außer Kraft setzen"
7415
8087
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
7416
8088
  msgstr "Die folgenden Attribute können nicht für den Red Hat Anbieter aktualisiert werden: [ %s ]"
7417
8089
 
8090
+ msgid "to"
8091
+ msgstr ""
8092
+
8093
+ msgid "to update configuration on all hosts, or"
8094
+ msgstr ""
8095
+
7418
8096
  msgid "true if the latest version of the component's content view is desired"
7419
8097
  msgstr "Wahr falls die aktuellste Version des Kontent-Views des Komponenten gewünscht ist"
7420
8098
 
@@ -7439,9 +8117,15 @@ msgstr "Arten von Filtern"
7439
8117
  msgid "unknown permission for %s"
7440
8118
  msgstr "unbekannte Berechtigung für %s"
7441
8119
 
8120
+ msgid "unlimited"
8121
+ msgstr ""
8122
+
7442
8123
  msgid "update a filter"
7443
8124
  msgstr "Filter aktualisieren"
7444
8125
 
8126
+ msgid "update configuration on the hosts manually:"
8127
+ msgstr ""
8128
+
7445
8129
  msgid "updating package group..."
7446
8130
  msgstr "Paketgruppe wird aktualisiert …"
7447
8131
 
@@ -7454,6 +8138,9 @@ msgstr "Paket wird aktualisiert …"
7454
8138
  msgid "updating packages..."
7455
8139
  msgstr "Pakete werden aktualisiert …"
7456
8140
 
8141
+ msgid "upstream Foreman server"
8142
+ msgstr ""
8143
+
7457
8144
  msgid "url not defined."
7458
8145
  msgstr "URL nicht definiert"
7459
8146
 
@@ -7461,7 +8148,7 @@ msgid "via customized remote execution"
7461
8148
  msgstr ""
7462
8149
 
7463
8150
  msgid "via remote execution"
7464
- msgstr ""
8151
+ msgstr "über Remote-Ausführung"
7465
8152
 
7466
8153
  msgid "view content view tabs."
7467
8154
  msgstr ""
@@ -7498,3 +8185,30 @@ msgstr "ja"
7498
8185
 
7499
8186
  msgid "{0} items selected"
7500
8187
  msgstr "{0} items selected"
8188
+
8189
+ msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8190
+ msgstr ""
8191
+
8192
+ msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
8193
+ msgstr ""
8194
+
8195
+ msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
8196
+ msgstr ""
8197
+
8198
+ msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
8199
+ msgstr ""
8200
+
8201
+ msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
8202
+ msgstr ""
8203
+
8204
+ msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
8205
+ msgstr ""
8206
+
8207
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
8208
+ msgstr ""
8209
+
8210
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
8211
+ msgstr ""
8212
+
8213
+ msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
8214
+ msgstr ""