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/en/katello.po CHANGED
@@ -42,6 +42,12 @@ msgstr ""
42
42
  msgid " RPMs"
43
43
  msgstr ""
44
44
 
45
+ msgid " The base path can be a web address or a filesystem location."
46
+ msgstr ""
47
+
48
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
49
+ msgstr ""
50
+
45
51
  msgid " View task details "
46
52
  msgstr ""
47
53
 
@@ -72,12 +78,18 @@ msgstr ""
72
78
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
73
79
  msgstr ""
74
80
 
81
+ msgid " or any step on the left."
82
+ msgstr ""
83
+
75
84
  msgid " to manage and promote content views, or select a different environment."
76
85
  msgstr ""
77
86
 
78
87
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
79
88
  msgstr ""
80
89
 
90
+ msgid "${option}"
91
+ msgstr ""
92
+
81
93
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
82
94
  msgstr ""
83
95
 
@@ -320,6 +332,24 @@ msgstr ""
320
332
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
321
333
  msgstr ""
322
334
 
335
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
336
+ msgstr ""
337
+
338
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
339
+ msgstr ""
340
+
341
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
342
+ msgstr ""
343
+
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
345
+ msgstr ""
346
+
347
+ 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. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
351
+ msgstr ""
352
+
323
353
  msgid "(Orphaned)"
324
354
  msgstr ""
325
355
 
@@ -539,10 +569,10 @@ msgstr ""
539
569
  msgid "Add subscriptions to one or more hosts"
540
570
  msgstr ""
541
571
 
542
- msgid "Add to this filter using the 'Add Deb rule' button."
572
+ msgid "Add to a host collection"
543
573
  msgstr ""
544
574
 
545
- msgid "Add to this filter using the 'Add RPM rule' button."
575
+ msgid "Add to this filter using the 'Add Deb rule' button."
546
576
  msgstr ""
547
577
 
548
578
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -602,6 +632,9 @@ msgstr ""
602
632
  msgid "All subpaths must have a slash at the end and none at the front"
603
633
  msgstr ""
604
634
 
635
+ msgid "All up to date"
636
+ msgstr ""
637
+
605
638
  msgid "All versions"
606
639
  msgstr ""
607
640
 
@@ -629,6 +662,9 @@ msgstr ""
629
662
  msgid "Alter a host's host collections"
630
663
  msgstr ""
631
664
 
665
+ msgid "Alternate Content Source HTTP Proxy"
666
+ msgstr ""
667
+
632
668
  msgid "Alternate Content Sources"
633
669
  msgstr ""
634
670
 
@@ -641,7 +677,10 @@ msgstr ""
641
677
  msgid "Alternate content source deleted"
642
678
  msgstr ""
643
679
 
644
- msgid "Alternate content sources"
680
+ msgid "Alternate content source edited"
681
+ msgstr ""
682
+
683
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
645
684
  msgstr ""
646
685
 
647
686
  msgid "Always Use Latest (currently %{version})"
@@ -653,7 +692,7 @@ msgstr ""
653
692
  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."
654
693
  msgstr ""
655
694
 
656
- msgid "An alternate content source can be added by using the \"Add source\" button above."
695
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
657
696
  msgstr ""
658
697
 
659
698
  msgid "An environment is missing a prior"
@@ -690,9 +729,15 @@ msgstr ""
690
729
  msgid "Applicability Batch Size"
691
730
  msgstr ""
692
731
 
732
+ msgid "Applicable"
733
+ msgstr ""
734
+
693
735
  msgid "Applicable Content Hosts"
694
736
  msgstr ""
695
737
 
738
+ msgid "Applicable errata apply to at least one package installed on the host."
739
+ msgstr ""
740
+
696
741
  msgid "Application"
697
742
  msgstr ""
698
743
 
@@ -869,6 +914,9 @@ msgstr ""
869
914
  msgid "Available Schema Versions"
870
915
  msgstr ""
871
916
 
917
+ msgid "Back"
918
+ msgstr ""
919
+
872
920
  msgid "Backend System Status"
873
921
  msgstr ""
874
922
 
@@ -935,6 +983,12 @@ msgstr ""
935
983
  msgid "Bugs"
936
984
  msgstr ""
937
985
 
986
+ msgid "Bulk alternate content source delete has started."
987
+ msgstr ""
988
+
989
+ msgid "Bulk alternate content source refresh has started."
990
+ msgstr ""
991
+
938
992
  msgid "Bulk generate applicability for host %s"
939
993
  msgstr ""
940
994
 
@@ -944,9 +998,6 @@ msgstr ""
944
998
  msgid "Bulk remove versions from a content view and reassign systems and keys"
945
999
  msgstr ""
946
1000
 
947
- msgid "CA Cert"
948
- msgstr ""
949
-
950
1001
  msgid "CDN Configuration"
951
1002
  msgstr ""
952
1003
 
@@ -1052,6 +1103,9 @@ msgstr ""
1052
1103
  msgid "Cannot add default content view to composite content view"
1053
1104
  msgstr ""
1054
1105
 
1106
+ msgid "Cannot add generated content view versions to composite content view"
1107
+ msgstr ""
1108
+
1055
1109
  msgid "Cannot add repositories to a composite content view"
1056
1110
  msgstr ""
1057
1111
 
@@ -1193,6 +1247,9 @@ msgstr ""
1193
1247
  msgid "Checksum"
1194
1248
  msgstr ""
1195
1249
 
