katello 4.6.2.1 → 4.7.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 (333) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +4 -4
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -1
  9. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +78 -12
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  13. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -1
  14. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  15. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -9
  16. data/app/helpers/katello/content_source_helper.rb +9 -0
  17. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +31 -0
  18. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  19. data/app/lib/actions/katello/agent_action.rb +1 -0
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +1 -1
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +2 -2
  22. data/app/lib/actions/katello/capsule_content/sync.rb +10 -2
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  24. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  27. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  28. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  29. data/app/lib/actions/katello/product/destroy.rb +1 -1
  30. data/app/lib/actions/katello/repository/destroy.rb +3 -3
  31. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -1
  33. data/app/lib/actions/katello/repository/sync.rb +13 -6
  34. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  36. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +1 -0
  37. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +1 -1
  38. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +10 -2
  39. data/app/lib/katello/concerns/renderer_extensions.rb +2 -1
  40. data/app/lib/katello/errors.rb +2 -2
  41. data/app/lib/katello/resources/candlepin.rb +7 -1
  42. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  43. data/app/lib/katello/resources/cdn.rb +14 -9
  44. data/app/lib/katello/util/candlepin_repository_checker.rb +73 -0
  45. data/app/models/katello/activation_key.rb +12 -1
  46. data/app/models/katello/alternate_content_source.rb +15 -4
  47. data/app/models/katello/alternate_content_source_product.rb +1 -1
  48. data/app/models/katello/authorization/repository.rb +2 -2
  49. data/app/models/katello/cdn_configuration.rb +12 -3
  50. data/app/models/katello/concerns/host_managed_extensions.rb +15 -2
  51. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  52. data/app/models/katello/concerns/smart_proxy_extensions.rb +30 -15
  53. data/app/models/katello/content.rb +15 -0
  54. data/app/models/katello/content_credential.rb +8 -9
  55. data/app/models/katello/content_view.rb +7 -3
  56. data/app/models/katello/content_view_component.rb +4 -0
  57. data/app/models/katello/content_view_version.rb +1 -1
  58. data/app/models/katello/erratum.rb +6 -2
  59. data/app/models/katello/host/content_facet.rb +13 -3
  60. data/app/models/katello/repository.rb +15 -1
  61. data/app/models/katello/root_repository.rb +0 -2
  62. data/app/overrides/add_smart_proxy_form.rb +5 -0
  63. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  64. data/app/presenters/katello/host_package_presenter.rb +4 -4
  65. data/app/services/katello/pulp3/alternate_content_source.rb +23 -15
  66. data/app/services/katello/pulp3/ansible_collection.rb +7 -10
  67. data/app/services/katello/pulp3/content_view_version/export.rb +19 -6
  68. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  69. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  70. data/app/services/katello/pulp3/content_view_version/importable_products.rb +11 -1
  71. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  72. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  73. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  74. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +5 -1
  75. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  76. data/app/services/katello/pulp3/repository.rb +18 -6
  77. data/app/services/katello/pulp3/repository_mirror.rb +0 -1
  78. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  79. data/app/services/katello/pulp3/task_group.rb +18 -1
  80. data/app/services/katello/repository_type.rb +5 -2
  81. data/app/services/katello/repository_type_manager.rb +4 -3
  82. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  83. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  84. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  85. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +4 -4
  86. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  87. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  88. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  89. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  90. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  91. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  92. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  93. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  94. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  95. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  96. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  97. data/config/initializers/monkeys.rb +1 -0
  98. data/config/routes/api/v2.rb +2 -0
  99. data/config/routes.rb +3 -0
  100. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  101. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  102. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  103. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +5 -5
  105. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -3
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +14 -1392
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  120. data/lib/katello/permission_creator.rb +1 -0
  121. data/lib/katello/plugin.rb +34 -11
  122. data/lib/katello/repository_types/deb.rb +1 -1
  123. data/lib/katello/repository_types/docker.rb +1 -1
  124. data/lib/katello/repository_types/python.rb +3 -3
  125. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  126. data/lib/katello/tasks/reset.rake +1 -1
  127. data/lib/katello/version.rb +1 -1
  128. data/lib/monkeys/try_pulp_container_path.rb +35 -0
  129. data/locale/action_names.rb +7 -7
  130. data/locale/bn/katello.po +395 -63
  131. data/locale/cs/katello.po +396 -64
  132. data/locale/de/katello.po +399 -67
  133. data/locale/en/katello.po +395 -63
  134. data/locale/es/katello.po +399 -67
  135. data/locale/fr/katello.po +400 -68
  136. data/locale/gu/katello.po +395 -63
  137. data/locale/hi/katello.po +395 -63
  138. data/locale/it/katello.po +396 -64
  139. data/locale/ja/katello.po +400 -68
  140. data/locale/katello.pot +1916 -1213
  141. data/locale/kn/katello.po +395 -63
  142. data/locale/ko/katello.po +396 -64
  143. data/locale/mr/katello.po +395 -63
  144. data/locale/or/katello.po +395 -63
  145. data/locale/pa/katello.po +395 -63
  146. data/locale/pt/katello.po +395 -63
  147. data/locale/pt_BR/katello.po +399 -67
  148. data/locale/ru/katello.po +396 -64
  149. data/locale/ta/katello.po +395 -63
  150. data/locale/te/katello.po +395 -63
  151. data/locale/zh_CN/katello.po +400 -68
  152. data/locale/zh_TW/katello.po +396 -64
  153. data/webpack/components/Bookmark/index.js +5 -1
  154. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  155. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  156. data/webpack/components/EditableSwitch.js +1 -0
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  158. data/webpack/components/Errata/errataHelpers.js +33 -0
  159. data/webpack/components/Errata/index.js +45 -12
  160. data/webpack/components/Loading.js +18 -8
  161. data/webpack/components/Packages/index.js +8 -24
  162. data/webpack/components/RoutedTabs/index.js +1 -0
  163. data/webpack/components/Search/Search.js +20 -2
  164. data/webpack/components/Search/__tests__/search.test.js +3 -3
  165. data/webpack/components/Table/EmptyStateMessage.js +1 -1
  166. data/webpack/components/Table/PageControls.js +1 -0
  167. data/webpack/components/Table/TableHooks.js +4 -0
  168. data/webpack/components/Table/TableWrapper.js +7 -7
  169. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  170. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  171. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  172. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +3 -1
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +124 -68
  175. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  176. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  177. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  178. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +5 -4
  179. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -3
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +6 -0
  182. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +145 -32
  183. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +3 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  185. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  186. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +78 -26
  187. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -10
  188. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  189. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +9 -4
  190. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +141 -23
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  192. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  193. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +24 -3
  194. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +20 -4
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +56 -38
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +5 -4
  200. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +3 -3
  201. data/webpack/containers/Application/config.js +2 -2
  202. data/webpack/containers/Application/overrides.scss +12 -0
  203. data/webpack/global_test_setup.js +19 -1
  204. data/webpack/ouia_id_check.js +0 -2
  205. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -8
  206. data/webpack/scenes/AlternateContentSources/ACSActions.js +37 -6
  207. data/webpack/scenes/AlternateContentSources/ACSConstants.js +2 -0
  208. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  209. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +6 -6
  210. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  211. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +24 -3
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +10 -8
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +25 -4
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +22 -11
  215. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +27 -2
  216. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +49 -17
  217. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +76 -23
  218. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +159 -11
  219. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +83 -29
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -8
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +2 -2
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +2 -2
  223. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +39 -7
  224. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +27 -11
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +58 -55
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +35 -32
  227. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +323 -150
  228. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  229. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -11
  230. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  231. data/webpack/scenes/ContentViews/ContentViewsConstants.js +1 -0
  232. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  233. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  234. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  235. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -5
  236. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  237. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  238. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  239. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  240. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +1 -0
  241. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +1 -0
  242. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  243. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  244. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  245. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  246. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  247. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +14 -0
  248. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +11 -1
  249. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +1 -1
  250. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  251. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +5 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  253. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +1 -0
  254. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +8 -2
  255. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +5 -1
  256. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +22 -6
  257. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +19 -9
  258. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +9 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +9 -2
  260. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +8 -2
  261. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +1 -1
  262. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  263. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +3 -2
  264. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -1
  265. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -1
  268. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +1 -1
  269. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -2
  270. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  271. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  272. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +9 -1
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +83 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +32 -8
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +56 -3
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +6 -2
  279. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  280. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +1 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +1 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +2 -2
  283. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  284. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +2 -2
  285. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  287. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +5 -4
  288. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  289. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  290. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +10 -5
  291. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  292. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  293. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +81 -19
  294. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  295. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  296. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  297. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  298. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +3 -2
  299. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -11
  300. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +15 -8
  301. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  302. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  303. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  304. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  305. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  306. data/webpack/scenes/Hosts/ChangeContentSource/index.js +46 -41
  307. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +5 -5
  308. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  309. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  310. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  311. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  312. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  313. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +10 -25
  314. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  315. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  316. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  317. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  318. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  319. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  320. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  321. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  322. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -1
  323. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  324. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +5 -5
  325. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  326. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  327. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  328. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +3 -3
  329. data/webpack/scenes/Tasks/helpers.js +14 -7
  330. metadata +54 -35
  331. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +0 -18
  332. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +0 -5
  333. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
