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/pt/katello.po CHANGED
@@ -45,6 +45,12 @@ msgstr ""
45
45
  msgid " RPMs"
46
46
  msgstr ""
47
47
 
48
+ msgid " The base path can be a web address or a filesystem location."
49
+ msgstr ""
50
+
51
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
52
+ msgstr ""
53
+
48
54
  msgid " View task details "
49
55
  msgstr ""
50
56
 
@@ -75,12 +81,18 @@ msgstr ""
75
81
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
76
82
  msgstr ""
77
83
 
84
+ msgid " or any step on the left."
85
+ msgstr ""
86
+
78
87
  msgid " to manage and promote content views, or select a different environment."
79
88
  msgstr ""
80
89
 
81
90
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
82
91
  msgstr ""
83
92
 
93
+ msgid "${option}"
94
+ msgstr ""
95
+
84
96
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
85
97
  msgstr ""
86
98
 
@@ -323,6 +335,24 @@ msgstr ""
323
335
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
324
336
  msgstr ""
325
337
 
338
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
339
+ msgstr ""
340
+
341
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
342
+ msgstr ""
343
+
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
345
+ msgstr ""
346
+
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
348
+ msgstr ""
349
+
350
+ 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. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
354
+ msgstr ""
355
+
326
356
  msgid "(Orphaned)"
327
357
  msgstr ""
328
358
 
@@ -542,10 +572,10 @@ msgstr ""
542
572
  msgid "Add subscriptions to one or more hosts"
543
573
  msgstr ""
544
574
 
545
- msgid "Add to this filter using the 'Add Deb rule' button."
575
+ msgid "Add to a host collection"
546
576
  msgstr ""
547
577
 
548
- msgid "Add to this filter using the 'Add RPM rule' button."
578
+ msgid "Add to this filter using the 'Add Deb rule' button."
549
579
  msgstr ""
550
580
 
551
581
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -605,6 +635,9 @@ msgstr ""
605
635
  msgid "All subpaths must have a slash at the end and none at the front"
606
636
  msgstr ""
607
637
 
638
+ msgid "All up to date"
639
+ msgstr ""
640
+
608
641
  msgid "All versions"
609
642
  msgstr ""
610
643
 
@@ -632,6 +665,9 @@ msgstr ""
632
665
  msgid "Alter a host's host collections"
633
666
  msgstr ""
634
667
 
668
+ msgid "Alternate Content Source HTTP Proxy"
669
+ msgstr ""
670
+
635
671
  msgid "Alternate Content Sources"
636
672
  msgstr ""
637
673
 
@@ -644,7 +680,10 @@ msgstr ""
644
680
  msgid "Alternate content source deleted"
645
681
  msgstr ""
646
682
 
647
- msgid "Alternate content sources"
683
+ msgid "Alternate content source edited"
684
+ msgstr ""
685
+
686
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
648
687
  msgstr ""
649
688
 
650
689
  msgid "Always Use Latest (currently %{version})"
@@ -656,7 +695,7 @@ msgstr ""
656
695
  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."
657
696
  msgstr ""
658
697
 
659
- msgid "An alternate content source can be added by using the \"Add source\" button above."
698
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
660
699
  msgstr ""
661
700
 
662
701
  msgid "An environment is missing a prior"
@@ -693,9 +732,15 @@ msgstr ""
693
732
  msgid "Applicability Batch Size"
694
733
  msgstr ""
695
734
 
735
+ msgid "Applicable"
736
+ msgstr ""
737
+
696
738
  msgid "Applicable Content Hosts"
697
739
  msgstr ""
698
740
 
741
+ msgid "Applicable errata apply to at least one package installed on the host."
742
+ msgstr ""
743
+
699
744
  msgid "Application"
700
745
  msgstr ""
701
746
 
@@ -872,6 +917,9 @@ msgstr ""
872
917
  msgid "Available Schema Versions"
873
918
  msgstr ""
874
919
 
920
+ msgid "Back"
921
+ msgstr ""
922
+
875
923
  msgid "Backend System Status"
876
924
  msgstr ""
877
925
 
@@ -938,6 +986,12 @@ msgstr ""
938
986
  msgid "Bugs"
939
987
  msgstr ""
940
988
 
989
+ msgid "Bulk alternate content source delete has started."
990
+ msgstr ""
991
+
992
+ msgid "Bulk alternate content source refresh has started."
993
+ msgstr ""
994
+
941
995
  msgid "Bulk generate applicability for host %s"
942
996
  msgstr ""
943
997
 
@@ -947,9 +1001,6 @@ msgstr ""
947
1001
  msgid "Bulk remove versions from a content view and reassign systems and keys"
948
1002
  msgstr ""
949
1003
 
950
- msgid "CA Cert"
951
- msgstr ""
952
-
953
1004
  msgid "CDN Configuration"
954
1005
  msgstr ""
955
1006
 
@@ -1055,6 +1106,9 @@ msgstr ""
1055
1106
  msgid "Cannot add default content view to composite content view"
1056
1107
  msgstr ""
1057
1108
 
1109
+ msgid "Cannot add generated content view versions to composite content view"
1110
+ msgstr ""
1111
+
1058
1112
  msgid "Cannot add repositories to a composite content view"
1059
1113
  msgstr ""
1060
1114
 
@@ -1196,6 +1250,9 @@ msgstr ""
1196
1250
  msgid "Checksum"
1197
1251
  msgstr ""
1198
1252
 