1250
+ msgid "Checksum is a required parameter."
1251
+ msgstr ""
1252
+
1196
1253
  msgid "Checksum of file to upload"
1197
1254
  msgstr ""
1198
1255
 
@@ -1202,6 +1259,9 @@ msgstr ""
1202
1259
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1203
1260
  msgstr ""
1204
1261
 
1262
+ msgid "Choose content credentials if required for this RHUI source."
1263
+ msgstr ""
1264
+
1205
1265
  msgid "Clear any previous registration and run subscription-manager with --force."
1206
1266
  msgstr ""
1207
1267
 
@@ -1217,9 +1277,6 @@ msgstr ""
1217
1277
  msgid "Click {update} below to save changes."
1218
1278
  msgstr ""
1219
1279
 
1220
- msgid "Client key"
1221
- msgstr ""
1222
-
1223
1280
  msgid "Clone"
1224
1281
  msgstr ""
1225
1282
 
@@ -1235,6 +1292,9 @@ msgstr ""
1235
1292
  msgid "Combined Profile Update for %s"
1236
1293
  msgstr ""
1237
1294
 
1295
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1296
+ msgstr ""
1297
+
1238
1298
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1239
1299
  msgstr ""
1240
1300
 
@@ -1244,12 +1304,18 @@ msgstr ""
1244
1304
  msgid "Comma-separated list of tags to sync for a container image repository"
1245
1305
  msgstr ""
1246
1306
 
1307
+ msgid "Compare"
1308
+ msgstr ""
1309
+
1247
1310
  msgid "Component"
1248
1311
  msgstr ""
1249
1312
 
1250
1313
  msgid "Component Content View"
1251
1314
  msgstr ""
1252
1315
 
1316
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1317
+ msgstr ""
1318
+
1253
1319
  msgid "Components"
1254
1320
  msgstr ""
1255
1321
 
@@ -1400,6 +1466,9 @@ msgstr ""
1400
1466
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1401
1467
  msgstr ""
1402
1468
 
1469
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1470
+ msgstr ""
1471
+
1403
1472
  msgid "Content View and Environment not set for registration."
1404
1473
  msgstr ""
1405
1474
 
@@ -1412,6 +1481,9 @@ msgstr ""
1412
1481
  msgid "Content Views"
1413
1482
  msgstr ""
1414
1483
 
1484
+ msgid "Content cannot be imported into a Composite Content View. "
1485
+ msgstr ""
1486
+
1415
1487
  msgid "Content credential"
1416
1488
  msgstr ""
1417
1489
 
@@ -1436,6 +1508,9 @@ msgstr ""
1436
1508
  msgid "Content override search parameters"
1437
1509
  msgstr ""
1438
1510
 
1511
+ msgid "Content source"
1512
+ msgstr ""
1513
+
1439
1514
  msgid "Content source ID"
1440
1515
  msgstr ""
1441
1516
 
@@ -1502,6 +1577,9 @@ msgstr ""
1502
1577
  msgid "Content views"
1503
1578
  msgstr ""
1504
1579
 
1580
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1581
+ msgstr ""
1582
+
1505
1583
  msgid "Content_Host_Status"
1506
1584
  msgstr ""
1507
1585
 
@@ -1643,6 +1721,9 @@ msgstr ""
1643
1721
  msgid "Couldn't find product with id '%s'"
1644
1722
  msgstr ""
1645
1723
 
1724
+ msgid "Couldn't find products with id '%s'"
1725
+ msgstr ""
1726
+
1646
1727
  msgid "Couldn't find repository '%s'"
1647
1728
  msgstr ""
1648
1729
 
@@ -1712,10 +1793,10 @@ msgstr ""
1712
1793
  msgid "Create a sync plan"
1713
1794
  msgstr ""
1714
1795
 
1715
- msgid "Create an ACS"
1796
+ msgid "Create an activation key"
1716
1797
  msgstr ""
1717
1798
 
1718
- msgid "Create an activation key"
1799
+ 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."
1719
1800
  msgstr ""
1720
1801
 
1721
1802
  msgid "Create an environment"
@@ -1727,6 +1808,9 @@ msgstr ""
1727
1808
  msgid "Create an upload request"
1728
1809
  msgstr ""
1729
1810
 
1811
+ msgid "Create content credentials with the generated SSL certificate and key."
1812
+ msgstr ""
1813
+
1730
1814
  msgid "Create content view"
1731
1815
  msgstr ""
1732
1816
 
@@ -1766,6 +1850,9 @@ msgstr ""
1766
1850
  msgid "Custom"
1767
1851
  msgstr ""
1768
1852
 
1853
+ msgid "Custom CDN"
1854
+ msgstr ""
1855
+
1769
1856
  msgid "Custom Content Repositories"
1770
1857
  msgstr ""
1771
1858
 
@@ -1781,6 +1868,9 @@ msgstr ""
1781
1868
  msgid "DEB name"
1782
1869
  msgstr ""
1783
1870
 
1871
+ msgid "DEB package updates"
1872
+ msgstr ""
1873
+
1784
1874
  msgid "Database connection"
1785
1875
  msgstr ""
1786
1876
 
@@ -1916,6 +2006,12 @@ msgstr ""
1916
2006
  msgid "Default user data for new Operating Systems created from synced content"
1917
2007
  msgstr ""
1918
2008
 
2009
+ msgid "Define RHUI repository paths with guided steps."
2010
+ msgstr ""
2011
+
2012
+ msgid "Define repositories structured under a common web or filesystem path."
2013
+ msgstr ""
2014
+
1919
2015
  msgid "Delete"