data/locale/de/katello.po CHANGED
@@ -65,6 +65,12 @@ msgstr "Wähle entweder den aktuellste Kontent-View oder die Kontent-View Versio
65
65
  msgid " RPMs"
66
66
  msgstr "RPMs"
67
67
 
68
+ msgid " The base path can be a web address or a filesystem location."
69
+ msgstr ""
70
+
71
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
72
+ msgstr ""
73
+
68
74
  msgid " View task details "
69
75
  msgstr "Aufgabendetails anzeigen"
70
76
 
@@ -95,12 +101,18 @@ msgstr ""
95
101
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
96
102
  msgstr ""
97
103
 
104
+ msgid " or any step on the left."
105
+ msgstr ""
106
+
98
107
  msgid " to manage and promote content views, or select a different environment."
99
108
  msgstr ""
100
109
 
101
110
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
102
111
  msgstr ""
103
112
 
113
+ msgid "${option}"
114
+ msgstr ""
115
+
104
116
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
105
117
  msgstr ""
106
118
 
@@ -343,6 +355,24 @@ msgstr "%{used} von %{total}"
343
355
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
344
356
  msgstr "%{view_label} konnte nicht zu %{environment_label} hochgestuft werden, da sich die Inhaltsansicht und die Umgebung nicht in derselben Organisation befinden!"
345
357
 
358
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
359
+ msgstr ""
360
+
361
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
362
+ msgstr ""
363
+
364
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
365
+ msgstr ""
366
+
367
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
368
+ msgstr ""
369
+
370
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
371
+ msgstr ""
372
+
373
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
374
+ msgstr ""
375
+
346
376
  msgid "(Orphaned)"
347
377
  msgstr "(Verwaist)"
348
378
 
@@ -562,10 +592,10 @@ msgstr "Abonnements hinzufügen, die von einem Manifest von Red Hat Subscription
562
592
  msgid "Add subscriptions to one or more hosts"
563
593
  msgstr "Abonnements zu einem oder mehreren Hosts hinzufügen"
564
594
 
565
- msgid "Add to this filter using the 'Add Deb rule' button."
595
+ msgid "Add to a host collection"
566
596
  msgstr ""
567
597
 
568
- msgid "Add to this filter using the 'Add RPM rule' button."
598
+ msgid "Add to this filter using the 'Add Deb rule' button."
569
599
  msgstr ""
570
600
 
571
601
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -625,6 +655,9 @@ msgstr ""
625
655
  msgid "All subpaths must have a slash at the end and none at the front"
626
656
  msgstr ""
627
657
 
658
+ msgid "All up to date"
659
+ msgstr ""
660
+
628
661
  msgid "All versions"
629
662
  msgstr ""
630
663
 
@@ -652,6 +685,9 @@ msgstr ""
652
685
  msgid "Alter a host's host collections"
653
686
  msgstr ""
654
687
 
688
+ msgid "Alternate Content Source HTTP Proxy"
689
+ msgstr ""
690
+
655
691
  msgid "Alternate Content Sources"
656
692
  msgstr ""
657
693
 
@@ -664,7 +700,10 @@ msgstr ""
664
700
  msgid "Alternate content source deleted"
665
701
  msgstr ""
666
702
 
667
- msgid "Alternate content sources"
703
+ msgid "Alternate content source edited"
704
+ msgstr ""
705
+
706
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
668
707
  msgstr ""
669
708
 
670
709
  msgid "Always Use Latest (currently %{version})"
@@ -676,7 +715,7 @@ msgstr "Immer auf die neueste Version aktualisieren"
676
715
  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."
677
716
  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."
678
717
 
679
- msgid "An alternate content source can be added by using the \"Add source\" button above."
718
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
680
719
  msgstr ""
681
720
 
682
721
  msgid "An environment is missing a prior"
@@ -715,9 +754,15 @@ msgstr ""
715
754
  msgid "Applicability Batch Size"
716
755
  msgstr "Anwendbarkeit Chargengröße"
717
756
 
757
+ msgid "Applicable"
758
+ msgstr ""
759
+
718
760
  msgid "Applicable Content Hosts"
719
761
  msgstr "Anwendbare Inhalts-Hosts"
720
762
 
763
+ msgid "Applicable errata apply to at least one package installed on the host."
764
+ msgstr ""
765
+
721
766
  msgid "Application"
722
767
  msgstr "Anwendung"
723
768
 
@@ -894,6 +939,9 @@ msgstr "Verfügbare Repositorys"
894
939
  msgid "Available Schema Versions"
895
940
  msgstr "Verfügbare Schemaversionen"
896
941
 
942
+ msgid "Back"
943
+ msgstr ""
944
+
897
945
  msgid "Backend System Status"
898
946
  msgstr "Back-End-Systemstatus"
899
947
 
@@ -960,6 +1008,12 @@ msgstr "Bugfix"
960
1008
  msgid "Bugs"
961
1009
  msgstr ""
962
1010
 
1011
+ msgid "Bulk alternate content source delete has started."
1012
+ msgstr ""
1013
+
1014
+ msgid "Bulk alternate content source refresh has started."
1015
+ msgstr ""
1016
+
963
1017
  msgid "Bulk generate applicability for host %s"
964
1018
  msgstr ""
965
1019
 
@@ -969,9 +1023,6 @@ msgstr "Anwendbarkeit von Massengenerierung für Hosts"
969
1023
  msgid "Bulk remove versions from a content view and reassign systems and keys"
970
1024
  msgstr ""
971
1025
 
972
- msgid "CA Cert"
973
- msgstr ""
974
-
975
1026
  msgid "CDN Configuration"
976
1027
  msgstr ""
977
1028
 
@@ -1077,6 +1128,9 @@ msgstr "Verbundversionen können nicht einer anderen Verbundinhaltsansicht hinzu
1077
1128
  msgid "Cannot add default content view to composite content view"
1078
1129
  msgstr "Standardinhaltsansicht kann nicht zu Verbundinhaltsansicht hinzugefügt werden"
1079
1130
 
1131
+ msgid "Cannot add generated content view versions to composite content view"
1132
+ msgstr ""
1133
+
1080
1134
  msgid "Cannot add repositories to a composite content view"
1081
1135
  msgstr "Repositorys können nicht zu einer Verbundinhaltsansicht hinzugefügt werden"
1082
1136
 
@@ -1218,6 +1272,9 @@ msgstr "Überprüfen Sie die Dienste, bevor Sie Maßnahmen ergreifen"
1218
1272
  msgid "Checksum"
1219
1273
  msgstr "Prüfsumme"
1220
1274
 
1275
+ msgid "Checksum is a required parameter."
1276
+ msgstr ""
1277
+
1221
1278
  msgid "Checksum of file to upload"
1222
1279
  msgstr "Checksumme der Datei zum hochladen"
1223
1280
 
@@ -1227,6 +1284,9 @@ msgstr "Prüfsumme des Repositorys, derzeit werden 'sha1' & 'sha256' unterstütz
1227
1284
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1228
1285
  msgstr "Der Prüfsummentyp kann nicht für Yum-Repositorys mit On-Demand-Download-Richtlinie festgelegt werden."