1253
+ msgid "Checksum is a required parameter."
1254
+ msgstr ""
1255
+
1199
1256
  msgid "Checksum of file to upload"
1200
1257
  msgstr ""
1201
1258
 
@@ -1205,6 +1262,9 @@ msgstr ""
1205
1262
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1206
1263
  msgstr ""
1207
1264
 
1265
+ msgid "Choose content credentials if required for this RHUI source."
1266
+ msgstr ""
1267
+
1208
1268
  msgid "Clear any previous registration and run subscription-manager with --force."
1209
1269
  msgstr ""
1210
1270
 
@@ -1220,9 +1280,6 @@ msgstr ""
1220
1280
  msgid "Click {update} below to save changes."
1221
1281
  msgstr ""
1222
1282
 
1223
- msgid "Client key"
1224
- msgstr ""
1225
-
1226
1283
  msgid "Clone"
1227
1284
  msgstr ""
1228
1285
 
@@ -1238,6 +1295,9 @@ msgstr ""
1238
1295
  msgid "Combined Profile Update for %s"
1239
1296
  msgstr ""
1240
1297
 
1298
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1299
+ msgstr ""
1300
+
1241
1301
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1242
1302
  msgstr ""
1243
1303
 
@@ -1247,12 +1307,18 @@ msgstr ""
1247
1307
  msgid "Comma-separated list of tags to sync for a container image repository"
1248
1308
  msgstr ""
1249
1309
 
1310
+ msgid "Compare"
1311
+ msgstr ""
1312
+
1250
1313
  msgid "Component"
1251
1314
  msgstr ""
1252
1315
 
1253
1316
  msgid "Component Content View"
1254
1317
  msgstr ""
1255
1318
 
1319
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1320
+ msgstr ""
1321
+
1256
1322
  msgid "Components"
1257
1323
  msgstr ""
1258
1324
 
@@ -1403,6 +1469,9 @@ msgstr ""
1403
1469
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1404
1470
  msgstr ""
1405
1471
 
1472
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1473
+ msgstr ""
1474
+
1406
1475
  msgid "Content View and Environment not set for registration."
1407
1476
  msgstr ""
1408
1477
 
@@ -1415,6 +1484,9 @@ msgstr ""
1415
1484
  msgid "Content Views"
1416
1485
  msgstr ""
1417
1486
 
1487
+ msgid "Content cannot be imported into a Composite Content View. "
1488
+ msgstr ""
1489
+
1418
1490
  msgid "Content credential"
1419
1491
  msgstr ""
1420
1492
 
@@ -1439,6 +1511,9 @@ msgstr ""
1439
1511
  msgid "Content override search parameters"
1440
1512
  msgstr ""
1441
1513
 
1514
+ msgid "Content source"
1515
+ msgstr ""
1516
+
1442
1517
  msgid "Content source ID"
1443
1518
  msgstr ""
1444
1519
 
@@ -1505,6 +1580,9 @@ msgstr ""
1505
1580
  msgid "Content views"
1506
1581
  msgstr ""
1507
1582
 
1583
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1584
+ msgstr ""
1585
+
1508
1586
  msgid "Content_Host_Status"
1509
1587
  msgstr ""
1510
1588
 
@@ -1646,6 +1724,9 @@ msgstr ""
1646
1724
  msgid "Couldn't find product with id '%s'"
1647
1725
  msgstr ""
1648
1726
 
1727
+ msgid "Couldn't find products with id '%s'"
1728
+ msgstr ""
1729
+
1649
1730
  msgid "Couldn't find repository '%s'"
1650
1731
  msgstr ""
1651
1732
 
@@ -1715,10 +1796,10 @@ msgstr ""
1715
1796
  msgid "Create a sync plan"
1716
1797
  msgstr ""
1717
1798
 
1718
- msgid "Create an ACS"
1799
+ msgid "Create an activation key"
1719
1800
  msgstr ""
1720
1801
 
1721
- msgid "Create an activation key"
1802
+ 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."
1722
1803
  msgstr ""
1723
1804
 
1724
1805
  msgid "Create an environment"
@@ -1730,6 +1811,9 @@ msgstr ""
1730
1811
  msgid "Create an upload request"
1731
1812
  msgstr ""
1732
1813
 
1814
+ msgid "Create content credentials with the generated SSL certificate and key."
1815
+ msgstr ""
1816
+
1733
1817
  msgid "Create content view"
1734
1818
  msgstr ""
1735
1819
 
@@ -1769,6 +1853,9 @@ msgstr ""
1769
1853
  msgid "Custom"
1770
1854
  msgstr ""
1771
1855
 
1856
+ msgid "Custom CDN"
1857
+ msgstr ""
1858
+
1772
1859
  msgid "Custom Content Repositories"
1773
1860
  msgstr ""
1774
1861
 
@@ -1784,6 +1871,9 @@ msgstr ""
1784
1871
  msgid "DEB name"
1785
1872
  msgstr ""
1786
1873
 
1874
+ msgid "DEB package updates"
1875
+ msgstr ""
1876
+
1787
1877
  msgid "Database connection"
1788
1878
  msgstr ""
1789
1879
 
@@ -1919,6 +2009,12 @@ msgstr ""
1919
2009
  msgid "Default user data for new Operating Systems created from synced content"
1920
2010
  msgstr ""
1921
2011
 
2012
+ msgid "Define RHUI repository paths with guided steps."
2013
+ msgstr ""
2014
+
2015
+ msgid "Define repositories structured under a common web or filesystem path."
2016
+ msgstr ""
2017
+
1922
2018
  msgid "Delete"
