katello 4.5.1 → 4.6.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (440) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  6. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  9. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  10. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  13. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  14. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  15. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  16. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  17. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  18. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  19. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  20. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  22. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  23. data/app/lib/actions/katello/organization/manifest_refresh.rb +8 -4
  24. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  25. data/app/lib/actions/katello/repository/create.rb +9 -0
  26. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  27. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  28. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  29. data/app/lib/actions/katello/repository/update.rb +33 -0
  30. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  31. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  32. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  33. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  34. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  38. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  39. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  40. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  41. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  42. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  43. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  44. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  45. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  46. data/app/lib/katello/errors.rb +1 -1
  47. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  48. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  49. data/app/models/katello/alternate_content_source.rb +39 -8
  50. data/app/models/katello/alternate_content_source_product.rb +13 -0
  51. data/app/models/katello/concerns/host_managed_extensions.rb +12 -2
  52. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  53. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  54. data/app/models/katello/content_view.rb +4 -0
  55. data/app/models/katello/content_view_deb_filter.rb +51 -0
  56. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  57. data/app/models/katello/content_view_filter.rb +10 -3
  58. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  59. data/app/models/katello/installed_package.rb +1 -0
  60. data/app/models/katello/product.rb +3 -0
  61. data/app/models/katello/repository.rb +2 -0
  62. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  63. data/app/services/cert/certs.rb +8 -16
  64. data/app/services/katello/content_unit_indexer.rb +2 -1
  65. data/app/services/katello/organization_creator.rb +4 -4
  66. data/app/services/katello/pulp/server.rb +2 -2
  67. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  68. data/app/services/katello/pulp3/api/apt.rb +12 -0
  69. data/app/services/katello/pulp3/erratum.rb +1 -4
  70. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  71. data/app/services/katello/pulp3/repository.rb +4 -3
  72. data/app/services/katello/pulp3/service_common.rb +1 -1
  73. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  74. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  75. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  76. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  77. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  78. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  79. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  80. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  81. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  82. data/app/views/katello/layouts/react.html.erb +1 -1
  83. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  84. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  85. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  86. data/ca/redhat-uep.pem +18 -23
  87. data/config/katello.yaml.example +0 -2
  88. data/config/routes/api/v2.rb +2 -0
  89. data/config/routes/overrides.rb +1 -0
  90. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  91. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  92. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  93. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  94. data/db/seeds.d/102-organizations.rb +1 -1
  95. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  96. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  97. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  102. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  104. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  105. data/lib/katello/engine.rb +1 -2
  106. data/lib/katello/permission_creator.rb +2 -2
  107. data/lib/katello/permissions/host_permissions.rb +1 -0
  108. data/lib/katello/plugin.rb +6 -12
  109. data/lib/katello/version.rb +1 -1
  110. data/locale/action_names.rb +49 -46
  111. data/locale/bn/katello.po +361 -53
  112. data/{webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss → locale/bn/katello.po.time_stamp} +0 -0
  113. data/locale/cs/katello.po +361 -53
  114. data/locale/cs/katello.po.time_stamp +0 -0
  115. data/locale/de/katello.po +366 -58
  116. data/locale/de/katello.po.time_stamp +0 -0
  117. data/locale/en/katello.po +361 -53
  118. data/locale/en/katello.po.time_stamp +0 -0
  119. data/locale/es/katello.po +364 -56
  120. data/locale/es/katello.po.time_stamp +0 -0
  121. data/locale/fr/katello.po +376 -68
  122. data/locale/fr/katello.po.time_stamp +0 -0
  123. data/locale/gu/katello.po +361 -53
  124. data/locale/gu/katello.po.time_stamp +0 -0
  125. data/locale/hi/katello.po +361 -53
  126. data/locale/hi/katello.po.time_stamp +0 -0
  127. data/locale/it/katello.po +361 -53
  128. data/locale/it/katello.po.time_stamp +0 -0
  129. data/locale/ja/katello.po +374 -66
  130. data/locale/ja/katello.po.time_stamp +0 -0
  131. data/locale/katello.pot +1626 -1079
  132. data/locale/kn/katello.po +361 -53
  133. data/locale/kn/katello.po.time_stamp +0 -0
  134. data/locale/ko/katello.po +361 -53
  135. data/locale/ko/katello.po.time_stamp +0 -0
  136. data/locale/mr/katello.po +361 -53
  137. data/locale/mr/katello.po.time_stamp +0 -0
  138. data/locale/or/katello.po +361 -53
  139. data/locale/or/katello.po.time_stamp +0 -0
  140. data/locale/pa/katello.po +361 -53
  141. data/locale/pa/katello.po.time_stamp +0 -0
  142. data/locale/pt/katello.po +361 -53
  143. data/locale/pt/katello.po.time_stamp +0 -0
  144. data/locale/pt_BR/katello.po +364 -56
  145. data/locale/pt_BR/katello.po.time_stamp +0 -0
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ru/katello.po.time_stamp +0 -0
  148. data/locale/ta/katello.po +361 -53
  149. data/locale/ta/katello.po.time_stamp +0 -0
  150. data/locale/te/katello.po +361 -53
  151. data/locale/te/katello.po.time_stamp +0 -0
  152. data/locale/zh_CN/katello.po +374 -66
  153. data/locale/zh_CN/katello.po.time_stamp +0 -0
  154. data/locale/zh_TW/katello.po +361 -53
  155. data/locale/zh_TW/katello.po.time_stamp +0 -0
  156. data/package.json +0 -3
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  158. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  159. data/webpack/components/Errata/index.js +18 -3
  160. data/webpack/components/Loading.js +1 -1
  161. data/webpack/components/RoutedTabs/index.js +1 -17
  162. data/webpack/components/Search/Search.js +0 -1
  163. data/webpack/components/Search/__tests__/search.test.js +1 -2
  164. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  165. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  166. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  167. data/webpack/components/Table/MainTable.js +46 -4
  168. data/webpack/components/Table/TableHooks.js +9 -6
  169. data/webpack/components/Table/TableWrapper.js +14 -8
  170. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  171. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  172. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  177. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  178. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  179. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  182. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  183. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  184. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  185. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  186. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  187. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  188. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  189. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +8 -12
  190. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -2
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +5 -0
  192. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +57 -7
  193. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  194. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  195. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +4 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  197. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  198. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  199. data/webpack/containers/Application/config.js +5 -10
  200. data/webpack/global_index.js +19 -7
  201. data/webpack/global_test_setup.js +14 -2
  202. data/webpack/ouia_id_check.js +95 -0
  203. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  204. data/webpack/redux/reducers/index.js +2 -4
  205. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  206. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  207. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  208. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  210. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  211. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +2 -1
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  215. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  216. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  217. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  218. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  219. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  223. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  224. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  227. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  228. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  229. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  230. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  231. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  232. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  233. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  234. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  235. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  236. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  237. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  239. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  240. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  241. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  242. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  244. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  246. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  247. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  248. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  249. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  250. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  262. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  263. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  264. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  265. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  288. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  289. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  290. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  291. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  292. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  293. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  294. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  295. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  296. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  297. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  298. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  299. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  300. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  301. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  302. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  303. data/webpack/test-utils/nockWrapper.js +7 -0
  304. metadata +100 -145
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  406. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  407. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  408. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  409. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  410. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  411. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  412. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  413. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  414. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  415. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  416. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  417. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  418. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  419. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  420. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  421. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  422. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  423. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  424. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  425. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  426. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  427. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  428. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  429. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  430. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  431. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  432. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  433. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  434. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  435. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  436. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  437. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  438. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  439. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  440. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/locale/en/katello.po CHANGED
@@ -33,6 +33,9 @@ msgstr ""
33
33
  msgid " Content view updated"
