katello 4.8.4 → 4.9.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 (481) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +40 -4
  3. data/app/assets/javascripts/katello/locale/bn/katello.js +1 -0
  4. data/app/assets/javascripts/katello/locale/cs/katello.js +1 -0
  5. data/app/assets/javascripts/katello/locale/de/katello.js +1 -0
  6. data/app/assets/javascripts/katello/locale/en/katello.js +1 -0
  7. data/app/assets/javascripts/katello/locale/es/katello.js +1 -0
  8. data/app/assets/javascripts/katello/locale/fr/katello.js +1 -0
  9. data/app/assets/javascripts/katello/locale/gu/katello.js +1 -0
  10. data/app/assets/javascripts/katello/locale/hi/katello.js +1 -0
  11. data/app/assets/javascripts/katello/locale/it/katello.js +1 -0
  12. data/app/assets/javascripts/katello/locale/ja/katello.js +1 -0
  13. data/app/assets/javascripts/katello/locale/ka/katello.js +1 -0
  14. data/app/assets/javascripts/katello/locale/kn/katello.js +1 -0
  15. data/app/assets/javascripts/katello/locale/ko/katello.js +1 -0
  16. data/app/assets/javascripts/katello/locale/locale/katello.js +1 -0
  17. data/app/assets/javascripts/katello/locale/mr/katello.js +1 -0
  18. data/app/assets/javascripts/katello/locale/or/katello.js +1 -0
  19. data/app/assets/javascripts/katello/locale/pa/katello.js +1 -0
  20. data/app/assets/javascripts/katello/locale/pt/katello.js +1 -0
  21. data/app/assets/javascripts/katello/locale/pt_BR/katello.js +1 -0
  22. data/app/assets/javascripts/katello/locale/ru/katello.js +1 -0
  23. data/app/assets/javascripts/katello/locale/ta/katello.js +1 -0
  24. data/app/assets/javascripts/katello/locale/te/katello.js +1 -0
  25. data/app/assets/javascripts/katello/locale/zh_CN/katello.js +1 -0
  26. data/app/assets/javascripts/katello/locale/zh_TW/katello.js +1 -0
  27. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -0
  28. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  29. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -0
  30. data/app/controllers/katello/api/v2/content_views_controller.rb +22 -12
  31. data/app/controllers/katello/api/v2/environments_controller.rb +5 -1
  32. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +1 -1
  33. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -2
  34. data/app/controllers/katello/api/v2/organizations_controller.rb +11 -0
  35. data/app/controllers/katello/api/v2/repositories_controller.rb +4 -3
  36. data/app/controllers/katello/api/v2/repository_sets_controller.rb +13 -4
  37. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  38. data/app/controllers/katello/concerns/api/api_controller.rb +2 -2
  39. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +1 -1
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -4
  41. data/app/lib/actions/candlepin/product/content_add.rb +13 -1
  42. data/app/lib/actions/candlepin/product/content_update.rb +2 -1
  43. data/app/lib/actions/katello/agent_action.rb +3 -4
  44. data/app/lib/actions/katello/bulk_agent_action.rb +1 -4
  45. data/app/lib/actions/katello/content_view/publish.rb +1 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -0
  47. data/app/lib/actions/katello/host/update_content_view.rb +2 -4
  48. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  49. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  50. data/app/lib/actions/katello/product/content_create.rb +2 -2
  51. data/app/lib/actions/katello/repository/destroy.rb +15 -7
  52. data/app/lib/actions/katello/repository/update.rb +23 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +2 -0
  54. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +5 -12
  55. data/app/lib/katello/concerns/base_template_scope_extensions.rb +34 -2
  56. data/app/lib/katello/event_daemon/runner.rb +8 -4
  57. data/app/lib/katello/repo_discovery.rb +3 -1
  58. data/app/lib/katello/resources/cdn/katello_cdn.rb +4 -8
  59. data/app/lib/katello/util/default_enablement_migrator.rb +183 -0
  60. data/app/models/katello/activation_key.rb +4 -0
  61. data/app/models/katello/alternate_content_source.rb +13 -8
  62. data/app/models/katello/candlepin/repository_mapper.rb +0 -1
  63. data/app/models/katello/concerns/content_view_filter_rule_common.rb +42 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +9 -40
  65. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -23
  66. data/app/models/katello/content.rb +9 -0
  67. data/app/models/katello/content_view.rb +99 -4
  68. data/app/models/katello/content_view_environment_content_facet.rb +12 -0
  69. data/app/models/katello/content_view_filter.rb +5 -1
  70. data/app/models/katello/content_view_package_filter_rule.rb +0 -1
  71. data/app/models/katello/content_view_repository.rb +0 -1
  72. data/app/models/katello/content_view_version.rb +26 -0
  73. data/app/models/katello/docker_meta_tag.rb +4 -0
  74. data/app/models/katello/host/content_facet.rb +2 -0
  75. data/app/models/katello/kt_environment.rb +13 -3
  76. data/app/models/katello/ping.rb +1 -1
  77. data/app/models/katello/product.rb +1 -1
  78. data/app/models/katello/product_content.rb +13 -15
  79. data/app/models/katello/root_repository.rb +21 -2
  80. data/app/models/katello/sync_plan.rb +2 -6
  81. data/app/presenters/katello/host_package_presenter.rb +5 -3
  82. data/app/services/katello/product_content_finder.rb +6 -1
  83. data/app/services/katello/pulp3/alternate_content_source.rb +5 -0
  84. data/app/services/katello/pulp3/module_stream.rb +2 -12
  85. data/app/services/katello/pulp3/repository/yum.rb +3 -0
  86. data/app/views/foreman/job_templates/install_errata.erb +4 -4
  87. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +4 -7
  88. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +5 -6
  89. data/app/views/katello/api/v2/activation_keys/base.json.rabl +6 -0
  90. data/app/views/katello/api/v2/common/destroy.json.rabl +2 -1
  91. data/app/views/katello/api/v2/content_credentials/show.json.rabl +1 -1
  92. data/app/views/katello/api/v2/content_facet/base.json.rabl +10 -9
  93. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +6 -0
  94. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +11 -1
  95. data/app/views/katello/api/v2/content_views/base.json.rabl +3 -0
  96. data/app/views/katello/api/v2/docker_tags/_base.json.rabl +4 -0
  97. data/app/views/katello/api/v2/environments/show.json.rabl +10 -0
  98. data/app/views/katello/api/v2/host_subscriptions/show.json.rabl +1 -0
  99. data/app/views/katello/api/v2/repositories/index.json.rabl +6 -0
  100. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/repository_sets/show.json.rabl +8 -2
  102. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +22 -15
  103. data/app/views/smart_proxies/_disk_usage.html.erb +2 -0
  104. data/ca/redhat-uep.pem +53 -53
  105. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +0 -1
  106. data/db/migrate/20230328180352_add_applied_filters_to_katello_content_view_versions.rb +5 -0
  107. data/db/migrate/20230503190626_add_metadata_expire_to_root.rb +5 -0
  108. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +4 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +16 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +4 -3
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +15 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html +1 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -2
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +10 -4
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +2 -2
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +2 -0
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -0
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -0
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +2 -0
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +2 -4
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +0 -1
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +0 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +4 -2
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +12 -3
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tag-repositories.controller.js +43 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +7 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +0 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +0 -7
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html +60 -0
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +0 -8
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +10 -0
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +0 -4
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +4 -2
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +5 -4
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html +2 -2
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html +2 -2
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +7 -0
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js +4 -2
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-hosts.controller.js +4 -2
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html +4 -3
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +4 -3
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +590 -175
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn.po +5157 -0
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn_IN.po +5157 -0
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ca.po +5157 -0
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/cs_CZ.po +5204 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_AT.po +5153 -0
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_DE.po +5159 -0
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/el.po +5157 -0
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_GB.po +5158 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_US.po +5153 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/et_EE.po +5153 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gl.po +5157 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gu.po +5157 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/he_IL.po +5191 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/hi.po +5157 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/id.po +5136 -0
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +5303 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +34 -14
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/kn.po +5157 -0
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ml_IN.po +5153 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/mr.po +5157 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/nl_NL.po +5161 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/or.po +5157 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pa.po +5157 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl.po +5192 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl_PL.po +5187 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt.po +5174 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro.po +5170 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro_RO.po +5170 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +5279 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sl.po +5191 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sv_SE.po +5158 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta.po +5157 -0
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta_IN.po +5157 -0
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/te.po +5157 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/tr.po +5157 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi.po +5136 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi_VN.po +5136 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh.po +5136 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +38 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +8 -2
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +12 -3
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +13 -4
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +12 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +6 -0
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +0 -4
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +6 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +20 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +1 -1
  212. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/activation_keys.scss +13 -0
  213. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +1 -0
  214. data/lib/katello/engine.rb +0 -7
  215. data/lib/katello/plugin.rb +18 -15
  216. data/lib/katello/tasks/upgrades/4.9/update_custom_products_enablement.rake +11 -0
  217. data/lib/katello/version.rb +1 -1
  218. data/locale/action_names.rb +1 -2
  219. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  220. data/locale/bn/katello.po +215 -183
  221. data/locale/bn_IN/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/bn_IN/katello.po +8901 -0
  223. data/locale/ca/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ca/katello.po +8900 -0
  225. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  226. data/locale/cs/katello.po +216 -185
  227. data/locale/cs_CZ/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/cs_CZ/katello.po +8906 -0
  229. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  230. data/locale/de/katello.po +223 -191
  231. data/locale/de_AT/LC_MESSAGES/katello.mo +0 -0
  232. data/locale/de_AT/katello.po +8897 -0
  233. data/locale/de_DE/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/de_DE/katello.po +8906 -0
  235. data/locale/el/LC_MESSAGES/katello.mo +0 -0
  236. data/locale/el/katello.po +8900 -0
  237. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  238. data/locale/en/katello.po +215 -183
  239. data/locale/en_GB/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/en_GB/katello.po +8902 -0
  241. data/locale/en_US/LC_MESSAGES/katello.mo +0 -0
  242. data/locale/en_US/katello.po +8897 -0
  243. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/es/katello.po +218 -187
  245. data/locale/et_EE/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/et_EE/katello.po +8897 -0
  247. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  248. data/locale/fr/katello.po +233 -204
  249. data/locale/gl/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/gl/katello.po +8900 -0
  251. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/gu/katello.po +215 -183
  253. data/locale/he_IL/LC_MESSAGES/katello.mo +0 -0
  254. data/locale/he_IL/katello.po +8902 -0
  255. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/hi/katello.po +215 -183
  257. data/locale/id/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/id/katello.po +8896 -0
  259. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  260. data/locale/it/katello.po +216 -185
  261. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/ja/katello.po +233 -202
  263. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  264. data/locale/ka/katello.po +223 -191
  265. data/locale/katello.pot +1844 -1796
  266. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  267. data/locale/kn/katello.po +215 -183
  268. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  269. data/locale/ko/katello.po +216 -183
  270. data/locale/ml_IN/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/ml_IN/katello.po +8897 -0
  272. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  273. data/locale/mr/katello.po +215 -183
  274. data/locale/nl_NL/LC_MESSAGES/katello.mo +0 -0
  275. data/locale/nl_NL/katello.po +8907 -0
  276. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/or/katello.po +215 -183
  278. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  279. data/locale/pa/katello.po +215 -183
  280. data/locale/pl/LC_MESSAGES/katello.mo +0 -0
  281. data/locale/pl/katello.po +8903 -0
  282. data/locale/pl_PL/LC_MESSAGES/katello.mo +0 -0
  283. data/locale/pl_PL/katello.po +8899 -0
  284. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  285. data/locale/pt/katello.po +215 -183
  286. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  287. data/locale/pt_BR/katello.po +218 -187
  288. data/locale/ro/LC_MESSAGES/katello.mo +0 -0
  289. data/locale/ro/katello.po +8897 -0
  290. data/locale/ro_RO/LC_MESSAGES/katello.mo +0 -0
  291. data/locale/ro_RO/katello.po +8898 -0
  292. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  293. data/locale/ru/katello.po +216 -184
  294. data/locale/sl/LC_MESSAGES/katello.mo +0 -0
  295. data/locale/sl/katello.po +8901 -0
  296. data/locale/sv_SE/LC_MESSAGES/katello.mo +0 -0
  297. data/locale/sv_SE/katello.po +8903 -0
  298. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  299. data/locale/ta/katello.po +215 -183
  300. data/locale/ta_IN/LC_MESSAGES/katello.mo +0 -0
  301. data/locale/ta_IN/katello.po +8901 -0
  302. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  303. data/locale/te/katello.po +215 -183
  304. data/locale/tr/LC_MESSAGES/katello.mo +0 -0
  305. data/locale/tr/katello.po +8900 -0
  306. data/locale/vi/LC_MESSAGES/katello.mo +0 -0
  307. data/locale/vi/katello.po +8896 -0
  308. data/locale/vi_VN/LC_MESSAGES/katello.mo +0 -0
  309. data/locale/vi_VN/katello.po +8897 -0
  310. data/locale/zh/LC_MESSAGES/katello.mo +0 -0
  311. data/locale/zh/katello.po +8896 -0
  312. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  313. data/locale/zh_CN/katello.po +233 -202
  314. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  315. data/locale/zh_TW/katello.po +216 -183
  316. data/package.json +1 -0
  317. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +1 -0
  318. data/webpack/components/Bookmark/AddBookmarkModal.js +8 -2
  319. data/webpack/components/Content/ContentTable.js +1 -0
  320. data/webpack/components/Content/Details/ContentDetailInfo.js +1 -1
  321. data/webpack/components/Content/Details/ContentDetails.js +3 -3
  322. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetailInfo.test.js.snap +1 -0
  323. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +4 -0
  324. data/webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap +1 -0
  325. data/webpack/components/RoutedTabs/index.js +1 -1
  326. data/webpack/components/SelectOrg/SetOrganization.js +7 -1
  327. data/webpack/components/Table/EmptyStateMessage.js +8 -3
  328. data/webpack/components/Table/MainTable.js +8 -2
  329. data/webpack/components/TooltipButton/TooltipButton.js +2 -2
  330. data/webpack/components/TooltipButton/__snapshots__/TooltipButton.test.js.snap +3 -0
  331. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +2 -0
  332. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +81 -24
  333. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.scss +3 -0
  334. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +10 -3
  335. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +8 -0
  336. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -2
  337. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +3 -1
  338. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  339. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +0 -4
  340. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErratumExpansionDetail.js +2 -2
  341. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -5
  342. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +20 -0
  343. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  344. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +16 -0
  345. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +54 -8
  346. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +1 -0
  347. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +8 -1
  348. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  349. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  350. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  351. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +2 -1
  352. data/webpack/components/extensions/RegistrationCommands/fields/Force.js +1 -0
  353. data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +1 -0
  354. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -0
  355. data/webpack/components/extensions/about/index.js +2 -2
  356. data/webpack/components/pf3Table/components/Table.js +1 -0
  357. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +6 -1
  358. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +15 -2
  359. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +6 -1
  360. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +4 -1
  361. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -0
  362. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +1 -0
  363. data/webpack/scenes/Content/Details/ContentDetails.js +4 -2
  364. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  365. data/webpack/scenes/Content/GenericContentPage.js +1 -1
  366. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  367. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -0
  368. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +26 -13
  369. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +27 -13
  370. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +8 -4
  371. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -2
  372. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  373. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +25 -24
  374. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -1
  375. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +19 -3
  376. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +6 -0
  377. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
  379. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +15 -2
  380. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +5 -1
  381. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +13 -9
  382. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +19 -6
  383. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +5 -1
  384. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +50 -51
  385. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +45 -44
  386. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +45 -44
  387. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +13 -8
  388. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +4 -3
  389. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +5 -2
  390. data/webpack/scenes/ContentViews/Details/Filters/FilterRuleConstants.js +6 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +3 -2
  392. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +10 -2
  393. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +5 -1
  394. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +7 -0
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +37 -24
  396. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -3
  397. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -1
  398. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +78 -8
  399. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +27 -8
  400. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailNoReposAdded.fixtures.json +13 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +1 -1
  402. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +16 -16
  403. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +16 -16
  404. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +6 -3
  405. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +10 -5
  406. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +9 -2
  407. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +1 -0
  408. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +2 -1
  409. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +2 -1
  410. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +2 -1
  411. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +12 -6
  412. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +2 -1
  413. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +2 -1
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +25 -4
  415. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +4 -2
  416. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +26 -13
  417. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +30 -17
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +6 -3
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  422. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +8 -1
  423. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -1
  424. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +55 -6
  425. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +6 -3
  426. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +2 -1
  427. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +8 -4
  428. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +1 -1
  429. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +4 -2
  430. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  431. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +4 -2
  432. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +30 -3
  433. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +24 -2
  434. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +4 -0
  435. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +2 -2
  436. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -3
  437. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +2 -1
  438. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +2 -1
  439. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +3 -2
  440. data/webpack/scenes/ContentViews/components/ContentViewSelect/helpers.js +32 -0
  441. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +52 -42
  442. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  443. data/webpack/scenes/ContentViews/components/FiltersAppliedIcon.js +17 -0
  444. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.js +45 -0
  445. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.scss +9 -0
  446. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  447. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +49 -22
  448. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +7 -1
  449. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +1 -0
  450. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +2 -0
  451. data/webpack/scenes/Hosts/ChangeContentSource/index.js +2 -0
  452. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +1 -0
  453. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +1 -0
  454. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  455. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +2 -0
  456. data/webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js +6 -1
  457. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  458. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -0
  459. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +1 -0
  460. data/webpack/scenes/RedHatRepositories/helpers.js +2 -0
  461. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -1
  462. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  463. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +4 -4
  464. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap +1 -0
  465. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +2 -0
  466. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +4 -0
  467. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +2 -1
  468. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +5 -4
  469. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +1 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +1 -1
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -1
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -0
  473. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +1 -0
  474. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +1 -1
  475. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +5 -6
  476. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +60 -5
  477. data/webpack/utils/useKatelloDocUrl.js +18 -0
  478. metadata +163 -22
  479. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  480. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  481. data/webpack/components/extensions/HostDetails/common/KatelloAgentDeprecationAlert.js +0 -23
