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/pa/katello.po CHANGED
@@ -37,6 +37,9 @@ msgstr ""
37
37
  msgid " Content view updated"
38
38
  msgstr ""
39
39
 
40
+ msgid " DEBs"
41
+ msgstr ""
42
+
40
43
  msgid " Either select the latest content view or the content view version. Cannot set both."
41
44
  msgstr ""
42
45
 
@@ -58,10 +61,10 @@ msgstr ""
58
61
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
59
62
  msgstr ""
60
63
 
61
- msgid " content view is used in listed component content views. For more information, "
64
+ msgid " content view is used in listed composite content views."
62
65
  msgstr ""
63
66
 
64
- msgid " content view is used in listed composite content views."
67
+ msgid " content view is used in listed content views. For more information, "
65
68
  msgstr ""
66
69
 
67
70
  msgid " environment cannot be set to an environment already on its path"
@@ -73,6 +76,9 @@ msgstr ""
73
76
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
74
77
  msgstr ""
75
78
 
79
+ msgid " to manage and promote content views, or select a different environment."
80
+ msgstr ""
81
+
76
82
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
77
83
  msgstr ""
78
84
 
@@ -321,6 +327,9 @@ msgstr ""
321
327
  msgid "(Orphaned)"
322
328
  msgstr ""
323
329
 
330
+ msgid "(unset)"
331
+ msgstr ""
332
+
324
333
  msgid ", and"
325
334
  msgstr ""
326
335
 
@@ -348,7 +357,7 @@ msgstr ""
348
357
  msgid "A backend service [ %s ] is unreachable"
349
358
  msgstr ""
350
359
 
351
- msgid "A content view can be added by using the \"Create content view\" button above."
360
+ msgid "A content view can be added by using the \"Create content view\" button below."
352
361
  msgstr ""
353
362
 
354
363
  msgid "A content_type must be provided."
@@ -369,6 +378,12 @@ msgstr ""
369
378
  msgid "A post-promotion summary of hosts with installable errata"
370
379
  msgstr ""
371
380
 
381
+ msgid "A remote execution job is in progress"
382
+ msgstr ""
383
+
384
+ msgid "A remote execution job is in progress."
385
+ msgstr ""
386
+
372
387
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
373
388
  msgstr ""
374
389
 
@@ -456,6 +471,9 @@ msgstr ""
456
471
  msgid "Add Bookmark"
457
472
  msgstr ""
458
473
 
474
+ msgid "Add DEB rule"
475
+ msgstr ""
476
+
459
477
  msgid "Add RPM rule"
460
478
  msgstr ""
461
479
 
@@ -465,13 +483,13 @@ msgstr ""
465
483
  msgid "Add a subscription to a host"
466
484
  msgstr ""
467
485
 
468
- msgid "Add component"
486
+ msgid "Add an alternate content source"
469
487
  msgstr ""
470
488
 
471
- msgid "Add component content views"
489
+ msgid "Add components to the content view"
472
490
  msgstr ""
473
491
 
474
- msgid "Add components to the content view"
492
+ msgid "Add content view"
475
493
  msgstr ""
476
494
 
477
495
  msgid "Add content views"
@@ -486,9 +504,6 @@ msgstr ""
486
504
  msgid "Add filter rule"
487
505
  msgstr ""
488
506
 
489
- msgid "Add filters using the 'Add filter' button above."
490
- msgstr ""
491
-
492
507
  msgid "Add host to collections"
493
508
  msgstr ""
494
509
 
@@ -528,12 +543,18 @@ msgstr ""
528
543
  msgid "Add subscriptions to one or more hosts"
529
544
  msgstr ""
530
545
 
546
+ msgid "Add to this filter using the 'Add Deb rule' button."
547
+ msgstr ""
548
+
531
549
  msgid "Add to this filter using the 'Add RPM rule' button."
532
550
  msgstr ""
533
551
 
534
552
  msgid "Add to this filter using the 'Add filter rule' button."
535
553
  msgstr ""
536
554
 
555
+ msgid "Add-ons"
556
+ msgstr ""
557
+
537
558
  msgid "Added"
538
559
  msgstr ""
539
560
 
@@ -552,6 +573,9 @@ msgstr ""
552
573
  msgid "Addons"
553
574
  msgstr ""
554
575
 
576
+ msgid "Affected Repositories"
577
+ msgstr ""
578
+
555
579
  msgid "Affected repositories"
556
580
  msgstr ""
557
581
 
@@ -658,9 +682,6 @@ msgstr ""
658
682
  msgid "Ansible Collection"
659
683
  msgstr ""
660
684
 
661
- msgid "Ansible Collection Details"
662
- msgstr ""
663
-
664
685
  msgid "Ansible Collections"
665
686
  msgstr ""
666
687
 
@@ -709,6 +730,9 @@ msgstr "ਢਾਂਚਾ ਕਿਸਮ"
709
730
  msgid "Architecture of content in the repository"
710
731
  msgstr ""
711
732
 
733
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
734
+ msgstr ""
735
+
712
736
  msgid "Architecture(s)"
713
737
  msgstr ""
714
738
 
@@ -813,6 +837,9 @@ msgstr ""
813
837
  msgid "Auth URL requires Auth token be set."
814
838
  msgstr ""