34
34
  msgstr ""
35
35
 
36
+ msgid " DEBs"
37
+ msgstr ""
38
+
36
39
  msgid " Either select the latest content view or the content view version. Cannot set both."
37
40
  msgstr ""
38
41
 
@@ -54,10 +57,10 @@ msgstr ""
54
57
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
55
58
  msgstr ""
56
59
 
57
- msgid " content view is used in listed component content views. For more information, "
60
+ msgid " content view is used in listed composite content views."
58
61
  msgstr ""
59
62
 
60
- msgid " content view is used in listed composite content views."
63
+ msgid " content view is used in listed content views. For more information, "
61
64
  msgstr ""
62
65
 
63
66
  msgid " environment cannot be set to an environment already on its path"
@@ -69,6 +72,9 @@ msgstr ""
69
72
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
70
73
  msgstr ""
71
74
 
75
+ msgid " to manage and promote content views, or select a different environment."
76
+ msgstr ""
77
+
72
78
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
73
79
  msgstr ""
74
80
 
@@ -317,6 +323,9 @@ msgstr ""
317
323
  msgid "(Orphaned)"
318
324
  msgstr ""
319
325
 
326
+ msgid "(unset)"
327
+ msgstr ""
328
+
320
329
  msgid ", and"
321
330
  msgstr ""
322
331
 
@@ -344,7 +353,7 @@ msgstr ""
344
353
  msgid "A backend service [ %s ] is unreachable"
345
354
  msgstr ""
346
355
 
347
- msgid "A content view can be added by using the \"Create content view\" button above."
356
+ msgid "A content view can be added by using the \"Create content view\" button below."
348
357
  msgstr ""
349
358
 
350
359
  msgid "A content_type must be provided."
@@ -365,6 +374,12 @@ msgstr ""
365
374
  msgid "A post-promotion summary of hosts with installable errata"
366
375
  msgstr ""
367
376
 
377
+ msgid "A remote execution job is in progress"
378
+ msgstr ""
379
+
380
+ msgid "A remote execution job is in progress."
381
+ msgstr ""
382
+
368
383
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
369
384
  msgstr ""
370
385
 
@@ -452,6 +467,9 @@ msgstr ""
452
467
  msgid "Add Bookmark"
453
468
  msgstr ""
454
469
 
470
+ msgid "Add DEB rule"
471
+ msgstr ""
472
+
455
473
  msgid "Add RPM rule"
456
474
  msgstr ""
457
475
 
@@ -461,13 +479,13 @@ msgstr ""
461
479
  msgid "Add a subscription to a host"
462
480
  msgstr ""
463
481
 
464
- msgid "Add component"
482
+ msgid "Add an alternate content source"
465
483
  msgstr ""
466
484
 
467
- msgid "Add component content views"
485
+ msgid "Add components to the content view"
468
486
  msgstr ""
469
487
 
470
- msgid "Add components to the content view"
488
+ msgid "Add content view"
471
489
  msgstr ""
472
490
 
473
491
  msgid "Add content views"
@@ -482,9 +500,6 @@ msgstr ""
482
500
  msgid "Add filter rule"
483
501
  msgstr ""
484
502
 
485
- msgid "Add filters using the 'Add filter' button above."
486
- msgstr ""
487
-
488
503
  msgid "Add host to collections"
489
504
  msgstr ""
490
505
 
@@ -524,12 +539,18 @@ msgstr ""
524
539
  msgid "Add subscriptions to one or more hosts"
525
540
  msgstr ""
526
541
 
542
+ msgid "Add to this filter using the 'Add Deb rule' button."
543
+ msgstr ""
544
+
527
545
  msgid "Add to this filter using the 'Add RPM rule' button."
528
546
  msgstr ""
529
547
 
530
548
  msgid "Add to this filter using the 'Add filter rule' button."
531
549
  msgstr ""
532
550
 
551
+ msgid "Add-ons"
552
+ msgstr ""
553
+
533
554
  msgid "Added"
534
555
  msgstr ""
535
556
 
@@ -548,6 +569,9 @@ msgstr ""
548
569
  msgid "Addons"
549
570
  msgstr ""
550
571
 
572
+ msgid "Affected Repositories"
573
+ msgstr ""
574
+
551
575
  msgid "Affected repositories"
552
576
  msgstr ""
553
577
 
@@ -654,9 +678,6 @@ msgstr ""
654
678
  msgid "Ansible Collection"
655
679
  msgstr ""
656
680
 
657
- msgid "Ansible Collection Details"
658
- msgstr ""
659
-
660
681
  msgid "Ansible Collections"