1923
2019
  msgstr ""
1924
2020
 
@@ -2057,7 +2153,7 @@ msgstr ""
2057
2153
  msgid "Destroy an activation key"
2058
2154
  msgstr ""
2059
2155
 
2060
- msgid "Destroy an alternate content source"
2156
+ msgid "Destroy an alternate content source."
2061
2157
  msgstr ""
2062
2158
 
2063
2159
  msgid "Destroy an environment"
@@ -2120,6 +2216,9 @@ msgstr ""
2120
2216
  msgid "Discover Repositories"
2121
2217
  msgstr ""
2122
2218
 
2219
+ msgid "Distribute archived content view versions"
2220
+ msgstr ""
2221
+
2123
2222
  msgid "Do not include this array of content views"
2124
2223
  msgstr ""
2125
2224
 
@@ -2153,21 +2252,51 @@ msgstr ""
2153
2252
  msgid "Edit"
2154
2253
  msgstr ""
2155
2254
 
2255
+ msgid "Edit ACS"
2256
+ msgstr ""
2257
+
2258
+ msgid "Edit ACS credentials"
2259
+ msgstr ""
2260
+
2261
+ msgid "Edit ACS details"
2262
+ msgstr ""
2263
+
2264
+ msgid "Edit ACS products"
2265
+ msgstr ""
2266
+
2267
+ msgid "Edit ACS smart proxies"
2268
+ msgstr ""
2269
+
2156
2270
  msgid "Edit RPM rule"
2157
2271
  msgstr ""
2158
2272
 
2273
+ msgid "Edit URL and subpaths"
2274
+ msgstr ""
2275
+
2159
2276
  msgid "Edit content view assignment"
2160
2277
  msgstr ""
2161
2278
 
2279
+ msgid "Edit credentials"
2280
+ msgstr ""
2281
+
2282
+ msgid "Edit details"
2283
+ msgstr ""
2284
+
2162
2285
  msgid "Edit filter rule"
2163
2286
  msgstr ""
2164
2287
 
2165
2288
  msgid "Edit package filter rule"
2166
2289
  msgstr ""
2167
2290
 
2291
+ msgid "Edit products"
2292
+ msgstr ""
2293
+
2168
2294
  msgid "Edit rule"
2169
2295
  msgstr ""
2170
2296
 
2297
+ msgid "Edit smart proxies"
2298
+ msgstr ""
2299
+
2171
2300
  msgid "Edit system purpose attributes"
2172
2301
  msgstr ""
2173
2302
 
@@ -2192,6 +2321,9 @@ msgstr ""
2192
2321
  msgid "Either set the latest content view or the content view version. Cannot set both"
2193
2322
  msgstr ""
2194
2323
 
2324
+ msgid "Empty content view versions"
2325
+ msgstr ""
2326
+
2195
2327
  msgid "Enable"
2196
2328
  msgstr ""
2197
2329
 
@@ -2210,6 +2342,9 @@ msgstr ""
2210
2342
  msgid "Enable a repository from the set"
2211
2343
  msgstr ""
2212
2344
 
2345
+ msgid "Enable repository sets"
2346
+ msgstr ""
2347
+
2213
2348
  msgid "Enable simple content access for a manifest"
2214
2349
  msgstr ""
2215
2350
 
@@ -2252,6 +2387,9 @@ msgstr ""
2252
2387
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2253
2388
  msgstr ""
2254
2389
 
2390
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2391
+ msgstr ""
2392
+
2255
2393
  msgid "Entitlements"
2256
2394
  msgstr ""
2257
2395
 
@@ -2508,6 +2646,9 @@ msgstr ""
2508
2646
  msgid "Filter products by sync plan id"
2509
2647
  msgstr ""
2510
2648
 
2649
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2650
+ msgstr ""
2651
+
2511
2652
  msgid "Filter rule added"
2512
2653
  msgstr ""
2513
2654
 
@@ -2544,6 +2685,9 @@ msgstr ""
2544
2685
  msgid "Filters will appear here when the filter is created."
2545
2686
  msgstr ""
2546
2687
 
2688
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2689
+ msgstr ""
2690
+
2547
2691
  msgid "Finish"
2548
2692
  msgstr ""
2549
2693
 
@@ -2603,6 +2747,9 @@ msgstr ""
2603
2747
  msgid "GPG Key URL"
2604
2748
  msgstr ""
2605
2749
 
2750
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2751
+ msgstr ""
2752
+
2606
2753
  msgid "Generate and Download"
2607
2754
  msgstr ""
2608
2755
 
@@ -2813,6 +2960,9 @@ msgstr ""
2813
2960
  msgid "Hosts"
2814
2961
  msgstr ""
2815
2962
 
2963
+ msgid "Hosts to update"
2964
+ msgstr ""
2965
+
2816
2966
  msgid "Hosts with Installable Errata"
2817
2967
  msgstr ""
2818
2968
 
@@ -2891,6 +3041,9 @@ msgstr ""
2891
3041
  msgid "ID: %s doesn't exist "
2892
3042
  msgstr ""
2893
3043
 
3044
+ 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."
3045
+ msgstr ""
3046
+
2894
3047
  msgid "Id of a deb package to find repositories that contain the deb"
2895
3048
  msgstr ""
2896
3049
 