1920
2016
  msgstr ""
1921
2017
 
@@ -2054,7 +2150,7 @@ msgstr ""
2054
2150
  msgid "Destroy an activation key"
2055
2151
  msgstr ""
2056
2152
 
2057
- msgid "Destroy an alternate content source"
2153
+ msgid "Destroy an alternate content source."
2058
2154
  msgstr ""
2059
2155
 
2060
2156
  msgid "Destroy an environment"
@@ -2117,6 +2213,9 @@ msgstr ""
2117
2213
  msgid "Discover Repositories"
2118
2214
  msgstr ""
2119
2215
 
2216
+ msgid "Distribute archived content view versions"
2217
+ msgstr ""
2218
+
2120
2219
  msgid "Do not include this array of content views"
2121
2220
  msgstr ""
2122
2221
 
@@ -2150,21 +2249,51 @@ msgstr ""
2150
2249
  msgid "Edit"
2151
2250
  msgstr ""
2152
2251
 
2252
+ msgid "Edit ACS"
2253
+ msgstr ""
2254
+
2255
+ msgid "Edit ACS credentials"
2256
+ msgstr ""
2257
+
2258
+ msgid "Edit ACS details"
2259
+ msgstr ""
2260
+
2261
+ msgid "Edit ACS products"
2262
+ msgstr ""
2263
+
2264
+ msgid "Edit ACS smart proxies"
2265
+ msgstr ""
2266
+
2153
2267
  msgid "Edit RPM rule"
2154
2268
  msgstr ""
2155
2269
 
2270
+ msgid "Edit URL and subpaths"
2271
+ msgstr ""
2272
+
2156
2273
  msgid "Edit content view assignment"
2157
2274
  msgstr ""
2158
2275
 
2276
+ msgid "Edit credentials"
2277
+ msgstr ""
2278
+
2279
+ msgid "Edit details"
2280
+ msgstr ""
2281
+
2159
2282
  msgid "Edit filter rule"
2160
2283
  msgstr ""
2161
2284
 
2162
2285
  msgid "Edit package filter rule"
2163
2286
  msgstr ""
2164
2287
 
2288
+ msgid "Edit products"
2289
+ msgstr ""
2290
+
2165
2291
  msgid "Edit rule"
2166
2292
  msgstr ""
2167
2293
 
2294
+ msgid "Edit smart proxies"
2295
+ msgstr ""
2296
+
2168
2297
  msgid "Edit system purpose attributes"
2169
2298
  msgstr ""
2170
2299
 
@@ -2189,6 +2318,9 @@ msgstr ""
2189
2318
  msgid "Either set the latest content view or the content view version. Cannot set both"
2190
2319
  msgstr ""
2191
2320
 
2321
+ msgid "Empty content view versions"
2322
+ msgstr ""
2323
+
2192
2324
  msgid "Enable"
2193
2325
  msgstr ""
2194
2326
 
@@ -2207,6 +2339,9 @@ msgstr ""
2207
2339
  msgid "Enable a repository from the set"
2208
2340
  msgstr ""
2209
2341
 
2342
+ msgid "Enable repository sets"
2343
+ msgstr ""
2344
+
2210
2345
  msgid "Enable simple content access for a manifest"
2211
2346
  msgstr ""
2212
2347
 
@@ -2249,6 +2384,9 @@ msgstr ""
2249
2384
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2250
2385
  msgstr ""
2251
2386
 
2387
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2388
+ msgstr ""
2389
+
2252
2390
  msgid "Entitlements"
2253
2391
  msgstr ""
2254
2392
 
@@ -2505,6 +2643,9 @@ msgstr ""
2505
2643
  msgid "Filter products by sync plan id"
2506
2644
  msgstr ""
2507
2645
 
2646
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2647
+ msgstr ""
2648
+
2508
2649
  msgid "Filter rule added"
2509
2650
  msgstr ""
2510
2651
 
@@ -2541,6 +2682,9 @@ msgstr ""
2541
2682
  msgid "Filters will appear here when the filter is created."
2542
2683
  msgstr ""
2543
2684
 
2685
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2686
+ msgstr ""
2687
+
2544
2688
  msgid "Finish"
2545
2689
  msgstr ""
2546
2690
 
@@ -2600,6 +2744,9 @@ msgstr ""
2600
2744
  msgid "GPG Key URL"
2601
2745
  msgstr ""
2602
2746
 
2747
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2748
+ msgstr ""
2749
+
2603
2750
  msgid "Generate and Download"
2604
2751
  msgstr ""
2605
2752
 
@@ -2810,6 +2957,9 @@ msgstr ""
2810
2957
  msgid "Hosts"
2811
2958
  msgstr ""
2812
2959
 
2960
+ msgid "Hosts to update"
2961
+ msgstr ""
2962
+
2813
2963
  msgid "Hosts with Installable Errata"
2814
2964
  msgstr ""
2815
2965
 
@@ -2888,6 +3038,9 @@ msgstr ""
2888
3038
  msgid "ID: %s doesn't exist "
2889
3039
  msgstr ""
2890
3040
 
3041
+ 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."
3042
+ msgstr ""
3043
+
2891
3044
  msgid "Id of a deb package to find repositories that contain the deb"
2892
3045
  msgstr ""
2893
3046
 
@@ -2903,6 +3056,9 @@ msgstr ""
2903
3056
  msgid "Id of an erratum to find repositories that contain the erratum"