data/locale/de/katello.po CHANGED
@@ -167,9 +167,6 @@ msgstr ""
167
167
  msgid "%s is unreachable. %s"
168
168
  msgstr "%s ist unerreichbar. %s"
169
169
 
170
- msgid "%s must be an array."
171
- msgstr "%smuss ein Array sein."
172
-
173
170
  msgid "%{errata} (%{total} other errata)"
174
171
  msgstr "%{errata} (%{total} weitere Errata)"
175
172
 
@@ -404,15 +401,12 @@ msgstr "<b>SYNC</b> Zusammenfassung"
404
401
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
405
402
  msgstr "Es existiert bereits eine CV-Version mit derselben Haupt- und Nebenversion (%{major}.%{minor})"
406
403
 
407
- msgid "A Pool and its Subscription cannot belong to different organizations"
408
- msgstr "Ein Pool und sein Abonnement können nicht verschiedenen Organisationen angehören"
404
+ msgid "A Pool and its Subscription cannot belong to different organizations."
405
+ msgstr ""
409
406
 
410
407
  msgid "A backend service [ %s ] is unreachable"
411
408
  msgstr "Ein Back-End-Dienst [ %s ] kann nicht erreicht werden"
412
409
 
413
- msgid "A content view can be added by using the \"Create content view\" button below."
414
- msgstr ""
415
-
416
410
  msgid "A content_type must be provided."