815
839
 
840
+ msgid "Authentication type"
841
+ msgstr ""
842
+
816
843
  msgid "Author"
817
844
  msgstr "ਲੇਖਕ"
818
845
 
@@ -834,6 +861,9 @@ msgstr ""
834
861
  msgid "Autosearch delay"
835
862
  msgstr ""
836
863
 
864
+ msgid "Available"
865
+ msgstr ""
866
+
837
867
  msgid "Available Entitlements"
838
868
  msgstr ""
839
869
 
@@ -846,6 +876,9 @@ msgstr ""
846
876
  msgid "Backend System Status"
847
877
  msgstr ""
848
878
 
879
+ msgid "Base URL"
880
+ msgstr ""
881
+
849
882
  msgid "Base URL for finding alternate content"
850
883
  msgstr ""
851
884
 
@@ -891,6 +924,9 @@ msgstr ""
891
924
  msgid "Bookmarks marked as public are available to all users"
892
925
  msgstr ""
893
926
 
927
+ msgid "Both"
928
+ msgstr ""
929
+
894
930
  msgid "Both major and minor parameters have to be used to override a CV version"
895
931
  msgstr ""
896
932
 
@@ -912,6 +948,9 @@ msgstr ""
912
948
  msgid "Bulk remove versions from a content view and reassign systems and keys"
913
949
  msgstr ""
914
950
 
951
+ msgid "CA Cert"
952
+ msgstr ""
953
+
915
954
  msgid "CDN Configuration"
916
955
  msgstr ""
917
956
 
@@ -1146,6 +1185,9 @@ msgstr ""
1146
1185
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1147
1186
  msgstr ""
1148
1187
 
1188
+ msgid "Check if the specified organization has Simple Content Access enabled"
1189
+ msgstr ""
1190
+
1149
1191
  msgid "Check if the specified organization is eligible for Simple Content Access"
1150
1192
  msgstr ""
1151
1193
 
@@ -1155,9 +1197,6 @@ msgstr ""
1155
1197
  msgid "Checksum"
1156
1198
  msgstr ""
1157
1199
 
1158
- msgid "Checksum is a required parameter."
1159
- msgstr ""
1160
-
1161
1200
  msgid "Checksum of file to upload"
1162
1201
  msgstr ""
1163
1202
 
@@ -1170,12 +1209,21 @@ msgstr ""
1170
1209
  msgid "Clear any previous registration and run subscription-manager with --force."
1171
1210
  msgstr ""
1172
1211
 
1212
+ msgid "Clear filters"
1213
+ msgstr ""
1214
+
1215
+ msgid "Clear search"
1216
+ msgstr ""
1217
+
1173
1218
  msgid "Click here to go to the tasks page for the task."
1174
1219
  msgstr ""
1175
1220
 
1176
1221
  msgid "Click {update} below to save changes."
1177
1222
  msgstr ""
1178
1223
 
1224
+ msgid "Client key"
1225
+ msgstr ""
1226
+
1179
1227
  msgid "Clone"
1180
1228
  msgstr "ਕਲੋਨ"
1181
1229
 
@@ -1206,12 +1254,6 @@ msgstr ""
1206
1254
  msgid "Component Content View"
1207
1255
  msgstr ""
1208
1256
 
1209
- msgid "Component content view"
1210
- msgstr ""
1211
-
1212
- msgid "Component content views"
1213
- msgstr ""
1214
-
1215
1257
  msgid "Components"
1216
1258
  msgstr ""
1217
1259
 
@@ -1242,7 +1284,7 @@ msgstr ""
1242
1284
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1243
1285
  msgstr ""
1244
1286
 
1245
- msgid "Consisting of multiple component content views"
1287
+ msgid "Consisting of multiple content views"
1246
1288
  msgstr ""
1247
1289
 
1248
1290
  msgid "Consists of content views"
@@ -1374,6 +1416,12 @@ msgstr ""
1374
1416
  msgid "Content Views"
1375
1417
  msgstr ""
1376
1418
 
1419
+ msgid "Content credential"
1420
+ msgstr ""
1421
+
1422
+ msgid "Content credentials"
1423
+ msgstr ""
1424
+
1377
1425
  msgid "Content files to upload. Can be a single file or array of files."
1378
1426
  msgstr ""
1379
1427
 
@@ -1491,6 +1539,9 @@ msgstr ""
1491
1539
  msgid "Copy version units to library"
1492
1540
  msgstr ""
1493
1541
 
1542
+ msgid "Cores per socket"
1543
+ msgstr ""
1544
+
1494
1545
  msgid "Cores: %s"
1495
1546
  msgstr ""
1496
1547
 
@@ -1602,6 +1653,9 @@ msgstr ""
1602
1653
  msgid "Couldn't find smart proxies with id '%s'"
1603
1654
  msgstr ""
1604
1655
 
1656
+ msgid "Couldn't find smart proxies with name '%s'"
1657
+ msgstr ""
1658
+
1605
1659
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1606
1660
  msgstr ""
1607
1661
 
@@ -1614,6 +1668,9 @@ msgstr ""
1614
1668
  msgid "Create"
1615
1669
  msgstr ""
1616
1670
 
1671
+ msgid "Create ACS"
1672
+ msgstr ""
1673
+
1617
1674
  msgid "Create Alternate Content Source"