661
682
  msgstr ""
662
683
 
@@ -705,6 +726,9 @@ msgstr ""
705
726
  msgid "Architecture of content in the repository"
706
727
  msgstr ""
707
728
 
729
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
730
+ msgstr ""
731
+
708
732
  msgid "Architecture(s)"
709
733
  msgstr ""
710
734
 
@@ -809,6 +833,9 @@ msgstr ""
809
833
  msgid "Auth URL requires Auth token be set."
810
834
  msgstr ""
811
835
 
836
+ msgid "Authentication type"
837
+ msgstr ""
838
+
812
839
  msgid "Author"
813
840
  msgstr ""
814
841
 
@@ -830,6 +857,9 @@ msgstr ""
830
857
  msgid "Autosearch delay"
831
858
  msgstr ""
832
859
 
860
+ msgid "Available"
861
+ msgstr ""
862
+
833
863
  msgid "Available Entitlements"
834
864
  msgstr ""
835
865
 
@@ -842,6 +872,9 @@ msgstr ""
842
872
  msgid "Backend System Status"
843
873
  msgstr ""
844
874
 
875
+ msgid "Base URL"
876
+ msgstr ""
877
+
845
878
  msgid "Base URL for finding alternate content"
846
879
  msgstr ""
847
880
 
@@ -887,6 +920,9 @@ msgstr ""
887
920
  msgid "Bookmarks marked as public are available to all users"
888
921
  msgstr ""
889
922
 
923
+ msgid "Both"
924
+ msgstr ""
925
+
890
926
  msgid "Both major and minor parameters have to be used to override a CV version"
891
927
  msgstr ""
892
928
 
@@ -908,6 +944,9 @@ msgstr ""
908
944
  msgid "Bulk remove versions from a content view and reassign systems and keys"
909
945
  msgstr ""
910
946
 
947
+ msgid "CA Cert"
948
+ msgstr ""
949
+
911
950
  msgid "CDN Configuration"
912
951
  msgstr ""
913
952
 
@@ -1142,6 +1181,9 @@ msgstr ""
1142
1181
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1143
1182
  msgstr ""
1144
1183
 
1184
+ msgid "Check if the specified organization has Simple Content Access enabled"
1185
+ msgstr ""
1186
+
1145
1187
  msgid "Check if the specified organization is eligible for Simple Content Access"
1146
1188
  msgstr ""
1147
1189
 
@@ -1151,9 +1193,6 @@ msgstr ""
1151
1193
  msgid "Checksum"
1152
1194
  msgstr ""
1153
1195
 
1154
- msgid "Checksum is a required parameter."
1155
- msgstr ""
1156
-
1157
1196
  msgid "Checksum of file to upload"
1158
1197
  msgstr ""
1159
1198
 
@@ -1166,12 +1205,21 @@ msgstr ""
1166
1205
  msgid "Clear any previous registration and run subscription-manager with --force."
1167
1206
  msgstr ""
1168
1207
 
1208
+ msgid "Clear filters"
1209
+ msgstr ""
1210
+
1211
+ msgid "Clear search"
1212
+ msgstr ""
1213
+
1169
1214
  msgid "Click here to go to the tasks page for the task."
1170
1215
  msgstr ""
1171
1216
 
1172
1217
  msgid "Click {update} below to save changes."
1173
1218
  msgstr ""
1174
1219
 
1220
+ msgid "Client key"
1221
+ msgstr ""
1222
+
1175
1223
  msgid "Clone"
1176
1224
  msgstr ""
1177
1225
 
@@ -1202,12 +1250,6 @@ msgstr ""
1202
1250
  msgid "Component Content View"
1203
1251
  msgstr ""
1204
1252
 
1205
- msgid "Component content view"
1206
- msgstr ""
1207
-
1208
- msgid "Component content views"
1209
- msgstr ""
1210
-
1211
1253
  msgid "Components"
1212
1254
  msgstr ""
1213
1255
 
@@ -1238,7 +1280,7 @@ msgstr ""
1238
1280
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1239
1281
  msgstr ""
1240
1282
 
1241
- msgid "Consisting of multiple component content views"
1283
+ msgid "Consisting of multiple content views"
1242
1284
  msgstr ""
1243
1285
 
1244
1286
  msgid "Consists of content views"
@@ -1370,6 +1412,12 @@ msgstr ""
1370
1412
  msgid "Content Views"
1371
1413
  msgstr ""
1372
1414
 
1415
+ msgid "Content credential"
1416
+ msgstr ""
1417
+
1418
+ msgid "Content credentials"
1419
+ msgstr ""
1420
+
1373
1421
  msgid "Content files to upload. Can be a single file or array of files."
1374
1422
  msgstr ""
1375
1423
 
@@ -1487,6 +1535,9 @@ msgstr ""
1487
1535
  msgid "Copy version units to library"
1488
1536
  msgstr ""
1489
1537
 
1538
+ msgid "Cores per socket"
1539
+ msgstr ""
1540
+
1490
1541
  msgid "Cores: %s"
1491
1542
  msgstr ""
1492
1543
 
@@ -1598,6 +1649,9 @@ msgstr ""
1598
1649
  msgid "Couldn't find smart proxies with id '%s'"
1599
1650
  msgstr ""
1600
1651
 
1652
+ msgid "Couldn't find smart proxies with name '%s'"
1653
+ msgstr ""
1654
+
1601
1655
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1602
1656
  msgstr ""
1603
1657
 
@@ -1610,6 +1664,9 @@ msgstr ""
1610
1664
  msgid "Create"
1611
1665
  msgstr ""
1612
1666
 
1667
+ msgid "Create ACS"
1668
+ msgstr ""
1669
+
1613
1670
  msgid "Create Alternate Content Source"
1614
1671
  msgstr ""
1615
1672
 
@@ -1625,12 +1682,18 @@ msgstr ""
1625
1682
  msgid "Create Repositories"
1626
1683
  msgstr ""
1627
1684
 
1685
+ msgid "Create Syncable Export History"
1686
+ msgstr ""
1687
+
1628
1688
  msgid "Create a Content Credential"