417
411
  msgstr "Ein content_type muss angegeben werden."
418
412
 
@@ -479,9 +473,6 @@ msgstr "Aktion für den Standard-Smart-Proxy nicht zulässig."
479
473
  msgid "Action unauthorized to be performed in this organization."
480
474
  msgstr "Aktion ist nicht authorisiert in dieser Organization ausgeführt zu werden"
481
475
 
482
- msgid "Action unauthorized to be performed on selected hosts."
483
- msgstr "Aktion, die auf ausgewählten Hosts nicht ausgeführt werden darf."
484
-
485
476
  msgid "Action with sub plans"
486
477
  msgstr "Aktion mit Unterplänen"
487
478
 
@@ -533,6 +524,9 @@ msgstr ""
533
524
  msgid "Add Subscriptions"
534
525
  msgstr "Abonnements hinzufügen"
535
526
 
527
+ msgid "Add Subscriptions using the Add Subscriptions button."
528
+ msgstr ""
529
+
536
530
  msgid "Add a subscription to a host"
537
531
  msgstr "Subskription zu einem Host hinzufügen"
538
532
 
@@ -542,6 +536,9 @@ msgstr ""
542
536
  msgid "Add components to the content view"
543
537
  msgstr "Füge Komponenten zum Kontent-View hinzu"
544
538
 
539
+ msgid "Add content"
540
+ msgstr ""
541
+
545
542
  msgid "Add content view"
546
543
  msgstr ""
547
544
 
@@ -584,12 +581,18 @@ msgstr "Produkte zum Synchronisationsplan hinzufügen"
584
581
  msgid "Add repositories"
585
582
  msgstr ""
586
583
 
584
+ msgid "Add repositories with package groups to content view to select them here."
585
+ msgstr ""
586
+
587
587
  msgid "Add rule"
588
588
  msgstr ""
589
589
 
590
590
  msgid "Add source"
591
591
  msgstr "Quelle hinzufügen"
592
592
 
593
+ msgid "Add subscriptions"
594
+ msgstr ""
595
+
593
596
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
594
597
  msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription Management verwendet werden"
595
598
 
@@ -599,12 +602,6 @@ msgstr "Abonnements zu einem oder mehreren Hosts hinzufügen"
599
602
  msgid "Add to a host collection"
600
603
  msgstr ""
601
604
 
602
- msgid "Add to this filter using the 'Add Deb rule' button."
603
- msgstr ""
604
-
605
- msgid "Add to this filter using the 'Add filter rule' button."
606
- msgstr ""
607
-
608
605
  msgid "Add-ons"
609
606
  msgstr ""
610
607
 
@@ -728,15 +725,12 @@ msgstr "Immer auf die neueste Version aktualisieren"
728
725
  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."
729
726
  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."
730
727
 
731
- msgid "An alternate content source can be added by using the \"Add source\" button below."
728
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
732
729
  msgstr ""
733
730
 
734
731
  msgid "An environment is missing a prior"
735
732
  msgstr "Eine Umgebung fehlt ein Prior"
736
733
 
737
- msgid "An error occurred during content removal. Could not find repository with id: %s"
738
- msgstr "Beim Entfernen von Inhalten ist ein Fehler aufgetreten. Repository mit ID %s nicht gefunden:"
739
-
740
734
  msgid ""
741
735
  "An error occurred during the sync \n"
742
736
  "%{error_message}"
@@ -934,12 +928,6 @@ msgstr ""
934
928
  msgid "Autopublish"
935
929
  msgstr "Automatische Veröffentlichung"
936
930
 
937
- msgid "Autosearch"
938
- msgstr "Automatische Suche"
939
-
940
- msgid "Autosearch delay"
941
- msgstr "Verzögerung bei der automatischen Suche"
942
-
943
931
  msgid "Available"
944
932
  msgstr "Verfügbar"
945
933
 
@@ -1075,24 +1063,12 @@ msgstr "Relevante Errata basierend auf einer bestimmten Inhaltsansicht berechnen
1075
1063
  msgid "Calculate Applicable Errata based on a particular Environment"
1076
1064
  msgstr "Relevante Errata basierend auf einer bestimmten Umgebung berechnen"
1077
1065
 
1078
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1079
- msgstr ""
1080
-
1081
1066
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1082
1067
  msgstr ""
1083
1068
 
1084
- msgid "Can not add product %s because it is disabled."
1085
- msgstr "Produkt %s kann nicht hinzugefügt werden, da es deaktiviert ist."
1086
-
1087
- msgid "Can only destroy on Yum Repositories."
1088
- msgstr "Kann nur auf Yum-Repositories zerstört werden."
1089
-
1090
1069
  msgid "Can only remove content from within the Default Content View"
1091
1070
  msgstr "Nur Inhalt aus der standardmäßigen Inhaltsansicht kann entfernt werden"
1092
1071
 
1093
- msgid "Can only upload to Yum Repositories."
1094
- msgstr "Kann nur in Yum Repositories hochladen."
1095
-
1096
1072
  msgid "Can't update the '%s' environment"
1097
1073
  msgstr "\"%s\" Umgebung kann nicht aktualisiert werden"
1098
1074
 
@@ -1150,9 +1126,15 @@ msgstr "Standardinhaltsansicht kann nicht zu Verbundinhaltsansicht hinzugefügt
1150
1126
  msgid "Cannot add generated content view versions to composite content view"
1151
1127
  msgstr ""
1152
1128
 
1129
+ msgid "Cannot add product %s because it is disabled."
1130
+ msgstr ""
1131
+
1153
1132
  msgid "Cannot add repositories to a composite content view"
1154
1133
  msgstr "Repositorys können nicht zu einer Verbundinhaltsansicht hinzugefügt werden"
1155
1134
 
1135
+ msgid "Cannot associate a Red Hat provider with a custom product"
1136
+ msgstr ""
1137
+
1156
1138
  msgid "Cannot associate a component to a non composite content view"
1157
1139
  msgstr "Eine Komponente kann nicht mit einer nicht zusammengesetzten Inhaltsansicht verknüpft werden"
1158
1140
 
@@ -1204,8 +1186,11 @@ msgstr "Eine zusammengesetzte Inhaltsansicht kann nicht importiert werden"
1204
1186
  msgid "Cannot import a custom subscription from a redhat product."
1205
1187
  msgstr "Ein benutzerdefiniertes Abonnement kann nicht aus einem Redhat-Produkt importiert werden."
1206
1188
 
1207
- msgid "Cannot pass content units without content unit type"
1208
- msgstr "Inhaltsblöcke ohne Inhaltsblocktyp können nicht übergeben werden"
1189
+ msgid "Cannot incrementally export from a filtered and a non-filtered content view version. The exported content view version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}.'. Please do a full export."
1190
+ msgstr ""
1191
+
1192
+ msgid "Cannot incrementally export from a incrementally exported version and a regular version or vice-versa. The exported Content View Version '%{content_view} %{current}' cannot be incrementally exported from version '%{from}.' Please do a full export."
1193
+ msgstr ""
1209
1194
 