1229
1286
 
1287
+ msgid "Choose content credentials if required for this RHUI source."
1288
+ msgstr ""
1289
+
1230
1290
  msgid "Clear any previous registration and run subscription-manager with --force."
1231
1291
  msgstr "Löschen Sie alle vorherigen Registrierungen und führen Sie den Subscription-Manager mit --force aus."
1232
1292
 
@@ -1242,9 +1302,6 @@ msgstr "Klicken Sie hier, um zur Aufgabenseite für die Aufgabe zu gelangen."
1242
1302
  msgid "Click {update} below to save changes."
1243
1303
  msgstr ""
1244
1304
 
1245
- msgid "Client key"
1246
- msgstr ""
1247
-
1248
1305
  msgid "Clone"
1249
1306
  msgstr "Klonen"
1250
1307
 
@@ -1260,6 +1317,9 @@ msgstr "Kombiniertes Profil-Update"
1260
1317
  msgid "Combined Profile Update for %s"
1261
1318
  msgstr "Kombiniertes Profil-Update für %s"
1262
1319
 
1320
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1321
+ msgstr ""
1322
+
1263
1323
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1264
1324
  msgstr ""
1265
1325
 
@@ -1269,12 +1329,18 @@ msgstr ""
1269
1329
  msgid "Comma-separated list of tags to sync for a container image repository"
1270
1330
  msgstr ""
1271
1331
 
1332
+ msgid "Compare"
1333
+ msgstr ""
1334
+
1272
1335
  msgid "Component"
1273
1336
  msgstr "Komponente"
1274
1337
 
1275
1338
  msgid "Component Content View"
1276
1339
  msgstr "Komponenteninhaltsansicht"
1277
1340
 
1341
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1342
+ msgstr ""
1343
+
1278
1344
  msgid "Components"
1279
1345
  msgstr "Komponenten"
1280
1346
 
@@ -1425,6 +1491,9 @@ msgstr "Inhaltsansichtsversion nicht festgelegt"
1425
1491
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1426
1492
  msgstr "In den Metadaten angegebene Inhaltsansichtsversion - '%{name}' existiert bereits. Wenn Sie die vorhandene Version ersetzen möchten, löschen Sie %{name} und versuchen Sie es erneut."
1427
1493
 
1494
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1495
+ msgstr ""
1496
+
1428
1497
  msgid "Content View and Environment not set for registration."
1429
1498
  msgstr "Inhaltsansicht und Umgebung für Registrierung nicht festgelegt."
1430
1499
 
@@ -1437,6 +1506,9 @@ msgstr ""
1437
1506
  msgid "Content Views"
1438
1507
  msgstr "Inhaltsansichten"
1439
1508
 
1509
+ msgid "Content cannot be imported into a Composite Content View. "
1510
+ msgstr ""
1511
+
1440
1512
  msgid "Content credential"
1441
1513
  msgstr ""
1442
1514
 
@@ -1461,6 +1533,9 @@ msgstr ""
1461
1533
  msgid "Content override search parameters"
1462
1534
  msgstr ""
1463
1535
 
1536
+ msgid "Content source"
1537
+ msgstr ""
1538
+
1464
1539
  msgid "Content source ID"
1465
1540
  msgstr "Inhaltsquellen-ID."
1466
1541
 
@@ -1527,6 +1602,9 @@ msgstr "Identifizierer der Kontent-View-Versions-Geschichte"
1527
1602
  msgid "Content views"
1528
1603
  msgstr ""
1529
1604
 
1605
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1606
+ msgstr ""
1607
+
1530
1608
  msgid "Content_Host_Status"
1531
1609
  msgstr "Content_Host_Status"
1532
1610
 
@@ -1668,6 +1746,9 @@ msgstr "Vorherige Umgebung \"%s\" konnte nicht gefunden werden."
1668
1746
  msgid "Couldn't find product with id '%s'"
1669
1747
  msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
1670
1748
 
1749
+ msgid "Couldn't find products with id '%s'"
1750
+ msgstr ""
1751
+
1671
1752
  msgid "Couldn't find repository '%s'"
1672
1753
  msgstr "Repository \"%s\" konnte nicht gefunden werden."
1673
1754
 
@@ -1737,12 +1818,12 @@ msgstr "Produkt erstellen"
1737
1818
  msgid "Create a sync plan"
1738
1819
  msgstr "Synchronisationsplan erstellen"
1739
1820
 
1740
- msgid "Create an ACS"
1741
- msgstr ""
1742
-
1743
1821
  msgid "Create an activation key"
1744
1822
  msgstr "Aktivierungsschlüssel erstellen"
1745
1823
 
1824
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1825
+ msgstr ""
1826
+
1746
1827
  msgid "Create an environment"
1747
1828
  msgstr "Umgebung erstellen"
1748
1829
 
@@ -1752,6 +1833,9 @@ msgstr "Umgebung in einer Organisation erstellen"
1752
1833
  msgid "Create an upload request"
1753
1834
  msgstr "Upload-Anforderung erstellen"
1754
1835
 
1836
+ msgid "Create content credentials with the generated SSL certificate and key."
1837
+ msgstr ""
1838
+
1755
1839
  msgid "Create content view"
1756
1840
  msgstr "Inhaltsansicht erstellen"
1757
1841
 
@@ -1791,6 +1875,9 @@ msgstr "Aktuelle Organisation nicht festgelegt."
1791
1875
  msgid "Custom"
1792
1876
  msgstr ""
1793
1877
 
1878
+ msgid "Custom CDN"
1879
+ msgstr ""
1880
+
1794
1881
  msgid "Custom Content Repositories"
1795
1882
  msgstr "Benutzerdefinierte Inhaltsrepositorys"
1796
1883
 
@@ -1806,6 +1893,9 @@ msgstr ""
1806
1893
  msgid "DEB name"
1807
1894
  msgstr ""
1808
1895
 
1896
+ msgid "DEB package updates"
1897
+ msgstr ""
1898
+
1809
1899
  msgid "Database connection"
1810
1900
  msgstr "Verbindung zur Datenbank "
1811
1901
 
@@ -1941,6 +2031,12 @@ msgstr "Standardmäßig synchronisierte OS-Benutzerdaten"
1941
2031
  msgid "Default user data for new Operating Systems created from synced content"
1942
2032
  msgstr "Standardbenutzerdaten für neue Betriebssysteme, die aus synchronisierten Inhalten erstellt wurden"
1943
2033
 
2034
+ msgid "Define RHUI repository paths with guided steps."
2035
+ msgstr ""
2036
+
2037
+ msgid "Define repositories structured under a common web or filesystem path."
2038
+ msgstr ""
2039
+
1944
2040
  msgid "Delete"
1945
2041
  msgstr "Löschen"
1946
2042
 
@@ -2079,7 +2175,7 @@ msgstr "Synchronisationsplan löschen"
2079
2175
  msgid "Destroy an activation key"
2080
2176
  msgstr "Aktivierungsschlüssel löschen"
2081
2177
 
2082
- msgid "Destroy an alternate content source"
2178
+ msgid "Destroy an alternate content source."
2083
2179
  msgstr ""
2084
2180
 
2085
2181
  msgid "Destroy an environment"
@@ -2142,6 +2238,9 @@ msgstr "Suchen"
2142
2238
  msgid "Discover Repositories"
2143
2239
  msgstr "Repositorys suchen"
2144
2240
 
2241
+ msgid "Distribute archived content view versions"
2242
+ msgstr ""
2243
+
2145
2244
  msgid "Do not include this array of content views"
2146
2245
  msgstr "Dieses Array mit Inhaltsansichten nicht einbeziehen"
2147
2246
 
@@ -2175,21 +2274,51 @@ msgstr "ERRATA-HINWEIS"
2175
2274
  msgid "Edit"
2176
2275
  msgstr "Bearbeiten"
2177
2276
 
2277
+ msgid "Edit ACS"
2278
+ msgstr ""
2279
+
2280
+ msgid "Edit ACS credentials"
2281
+ msgstr ""
2282
+
2283
+ msgid "Edit ACS details"
2284
+ msgstr ""
2285
+
2286
+ msgid "Edit ACS products"
2287
+ msgstr ""
2288
+
2289
+ msgid "Edit ACS smart proxies"
2290
+ msgstr ""
2291
+
2178
2292
  msgid "Edit RPM rule"
