katello 4.5.1 → 4.6.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 (440) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  6. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  9. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  10. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  13. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  14. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  15. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  16. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  17. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  18. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  19. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  20. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  22. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  23. data/app/lib/actions/katello/organization/manifest_refresh.rb +8 -4
  24. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  25. data/app/lib/actions/katello/repository/create.rb +9 -0
  26. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  27. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  28. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  29. data/app/lib/actions/katello/repository/update.rb +33 -0
  30. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  31. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  32. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  33. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  34. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  38. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  39. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  40. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  41. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  42. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  43. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  44. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  45. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  46. data/app/lib/katello/errors.rb +1 -1
  47. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  48. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  49. data/app/models/katello/alternate_content_source.rb +39 -8
  50. data/app/models/katello/alternate_content_source_product.rb +13 -0
  51. data/app/models/katello/concerns/host_managed_extensions.rb +12 -2
  52. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  53. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  54. data/app/models/katello/content_view.rb +4 -0
  55. data/app/models/katello/content_view_deb_filter.rb +51 -0
  56. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  57. data/app/models/katello/content_view_filter.rb +10 -3
  58. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  59. data/app/models/katello/installed_package.rb +1 -0
  60. data/app/models/katello/product.rb +3 -0
  61. data/app/models/katello/repository.rb +2 -0
  62. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  63. data/app/services/cert/certs.rb +8 -16
  64. data/app/services/katello/content_unit_indexer.rb +2 -1
  65. data/app/services/katello/organization_creator.rb +4 -4
  66. data/app/services/katello/pulp/server.rb +2 -2
  67. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  68. data/app/services/katello/pulp3/api/apt.rb +12 -0
  69. data/app/services/katello/pulp3/erratum.rb +1 -4
  70. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  71. data/app/services/katello/pulp3/repository.rb +4 -3
  72. data/app/services/katello/pulp3/service_common.rb +1 -1
  73. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  74. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  75. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  76. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  77. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  78. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  79. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  80. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  81. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  82. data/app/views/katello/layouts/react.html.erb +1 -1
  83. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  84. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  85. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  86. data/ca/redhat-uep.pem +18 -23
  87. data/config/katello.yaml.example +0 -2
  88. data/config/routes/api/v2.rb +2 -0
  89. data/config/routes/overrides.rb +1 -0
  90. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  91. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  92. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  93. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  94. data/db/seeds.d/102-organizations.rb +1 -1
  95. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  96. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  97. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  102. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  104. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  105. data/lib/katello/engine.rb +1 -2
  106. data/lib/katello/permission_creator.rb +2 -2
  107. data/lib/katello/permissions/host_permissions.rb +1 -0
  108. data/lib/katello/plugin.rb +6 -12
  109. data/lib/katello/version.rb +1 -1
  110. data/locale/action_names.rb +49 -46
  111. data/locale/bn/katello.po +361 -53
  112. data/{webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss → locale/bn/katello.po.time_stamp} +0 -0
  113. data/locale/cs/katello.po +361 -53
  114. data/locale/cs/katello.po.time_stamp +0 -0
  115. data/locale/de/katello.po +366 -58
  116. data/locale/de/katello.po.time_stamp +0 -0
  117. data/locale/en/katello.po +361 -53
  118. data/locale/en/katello.po.time_stamp +0 -0
  119. data/locale/es/katello.po +364 -56
  120. data/locale/es/katello.po.time_stamp +0 -0
  121. data/locale/fr/katello.po +376 -68
  122. data/locale/fr/katello.po.time_stamp +0 -0
  123. data/locale/gu/katello.po +361 -53
  124. data/locale/gu/katello.po.time_stamp +0 -0
  125. data/locale/hi/katello.po +361 -53
  126. data/locale/hi/katello.po.time_stamp +0 -0
  127. data/locale/it/katello.po +361 -53
  128. data/locale/it/katello.po.time_stamp +0 -0
  129. data/locale/ja/katello.po +374 -66
  130. data/locale/ja/katello.po.time_stamp +0 -0
  131. data/locale/katello.pot +1626 -1079
  132. data/locale/kn/katello.po +361 -53
  133. data/locale/kn/katello.po.time_stamp +0 -0
  134. data/locale/ko/katello.po +361 -53
  135. data/locale/ko/katello.po.time_stamp +0 -0
  136. data/locale/mr/katello.po +361 -53
  137. data/locale/mr/katello.po.time_stamp +0 -0
  138. data/locale/or/katello.po +361 -53
  139. data/locale/or/katello.po.time_stamp +0 -0
  140. data/locale/pa/katello.po +361 -53
  141. data/locale/pa/katello.po.time_stamp +0 -0
  142. data/locale/pt/katello.po +361 -53
  143. data/locale/pt/katello.po.time_stamp +0 -0
  144. data/locale/pt_BR/katello.po +364 -56
  145. data/locale/pt_BR/katello.po.time_stamp +0 -0
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ru/katello.po.time_stamp +0 -0
  148. data/locale/ta/katello.po +361 -53
  149. data/locale/ta/katello.po.time_stamp +0 -0
  150. data/locale/te/katello.po +361 -53
  151. data/locale/te/katello.po.time_stamp +0 -0
  152. data/locale/zh_CN/katello.po +374 -66
  153. data/locale/zh_CN/katello.po.time_stamp +0 -0
  154. data/locale/zh_TW/katello.po +361 -53
  155. data/locale/zh_TW/katello.po.time_stamp +0 -0
  156. data/package.json +0 -3
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  158. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  159. data/webpack/components/Errata/index.js +18 -3
  160. data/webpack/components/Loading.js +1 -1
  161. data/webpack/components/RoutedTabs/index.js +1 -17
  162. data/webpack/components/Search/Search.js +0 -1
  163. data/webpack/components/Search/__tests__/search.test.js +1 -2
  164. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  165. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  166. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  167. data/webpack/components/Table/MainTable.js +46 -4
  168. data/webpack/components/Table/TableHooks.js +9 -6
  169. data/webpack/components/Table/TableWrapper.js +14 -8
  170. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  171. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  172. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  177. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  178. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  179. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  182. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  183. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  184. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  185. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  186. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  187. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  188. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  189. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +8 -12
  190. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -2
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +5 -0
  192. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +57 -7
  193. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  194. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  195. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +4 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  197. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  198. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  199. data/webpack/containers/Application/config.js +5 -10
  200. data/webpack/global_index.js +19 -7
  201. data/webpack/global_test_setup.js +14 -2
  202. data/webpack/ouia_id_check.js +95 -0
  203. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  204. data/webpack/redux/reducers/index.js +2 -4
  205. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  206. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  207. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  208. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  210. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  211. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +2 -1
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  215. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  216. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  217. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  218. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  219. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  223. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  224. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  227. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  228. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  229. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  230. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  231. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  232. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  233. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  234. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  235. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  236. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  237. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  239. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  240. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  241. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  242. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  244. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  246. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  247. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  248. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  249. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  250. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  262. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  263. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  264. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  265. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  288. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  289. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  290. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  291. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  292. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  293. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  294. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  295. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  296. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  297. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  298. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  299. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  300. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  301. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  302. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  303. data/webpack/test-utils/nockWrapper.js +7 -0
  304. metadata +100 -145
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  406. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  407. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  408. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  409. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  410. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  411. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  412. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  413. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  414. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  415. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  416. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  417. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  418. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  419. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  420. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  421. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  422. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  423. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  424. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  425. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  426. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  427. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  428. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  429. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  430. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  431. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  432. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  433. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  434. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  435. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  436. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  437. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  438. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  439. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  440. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/de/katello.po CHANGED
@@ -56,6 +56,9 @@ msgstr "%{package_count} Paket(e)"
56
56
  msgid " Content view updated"