1210
1195
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1211
1196
  msgstr "Inkrementelle Aktualisierung auf Verbund-Inhaltsansichtsversion kann nicht durchgeführt werden (%{name} Version %{version}"
@@ -1276,6 +1261,9 @@ msgstr ""
1276
1261
  msgid "Change host content source"
1277
1262
  msgstr ""
1278
1263
 
1264
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1265
+ msgstr ""
1266
+
1279
1267
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1280
1268
  msgstr "Prüfen Sie, ob eine Verbindung zu Red Hat Subscription Management hergestellt werden kann."
1281
1269
 
@@ -1318,6 +1306,9 @@ msgstr ""
1318
1306
  msgid "Click here to go to the tasks page for the task."
1319
1307
  msgstr "Klicken Sie hier, um zur Aufgabenseite für die Aufgabe zu gelangen."
1320
1308
 
1309
+ msgid "Click to see repositories available to add."
1310
+ msgstr ""
1311
+
1321
1312
  msgid "Click {update} below to save changes."
1322
1313
  msgstr ""
1323
1314
 
@@ -1597,6 +1588,9 @@ msgstr ""
1597
1588
  msgid "Content view details"
1598
1589
  msgstr ""
1599
1590
 
1591
+ msgid "Content view does not need a publish since there are no audited changes since the last publish. Pass check_needs_publish parameter as false if you don't want to check if content view needs a publish."
1592
+ msgstr ""
1593
+
1600
1594
  msgid "Content view environments and activation key must all belong to the same organization"
1601
1595
  msgstr ""
1602
1596
 
@@ -1816,9 +1810,6 @@ msgstr "Exportverlauf erstellen"
1816
1810
  msgid "Create Import History"
1817
1811
  msgstr "Importverlauf erstellen"
1818
1812
 
1819
- msgid "Create Package Group"
1820
- msgstr "Paketgruppe erstellen"
1821
-
1822
1813
  msgid "Create Repositories"
1823
1814
  msgstr "Repositorys erstellen"
1824
1815
 
@@ -1843,9 +1834,6 @@ msgstr "Filterregel erstellen. Die enthaltenen Parameter sollten auf dem Filtert
1843
1834
  msgid "Create a host collection"
1844
1835
  msgstr "Hostsammlung erstellen"
1845
1836
 
1846
- msgid "Create a package group"
1847
- msgstr "Erstellen Sie eine Paketgruppe"
1848
-
1849
1837
  msgid "Create a product"
1850
1838
  msgstr "Produkt erstellen"
1851
1839
 
@@ -1879,6 +1867,9 @@ msgstr "Filter erstellen"
1879
1867
  msgid "Create host collection"
1880
1868
  msgstr ""
1881
1869
 
1870
+ msgid "Create new activation key"
1871
+ msgstr ""
1872
+
1882
1873
  msgid "Create organization"
1883
1874
  msgstr "Organisation erstellen"
1884
1875
 
@@ -2011,6 +2002,12 @@ msgstr ""
2011
2002
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
2012
2003
  msgstr ""
2013
2004
 
2005
+ msgid "Default export format"
2006
+ msgstr ""
2007
+
2008
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
2009
+ msgstr ""
2010
+
2014
2011
  msgid "Default finish template for new Operating Systems created from synced content"
2015
2012
  msgstr "Standard-Finish-Vorlage für neue Betriebssysteme, die aus synchronisierten Inhalten erstellt wurden"
2016
2013
 
@@ -2086,9 +2083,6 @@ msgstr "Lebenszyklusumgebung löschen"
2086
2083
  msgid "Delete Manifest"
2087
2084
  msgstr "Manifest löschen"
2088
2085
 
2089
- msgid "Delete Package Group"
2090
- msgstr "Paketgruppe löschen"
2091
-
2092
2086
  msgid "Delete Product"
2093
2087
  msgstr "Produkt löschen"
2094
2088
 
@@ -2104,9 +2098,6 @@ msgstr "Inhaltsansicht löschen"
2104
2098
  msgid "Delete a filter rule"
2105
2099
  msgstr "Filterregel löschen"
2106
2100
 
2107
- msgid "Delete a package group"
2108
- msgstr "Löschen einer Paketgruppe"
2109
-
2110
2101
  msgid "Delete all subscriptions attached to activation keys."
2111
2102
  msgstr "Löschen Sie alle Abonnements, die an Aktivierungsschlüssel angehängt sind."
2112
2103
 
@@ -2470,6 +2461,12 @@ msgstr "Errata-Installation"
2470
2461
  msgid "Errata Install scheduled by %s"
2471
2462
  msgstr "Errata-Installation eingeplant durch %s"
2472
2463
 
2464
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2465
+ msgstr ""
2466
+
2467
+ msgid "Errata and package information will be updated immediately."
2468
+ msgstr ""
2469
+
2473
2470
  msgid "Errata id of the erratum (RHSA-2012:108)"
2474
2471
  msgstr "Errata-ID des Erratums (RHSA-2012:108)"
2475
2472
 
@@ -2572,9 +2569,7 @@ msgstr "Export Typen"
2572
2569
  msgid "Export as CSV"
2573
2570
  msgstr "Als CSV exportieren"
2574
2571
 
2575
- msgid ""
2576
- "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2577
- " Defaults to importable."
2572
+ msgid "Export formats.Choose syncable if the exported content needs to be in a yum format. This option is only available for %{syncable_repos} repositories. Choose importable if the importing server uses the same version and exported content needs to be one of %{importable_repos} repositories."
2578
2573
  msgstr ""
2579
2574
 
2580
2575
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2598,11 +2593,6 @@ msgstr "Fehler beim Löschen von %{host}: %{errors}"
2598
2593
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2599
2594
  msgstr ""
2600
2595
 
2601
- msgid "Failed to download %s package."
2602
- msgid_plural "Failed to download %s packages."
2603
- msgstr[0] "Herunterladen für %s Paket fehlgeschlagen."
2604
- msgstr[1] "Herunterladen für %s Pakete fehlgeschlagen."
2605
-
2606
2596
  msgid "Failed to find %{content} with id '%{id}'."
2607
2597
  msgstr "%{content} mit ID \"%{id}\" konnte nicht gefunden werden."
2608
2598
 
@@ -2723,7 +2713,10 @@ msgstr "Filter"
2723
2713
  msgid "Filters deleted"
2724
2714
  msgstr ""
2725
2715
 
2726
- msgid "Filters will appear here when the filter is created."
2716
+ msgid "Filters were applied to this version."
2717
+ msgstr ""
2718
+
2719
+ msgid "Filters will be applied to this content view version."
2727
2720
  msgstr ""
2728
2721
 
2729
2722
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2738,9 +2731,6 @@ msgstr "Zeitüberschreitung für Aktion beenden"
2738
2731
  msgid "Finished"
2739
2732
  msgstr "Fertig"
2740
2733
 
2741
- msgid "For pages that support it, automatically perform search while typing in search input."
2742
- msgstr "Führen Sie bei Seiten, die dies unterstützen, automatisch die Suche durch, während Sie die Sucheingabe eingeben."
2743
-
2744
2734
  msgid "Force"
2745
2735
  msgstr "Erzwingen"
2746
2736
 
@@ -2754,6 +2744,9 @@ msgstr ""
2754
2744
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2755
2745
  msgstr "Erzwingen Sie eine Synchronisierung und validieren Sie die Prüfsummen aller Inhalte. Wird nur mit Yum-Repositorys verwendet."
2756
2746
 
2747
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2748
+ msgstr ""
2749
+
2757
2750
  msgid "Force delete the repository by removing it from all content view versions"
2758
2751
  msgstr ""
2759
2752
 
@@ -2796,6 +2789,9 @@ msgstr ""
2796
2789
  msgid "Generate and Download"
2797
2790
  msgstr "Generieren und herunterladen"
2798
2791
 
2792
+ msgid "Generate errata status from directly-installable content"
2793
+ msgstr ""
2794
+
2799
2795
  msgid "Generate host applicability"
2800
2796
  msgstr "Hostanwendbarkeit generieren"
2801
2797
 
@@ -2859,9 +2855,6 @@ msgstr "Zur Aufgabenseite gehen"
2859
2855
  msgid "Greater than"
2860
2856
  msgstr ""
2861
2857
 
2862
- msgid "Group %{id} already created."
2863
- msgstr "Gruppe %{id} wurde bereits erstellt."
2864
-
2865
2858
  msgid "Guests of"
2866
2859
  msgstr "Gäste von"
2867
2860
 
@@ -2901,6 +2894,9 @@ msgstr "Host"
2901
2894
  msgid "Host %s has not been registered with subscription-manager."
2902
2895
  msgstr "Host %s has not been registered with subscription-manager."
2903
2896
 
2897
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2898
+ msgstr ""
2899
+
2904
2900
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2905
2901
  msgstr "Host %{name} kann der Release-Version %{release_version} nicht zugewiesen werden."