2904
3057
  msgstr ""
2905
3058
 
3059
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3060
+ msgstr ""
3061
+
2906
3062
  msgid "Id of the content host"
2907
3063
  msgstr ""
2908
3064
 
@@ -2975,6 +3131,9 @@ msgstr ""
2975
3131
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2976
3132
  msgstr ""
2977
3133
 
3134
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3135
+ msgstr ""
3136
+
2978
3137
  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."
2979
3138
  msgstr ""
2980
3139
 
@@ -2987,6 +3146,9 @@ msgstr ""
2987
3146
  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."
2988
3147
  msgstr ""
2989
3148
 
3149
+ 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/...'."
3150
+ msgstr ""
3151
+
2990
3152
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2991
3153
  msgstr ""
2992
3154
 
@@ -3020,6 +3182,9 @@ msgstr ""
3020
3182
  msgid "Ignore subscriptions that are unavailable to the specified host"
3021
3183
  msgstr ""
3022
3184
 
3185
+ msgid "Ignored hosts"
3186
+ msgstr ""
3187
+
3023
3188
  msgid "Immediate"
3024
3189
  msgstr ""
3025
3190
 
@@ -3164,9 +3329,6 @@ msgstr ""
3164
3329
  msgid "Index package groups"
3165
3330
  msgstr ""
3166
3331
 
3167
- msgid "Indicate the source type."
3168
- msgstr ""
3169
-
3170
3332
  msgid "Informable Type must be one of the following [ %{list} ]"
3171
3333
  msgstr ""
3172
3334
 
@@ -3236,12 +3398,15 @@ msgstr ""
3236
3398
  msgid "Installable"
3237
3399
  msgstr ""
3238
3400
 
3239
- msgid "Installable errata"
3401
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3240
3402
  msgstr ""
3241
3403
 
3242
3404
  msgid "Installable errata from content view"
3243
3405
  msgstr ""
3244
3406
 
3407
+ msgid "Installable updates"
3408
+ msgstr ""
3409
+
3245
3410
  msgid "Installation of errata requested: %{errata}"
3246
3411
  msgstr ""
3247
3412
 
@@ -3302,9 +3467,6 @@ msgstr ""
3302
3467
  msgid "Invalid"
3303
3468
  msgstr ""
3304
3469
 
3305
- msgid "Invalid SSL CA certificate given for CDN"
3306
- msgstr ""
3307
-
3308
3470
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3309
3471
  msgstr ""
3310
3472
 
@@ -3353,6 +3515,12 @@ msgstr ""
3353
3515
  msgid "Invalid params provided - date_type must be one of %s"
3354
3516
  msgstr ""
3355
3517
 
3518
+ msgid "Invalid params provided - with_content must be one of %s"
3519
+ msgstr ""
3520
+
3521
+ msgid "Invalid path provided. Content can be only imported from file system. "
3522
+ msgstr ""
3523
+
3356
3524
  msgid "Invalid release version: [%s]"
3357
3525
  msgstr ""
3358
3526
 
@@ -3374,6 +3542,9 @@ msgstr ""
3374
3542
  msgid "Issued from"
3375
3543
  msgstr ""
3376
3544
 
3545
+ msgid "Items will appear here when a filter rule is added."
3546
+ msgstr ""
3547
+
3377
3548
  msgid "Job '${description}' completed"
3378
3549
  msgstr ""
3379
3550
 
@@ -3449,15 +3620,18 @@ msgstr ""
3449
3620
  msgid "Label of the content view"
3450
3621
  msgstr ""
3451
3622
 
3452
- msgid "Last Refresh"
3623
+ msgid "Last check-in:"
3453
3624
  msgstr ""
3454
3625
 
3455
- msgid "Last check-in:"
3626
+ msgid "Last checkin"
3456
3627
  msgstr ""
3457
3628
 
3458
3629
  msgid "Last published"
3459
3630
  msgstr ""
3460
3631
 
3632
+ msgid "Last refresh"
3633
+ msgstr ""
3634
+
3461
3635
  msgid "Last refresh :"
3462
3636
  msgstr ""
3463
3637
 
@@ -3476,6 +3650,9 @@ msgstr ""
3476
3650
  msgid "Learn more about adding Subscription Manifests"
3477
3651
  msgstr ""
3478
3652
 
3653
+ msgid "Legacy content host UI"
3654
+ msgstr ""
3655
+
3479
3656
  msgid "Less than"
3480
3657
  msgstr ""
3481
3658
 
@@ -3542,6 +3719,9 @@ msgstr ""
3542
3719
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3543
3720
  msgstr ""
3544
3721
 
3722
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3723
+ msgstr ""
3724
+
3545
3725
  msgid "Limit to environment"
3546
3726
  msgstr ""
3547
3727
 
@@ -3572,6 +3752,9 @@ msgstr ""
3572
3752
  msgid "List all organizations"
3573
3753
  msgstr ""
3574
3754
 
3755
+ msgid "List alternate content sources."
3756
+ msgstr ""
3757
+
3575
3758
  msgid "List an activation key's subscriptions"
3576
3759
  msgstr ""
3577
3760
 
@@ -3644,9 +3827,6 @@ msgstr ""
3644
3827
  msgid "List of alternate content source IDs"
3645
3828
  msgstr ""
3646
3829
 
3647
- msgid "List of alternate_content_sources"
3648
- msgstr ""
3649
-
3650
3830
  msgid "List of component content view version ids for composite views"