57
57
  msgstr "Inhaltsansicht aktualisiert"
58
58
 
59
+ msgid " DEBs"
60
+ msgstr ""
61
+
59
62
  msgid " Either select the latest content view or the content view version. Cannot set both."
60
63
  msgstr "Wähle entweder den aktuellste Kontent-View oder die Kontent-View Version. Beides gleichzeitig kann nicht gesetzt werden."
61
64
 
@@ -77,10 +80,10 @@ msgstr ""
77
80
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
78
81
  msgstr ""
79
82
 
80
- msgid " content view is used in listed component content views. For more information, "
83
+ msgid " content view is used in listed composite content views."
81
84
  msgstr ""
82
85
 
83
- msgid " content view is used in listed composite content views."
86
+ msgid " content view is used in listed content views. For more information, "
84
87
  msgstr ""
85
88
 
86
89
  msgid " environment cannot be set to an environment already on its path"
@@ -92,6 +95,9 @@ msgstr ""
92
95
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
93
96
  msgstr ""
94
97
 
98
+ msgid " to manage and promote content views, or select a different environment."
99
+ msgstr ""
100
+
95
101
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
96
102
  msgstr ""
97
103
 
@@ -340,6 +346,9 @@ msgstr "%{view_label} konnte nicht zu %{environment_label} hochgestuft werden, d
340
346
  msgid "(Orphaned)"
341
347
  msgstr "(Verwaist)"
342
348
 
349
+ msgid "(unset)"
350
+ msgstr ""
351
+
343
352
  msgid ", and"
344
353
  msgstr ", und"
345
354
 
@@ -367,8 +376,8 @@ msgstr "Ein Pool und sein Abonnement können nicht verschiedenen Organisationen
367
376
  msgid "A backend service [ %s ] is unreachable"
368
377
  msgstr "Ein Back-End-Dienst [ %s ] kann nicht erreicht werden"
369
378
 
370
- msgid "A content view can be added by using the \"Create content view\" button above."
371
- msgstr "Eine Inhaltsansicht kann über die Schaltfläche \"Inhaltsansicht erstellen\" oben hinzugefügt werden."
379
+ msgid "A content view can be added by using the \"Create content view\" button below."
380
+ msgstr ""
372
381
 
373
382
  msgid "A content_type must be provided."
374
383
  msgstr "Ein content_type muss angegeben werden."
@@ -388,6 +397,12 @@ msgstr "Eine neue Version von"
388
397
  msgid "A post-promotion summary of hosts with installable errata"
389
398
  msgstr "Eine Zusammenfassung (nach Übertragung) der Hosts mit installierbaren Errata"
390
399
 
400
+ msgid "A remote execution job is in progress"
401
+ msgstr ""
402
+
403
+ msgid "A remote execution job is in progress."
404
+ msgstr ""
405
+
391
406
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
392
407
  msgstr "Ein Servicelevel für automatische Neusubskription, z. B. SELBSTHILFE"
393
408
 
@@ -475,6 +490,9 @@ msgstr "Hinzufügen"
475
490
  msgid "Add Bookmark"
476
491
  msgstr "Lesezeichen hinzufügen"
477
492
 
493
+ msgid "Add DEB rule"
494
+ msgstr ""
495
+
478
496
  msgid "Add RPM rule"
479
497
  msgstr ""
480
498
 
@@ -484,15 +502,15 @@ msgstr "Abonnements hinzufügen"
484
502
  msgid "Add a subscription to a host"
485
503
  msgstr "Subskription zu einem Host hinzufügen"
486
504
 
487
- msgid "Add component"
488
- msgstr "Komponente hinzufügen"
489
-
490
- msgid "Add component content views"
505
+ msgid "Add an alternate content source"
491
506
  msgstr ""
492
507
 
493
508
  msgid "Add components to the content view"
494
509
  msgstr "Füge Komponenten zum Kontent-View hinzu"
495
510
 
511
+ msgid "Add content view"
512
+ msgstr ""
513
+
496
514
  msgid "Add content views"
497
515
  msgstr ""
498
516
 
@@ -505,9 +523,6 @@ msgstr ""
505
523
  msgid "Add filter rule"
506
524
  msgstr ""
507
525
 
508
- msgid "Add filters using the 'Add filter' button above."
509
- msgstr "Fügen Sie Filter über die Schaltfläche \"Filter hinzufügen\" oben hinzu."
510
-
511
526
  msgid "Add host to collections"
512
527
  msgstr ""
513
528
 
@@ -547,12 +562,18 @@ msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription
547
562
  msgid "Add subscriptions to one or more hosts"
548
563
  msgstr "Abonnements zu einem oder mehreren Hosts hinzufügen"
549
564
 
565
+ msgid "Add to this filter using the 'Add Deb rule' button."
566
+ msgstr ""
567
+
550
568
  msgid "Add to this filter using the 'Add RPM rule' button."
551
569
  msgstr ""
552
570
 
553
571
  msgid "Add to this filter using the 'Add filter rule' button."
554
572
  msgstr ""
555
573
 
574
+ msgid "Add-ons"
575
+ msgstr ""
576
+
556
577
  msgid "Added"
557
578
  msgstr "Hinzugefügt"
558
579
 
@@ -571,6 +592,9 @@ msgstr "Zusätzlicher Inhalt"
571
592
  msgid "Addons"
572
593
  msgstr "Addons"
573
594
 
595
+ msgid "Affected Repositories"
596
+ msgstr ""
597
+
574
598
  msgid "Affected repositories"
575
599
  msgstr ""
576
600
 
@@ -679,9 +703,6 @@ msgstr "Eine weitere Komponente beinhaltet bereits die Inhaltsansicht mit ID %s"
679
703
  msgid "Ansible Collection"
680
704
  msgstr "Ansible-Kollektion"
681
705
 
682
- msgid "Ansible Collection Details"
683
- msgstr "Details zur Ansible-Sammlung"
684
-
685
706
  msgid "Ansible Collections"
686
707
  msgstr "Ansible-Kollektionen"
687
708
 
@@ -730,6 +751,9 @@ msgstr "Architektur"
730
751
  msgid "Architecture of content in the repository"
731
752
  msgstr "Inhaltsarchitektur im Repository"
732
753
 
754
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
755
+ msgstr ""
756
+
733
757
  msgid "Architecture(s)"
734
758
  msgstr "Architektur(en)"
735
759
 
@@ -834,6 +858,9 @@ msgstr "Es wurde versucht, den Verbraucher %s vom Kerzenhalter zu zerstören, ab
834
858
  msgid "Auth URL requires Auth token be set."
835
859
  msgstr "Für die Auth-URL muss ein Auth-Token festgelegt werden."
836
860
 
861
+ msgid "Authentication type"
862
+ msgstr ""
863
+
837
864
  msgid "Author"
838
865
  msgstr "Autor"
839
866
 
@@ -855,6 +882,9 @@ msgstr "Automatische Suche"
855
882
  msgid "Autosearch delay"
856
883
  msgstr "Verzögerung bei der automatischen Suche"
857
884
 
885
+ msgid "Available"
886
+ msgstr ""
887
+
858
888
  msgid "Available Entitlements"
859
889
  msgstr "Verfügbare Entitlements"
860
890
 
@@ -867,6 +897,9 @@ msgstr "Verfügbare Schemaversionen"
867
897
  msgid "Backend System Status"