@@ -2906,6 +3059,9 @@ msgstr ""
2906
3059
  msgid "Id of an erratum to find repositories that contain the erratum"
2907
3060
  msgstr ""
2908
3061
 
3062
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3063
+ msgstr ""
3064
+
2909
3065
  msgid "Id of the content host"
2910
3066
  msgstr ""
2911
3067
 
@@ -2978,6 +3134,9 @@ msgstr ""
2978
3134
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2979
3135
  msgstr ""
2980
3136
 
3137
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3138
+ msgstr ""
3139
+
2981
3140
  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."
2982
3141
  msgstr ""
2983
3142
 
@@ -2990,6 +3149,9 @@ msgstr ""
2990
3149
  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."
2991
3150
  msgstr ""
2992
3151
 
3152
+ 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/...'."
3153
+ msgstr ""
3154
+
2993
3155
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2994
3156
  msgstr ""
2995
3157
 
@@ -3023,6 +3185,9 @@ msgstr ""
3023
3185
  msgid "Ignore subscriptions that are unavailable to the specified host"
3024
3186
  msgstr ""
3025
3187
 
3188
+ msgid "Ignored hosts"
3189
+ msgstr ""
3190
+
3026
3191
  msgid "Immediate"
3027
3192
  msgstr ""
3028
3193
 
@@ -3167,9 +3332,6 @@ msgstr ""
3167
3332
  msgid "Index package groups"
3168
3333
  msgstr ""
3169
3334
 
3170
- msgid "Indicate the source type."
3171
- msgstr ""
3172
-
3173
3335
  msgid "Informable Type must be one of the following [ %{list} ]"
3174
3336
  msgstr ""
3175
3337
 
@@ -3239,12 +3401,15 @@ msgstr ""
3239
3401
  msgid "Installable"
3240
3402
  msgstr ""
3241
3403
 
3242
- msgid "Installable errata"
3404
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3243
3405
  msgstr ""
3244
3406
 
3245
3407
  msgid "Installable errata from content view"
3246
3408
  msgstr ""
3247
3409
 
3410
+ msgid "Installable updates"
3411
+ msgstr ""
3412
+
3248
3413
  msgid "Installation of errata requested: %{errata}"
3249
3414
  msgstr ""
3250
3415
 
@@ -3305,9 +3470,6 @@ msgstr ""
3305
3470
  msgid "Invalid"
3306
3471
  msgstr ""
3307
3472
 
3308
- msgid "Invalid SSL CA certificate given for CDN"
3309
- msgstr ""
3310
-
3311
3473
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3312
3474
  msgstr ""
3313
3475
 
@@ -3356,6 +3518,12 @@ msgstr ""
3356
3518
  msgid "Invalid params provided - date_type must be one of %s"
3357
3519
  msgstr ""
3358
3520
 
3521
+ msgid "Invalid params provided - with_content must be one of %s"
3522
+ msgstr ""
3523
+
3524
+ msgid "Invalid path provided. Content can be only imported from file system. "
3525
+ msgstr ""
3526
+
3359
3527
  msgid "Invalid release version: [%s]"
3360
3528
  msgstr ""
3361
3529
 
@@ -3377,6 +3545,9 @@ msgstr ""
3377
3545
  msgid "Issued from"
3378
3546
  msgstr ""
3379
3547
 
3548
+ msgid "Items will appear here when a filter rule is added."
3549
+ msgstr ""
3550
+
3380
3551
  msgid "Job '${description}' completed"
3381
3552
  msgstr ""
3382
3553
 
@@ -3452,15 +3623,18 @@ msgstr ""
3452
3623
  msgid "Label of the content view"
3453
3624
  msgstr ""
3454
3625
 
3455
- msgid "Last Refresh"
3626
+ msgid "Last check-in:"
3456
3627
  msgstr ""
3457
3628
 
3458
- msgid "Last check-in:"
3629
+ msgid "Last checkin"
3459
3630
  msgstr ""
3460
3631
 
3461
3632
  msgid "Last published"
3462
3633
  msgstr ""
3463
3634
 
3635
+ msgid "Last refresh"
3636
+ msgstr ""
3637
+
3464
3638
  msgid "Last refresh :"
3465
3639
  msgstr ""
3466
3640
 
@@ -3479,6 +3653,9 @@ msgstr ""
3479
3653
  msgid "Learn more about adding Subscription Manifests"
3480
3654
  msgstr ""
3481
3655
 
3656
+ msgid "Legacy content host UI"
3657
+ msgstr ""
3658
+
3482
3659
  msgid "Less than"
3483
3660
  msgstr ""
3484
3661
 
@@ -3545,6 +3722,9 @@ msgstr ""
3545
3722
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3546
3723
  msgstr ""
3547
3724
 
3725
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3726
+ msgstr ""
3727
+
3548
3728
  msgid "Limit to environment"
3549
3729
  msgstr ""
3550
3730
 
@@ -3575,6 +3755,9 @@ msgstr ""
3575
3755
  msgid "List all organizations"
3576
3756
  msgstr ""
3577
3757
 
3758
+ msgid "List alternate content sources."
3759
+ msgstr ""
3760
+
3578
3761
  msgid "List an activation key's subscriptions"
3579
3762
  msgstr ""
3580
3763
 
@@ -3647,9 +3830,6 @@ msgstr ""
3647
3830
  msgid "List of alternate content source IDs"
3648
3831
  msgstr ""
3649
3832
 
3650
- msgid "List of alternate_content_sources"
3651
- msgstr ""
3652
-
3653
3833
  msgid "List of component content view version ids for composite views"