1618
1675
  msgstr ""
1619
1676
 
@@ -1629,12 +1686,18 @@ msgstr ""
1629
1686
  msgid "Create Repositories"
1630
1687
  msgstr ""
1631
1688
 
1689
+ msgid "Create Syncable Export History"
1690
+ msgstr ""
1691
+
1632
1692
  msgid "Create a Content Credential"
1633
1693
  msgstr ""
1634
1694
 
1635
1695
  msgid "Create a content view"
1636
1696
  msgstr ""
1637
1697
 
1698
+ msgid "Create a custom product"
1699
+ msgstr ""
1700
+
1638
1701
  msgid "Create a custom repository"
1639
1702
  msgstr ""
1640
1703
 
@@ -1674,16 +1737,28 @@ msgstr ""
1674
1737
  msgid "Create filter"
1675
1738
  msgstr ""
1676
1739
 
1740
+ msgid "Create host collection"
1741
+ msgstr ""
1742
+
1677
1743
  msgid "Create organization"
1678
1744
  msgstr ""
1679
1745
 
1746
+ msgid "Create package filter rule"
1747
+ msgstr ""
1748
+
1749
+ msgid "Create rule"
1750
+ msgstr ""
1751
+
1752
+ msgid "Credentials"
1753
+ msgstr ""
1754
+
1680
1755
  msgid "Critical"
1681
1756
  msgstr ""
1682
1757
 
1683
1758
  msgid "Cron expression is not valid!"
1684
1759
  msgstr ""
1685
1760
 
1686
- msgid "Current organization has no manifest imported."
1761
+ msgid "Current organization does not have a manifest imported."
1687
1762
  msgstr ""
1688
1763
 
1689
1764
  msgid "Current organization is not set."
@@ -1692,6 +1767,9 @@ msgstr ""
1692
1767
  msgid "Current organization not set."
1693
1768
  msgstr ""
1694
1769
 
1770
+ msgid "Custom"
1771
+ msgstr ""
1772
+
1695
1773
  msgid "Custom Content Repositories"
1696
1774
  msgstr ""
1697
1775
 
@@ -1704,6 +1782,9 @@ msgstr ""
1704
1782
  msgid "Customize with Rex"
1705
1783
  msgstr ""
1706
1784
 
1785
+ msgid "DEB name"
1786
+ msgstr ""
1787
+
1707
1788
  msgid "Database connection"
1708
1789
  msgstr ""
1709
1790
 
@@ -1719,12 +1800,18 @@ msgstr ""
1719
1800
  msgid "Days from Now"
1720
1801
  msgstr ""
1721
1802
 
1803
+ msgid "Deb"
1804
+ msgstr ""
1805
+
1722
1806
  msgid "Deb Package"
1723
1807
  msgstr ""
1724
1808
 
1725
1809
  msgid "Deb Packages"
1726
1810
  msgstr ""
1727
1811
 
1812
+ msgid "Deb name"
1813
+ msgstr ""
1814
+
1728
1815
  msgid "Deb package identifiers to filter content by"
1729
1816
  msgstr ""
1730
1817
 
@@ -1980,6 +2067,9 @@ msgstr ""
1980
2067
  msgid "Destroy an environment in an organization"
1981
2068
  msgstr ""
1982
2069
 
2070
+ msgid "Destroy one or more alternate content sources"
2071
+ msgstr ""
2072
+
1983
2073
  msgid "Destroy one or more hosts"
1984
2074
  msgstr ""
1985
2075
 
@@ -2073,9 +2163,15 @@ msgstr ""
2073
2163
  msgid "Edit filter rule"
2074
2164
  msgstr ""
2075
2165
 
2166
+ msgid "Edit package filter rule"
2167
+ msgstr ""
2168
+
2076
2169
  msgid "Edit rule"
2077
2170
  msgstr ""
2078
2171
 
2172
+ msgid "Edit system purpose attributes"
2173
+ msgstr ""
2174
+
2079
2175
  msgid "Editing Entitlements"
2080
2176
  msgstr ""
2081
2177
 
@@ -2100,6 +2196,9 @@ msgstr ""
2100
2196
  msgid "Enable"
2101
2197
  msgstr ""
2102
2198
 
2199
+ msgid "Enable Red Hat repositories"
2200
+ msgstr ""
2201
+
2103
2202
  msgid "Enable Simple Content Access"
2104
2203
  msgstr ""
2105
2204
 
@@ -2145,9 +2244,15 @@ msgstr ""
2145
2244
  msgid "Enter a name"
2146
2245
  msgstr ""
2147
2246
 
2247
+ msgid "Enter a name for your source."
2248
+ msgstr ""
2249
+
2148
2250
  msgid "Enter a valid date: MM/DD/YYYY"
2149
2251
  msgstr ""
2150
2252
 
2253
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2254
+ msgstr ""
2255
+
2151
2256
  msgid "Entitlements"
2152
2257
  msgstr ""
2153
2258
 
@@ -2289,6 +2394,11 @@ msgstr ""
2289
2394
  msgid "Export as CSV"
2290
2395
  msgstr ""
2291
2396
 
2397
+ msgid ""
2398
+ "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"
2399
+ " Defaults to importable."
2400
+ msgstr ""
2401
+
2292
2402
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2293
2403
  msgstr ""