1629
1689
  msgstr ""
1630
1690
 
1631
1691
  msgid "Create a content view"
1632
1692
  msgstr ""
1633
1693
 
1694
+ msgid "Create a custom product"
1695
+ msgstr ""
1696
+
1634
1697
  msgid "Create a custom repository"
1635
1698
  msgstr ""
1636
1699
 
@@ -1670,16 +1733,28 @@ msgstr ""
1670
1733
  msgid "Create filter"
1671
1734
  msgstr ""
1672
1735
 
1736
+ msgid "Create host collection"
1737
+ msgstr ""
1738
+
1673
1739
  msgid "Create organization"
1674
1740
  msgstr ""
1675
1741
 
1742
+ msgid "Create package filter rule"
1743
+ msgstr ""
1744
+
1745
+ msgid "Create rule"
1746
+ msgstr ""
1747
+
1748
+ msgid "Credentials"
1749
+ msgstr ""
1750
+
1676
1751
  msgid "Critical"
1677
1752
  msgstr ""
1678
1753
 
1679
1754
  msgid "Cron expression is not valid!"
1680
1755
  msgstr ""
1681
1756
 
1682
- msgid "Current organization has no manifest imported."
1757
+ msgid "Current organization does not have a manifest imported."
1683
1758
  msgstr ""
1684
1759
 
1685
1760
  msgid "Current organization is not set."
@@ -1688,6 +1763,9 @@ msgstr ""
1688
1763
  msgid "Current organization not set."
1689
1764
  msgstr ""
1690
1765
 
1766
+ msgid "Custom"
1767
+ msgstr ""
1768
+
1691
1769
  msgid "Custom Content Repositories"
1692
1770
  msgstr ""
1693
1771
 
@@ -1700,6 +1778,9 @@ msgstr ""
1700
1778
  msgid "Customize with Rex"
1701
1779
  msgstr ""
1702
1780
 
1781
+ msgid "DEB name"
1782
+ msgstr ""
1783
+
1703
1784
  msgid "Database connection"
1704
1785
  msgstr ""
1705
1786
 
@@ -1715,12 +1796,18 @@ msgstr ""
1715
1796
  msgid "Days from Now"
1716
1797
  msgstr ""
1717
1798
 
1799
+ msgid "Deb"
1800
+ msgstr ""
1801
+
1718
1802
  msgid "Deb Package"
1719
1803
  msgstr ""
1720
1804
 
1721
1805
  msgid "Deb Packages"
1722
1806
  msgstr ""
1723
1807
 
1808
+ msgid "Deb name"
1809
+ msgstr ""
1810
+
1724
1811
  msgid "Deb package identifiers to filter content by"
1725
1812
  msgstr ""
1726
1813
 
@@ -1976,6 +2063,9 @@ msgstr ""
1976
2063
  msgid "Destroy an environment in an organization"
1977
2064
  msgstr ""
1978
2065
 
2066
+ msgid "Destroy one or more alternate content sources"
2067
+ msgstr ""
2068
+
1979
2069
  msgid "Destroy one or more hosts"
1980
2070
  msgstr ""
1981
2071
 
@@ -2069,9 +2159,15 @@ msgstr ""
2069
2159
  msgid "Edit filter rule"
2070
2160
  msgstr ""
2071
2161
 
2162
+ msgid "Edit package filter rule"
2163
+ msgstr ""
2164
+
2072
2165
  msgid "Edit rule"
2073
2166
  msgstr ""
2074
2167
 
2168
+ msgid "Edit system purpose attributes"
2169
+ msgstr ""
2170
+
2075
2171
  msgid "Editing Entitlements"
2076
2172
  msgstr ""
2077
2173
 
@@ -2096,6 +2192,9 @@ msgstr ""
2096
2192
  msgid "Enable"
2097
2193
  msgstr ""
2098
2194
 
2195
+ msgid "Enable Red Hat repositories"
2196
+ msgstr ""
2197
+
2099
2198
  msgid "Enable Simple Content Access"
2100
2199
  msgstr ""
2101
2200
 
@@ -2141,9 +2240,15 @@ msgstr ""
2141
2240
  msgid "Enter a name"
2142
2241
  msgstr ""
2143
2242
 
2243
+ msgid "Enter a name for your source."
2244
+ msgstr ""
2245
+
2144
2246
  msgid "Enter a valid date: MM/DD/YYYY"
2145
2247
  msgstr ""
2146
2248
 
2249
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2250
+ msgstr ""
2251
+
2147
2252
  msgid "Entitlements"
2148
2253
  msgstr ""
2149
2254
 
@@ -2285,6 +2390,11 @@ msgstr ""
2285
2390
  msgid "Export as CSV"
2286
2391
  msgstr ""
2287
2392
 
2393
+ msgid ""
2394
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2395
+ " Defaults to importable."
2396
+ msgstr ""
2397
+
2288
2398
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2289
2399
  msgstr ""
2290
2400
 
@@ -2335,6 +2445,9 @@ msgstr ""
2335
2445
  msgid "Fetch traces for one or more hosts"
2336
2446
  msgstr ""
2337
2447
 
2448
+ msgid "Fetching content credentials"
2449
+ msgstr ""
2450
+
2338
2451
  msgid "Field to sort the results on"
2339
2452
  msgstr ""
2340
2453
 
@@ -2425,6 +2538,9 @@ msgstr ""
2425
2538
  msgid "Filters deleted"
2426
2539
  msgstr ""
2427
2540
 
2541
+ msgid "Filters will appear here when the filter is created."
2542
+ msgstr ""
2543
+
2428
2544
  msgid "Finish"
2429
2545
  msgstr ""
2430
2546
 
@@ -2529,6 +2645,9 @@ msgstr ""
2529
2645
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2530
2646
  msgstr ""
2531
2647
 
2648
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2649
+ msgstr ""
2650
+
2532
2651
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2533
2652
  msgstr ""
2534
2653
 
@@ -2559,6 +2678,9 @@ msgstr ""
2559
2678
  msgid "HTTP Proxy identifier to associated"
2560
2679
  msgstr ""
2561
2680
 