2179
2293
  msgstr ""
2180
2294
 
2295
+ msgid "Edit URL and subpaths"
2296
+ msgstr ""
2297
+
2181
2298
  msgid "Edit content view assignment"
2182
2299
  msgstr ""
2183
2300
 
2301
+ msgid "Edit credentials"
2302
+ msgstr ""
2303
+
2304
+ msgid "Edit details"
2305
+ msgstr ""
2306
+
2184
2307
  msgid "Edit filter rule"
2185
2308
  msgstr ""
2186
2309
 
2187
2310
  msgid "Edit package filter rule"
2188
2311
  msgstr ""
2189
2312
 
2313
+ msgid "Edit products"
2314
+ msgstr ""
2315
+
2190
2316
  msgid "Edit rule"
2191
2317
  msgstr ""
2192
2318
 
2319
+ msgid "Edit smart proxies"
2320
+ msgstr ""
2321
+
2193
2322
  msgid "Edit system purpose attributes"
2194
2323
  msgstr ""
2195
2324
 
@@ -2214,6 +2343,9 @@ msgstr "Legen Sie entweder die Inhaltsansicht mit dem neuesten Flag fest oder le
2214
2343
  msgid "Either set the latest content view or the content view version. Cannot set both"
2215
2344
  msgstr "Legen Sie entweder die neueste Inhaltsansicht oder die Inhaltsansichtsversion fest. Kann nicht beides einstellen"
2216
2345
 
2346
+ msgid "Empty content view versions"
2347
+ msgstr ""
2348
+
2217
2349
  msgid "Enable"
2218
2350
  msgstr "Aktivieren"
2219
2351
 
@@ -2232,6 +2364,9 @@ msgstr "Traces aktivieren"
2232
2364
  msgid "Enable a repository from the set"
2233
2365
  msgstr "Ein Repository aus der Gruppe aktivieren"
2234
2366
 
2367
+ msgid "Enable repository sets"
2368
+ msgstr ""
2369
+
2235
2370
  msgid "Enable simple content access for a manifest"
2236
2371
  msgstr "Einfachen Inhaltszugriff für ein Manifest aktivieren"
2237
2372
 
@@ -2274,6 +2409,9 @@ msgstr ""
2274
2409
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2275
2410
  msgstr ""
2276
2411
 
2412
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2413
+ msgstr ""
2414
+
2277
2415
  msgid "Entitlements"
2278
2416
  msgstr "Entitlements"
2279
2417
 
@@ -2530,6 +2668,9 @@ msgstr "Produkte nach Subskription filtern"
2530
2668
  msgid "Filter products by sync plan id"
2531
2669
  msgstr "Produkte nach Synchronisationsplan-ID filtern"
2532
2670
 
2671
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2672
+ msgstr ""
2673
+
2533
2674
  msgid "Filter rule added"
2534
2675
  msgstr ""
2535
2676
 
@@ -2566,6 +2707,9 @@ msgstr ""
2566
2707
  msgid "Filters will appear here when the filter is created."
2567
2708
  msgstr ""
2568
2709
 
2710
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2711
+ msgstr ""
2712
+
2569
2713
  msgid "Finish"
2570
2714
  msgstr ""
2571
2715
 
@@ -2627,6 +2771,9 @@ msgstr "Voll berechtigt"
2627
2771
  msgid "GPG Key URL"
2628
2772
  msgstr "GPG-Schlüssel-URL"
2629
2773
 
2774
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2775
+ msgstr ""
2776
+
2630
2777
  msgid "Generate and Download"
2631
2778
  msgstr "Generieren und herunterladen"
2632
2779
 
@@ -2837,6 +2984,9 @@ msgstr "Host mit ID %s nicht gefunden."
2837
2984
  msgid "Hosts"
2838
2985
  msgstr "Hosts"
2839
2986
 
2987
+ msgid "Hosts to update"
2988
+ msgstr ""
2989
+
2840
2990
  msgid "Hosts with Installable Errata"
2841
2991
  msgstr "Hosts mit installierbaren Errata"
2842
2992
 
@@ -2915,6 +3065,9 @@ msgstr "ID des Synchronisationsplans"
2915
3065
  msgid "ID: %s doesn't exist "
2916
3066
  msgstr "ID: %s existiert nicht"
2917
3067
 
3068
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
3069
+ msgstr ""
3070
+
2918
3071
  msgid "Id of a deb package to find repositories that contain the deb"
2919
3072
  msgstr "ID eines Deb-Pakets, um Repositorys zu finden, die das Deb enthalten"
2920
3073
 
@@ -2930,6 +3083,9 @@ msgstr "ID einer Ansible-Sammlung, um Repositorys zu finden, die die Ansible-Sam
2930
3083
  msgid "Id of an erratum to find repositories that contain the erratum"
2931
3084
  msgstr "ID eines Erratum um Repositorys mit diesem Erratum zu finden"
2932
3085
 
3086
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3087
+ msgstr ""
3088
+
2933
3089
  msgid "Id of the content host"
2934
3090
  msgstr "ID des Inhaltshosts"
2935
3091
 
@@ -3002,6 +3158,9 @@ msgstr ""
3002
3158
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
3003
3159
  msgstr "Falls angegeben, entfernen Sie die erste Instanz einer Subskription mit passender ID und Anzahl"
3004
3160
 
3161
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3162
+ msgstr ""
3163
+
3005
3164
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
3006
3165
  msgstr ""
3007
3166
 
@@ -3014,6 +3173,9 @@ msgstr ""
3014
3173
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
3015
3174
  msgstr ""
3016
3175
 
3176
+ 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/...'."
3177
+ msgstr ""
3178
+
3017
3179
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3018
3180
  msgstr "Bei true werden nur Repository-Sets zurückgegeben, die mit einem aktiven Abonnement verknüpft sind"
3019
3181
 
@@ -3047,6 +3209,9 @@ msgstr "Abo-Manager-Fehler für den Befehl `subscription-manager register` ignor
3047
3209
  msgid "Ignore subscriptions that are unavailable to the specified host"
3048
3210
  msgstr "Subskriptionen, die für den angegebenen Host nicht verfügbar sind, ignorieren"
3049
3211
 
3212
+ msgid "Ignored hosts"
3213
+ msgstr ""
3214
+
3050
3215
  msgid "Immediate"
3051
3216
  msgstr "SRPMs ignorieren"
3052
3217
 
@@ -3191,9 +3356,6 @@ msgstr "Modulströme indexieren"
3191
3356
  msgid "Index package groups"
3192
3357
  msgstr "Paketgruppen indizieren"
3193
3358
 
3194
- msgid "Indicate the source type."
3195
- msgstr ""
3196
-
3197
3359
  msgid "Informable Type must be one of the following [ %{list} ]"
3198
3360
  msgstr "Relevante Typen sind folgende [ %{list} ]"
3199
3361
 
@@ -3263,12 +3425,15 @@ msgstr ""
3263
3425
  msgid "Installable"
3264
3426
  msgstr "Installierbar"
3265
3427
 
3266
- msgid "Installable errata"
3428
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3267
3429
  msgstr ""
3268
3430
 
3269
3431
  msgid "Installable errata from content view"
3270
3432
  msgstr ""
3271
3433
 
3434
+ msgid "Installable updates"
3435
+ msgstr ""
3436
+
3272
3437
  msgid "Installation of errata requested: %{errata}"
3273
3438
  msgstr "Installation von Errata angefordert: %{errata}"
3274
3439
 
@@ -3329,9 +3494,6 @@ msgstr "Intervall nicht richtig gesetzt"
3329
3494
  msgid "Invalid"
3330
3495
  msgstr "Ungültig"
3331
3496
 
3332
- msgid "Invalid SSL CA certificate given for CDN"
3333
- msgstr ""
3334
-
3335
3497
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3336
3498
  msgstr "Ungültige Zuordnung der Inhaltsansichts-ID. Inhaltsansicht muss mit der gespeicherten Inhaltsansichtsversion übereinstimmen"
3337
3499
 