868
898
  msgstr "Back-End-Systemstatus"
869
899
 
900
+ msgid "Base URL"
901
+ msgstr ""
902
+
870
903
  msgid "Base URL for finding alternate content"
871
904
  msgstr ""
872
905
 
@@ -912,6 +945,9 @@ msgstr "Diese Suche als Lesezeichen abspeichern"
912
945
  msgid "Bookmarks marked as public are available to all users"
913
946
  msgstr ""
914
947
 
948
+ msgid "Both"
949
+ msgstr ""
950
+
915
951
  msgid "Both major and minor parameters have to be used to override a CV version"
916
952
  msgstr "Sowohl Major- als auch Minor-Parameter müssen verwendet werden, um eine CV-Version zu überschreiben"
917
953
 
@@ -933,6 +969,9 @@ msgstr "Anwendbarkeit von Massengenerierung für Hosts"
933
969
  msgid "Bulk remove versions from a content view and reassign systems and keys"
934
970
  msgstr ""
935
971
 
972
+ msgid "CA Cert"
973
+ msgstr ""
974
+
936
975
  msgid "CDN Configuration"
937
976
  msgstr ""
938
977
 
@@ -1167,6 +1206,9 @@ msgstr ""
1167
1206
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1168
1207
  msgstr "Prüfen Sie, ob eine Verbindung zu Red Hat Subscription Management hergestellt werden kann."
1169
1208
 
1209
+ msgid "Check if the specified organization has Simple Content Access enabled"
1210
+ msgstr ""
1211
+
1170
1212
  msgid "Check if the specified organization is eligible for Simple Content Access"
1171
1213
  msgstr "Prüfen Sie, ob die angegebene Organisation für den einfachen Inhaltszugriff berechtigt ist"
1172
1214
 
@@ -1176,9 +1218,6 @@ msgstr "Überprüfen Sie die Dienste, bevor Sie Maßnahmen ergreifen"
1176
1218
  msgid "Checksum"
1177
1219
  msgstr "Prüfsumme"
1178
1220
 
1179
- msgid "Checksum is a required parameter."
1180
- msgstr ""
1181
-
1182
1221
  msgid "Checksum of file to upload"
1183
1222
  msgstr "Checksumme der Datei zum hochladen"
1184
1223
 
@@ -1191,12 +1230,21 @@ msgstr "Der Prüfsummentyp kann nicht für Yum-Repositorys mit On-Demand-Downloa
1191
1230
  msgid "Clear any previous registration and run subscription-manager with --force."
1192
1231
  msgstr "Löschen Sie alle vorherigen Registrierungen und führen Sie den Subscription-Manager mit --force aus."
1193
1232
 
1233
+ msgid "Clear filters"
1234
+ msgstr ""
1235
+
1236
+ msgid "Clear search"
1237
+ msgstr ""
1238
+
1194
1239
  msgid "Click here to go to the tasks page for the task."
1195
1240
  msgstr "Klicken Sie hier, um zur Aufgabenseite für die Aufgabe zu gelangen."
1196
1241
 
1197
1242
  msgid "Click {update} below to save changes."
1198
1243
  msgstr ""
1199
1244
 
1245
+ msgid "Client key"
1246
+ msgstr ""
1247
+
1200
1248
  msgid "Clone"
1201
1249
  msgstr "Klonen"
1202
1250
 
@@ -1227,12 +1275,6 @@ msgstr "Komponente"
1227
1275
  msgid "Component Content View"
1228
1276
  msgstr "Komponenteninhaltsansicht"
1229
1277
 
1230
- msgid "Component content view"
1231
- msgstr "Komponenteninhaltsansicht"
1232
-
1233
- msgid "Component content views"
1234
- msgstr ""
1235
-
1236
1278
  msgid "Components"
1237
1279
  msgstr "Komponenten"
1238
1280
 
@@ -1263,8 +1305,8 @@ msgstr "Manifest löschen bestätigen"
1263
1305
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1264
1306
  msgstr "Erwägen Sie, das Registrierungsnamenmuster der Lebenszyklusumgebung in etwas Spezifischeres zu ändern."
1265
1307
 
1266
- msgid "Consisting of multiple component content views"
1267
- msgstr "Bestehend aus mehreren Komponenteninhaltsansichten"
1308
+ msgid "Consisting of multiple content views"
1309
+ msgstr ""
1268
1310
 
1269
1311
  msgid "Consists of content views"
1270
1312
  msgstr ""
@@ -1395,6 +1437,12 @@ msgstr ""
1395
1437
  msgid "Content Views"
1396
1438
  msgstr "Inhaltsansichten"
1397
1439
 
1440
+ msgid "Content credential"
1441
+ msgstr ""
1442
+
1443
+ msgid "Content credentials"
1444
+ msgstr ""
1445
+
1398
1446
  msgid "Content files to upload. Can be a single file or array of files."
1399
1447
  msgstr "Hochzuladende Inhaltsdateien. Kann eine einzelne Datei oder eine Array mit Dateien sein."
1400
1448
 
@@ -1512,6 +1560,9 @@ msgstr ""
1512
1560
  msgid "Copy version units to library"
1513
1561
  msgstr "Versionseinheiten in Bibliothek kopieren"
1514
1562
 
1563
+ msgid "Cores per socket"
1564
+ msgstr ""
1565
+
1515
1566
  msgid "Cores: %s"
1516
1567
  msgstr "Kerne: %s"
1517
1568
 
@@ -1623,6 +1674,9 @@ msgstr "Repository \"%s\" konnte nicht gefunden werden."
1623
1674
  msgid "Couldn't find smart proxies with id '%s'"
1624
1675
  msgstr ""
1625
1676
 
1677
+ msgid "Couldn't find smart proxies with name '%s'"
1678
+ msgstr ""
1679
+
1626
1680
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1627
1681
  msgstr "Die angegebene Inhaltsansicht und Lebenszyklusumgebung konnte nicht gefunden werden."
1628
1682
 
@@ -1635,6 +1689,9 @@ msgstr "Anzahl"
1635
1689
  msgid "Create"
1636
1690
  msgstr "Erstellen"
1637
1691
 
1692
+ msgid "Create ACS"
1693
+ msgstr ""
1694
+
1638
1695
  msgid "Create Alternate Content Source"
1639
1696
  msgstr ""
1640
1697
 
@@ -1650,12 +1707,18 @@ msgstr "Paketgruppe erstellen"
1650
1707
  msgid "Create Repositories"
1651
1708
  msgstr "Repositorys erstellen"
1652
1709
 
1710
+ msgid "Create Syncable Export History"
1711
+ msgstr ""
1712
+
1653
1713
  msgid "Create a Content Credential"
1654
1714
  msgstr "Erstelle Kontent-Kredentials"
1655
1715
 
1656
1716
  msgid "Create a content view"
1657
1717
  msgstr "Inhaltsansicht erstellen"
1658
1718
 
1719
+ msgid "Create a custom product"
1720
+ msgstr ""
1721
+
1659
1722
  msgid "Create a custom repository"
1660
1723
  msgstr "Benutzerdefiniertes Repository erstellen"
1661
1724
 
@@ -1695,17 +1758,29 @@ msgstr "Inhaltsansicht erstellen"
1695
1758
  msgid "Create filter"
1696
1759
  msgstr "Filter erstellen"
1697
1760
 
1761
+ msgid "Create host collection"
1762
+ msgstr ""
1763
+
1698
1764
  msgid "Create organization"
1699
1765
  msgstr "Organisation erstellen"
1700
1766
 