2294
2404
 
@@ -2339,6 +2449,9 @@ msgstr ""
2339
2449
  msgid "Fetch traces for one or more hosts"
2340
2450
  msgstr ""
2341
2451
 
2452
+ msgid "Fetching content credentials"
2453
+ msgstr ""
2454
+
2342
2455
  msgid "Field to sort the results on"
2343
2456
  msgstr ""
2344
2457
 
@@ -2429,6 +2542,9 @@ msgstr "ਫਿਲਟਰ"
2429
2542
  msgid "Filters deleted"
2430
2543
  msgstr ""
2431
2544
 
2545
+ msgid "Filters will appear here when the filter is created."
2546
+ msgstr ""
2547
+
2432
2548
  msgid "Finish"
2433
2549
  msgstr ""
2434
2550
 
@@ -2533,6 +2649,9 @@ msgstr ""
2533
2649
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2534
2650
  msgstr ""
2535
2651
 
2652
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2653
+ msgstr ""
2654
+
2536
2655
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2537
2656
  msgstr ""
2538
2657
 
@@ -2563,6 +2682,9 @@ msgstr ""
2563
2682
  msgid "HTTP Proxy identifier to associated"
2564
2683
  msgstr ""
2565
2684
 
2685
+ msgid "HW properties"
2686
+ msgstr ""
2687
+
2566
2688
  msgid "Has to be > 0"
2567
2689
  msgstr ""
2568
2690
 
@@ -2770,9 +2892,6 @@ msgstr ""
2770
2892
  msgid "ID: %s doesn't exist "
2771
2893
  msgstr ""
2772
2894
 
2773
- msgid "Id"
2774
- msgstr ""
2775
-
2776
2895
  msgid "Id of a deb package to find repositories that contain the deb"
2777
2896
  msgstr ""
2778
2897
 
@@ -3049,6 +3168,9 @@ msgstr ""
3049
3168
  msgid "Index package groups"
3050
3169
  msgstr ""
3051
3170
 
3171
+ msgid "Indicate the source type."
3172
+ msgstr ""
3173
+
3052
3174
  msgid "Informable Type must be one of the following [ %{list} ]"
3053
3175
  msgstr ""
3054
3176
 
@@ -3136,6 +3258,9 @@ msgstr ""
3136
3258
  msgid "Installation status"
3137
3259
  msgstr ""
3138
3260
 
3261
+ msgid "Installed"
3262
+ msgstr ""
3263
+
3139
3264
  msgid "Installed Packages"
3140
3265
  msgstr ""
3141
3266
 
@@ -3211,6 +3336,9 @@ msgstr ""
3211
3336
  msgid "Invalid event_type %s"
3212
3337
  msgstr ""
3213
3338
 
3339
+ msgid "Invalid export format provided. Format must be one of %s "
3340
+ msgstr ""
3341
+
3214
3342
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3215
3343
  msgstr ""
3216
3344
 
@@ -3229,6 +3357,9 @@ msgstr ""
3229
3357
  msgid "Invalid params provided - date_type must be one of %s"
3230
3358
  msgstr ""
3231
3359
 
3360
+ msgid "Invalid release version: [%s]"
3361
+ msgstr ""
3362
+
3232
3363
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3233
3364
  msgstr ""
3234
3365
 
@@ -3247,7 +3378,10 @@ msgstr ""
3247
3378
  msgid "Issued from"
3248
3379
  msgstr ""
3249
3380
 
3250
- msgid "Job ${description} has started."
3381
+ msgid "Job '${description}' completed"
3382
+ msgstr ""
3383
+
3384
+ msgid "Job '${description}' has started."
3251
3385
  msgstr ""
3252
3386
 
3253
3387
  msgid "Katello ID of local pool to update"
@@ -3319,9 +3453,18 @@ msgstr ""
3319
3453
  msgid "Label of the content view"
3320
3454
  msgstr ""
3321
3455
 
3456
+ msgid "Last Refresh"
3457
+ msgstr ""
3458
+
3459
+ msgid "Last check-in:"
3460
+ msgstr ""
3461
+
3322
3462
  msgid "Last published"
3323
3463
  msgstr ""
3324
3464
 
3465
+ msgid "Last refresh :"
3466
+ msgstr ""
3467
+
3325
3468
  msgid "Last task"
3326
3469
  msgstr ""
3327
3470
 
@@ -3502,6 +3645,9 @@ msgstr ""
3502
3645
  msgid "List of Products for sync plan"
3503
3646
  msgstr ""
3504
3647
 
3648
+ msgid "List of alternate content source IDs"
3649
+ msgstr ""
3650
+
3505
3651
  msgid "List of alternate_content_sources"
3506
3652
  msgstr ""
3507
3653
 
@@ -3700,6 +3846,12 @@ msgstr ""
3700
3846
  msgid "Manifest refreshed"
3701
3847
  msgstr ""
3702
3848
 
3849
+ msgid "Manual"
3850
+ msgstr ""
3851
+
3852
+ msgid "Manual authentication"
3853
+ msgstr ""
3854
+
3703
3855
  msgid "Mark Content Host Statuses as Unknown for %s"
3704
3856
  msgstr ""