@@ -3380,6 +3542,12 @@ msgstr "Ungültige Parameter angegeben - content_type muss einer von %s sein"
3380
3542
  msgid "Invalid params provided - date_type must be one of %s"
3381
3543
  msgstr "Ungültige Parameter angegeben - date_type muss einer von %s sein"
3382
3544
 
3545
+ msgid "Invalid params provided - with_content must be one of %s"
3546
+ msgstr ""
3547
+
3548
+ msgid "Invalid path provided. Content can be only imported from file system. "
3549
+ msgstr ""
3550
+
3383
3551
  msgid "Invalid release version: [%s]"
3384
3552
  msgstr ""
3385
3553
 
@@ -3401,6 +3569,9 @@ msgstr "Ausgegeben"
3401
3569
  msgid "Issued from"
3402
3570
  msgstr ""
3403
3571
 
3572
+ msgid "Items will appear here when a filter rule is added."
3573
+ msgstr ""
3574
+
3404
3575
  msgid "Job '${description}' completed"
3405
3576
  msgstr ""
3406
3577
 
@@ -3476,15 +3647,18 @@ msgstr "Kennung des Inhalts"
3476
3647
  msgid "Label of the content view"
3477
3648
  msgstr ""
3478
3649
 
3479
- msgid "Last Refresh"
3650
+ msgid "Last check-in:"
3480
3651
  msgstr ""
3481
3652
 
3482
- msgid "Last check-in:"
3653
+ msgid "Last checkin"
3483
3654
  msgstr ""
3484
3655
 
3485
3656
  msgid "Last published"
3486
3657
  msgstr "Zuletzt veröffentlicht"
3487
3658
 
3659
+ msgid "Last refresh"
3660
+ msgstr ""
3661
+
3488
3662
  msgid "Last refresh :"
3489
3663
  msgstr ""
3490
3664
 
@@ -3503,6 +3677,9 @@ msgstr "Letzte Version"
3503
3677
  msgid "Learn more about adding Subscription Manifests"
3504
3678
  msgstr "Weitere Informationen zum Hinzufügen von Abonnementmanifesten"
3505
3679
 
3680
+ msgid "Legacy content host UI"
3681
+ msgstr ""
3682
+
3506
3683
  msgid "Less than"
3507
3684
  msgstr ""
3508
3685
 
@@ -3569,6 +3746,9 @@ msgstr "Beschränken Sie den Inhalt auf den Inhalt, der in der Inhaltsansichtsve
3569
3746
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3570
3747
  msgstr ""
3571
3748
 
3749
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3750
+ msgstr ""
3751
+
3572
3752
  msgid "Limit to environment"
3573
3753
  msgstr "Auf Umgebung beschränken"
3574
3754
 
@@ -3599,6 +3779,9 @@ msgstr "Alle :resource_id auflisten"
3599
3779
  msgid "List all organizations"
3600
3780
  msgstr "Alle Organisationen auflisten"
3601
3781
 
3782
+ msgid "List alternate content sources."
3783
+ msgstr ""
3784
+
3602
3785
  msgid "List an activation key's subscriptions"
3603
3786
  msgstr "Subskriptionen eines Aktivierungsschlüssels auflisten"
3604
3787
 
@@ -3671,9 +3854,6 @@ msgstr "Produktliste für Synchronisationsplan"
3671
3854
  msgid "List of alternate content source IDs"
3672
3855
  msgstr ""
3673
3856
 
3674
- msgid "List of alternate_content_sources"
3675
- msgstr ""
3676
-
3677
3857
  msgid "List of component content view version ids for composite views"
3678
3858
  msgstr "Liste der Komponenteninhaltsansichts-Versions-IDs für Verbundansichten"
3679
3859
 
@@ -3764,6 +3944,9 @@ msgstr "Liste der Repositorys in einer Organisation"
3764
3944
  msgid "List of repository ids"
3765
3945
  msgstr "Liste mit Repository-IDs"
3766
3946
 
3947
+ msgid "List of resources types that will be automatically associated"
3948
+ msgstr ""
3949
+
3767
3950
  msgid "List of subscription products in a subscription"
3768
3951
  msgstr "Liste mit Subskriptionsprodukten in einer Subskription"
3769
3952
 
@@ -3968,6 +4151,9 @@ msgstr ""
3968
4151
  msgid "Multi-entitlement"
3969
4152
  msgstr "Multi-Berechtigung"
3970
4153
 
4154
+ msgid "Multiple environments are not supported."
4155
+ msgstr ""
4156
+
3971
4157
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3972
4158
  msgstr "Muss mindestens einen der Parameter mandatory_package_names, optional_package_names, conditional_package_names, default_package_names angeben"
3973
4159
 
@@ -3980,6 +4166,9 @@ msgstr "Nicht verfügbar"
3980
4166
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3981
4167
  msgstr "HINWEIS: Katello-agent ist veraltet und wird in entfernt in %s. Ziehen Sie stattdessen die Verwendung von Remote-Ausführung in Betracht."
3982
4168
 
4169
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4170
+ msgstr ""
4171
+
3983
4172
  msgid ""
3984
4173
  "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"
3985
4174
  " %{repos}"
@@ -3987,6 +4176,11 @@ msgstr ""
3987
4176
  "HINWEIS: Die Bibliothek der Organisation '%{organization}' kann nicht vollständig exportiert werden, da sie Repositorys ohne die Richtlinie für den sofortigen Download enthält. Aktualisieren Sie die Download-Richtlinie und synchronisieren Sie betroffene Repositorys, um sie in den Export einzubeziehen.\n"
3988
4177
  " %{repos}"
3989
4178
 
4179
+ msgid ""
4180
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4181
+ " %{repos}"
4182
+ msgstr ""
4183
+
3990
4184
  msgid ""
3991
4185
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3992
4186
  " %{repos}"
@@ -4000,6 +4194,12 @@ msgstr ""
4000
4194
  msgid "Name"
4001
4195
  msgstr "Name"
4002
4196
 
4197
+ msgid "Name and label of default content view should not be changed"
4198
+ msgstr ""
4199
+
4200
+ msgid "Name is a required parameter."
4201
+ msgstr ""
4202
+
4003
4203
  msgid "Name of new activation key"
4004
4204
  msgstr "Name des neuen Aktivierungsschlüssels"
4005
4205
 
@@ -4045,6 +4245,12 @@ msgstr ""
4045
4245
  msgid "Never Synced"
4046
4246
  msgstr "Nie synchronisiert"
4047
4247
 
4248
+ msgid "Never checked in"
4249
+ msgstr ""
4250
+
4251
+ msgid "Never registered"
4252
+ msgstr ""
4253
+
4048
4254
  msgid "New Errata"
4049
4255
  msgstr "Neue Errata"
4050
4256
 
@@ -4138,6 +4344,9 @@ msgstr "Kein Inhalt wurde bereitgestellt."
4138
4344
  msgid "No content ids provided"
4139
4345
  msgstr "Keine Inhalts-IDs angegeben"
4140
4346
 
4347
+ msgid "No content in selected versions."
4348
+ msgstr ""
4349
+
4141
4350
  msgid "No content view history events found."
4142
4351
  msgstr "Keine vergangenen Ereignisse der Inhaltsansicht gefunden."
4143
4352
 
@@ -4189,6 +4398,9 @@ msgstr ""
4189
4398
  msgid "No host collections found."
4190
4399
  msgstr "Keine Hostsammlungen gefunden"
4191
4400
 
4401
+ msgid "No host collections yet"
4402
+ msgstr ""
4403
+
4192
4404
  msgid "No hosts have been specified."
4193
4405
  msgstr "Es wurden keine Hosts angegeben."
4194
4406
 
@@ -4213,6 +4425,9 @@ msgstr "Kein Manifest gefunden. Importieren Sie ein Manifest mit den entsprechen
4213
4425
  msgid "No matching "
4214
4426
  msgstr ""
4215
4427
 
4428
+ msgid "No matching ${name} found."
4429
+ msgstr ""
4430
+
4216
4431
  msgid "No matching ${selectedContentType} found"
4217
4432
  msgstr ""
4218
4433
 
@@ -4303,6 +4518,9 @@ msgstr "Keine Prozesse erfordern einen Neustart"
4303
4518
  msgid "No products are enabled."