3651
3831
  msgstr ""
3652
3832
 
@@ -3737,6 +3917,9 @@ msgstr ""
3737
3917
  msgid "List of repository ids"
3738
3918
  msgstr ""
3739
3919
 
3920
+ msgid "List of resources types that will be automatically associated"
3921
+ msgstr ""
3922
+
3740
3923
  msgid "List of subscription products in a subscription"
3741
3924
  msgstr ""
3742
3925
 
@@ -3941,6 +4124,9 @@ msgstr ""
3941
4124
  msgid "Multi-entitlement"
3942
4125
  msgstr ""
3943
4126
 
4127
+ msgid "Multiple environments are not supported."
4128
+ msgstr ""
4129
+
3944
4130
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3945
4131
  msgstr ""
3946
4132
 
@@ -3953,11 +4139,19 @@ msgstr ""
3953
4139
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3954
4140
  msgstr ""
3955
4141
 
4142
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4143
+ msgstr ""
4144
+
3956
4145
  msgid ""
3957
4146
  "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"
3958
4147
  " %{repos}"
3959
4148
  msgstr ""
3960
4149
 
4150
+ msgid ""
4151
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4152
+ " %{repos}"
4153
+ msgstr ""
4154
+
3961
4155
  msgid ""
3962
4156
  "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"
3963
4157
  " %{repos}"
@@ -3969,6 +4163,12 @@ msgstr ""
3969
4163
  msgid "Name"
3970
4164
  msgstr ""
3971
4165
 
4166
+ msgid "Name and label of default content view should not be changed"
4167
+ msgstr ""
4168
+
4169
+ msgid "Name is a required parameter."
4170
+ msgstr ""
4171
+
3972
4172
  msgid "Name of new activation key"
3973
4173
  msgstr ""
3974
4174
 
@@ -4014,6 +4214,12 @@ msgstr ""
4014
4214
  msgid "Never Synced"
4015
4215
  msgstr ""
4016
4216
 
4217
+ msgid "Never checked in"
4218
+ msgstr ""
4219
+
4220
+ msgid "Never registered"
4221
+ msgstr ""
4222
+
4017
4223
  msgid "New Errata"
4018
4224
  msgstr ""
4019
4225
 
@@ -4107,6 +4313,9 @@ msgstr ""
4107
4313
  msgid "No content ids provided"
4108
4314
  msgstr ""
4109
4315
 
4316
+ msgid "No content in selected versions."
4317
+ msgstr ""
4318
+
4110
4319
  msgid "No content view history events found."
4111
4320
  msgstr ""
4112
4321
 
@@ -4158,6 +4367,9 @@ msgstr ""
4158
4367
  msgid "No host collections found."
4159
4368
  msgstr ""
4160
4369
 
4370
+ msgid "No host collections yet"
4371
+ msgstr ""
4372
+
4161
4373
  msgid "No hosts have been specified."
4162
4374
  msgstr ""
4163
4375
 
@@ -4182,6 +4394,9 @@ msgstr ""
4182
4394
  msgid "No matching "
4183
4395
  msgstr ""
4184
4396
 
4397
+ msgid "No matching ${name} found."
4398
+ msgstr ""
4399
+
4185
4400
  msgid "No matching ${selectedContentType} found"
4186
4401
  msgstr ""
4187
4402
 
@@ -4272,6 +4487,9 @@ msgstr ""
4272
4487
  msgid "No products are enabled."
4273
4488
  msgstr ""
4274
4489
 
4490
+ msgid "No profiles to show"
4491
+ msgstr ""
4492
+
4275
4493
  msgid "No pulp workers running."
4276
4494
  msgstr ""
4277
4495
 
@@ -4407,6 +4625,9 @@ msgstr ""
4407
4625
  msgid "On Demand"
4408
4626
  msgstr ""
4409
4627
 
4628
+ msgid "On the RHUA Instance, check the available repositories."
4629
+ msgstr ""
4630
+
4410
4631
  msgid "On-disk location for exported repositories"
4411
4632
  msgstr ""
4412
4633
 
@@ -4785,6 +5006,9 @@ msgstr ""
4785
5006
  msgid "Please wait while the task starts.."
4786
5007
  msgstr ""
4787
5008
 
5009
+ msgid "Please wait..."
5010
+ msgstr ""
5011
+
4788
5012
  msgid "Policy to set for mirroring content. Must be one of %s."
4789
5013
  msgstr ""
4790
5014
 
@@ -4874,9 +5098,18 @@ msgstr ""
4874
5098
  msgid "Product: '%{product}', Repository: '%{repository}'"
4875
5099
  msgstr ""
4876
5100
 
5101
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5102
+ msgstr ""
5103
+
4877
5104
  msgid "Products"
4878
5105
  msgstr ""
4879
5106
 
5107
+ msgid "Products updated."
5108
+ msgstr ""
5109
+
5110
+ msgid "Profiles"
5111
+ msgstr ""
5112
+
4880
5113
  msgid "Promote"
4881
5114
  msgstr ""
4882
5115
 
@@ -5054,6 +5287,9 @@ msgstr ""
5054
5287
  msgid "RH Repos"
5055
5288
  msgstr ""
5056
5289
 
5290
+ msgid "RHUI"
5291
+ msgstr ""
5292
+
5057
5293
  msgid "RPM"
5058
5294
  msgstr ""
5059
5295
 
@@ -5066,6 +5302,12 @@ msgstr ""
5066
5302
  msgid "RPM name"