3654
3834
  msgstr ""
3655
3835
 
@@ -3740,6 +3920,9 @@ msgstr ""
3740
3920
  msgid "List of repository ids"
3741
3921
  msgstr ""
3742
3922
 
3923
+ msgid "List of resources types that will be automatically associated"
3924
+ msgstr ""
3925
+
3743
3926
  msgid "List of subscription products in a subscription"
3744
3927
  msgstr ""
3745
3928
 
@@ -3944,6 +4127,9 @@ msgstr ""
3944
4127
  msgid "Multi-entitlement"
3945
4128
  msgstr ""
3946
4129
 
4130
+ msgid "Multiple environments are not supported."
4131
+ msgstr ""
4132
+
3947
4133
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3948
4134
  msgstr ""
3949
4135
 
@@ -3956,11 +4142,19 @@ msgstr ""
3956
4142
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3957
4143
  msgstr ""
3958
4144
 
4145
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4146
+ msgstr ""
4147
+
3959
4148
  msgid ""
3960
4149
  "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"
3961
4150
  " %{repos}"
3962
4151
  msgstr ""
3963
4152
 
4153
+ msgid ""
4154
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4155
+ " %{repos}"
4156
+ msgstr ""
4157
+
3964
4158
  msgid ""
3965
4159
  "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"
3966
4160
  " %{repos}"
@@ -3972,6 +4166,12 @@ msgstr ""
3972
4166
  msgid "Name"
3973
4167
  msgstr ""
3974
4168
 
4169
+ msgid "Name and label of default content view should not be changed"
4170
+ msgstr ""
4171
+
4172
+ msgid "Name is a required parameter."
4173
+ msgstr ""
4174
+
3975
4175
  msgid "Name of new activation key"
3976
4176
  msgstr ""
3977
4177
 
@@ -4017,6 +4217,12 @@ msgstr ""
4017
4217
  msgid "Never Synced"
4018
4218
  msgstr ""
4019
4219
 
4220
+ msgid "Never checked in"
4221
+ msgstr ""
4222
+
4223
+ msgid "Never registered"
4224
+ msgstr ""
4225
+
4020
4226
  msgid "New Errata"
4021
4227
  msgstr ""
4022
4228
 
@@ -4110,6 +4316,9 @@ msgstr ""
4110
4316
  msgid "No content ids provided"
4111
4317
  msgstr ""
4112
4318
 
4319
+ msgid "No content in selected versions."
4320
+ msgstr ""
4321
+
4113
4322
  msgid "No content view history events found."
4114
4323
  msgstr ""
4115
4324
 
@@ -4161,6 +4370,9 @@ msgstr ""
4161
4370
  msgid "No host collections found."
4162
4371
  msgstr ""
4163
4372
 
4373
+ msgid "No host collections yet"
4374
+ msgstr ""
4375
+
4164
4376
  msgid "No hosts have been specified."
4165
4377
  msgstr ""
4166
4378
 
@@ -4185,6 +4397,9 @@ msgstr ""
4185
4397
  msgid "No matching "
4186
4398
  msgstr ""
4187
4399
 
4400
+ msgid "No matching ${name} found."
4401
+ msgstr ""
4402
+
4188
4403
  msgid "No matching ${selectedContentType} found"
4189
4404
  msgstr ""
4190
4405
 
@@ -4275,6 +4490,9 @@ msgstr ""
4275
4490
  msgid "No products are enabled."
4276
4491
  msgstr ""
4277
4492
 
4493
+ msgid "No profiles to show"
4494
+ msgstr ""
4495
+
4278
4496
  msgid "No pulp workers running."
4279
4497
  msgstr ""
4280
4498
 
@@ -4410,6 +4628,9 @@ msgstr ""
4410
4628
  msgid "On Demand"
4411
4629
  msgstr ""
4412
4630
 
4631
+ msgid "On the RHUA Instance, check the available repositories."
4632
+ msgstr ""
4633
+
4413
4634
  msgid "On-disk location for exported repositories"
4414
4635
  msgstr ""
4415
4636
 
@@ -4788,6 +5009,9 @@ msgstr ""
4788
5009
  msgid "Please wait while the task starts.."
4789
5010
  msgstr ""
4790
5011
 
5012
+ msgid "Please wait..."
5013
+ msgstr ""
5014
+
4791
5015
  msgid "Policy to set for mirroring content. Must be one of %s."
4792
5016
  msgstr ""
4793
5017
 
@@ -4877,9 +5101,18 @@ msgstr ""
4877
5101
  msgid "Product: '%{product}', Repository: '%{repository}'"
4878
5102
  msgstr ""
4879
5103
 
5104
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5105
+ msgstr ""
5106
+
4880
5107
  msgid "Products"
4881
5108
  msgstr ""
4882
5109
 
5110
+ msgid "Products updated."
5111
+ msgstr ""
5112
+
5113
+ msgid "Profiles"
5114
+ msgstr ""
5115
+
4883
5116
  msgid "Promote"
4884
5117
  msgstr ""
4885
5118
 
@@ -5057,6 +5290,9 @@ msgstr ""
5057
5290
  msgid "RH Repos"
5058
5291
  msgstr ""
5059
5292
 
5293
+ msgid "RHUI"
5294
+ msgstr ""
5295
+
5060
5296
  msgid "RPM"
5061
5297
  msgstr ""
5062
5298
 