1767
+ msgid "Create package filter rule"
1768
+ msgstr ""
1769
+
1770
+ msgid "Create rule"
1771
+ msgstr ""
1772
+
1773
+ msgid "Credentials"
1774
+ msgstr ""
1775
+
1701
1776
  msgid "Critical"
1702
1777
  msgstr "Kritisch"
1703
1778
 
1704
1779
  msgid "Cron expression is not valid!"
1705
1780
  msgstr "Cron-Ausdruck ungültig!"
1706
1781
 
1707
- msgid "Current organization has no manifest imported."
1708
- msgstr "In der aktuellen Organisation wurde kein Manifest importiert."
1782
+ msgid "Current organization does not have a manifest imported."
1783
+ msgstr ""
1709
1784
 
1710
1785
  msgid "Current organization is not set."
1711
1786
  msgstr "Die aktuelle Organisation ist nicht festgelegt."
@@ -1713,6 +1788,9 @@ msgstr "Die aktuelle Organisation ist nicht festgelegt."
1713
1788
  msgid "Current organization not set."
1714
1789
  msgstr "Aktuelle Organisation nicht festgelegt."
1715
1790
 
1791
+ msgid "Custom"
1792
+ msgstr ""
1793
+
1716
1794
  msgid "Custom Content Repositories"
1717
1795
  msgstr "Benutzerdefinierte Inhaltsrepositorys"
1718
1796
 
@@ -1725,6 +1803,9 @@ msgstr "Benutzerdefinierte Repositorys können nicht deaktiviert werden."
1725
1803
  msgid "Customize with Rex"
1726
1804
  msgstr ""
1727
1805
 
1806
+ msgid "DEB name"
1807
+ msgstr ""
1808
+
1728
1809
  msgid "Database connection"
1729
1810
  msgstr "Verbindung zur Datenbank "
1730
1811
 
@@ -1740,12 +1821,18 @@ msgstr "verbleibende Tage"
1740
1821
  msgid "Days from Now"
1741
1822
  msgstr "Tage ab jetzt"
1742
1823
 
1824
+ msgid "Deb"
1825
+ msgstr ""
1826
+
1743
1827
  msgid "Deb Package"
1744
1828
  msgstr "Deb-Paket"
1745
1829
 
1746
1830
  msgid "Deb Packages"
1747
1831
  msgstr "Deb Packete"
1748
1832
 
1833
+ msgid "Deb name"
1834
+ msgstr ""
1835
+
1749
1836
  msgid "Deb package identifiers to filter content by"
1750
1837
  msgstr ""
1751
1838
 
@@ -2001,6 +2088,9 @@ msgstr "Umgebung löschen"
2001
2088
  msgid "Destroy an environment in an organization"
2002
2089
  msgstr "Umgebung in einer Organisation löschen"
2003
2090
 
2091
+ msgid "Destroy one or more alternate content sources"
2092
+ msgstr ""
2093
+
2004
2094
  msgid "Destroy one or more hosts"
2005
2095
  msgstr "Zerstöre einen oder mehrere Hosts"
2006
2096
 
@@ -2094,9 +2184,15 @@ msgstr ""
2094
2184
  msgid "Edit filter rule"
2095
2185
  msgstr ""
2096
2186
 
2187
+ msgid "Edit package filter rule"
2188
+ msgstr ""
2189
+
2097
2190
  msgid "Edit rule"
2098
2191
  msgstr ""
2099
2192
 
2193
+ msgid "Edit system purpose attributes"
2194
+ msgstr ""
2195
+
2100
2196
  msgid "Editing Entitlements"
2101
2197
  msgstr "Entitlements bearbeiten"
2102
2198
 
@@ -2121,6 +2217,9 @@ msgstr "Legen Sie entweder die neueste Inhaltsansicht oder die Inhaltsansichtsve
2121
2217
  msgid "Enable"
2122
2218
  msgstr "Aktivieren"
2123
2219
 
2220
+ msgid "Enable Red Hat repositories"
2221
+ msgstr ""
2222
+
2124
2223
  msgid "Enable Simple Content Access"
2125
2224
  msgstr "Einfachen Inhaltszugriff aktivieren"
2126
2225
 
@@ -2166,9 +2265,15 @@ msgstr "Erweiterung"
2166
2265
  msgid "Enter a name"
2167
2266
  msgstr ""
2168
2267
 
2268
+ msgid "Enter a name for your source."
2269
+ msgstr ""
2270
+
2169
2271
  msgid "Enter a valid date: MM/DD/YYYY"
2170
2272
  msgstr ""
2171
2273
 
2274
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2275
+ msgstr ""
2276
+
2172
2277
  msgid "Entitlements"
2173
2278
  msgstr "Entitlements"
2174
2279
 
@@ -2310,6 +2415,11 @@ msgstr "Export Typen"
2310
2415
  msgid "Export as CSV"
2311
2416
  msgstr "Als CSV exportieren"
2312
2417
 
2418
+ msgid ""
2419
+ "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"
2420
+ " Defaults to importable."
2421
+ msgstr ""
2422
+
2313
2423
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2314
2424
  msgstr "Exportiere History-Identifitierer die für inkrementellen Export benötigt werden. Falls nicht benötigt wird die aktuellste History benutzt."
2315
2425
 
@@ -2360,6 +2470,9 @@ msgstr "pxe-Dateien abrufen"
2360
2470
  msgid "Fetch traces for one or more hosts"
2361
2471
  msgstr "Abrufen von Traces für einen oder mehrere Hosts"
2362
2472
 
2473
+ msgid "Fetching content credentials"
2474
+ msgstr ""
2475
+
2363
2476
  msgid "Field to sort the results on"
2364
2477
  msgstr "Ergebnisse nach diesem Feld sortieren"
2365
2478
 
@@ -2450,6 +2563,9 @@ msgstr "Filter"
2450
2563
  msgid "Filters deleted"
2451
2564
  msgstr ""
2452
2565
 
2566
+ msgid "Filters will appear here when the filter is created."
2567
+ msgstr ""
2568
+
2453
2569
  msgid "Finish"
2454
2570
  msgstr ""
2455
2571
 
@@ -2556,6 +2672,9 @@ msgstr "Status der Synchronisation für angegebenes Repository abrufen"
2556
2672
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2557
2673
  msgstr "Listet bei einer Reihe von Hosts und Errata die Inhaltsansichtsversionen und -umgebungen auf, die aktualisiert werden müssen."
2558
2674
 
2675
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2676
+ msgstr ""
2677
+
2559
2678
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2560
2679
  msgstr ""
2561
2680
 
@@ -2586,6 +2705,9 @@ msgstr "HTTP-Proxies"
2586
2705
  msgid "HTTP Proxy identifier to associated"
2587
2706
  msgstr "HTTP-Proxy-Kennung für verknüpfte"
2588
2707
 
2708
+ msgid "HW properties"
2709
+ msgstr ""
2710
+
2589
2711
  msgid "Has to be > 0"
2590
2712
  msgstr "Muss > 0 . sein"
2591
2713
 
@@ -2793,9 +2915,6 @@ msgstr "ID des Synchronisationsplans"
2793
2915
  msgid "ID: %s doesn't exist "
2794
2916
  msgstr "ID: %s existiert nicht"
2795
2917
 
2796
- msgid "Id"
2797
- msgstr ""
2798
-
2799
2918
  msgid "Id of a deb package to find repositories that contain the deb"
2800
2919
  msgstr "ID eines Deb-Pakets, um Repositorys zu finden, die das Deb enthalten"
2801
2920
 