5067
5303
  msgstr ""
5068
5304
 
5305
+ msgid "RPM package groups"
5306
+ msgstr ""
5307
+
5308
+ msgid "RPM package updates"
5309
+ msgstr ""
5310
+
5069
5311
  msgid "RPM packages"
5070
5312
  msgstr ""
5071
5313
 
@@ -5132,6 +5374,9 @@ msgstr ""
5132
5374
  msgid "Red Hat content will be consumed from the {type}."
5133
5375
  msgstr ""
5134
5376
 
5377
+ msgid "Red Hat content will be consumed from {type}."
5378
+ msgstr ""
5379
+
5135
5380
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5136
5381
  msgstr ""
5137
5382
 
@@ -5159,7 +5404,7 @@ msgstr ""
5159
5404
  msgid "Refresh alternate content sources"
5160
5405
  msgstr ""
5161
5406
 
5162
- msgid "Refresh an alternate content source"
5407
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5163
5408
  msgstr ""
5164
5409
 
5165
5410
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5177,6 +5422,9 @@ msgstr ""
5177
5422
  msgid "Register host '%s' before attaching subscriptions"
5178
5423
  msgstr ""
5179
5424
 
5425
+ msgid "Registered"
5426
+ msgstr ""
5427
+
5180
5428
  msgid "Registered by"
5181
5429
  msgstr ""
5182
5430
 
@@ -5303,7 +5551,7 @@ msgstr ""
5303
5551
  msgid "Remove one or more host collections from one or more hosts"
5304
5552
  msgstr ""
5305
5553
 
5306
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5554
+ msgid "Remove one or more subscriptions from an upstream manifest"
5307
5555
  msgstr ""
5308
5556
 
5309
5557
  msgid "Remove package"
@@ -5354,6 +5602,9 @@ msgstr ""
5354
5602
  msgid "Removing Package..."
5355
5603
  msgstr ""
5356
5604
 
5605
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5606
+ msgstr ""
5607
+
5357
5608
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5358
5609
  msgstr ""
5359
5610
 
@@ -5594,9 +5845,6 @@ msgstr ""
5594
5845
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5595
5846
  msgstr ""
5596
5847
 
5597
- msgid "Review Details"
5598
- msgstr ""
5599
-
5600
5848
  msgid "Review affected environment"
5601
5849
  msgstr ""
5602
5850
 
@@ -5606,6 +5854,9 @@ msgstr ""
5606
5854
  msgid "Review details"
5607
5855
  msgstr ""
5608
5856
 
5857
+ msgid "Review the information below and click "
5858
+ msgstr ""
5859
+
5609
5860
  msgid "Review your currently selected changes for "
5610
5861
  msgstr ""
5611
5862
 
@@ -5645,9 +5896,6 @@ msgstr ""
5645
5896
  msgid "SSL CA certificate"
5646
5897
  msgstr ""
5647
5898
 
5648
- msgid "SSL Cert"
5649
- msgstr ""
5650
-
5651
5899
  msgid "SSL client certificate"
5652
5900
  msgstr ""
5653
5901
 
@@ -5777,6 +6025,9 @@ msgstr ""
5777
6025
  msgid "Select an environment above"
5778
6026
  msgstr ""
5779
6027
 
6028
+ msgid "Select an option"
6029
+ msgstr ""
6030
+
5780
6031
  msgid "Select an organization"
5781
6032
  msgstr ""
5782
6033
 
@@ -5816,6 +6067,12 @@ msgstr ""
5816
6067
  msgid "Select page"
5817
6068
  msgstr ""
5818
6069
 
6070
+ msgid "Select products"
6071
+ msgstr ""
6072
+
6073
+ msgid "Select products to associate to this source."
6074
+ msgstr ""
6075
+
5819
6076
  msgid "Select row"
5820
6077
  msgstr ""
5821
6078
 
@@ -5933,7 +6190,7 @@ msgstr ""
5933
6190
  msgid "Show an activation key"
5934
6191
  msgstr ""
5935
6192
 
5936
- msgid "Show an alternate content source"
6193
+ msgid "Show an alternate content source."
5937
6194
  msgstr ""
5938
6195
 
5939
6196
  msgid "Show an environment"
@@ -5984,6 +6241,9 @@ msgstr ""
5984
6241
  msgid "Simple Content Access has been enabled for '%{subject}'."
5985
6242
  msgstr ""
5986
6243
 
6244
+ msgid "Simplified"
6245
+ msgstr ""
6246
+
5987
6247
  msgid "Single content view consisting of e.g. repositories"
5988
6248
  msgstr ""
5989
6249
 
@@ -6020,7 +6280,7 @@ msgstr ""
6020
6280
  msgid "Solve dependencies"
6021
6281
  msgstr ""
6022
6282
 
6023
- msgid "Some hosts are ignored!"
6283
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6024
6284
  msgstr ""
6025
6285
 
6026
6286
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6044,13 +6304,13 @@ msgstr ""
6044
6304
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6045
6305
  msgstr ""
6046
6306
 
6047
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6307
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6048
6308
  msgstr ""
6049
6309
 
6050
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6310
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6051
6311
  msgstr ""
6052
6312
 
6053
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6313
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6054
6314
  msgstr ""
6055
6315
 
6056
6316
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6098,10 +6358,13 @@ msgstr ""
6098
6358
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6099
6359
  msgstr ""
6100
6360
 