2681
+ msgid "HW properties"
2682
+ msgstr ""
2683
+
2562
2684
  msgid "Has to be > 0"
2563
2685
  msgstr ""
2564
2686
 
@@ -2766,9 +2888,6 @@ msgstr ""
2766
2888
  msgid "ID: %s doesn't exist "
2767
2889
  msgstr ""
2768
2890
 
2769
- msgid "Id"
2770
- msgstr ""
2771
-
2772
2891
  msgid "Id of a deb package to find repositories that contain the deb"
2773
2892
  msgstr ""
2774
2893
 
@@ -3045,6 +3164,9 @@ msgstr ""
3045
3164
  msgid "Index package groups"
3046
3165
  msgstr ""
3047
3166
 
3167
+ msgid "Indicate the source type."
3168
+ msgstr ""
3169
+
3048
3170
  msgid "Informable Type must be one of the following [ %{list} ]"
3049
3171
  msgstr ""
3050
3172
 
@@ -3132,6 +3254,9 @@ msgstr ""
3132
3254
  msgid "Installation status"
3133
3255
  msgstr ""
3134
3256
 
3257
+ msgid "Installed"
3258
+ msgstr ""
3259
+
3135
3260
  msgid "Installed Packages"
3136
3261
  msgstr ""
3137
3262
 
@@ -3207,6 +3332,9 @@ msgstr ""
3207
3332
  msgid "Invalid event_type %s"
3208
3333
  msgstr ""
3209
3334
 
3335
+ msgid "Invalid export format provided. Format must be one of %s "
3336
+ msgstr ""
3337
+
3210
3338
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3211
3339
  msgstr ""
3212
3340
 
@@ -3225,6 +3353,9 @@ msgstr ""
3225
3353
  msgid "Invalid params provided - date_type must be one of %s"
3226
3354
  msgstr ""
3227
3355
 
3356
+ msgid "Invalid release version: [%s]"
3357
+ msgstr ""
3358
+
3228
3359
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3229
3360
  msgstr ""
3230
3361
 
@@ -3243,7 +3374,10 @@ msgstr ""
3243
3374
  msgid "Issued from"
3244
3375
  msgstr ""
3245
3376
 
3246
- msgid "Job ${description} has started."
3377
+ msgid "Job '${description}' completed"
3378
+ msgstr ""
3379
+
3380
+ msgid "Job '${description}' has started."
3247
3381
  msgstr ""
3248
3382
 
3249
3383
  msgid "Katello ID of local pool to update"
@@ -3315,9 +3449,18 @@ msgstr ""
3315
3449
  msgid "Label of the content view"
3316
3450
  msgstr ""
3317
3451
 
3452
+ msgid "Last Refresh"
3453
+ msgstr ""
3454
+
3455
+ msgid "Last check-in:"
3456
+ msgstr ""
3457
+
3318
3458
  msgid "Last published"
3319
3459
  msgstr ""
3320
3460
 
3461
+ msgid "Last refresh :"
3462
+ msgstr ""
3463
+
3321
3464
  msgid "Last task"
3322
3465
  msgstr ""
3323
3466
 
@@ -3498,6 +3641,9 @@ msgstr ""
3498
3641
  msgid "List of Products for sync plan"
3499
3642
  msgstr ""
3500
3643
 
3644
+ msgid "List of alternate content source IDs"
3645
+ msgstr ""
3646
+
3501
3647
  msgid "List of alternate_content_sources"
3502
3648
  msgstr ""
3503
3649
 
@@ -3696,6 +3842,12 @@ msgstr ""
3696
3842
  msgid "Manifest refreshed"
3697
3843
  msgstr ""
3698
3844
 
3845
+ msgid "Manual"
3846
+ msgstr ""
3847
+
3848
+ msgid "Manual authentication"
3849
+ msgstr ""
3850
+
3699
3851
  msgid "Mark Content Host Statuses as Unknown for %s"
3700
3852
  msgstr ""
3701
3853
 
@@ -3759,6 +3911,9 @@ msgstr ""
3759
3911
  msgid "Missing arguments %{substitutions} for %{content_url}"
3760
3912
  msgstr ""
3761
3913
 
3914
+ msgid "Model"
3915
+ msgstr ""
3916
+
3762
3917
  msgid "Moderate"
3763
3918
  msgstr ""
3764
3919
 
@@ -3780,7 +3935,7 @@ msgstr ""
3780
3935
  msgid "Module streams"
3781
3936
  msgstr ""
3782
3937
 
3783
- msgid "Module streams will appear here when available."
3938
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3784
3939
  msgstr ""
3785
3940
 
3786
3941
  msgid "Multi-entitlement"
@@ -3814,9 +3969,6 @@ msgstr ""
3814
3969
  msgid "Name"
3815
3970
  msgstr ""
3816
3971
 
3817
- msgid "Name is a required parameter."
3818
- msgstr ""
3819
-
3820
3972
  msgid "Name of new activation key"
3821
3973
  msgstr ""
3822
3974
 
@@ -3838,6 +3990,12 @@ msgstr ""
3838
3990
  msgid "Name of the upstream docker repository"
3839
3991
  msgstr ""
3840
3992
 
3993
+ msgid "Name source"
3994
+ msgstr ""
3995
+
3996
+ msgid "Names of smart proxies to associate"
3997
+ msgstr ""
3998
+
3841
3999
  msgid "Needs to only be set for docker tags"
3842
4000
  msgstr ""
3843
4001
 
@@ -3850,6 +4008,9 @@ msgstr ""
3850
4008
  msgid "Network Sync"
3851
4009
  msgstr ""
3852
4010
 
4011
+ msgid "Never"
4012
+ msgstr ""
4013
+
3853
4014
  msgid "Never Synced"
3854
4015
  msgstr ""
3855
4016
 
@@ -4024,6 +4185,9 @@ msgstr ""
4024
4185
  msgid "No matching ${selectedContentType} found"
4025
4186
  msgstr ""
4026
4187
 
4188
+ msgid "No matching DEB found."
4189
+ msgstr ""
4190
+
4027
4191
  msgid "No matching RPM found."
4028
4192
  msgstr ""
4029
4193
 