4304
4519
  msgstr "Es sind keine Produkte aktiviert."
4305
4520
 
4521
+ msgid "No profiles to show"
4522
+ msgstr ""
4523
+
4306
4524
  msgid "No pulp workers running."
4307
4525
  msgstr "Pulp-Worker laufen nicht."
4308
4526
 
@@ -4438,6 +4656,9 @@ msgstr "Objekt zeigt Liste verfügbarer Subskriptionen für 'host' oder 'activat
4438
4656
  msgid "On Demand"
4439
4657
  msgstr "Auf Nachfrage"
4440
4658
 
4659
+ msgid "On the RHUA Instance, check the available repositories."
4660
+ msgstr ""
4661
+
4441
4662
  msgid "On-disk location for exported repositories"
4442
4663
  msgstr "Speicherort auf der Festplatte für exportierte Repositorys"
4443
4664
 
@@ -4816,6 +5037,9 @@ msgstr "Bitte wählen Sie aus der Liste unten, Sie werden anschließend weiterge
4816
5037
  msgid "Please wait while the task starts.."
4817
5038
  msgstr ""
4818
5039
 
5040
+ msgid "Please wait..."
5041
+ msgstr ""
5042
+
4819
5043
  msgid "Policy to set for mirroring content. Must be one of %s."
4820
5044
  msgstr ""
4821
5045
 
@@ -4907,9 +5131,18 @@ msgstr "Produkt mit ID %s nicht in Candlepin gefunden. Überspringen des Inhalts
4907
5131
  msgid "Product: '%{product}', Repository: '%{repository}'"
4908
5132
  msgstr "Produkt: '%{product}', Repository: '%{repository}'"
4909
5133
 
5134
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5135
+ msgstr ""
5136
+
4910
5137
  msgid "Products"
4911
5138
  msgstr "Produkte"
4912
5139
 
5140
+ msgid "Products updated."
5141
+ msgstr ""
5142
+
5143
+ msgid "Profiles"
5144
+ msgstr ""
5145
+
4913
5146
  msgid "Promote"
4914
5147
  msgstr "Fördern"
4915
5148
 
@@ -5087,6 +5320,9 @@ msgstr "RAM: %s GB"
5087
5320
  msgid "RH Repos"
5088
5321
  msgstr "RH Repos"
5089
5322
 
5323
+ msgid "RHUI"
5324
+ msgstr ""
5325
+
5090
5326
  msgid "RPM"
5091
5327
  msgstr "RPM"
5092
5328
 
@@ -5099,6 +5335,12 @@ msgstr ""
5099
5335
  msgid "RPM name"
5100
5336
  msgstr "RPM Name"
5101
5337
 
5338
+ msgid "RPM package groups"
5339
+ msgstr ""
5340
+
5341
+ msgid "RPM package updates"
5342
+ msgstr ""
5343
+
5102
5344
  msgid "RPM packages"
5103
5345
  msgstr ""
5104
5346
 
@@ -5165,6 +5407,9 @@ msgstr ""
5165
5407
  msgid "Red Hat content will be consumed from the {type}."
5166
5408
  msgstr ""
5167
5409
 
5410
+ msgid "Red Hat content will be consumed from {type}."
5411
+ msgstr ""
5412
+
5168
5413
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5169
5414
  msgstr ""
5170
5415
 
@@ -5192,7 +5437,7 @@ msgstr "Manifest aktualisieren"
5192
5437
  msgid "Refresh alternate content sources"
5193
5438
  msgstr ""
5194
5439
 
5195
- msgid "Refresh an alternate content source"
5440
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5196
5441
  msgstr ""
5197
5442
 
5198
5443
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5210,6 +5455,9 @@ msgstr "Registrieren Sie einen Host mit Abonnement und Informationen"
5210
5455
  msgid "Register host '%s' before attaching subscriptions"
5211
5456
  msgstr "Registrieren Sie den Host '%s', bevor Sie Abonnements anhängen"
5212
5457
 
5458
+ msgid "Registered"
5459
+ msgstr ""
5460
+
5213
5461
  msgid "Registered by"
5214
5462
  msgstr ""
5215
5463
 
@@ -5336,8 +5584,8 @@ msgstr ""
5336
5584
  msgid "Remove one or more host collections from one or more hosts"
5337
5585
  msgstr "Entfernen Sie eine oder mehrere Hostsammlungen von einem oder mehreren Hosts"
5338
5586
 
5339
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5340
- msgstr "Entfernen Sie ein oder mehrere Abonnements aus einer Upstream-Abonnementzuweisung"
5587
+ msgid "Remove one or more subscriptions from an upstream manifest"
5588
+ msgstr ""
5341
5589
 
5342
5590
  msgid "Remove package"
5343
5591
  msgstr "Paket entfernen"
@@ -5387,6 +5635,9 @@ msgstr "Paketgruppe wird entfernt …"
5387
5635
  msgid "Removing Package..."
5388
5636
  msgstr "Paket wird entfernt …"
5389
5637
 
5638
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5639
+ msgstr ""
5640
+
5390
5641
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5391
5642
  msgstr ""
5392
5643
 
@@ -5627,9 +5878,6 @@ msgstr ""
5627
5878
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5628
5879
  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"
5629
5880
 
5630
- msgid "Review Details"
5631
- msgstr ""
5632
-
5633
5881
  msgid "Review affected environment"
5634
5882
  msgstr ""
5635
5883
 
@@ -5639,6 +5887,9 @@ msgstr ""
5639
5887
  msgid "Review details"
5640
5888
  msgstr "Bewertungsdetails"
5641
5889
 
5890
+ msgid "Review the information below and click "
5891
+ msgstr ""
5892
+
5642
5893
  msgid "Review your currently selected changes for "
5643
5894
  msgstr ""
5644
5895
 
@@ -5678,9 +5929,6 @@ msgstr ""
5678
5929
  msgid "SSL CA certificate"
5679
5930
  msgstr ""
5680
5931
 
5681
- msgid "SSL Cert"
5682
- msgstr ""
5683
-
5684
5932
  msgid "SSL client certificate"
5685
5933
  msgstr ""
5686
5934
 
@@ -5810,6 +6058,9 @@ msgstr ""
5810
6058
  msgid "Select an environment above"
5811
6059
  msgstr ""
5812
6060
 
6061
+ msgid "Select an option"
6062
+ msgstr ""
6063
+
5813
6064
  msgid "Select an organization"
5814
6065
  msgstr "Wählen Sie eine Organisation aus"
5815
6066
 
@@ -5849,6 +6100,12 @@ msgstr ""
5849
6100
  msgid "Select page"
5850
6101
  msgstr ""
5851
6102
 
6103
+ msgid "Select products"
6104
+ msgstr ""
6105
+
6106
+ msgid "Select products to associate to this source."
6107
+ msgstr ""
6108
+
5852
6109
  msgid "Select row"
5853
6110
  msgstr "Zeile auswählen"
5854
6111
 
@@ -5966,7 +6223,7 @@ msgstr ""
5966
6223
  msgid "Show an activation key"
5967
6224
  msgstr "Aktivierungsschlüssel anzeigen"
5968
6225
 
5969
- msgid "Show an alternate content source"
6226
+ msgid "Show an alternate content source."
5970
6227
  msgstr ""
5971
6228
 
5972
6229
  msgid "Show an environment"
@@ -6017,6 +6274,9 @@ msgstr "Der einfache Inhaltszugriff wurde für '%{subject}' deaktiviert."
6017
6274
  msgid "Simple Content Access has been enabled for '%{subject}'."
6018
6275
  msgstr "Der einfache Inhaltszugriff wurde für '%{subject}' aktiviert."
6019
6276
 
6277
+ msgid "Simplified"
6278
+ msgstr ""
6279
+
6020
6280
  msgid "Single content view consisting of e.g. repositories"
6021
6281
  msgstr ""
6022
6282
 
@@ -6053,7 +6313,7 @@ msgstr "Lösen Sie RPM-Abhängigkeiten standardmäßig beim Veröffentlichen von
6053
6313
  msgid "Solve dependencies"
6054
6314
  msgstr "Abhängigkeiten lösen"
6055
6315
 