3705
3857
 
@@ -3763,6 +3915,9 @@ msgstr ""
3763
3915
  msgid "Missing arguments %{substitutions} for %{content_url}"
3764
3916
  msgstr ""
3765
3917
 
3918
+ msgid "Model"
3919
+ msgstr ""
3920
+
3766
3921
  msgid "Moderate"
3767
3922
  msgstr ""
3768
3923
 
@@ -3784,7 +3939,7 @@ msgstr ""
3784
3939
  msgid "Module streams"
3785
3940
  msgstr ""
3786
3941
 
3787
- msgid "Module streams will appear here when available."
3942
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3788
3943
  msgstr ""
3789
3944
 
3790
3945
  msgid "Multi-entitlement"
@@ -3818,9 +3973,6 @@ msgstr ""
3818
3973
  msgid "Name"
3819
3974
  msgstr "ਨਾਂ"
3820
3975
 
3821
- msgid "Name is a required parameter."
3822
- msgstr ""
3823
-
3824
3976
  msgid "Name of new activation key"
3825
3977
  msgstr ""
3826
3978
 
@@ -3842,6 +3994,12 @@ msgstr ""
3842
3994
  msgid "Name of the upstream docker repository"
3843
3995
  msgstr ""
3844
3996
 
3997
+ msgid "Name source"
3998
+ msgstr ""
3999
+
4000
+ msgid "Names of smart proxies to associate"
4001
+ msgstr ""
4002
+
3845
4003
  msgid "Needs to only be set for docker tags"
3846
4004
  msgstr ""
3847
4005
 
@@ -3854,6 +4012,9 @@ msgstr ""
3854
4012
  msgid "Network Sync"
3855
4013
  msgstr ""
3856
4014
 
4015
+ msgid "Never"
4016
+ msgstr ""
4017
+
3857
4018
  msgid "Never Synced"
3858
4019
  msgstr ""
3859
4020
 
@@ -4028,6 +4189,9 @@ msgstr ""
4028
4189
  msgid "No matching ${selectedContentType} found"
4029
4190
  msgstr ""
4030
4191
 
4192
+ msgid "No matching DEB found."
4193
+ msgstr ""
4194
+
4031
4195
  msgid "No matching RPM found."
4032
4196
  msgstr ""
4033
4197
 
@@ -4187,6 +4351,9 @@ msgstr ""
4187
4351
  msgid "Not all necessary pulp workers running at %s."
4188
4352
  msgstr ""
4189
4353
 
4354
+ msgid "Not installed"
4355
+ msgstr ""
4356
+
4190
4357
  msgid "Not running"
4191
4358
  msgstr ""
4192
4359
 
@@ -4205,6 +4372,9 @@ msgstr ""
4205
4372
  msgid "Nothing selected"
4206
4373
  msgstr ""
4207
4374
 
4375
+ msgid "Number of CPU(s)"
4376
+ msgstr ""
4377
+
4208
4378
  msgid "Number of host applicability calculations to process per task."
4209
4379
  msgstr ""
4210
4380
 
@@ -4217,6 +4387,9 @@ msgstr ""
4217
4387
  msgid "Number to Allocate"
4218
4388
  msgstr ""
4219
4389
 
4390
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4391
+ msgstr ""
4392
+
4220
4393
  msgid "OSTree Branch"
4221
4394
  msgstr ""
4222
4395
 
@@ -4532,12 +4705,6 @@ msgstr ""
4532
4705
  msgid "Path"
4533
4706
  msgstr "ਰਾਹ"
4534
4707
 
4535
- msgid "Path for ssl cert used for pulp server auth"
4536
- msgstr ""
4537
-
4538
- msgid "Path for ssl key used for pulp server auth"
4539
- msgstr ""
4540
-
4541
4708
  msgid "Path suffixes for finding alternate content"
4542
4709
  msgstr ""
4543
4710
 
@@ -4804,12 +4971,6 @@ msgstr ""
4804
4971
  msgid "Pulp bulk load size"
4805
4972
  msgstr ""
4806
4973
 
4807
- msgid "Pulp client cert"
4808
- msgstr ""
4809
-
4810
- msgid "Pulp client key"
4811
- msgstr ""
4812
-
4813
4974
  msgid "Pulp database connection issue at %s."
4814
4975
  msgstr ""
4815
4976
 
@@ -4888,6 +5049,9 @@ msgstr ""
4888
5049
  msgid "Quantity to Allocate"
4889
5050
  msgstr ""
4890
5051
 
5052
+ msgid "RAM"
5053
+ msgstr ""
5054
+
4891
5055
  msgid "RAM: %s GB"
4892
5056
  msgstr ""
4893
5057
 
@@ -4987,15 +5151,27 @@ msgstr ""
4987
5151
  msgid "Refresh"
4988
5152
  msgstr ""
4989
5153
 
5154
+ msgid "Refresh Alternate Content Source"
5155
+ msgstr ""
5156
+
4990
5157
  msgid "Refresh Content Host Statuses for %s"
4991
5158
  msgstr ""
4992
5159
 
4993
5160
  msgid "Refresh Manifest"
4994
5161
  msgstr ""
4995
5162
 