6361
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6362
+ msgstr ""
6363
+
6101
6364
  msgid "Something went wrong while loading the content views. See the logs for more information"
6102
6365
  msgstr ""
6103
6366
 
6104
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6367
+ msgid "Something went wrong while refreshing alternate content sources: "
6105
6368
  msgstr ""
6106
6369
 
6107
6370
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6116,6 +6379,9 @@ msgstr ""
6116
6379
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6117
6380
  msgstr ""
6118
6381
 
6382
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6383
+ msgstr ""
6384
+
6119
6385
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6120
6386
  msgstr ""
6121
6387
 
@@ -6134,9 +6400,33 @@ msgstr ""
6134
6400
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6135
6401
  msgstr ""
6136
6402
 
6403
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6404
+ msgstr ""
6405
+
6406
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6407
+ msgstr ""
6408
+
6409
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6410
+ msgstr ""
6411
+
6412
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6413
+ msgstr ""
6414
+
6137
6415
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6138
6416
  msgstr ""
6139
6417
 
6418
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6419
+ msgstr ""
6420
+
6421
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6422
+ msgstr ""
6423
+
6424
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6425
+ msgstr ""
6426
+
6427
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6140
6430
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6141
6431
  msgstr ""
6142
6432
 
@@ -6221,9 +6511,6 @@ msgstr ""
6221
6511
  msgid "Subscription"
6222
6512
  msgstr ""
6223
6513
 
6224
- msgid "Subscription Allocation"
6225
- msgstr ""
6226
-
6227
6514
  msgid "Subscription Details"
6228
6515
  msgstr ""
6229
6516
 
@@ -6281,6 +6568,9 @@ msgstr ""
6281
6568
  msgid "Subscription not found"
6282
6569
  msgstr ""
6283
6570
 
6571
+ msgid "Subscription status"
6572
+ msgstr ""
6573
+
6284
6574
  msgid "Subscription was not persisted - %{error_message}"
6285
6575
  msgstr ""
6286
6576
 
@@ -6326,6 +6616,9 @@ msgstr ""
6326
6616
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6327
6617
  msgstr ""
6328
6618
 
6619
+ msgid "Successfully synced capsule."
6620
+ msgstr ""
6621
+
6329
6622
  msgid "Successfully synchronized."
6330
6623
  msgstr ""
6331
6624
 
@@ -6407,6 +6700,9 @@ msgstr ""
6407
6700
  msgid "Sync plan identifier to attach"
6408
6701
  msgstr ""
6409
6702
 
6703
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6704
+ msgstr ""
6705
+
6410
6706
  msgid "Sync state"
6411
6707
  msgstr ""
6412
6708
 
@@ -6497,9 +6793,6 @@ msgstr ""
6497
6793
  msgid "The Alternate Content Source type"
6498
6794
  msgstr ""
6499
6795
 
6500
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6501
- msgstr ""
6502
-
6503
6796
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6504
6797
  msgstr ""
6505
6798
 
@@ -6551,9 +6844,6 @@ msgstr ""
6551
6844
  msgid "The field to sort the data by. Defaults to the created date."
6552
6845
  msgstr ""
6553
6846
 
6554
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6555
- msgstr ""
6556
-
6557
6847
  msgid "The following hosts have errata that apply to them: "
6558
6848
  msgstr ""
6559
6849
 
@@ -6580,6 +6870,9 @@ msgstr ""
6580
6870
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6581
6871
  msgstr ""
6582
6872
 
6873
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6874
+ msgstr ""
6875
+
6583
6876
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6584
6877
  msgstr ""
6585
6878
 
@@ -6624,6 +6917,9 @@ msgstr ""
6624
6917
  msgid "The port used by Pulp Crane to provide Docker Registries"
6625
6918
  msgstr ""
6626
6919
 
6920
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6921
+ msgstr ""
6922
+
6627
6923
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6628
6924
  msgstr ""
6629
6925
 
@@ -6669,13 +6965,19 @@ msgstr ""
6669
6965
  msgid "The token key to use for authentication."
6670
6966
  msgstr ""
6671
6967
 
6968
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6969
+ msgstr ""
6970
+
6971
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6972
+ msgstr ""
6973
+
6672
6974
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6673
6975
  msgstr ""
6674
6976
 
6675
6977
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6676
6978
  msgstr ""
6677
6979
 
6678
- msgid "There are no Subscription Allocations to display"
6980
+ msgid "There are no Manifests to display"
6679
6981
  msgstr ""
6680
6982
 
6681
6983
  msgid "There are no Subscriptions to display"
@@ -6747,6 +7049,9 @@ msgstr ""
6747
7049
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6748
7050
  msgstr ""
6749
7051
 
7052
+ 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."
7053
+ msgstr ""
7054
+
6750
7055
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6751
7056
  msgstr ""
6752
7057
 
@@ -6786,7 +7091,7 @@ msgstr ""
6786
7091
  msgid "This is disabled because a manifest task is in progress"
6787
7092
  msgstr ""
6788
7093
 
6789
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7094
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6790
7095
  msgstr ""
6791
7096
 
6792
7097
  msgid "This is disabled because no manifest exists"
@@ -6855,6 +7160,9 @@ msgstr ""
6855
7160
  msgid "Title"
6856
7161
  msgstr ""
6857
7162
 
7163
+ msgid "To get started, add this host to a host collection."
7164
+ msgstr ""
7165
+
6858
7166
  msgid "Toggling Simple Content Access will refresh your manifest."