@@ -5069,6 +5305,12 @@ msgstr ""
5069
5305
  msgid "RPM name"
5070
5306
  msgstr ""
5071
5307
 
5308
+ msgid "RPM package groups"
5309
+ msgstr ""
5310
+
5311
+ msgid "RPM package updates"
5312
+ msgstr ""
5313
+
5072
5314
  msgid "RPM packages"
5073
5315
  msgstr ""
5074
5316
 
@@ -5135,6 +5377,9 @@ msgstr ""
5135
5377
  msgid "Red Hat content will be consumed from the {type}."
5136
5378
  msgstr ""
5137
5379
 
5380
+ msgid "Red Hat content will be consumed from {type}."
5381
+ msgstr ""
5382
+
5138
5383
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5139
5384
  msgstr ""
5140
5385
 
@@ -5162,7 +5407,7 @@ msgstr ""
5162
5407
  msgid "Refresh alternate content sources"
5163
5408
  msgstr ""
5164
5409
 
5165
- msgid "Refresh an alternate content source"
5410
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5166
5411
  msgstr ""
5167
5412
 
5168
5413
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5180,6 +5425,9 @@ msgstr ""
5180
5425
  msgid "Register host '%s' before attaching subscriptions"
5181
5426
  msgstr ""
5182
5427
 
5428
+ msgid "Registered"
5429
+ msgstr ""
5430
+
5183
5431
  msgid "Registered by"
5184
5432
  msgstr ""
5185
5433
 
@@ -5306,7 +5554,7 @@ msgstr ""
5306
5554
  msgid "Remove one or more host collections from one or more hosts"
5307
5555
  msgstr ""
5308
5556
 
5309
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5557
+ msgid "Remove one or more subscriptions from an upstream manifest"
5310
5558
  msgstr ""
5311
5559
 
5312
5560
  msgid "Remove package"
@@ -5357,6 +5605,9 @@ msgstr ""
5357
5605
  msgid "Removing Package..."
5358
5606
  msgstr ""
5359
5607
 
5608
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5609
+ msgstr ""
5610
+
5360
5611
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5361
5612
  msgstr ""
5362
5613
 
@@ -5597,9 +5848,6 @@ msgstr ""
5597
5848
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5598
5849
  msgstr ""
5599
5850
 
5600
- msgid "Review Details"
5601
- msgstr ""
5602
-
5603
5851
  msgid "Review affected environment"
5604
5852
  msgstr ""
5605
5853
 
@@ -5609,6 +5857,9 @@ msgstr ""
5609
5857
  msgid "Review details"
5610
5858
  msgstr ""
5611
5859
 
5860
+ msgid "Review the information below and click "
5861
+ msgstr ""
5862
+
5612
5863
  msgid "Review your currently selected changes for "
5613
5864
  msgstr ""
5614
5865
 
@@ -5648,9 +5899,6 @@ msgstr ""
5648
5899
  msgid "SSL CA certificate"
5649
5900
  msgstr ""
5650
5901
 
5651
- msgid "SSL Cert"
5652
- msgstr ""
5653
-
5654
5902
  msgid "SSL client certificate"
5655
5903
  msgstr ""
5656
5904
 
@@ -5780,6 +6028,9 @@ msgstr ""
5780
6028
  msgid "Select an environment above"
5781
6029
  msgstr ""
5782
6030
 
6031
+ msgid "Select an option"
6032
+ msgstr ""
6033
+
5783
6034
  msgid "Select an organization"
5784
6035
  msgstr ""
5785
6036
 
@@ -5819,6 +6070,12 @@ msgstr ""
5819
6070
  msgid "Select page"
5820
6071
  msgstr ""
5821
6072
 
6073
+ msgid "Select products"
6074
+ msgstr ""
6075
+
6076
+ msgid "Select products to associate to this source."
6077
+ msgstr ""
6078
+
5822
6079
  msgid "Select row"
5823
6080
  msgstr ""
5824
6081
 
@@ -5936,7 +6193,7 @@ msgstr ""
5936
6193
  msgid "Show an activation key"
5937
6194
  msgstr ""
5938
6195
 
5939
- msgid "Show an alternate content source"
6196
+ msgid "Show an alternate content source."
5940
6197
  msgstr ""
5941
6198
 
5942
6199
  msgid "Show an environment"
@@ -5987,6 +6244,9 @@ msgstr ""
5987
6244
  msgid "Simple Content Access has been enabled for '%{subject}'."
5988
6245
  msgstr ""
5989
6246
 
6247
+ msgid "Simplified"
6248
+ msgstr ""
6249
+
5990
6250
  msgid "Single content view consisting of e.g. repositories"
5991
6251
  msgstr ""
5992
6252
 
@@ -6023,7 +6283,7 @@ msgstr ""
6023
6283
  msgid "Solve dependencies"
6024
6284
  msgstr ""
6025
6285
 
6026
- msgid "Some hosts are ignored!"
6286
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6027
6287
  msgstr ""
6028
6288
 
6029
6289
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6047,13 +6307,13 @@ msgstr ""
6047
6307
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6048
6308
  msgstr ""
6049
6309
 
6050
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6310
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6051
6311
  msgstr ""
6052
6312
 
6053
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6313
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6054
6314
  msgstr ""
6055
6315
 
6056
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6316
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6057
6317
  msgstr ""
6058
6318
 
6059
6319
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6101,10 +6361,13 @@ msgstr ""
6101
6361
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6102
6362
  msgstr ""
6103
6363
 