6056
- msgid "Some hosts are ignored!"
6316
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6057
6317
  msgstr ""
6058
6318
 
6059
6319
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6077,15 +6337,15 @@ msgstr ""
6077
6337
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6078
6338
  msgstr "Beim Erstellen des Filters ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6079
6339
 
6340
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6341
+ msgstr ""
6342
+
6080
6343
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6081
6344
  msgstr ""
6082
6345
 
6083
6346
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6084
6347
  msgstr "Beim Löschen von Filtern ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6085
6348
 
6086
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6087
- msgstr ""
6088
-
6089
6349
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
6090
6350
  msgstr "Beim Löschen dieses Filters ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6091
6351
 
@@ -6131,10 +6391,13 @@ msgstr ""
6131
6391
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6132
6392
  msgstr ""
6133
6393
 
6394
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6395
+ msgstr ""
6396
+
6134
6397
  msgid "Something went wrong while loading the content views. See the logs for more information"
6135
6398
  msgstr ""
6136
6399
 
6137
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6400
+ msgid "Something went wrong while refreshing alternate content sources: "
6138
6401
  msgstr ""
6139
6402
 
6140
6403
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6149,6 +6412,9 @@ msgstr ""
6149
6412
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6150
6413
  msgstr ""
6151
6414
 
6415
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6416
+ msgstr ""
6417
+
6152
6418
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6153
6419
  msgstr "Beim Abrufen der Inhaltsansichtskomponenten ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6154
6420
 
@@ -6167,9 +6433,33 @@ msgstr "Beim Abrufen des Inhaltsansichtsverlaufs ist ein Fehler aufgetreten! ${g
6167
6433
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6168
6434
  msgstr "Beim Abrufen der Inhaltsansichtsversionen ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6169
6435
 
6436
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6437
+ msgstr ""
6438
+
6439
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6440
+ msgstr ""
6441
+
6442
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6443
+ msgstr ""
6444
+
6445
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6446
+ msgstr ""
6447
+
6170
6448
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6171
6449
  msgstr ""
6172
6450
 
6451
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6452
+ msgstr ""
6453
+
6454
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6455
+ msgstr ""
6456
+
6457
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6458
+ msgstr ""
6459
+
6460
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6461
+ msgstr ""
6462
+
6173
6463
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6174
6464
  msgstr "Beim Abrufen der Repository-Typen ist ein Fehler aufgetreten! ${getResponseErrorMsgs(error.response)}"
6175
6465
 
@@ -6254,9 +6544,6 @@ msgstr ""
6254
6544
  msgid "Subscription"
6255
6545
  msgstr "Subskription"
6256
6546
 
6257
- msgid "Subscription Allocation"
6258
- msgstr "Abonnementzuweisung"
6259
-
6260
6547
  msgid "Subscription Details"
6261
6548
  msgstr "Subskriptionsdetails"
6262
6549
 
@@ -6314,6 +6601,9 @@ msgstr "Subskriptionsmanifest-Datei"
6314
6601
  msgid "Subscription not found"
6315
6602
  msgstr "Abonnement nicht gefunden"
6316
6603
 
6604
+ msgid "Subscription status"
6605
+ msgstr ""
6606
+
6317
6607
  msgid "Subscription was not persisted - %{error_message}"
6318
6608
  msgstr "Abonnement wurde nicht beibehalten - %{error_message}"
6319
6609
 
@@ -6359,6 +6649,9 @@ msgstr "%s Host(s) erfolgreich entfernt."
6359
6649
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6360
6650
  msgstr "%{count} Inhaltshosts erfolgreich von Hostsammlung %{host_collection} entfernt."
6361
6651
 
6652
+ msgid "Successfully synced capsule."
6653
+ msgstr ""
6654
+
6362
6655
  msgid "Successfully synchronized."
6363
6656
  msgstr "Erfolgreich synchronisiert."
6364
6657
 
@@ -6440,6 +6733,9 @@ msgstr "Ein oder mehrere Produkte synchronisieren"
6440
6733
  msgid "Sync plan identifier to attach"
6441
6734
  msgstr "ID des zu verknüpfenden Synchronisationsplans"
6442
6735
 
6736
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6737
+ msgstr ""
6738
+
6443
6739
  msgid "Sync state"
6444
6740
  msgstr "Synchronisierungsstatus"
6445
6741
 
@@ -6530,9 +6826,6 @@ msgstr "Die \"%s\" Umgebung kann keinen Änderungssatz enthalten!"
6530
6826
  msgid "The Alternate Content Source type"
6531
6827
  msgstr ""
6532
6828
 
6533
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6534
- msgstr "Die Abonnementzuordnung, die das importierte Manifest bereitstellt, wurde entfernt. Bitte erstellen Sie eine neue Abonnementzuordnung und importieren Sie das neue Manifest."
6535
-
6536
6829
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6537
6830
  msgstr "Die URL, von der ein Sitzungstoken empfangen werden soll, z. mit Automation Hub verwendet."
6538
6831
 
@@ -6584,9 +6877,6 @@ msgstr "Die exportierte Inhaltsansichtsversion '%{content_view} %{current}' kann
6584
6877
  msgid "The field to sort the data by. Defaults to the created date."
6585
6878
  msgstr "Das Feld, nach dem die Daten sortiert werden sollen. Standardmäßig wird das Erstellungsdatum verwendet."
6586
6879
 
6587
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6588
- msgstr ""
6589
-
6590
6880
  msgid "The following hosts have errata that apply to them: "
6591
6881
  msgstr "DIe folgenden Hosts haben relevante Errata: "
6592
6882
 
@@ -6615,6 +6905,9 @@ msgstr ""
6615
6905
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6616
6906
  msgstr "Die Liste der Umgebungen, auf die die angegebene Inhaltsansichtsversion hochgestuft werden soll (ersetzt die ältere Version)"
6617
6907
 
6908
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6909
+ msgstr ""
6910
+
6618
6911
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6619
6912
  msgstr "Das in Organisation %{subject} importierte Manifest ist nicht mehr gültig. Bitte importieren Sie ein neues Manifest."
6620
6913
 
@@ -6661,6 +6954,9 @@ msgstr "Der Pfad %{real_path} scheint kein gültiges Repository zu sein. Wenn Si
6661
6954
  msgid "The port used by Pulp Crane to provide Docker Registries"
6662
6955
  msgstr "Der von Pulp Crane verwendete Port, um Docker-Registries bereitzustellen"
6663
6956
 
6957
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6958
+ msgstr ""
6959
+
6664
6960
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6665
6961
  msgstr "Die Übertragung von %{content_view} nach %{environment} wurde abgeschlossen. %{count} Errata stehen Ihren Hosts zur Verfügung."
6666
6962
 
@@ -6706,14 +7002,20 @@ msgstr "Die Synchronisation von \"%s\" wurde abgeschlossen. Nachfolgend sehen Si
6706
7002
  msgid "The token key to use for authentication."
6707
7003
  msgstr "Der für die Authentifizierung zu verwendende Tokenschlüssel."
6708
7004
 
7005
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7006
+ msgstr ""
7007
+
7008
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7009
+ msgstr ""
7010
+
6709
7011
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6710
7012
  msgstr "Der Inhaltstyp. Die folgenden Typen werden unterstützt: \"package\" und \"package_group\"."
6711
7013
 
6712
7014
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6713
7015
  msgstr "Der Inhaltstyp. Die folgenden Typen werden unterstützt: \"package\", \"package_group\" und \"errata\"."
6714
7016
 
6715
- msgid "There are no Subscription Allocations to display"
6716
- msgstr "Es sind keine Abonnementzuordnungen zum Anzeigen vorhanden"
7017
+ msgid "There are no Manifests to display"
7018
+ msgstr ""
6717
7019
 
6718
7020
  msgid "There are no Subscriptions to display"
6719
7021
  msgstr "Es sind keine Abonnements zum Anzeigen vorhanden"
@@ -6784,6 +7086,9 @@ msgstr ""
6784
7086
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6785
7087
  msgstr "Die Aktion benutzt den Katello-Agenten, der aktuell abgeschaltet ist. Benutze stattdesses Remote-Ausführung."
6786
7088
 