2906
2902
 
@@ -3168,9 +3164,6 @@ msgstr "Gibt an, ob das Repository auf einem Client mit einer nicht übereinstim
3168
3164
  msgid "Ids of smart proxies to associate"
3169
3165
  msgstr ""
3170
3166
 
3171
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3172
- msgstr "Wenn die automatische Suche aktiviert ist, verzögern Sie in Millisekunden, bevor Suchvorgänge während der Eingabe ausgeführt werden."
3173
-
3174
3167
  msgid "If SSL should be verified for the upstream URL"
3175
3168
  msgstr ""
3176
3169
 
@@ -3198,14 +3191,17 @@ msgstr ""
3198
3191
  msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3199
3192
  msgstr ""
3200
3193
 
3194
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3195
+ msgstr ""
3196
+
3201
3197
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3202
3198
  msgstr "Bei true werden nur Repository-Sets zurückgegeben, die mit einem aktiven Abonnement verknüpft sind"
3203
3199
 
3204
3200
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3205
3201
  msgstr "Bei true werden nur aktivierte Repository-Sets zurückgegeben. Standardwert auf false"
3206
3202
 
3207
- msgid "If true, return custom repository sets along with redhat repos"
3208
- msgstr "Bei true werden benutzerdefinierte Repository-Sets zusammen mit Redhat-Repositorys zurückgegeben"
3203
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3204
+ msgstr ""
3209
3205
 
3210
3206
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
3211
3207
  msgstr "Wenn true, werden beim Hinzufügen der angegebenen Errata oder Pakete auch alle benötigten Abhängigkeiten kopiert. Defaults auf wahr"
@@ -3237,6 +3233,9 @@ msgstr "Subskriptionen, die für den angegebenen Host nicht verfügbar sind, ign
3237
3233
  msgid "Ignored hosts"
3238
3234
  msgstr ""
3239
3235
 
3236
+ msgid "Image"
3237
+ msgstr ""
3238
+
3240
3239
  msgid "Immediate"
3241
3240
  msgstr "SRPMs ignorieren"
3242
3241
 
@@ -3450,10 +3449,7 @@ msgstr ""
3450
3449
  msgid "Installable"
3451
3450
  msgstr "Installierbar"
3452
3451
 
3453
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3454
- msgstr ""
3455
-
3456
- msgid "Installable errata from content view"
3452
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3457
3453
  msgstr ""
3458
3454
 
3459
3455
  msgid "Installable updates"
@@ -3594,7 +3590,7 @@ msgstr "Ausgegeben"
3594
3590
  msgid "Issued from"
3595
3591
  msgstr ""
3596
3592
 
3597
- msgid "Items will appear here when a filter rule is added."
3593
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3598
3594
  msgstr ""
3599
3595
 
3600
3596
  msgid "Job '${description}' completed"
@@ -3762,6 +3758,9 @@ msgstr ""
3762
3758
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3763
3759
  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."
3764
3760
 
3761
+ msgid "Limit content to Red Hat / custom"
3762
+ msgstr ""
3763
+
3765
3764
  msgid "Limit content to enabled / disabled / overridden"
3766
3765
  msgstr ""
3767
3766
 
@@ -4179,21 +4178,24 @@ msgstr ""
4179
4178
  msgid "Multi-entitlement"
4180
4179
  msgstr "Multi-Berechtigung"
4181
4180
 
4182
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4183
- msgstr "Muss mindestens einen der Parameter mandatory_package_names, optional_package_names, conditional_package_names, default_package_names angeben"
4184
-
4185
4181
  msgid "N/A"
4186
4182
  msgstr "N/A"
4187
4183
 
4188
4184
  msgid "NA"
4189
4185
  msgstr "Nicht verfügbar"
4190
4186
 
4187
+ msgid "NOTE: Content view version '%{content_view} %{current}' does not have any exportable repositories. At least one repository with any of the following types is required to be able to export: '%{exportable_types}'."
4188
+ msgstr ""
4189
+
4191
4190
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4192
4191
  msgstr "HINWEIS: Katello-agent ist veraltet und wird in entfernt in %s. Ziehen Sie stattdessen die Verwendung von Remote-Ausführung in Betracht."
4193
4192
 
4194
4193
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4195
4194
  msgstr ""
4196
4195
 
4196
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4197
+ msgstr ""
4198
+
4197
4199
  msgid ""
4198
4200
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
4199
4201
  " %{repos}"
@@ -4273,12 +4275,6 @@ msgstr "Nie synchronisiert"
4273
4275
  msgid "New Errata"
4274
4276
  msgstr "Neue Errata"
4275
4277
 
4276
- msgid "New Files: %s"
4277
- msgstr "New Files: %s"
4278
-
4279
- msgid "New blobs: %{count}."
4280
- msgstr "Neue Blobs: %{count}."
4281
-
4282
4278
  msgid "New content view name"
4283
4279
  msgstr "Neuer Name für die Inhaltsansicht"
4284
4280
 
@@ -4291,15 +4287,15 @@ msgstr "Neuer Name darf nicht leer sein"
4291
4287
  msgid "New name for the content view"
4292
4288
  msgstr "Neuer Name für die Inhaltsansicht"
4293
4289
 
4294
- msgid "New packages: %{count} (%{size})."
4295
- msgstr "Neue Pakete: %{count} (%{size})"
4296
-
4297
4290
  msgid "New version is available: Version ${latestVersion}"
4298
4291
  msgstr "Neue Version ist verfügbar: Version ${latestVersion}"
4299
4292
 
4300
4293
  msgid "Newly published"
4301
4294
  msgstr "Neu veröffentlicht"
4302
4295
 
4296
+ msgid "Newly published version will be the same as the previous version."
4297
+ msgstr ""
4298
+
4303
4299
  msgid "No"
4304
4300
  msgstr "Nein"
4305
4301
 
@@ -4351,6 +4347,12 @@ msgstr ""
4351
4347
  msgid "No artifacts to show"
4352
4348
  msgstr "Keine Artefakte zum Anzeigen"
4353
4349
 
4350
+ msgid "No available component content view updates"
4351
+ msgstr ""
4352
+
4353
+ msgid "No available repository or filter updates"
4354
+ msgstr ""
4355
+
4354
4356
  msgid "No content"
4355
4357
  msgstr ""
4356
4358
 
@@ -4375,8 +4377,11 @@ msgstr ""
4375
4377
  msgid "No content views available for the selected environment"
4376
4378
  msgstr ""
4377
4379
 
4378
- msgid "No content views belong to ${label}"
4379
- msgstr "Keine Inhaltsansichten gehören zu ${label}"
4380
+ msgid "No content views to add yet"
4381
+ msgstr ""
4382
+
4383
+ msgid "No content views yet"
4384
+ msgstr ""
4380
4385
 
4381
4386
  msgid "No content_view_version_ids provided"
4382
4387
  msgstr "Keine content_view_version_ids angegeben"
@@ -4396,10 +4401,13 @@ msgstr "Keine Umgebung"
4396
4401
  msgid "No environments"
4397
4402
  msgstr "Keine Umgebungen"
4398
4403
 
4399
- msgid "No errata available for this content view."
4404
+ msgid "No errata filter rules yet"
4405
+ msgstr ""
4406
+
4407
+ msgid "No errata matching given search query"
4400
4408
  msgstr ""
4401
4409
 
4402
- msgid "No errata available to add to this filter."
4410
+ msgid "No errata to add yet"
4403
4411
  msgstr ""
4404
4412
 
4405
4413
  msgid "No errors"
@@ -4411,6 +4419,12 @@ msgstr "Keine existierende Export-History wurde gefunden um einen inkrementellen
4411
4419
  msgid "No file uploaded"
4412
4420
  msgstr "Keine Datei hochgeladen"
4413
4421
 
4422
+ msgid "No filters yet"
4423
+ msgstr ""
4424
+
4425
+ msgid "No history yet"
4426
+ msgstr ""
4427
+
4414
4428
  msgid "No host collections"
4415
4429
  msgstr ""
4416
4430
 
@@ -4426,6 +4440,9 @@ msgstr ""
4426
4440
  msgid "No hosts have been specified."
4427
4441
  msgstr "Es wurden keine Hosts angegeben."
4428
4442
 
4443
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4444
+ msgstr ""
4445
+
4429
4446
  msgid "No hosts registered with subscription-manager found in selection."
4430
4447
  msgstr "Keine beim Subscription-Manager registrierten Hosts in der Auswahl gefunden."
4431
4448
 
@@ -4495,20 +4512,23 @@ msgstr "Keine passenden Repositorys gefunden"
4495
4512
  msgid "No matching repository sets found"
4496
4513
  msgstr ""
4497
4514
 
4498
- msgid "No matching rules found."
4499
- msgstr "Keine passenden Regeln gefunden."
4500
-
4501
4515
  msgid "No matching traces found"
4502
4516
  msgstr ""
4503
4517
 
4504
4518
  msgid "No matching version found"