@@ -3072,6 +3191,9 @@ msgstr "Modulströme indexieren"
3072
3191
  msgid "Index package groups"
3073
3192
  msgstr "Paketgruppen indizieren"
3074
3193
 
3194
+ msgid "Indicate the source type."
3195
+ msgstr ""
3196
+
3075
3197
  msgid "Informable Type must be one of the following [ %{list} ]"
3076
3198
  msgstr "Relevante Typen sind folgende [ %{list} ]"
3077
3199
 
@@ -3159,6 +3281,9 @@ msgstr "Installation der angeforderten Pakete: %{packages}"
3159
3281
  msgid "Installation status"
3160
3282
  msgstr ""
3161
3283
 
3284
+ msgid "Installed"
3285
+ msgstr ""
3286
+
3162
3287
  msgid "Installed Packages"
3163
3288
  msgstr "Installierte Pakete"
3164
3289
 
@@ -3234,6 +3359,9 @@ msgstr "Ungültige Erratumtypen %{invalid_types} angegeben. Folgende Werte sind
3234
3359
  msgid "Invalid event_type %s"
3235
3360
  msgstr "Ungültiger event_type %s"
3236
3361
 
3362
+ msgid "Invalid export format provided. Format must be one of %s "
3363
+ msgstr ""
3364
+
3237
3365
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3238
3366
  msgstr "Ungültige Regel angegeben, \"version\" kann nicht in demselben Tupel angegeben werden wie \"min_version\" oder \"max_version\""
3239
3367
 
@@ -3252,6 +3380,9 @@ msgstr "Ungültige Parameter angegeben - content_type muss einer von %s sein"
3252
3380
  msgid "Invalid params provided - date_type must be one of %s"
3253
3381
  msgstr "Ungültige Parameter angegeben - date_type muss einer von %s sein"
3254
3382
 
3383
+ msgid "Invalid release version: [%s]"
3384
+ msgstr ""
3385
+
3255
3386
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3256
3387
  msgstr ""
3257
3388
 
@@ -3270,7 +3401,10 @@ msgstr "Ausgegeben"
3270
3401
  msgid "Issued from"
3271
3402
  msgstr ""
3272
3403
 
3273
- msgid "Job ${description} has started."
3404
+ msgid "Job '${description}' completed"
3405
+ msgstr ""
3406
+
3407
+ msgid "Job '${description}' has started."
3274
3408
  msgstr ""
3275
3409
 
3276
3410
  msgid "Katello ID of local pool to update"
@@ -3342,9 +3476,18 @@ msgstr "Kennung des Inhalts"
3342
3476
  msgid "Label of the content view"
3343
3477
  msgstr ""
3344
3478
 
3479
+ msgid "Last Refresh"
3480
+ msgstr ""
3481
+
3482
+ msgid "Last check-in:"
3483
+ msgstr ""
3484
+
3345
3485
  msgid "Last published"
3346
3486
  msgstr "Zuletzt veröffentlicht"
3347
3487
 
3488
+ msgid "Last refresh :"
3489
+ msgstr ""
3490
+
3348
3491
  msgid "Last task"
3349
3492
  msgstr "Letzte Aufgabe"
3350
3493
 
@@ -3525,6 +3668,9 @@ msgstr "Liste der zu installierenden Errata-IDs. Wird entfernt in %s"
3525
3668
  msgid "List of Products for sync plan"
3526
3669
  msgstr "Produktliste für Synchronisationsplan"
3527
3670
 
3671
+ msgid "List of alternate content source IDs"
3672
+ msgstr ""
3673
+
3528
3674
  msgid "List of alternate_content_sources"
3529
3675
  msgstr ""
3530
3676
 
@@ -3723,6 +3869,12 @@ msgstr "Zeitüberschreitung bei Manifestaktualisierung"
3723
3869
  msgid "Manifest refreshed"
3724
3870
  msgstr "Manifest aufgefrischt"
3725
3871
 
3872
+ msgid "Manual"
3873
+ msgstr ""
3874
+
3875
+ msgid "Manual authentication"
3876
+ msgstr ""
3877
+
3726
3878
  msgid "Mark Content Host Statuses as Unknown for %s"
3727
3879
  msgstr "Inhaltshoststatus als unbekannt markieren für %s"
3728
3880
 
@@ -3786,6 +3938,9 @@ msgstr "Aktivierungsschlüssel fehlt!"
3786
3938
  msgid "Missing arguments %{substitutions} for %{content_url}"
3787
3939
  msgstr "Fehlende Argumente %{substitutions} für %{content_url}"
3788
3940
 
3941
+ msgid "Model"
3942
+ msgstr ""
3943
+
3789
3944
  msgid "Moderate"
3790
3945
  msgstr "Moderat (Mittel)"
3791
3946
 
@@ -3807,7 +3962,7 @@ msgstr "Modul stream"
3807
3962
  msgid "Module streams"
3808
3963
  msgstr ""
3809
3964
 
3810
- msgid "Module streams will appear here when available."
3965
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3811
3966
  msgstr ""
3812
3967
 
3813
3968
  msgid "Multi-entitlement"
@@ -3845,9 +4000,6 @@ msgstr ""
3845
4000
  msgid "Name"
3846
4001
  msgstr "Name"
3847
4002
 
3848
- msgid "Name is a required parameter."
3849
- msgstr ""
3850
-
3851
4003
  msgid "Name of new activation key"
3852
4004
  msgstr "Name des neuen Aktivierungsschlüssels"
3853
4005
 
@@ -3869,6 +4021,12 @@ msgstr "Name des Repositorys"
3869
4021
  msgid "Name of the upstream docker repository"
3870
4022
  msgstr "Name des upstream Docker-Repositorys"
3871
4023
 
4024
+ msgid "Name source"
4025
+ msgstr ""
4026
+
4027
+ msgid "Names of smart proxies to associate"
4028
+ msgstr ""
4029
+
3872
4030
  msgid "Needs to only be set for docker tags"
3873
4031
  msgstr "Muss nur für Docker-Tags festgelegt werden"
3874
4032
 
@@ -3881,6 +4039,9 @@ msgstr "Verschachteln"
3881
4039
  msgid "Network Sync"
3882
4040
  msgstr ""
3883
4041
 
4042
+ msgid "Never"
4043
+ msgstr ""
4044
+
3884
4045
  msgid "Never Synced"
3885
4046
  msgstr "Nie synchronisiert"
3886
4047
 
@@ -4055,6 +4216,9 @@ msgstr ""
4055
4216
  msgid "No matching ${selectedContentType} found"
4056
4217
  msgstr ""
4057
4218
 
4219
+ msgid "No matching DEB found."
4220
+ msgstr ""
4221
+
4058
4222
  msgid "No matching RPM found."
4059
4223
  msgstr ""
4060
4224
 
@@ -4214,6 +4378,9 @@ msgstr "Nicht hinzugefügt"
4214
4378
  msgid "Not all necessary pulp workers running at %s."
4215
4379
  msgstr "Nicht alle notwendigen Pulp-Worker laufen bei %s ."
4216
4380
 
4381
+ msgid "Not installed"
4382
+ msgstr ""
4383
+
4217
4384
  msgid "Not running"
4218
4385
  msgstr "Läuft nicht"
4219
4386
 
@@ -4232,6 +4399,9 @@ msgstr "Hinweis: Die Zahl in Klammern gibt alle relevanten Errata in der Library
4232
4399
  msgid "Nothing selected"
4233
4400
  msgstr "Nothing selected"
4234
4401
 
4402
+ msgid "Number of CPU(s)"
4403
+ msgstr ""
4404
+
4235
4405
  msgid "Number of host applicability calculations to process per task."