7089
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7090
+ msgstr ""
7091
+
6787
7092
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6788
7093
  msgstr "Dieses Zertifikat ermöglicht es dem Benutzer, die Repositorys in jeder Umgebung mit einem Browser anzuzeigen."
6789
7094
 
@@ -6823,8 +7128,8 @@ msgstr "Dies ist deaktiviert, da eine Manifest-bezogene Aufgabe ausgeführt wird
6823
7128
  msgid "This is disabled because a manifest task is in progress"
6824
7129
  msgstr "Dies ist deaktiviert, da eine Manifestaufgabe ausgeführt wird"
6825
7130
 
6826
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6827
- msgstr "Dies ist deaktiviert, da keine Verbindung zur Upstream-Abonnementzuordnung hergestellt werden konnte."
7131
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7132
+ msgstr ""
6828
7133
 
6829
7134
  msgid "This is disabled because no manifest exists"
6830
7135
  msgstr "Dies ist deaktiviert, da kein Manifest vorhanden ist"
@@ -6892,6 +7197,9 @@ msgstr "Zeitstempel"
6892
7197
  msgid "Title"
6893
7198
  msgstr "Titel"
6894
7199
 
7200
+ msgid "To get started, add this host to a host collection."
7201
+ msgstr ""
7202
+
6895
7203
  msgid "Toggling Simple Content Access will refresh your manifest."
6896
7204
  msgstr "Durch Umschalten des einfachen Inhaltszugriffs wird Ihr Manifest aktualisiert."
6897
7205
 
@@ -6934,6 +7242,9 @@ msgstr ""
6934
7242
  msgid "Traces will be shown here to a user with the appropriate permissions."
6935
7243
  msgstr ""
6936
7244
 
7245
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7246
+ msgstr ""
7247
+
6937
7248
  msgid "Trigger an auto-attach of subscriptions"
6938
7249
  msgstr "Automatische Verknüpfung von Subskriptionen auslösen "
6939
7250
 
@@ -6964,12 +7275,18 @@ msgstr "Typ des Kontents"
6964
7275
  msgid "Type of content: \"cert\", \"gpg_key\""
6965
7276
  msgstr "Type of Kontents: \"cert\", \"gpg_key\""
6966
7277
 
7278
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7279
+ msgstr ""
7280
+
6967
7281
  msgid "URL"
6968
7282
  msgstr "URL"
6969
7283
 
6970
7284
  msgid "URL and paths"
6971
7285
  msgstr ""
6972
7286
 
7287
+ msgid "URL and subpaths"
7288
+ msgstr ""
7289
+
6973
7290
  msgid "URL needs to have a trailing /"
6974
7291
  msgstr "URL muss einen nachgestellten / haben"
6975
7292
 
@@ -7171,7 +7488,7 @@ msgstr "Synchronisationsplan aktualisieren"
7171
7488
  msgid "Update an activation key"
7172
7489
  msgstr "Aktivierungsschlüssel aktualisieren"
7173
7490
 
7174
- msgid "Update an alternate content source"
7491
+ msgid "Update an alternate content source."
7175
7492
  msgstr ""
7176
7493
 
7177
7494
  msgid "Update an environment"
@@ -7378,6 +7695,12 @@ msgstr "Verwendung von Host"
7378
7695
  msgid "Usage type"
7379
7696
  msgstr ""
7380
7697
 
7698
+ msgid "Use HTTP Proxies"
7699
+ msgstr ""
7700
+
7701
+ msgid "Use HTTP proxies"
7702
+ msgstr ""
7703
+
7381
7704
  msgid "Use remote execution by default"
7382
7705
  msgstr "Standardmäßig Remote-Ausführung verwenden"
7383
7706
 
@@ -7453,6 +7776,12 @@ msgstr ""
7453
7776
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7454
7777
  msgstr ""
7455
7778
 
7779
+ msgid "Version ${versionOne}"
7780
+ msgstr ""
7781
+
7782
+ msgid "Version ${versionTwo}"
7783
+ msgstr ""
7784
+
7456
7785
  msgid "Version details updated."
7457
7786
  msgstr ""
7458
7787
 
@@ -7465,6 +7794,9 @@ msgstr "Versionen"
7465
7794
  msgid "Versions "
7466
7795
  msgstr ""
7467
7796
 
7797
+ msgid "Versions to compare"
7798
+ msgstr ""
7799
+
7468
7800
  msgid "Versions to exclusively include in the action"
7469
7801
  msgstr ""
7470
7802
 
@@ -7480,6 +7812,9 @@ msgstr "Ansicht %{view} wurde bereits übertragen in %{env}"
7480
7812
  msgid "View a report of the affected hosts"
7481
7813
  msgstr "Sehen Sie sich einen Bericht der betroffenen Hosts an"
7482
7814
 
7815
+ msgid "View by"
7816
+ msgstr ""
7817
+
7483
7818
  msgid "View matching content"
7484
7819
  msgstr ""
7485
7820
 
@@ -7543,6 +7878,9 @@ msgstr "Ob eine externe Kapsel nach dem Hochladen synchronisiert werden soll ode
7543
7878
  msgid "Whether to include available content attribute in results"
7544
7879
  msgstr "Ob verfügbare Inhaltsattribute in Ergebnisse eingeschlossen werden sollen"
7545
7880
 
7881
+ msgid "Whether to turn on Simple Content Access for the organization."
7882
+ msgstr ""
7883
+
7546
7884
  msgid "Workers"
7547
7885
  msgstr "Worker"
7548
7886
 
@@ -7639,6 +7977,9 @@ msgstr "Deine Such-Anfrage war ungültig. Bitte überarbeite sie und versuche es
7639
7977
  msgid "Your search returned no matching "
7640
7978
  msgstr ""
7641
7979
 
7980
+ msgid "Your search returned no matching ${name}."
7981
+ msgstr ""
7982
+
7642
7983
  msgid "Your search returned no matching DEBs."
7643
7984
  msgstr ""
7644
7985
 
@@ -7663,6 +8004,9 @@ msgstr "Yum Metadaten: %s"
7663
8004
  msgid "a content unit"
7664
8005
  msgstr ""
7665
8006
 
8007
+ msgid "a custom CDN URL"
8008
+ msgstr ""
8009
+
7666
8010
  msgid "a deb package"
7667
8011
  msgstr ""
7668
8012
 
@@ -7834,9 +8178,6 @@ msgstr "Bedingte Paketnamen, die in die Paketgruppe aufgenommen werden sollen"
7834
8178
  msgid "content release version"
7835
8179
  msgstr "Inhalts-Release-Version"
7836
8180
 
7837
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7838
- msgstr "Kontent-Typ ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7839
-
7840
8181
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7841
8182
  msgstr ""
7842
8183
 
@@ -8110,9 +8451,6 @@ msgstr "Kennung der Umgebung"
8110
8451
  msgid "label of the repository"
8111
8452
  msgstr "Label des Repositorys"
8112
8453
 
8113
- msgid "limit to only repositories of this type"
8114
- msgstr "auf nur Repositorys dieses Typs beschränken"
8115
-
8116
8454
  msgid "limit to only repositories with this download policy"
8117
8455
  msgstr "Beschränken Sie sich auf nur Repositorys mit dieser Download-Richtlinie"
8118
8456
 
@@ -8230,9 +8568,6 @@ msgstr "Manifestchronik für Subskriptionen laden"
8230
8568
  msgid "of environment must be unique within one organization"
8231
8569
  msgstr "der Umgebung muss eindeutig innerhalb einer Organisation sein"
8232
8570
 
8233
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8234
- msgstr "nur Repositorys mit mindestens einem der angegebenen Inhaltstypen, z. B.: rpm , erratum"
8235
-
8236
8571
  msgid "only show the repositories readable by this user with this username"
8237
8572
  msgstr "nur die Repositorys anzeigen, die von diesem Benutzer mit diesem Benutzernamen gelesen werden können"
8238
8573
 
@@ -8416,9 +8751,6 @@ msgstr ""
8416
8751
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8417
8752
  msgstr ""
8418
8753
 
8419
- msgid "type of repo"
8420
- msgstr "Art des Repositorys"
8421
-
8422
8754
  msgid "types of filters"
8423
8755
  msgstr "Arten von Filtern"
8424
8756