@@ -4183,6 +4347,9 @@ msgstr ""
4183
4347
  msgid "Not all necessary pulp workers running at %s."
4184
4348
  msgstr ""
4185
4349
 
4350
+ msgid "Not installed"
4351
+ msgstr ""
4352
+
4186
4353
  msgid "Not running"
4187
4354
  msgstr ""
4188
4355
 
@@ -4201,6 +4368,9 @@ msgstr ""
4201
4368
  msgid "Nothing selected"
4202
4369
  msgstr ""
4203
4370
 
4371
+ msgid "Number of CPU(s)"
4372
+ msgstr ""
4373
+
4204
4374
  msgid "Number of host applicability calculations to process per task."
4205
4375
  msgstr ""
4206
4376
 
@@ -4213,6 +4383,9 @@ msgstr ""
4213
4383
  msgid "Number to Allocate"
4214
4384
  msgstr ""
4215
4385
 
4386
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4387
+ msgstr ""
4388
+
4216
4389
  msgid "OSTree Branch"
4217
4390
  msgstr ""
4218
4391
 
@@ -4528,12 +4701,6 @@ msgstr ""
4528
4701
  msgid "Path"
4529
4702
  msgstr ""
4530
4703
 
4531
- msgid "Path for ssl cert used for pulp server auth"
4532
- msgstr ""
4533
-
4534
- msgid "Path for ssl key used for pulp server auth"
4535
- msgstr ""
4536
-
4537
4704
  msgid "Path suffixes for finding alternate content"
4538
4705
  msgstr ""
4539
4706
 
@@ -4800,12 +4967,6 @@ msgstr ""
4800
4967
  msgid "Pulp bulk load size"
4801
4968
  msgstr ""
4802
4969
 
4803
- msgid "Pulp client cert"
4804
- msgstr ""
4805
-
4806
- msgid "Pulp client key"
4807
- msgstr ""
4808
-
4809
4970
  msgid "Pulp database connection issue at %s."
4810
4971
  msgstr ""
4811
4972
 
@@ -4884,6 +5045,9 @@ msgstr ""
4884
5045
  msgid "Quantity to Allocate"
4885
5046
  msgstr ""
4886
5047
 
5048
+ msgid "RAM"
5049
+ msgstr ""
5050
+
4887
5051
  msgid "RAM: %s GB"
4888
5052
  msgstr ""
4889
5053
 
@@ -4983,15 +5147,27 @@ msgstr ""
4983
5147
  msgid "Refresh"
4984
5148
  msgstr ""
4985
5149
 
5150
+ msgid "Refresh Alternate Content Source"
5151
+ msgstr ""
5152
+
4986
5153
  msgid "Refresh Content Host Statuses for %s"
4987
5154
  msgstr ""
4988
5155
 
4989
5156
  msgid "Refresh Manifest"
4990
5157
  msgstr ""
4991
5158
 
5159
+ msgid "Refresh alternate content sources"
5160
+ msgstr ""
5161
+
5162
+ msgid "Refresh an alternate content source"
5163
+ msgstr ""
5164
+
4992
5165
  msgid "Refresh previously imported manifest for Red Hat provider"
4993
5166
  msgstr ""
4994
5167
 
5168
+ msgid "Refresh source"
5169
+ msgstr ""
5170
+
4995
5171
  msgid "Refresh_Content_Host_Status"
4996
5172
  msgstr ""
4997
5173
 
@@ -5025,24 +5201,27 @@ msgstr ""
5025
5201
  msgid "Reindex subscriptions"
5026
5202
  msgstr ""
5027
5203
 
5028
- msgid "Related component content views"
5204
+ msgid "Related composite content views"
5029
5205
  msgstr ""
5030
5206
 
5031
- msgid "Related component cvs: "
5207
+ msgid "Related composite content views: "
5032
5208
  msgstr ""
5033
5209
 
5034
- msgid "Related composite content views"
5210
+ msgid "Related content views"
5035
5211
  msgstr ""
5036
5212
 
5037
- msgid "Related composite cvs: "
5213
+ msgid "Related content views will appear here when created."
5038
5214
  msgstr ""
5039
5215
 
5040
- msgid "Related content views will appear here when created."
5216
+ msgid "Related content views: "
5041
5217
  msgstr ""
5042
5218
 
5043
5219
  msgid "Release"
5044
5220
  msgstr ""
5045
5221
 
5222
+ msgid "Release version"
5223
+ msgstr ""
5224
+
5046
5225
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5047
5226
  msgstr ""
5048
5227
 
@@ -5061,6 +5240,9 @@ msgstr ""
5061
5240
  msgid "Remote action:"
5062
5241
  msgstr ""
5063
5242
 
5243
+ msgid "Remote execution job '${description}' failed."
5244
+ msgstr ""
5245
+
5064
5246
  msgid "Removal of package group(s) requested: %{groups}"
5065
5247
  msgstr ""
5066
5248
 
@@ -5256,7 +5438,7 @@ msgstr ""
5256
5438
  msgid "Repository sets reset to default"
5257
5439
  msgstr ""
5258
5440
 
5259
- msgid "Repository sets will appear here when available."
5441
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5260
5442
  msgstr ""
5261
5443
 
5262
5444
  msgid "Republish Repositories of %{name} %{version}"
@@ -5391,6 +5573,9 @@ msgstr ""
5391
5573
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5392
5574
  msgstr ""
5393
5575
 
5576
+ msgid "Return same, different or all results"
5577
+ msgstr ""
5578
+
5394
5579
  msgid "Return subscriptions that match installed products of the specified host"
5395
5580
  msgstr ""
5396
5581
 
@@ -5409,6 +5594,9 @@ msgstr ""
5409
5594
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5410
5595
  msgstr ""
5411
5596
 
5597
+ msgid "Review Details"
5598
+ msgstr ""
5599
+
5412
5600
  msgid "Review affected environment"
5413
5601
  msgstr ""
5414
5602
 
@@ -5445,12 +5633,27 @@ msgstr ""
5445
5633
  msgid "SKU"
5446
5634
  msgstr ""
5447
5635
 
5636
+ msgid "SLA"
5637
+ msgstr ""
5638
+
5448
5639
  msgid "SRPM details"