4236
4406
  msgstr "Anzahl der Hostanwendbarkeitsberechnungen, die pro Aufgabe verarbeitet werden sollen."
4237
4407
 
@@ -4244,6 +4414,9 @@ msgstr "Anzahl der Ergebnisse pro Seite, die zurückgegeben werden sollen."
4244
4414
  msgid "Number to Allocate"
4245
4415
  msgstr "Zuzuweisende Nummer"
4246
4416
 
4417
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4418
+ msgstr ""
4419
+
4247
4420
  msgid "OSTree Branch"
4248
4421
  msgstr "OSTree Branch"
4249
4422
 
@@ -4559,12 +4732,6 @@ msgstr "Passwort für den Zugriff auf die URL"
4559
4732
  msgid "Path"
4560
4733
  msgstr "Pfad"
4561
4734
 
4562
- msgid "Path for ssl cert used for pulp server auth"
4563
- msgstr "Pfad für das SSL-Zertifikat, das für die Pulserver-Authentifizierung verwendet wird"
4564
-
4565
- msgid "Path for ssl key used for pulp server auth"
4566
- msgstr "Pfad für den SSL-Schlüssel, der für die Pulserver-Authentifizierung verwendet wird"
4567
-
4568
4735
  msgid "Path suffixes for finding alternate content"
4569
4736
  msgstr ""
4570
4737
 
@@ -4833,12 +5000,6 @@ msgstr "Pulp Docker-Registrierungsport"
4833
5000
  msgid "Pulp bulk load size"
4834
5001
  msgstr "Pulp-bulk Belastungsgröße"
4835
5002
 
4836
- msgid "Pulp client cert"
4837
- msgstr "Pulp-Client-Zertifikat"
4838
-
4839
- msgid "Pulp client key"
4840
- msgstr "Pulp-Client-Schlüssel"
4841
-
4842
5003
  msgid "Pulp database connection issue at %s."
4843
5004
  msgstr "Problem mit der Pulp-Datenbankverbindung bei %s."
4844
5005
 
@@ -4917,6 +5078,9 @@ msgstr "Hinzuzufügende Anzahl der Subskription"
4917
5078
  msgid "Quantity to Allocate"
4918
5079
  msgstr "Zuzuweisende Menge"
4919
5080
 
5081
+ msgid "RAM"
5082
+ msgstr ""
5083
+
4920
5084
  msgid "RAM: %s GB"
4921
5085
  msgstr "RAM: %s GB"
4922
5086
 
@@ -5016,15 +5180,27 @@ msgstr "Red Hat Repositorys können nicht verändert werden."
5016
5180
  msgid "Refresh"
5017
5181
  msgstr "Aktualisieren"
5018
5182
 
5183
+ msgid "Refresh Alternate Content Source"
5184
+ msgstr ""
5185
+
5019
5186
  msgid "Refresh Content Host Statuses for %s"
5020
5187
  msgstr ""
5021
5188
 
5022
5189
  msgid "Refresh Manifest"
5023
5190
  msgstr "Manifest aktualisieren"
5024
5191
 
5192
+ msgid "Refresh alternate content sources"
5193
+ msgstr ""
5194
+
5195
+ msgid "Refresh an alternate content source"
5196
+ msgstr ""
5197
+
5025
5198
  msgid "Refresh previously imported manifest for Red Hat provider"
5026
5199
  msgstr "Zuvor importiertes Manifest für Red Hat Anbieter aktualisieren"
5027
5200
 
5201
+ msgid "Refresh source"
5202
+ msgstr ""
5203
+
5028
5204
  msgid "Refresh_Content_Host_Status"
5029
5205
  msgstr ""
5030
5206
 
@@ -5058,24 +5234,27 @@ msgstr "Das Namensmuster der Registrierung führt zu einem ungültigen Container
5058
5234
  msgid "Reindex subscriptions"
5059
5235
  msgstr "Subskriptionen neu indizieren"
5060
5236
 
5061
- msgid "Related component content views"
5237
+ msgid "Related composite content views"
5062
5238
  msgstr ""
5063
5239
 
5064
- msgid "Related component cvs: "
5240
+ msgid "Related composite content views: "
5065
5241
  msgstr ""
5066
5242
 
5067
- msgid "Related composite content views"
5243
+ msgid "Related content views"
5068
5244
  msgstr ""
5069
5245
 
5070
- msgid "Related composite cvs: "
5246
+ msgid "Related content views will appear here when created."
5071
5247
  msgstr ""
5072
5248
 
5073
- msgid "Related content views will appear here when created."
5249
+ msgid "Related content views: "
5074
5250
  msgstr ""
5075
5251
 
5076
5252
  msgid "Release"
5077
5253
  msgstr "Release"
5078
5254
 
5255
+ msgid "Release version"
5256
+ msgstr ""
5257
+
5079
5258
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5080
5259
  msgstr "Release-Version für diesen Host (7Server, 7.1 usw.)"
5081
5260
 
@@ -5094,6 +5273,9 @@ msgstr "Daten neu laden"
5094
5273
  msgid "Remote action:"
5095
5274
  msgstr "Entfernte Aktion:"
5096
5275
 
5276
+ msgid "Remote execution job '${description}' failed."
5277
+ msgstr ""
5278
+
5097
5279
  msgid "Removal of package group(s) requested: %{groups}"
5098
5280
  msgstr "Entfernung der angeforderten Paketgruppe(n): %{groups}"
5099
5281
 
@@ -5289,7 +5471,7 @@ msgstr ""
5289
5471
  msgid "Repository sets reset to default"
5290
5472
  msgstr ""
5291
5473
 
5292
- msgid "Repository sets will appear here when available."
5474
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5293
5475
  msgstr ""
5294
5476
 
5295
5477
  msgid "Republish Repositories of %{name} %{version}"
@@ -5424,6 +5606,9 @@ msgstr "Pakete zurücksenden, die auf einem oder mehreren Hosts aktualisiert wer
5424
5606
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5425
5607
  msgstr "Gibt Pakete zurück, die dem angegebenen Objekt hinzugefügt werden können. Nur der Wert 'content_view_version' wird unterstützt."
5426
5608
 
5609
+ msgid "Return same, different or all results"
5610
+ msgstr ""
5611
+
5427
5612
  msgid "Return subscriptions that match installed products of the specified host"
5428
5613
  msgstr "Subskriptionen ausgeben, die auf dem angegebenen Host installierten Produkten entsprechen"
5429
5614
 
@@ -5442,6 +5627,9 @@ msgstr ""
5442
5627
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5443
5628
  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"
5444
5629
 
5630
+ msgid "Review Details"
5631
+ msgstr ""
5632
+
5445
5633
  msgid "Review affected environment"
5446
5634
  msgstr ""
5447
5635
 
@@ -5478,12 +5666,27 @@ msgstr "Läuft"
5478
5666
  msgid "SKU"
5479
5667
  msgstr "SKU"
5480
5668
 
5669
+ msgid "SLA"
5670
+ msgstr ""
5671
+
5481
5672
  msgid "SRPM details"
5482
5673
  msgstr "SRPM-Details"
5483
5674
 
5484
5675
  msgid "SSL CA Content Credential"
5485
5676
  msgstr ""
5486
5677
 
5678
+ msgid "SSL CA certificate"
5679
+ msgstr ""
5680
+
5681
+ msgid "SSL Cert"
5682
+ msgstr ""
5683
+
5684
+ msgid "SSL client certificate"
5685
+ msgstr ""
5686
+
5687
+ msgid "SSL client key"
5688
+ msgstr ""
5689
+
5487
5690
  msgid "SSL version used to communicate with the CDN"