5163
+ msgid "Refresh alternate content sources"
5164
+ msgstr ""
5165
+
5166
+ msgid "Refresh an alternate content source"
5167
+ msgstr ""
5168
+
4996
5169
  msgid "Refresh previously imported manifest for Red Hat provider"
4997
5170
  msgstr ""
4998
5171
 
5172
+ msgid "Refresh source"
5173
+ msgstr ""
5174
+
4999
5175
  msgid "Refresh_Content_Host_Status"
5000
5176
  msgstr ""
5001
5177
 
@@ -5029,24 +5205,27 @@ msgstr ""
5029
5205
  msgid "Reindex subscriptions"
5030
5206
  msgstr ""
5031
5207
 
5032
- msgid "Related component content views"
5208
+ msgid "Related composite content views"
5033
5209
  msgstr ""
5034
5210
 
5035
- msgid "Related component cvs: "
5211
+ msgid "Related composite content views: "
5036
5212
  msgstr ""
5037
5213
 
5038
- msgid "Related composite content views"
5214
+ msgid "Related content views"
5039
5215
  msgstr ""
5040
5216
 
5041
- msgid "Related composite cvs: "
5217
+ msgid "Related content views will appear here when created."
5042
5218
  msgstr ""
5043
5219
 
5044
- msgid "Related content views will appear here when created."
5220
+ msgid "Related content views: "
5045
5221
  msgstr ""
5046
5222
 
5047
5223
  msgid "Release"
5048
5224
  msgstr ""
5049
5225
 
5226
+ msgid "Release version"
5227
+ msgstr ""
5228
+
5050
5229
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5051
5230
  msgstr ""
5052
5231
 
@@ -5065,6 +5244,9 @@ msgstr ""
5065
5244
  msgid "Remote action:"
5066
5245
  msgstr ""
5067
5246
 
5247
+ msgid "Remote execution job '${description}' failed."
5248
+ msgstr ""
5249
+
5068
5250
  msgid "Removal of package group(s) requested: %{groups}"
5069
5251
  msgstr ""
5070
5252
 
@@ -5260,7 +5442,7 @@ msgstr ""
5260
5442
  msgid "Repository sets reset to default"
5261
5443
  msgstr ""
5262
5444
 
5263
- msgid "Repository sets will appear here when available."
5445
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5264
5446
  msgstr ""
5265
5447
 
5266
5448
  msgid "Republish Repositories of %{name} %{version}"
@@ -5395,6 +5577,9 @@ msgstr ""
5395
5577
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5396
5578
  msgstr ""
5397
5579
 
5580
+ msgid "Return same, different or all results"
5581
+ msgstr ""
5582
+
5398
5583
  msgid "Return subscriptions that match installed products of the specified host"
5399
5584
  msgstr ""
5400
5585
 
@@ -5413,6 +5598,9 @@ msgstr ""
5413
5598
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5414
5599
  msgstr ""
5415
5600
 
5601
+ msgid "Review Details"
5602
+ msgstr ""
5603
+
5416
5604
  msgid "Review affected environment"
5417
5605
  msgstr ""
5418
5606
 
@@ -5449,12 +5637,27 @@ msgstr ""
5449
5637
  msgid "SKU"
5450
5638
  msgstr ""
5451
5639
 
5640
+ msgid "SLA"
5641
+ msgstr ""
5642
+
5452
5643
  msgid "SRPM details"
5453
5644
  msgstr ""
5454
5645
 
5455
5646
  msgid "SSL CA Content Credential"
5456
5647
  msgstr ""
5457
5648
 
5649
+ msgid "SSL CA certificate"
5650
+ msgstr ""
5651
+
5652
+ msgid "SSL Cert"
5653
+ msgstr ""
5654
+
5655
+ msgid "SSL client certificate"
5656
+ msgstr ""
5657
+
5658
+ msgid "SSL client key"
5659
+ msgstr ""
5660
+
5458
5661
  msgid "SSL version used to communicate with the CDN"
5459
5662
  msgstr ""
5460
5663
 
@@ -5464,6 +5667,9 @@ msgstr ""
5464
5667
  msgid "Save"
5465
5668
  msgstr "ਸੰਭਾਲੋ"
5466
5669
 
5670
+ msgid "Saving alternate content source..."
5671
+ msgstr ""
5672
+
5467
5673
  msgid "Schedule errata for installation using katello-agent. %s"
5468
5674
  msgstr ""
5469
5675
 
@@ -5533,6 +5739,15 @@ msgstr "ਸੰਗਠਨ ਚੁਣੋ"
5533
5739
  msgid "Select Value"
5534
5740
  msgstr ""
5535
5741
 
5742
+ msgid "Select a CA certificate"
5743
+ msgstr ""
5744
+
5745
+ msgid "Select a client certificate"
5746
+ msgstr ""
5747
+
5748
+ msgid "Select a client key"
5749
+ msgstr ""
5750
+
5536
5751
  msgid "Select a content view"
5537
5752
  msgstr ""
5538
5753
 
@@ -5548,6 +5763,9 @@ msgstr ""
5548
5763
  msgid "Select a provider to install katello-host-tools-tracer"
5549
5764
  msgstr ""
5550
5765
 
5766
+ msgid "Select add-ons"
5767
+ msgstr ""
5768
+
5551
5769
  msgid "Select all"
5552
5770
  msgstr ""