5449
5640
  msgstr ""
5450
5641
 
5451
5642
  msgid "SSL CA Content Credential"
5452
5643
  msgstr ""
5453
5644
 
5645
+ msgid "SSL CA certificate"
5646
+ msgstr ""
5647
+
5648
+ msgid "SSL Cert"
5649
+ msgstr ""
5650
+
5651
+ msgid "SSL client certificate"
5652
+ msgstr ""
5653
+
5654
+ msgid "SSL client key"
5655
+ msgstr ""
5656
+
5454
5657
  msgid "SSL version used to communicate with the CDN"
5455
5658
  msgstr ""
5456
5659
 
@@ -5460,6 +5663,9 @@ msgstr ""
5460
5663
  msgid "Save"
5461
5664
  msgstr ""
5462
5665
 
5666
+ msgid "Saving alternate content source..."
5667
+ msgstr ""
5668
+
5463
5669
  msgid "Schedule errata for installation using katello-agent. %s"
5464
5670
  msgstr ""
5465
5671
 
@@ -5529,6 +5735,15 @@ msgstr ""
5529
5735
  msgid "Select Value"
5530
5736
  msgstr ""
5531
5737
 
5738
+ msgid "Select a CA certificate"
5739
+ msgstr ""
5740
+
5741
+ msgid "Select a client certificate"
5742
+ msgstr ""
5743
+
5744
+ msgid "Select a client key"
5745
+ msgstr ""
5746
+
5532
5747
  msgid "Select a content view"
5533
5748
  msgstr ""
5534
5749
 
@@ -5544,6 +5759,9 @@ msgstr ""
5544
5759
  msgid "Select a provider to install katello-host-tools-tracer"
5545
5760
  msgstr ""
5546
5761
 
5762
+ msgid "Select add-ons"
5763
+ msgstr ""
5764
+
5547
5765
  msgid "Select all"
5548
5766
  msgstr ""
5549
5767
 
@@ -5565,7 +5783,7 @@ msgstr ""
5565
5783
  msgid "Select available version of ${cvName} to use"
5566
5784
  msgstr ""
5567
5785
 
5568
- msgid "Select available version of components to use"
5786
+ msgid "Select available version of content views to use"
5569
5787
  msgstr ""
5570
5788
 
5571
5789
  msgid "Select content view"
@@ -5601,6 +5819,18 @@ msgstr ""
5601
5819
  msgid "Select row"
5602
5820
  msgstr ""
5603
5821
 
5822
+ msgid "Select smart proxies to be used with this source."
5823
+ msgstr ""
5824
+
5825
+ msgid "Select smart proxy"
5826
+ msgstr ""
5827
+
5828
+ msgid "Select source type"
5829
+ msgstr ""
5830
+
5831
+ msgid "Select system purpose attributes for host {hostName}."
5832
+ msgstr ""
5833
+
5604
5834
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5605
5835
  msgstr ""
5606
5836
 
@@ -5730,6 +5960,9 @@ msgstr ""
5730
5960
  msgid "Show releases available for the content host"
5731
5961
  msgstr ""
5732
5962
 
5963
+ msgid "Show repositories enabled on the host that are known to Katello"
5964
+ msgstr ""
5965
+
5733
5966
  msgid "Show the available repository types"
5734
5967
  msgstr ""
5735
5968
 
@@ -5763,12 +5996,18 @@ msgstr ""
5763
5996
  msgid "Skipped pulp_auth check after failed pulp check"
5764
5997
  msgstr ""
5765
5998
 
5999
+ msgid "Smart proxies"
6000
+ msgstr ""
6001
+
5766
6002
  msgid "Smart proxy IDs"
5767
6003
  msgstr ""
5768
6004
 
5769
6005
  msgid "Smart proxy content source not found!"
5770
6006
  msgstr ""
5771
6007
 
6008
+ msgid "Sockets"
6009
+ msgstr ""
6010
+
5772
6011
  msgid "Sockets: %s"
5773
6012
  msgstr ""
5774
6013
 
@@ -5862,6 +6101,9 @@ msgstr ""
5862
6101
  msgid "Something went wrong while loading the content views. See the logs for more information"
5863
6102
  msgstr ""
5864
6103
 
6104
+ msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6105
+ msgstr ""
6106
+
5865
6107
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5866
6108
  msgstr ""
5867
6109
 
@@ -5913,6 +6155,9 @@ msgstr ""
5913
6155
  msgid "Source RPMs"
5914
6156
  msgstr ""
5915
6157
 
6158
+ msgid "Source type"
6159
+ msgstr ""
6160
+
5916
6161
  msgid "Specify an export chunk size less than 1_000_000 GB"
5917
6162
  msgstr ""
5918
6163
 
@@ -5970,6 +6215,9 @@ msgstr ""
5970
6215
  msgid "Subnet IDs"
5971
6216
  msgstr ""
5972
6217
 
6218
+ msgid "Subpaths"
6219
+ msgstr ""
6220
+
5973
6221
  msgid "Subscription"
5974
6222
  msgstr ""
5975
6223
 
@@ -6069,6 +6317,9 @@ msgstr ""
6069
6317
  msgid "Successfully initiated removal of %s product(s)"
6070
6318
  msgstr ""
6071
6319
 
6320
+ msgid "Successfully refreshed."
6321
+ msgstr ""
6322
+
6072
6323
  msgid "Successfully removed %s Host(s)."
6073
6324
  msgstr ""
6074
6325
 
@@ -6159,6 +6410,9 @@ msgstr ""
6159
6410
  msgid "Sync state"
6160
6411
  msgstr ""
6161
6412
 
6413
+ msgid "Syncable export"
6414
+ msgstr ""
6415
+
6162
6416
  msgid "Synced "
6163
6417
  msgstr ""
6164
6418
 
@@ -6207,6 +6461,12 @@ msgstr ""
6207
6461
  msgid "System purpose"
6208
6462
  msgstr ""
6209
6463
 
6464
+ msgid "System purpose allows you to set the system\\'s intended use on your network and improves the reporting of usage in Subscription Watch."
6465
+ msgstr ""
6466
+
6467
+ msgid "System purpose attributes updated"
6468
+ msgstr ""
6469
+
6210
6470
  msgid "Tag name"