6364
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6365
+ msgstr ""
6366
+
6104
6367
  msgid "Something went wrong while loading the content views. See the logs for more information"
6105
6368
  msgstr ""
6106
6369
 
6107
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6370
+ msgid "Something went wrong while refreshing alternate content sources: "
6108
6371
  msgstr ""
6109
6372
 
6110
6373
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6119,6 +6382,9 @@ msgstr ""
6119
6382
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6120
6383
  msgstr ""
6121
6384
 
6385
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6386
+ msgstr ""
6387
+
6122
6388
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6123
6389
  msgstr ""
6124
6390
 
@@ -6137,9 +6403,33 @@ msgstr ""
6137
6403
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6138
6404
  msgstr ""
6139
6405
 
6406
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6407
+ msgstr ""
6408
+
6409
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6410
+ msgstr ""
6411
+
6412
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6413
+ msgstr ""
6414
+
6415
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6416
+ msgstr ""
6417
+
6140
6418
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6141
6419
  msgstr ""
6142
6420
 
6421
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6422
+ msgstr ""
6423
+
6424
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6425
+ msgstr ""
6426
+
6427
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6430
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
6143
6433
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6144
6434
  msgstr ""
6145
6435
 
@@ -6224,9 +6514,6 @@ msgstr ""
6224
6514
  msgid "Subscription"
6225
6515
  msgstr ""
6226
6516
 
6227
- msgid "Subscription Allocation"
6228
- msgstr ""
6229
-
6230
6517
  msgid "Subscription Details"
6231
6518
  msgstr ""
6232
6519
 
@@ -6284,6 +6571,9 @@ msgstr ""
6284
6571
  msgid "Subscription not found"
6285
6572
  msgstr ""
6286
6573
 
6574
+ msgid "Subscription status"
6575
+ msgstr ""
6576
+
6287
6577
  msgid "Subscription was not persisted - %{error_message}"
6288
6578
  msgstr ""
6289
6579
 
@@ -6329,6 +6619,9 @@ msgstr ""
6329
6619
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6330
6620
  msgstr ""
6331
6621
 
6622
+ msgid "Successfully synced capsule."
6623
+ msgstr ""
6624
+
6332
6625
  msgid "Successfully synchronized."
6333
6626
  msgstr ""
6334
6627
 
@@ -6410,6 +6703,9 @@ msgstr ""
6410
6703
  msgid "Sync plan identifier to attach"
6411
6704
  msgstr ""
6412
6705
 
6706
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6707
+ msgstr ""
6708
+
6413
6709
  msgid "Sync state"
6414
6710
  msgstr ""
6415
6711
 
@@ -6500,9 +6796,6 @@ msgstr ""
6500
6796
  msgid "The Alternate Content Source type"
6501
6797
  msgstr ""
6502
6798
 
6503
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6504
- msgstr ""
6505
-
6506
6799
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6507
6800
  msgstr ""
6508
6801
 
@@ -6554,9 +6847,6 @@ msgstr ""
6554
6847
  msgid "The field to sort the data by. Defaults to the created date."
6555
6848
  msgstr ""
6556
6849
 
6557
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6558
- msgstr ""
6559
-
6560
6850
  msgid "The following hosts have errata that apply to them: "
6561
6851
  msgstr ""
6562
6852
 
@@ -6583,6 +6873,9 @@ msgstr ""
6583
6873
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6584
6874
  msgstr ""
6585
6875
 
6876
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6877
+ msgstr ""
6878
+
6586
6879
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6587
6880
  msgstr ""
6588
6881
 
@@ -6627,6 +6920,9 @@ msgstr ""
6627
6920
  msgid "The port used by Pulp Crane to provide Docker Registries"
6628
6921
  msgstr ""
6629
6922
 
6923
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6924
+ msgstr ""
6925
+
6630
6926
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6631
6927
  msgstr ""
6632
6928
 
@@ -6672,13 +6968,19 @@ msgstr ""
6672
6968
  msgid "The token key to use for authentication."
6673
6969
  msgstr ""
6674
6970
 
6971
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6972
+ msgstr ""
6973
+
6974
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6975
+ msgstr ""
6976
+
6675
6977
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6676
6978
  msgstr ""
6677
6979
 
6678
6980
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6679
6981
  msgstr ""
6680
6982
 
6681
- msgid "There are no Subscription Allocations to display"
6983
+ msgid "There are no Manifests to display"
6682
6984
  msgstr ""
6683
6985
 
6684
6986
  msgid "There are no Subscriptions to display"
@@ -6750,6 +7052,9 @@ msgstr ""
6750
7052
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6751
7053
  msgstr ""
6752
7054
 
7055
+ 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."
7056
+ msgstr ""
7057
+
6753
7058
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6754
7059
  msgstr ""
6755
7060
 
@@ -6789,7 +7094,7 @@ msgstr ""
6789
7094
  msgid "This is disabled because a manifest task is in progress"
6790
7095
  msgstr ""
6791
7096
 
6792
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7097
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6793
7098
  msgstr ""
6794
7099
 
6795
7100
  msgid "This is disabled because no manifest exists"
@@ -6858,6 +7163,9 @@ msgstr ""
6858
7163
  msgid "Title"
6859
7164
  msgstr ""
6860
7165
 
7166
+ msgid "To get started, add this host to a host collection."
7167
+ msgstr ""
7168
+
6861
7169
  msgid "Toggling Simple Content Access will refresh your manifest."