5553
5771
 
@@ -5569,7 +5787,7 @@ msgstr ""
5569
5787
  msgid "Select available version of ${cvName} to use"
5570
5788
  msgstr ""
5571
5789
 
5572
- msgid "Select available version of components to use"
5790
+ msgid "Select available version of content views to use"
5573
5791
  msgstr ""
5574
5792
 
5575
5793
  msgid "Select content view"
@@ -5605,6 +5823,18 @@ msgstr ""
5605
5823
  msgid "Select row"
5606
5824
  msgstr ""
5607
5825
 
5826
+ msgid "Select smart proxies to be used with this source."
5827
+ msgstr ""
5828
+
5829
+ msgid "Select smart proxy"
5830
+ msgstr ""
5831
+
5832
+ msgid "Select source type"
5833
+ msgstr ""
5834
+
5835
+ msgid "Select system purpose attributes for host {hostName}."
5836
+ msgstr ""
5837
+
5608
5838
  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."
5609
5839
  msgstr ""
5610
5840
 
@@ -5734,6 +5964,9 @@ msgstr ""
5734
5964
  msgid "Show releases available for the content host"
5735
5965
  msgstr ""
5736
5966
 
5967
+ msgid "Show repositories enabled on the host that are known to Katello"
5968
+ msgstr ""
5969
+
5737
5970
  msgid "Show the available repository types"
5738
5971
  msgstr ""
5739
5972
 
@@ -5767,12 +6000,18 @@ msgstr ""
5767
6000
  msgid "Skipped pulp_auth check after failed pulp check"
5768
6001
  msgstr ""
5769
6002
 
6003
+ msgid "Smart proxies"
6004
+ msgstr ""
6005
+
5770
6006
  msgid "Smart proxy IDs"
5771
6007
  msgstr ""
5772
6008
 
5773
6009
  msgid "Smart proxy content source not found!"
5774
6010
  msgstr ""
5775
6011
 
6012
+ msgid "Sockets"
6013
+ msgstr ""
6014
+
5776
6015
  msgid "Sockets: %s"
5777
6016
  msgstr ""
5778
6017
 
@@ -5866,6 +6105,9 @@ msgstr ""
5866
6105
  msgid "Something went wrong while loading the content views. See the logs for more information"
5867
6106
  msgstr ""
5868
6107
 
6108
+ msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6109
+ msgstr ""
6110
+
5869
6111
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5870
6112
  msgstr ""
5871
6113
 
@@ -5917,6 +6159,9 @@ msgstr ""
5917
6159
  msgid "Source RPMs"
5918
6160
  msgstr ""
5919
6161
 
6162
+ msgid "Source type"
6163
+ msgstr ""
6164
+
5920
6165
  msgid "Specify an export chunk size less than 1_000_000 GB"
5921
6166
  msgstr ""
5922
6167
 
@@ -5974,6 +6219,9 @@ msgstr ""
5974
6219
  msgid "Subnet IDs"
5975
6220
  msgstr ""
5976
6221
 
6222
+ msgid "Subpaths"
6223
+ msgstr ""
6224
+
5977
6225
  msgid "Subscription"
5978
6226
  msgstr ""
5979
6227
 
@@ -6073,6 +6321,9 @@ msgstr ""
6073
6321
  msgid "Successfully initiated removal of %s product(s)"
6074
6322
  msgstr ""
6075
6323
 
6324
+ msgid "Successfully refreshed."
6325
+ msgstr ""
6326
+
6076
6327
  msgid "Successfully removed %s Host(s)."
6077
6328
  msgstr ""
6078
6329
 
@@ -6163,6 +6414,9 @@ msgstr ""
6163
6414
  msgid "Sync state"
6164
6415
  msgstr ""
6165
6416
 
6417
+ msgid "Syncable export"
6418
+ msgstr ""
6419
+
6166
6420
  msgid "Synced "
6167
6421
  msgstr ""
6168
6422
 
@@ -6211,6 +6465,12 @@ msgstr "ਸਿਸਟਮ ਸਥਿਤੀ"
6211
6465
  msgid "System purpose"
6212
6466
  msgstr ""
6213
6467
 
6468
+ msgid "System purpose allows you to set the system\\'s intended use on your network and improves the reporting of usage in Subscription Watch."
6469
+ msgstr ""
6470
+
6471
+ msgid "System purpose attributes updated"
6472
+ msgstr ""
6473
+
6214
6474
  msgid "Tag name"
6215
6475
  msgstr ""
6216
6476
 
@@ -6377,6 +6637,9 @@ msgstr ""
6377
6637
  msgid "The repository is already enabled"
6378
6638
  msgstr ""
6379
6639
 
6640
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6641
+ msgstr ""
6642
+
6380
6643
  msgid "The request did not contain any repository information."
6381
6644
  msgstr ""
6382
6645
 
@@ -6443,6 +6706,9 @@ msgstr ""
6443
6706
  msgid "There is no Manifest History to display."
6444
6707
  msgstr ""
6445
6708
 
6709
+ msgid "There is no downloaded content to clean."
6710
+ msgstr ""
6711
+
6446
6712
  msgid "There is no such HTTP proxy"
6447
6713
  msgstr ""
6448
6714
 