4505
4519
  msgstr "Keine passende Version gefunden"
4506
4520
 
4521
+ msgid "No module stream filter rules yet"
4522
+ msgstr ""
4523
+
4524
+ msgid "No module streams to add yet."
4525
+ msgstr ""
4526
+
4507
4527
  msgid "No new packages installed"
4508
4528
  msgstr "Keine neuen Pakete installiert"
4509
4529
 
4510
- msgid "No new packages."
4511
- msgstr "Keine neuen Pakete"
4530
+ msgid "No package groups yet"
4531
+ msgstr ""
4512
4532
 
4513
4533
  msgid "No packages"
4514
4534
  msgstr ""
@@ -4516,7 +4536,7 @@ msgstr ""
4516
4536
  msgid "No packages available to install"
4517
4537
  msgstr ""
4518
4538
 
4519
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4539
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4520
4540
  msgstr ""
4521
4541
 
4522
4542
  msgid "No packages removed"
@@ -4558,6 +4578,12 @@ msgstr "Keine kürzlich synchronisierten Produkte."
4558
4578
  msgid "No recurring logic tied to the sync plan."
4559
4579
  msgstr "Keine wiederkehrende Logik, die an den Synchronisierungsplan gebunden ist."
4560
4580
 
4581
+ msgid "No repositories added yet"
4582
+ msgstr ""
4583
+
4584
+ msgid "No repositories available to add"
4585
+ msgstr ""
4586
+
4561
4587
  msgid "No repositories available."
4562
4588
  msgstr "Keine Repositorys verfügbar."
4563
4589
 
@@ -4576,8 +4602,8 @@ msgstr "Keine Repository-Sets entsprechen Ihren Suchkriterien."
4576
4602
  msgid "No repository sets to show."
4577
4603
  msgstr ""
4578
4604
 
4579
- msgid "No rules have been added to this filter."
4580
- msgstr "Diesem Filter wurden keine Regeln hinzugefügt."
4605
+ msgid "No rules yet"
4606
+ msgstr ""
4581
4607
 
4582
4608
  msgid "No services defined, is this class extended?"
4583
4609
  msgstr "Keine Dienste definiert, ist diese Klasse erweitert?"
@@ -4594,6 +4620,9 @@ msgstr "Für ausgewählte Produkte und Optionen wurden keine synchronisierbaren
4594
4620
  msgid "No uploads param specified. An array of uploads to import is required."
4595
4621
  msgstr "Keine Upload-Parameter angegeben. Es ist ein Array von zu importierenden Uploads erforderlich."
4596
4622
 
4623
+ msgid "No versions yet"
4624
+ msgstr ""
4625
+
4597
4626
  msgid "Non-security errata applicable"
4598
4627
  msgstr "Anwendbare, nicht-sicherheitsspezifische Errata "
4599
4628
 
@@ -4699,9 +4728,6 @@ msgstr "Ein oder mehrere Hosts nicht gefunden"
4699
4728
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4700
4729
  msgstr "Eine oder mehrere IDs (%{ids}) wurden für %{assoc} nicht gefunden. Möglicherweise sind Sie nicht berechtigt, sie anzuzeigen."
4701
4730
 
4702
- msgid "One or more packages failed to sync properly."
4703
- msgstr "Ein oder mehrere Pakete wurden nicht ordnungsgemäß synchronisiert."
4704
-
4705
4731
  msgid "One or more processes require restarting"
4706
4732
  msgstr "Ein oder mehrere Prozesse erfordern einen Neustart"
4707
4733
 
@@ -4984,9 +5010,6 @@ msgstr ""
4984
5010
  msgid "Paused"
4985
5011
  msgstr "Pausiert"
4986
5012
 
4987
- msgid "Pending"
4988
- msgstr "Ausstehend"
4989
-
4990
5013
  msgid "Perform a module stream action via Katello interface"
4991
5014
  msgstr "Führen Sie eine Modul-Stream-Aktion über die Katello-Schnittstelle durch"
4992
5015
 
@@ -5020,12 +5043,12 @@ msgstr "Physisch"
5020
5043
  msgid "Plan numeric identifier"
5021
5044
  msgstr "Numerische Plan-ID"
5022
5045
 
5023
- msgid "Please add some content views."
5024
- msgstr "Bitte fügen Sie einige Inhaltsansichten hinzu."
5025
-
5026
5046
  msgid "Please add some repositories."
5027
5047
  msgstr "Bitte fügen Sie einige Repositorys hinzu."
5028
5048
 
5049
+ msgid "Please create some content views."
5050
+ msgstr ""
5051
+
5029
5052
  msgid "Please enter a positive number above zero"
5030
5053
  msgstr "Bitte geben Sie eine positive Zahl über Null ein"
5031
5054
 
@@ -5101,12 +5124,6 @@ msgstr ""
5101
5124
  msgid "Problem searching traces"
5102
5125
  msgstr ""
5103
5126
 
5104
- msgid "Processing metadata"
5105
- msgstr "Metadaten werden verarbeitet"
5106
-
5107
- msgid "Processing metadata."
5108
- msgstr "Metadaten werden verarbeitet."
5109
-
5110
5127
  msgid "Product"
5111
5128
  msgstr "Produkt"
5112
5129
 
@@ -5119,9 +5136,6 @@ msgstr "Produkt erstellen"
5119
5136
  msgid "Product ID"
5120
5137
  msgstr "Produkt-ID"
5121
5138
 
5122
- msgid "Product Name"
5123
- msgstr "Produktname"
5124
-
5125
5139
  msgid "Product and Repositories"
5126
5140
  msgstr "Produkte und Repositorys"
5127
5141
 
@@ -5411,6 +5425,9 @@ msgstr ""
5411
5425
  msgid "Recommended Repositories"
5412
5426
  msgstr "Empfohlene Repositorys"
5413
5427
 
5428
+ msgid "Red Hat"
5429
+ msgstr ""
5430
+
5414
5431
  msgid "Red Hat CDN"
5415
5432
  msgstr ""
5416
5433
 
@@ -5666,6 +5683,9 @@ msgstr ""
5666
5683
  msgid "Repo Type"
5667
5684
  msgstr "Repository-Typ"
5668
5685
 
5686
+ msgid "Report"
5687
+ msgstr ""
5688
+
5669
5689
  msgid "Repositories"
5670
5690
  msgstr "Repositorys"
5671
5691
 
@@ -5708,9 +5728,6 @@ msgstr "Repository-Identifikator"
5708
5728
  msgid "Repository label '%s' is not associated with content view."
5709
5729
  msgstr "Das Repository-Label '%s' ist nicht mit der Inhaltsansicht verknüpft."
5710
5730
 
5711
- msgid "Repository metadata publish"
5712
- msgstr "Repository-Metadaten veröffentlichen"
5713
-
5714
5731
  msgid "Repository not found"
5715
5732
  msgstr "Repository nicht gefunden"
5716
5733
 
@@ -5747,6 +5764,12 @@ msgstr ""
5747
5764
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5748
5765
  msgstr ""
5749
5766
 
5767
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5768
+ msgstr ""
5769
+
5770
+ msgid "Repository type"
5771
+ msgstr ""
5772
+
5750
5773
  msgid "Republish Repositories of %{name} %{version}"
5751
5774
  msgstr "Repositorys von %{name} %{version} erneut veröffentlichen"
5752
5775
 
@@ -6044,6 +6067,9 @@ msgstr ""
6044
6067
  msgid "Select a client key"
6045
6068
  msgstr ""
6046
6069
 
6070
+ msgid "Select a content source first"
6071
+ msgstr ""
6072
+
6047
6073
  msgid "Select a content view"
6048
6074
  msgstr ""
6049
6075
 
@@ -6059,6 +6085,9 @@ msgstr "Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Promotionspfa
6059
6085
  msgid "Select a provider to install katello-host-tools-tracer"
6060
6086
  msgstr ""
6061
6087
 
6088
+ msgid "Select a source"
6089
+ msgstr ""
6090
+
6062
6091
  msgid "Select add-ons"
6063
6092
  msgstr ""
6064
6093
 
@@ -6074,7 +6103,7 @@ msgstr "Organisation wählen"
6074
6103
  msgid "Select an environment"
6075
6104
  msgstr ""
6076
6105
 
6077
- msgid "Select an environment above"
6106
+ msgid "Select an environment first"
6078
6107
  msgstr ""
6079
6108
 
6080
6109
  msgid "Select an option"
@@ -6239,6 +6268,9 @@ msgstr ""
6239
6268
  msgid "Show all"
6240
6269
  msgstr ""
6241
6270
 
6271
+ msgid "Show all repository sets"
6272
+ msgstr ""
6273
+
6242
6274
  msgid "Show an activation key"
6243
6275
  msgstr "Aktivierungsschlüssel anzeigen"
6244
6276
 
@@ -6260,6 +6292,9 @@ msgstr "Filterregelinformationen anzeigen"
6260
6292
  msgid "Show full description"