6859
7167
  msgstr ""
6860
7168
 
@@ -6897,6 +7205,9 @@ msgstr ""
6897
7205
  msgid "Traces will be shown here to a user with the appropriate permissions."
6898
7206
  msgstr ""
6899
7207
 
7208
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7209
+ msgstr ""
7210
+
6900
7211
  msgid "Trigger an auto-attach of subscriptions"
6901
7212
  msgstr ""
6902
7213
 
@@ -6927,12 +7238,18 @@ msgstr ""
6927
7238
  msgid "Type of content: \"cert\", \"gpg_key\""
6928
7239
  msgstr ""
6929
7240
 
7241
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7242
+ msgstr ""
7243
+
6930
7244
  msgid "URL"
6931
7245
  msgstr ""
6932
7246
 
6933
7247
  msgid "URL and paths"
6934
7248
  msgstr ""
6935
7249
 
7250
+ msgid "URL and subpaths"
7251
+ msgstr ""
7252
+
6936
7253
  msgid "URL needs to have a trailing /"
6937
7254
  msgstr ""
6938
7255
 
@@ -7134,7 +7451,7 @@ msgstr ""
7134
7451
  msgid "Update an activation key"
7135
7452
  msgstr ""
7136
7453
 
7137
- msgid "Update an alternate content source"
7454
+ msgid "Update an alternate content source."
7138
7455
  msgstr ""
7139
7456
 
7140
7457
  msgid "Update an environment"
@@ -7341,6 +7658,12 @@ msgstr ""
7341
7658
  msgid "Usage type"
7342
7659
  msgstr ""
7343
7660
 
7661
+ msgid "Use HTTP Proxies"
7662
+ msgstr ""
7663
+
7664
+ msgid "Use HTTP proxies"
7665
+ msgstr ""
7666
+
7344
7667
  msgid "Use remote execution by default"
7345
7668
  msgstr ""
7346
7669
 
@@ -7416,6 +7739,12 @@ msgstr ""
7416
7739
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7417
7740
  msgstr ""
7418
7741
 
7742
+ msgid "Version ${versionOne}"
7743
+ msgstr ""
7744
+
7745
+ msgid "Version ${versionTwo}"
7746
+ msgstr ""
7747
+
7419
7748
  msgid "Version details updated."
7420
7749
  msgstr ""
7421
7750
 
@@ -7428,6 +7757,9 @@ msgstr ""
7428
7757
  msgid "Versions "
7429
7758
  msgstr ""
7430
7759
 
7760
+ msgid "Versions to compare"
7761
+ msgstr ""
7762
+
7431
7763
  msgid "Versions to exclusively include in the action"
7432
7764
  msgstr ""
7433
7765
 
@@ -7443,6 +7775,9 @@ msgstr ""
7443
7775
  msgid "View a report of the affected hosts"
7444
7776
  msgstr ""
7445
7777
 
7778
+ msgid "View by"
7779
+ msgstr ""
7780
+
7446
7781
  msgid "View matching content"
7447
7782
  msgstr ""
7448
7783
 
@@ -7506,6 +7841,9 @@ msgstr ""
7506
7841
  msgid "Whether to include available content attribute in results"
7507
7842
  msgstr ""
7508
7843
 
7844
+ msgid "Whether to turn on Simple Content Access for the organization."
7845
+ msgstr ""
7846
+
7509
7847
  msgid "Workers"
7510
7848
  msgstr ""
7511
7849
 
@@ -7602,6 +7940,9 @@ msgstr ""
7602
7940
  msgid "Your search returned no matching "
7603
7941
  msgstr ""
7604
7942
 
7943
+ msgid "Your search returned no matching ${name}."
7944
+ msgstr ""
7945
+
7605
7946
  msgid "Your search returned no matching DEBs."
7606
7947
  msgstr ""
7607
7948
 
@@ -7626,6 +7967,9 @@ msgstr ""
7626
7967
  msgid "a content unit"
7627
7968
  msgstr ""
7628
7969
 
7970
+ msgid "a custom CDN URL"
7971
+ msgstr ""
7972
+
7629
7973
  msgid "a deb package"
7630
7974
  msgstr ""
7631
7975
 
@@ -7797,9 +8141,6 @@ msgstr ""
7797
8141
  msgid "content release version"
7798
8142
  msgstr ""
7799
8143
 
7800
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7801
- msgstr ""
7802
-
7803
8144
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7804
8145
  msgstr ""
7805
8146
 
@@ -8073,9 +8414,6 @@ msgstr ""
8073
8414
  msgid "label of the repository"
8074
8415
  msgstr ""
8075
8416
 
8076
- msgid "limit to only repositories of this type"
8077
- msgstr ""
8078
-
8079
8417
  msgid "limit to only repositories with this download policy"
8080
8418
  msgstr ""
8081
8419
 
@@ -8193,9 +8531,6 @@ msgstr ""
8193
8531
  msgid "of environment must be unique within one organization"
8194
8532
  msgstr ""
8195
8533
 
8196
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8197
- msgstr ""
8198
-
8199
8534
  msgid "only show the repositories readable by this user with this username"
8200
8535
  msgstr ""
8201
8536
 
@@ -8379,9 +8714,6 @@ msgstr ""
8379
8714
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8380
8715
  msgstr ""
8381
8716
 
8382
- msgid "type of repo"
8383
- msgstr ""
8384
-
8385
8717
  msgid "types of filters"
8386
8718
  msgstr ""
8387
8719