5488
5691
  msgstr "SSL-Version zur Kommunikation mit dem CDN"
5489
5692
 
@@ -5493,6 +5696,9 @@ msgstr "ABONNEMENTS LAUFEN BALD AB"
5493
5696
  msgid "Save"
5494
5697
  msgstr "Speichern"
5495
5698
 
5699
+ msgid "Saving alternate content source..."
5700
+ msgstr ""
5701
+
5496
5702
  msgid "Schedule errata for installation using katello-agent. %s"
5497
5703
  msgstr "Planen Sie Errata für die Installation mit katello-agent. %s"
5498
5704
 
@@ -5562,6 +5768,15 @@ msgstr "Organisation auswählen"
5562
5768
  msgid "Select Value"
5563
5769
  msgstr "Wähle Wert"
5564
5770
 
5771
+ msgid "Select a CA certificate"
5772
+ msgstr ""
5773
+
5774
+ msgid "Select a client certificate"
5775
+ msgstr ""
5776
+
5777
+ msgid "Select a client key"
5778
+ msgstr ""
5779
+
5565
5780
  msgid "Select a content view"
5566
5781
  msgstr ""
5567
5782
 
@@ -5577,6 +5792,9 @@ msgstr "Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Promotionspfa
5577
5792
  msgid "Select a provider to install katello-host-tools-tracer"
5578
5793
  msgstr ""
5579
5794
 
5795
+ msgid "Select add-ons"
5796
+ msgstr ""
5797
+
5580
5798
  msgid "Select all"
5581
5799
  msgstr "Alles auswählen"
5582
5800
 
@@ -5598,7 +5816,7 @@ msgstr "Wählen Sie eine Organisation aus"
5598
5816
  msgid "Select available version of ${cvName} to use"
5599
5817
  msgstr "Wählen Sie die verfügbare Version von ${cvName} zur Verwendung aus"
5600
5818
 
5601
- msgid "Select available version of components to use"
5819
+ msgid "Select available version of content views to use"
5602
5820
  msgstr ""
5603
5821
 
5604
5822
  msgid "Select content view"
@@ -5634,6 +5852,18 @@ msgstr ""
5634
5852
  msgid "Select row"
5635
5853
  msgstr "Zeile auswählen"
5636
5854
 
5855
+ msgid "Select smart proxies to be used with this source."
5856
+ msgstr ""
5857
+
5858
+ msgid "Select smart proxy"
5859
+ msgstr ""
5860
+
5861
+ msgid "Select source type"
5862
+ msgstr ""
5863
+
5864
+ msgid "Select system purpose attributes for host {hostName}."
5865
+ msgstr ""
5866
+
5637
5867
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5638
5868
  msgstr "Wählen Sie das Installationsmedium aus, das zum Bereitstellen dieses Hosts verwendet wird. Wählen Sie „Synchronisierter Inhalt“ für synchronisierte Kickstart-Repositorys oder „Alle Medien“ für andere Medien."
5639
5869
 
@@ -5763,6 +5993,9 @@ msgstr "Verfügbare Release-Versionen für einen Aktivierungsschlüssel anzeigen
5763
5993
  msgid "Show releases available for the content host"
5764
5994
  msgstr "Verfügbare Releases für den Inhaltshost anzeigen"
5765
5995
 
5996
+ msgid "Show repositories enabled on the host that are known to Katello"
5997
+ msgstr ""
5998
+
5766
5999
  msgid "Show the available repository types"
5767
6000
  msgstr "Verfügbare Repository-Typen anzeigen"
5768
6001
 
@@ -5796,12 +6029,18 @@ msgstr "Überspringe den Metadaten-Check auf jedem Repository des Smart-Proxies"
5796
6029
  msgid "Skipped pulp_auth check after failed pulp check"
5797
6030
  msgstr "pulp_auth Check wurde übersprungen, nachdem Pulp-Check fehlschlug"
5798
6031
 
6032
+ msgid "Smart proxies"
6033
+ msgstr ""
6034
+
5799
6035
  msgid "Smart proxy IDs"
5800
6036
  msgstr "Smart-Proxy-IDs"
5801
6037
 
5802
6038
  msgid "Smart proxy content source not found!"
5803
6039
  msgstr "Smart Proxy-Inhaltsquelle nicht gefunden!"
5804
6040
 
6041
+ msgid "Sockets"
6042
+ msgstr ""
6043
+
5805
6044
  msgid "Sockets: %s"
5806
6045
  msgstr "Sockets: %s"
5807
6046
 
@@ -5895,6 +6134,9 @@ msgstr ""
5895
6134
  msgid "Something went wrong while loading the content views. See the logs for more information"
5896
6135
  msgstr ""
5897
6136
 
6137
+ msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6138
+ msgstr ""
6139
+
5898
6140
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5899
6141
  msgstr ""
5900
6142
 
@@ -5946,6 +6188,9 @@ msgstr "Quell-RPM"
5946
6188
  msgid "Source RPMs"
5947
6189
  msgstr "Quell-RPMs"
5948
6190
 
6191
+ msgid "Source type"
6192
+ msgstr ""
6193
+
5949
6194
  msgid "Specify an export chunk size less than 1_000_000 GB"
5950
6195
  msgstr "Geben Sie eine Exportchunkgröße von weniger als 1_000_000 GB an"
5951
6196
 
@@ -6003,6 +6248,9 @@ msgstr "Absenden"
6003
6248
  msgid "Subnet IDs"
6004
6249
  msgstr "Subnetz-IDs"
6005
6250
 
6251
+ msgid "Subpaths"
6252
+ msgstr ""
6253
+
6006
6254
  msgid "Subscription"
6007
6255
  msgstr "Subskription"
6008
6256
 
@@ -6102,6 +6350,9 @@ msgstr "Synchronisationsplan erfolgreich geändert für %s Produkte"
6102
6350
  msgid "Successfully initiated removal of %s product(s)"
6103
6351
  msgstr "Entfernen von %s Produkten erfolgreich initiiert"
6104
6352
 
6353
+ msgid "Successfully refreshed."
6354
+ msgstr ""
6355
+
6105
6356
  msgid "Successfully removed %s Host(s)."
6106
6357
  msgstr "%s Host(s) erfolgreich entfernt."
6107
6358
 
@@ -6192,6 +6443,9 @@ msgstr "ID des zu verknüpfenden Synchronisationsplans"
6192
6443
  msgid "Sync state"
6193
6444
  msgstr "Synchronisierungsstatus"
6194
6445
 
6446
+ msgid "Syncable export"
6447
+ msgstr ""
6448
+
6195
6449
  msgid "Synced "
6196
6450
  msgstr ""
6197
6451
 
@@ -6240,6 +6494,12 @@ msgstr "Systemstatus"
6240
6494
  msgid "System purpose"
6241
6495
  msgstr ""
6242
6496
 
6497
+ msgid "System purpose allows you to set the system\\'s intended use on your network and improves the reporting of usage in Subscription Watch."
6498
+ msgstr ""
6499
+
6500
+ msgid "System purpose attributes updated"
6501
+ msgstr ""
6502
+
6243
6503
  msgid "Tag name"
6244
6504
  msgstr ""
6245
6505
 
@@ -6410,6 +6670,9 @@ msgstr "Die Übertragung von %{content_view} nach <b>%{environment}</b> wurde ab
6410
6670
  msgid "The repository is already enabled"
6411
6671
  msgstr "Das Repository ist bereits aktiviert"