6261
6293
  msgstr ""
6262
6294
 
6295
+ msgid "Show hosts associated to an activation key"
6296
+ msgstr ""
6297
+
6263
6298
  msgid "Show organization"
6264
6299
  msgstr "Organisation anzeigen"
6265
6300
 
@@ -6269,12 +6304,18 @@ msgstr "Verfügbare Release-Versionen für einen Aktivierungsschlüssel anzeigen
6269
6304
  msgid "Show releases available for the content host"
6270
6305
  msgstr "Verfügbare Releases für den Inhaltshost anzeigen"
6271
6306
 
6307
+ msgid "Show repositories"
6308
+ msgstr ""
6309
+
6272
6310
  msgid "Show repositories enabled on the host that are known to Katello"
6273
6311
  msgstr ""
6274
6312
 
6275
6313
  msgid "Show the available repository types"
6276
6314
  msgstr "Verfügbare Repository-Typen anzeigen"
6277
6315
 
6316
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6317
+ msgstr ""
6318
+
6278
6319
  msgid "Shows status of Katello system and it's subcomponents"
6279
6320
  msgstr "Zeigt den Status des Katello-Systems und seiner Unterkomponenten an"
6280
6321
 
@@ -6332,6 +6373,12 @@ msgstr "Lösen Sie RPM-Abhängigkeiten standardmäßig beim Veröffentlichen von
6332
6373
  msgid "Solve dependencies"
6333
6374
  msgstr "Abhängigkeiten lösen"
6334
6375
 
6376
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6377
+ msgstr ""
6378
+
6379
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6380
+ msgstr ""
6381
+
6335
6382
  msgid "Some hosts are not registered as content hosts and will be ignored."
6336
6383
  msgstr ""
6337
6384
 
@@ -6776,9 +6823,6 @@ msgstr "Synchronisieren"
6776
6823
  msgid "Synchronize Now"
6777
6824
  msgstr "Jetzt synchronisieren"
6778
6825
 
6779
- msgid "Synchronize capsule content"
6780
- msgstr "Capsule-Inhalt synchronisieren"
6781
-
6782
6826
  msgid "Synchronize repository"
6783
6827
  msgstr "Repository synchronisieren"
6784
6828
 
@@ -6812,7 +6856,7 @@ msgstr ""
6812
6856
  msgid "System purpose attributes updated"
6813
6857
  msgstr ""
6814
6858
 
6815
- msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6859
+ msgid "System purpose enables you to set the system's intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6816
6860
  msgstr ""
6817
6861
 
6818
6862
  msgid "Tag name"
@@ -6890,9 +6934,6 @@ msgstr "Das Startdatum der Erratum-Filterregel hat ein ungültiges Format oder
6890
6934
  msgid "The erratum type must be an array. Invalid value provided"
6891
6935
  msgstr "Der Erratum-Typ muss ein Array sein. Ungültiger Wert angegeben"
6892
6936
 
6893
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6894
- msgstr "Die exportierte Inhaltsansichtsversion '%{content_view} %{current}' kann nicht inkrementell von Version '%{from}' aktualisiert werden. Bitte führen Sie einen vollständigen Export durch."
6895
-
6896
6937
  msgid "The field to sort the data by. Defaults to the created date."
6897
6938
  msgstr "Das Feld, nach dem die Daten sortiert werden sollen. Standardmäßig wird das Erstellungsdatum verwendet."
6898
6939
 
@@ -7204,6 +7245,9 @@ msgstr ""
7204
7245
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7205
7246
  msgstr ""
7206
7247
 
7248
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7249
+ msgstr ""
7250
+
7207
7251
  msgid "Timeout when refreshing a manifest (in seconds)"
7208
7252
  msgstr "Zeitüberschreitung beim Aktualisieren eines Manifests (in Sekunden)"
7209
7253
 
@@ -7213,9 +7257,21 @@ msgstr "Zeitstempel"
7213
7257
  msgid "Title"
7214
7258
  msgstr "Titel"
7215
7259
 
7260
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7261
+ msgstr ""
7262
+
7263
+ msgid "To enable them, add the environment to the host's content source, or "
7264
+ msgstr ""
7265
+
7266
+ msgid "To get started, add a filter rule to this filter"
7267
+ msgstr ""
7268
+
7216
7269
  msgid "To get started, add this host to a host collection."
7217
7270
  msgstr ""
7218
7271
 
7272
+ msgid "To include or exclude specific content from the content view, create a filter. Without filters, the content view includes everything from the added repositories."
7273
+ msgstr ""
7274
+
7219
7275
  msgid "To update the selected host configuration, update hosts manually in the next section."
7220
7276
  msgstr ""
7221
7277
 
@@ -7402,9 +7458,6 @@ msgstr "Benutzer-Repository-Zuordnung kann nicht aktualisiert werden"
7402
7458
  msgid "Unapplied Errata"
7403
7459
  msgstr "Nicht angewendete Errata"
7404
7460
 
7405
- msgid "Unassociate units in repository"
7406
- msgstr "Zuordnung von Einheiten im Repository aufheben"
7407
-
7408
7461
  msgid "Unattach a subscription"
7409
7462
  msgstr "Subskription lösen"
7410
7463
 
@@ -7591,6 +7644,9 @@ msgstr "Aktualisieren Sie die HTTP-Proxy-Konfiguration in den Repositorys eines
7591
7644
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7592
7645
  msgstr ""
7593
7646
 
7647
+ msgid "Update the host immediately via remote execution"
7648
+ msgstr ""
7649
+
7594
7650
  msgid "Update the information about enabled repositories"
7595
7651
  msgstr "Informationen über aktivierte Repositorys aktualisieren"
7596
7652
 
@@ -7618,6 +7674,12 @@ msgstr "Aktualisiert ein Produkt"
7618
7674
  msgid "Updates all packages on the host(s)"
7619
7675
  msgstr "Aktualisiert alle Pakete auf dem/den Host(s)"
7620
7676
 
7677
+ msgid "Updates available: Component content view versions have been updated."
7678
+ msgstr ""
7679
+
7680
+ msgid "Updates available: Repositories and/or filters have changed."
7681
+ msgstr ""
7682
+
7621
7683
  msgid "Updating Package..."
7622
7684
  msgstr "Paket wird aktualisiert …"
7623
7685
 
@@ -7837,6 +7899,9 @@ msgstr "Versionen werden hier angezeigt, wenn die Inhaltsansicht veröffentlicht
7837
7899
  msgid "View %{view} has not been promoted to %{env}"
7838
7900
  msgstr "Ansicht %{view} wurde bereits übertragen in %{env}"
7839
7901
 
7902
+ msgid "View Filters"
7903
+ msgstr ""
7904
+
7840
7905
  msgid "View Subscription Usage"
7841
7906
  msgstr ""
7842
7907
 
@@ -7849,6 +7914,9 @@ msgstr ""
7849
7914
  msgid "View by"
7850
7915
  msgstr ""
7851
7916
 
7917
+ msgid "View documentation"
7918
+ msgstr ""
7919
+
7852
7920
  msgid "View matching content"
7853
7921
  msgstr ""
7854
7922
 
@@ -7894,6 +7962,9 @@ msgstr "Falls auf \"wahr\" gesetzt, werden erstellbare Repository-Typen ausgegeb
7894
7962
  msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
7895
7963
  msgstr "Löschen Sie beim Abmelden eines Hosts über den Subscription-Manager auch den Host-Datensatz. Mit dem Host verknüpfte verwaltete Ressourcen wie virtuelle Maschinen und DNS-Einträge können ebenfalls gelöscht werden."
7896
7964
 
7965
+ msgid "Whether Simple Content Access should be enabled for the organization."
7966
+ msgstr ""
7967
+
7897
7968
  msgid "Whether or not the host collection may have unlimited hosts"
7898
7969
  msgstr "Ob die Hostsammlung unbegrenzt viele Hosts haben darf"
7899
7970
 
@@ -7906,6 +7977,9 @@ msgstr "Ob der Status von Backend-Diensten wie Pulp und Candlepin vor der Ausfü
7906
7977
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7907
7978
  msgstr "Ob das Repository auf der Festplatte neu generiert werden soll oder nicht. Standard: wahr"
7908
7979
 
7980
+ msgid "Whether or not to return filters applied to the content view version"
7981
+ msgstr ""
7982
+
7909
7983
  msgid "Whether or not to show all results"
7910
7984
  msgstr "Ob alle Ergebnisse angezeigt werden sollen"
7911
7985
 
@@ -7951,31 +8025,19 @@ msgstr "Sie können keine parent_id für eine Organisation festlegen. Diese Funk
7951
8025
  msgid "You currently don't have any ${selectedContentType}."
7952
8026
  msgstr ""
7953
8027
 
7954
- msgid "You currently don't have any Content views."
7955
- msgstr ""
7956
-
7957
8028
  msgid "You currently don't have any alternate content sources."
7958
8029
  msgstr ""