@@ -6599,6 +6865,9 @@ msgstr ""
6599
6865
  msgid "Total steps: "
6600
6866
  msgstr ""
6601
6867
 
6868
+ msgid "Tracer"
6869
+ msgstr ""
6870
+
6602
6871
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6603
6872
  msgstr ""
6604
6873
 
@@ -6608,18 +6877,30 @@ msgstr ""
6608
6877
  msgid "Traces"
6609
6878
  msgstr ""
6610
6879
 
6880
+ msgid "Traces are being enabled"
6881
+ msgstr ""
6882
+
6611
6883
  msgid "Traces are not enabled"
6612
6884
  msgstr ""
6613
6885
 
6614
6886
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6615
6887
  msgstr ""
6616
6888
 
6889
+ msgid "Traces may be enabled by a user with the appropriate permissions."
6890
+ msgstr ""
6891
+
6617
6892
  msgid "Traces may be listed here after {pkgLink}."
6618
6893
  msgstr ""
6619
6894
 
6895
+ msgid "Traces not available"
6896
+ msgstr ""
6897
+
6620
6898
  msgid "Traces that require logout cannot be restarted remotely"
6621
6899
  msgstr ""
6622
6900
 
6901
+ msgid "Traces will be shown here to a user with the appropriate permissions."
6902
+ msgstr ""
6903
+
6623
6904
  msgid "Trigger an auto-attach of subscriptions"
6624
6905
  msgstr ""
6625
6906
 
@@ -6653,6 +6934,9 @@ msgstr ""
6653
6934
  msgid "URL"
6654
6935
  msgstr "URL"
6655
6936
 
6937
+ msgid "URL and paths"
6938
+ msgstr ""
6939
+
6656
6940
  msgid "URL needs to have a trailing /"
6657
6941
  msgstr ""
6658
6942
 
@@ -6686,6 +6970,9 @@ msgstr ""
6686
6970
  msgid "Unable to connect. Got: %s"
6687
6971
  msgstr ""
6688
6972
 
6973
+ 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."
6974
+ msgstr ""
6975
+
6689
6976
  msgid "Unable to detect pulp storage"
6690
6977
  msgstr ""
6691
6978
 
@@ -6719,6 +7006,9 @@ msgstr ""
6719
7006
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6720
7007
  msgstr ""
6721
7008
 
7009
+ 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."
7010
+ msgstr ""
7011
+
6722
7012
  msgid "Unable to send errata e-mail notification: %{error}"
6723
7013
  msgstr ""
6724
7014
 
@@ -7052,6 +7342,9 @@ msgstr ""
7052
7342
  msgid "Usage of host"
7053
7343
  msgstr ""
7054
7344
 
7345
+ msgid "Usage type"
7346
+ msgstr ""
7347
+
7055
7348
  msgid "Use remote execution by default"
7056
7349
  msgstr ""
7057
7350
 
@@ -7097,6 +7390,9 @@ msgstr ""
7097
7390
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7098
7391
  msgstr ""
7099
7392
 
7393
+ msgid "Verify SSL"
7394
+ msgstr ""
7395
+
7100
7396
  msgid "Verify checksum"
7101
7397
  msgstr ""
7102
7398
 
@@ -7157,7 +7453,10 @@ msgstr ""
7157
7453
  msgid "View tasks "
7158
7454
  msgstr ""
7159
7455
 
7160
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7456
+ msgid "View the Content Views page"
7457
+ msgstr ""
7458
+
7459
+ msgid "View the job"
7161
7460
  msgstr ""
7162
7461
 
7163
7462
  msgid "Virtual"
@@ -7307,6 +7606,9 @@ msgstr ""
7307
7606
  msgid "Your search returned no matching "
7308
7607
  msgstr ""
7309
7608
 
7609
+ msgid "Your search returned no matching DEBs."
7610
+ msgstr ""
7611
+
7310
7612
  msgid "Your search returned no matching Module streams."
7311
7613
  msgstr ""
7312
7614
 
@@ -7319,6 +7621,9 @@ msgstr ""
7319
7621
  msgid "Your search returned no matching hosts."
7320
7622
  msgstr ""
7321
7623
 
7624
+ msgid "Yum"
7625
+ msgstr ""
7626
+
7322
7627
  msgid "Yum Metadata: %s"
7323
7628
  msgstr ""
7324
7629
 
@@ -7553,7 +7858,7 @@ msgstr ""
7553
7858
  msgid "create a filter for a content view"
7554
7859
  msgstr ""
7555
7860
 
7556
- msgid "deb Packages"
7861
+ msgid "deb, package, package group, or docker tag names"
7557
7862
  msgstr ""
7558
7863
 
7559
7864
  msgid "deb_ids is not an array"
@@ -7580,6 +7885,9 @@ msgstr ""
7580
7885
  msgid "description of the repository"
7581
7886
  msgstr ""
7582
7887
 
7888
+ msgid "disk"
7889
+ msgstr ""
7890
+
7583
7891
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7584
7892
  msgstr ""
7585
7893
 
@@ -8072,7 +8380,7 @@ msgstr ""
8072
8380
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8073
8381
  msgstr ""
8074
8382
 
8075
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8383
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8076
8384
  msgstr ""
8077
8385
 
8078
8386
  msgid "type of repo"