6211
6471
  msgstr ""
6212
6472
 
@@ -6373,6 +6633,9 @@ msgstr ""
6373
6633
  msgid "The repository is already enabled"
6374
6634
  msgstr ""
6375
6635
 
6636
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6637
+ msgstr ""
6638
+
6376
6639
  msgid "The request did not contain any repository information."
6377
6640
  msgstr ""
6378
6641
 
@@ -6439,6 +6702,9 @@ msgstr ""
6439
6702
  msgid "There is no Manifest History to display."
6440
6703
  msgstr ""
6441
6704
 
6705
+ msgid "There is no downloaded content to clean."
6706
+ msgstr ""
6707
+
6442
6708
  msgid "There is no such HTTP proxy"
6443
6709
  msgstr ""
6444
6710
 
@@ -6595,6 +6861,9 @@ msgstr ""
6595
6861
  msgid "Total steps: "
6596
6862
  msgstr ""
6597
6863
 
6864
+ msgid "Tracer"
6865
+ msgstr ""
6866
+
6598
6867
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6599
6868
  msgstr ""
6600
6869
 
@@ -6604,18 +6873,30 @@ msgstr ""
6604
6873
  msgid "Traces"
6605
6874
  msgstr ""
6606
6875
 
6876
+ msgid "Traces are being enabled"
6877
+ msgstr ""
6878
+
6607
6879
  msgid "Traces are not enabled"
6608
6880
  msgstr ""
6609
6881
 
6610
6882
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6611
6883
  msgstr ""
6612
6884
 
6885
+ msgid "Traces may be enabled by a user with the appropriate permissions."
6886
+ msgstr ""
6887
+
6613
6888
  msgid "Traces may be listed here after {pkgLink}."
6614
6889
  msgstr ""
6615
6890
 
6891
+ msgid "Traces not available"
6892
+ msgstr ""
6893
+
6616
6894
  msgid "Traces that require logout cannot be restarted remotely"
6617
6895
  msgstr ""
6618
6896
 
6897
+ msgid "Traces will be shown here to a user with the appropriate permissions."
6898
+ msgstr ""
6899
+
6619
6900
  msgid "Trigger an auto-attach of subscriptions"
6620
6901
  msgstr ""
6621
6902
 
@@ -6649,6 +6930,9 @@ msgstr ""
6649
6930
  msgid "URL"
6650
6931
  msgstr ""
6651
6932
 
6933
+ msgid "URL and paths"
6934
+ msgstr ""
6935
+
6652
6936
  msgid "URL needs to have a trailing /"
6653
6937
  msgstr ""
6654
6938
 
@@ -6682,6 +6966,9 @@ msgstr ""
6682
6966
  msgid "Unable to connect. Got: %s"
6683
6967
  msgstr ""
6684
6968
 
6969
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
6970
+ msgstr ""
6971
+
6685
6972
  msgid "Unable to detect pulp storage"
6686
6973
  msgstr ""
6687
6974
 
@@ -6715,6 +7002,9 @@ msgstr ""
6715
7002
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6716
7003
  msgstr ""
6717
7004
 
7005
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7006
+ msgstr ""
7007
+
6718
7008
  msgid "Unable to send errata e-mail notification: %{error}"
6719
7009
  msgstr ""
6720
7010
 
@@ -7048,6 +7338,9 @@ msgstr ""
7048
7338
  msgid "Usage of host"
7049
7339
  msgstr ""
7050
7340
 
7341
+ msgid "Usage type"
7342
+ msgstr ""
7343
+
7051
7344
  msgid "Use remote execution by default"
7052
7345
  msgstr ""
7053
7346
 
@@ -7093,6 +7386,9 @@ msgstr ""
7093
7386
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7094
7387
  msgstr ""
7095
7388
 
7389
+ msgid "Verify SSL"
7390
+ msgstr ""
7391
+
7096
7392
  msgid "Verify checksum"
7097
7393
  msgstr ""
7098
7394
 
@@ -7153,7 +7449,10 @@ msgstr ""
7153
7449
  msgid "View tasks "
7154
7450
  msgstr ""
7155
7451
 
7156
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7452
+ msgid "View the Content Views page"
7453
+ msgstr ""
7454
+
7455
+ msgid "View the job"
7157
7456
  msgstr ""
7158
7457
 
7159
7458
  msgid "Virtual"
@@ -7303,6 +7602,9 @@ msgstr ""
7303
7602
  msgid "Your search returned no matching "
7304
7603
  msgstr ""
7305
7604
 
7605
+ msgid "Your search returned no matching DEBs."
7606
+ msgstr ""
7607
+
7306
7608
  msgid "Your search returned no matching Module streams."
7307
7609
  msgstr ""
7308
7610
 
@@ -7315,6 +7617,9 @@ msgstr ""
7315
7617
  msgid "Your search returned no matching hosts."
7316
7618
  msgstr ""
7317
7619
 
7620
+ msgid "Yum"
7621
+ msgstr ""
7622
+
7318
7623
  msgid "Yum Metadata: %s"
7319
7624
  msgstr ""
7320
7625
 
@@ -7549,7 +7854,7 @@ msgstr ""
7549
7854
  msgid "create a filter for a content view"
7550
7855
  msgstr ""
7551
7856
 
7552
- msgid "deb Packages"
7857
+ msgid "deb, package, package group, or docker tag names"
7553
7858
  msgstr ""
7554
7859
 
7555
7860
  msgid "deb_ids is not an array"
@@ -7576,6 +7881,9 @@ msgstr ""
7576
7881
  msgid "description of the repository"
7577
7882
  msgstr ""
7578
7883
 
7884
+ msgid "disk"
7885
+ msgstr ""
7886
+
7579
7887
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7580
7888
  msgstr ""
7581
7889
 
@@ -8068,7 +8376,7 @@ msgstr ""
8068
8376
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8069
8377
  msgstr ""
8070
8378
 
8071
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8379
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8072
8380
  msgstr ""
8073
8381
 
8074
8382
  msgid "type of repo"