7959
8030
 
7960
- msgid "You currently don't have any filters for this content view."
7961
- msgstr "Sie haben derzeit keine Filter für diese Inhaltsansicht."
7962
-
7963
- msgid "You currently don't have any history for this content view."
7964
- msgstr "Sie haben derzeit keinen Verlauf für diese Inhaltsansicht."
8031
+ msgid "You currently don't have any related content views."
8032
+ msgstr ""
7965
8033
 
7966
8034
  msgid "You currently don't have any repositories associated with this content."
7967
8035
  msgstr ""
7968
8036
 
7969
- msgid "You currently don't have any repositories to add to this content view."
7970
- msgstr "Sie haben derzeit keine Repositorys, die Sie dieser Inhaltsansicht hinzufügen können."
7971
-
7972
8037
  msgid "You currently don't have any repositories to add to this filter."
7973
8038
  msgstr ""
7974
8039
 
7975
- msgid "You currently don't have any versions for this content view."
7976
- msgstr "Sie haben derzeit keine Versionen für diese Inhaltsansicht."
7977
-
7978
- msgid "You currently don\\'t have any related content views."
8040
+ msgid "You currently have no content views to display"
7979
8041
  msgstr ""
7980
8042
 
7981
8043
  msgid "You do not have permissions to delete %s"
@@ -8032,9 +8094,6 @@ msgstr ""
8032
8094
  msgid "Yum"
8033
8095
  msgstr ""
8034
8096
 
8035
- msgid "Yum Metadata: %s"
8036
- msgstr "Yum Metadaten: %s"
8037
-
8038
8097
  msgid "a content unit"
8039
8098
  msgstr ""
8040
8099
 
@@ -8197,6 +8256,9 @@ msgstr "darf keine Filter enthalten, deren Repositorys nicht zu dieser Inhaltsan
8197
8256
  msgid "cannot contain more than %s characters"
8198
8257
  msgstr "darf nicht mehr als %s Zeichen enthalten"
8199
8258
 
8259
+ msgid "change the host's content source."
8260
+ msgstr ""
8261
+
8200
8262
  msgid "checking %s task status"
8201
8263
  msgstr ""
8202
8264
 
@@ -8212,9 +8274,6 @@ msgstr "Zusammengesetzer Kontent-View-Identifizierer"
8212
8274
  msgid "composite content view numeric identifier"
8213
8275
  msgstr "Komposits-Kontent-View Numerischer-Identifizierer"
8214
8276
 
8215
- msgid "conditional package names to include in the package group"
8216
- msgstr "Bedingte Paketnamen, die in die Paketgruppe aufgenommen werden sollen"
8217
-
8218
8277
  msgid "content release version"
8219
8278
  msgstr "Inhalts-Release-Version"
8220
8279
 
@@ -8269,6 +8328,9 @@ msgstr "Zu löschende Inhaltsansichtsversions-IDs"
8269
8328
  msgid "content view versions to compare"
8270
8329
  msgstr "Zu vergleichende Inhaltsansichtsversionen"
8271
8330
 
8331
+ msgid "create a custom product"
8332
+ msgstr ""
8333
+
8272
8334
  msgid "create a filter for a content view"
8273
8335
  msgstr "Filter für eine Inhaltsansicht erstellen"
8274
8336
 
@@ -8278,9 +8340,6 @@ msgstr ""
8278
8340
  msgid "deb_ids is not an array"
8279
8341
  msgstr "deb_ids ist kein Array"
8280
8342
 
8281
- msgid "default package names to include in the package group"
8282
- msgstr "Standardpaketnamen, die in die Paketgruppe aufgenommen werden sollen"
8283
-
8284
8343
  msgid "delete a filter"
8285
8344
  msgstr "Filter löschen"
8286
8345
 
@@ -8512,9 +8571,6 @@ msgstr "Liste mit Repository-IDs"
8512
8571
  msgid "list of rpm filename strings to include in published version"
8513
8572
  msgstr "Liste der RPM-Dateinamen-Strings, die in die veröffentlichte Version aufgenommen werden sollen"
8514
8573
 
8515
- msgid "mandatory package names to include in the package group"
8516
- msgstr "obligatorische Paketnamen, die in die Paketgruppe aufgenommen werden sollen"
8517
-
8518
8574
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8519
8575
  msgstr "max_hosts muss einen Wert haben, wenn diese Hostsammlung nicht unbegrenzt ist."
8520
8576
 
@@ -8542,6 +8598,9 @@ msgstr "muss eines der folgenden sein: %s"
8542
8598
  msgid "must be one of: %s"
8543
8599
  msgstr "must be one of: %s"
8544
8600
 
8601
+ msgid "must be true or false"
8602
+ msgstr ""
8603
+
8545
8604
  msgid "must be unique within one organization"
8546
8605
  msgstr "muss innerhalb einer Organisation eindeutig sein"
8547
8606
 
@@ -8569,9 +8628,6 @@ msgstr "darf keine führenden oder nachfolgenden Leerstellen enthalten."
8569
8628
  msgid "name"
8570
8629
  msgstr "Name"
8571
8630
 
8572
- msgid "name not defined."
8573
- msgstr "Name nicht definiert."
8574
-
8575
8631
  msgid "name of organization"
8576
8632
  msgstr "Name der Organisation"
8577
8633
 
@@ -8617,21 +8673,12 @@ msgstr "der Umgebung muss eindeutig innerhalb einer Organisation sein"
8617
8673
  msgid "only show the repositories readable by this user with this username"
8618
8674
  msgstr "nur die Repositorys anzeigen, die von diesem Benutzer mit diesem Benutzernamen gelesen werden können"
8619
8675
 
8620
- msgid "optional package names to include in the package group"
8621
- msgstr "optionale Paketnamen, die in die Paketgruppe aufgenommen werden sollen"
8622
-
8623
8676
  msgid "organization ID"
8624
8677
  msgstr "Organisations-ID"
8625
8678
 
8626
8679
  msgid "organization identifier"
8627
8680
  msgstr "Organisations-ID"
8628
8681
 
8629
- msgid "package group description. Defaults to params[:name]"
8630
- msgstr "Beschreibung der Paketgruppe. Standardmäßig params[:name]"
8631
-
8632
- msgid "package group name"
8633
- msgstr "Paketgruppenname"
8634
-
8635
8682
  msgid "package group: uuid"
8636
8683
  msgstr "Packet Gruppe: UUID"
8637
8684
 
@@ -8710,12 +8757,6 @@ msgstr "Repository-ID"
8710
8757
  msgid "repository source url"
8711
8758
  msgstr "Repository-Quell-URL"
8712
8759
 
8713
- msgid "repository_id"
8714
- msgstr "repository_id"
8715
-
8716
- msgid "repository_id not defined."
8717
- msgstr "Repository_ID nicht definiert."
8718
-
8719
8760
  msgid "root-node of collection contained in responses (default: 'results')"
8720
8761
  msgstr "Stammknoten von Sammlung in Antworten (Standard: \"results\")"
8721
8762
 
@@ -8737,9 +8778,6 @@ msgstr ""
8737
8778
  msgid "service level"
8738
8779
  msgstr "Servicelevel"
8739
8780
 
8740
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8741
- msgstr "setze das Flag \"user_visible\" für die Paketgruppe. Standard ist wahr"
8742
-
8743
8781
  msgid "set true if you want to see only library environments"
8744
8782
  msgstr "\"true\" angeben, um nur Library-Umgebungen zu sehen"
8745
8783
 
@@ -8797,9 +8835,6 @@ msgstr "Wahr falls die aktuellste Version des Komponenten Kontent-Views verlangt
8797
8835
  msgid "true if this repository can be published via HTTP"
8798
8836
  msgstr "\"true\", falls dieses Repository mittels HTTP veröffentlicht werden kann"
8799
8837
 
8800
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8801
- msgstr ""
8802
-
8803
8838
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8804
8839
  msgstr ""
8805
8840
 
@@ -8845,15 +8880,9 @@ msgstr ""
8845
8880
  msgid "waiting for %s to finish the task"
8846
8881
  msgstr ""
8847
8882
 
8848
- msgid "waiting for Pulp to finish the task"
8849
- msgstr "Warten, bis Pulp die Aufgabe abgeschlossen hat"
8850
-
8851
8883
  msgid "waiting for Pulp to finish the task %s"
8852
8884
  msgstr ""
8853
8885
 
8854
- msgid "waiting for Pulp to start the task"
8855
- msgstr "Warten, bis Pulp die Aufgabe gestartet hat"
8856
-
8857
8886
  msgid "waiting for Pulp to start the task %s"
8858
8887
  msgstr ""
8859
8888
 
@@ -8875,6 +8904,9 @@ msgstr "ja"
8875
8904
  msgid "{0} items selected"
8876
8905
  msgstr "{0} items selected"
8877
8906
 
8907
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8908
+ msgstr ""
8909
+
8878
8910
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8879
8911
  msgstr ""
8880
8912