6862
7170
  msgstr ""
6863
7171
 
@@ -6900,6 +7208,9 @@ msgstr ""
6900
7208
  msgid "Traces will be shown here to a user with the appropriate permissions."
6901
7209
  msgstr ""
6902
7210
 
7211
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7212
+ msgstr ""
7213
+
6903
7214
  msgid "Trigger an auto-attach of subscriptions"
6904
7215
  msgstr ""
6905
7216
 
@@ -6930,12 +7241,18 @@ msgstr ""
6930
7241
  msgid "Type of content: \"cert\", \"gpg_key\""
6931
7242
  msgstr ""
6932
7243
 
7244
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7245
+ msgstr ""
7246
+
6933
7247
  msgid "URL"
6934
7248
  msgstr ""
6935
7249
 
6936
7250
  msgid "URL and paths"
6937
7251
  msgstr ""
6938
7252
 
7253
+ msgid "URL and subpaths"
7254
+ msgstr ""
7255
+
6939
7256
  msgid "URL needs to have a trailing /"
6940
7257
  msgstr ""
6941
7258
 
@@ -7137,7 +7454,7 @@ msgstr ""
7137
7454
  msgid "Update an activation key"
7138
7455
  msgstr ""
7139
7456
 
7140
- msgid "Update an alternate content source"
7457
+ msgid "Update an alternate content source."
7141
7458
  msgstr ""
7142
7459
 
7143
7460
  msgid "Update an environment"
@@ -7344,6 +7661,12 @@ msgstr ""
7344
7661
  msgid "Usage type"
7345
7662
  msgstr ""
7346
7663
 
7664
+ msgid "Use HTTP Proxies"
7665
+ msgstr ""
7666
+
7667
+ msgid "Use HTTP proxies"
7668
+ msgstr ""
7669
+
7347
7670
  msgid "Use remote execution by default"
7348
7671
  msgstr ""
7349
7672
 
@@ -7419,6 +7742,12 @@ msgstr ""
7419
7742
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7420
7743
  msgstr ""
7421
7744
 
7745
+ msgid "Version ${versionOne}"
7746
+ msgstr ""
7747
+
7748
+ msgid "Version ${versionTwo}"
7749
+ msgstr ""
7750
+
7422
7751
  msgid "Version details updated."
7423
7752
  msgstr ""
7424
7753
 
@@ -7431,6 +7760,9 @@ msgstr ""
7431
7760
  msgid "Versions "
7432
7761
  msgstr ""
7433
7762
 
7763
+ msgid "Versions to compare"
7764
+ msgstr ""
7765
+
7434
7766
  msgid "Versions to exclusively include in the action"
7435
7767
  msgstr ""
7436
7768
 
@@ -7446,6 +7778,9 @@ msgstr ""
7446
7778
  msgid "View a report of the affected hosts"
7447
7779
  msgstr ""
7448
7780
 
7781
+ msgid "View by"
7782
+ msgstr ""
7783
+
7449
7784
  msgid "View matching content"
7450
7785
  msgstr ""
7451
7786
 
@@ -7509,6 +7844,9 @@ msgstr ""
7509
7844
  msgid "Whether to include available content attribute in results"
7510
7845
  msgstr ""
7511
7846
 
7847
+ msgid "Whether to turn on Simple Content Access for the organization."
7848
+ msgstr ""
7849
+
7512
7850
  msgid "Workers"
7513
7851
  msgstr ""
7514
7852
 
@@ -7605,6 +7943,9 @@ msgstr ""
7605
7943
  msgid "Your search returned no matching "
7606
7944
  msgstr ""
7607
7945
 
7946
+ msgid "Your search returned no matching ${name}."
7947
+ msgstr ""
7948
+
7608
7949
  msgid "Your search returned no matching DEBs."
7609
7950
  msgstr ""
7610
7951
 
@@ -7629,6 +7970,9 @@ msgstr ""
7629
7970
  msgid "a content unit"
7630
7971
  msgstr ""
7631
7972
 
7973
+ msgid "a custom CDN URL"
7974
+ msgstr ""
7975
+
7632
7976
  msgid "a deb package"
7633
7977
  msgstr ""
7634
7978
 
@@ -7800,9 +8144,6 @@ msgstr ""
7800
8144
  msgid "content release version"
7801
8145
  msgstr ""
7802
8146
 
7803
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7804
- msgstr ""
7805
-
7806
8147
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7807
8148
  msgstr ""
7808
8149
 
@@ -8076,9 +8417,6 @@ msgstr ""
8076
8417
  msgid "label of the repository"
8077
8418
  msgstr ""
8078
8419
 
8079
- msgid "limit to only repositories of this type"
8080
- msgstr ""
8081
-
8082
8420
  msgid "limit to only repositories with this download policy"
8083
8421
  msgstr ""
8084
8422
 
@@ -8196,9 +8534,6 @@ msgstr ""
8196
8534
  msgid "of environment must be unique within one organization"
8197
8535
  msgstr ""
8198
8536
 
8199
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8200
- msgstr ""
8201
-
8202
8537
  msgid "only show the repositories readable by this user with this username"
8203
8538
  msgstr ""
8204
8539
 
@@ -8382,9 +8717,6 @@ msgstr ""
8382
8717
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8383
8718
  msgstr ""
8384
8719
 
8385
- msgid "type of repo"
8386
- msgstr ""
8387
-
8388
8720
  msgid "types of filters"
8389
8721
  msgstr ""
8390
8722