6412
6672
 
6673
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6674
+ msgstr ""
6675
+
6413
6676
  msgid "The request did not contain any repository information."
6414
6677
  msgstr "Das Request beinhaltet keine Repository-Informationen"
6415
6678
 
@@ -6476,6 +6739,9 @@ msgstr "Entweder wurden keine Umgebungen oder Versionen angegeben, oder es wurde
6476
6739
  msgid "There is no Manifest History to display."
6477
6740
  msgstr "Es gibt keinen anzuzeigenden Manifestverlauf."
6478
6741
 
6742
+ msgid "There is no downloaded content to clean."
6743
+ msgstr ""
6744
+
6479
6745
  msgid "There is no such HTTP proxy"
6480
6746
  msgstr "Es gibt keinen solchen HTTP-Proxy"
6481
6747
 
@@ -6632,6 +6898,9 @@ msgstr "Durch Umschalten des einfachen Inhaltszugriffs wird Ihr Manifest aktuali
6632
6898
  msgid "Total steps: "
6633
6899
  msgstr "Gesamtschritte:"
6634
6900
 
6901
+ msgid "Tracer"
6902
+ msgstr ""
6903
+
6635
6904
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6636
6905
  msgstr "Tracer hilft Administratoren, Anwendungen zu identifizieren, die nach dem Patchen eines Systems neu gestartet werden müssen."
6637
6906
 
@@ -6641,18 +6910,30 @@ msgstr "Tracer Profil erfolgreich hochgeladen"
6641
6910
  msgid "Traces"
6642
6911
  msgstr "Spuren"
6643
6912
 
6913
+ msgid "Traces are being enabled"
6914
+ msgstr ""
6915
+
6644
6916
  msgid "Traces are not enabled"
6645
6917
  msgstr ""
6646
6918
 
6647
6919
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6648
6920
  msgstr ""
6649
6921
 
6922
+ msgid "Traces may be enabled by a user with the appropriate permissions."
6923
+ msgstr ""
6924
+
6650
6925
  msgid "Traces may be listed here after {pkgLink}."
6651
6926
  msgstr ""
6652
6927
 
6928
+ msgid "Traces not available"
6929
+ msgstr ""
6930
+
6653
6931
  msgid "Traces that require logout cannot be restarted remotely"
6654
6932
  msgstr ""
6655
6933
 
6934
+ msgid "Traces will be shown here to a user with the appropriate permissions."
6935
+ msgstr ""
6936
+
6656
6937
  msgid "Trigger an auto-attach of subscriptions"
6657
6938
  msgstr "Automatische Verknüpfung von Subskriptionen auslösen "
6658
6939
 
@@ -6686,6 +6967,9 @@ msgstr "Type of Kontents: \"cert\", \"gpg_key\""
6686
6967
  msgid "URL"
6687
6968
  msgstr "URL"
6688
6969
 
6970
+ msgid "URL and paths"
6971
+ msgstr ""
6972
+
6689
6973
  msgid "URL needs to have a trailing /"
6690
6974
  msgstr "URL muss einen nachgestellten / haben"
6691
6975
 
@@ -6719,6 +7003,9 @@ msgstr "Verbindung kann nicht hergestellt werden"
6719
7003
  msgid "Unable to connect. Got: %s"
6720
7004
  msgstr "Verbindung fehlgeschlagen: %s"
6721
7005
 
7006
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7007
+ msgstr ""
7008
+
6722
7009
  msgid "Unable to detect pulp storage"
6723
7010
  msgstr "Pulp-Speicher nicht gefunden"
6724
7011
 
@@ -6752,6 +7039,9 @@ msgstr "Inhaltshosts konnten nicht neu zugewiesen werden. Bitte geben Sie die Pa
6752
7039
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6753
7040
  msgstr "Systeme konnten nicht neu zugewiesen werden. Bitte prüfen Sie die Parameter system_content_view_id und system_environment_id."
6754
7041
 
7042
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7043
+ msgstr ""
7044
+
6755
7045
  msgid "Unable to send errata e-mail notification: %{error}"
6756
7046
  msgstr "Errata-E-Mail-Benachrichtigung kann nicht gesendet werden: %{error}"
6757
7047
 
@@ -7085,6 +7375,9 @@ msgstr "Nutzungstyp"
7085
7375
  msgid "Usage of host"
7086
7376
  msgstr "Verwendung von Host"
7087
7377
 
7378
+ msgid "Usage type"
7379
+ msgstr ""
7380
+
7088
7381
  msgid "Use remote execution by default"
7089
7382
  msgstr "Standardmäßig Remote-Ausführung verwenden"
7090
7383
 
@@ -7130,6 +7423,9 @@ msgstr "Gültig"
7130
7423
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7131
7424
  msgstr "Der Wert muss entweder ein boolescher Wert oder 'Standard' für 'aktiviert' sein."
7132
7425
 
7426
+ msgid "Verify SSL"
7427
+ msgstr ""
7428
+
7133
7429
  msgid "Verify checksum"
7134
7430
  msgstr "Prüfsumme überprüfen"
7135
7431
 
@@ -7190,7 +7486,10 @@ msgstr ""
7190
7486
  msgid "View tasks "
7191
7487
  msgstr ""
7192
7488
 
7193
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7489
+ msgid "View the Content Views page"
7490
+ msgstr ""
7491
+
7492
+ msgid "View the job"
7194
7493
  msgstr ""
7195
7494
 
7196
7495
  msgid "Virtual"
@@ -7340,6 +7639,9 @@ msgstr "Deine Such-Anfrage war ungültig. Bitte überarbeite sie und versuche es
7340
7639
  msgid "Your search returned no matching "
7341
7640
  msgstr ""
7342
7641
 
7642
+ msgid "Your search returned no matching DEBs."
7643
+ msgstr ""
7644
+
7343
7645
  msgid "Your search returned no matching Module streams."
7344
7646
  msgstr ""
7345
7647
 
@@ -7352,6 +7654,9 @@ msgstr ""
7352
7654
  msgid "Your search returned no matching hosts."
7353
7655
  msgstr ""
7354
7656
 
7657
+ msgid "Yum"
7658
+ msgstr ""
7659
+
7355
7660
  msgid "Yum Metadata: %s"
7356
7661
  msgstr "Yum Metadaten: %s"
7357
7662
 
@@ -7586,8 +7891,8 @@ msgstr "Zu vergleichende Inhaltsansichtsversionen"
7586
7891
  msgid "create a filter for a content view"
7587
7892
  msgstr "Filter für eine Inhaltsansicht erstellen"
7588
7893
 
7589
- msgid "deb Packages"
7590
- msgstr "deb Packete"
7894
+ msgid "deb, package, package group, or docker tag names"
7895
+ msgstr ""
7591
7896
 
7592
7897
  msgid "deb_ids is not an array"
7593
7898
  msgstr "deb_ids ist kein Array"
@@ -7613,6 +7918,9 @@ msgstr "Beschreibung des Filters"
7613
7918
  msgid "description of the repository"
7614
7919
  msgstr "Beschreibung des Repositorys"
7615
7920
 
7921
+ msgid "disk"
7922
+ msgstr ""
7923
+
7616
7924
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7617
7925
  msgstr ""
7618
7926
 
@@ -8105,7 +8413,7 @@ msgstr "\"true\", falls dieses Repository mittels HTTP veröffentlicht werden ka
8105
8413
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8106
8414
  msgstr ""
8107
8415
 
8108
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8416
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8109
8417
  msgstr ""
8110
8418
 
8111
8419
  msgid "type of repo"