katello 4.6.2.1 → 4.7.0.rc1

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

Potentially problematic release.


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

Files changed (333) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +4 -4
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -1
  9. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +78 -12
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  13. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -1
  14. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  15. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -9
  16. data/app/helpers/katello/content_source_helper.rb +9 -0
  17. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +31 -0
  18. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  19. data/app/lib/actions/katello/agent_action.rb +1 -0
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +1 -1
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +2 -2
  22. data/app/lib/actions/katello/capsule_content/sync.rb +10 -2
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  24. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  27. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  28. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  29. data/app/lib/actions/katello/product/destroy.rb +1 -1
  30. data/app/lib/actions/katello/repository/destroy.rb +3 -3
  31. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -1
  33. data/app/lib/actions/katello/repository/sync.rb +13 -6
  34. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  36. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +1 -0
  37. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +1 -1
  38. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +10 -2
  39. data/app/lib/katello/concerns/renderer_extensions.rb +2 -1
  40. data/app/lib/katello/errors.rb +2 -2
  41. data/app/lib/katello/resources/candlepin.rb +7 -1
  42. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  43. data/app/lib/katello/resources/cdn.rb +14 -9
  44. data/app/lib/katello/util/candlepin_repository_checker.rb +73 -0
  45. data/app/models/katello/activation_key.rb +12 -1
  46. data/app/models/katello/alternate_content_source.rb +15 -4
  47. data/app/models/katello/alternate_content_source_product.rb +1 -1
  48. data/app/models/katello/authorization/repository.rb +2 -2
  49. data/app/models/katello/cdn_configuration.rb +12 -3
  50. data/app/models/katello/concerns/host_managed_extensions.rb +15 -2
  51. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  52. data/app/models/katello/concerns/smart_proxy_extensions.rb +30 -15
  53. data/app/models/katello/content.rb +15 -0
  54. data/app/models/katello/content_credential.rb +8 -9
  55. data/app/models/katello/content_view.rb +7 -3
  56. data/app/models/katello/content_view_component.rb +4 -0
  57. data/app/models/katello/content_view_version.rb +1 -1
  58. data/app/models/katello/erratum.rb +6 -2
  59. data/app/models/katello/host/content_facet.rb +13 -3
  60. data/app/models/katello/repository.rb +15 -1
  61. data/app/models/katello/root_repository.rb +0 -2
  62. data/app/overrides/add_smart_proxy_form.rb +5 -0
  63. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  64. data/app/presenters/katello/host_package_presenter.rb +4 -4
  65. data/app/services/katello/pulp3/alternate_content_source.rb +23 -15
  66. data/app/services/katello/pulp3/ansible_collection.rb +7 -10
  67. data/app/services/katello/pulp3/content_view_version/export.rb +19 -6
  68. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  69. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  70. data/app/services/katello/pulp3/content_view_version/importable_products.rb +11 -1
  71. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  72. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  73. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  74. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +5 -1
  75. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  76. data/app/services/katello/pulp3/repository.rb +18 -6
  77. data/app/services/katello/pulp3/repository_mirror.rb +0 -1
  78. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  79. data/app/services/katello/pulp3/task_group.rb +18 -1
  80. data/app/services/katello/repository_type.rb +5 -2
  81. data/app/services/katello/repository_type_manager.rb +4 -3
  82. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  83. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  84. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  85. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +4 -4
  86. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  87. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  88. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  89. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  90. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  91. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  92. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  93. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  94. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  95. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  96. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  97. data/config/initializers/monkeys.rb +1 -0
  98. data/config/routes/api/v2.rb +2 -0
  99. data/config/routes.rb +3 -0
  100. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  101. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  102. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  103. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +5 -5
  105. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -3
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +14 -1392
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  120. data/lib/katello/permission_creator.rb +1 -0
  121. data/lib/katello/plugin.rb +34 -11
  122. data/lib/katello/repository_types/deb.rb +1 -1
  123. data/lib/katello/repository_types/docker.rb +1 -1
  124. data/lib/katello/repository_types/python.rb +3 -3
  125. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  126. data/lib/katello/tasks/reset.rake +1 -1
  127. data/lib/katello/version.rb +1 -1
  128. data/lib/monkeys/try_pulp_container_path.rb +35 -0
  129. data/locale/action_names.rb +7 -7
  130. data/locale/bn/katello.po +395 -63
  131. data/locale/cs/katello.po +396 -64
  132. data/locale/de/katello.po +399 -67
  133. data/locale/en/katello.po +395 -63
  134. data/locale/es/katello.po +399 -67
  135. data/locale/fr/katello.po +400 -68
  136. data/locale/gu/katello.po +395 -63
  137. data/locale/hi/katello.po +395 -63
  138. data/locale/it/katello.po +396 -64
  139. data/locale/ja/katello.po +400 -68
  140. data/locale/katello.pot +1916 -1213
  141. data/locale/kn/katello.po +395 -63
  142. data/locale/ko/katello.po +396 -64
  143. data/locale/mr/katello.po +395 -63
  144. data/locale/or/katello.po +395 -63
  145. data/locale/pa/katello.po +395 -63
  146. data/locale/pt/katello.po +395 -63
  147. data/locale/pt_BR/katello.po +399 -67
  148. data/locale/ru/katello.po +396 -64
  149. data/locale/ta/katello.po +395 -63
  150. data/locale/te/katello.po +395 -63
  151. data/locale/zh_CN/katello.po +400 -68
  152. data/locale/zh_TW/katello.po +396 -64
  153. data/webpack/components/Bookmark/index.js +5 -1
  154. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  155. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  156. data/webpack/components/EditableSwitch.js +1 -0
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  158. data/webpack/components/Errata/errataHelpers.js +33 -0
  159. data/webpack/components/Errata/index.js +45 -12
  160. data/webpack/components/Loading.js +18 -8
  161. data/webpack/components/Packages/index.js +8 -24
  162. data/webpack/components/RoutedTabs/index.js +1 -0
  163. data/webpack/components/Search/Search.js +20 -2
  164. data/webpack/components/Search/__tests__/search.test.js +3 -3
  165. data/webpack/components/Table/EmptyStateMessage.js +1 -1
  166. data/webpack/components/Table/PageControls.js +1 -0
  167. data/webpack/components/Table/TableHooks.js +4 -0
  168. data/webpack/components/Table/TableWrapper.js +7 -7
  169. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  170. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  171. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  172. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +3 -1
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +124 -68
  175. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  176. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  177. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  178. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +5 -4
  179. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -3
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +6 -0
  182. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +145 -32
  183. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +3 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  185. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  186. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +78 -26
  187. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -10
  188. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  189. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +9 -4
  190. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +141 -23
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  192. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  193. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +24 -3
  194. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +20 -4
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +56 -38
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +5 -4
  200. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +3 -3
  201. data/webpack/containers/Application/config.js +2 -2
  202. data/webpack/containers/Application/overrides.scss +12 -0
  203. data/webpack/global_test_setup.js +19 -1
  204. data/webpack/ouia_id_check.js +0 -2
  205. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -8
  206. data/webpack/scenes/AlternateContentSources/ACSActions.js +37 -6
  207. data/webpack/scenes/AlternateContentSources/ACSConstants.js +2 -0
  208. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  209. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +6 -6
  210. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  211. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +24 -3
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +10 -8
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +25 -4
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +22 -11
  215. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +27 -2
  216. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +49 -17
  217. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +76 -23
  218. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +159 -11
  219. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +83 -29
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -8
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +2 -2
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +2 -2
  223. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +39 -7
  224. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +27 -11
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +58 -55
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +35 -32
  227. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +323 -150
  228. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  229. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -11
  230. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  231. data/webpack/scenes/ContentViews/ContentViewsConstants.js +1 -0
  232. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  233. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  234. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  235. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -5
  236. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  237. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  238. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  239. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  240. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +1 -0
  241. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +1 -0
  242. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  243. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  244. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  245. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  246. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  247. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +14 -0
  248. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +11 -1
  249. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +1 -1
  250. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  251. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +5 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  253. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +1 -0
  254. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +8 -2
  255. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +5 -1
  256. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +22 -6
  257. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +19 -9
  258. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +9 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +9 -2
  260. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +8 -2
  261. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +1 -1
  262. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  263. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +3 -2
  264. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -1
  265. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -1
  268. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +1 -1
  269. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -2
  270. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  271. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  272. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +9 -1
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +83 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +32 -8
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +56 -3
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +6 -2
  279. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  280. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +1 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +1 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +2 -2
  283. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  284. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +2 -2
  285. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  287. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +5 -4
  288. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  289. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  290. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +10 -5
  291. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  292. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  293. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +81 -19
  294. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  295. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  296. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  297. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  298. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +3 -2
  299. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -11
  300. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +15 -8
  301. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  302. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  303. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  304. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  305. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  306. data/webpack/scenes/Hosts/ChangeContentSource/index.js +46 -41
  307. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +5 -5
  308. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  309. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  310. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  311. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  312. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  313. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +10 -25
  314. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  315. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  316. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  317. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  318. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  319. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  320. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  321. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  322. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -1
  323. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  324. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +5 -5
  325. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  326. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  327. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  328. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +3 -3
  329. data/webpack/scenes/Tasks/helpers.js +14 -7
  330. metadata +54 -35
  331. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +0 -18
  332. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +0 -5
  333. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
data/locale/cs/katello.po CHANGED
@@ -44,6 +44,12 @@ msgstr ""
44
44
  msgid " RPMs"
45
45
  msgstr ""
46
46
 
47
+ msgid " The base path can be a web address or a filesystem location."
48
+ msgstr ""
49
+
50
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
51
+ msgstr ""
52
+
47
53
  msgid " View task details "
48
54
  msgstr ""
49
55
 
@@ -74,12 +80,18 @@ msgstr ""
74
80
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
75
81
  msgstr ""
76
82
 
83
+ msgid " or any step on the left."
84
+ msgstr ""
85
+
77
86
  msgid " to manage and promote content views, or select a different environment."
78
87
  msgstr ""
79
88
 
80
89
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
81
90
  msgstr ""
82
91
 
92
+ msgid "${option}"
93
+ msgstr ""
94
+
83
95
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
84
96
  msgstr ""
85
97
 
@@ -343,6 +355,24 @@ msgstr ""
343
355
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
344
356
  msgstr ""
345
357
 
358
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
359
+ msgstr ""
360
+
361
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
362
+ msgstr ""
363
+
364
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
365
+ msgstr ""
366
+
367
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
368
+ msgstr ""
369
+
370
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
371
+ msgstr ""
372
+
373
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
374
+ msgstr ""
375
+
346
376
  msgid "(Orphaned)"
347
377
  msgstr ""
348
378
 
@@ -566,10 +596,10 @@ msgstr ""
566
596
  msgid "Add subscriptions to one or more hosts"
567
597
  msgstr ""
568
598
 
569
- msgid "Add to this filter using the 'Add Deb rule' button."
599
+ msgid "Add to a host collection"
570
600
  msgstr ""
571
601
 
572
- msgid "Add to this filter using the 'Add RPM rule' button."
602
+ msgid "Add to this filter using the 'Add Deb rule' button."
573
603
  msgstr ""
574
604
 
575
605
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -629,6 +659,9 @@ msgstr ""
629
659
  msgid "All subpaths must have a slash at the end and none at the front"
630
660
  msgstr ""
631
661
 
662
+ msgid "All up to date"
663
+ msgstr ""
664
+
632
665
  msgid "All versions"
633
666
  msgstr ""
634
667
 
@@ -656,6 +689,9 @@ msgstr ""
656
689
  msgid "Alter a host's host collections"
657
690
  msgstr ""
658
691
 
692
+ msgid "Alternate Content Source HTTP Proxy"
693
+ msgstr ""
694
+
659
695
  msgid "Alternate Content Sources"
660
696
  msgstr ""
661
697
 
@@ -668,7 +704,10 @@ msgstr ""
668
704
  msgid "Alternate content source deleted"
669
705
  msgstr ""
670
706
 
671
- msgid "Alternate content sources"
707
+ msgid "Alternate content source edited"
708
+ msgstr ""
709
+
710
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
672
711
  msgstr ""
673
712
 
674
713
  msgid "Always Use Latest (currently %{version})"
@@ -680,7 +719,7 @@ msgstr ""
680
719
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
681
720
  msgstr ""
682
721
 
683
- msgid "An alternate content source can be added by using the \"Add source\" button above."
722
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
684
723
  msgstr ""
685
724
 
686
725
  msgid "An environment is missing a prior"
@@ -717,9 +756,15 @@ msgstr ""
717
756
  msgid "Applicability Batch Size"
718
757
  msgstr ""
719
758
 
759
+ msgid "Applicable"
760
+ msgstr ""
761
+
720
762
  msgid "Applicable Content Hosts"
721
763
  msgstr ""
722
764
 
765
+ msgid "Applicable errata apply to at least one package installed on the host."
766
+ msgstr ""
767
+
723
768
  msgid "Application"
724
769
  msgstr ""
725
770
 
@@ -899,6 +944,9 @@ msgstr ""
899
944
  msgid "Available Schema Versions"
900
945
  msgstr ""
901
946
 
947
+ msgid "Back"
948
+ msgstr ""
949
+
902
950
  #, fuzzy
903
951
  msgid "Backend System Status"
904
952
  msgstr "Systém"
@@ -966,6 +1014,12 @@ msgstr ""
966
1014
  msgid "Bugs"
967
1015
  msgstr ""
968
1016
 
1017
+ msgid "Bulk alternate content source delete has started."
1018
+ msgstr ""
1019
+
1020
+ msgid "Bulk alternate content source refresh has started."
1021
+ msgstr ""
1022
+
969
1023
  msgid "Bulk generate applicability for host %s"
970
1024
  msgstr ""
971
1025
 
@@ -975,9 +1029,6 @@ msgstr ""
975
1029
  msgid "Bulk remove versions from a content view and reassign systems and keys"
976
1030
  msgstr ""
977
1031
 
978
- msgid "CA Cert"
979
- msgstr ""
980
-
981
1032
  msgid "CDN Configuration"
982
1033
  msgstr ""
983
1034
 
@@ -1088,6 +1139,9 @@ msgstr ""
1088
1139
  msgid "Cannot add default content view to composite content view"
1089
1140
  msgstr ""
1090
1141
 
1142
+ msgid "Cannot add generated content view versions to composite content view"
1143
+ msgstr ""
1144
+
1091
1145
  msgid "Cannot add repositories to a composite content view"
1092
1146
  msgstr ""
1093
1147
 
@@ -1229,6 +1283,9 @@ msgstr ""
1229
1283
  msgid "Checksum"
1230
1284
  msgstr ""
1231
1285
 
1286
+ msgid "Checksum is a required parameter."
1287
+ msgstr ""
1288
+
1232
1289
  msgid "Checksum of file to upload"
1233
1290
  msgstr ""
1234
1291
 
@@ -1238,6 +1295,9 @@ msgstr ""
1238
1295
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1239
1296
  msgstr ""
1240
1297
 
1298
+ msgid "Choose content credentials if required for this RHUI source."
1299
+ msgstr ""
1300
+
1241
1301
  msgid "Clear any previous registration and run subscription-manager with --force."
1242
1302
  msgstr ""
1243
1303
 
@@ -1253,9 +1313,6 @@ msgstr ""
1253
1313
  msgid "Click {update} below to save changes."
1254
1314
  msgstr ""
1255
1315
 
1256
- msgid "Client key"
1257
- msgstr ""
1258
-
1259
1316
  msgid "Clone"
1260
1317
  msgstr ""
1261
1318
 
@@ -1271,6 +1328,9 @@ msgstr ""
1271
1328
  msgid "Combined Profile Update for %s"
1272
1329
  msgstr ""
1273
1330
 
1331
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1332
+ msgstr ""
1333
+
1274
1334
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1275
1335
  msgstr ""
1276
1336
 
@@ -1280,12 +1340,18 @@ msgstr ""
1280
1340
  msgid "Comma-separated list of tags to sync for a container image repository"
1281
1341
  msgstr ""
1282
1342
 
1343
+ msgid "Compare"
1344
+ msgstr ""
1345
+
1283
1346
  msgid "Component"
1284
1347
  msgstr ""
1285
1348
 
1286
1349
  msgid "Component Content View"
1287
1350
  msgstr ""
1288
1351
 
1352
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1353
+ msgstr ""
1354
+
1289
1355
  msgid "Components"
1290
1356
  msgstr ""
1291
1357
 
@@ -1442,6 +1508,9 @@ msgstr ""
1442
1508
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1443
1509
  msgstr ""
1444
1510
 
1511
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1512
+ msgstr ""
1513
+
1445
1514
  msgid "Content View and Environment not set for registration."
1446
1515
  msgstr ""
1447
1516
 
@@ -1455,6 +1524,9 @@ msgstr ""
1455
1524
  msgid "Content Views"
1456
1525
  msgstr "Vyhledat obsah"
1457
1526
 
1527
+ msgid "Content cannot be imported into a Composite Content View. "
1528
+ msgstr ""
1529
+
1458
1530
  msgid "Content credential"
1459
1531
  msgstr ""
1460
1532
 
@@ -1479,6 +1551,9 @@ msgstr ""
1479
1551
  msgid "Content override search parameters"
1480
1552
  msgstr ""
1481
1553
 
1554
+ msgid "Content source"
1555
+ msgstr ""
1556
+
1482
1557
  msgid "Content source ID"
1483
1558
  msgstr ""
1484
1559
 
@@ -1547,6 +1622,9 @@ msgstr ""
1547
1622
  msgid "Content views"
1548
1623
  msgstr ""
1549
1624
 
1625
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1626
+ msgstr ""
1627
+
1550
1628
  msgid "Content_Host_Status"
1551
1629
  msgstr ""
1552
1630
 
@@ -1695,6 +1773,9 @@ msgstr ""
1695
1773
  msgid "Couldn't find product with id '%s'"
1696
1774
  msgstr ""
1697
1775
 
1776
+ msgid "Couldn't find products with id '%s'"
1777
+ msgstr ""
1778
+
1698
1779
  msgid "Couldn't find repository '%s'"
1699
1780
  msgstr ""
1700
1781
 
@@ -1766,13 +1847,13 @@ msgstr "Smazat poskytovatele"
1766
1847
  msgid "Create a sync plan"
1767
1848
  msgstr ""
1768
1849
 
1769
- msgid "Create an ACS"
1770
- msgstr ""
1771
-
1772
1850
  #, fuzzy
1773
1851
  msgid "Create an activation key"
1774
1852
  msgstr "Číst aktivační klíče"
1775
1853
 
1854
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1855
+ msgstr ""
1856
+
1776
1857
  #, fuzzy
1777
1858
  msgid "Create an environment"
1778
1859
  msgstr "prostředí"
@@ -1783,6 +1864,9 @@ msgstr ""
1783
1864
  msgid "Create an upload request"
1784
1865
  msgstr ""
1785
1866
 
1867
+ msgid "Create content credentials with the generated SSL certificate and key."
1868
+ msgstr ""
1869
+
1786
1870
  msgid "Create content view"
1787
1871
  msgstr ""
1788
1872
 
@@ -1823,6 +1907,9 @@ msgstr ""
1823
1907
  msgid "Custom"
1824
1908
  msgstr ""
1825
1909
 
1910
+ msgid "Custom CDN"
1911
+ msgstr ""
1912
+
1826
1913
  #, fuzzy
1827
1914
  msgid "Custom Content Repositories"
1828
1915
  msgstr "Repozitáře"
@@ -1840,6 +1927,9 @@ msgstr ""
1840
1927
  msgid "DEB name"
1841
1928
  msgstr ""
1842
1929
 
1930
+ msgid "DEB package updates"
1931
+ msgstr ""
1932
+
1843
1933
  msgid "Database connection"
1844
1934
  msgstr ""
1845
1935
 
@@ -1975,6 +2065,12 @@ msgstr ""
1975
2065
  msgid "Default user data for new Operating Systems created from synced content"
1976
2066
  msgstr ""
1977
2067
 
2068
+ msgid "Define RHUI repository paths with guided steps."
2069
+ msgstr ""
2070
+
2071
+ msgid "Define repositories structured under a common web or filesystem path."
2072
+ msgstr ""
2073
+
1978
2074
  #, fuzzy
1979
2075
  msgid "Delete"
1980
2076
  msgstr "Smazat role"
@@ -2124,7 +2220,7 @@ msgstr ""
2124
2220
  msgid "Destroy an activation key"
2125
2221
  msgstr ""
2126
2222
 
2127
- msgid "Destroy an alternate content source"
2223
+ msgid "Destroy an alternate content source."
2128
2224
  msgstr ""
2129
2225
 
2130
2226
  #, fuzzy
@@ -2189,6 +2285,9 @@ msgstr ""
2189
2285
  msgid "Discover Repositories"
2190
2286
  msgstr "Repozitáře"
2191
2287
 
2288
+ msgid "Distribute archived content view versions"
2289
+ msgstr ""
2290
+
2192
2291
  msgid "Do not include this array of content views"
2193
2292
  msgstr ""
2194
2293
 
@@ -2223,21 +2322,51 @@ msgstr ""
2223
2322
  msgid "Edit"
2224
2323
  msgstr ""
2225
2324
 
2325
+ msgid "Edit ACS"
2326
+ msgstr ""
2327
+
2328
+ msgid "Edit ACS credentials"
2329
+ msgstr ""
2330
+
2331
+ msgid "Edit ACS details"
2332
+ msgstr ""
2333
+
2334
+ msgid "Edit ACS products"
2335
+ msgstr ""
2336
+
2337
+ msgid "Edit ACS smart proxies"
2338
+ msgstr ""
2339
+
2226
2340
  msgid "Edit RPM rule"
2227
2341
  msgstr ""
2228
2342
 
2343
+ msgid "Edit URL and subpaths"
2344
+ msgstr ""
2345
+
2229
2346
  msgid "Edit content view assignment"
2230
2347
  msgstr ""
2231
2348
 
2349
+ msgid "Edit credentials"
2350
+ msgstr ""
2351
+
2352
+ msgid "Edit details"
2353
+ msgstr ""
2354
+
2232
2355
  msgid "Edit filter rule"
2233
2356
  msgstr ""
2234
2357
 
2235
2358
  msgid "Edit package filter rule"
2236
2359
  msgstr ""
2237
2360
 
2361
+ msgid "Edit products"
2362
+ msgstr ""
2363
+
2238
2364
  msgid "Edit rule"
2239
2365
  msgstr ""
2240
2366
 
2367
+ msgid "Edit smart proxies"
2368
+ msgstr ""
2369
+
2241
2370
  msgid "Edit system purpose attributes"
2242
2371
  msgstr ""
2243
2372
 
@@ -2262,6 +2391,9 @@ msgstr ""
2262
2391
  msgid "Either set the latest content view or the content view version. Cannot set both"
2263
2392
  msgstr ""
2264
2393
 
2394
+ msgid "Empty content view versions"
2395
+ msgstr ""
2396
+
2265
2397
  msgid "Enable"
2266
2398
  msgstr ""
2267
2399
 
@@ -2280,6 +2412,9 @@ msgstr ""
2280
2412
  msgid "Enable a repository from the set"
2281
2413
  msgstr ""
2282
2414
 
2415
+ msgid "Enable repository sets"
2416
+ msgstr ""
2417
+
2283
2418
  msgid "Enable simple content access for a manifest"
2284
2419
  msgstr ""
2285
2420
 
@@ -2322,6 +2457,9 @@ msgstr ""
2322
2457
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2323
2458
  msgstr ""
2324
2459
 
2460
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2461
+ msgstr ""
2462
+
2325
2463
  msgid "Entitlements"
2326
2464
  msgstr ""
2327
2465
 
@@ -2583,6 +2721,9 @@ msgstr ""
2583
2721
  msgid "Filter products by sync plan id"
2584
2722
  msgstr ""
2585
2723
 
2724
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2725
+ msgstr ""
2726
+
2586
2727
  msgid "Filter rule added"
2587
2728
  msgstr ""
2588
2729
 
@@ -2619,6 +2760,9 @@ msgstr ""
2619
2760
  msgid "Filters will appear here when the filter is created."
2620
2761
  msgstr ""
2621
2762
 
2763
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2764
+ msgstr ""
2765
+
2622
2766
  msgid "Finish"
2623
2767
  msgstr ""
2624
2768
 
@@ -2678,6 +2822,9 @@ msgstr ""
2678
2822
  msgid "GPG Key URL"
2679
2823
  msgstr ""
2680
2824
 
2825
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2826
+ msgstr ""
2827
+
2681
2828
  msgid "Generate and Download"
2682
2829
  msgstr ""
2683
2830
 
@@ -2890,6 +3037,9 @@ msgstr ""
2890
3037
  msgid "Hosts"
2891
3038
  msgstr ""
2892
3039
 
3040
+ msgid "Hosts to update"
3041
+ msgstr ""
3042
+
2893
3043
  msgid "Hosts with Installable Errata"
2894
3044
  msgstr ""
2895
3045
 
@@ -2970,6 +3120,9 @@ msgstr ""
2970
3120
  msgid "ID: %s doesn't exist "
2971
3121
  msgstr ""
2972
3122
 
3123
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
3124
+ msgstr ""
3125
+
2973
3126
  msgid "Id of a deb package to find repositories that contain the deb"
2974
3127
  msgstr ""
2975
3128
 
@@ -2985,6 +3138,9 @@ msgstr ""
2985
3138
  msgid "Id of an erratum to find repositories that contain the erratum"
2986
3139
  msgstr ""
2987
3140
 
3141
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3142
+ msgstr ""
3143
+
2988
3144
  msgid "Id of the content host"
2989
3145
  msgstr ""
2990
3146
 
@@ -3057,6 +3213,9 @@ msgstr ""
3057
3213
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
3058
3214
  msgstr ""
3059
3215
 
3216
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3217
+ msgstr ""
3218
+
3060
3219
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
3061
3220
  msgstr ""
3062
3221
 
@@ -3069,6 +3228,9 @@ msgstr ""
3069
3228
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
3070
3229
  msgstr ""
3071
3230
 
3231
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3232
+ msgstr ""
3233
+
3072
3234
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3073
3235
  msgstr ""
3074
3236
 
@@ -3102,6 +3264,9 @@ msgstr ""
3102
3264
  msgid "Ignore subscriptions that are unavailable to the specified host"
3103
3265
  msgstr ""
3104
3266
 
3267
+ msgid "Ignored hosts"
3268
+ msgstr ""
3269
+
3105
3270
  msgid "Immediate"
3106
3271
  msgstr ""
3107
3272
 
@@ -3249,9 +3414,6 @@ msgstr ""
3249
3414
  msgid "Index package groups"
3250
3415
  msgstr ""
3251
3416
 
3252
- msgid "Indicate the source type."
3253
- msgstr ""
3254
-
3255
3417
  msgid "Informable Type must be one of the following [ %{list} ]"
3256
3418
  msgstr ""
3257
3419
 
@@ -3324,12 +3486,15 @@ msgstr ""
3324
3486
  msgid "Installable"
3325
3487
  msgstr ""
3326
3488
 
3327
- msgid "Installable errata"
3489
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3328
3490
  msgstr ""
3329
3491
 
3330
3492
  msgid "Installable errata from content view"
3331
3493
  msgstr ""
3332
3494
 
3495
+ msgid "Installable updates"
3496
+ msgstr ""
3497
+
3333
3498
  msgid "Installation of errata requested: %{errata}"
3334
3499
  msgstr ""
3335
3500
 
@@ -3393,9 +3558,6 @@ msgstr ""
3393
3558
  msgid "Invalid"
3394
3559
  msgstr ""
3395
3560
 
3396
- msgid "Invalid SSL CA certificate given for CDN"
3397
- msgstr ""
3398
-
3399
3561
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3400
3562
  msgstr ""
3401
3563
 
@@ -3446,6 +3608,12 @@ msgstr ""
3446
3608
  msgid "Invalid params provided - date_type must be one of %s"
3447
3609
  msgstr ""
3448
3610
 
3611
+ msgid "Invalid params provided - with_content must be one of %s"
3612
+ msgstr ""
3613
+
3614
+ msgid "Invalid path provided. Content can be only imported from file system. "
3615
+ msgstr ""
3616
+
3449
3617
  msgid "Invalid release version: [%s]"
3450
3618
  msgstr ""
3451
3619
 
@@ -3467,6 +3635,9 @@ msgstr ""
3467
3635
  msgid "Issued from"
3468
3636
  msgstr ""
3469
3637
 
3638
+ msgid "Items will appear here when a filter rule is added."
3639
+ msgstr ""
3640
+
3470
3641
  msgid "Job '${description}' completed"
3471
3642
  msgstr ""
3472
3643
 
@@ -3542,15 +3713,18 @@ msgstr ""
3542
3713
  msgid "Label of the content view"
3543
3714
  msgstr ""
3544
3715
 
3545
- msgid "Last Refresh"
3716
+ msgid "Last check-in:"
3546
3717
  msgstr ""
3547
3718
 
3548
- msgid "Last check-in:"
3719
+ msgid "Last checkin"
3549
3720
  msgstr ""
3550
3721
 
3551
3722
  msgid "Last published"
3552
3723
  msgstr ""
3553
3724
 
3725
+ msgid "Last refresh"
3726
+ msgstr ""
3727
+
3554
3728
  msgid "Last refresh :"
3555
3729
  msgstr ""
3556
3730
 
@@ -3569,6 +3743,9 @@ msgstr ""
3569
3743
  msgid "Learn more about adding Subscription Manifests"
3570
3744
  msgstr ""
3571
3745
 
3746
+ msgid "Legacy content host UI"
3747
+ msgstr ""
3748
+
3572
3749
  msgid "Less than"
3573
3750
  msgstr ""
3574
3751
 
@@ -3637,6 +3814,9 @@ msgstr ""
3637
3814
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3638
3815
  msgstr ""
3639
3816
 
3817
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3818
+ msgstr ""
3819
+
3640
3820
  msgid "Limit to environment"
3641
3821
  msgstr ""
3642
3822
 
@@ -3669,6 +3849,9 @@ msgstr ""
3669
3849
  msgid "List all organizations"
3670
3850
  msgstr "Organizace"
3671
3851
 
3852
+ msgid "List alternate content sources."
3853
+ msgstr ""
3854
+
3672
3855
  msgid "List an activation key's subscriptions"
3673
3856
  msgstr ""
3674
3857
 
@@ -3745,9 +3928,6 @@ msgstr ""
3745
3928
  msgid "List of alternate content source IDs"
3746
3929
  msgstr ""
3747
3930
 
3748
- msgid "List of alternate_content_sources"
3749
- msgstr ""
3750
-
3751
3931
  msgid "List of component content view version ids for composite views"
3752
3932
  msgstr ""
3753
3933
 
@@ -3841,6 +4021,9 @@ msgstr ""
3841
4021
  msgid "List of repository ids"
3842
4022
  msgstr "Smazán poskytovatel [%s]"
3843
4023
 
4024
+ msgid "List of resources types that will be automatically associated"
4025
+ msgstr ""
4026
+
3844
4027
  msgid "List of subscription products in a subscription"
3845
4028
  msgstr ""
3846
4029
 
@@ -4047,6 +4230,9 @@ msgstr ""
4047
4230
  msgid "Multi-entitlement"
4048
4231
  msgstr ""
4049
4232
 
4233
+ msgid "Multiple environments are not supported."
4234
+ msgstr ""
4235
+
4050
4236
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4051
4237
  msgstr ""
4052
4238
 
@@ -4059,11 +4245,19 @@ msgstr ""
4059
4245
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4060
4246
  msgstr ""
4061
4247
 
4248
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4249
+ msgstr ""
4250
+
4062
4251
  msgid ""
4063
4252
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
4064
4253
  " %{repos}"
4065
4254
  msgstr ""
4066
4255
 
4256
+ msgid ""
4257
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4258
+ " %{repos}"
4259
+ msgstr ""
4260
+
4067
4261
  msgid ""
4068
4262
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
4069
4263
  " %{repos}"
@@ -4075,6 +4269,12 @@ msgstr ""
4075
4269
  msgid "Name"
4076
4270
  msgstr ""
4077
4271
 
4272
+ msgid "Name and label of default content view should not be changed"
4273
+ msgstr ""
4274
+
4275
+ msgid "Name is a required parameter."
4276
+ msgstr ""
4277
+
4078
4278
  msgid "Name of new activation key"
4079
4279
  msgstr ""
4080
4280
 
@@ -4121,6 +4321,12 @@ msgstr ""
4121
4321
  msgid "Never Synced"
4122
4322
  msgstr ""
4123
4323
 
4324
+ msgid "Never checked in"
4325
+ msgstr ""
4326
+
4327
+ msgid "Never registered"
4328
+ msgstr ""
4329
+
4124
4330
  #, fuzzy
4125
4331
  msgid "New Errata"
4126
4332
  msgstr "všechny balíčky"
@@ -4220,6 +4426,9 @@ msgstr "Musí existovat alespoň jedna organizace."
4220
4426
  msgid "No content ids provided"
4221
4427
  msgstr ""
4222
4428
 
4429
+ msgid "No content in selected versions."
4430
+ msgstr ""
4431
+
4223
4432
  #, fuzzy
4224
4433
  msgid "No content view history events found."
4225
4434
  msgstr "Vyhledat obsah"
@@ -4274,6 +4483,9 @@ msgstr ""
4274
4483
  msgid "No host collections found."
4275
4484
  msgstr "Vyhledat obsah"
4276
4485
 
4486
+ msgid "No host collections yet"
4487
+ msgstr ""
4488
+
4277
4489
  msgid "No hosts have been specified."
4278
4490
  msgstr ""
4279
4491
 
@@ -4298,6 +4510,9 @@ msgstr ""
4298
4510
  msgid "No matching "
4299
4511
  msgstr ""
4300
4512
 
4513
+ msgid "No matching ${name} found."
4514
+ msgstr ""
4515
+
4301
4516
  msgid "No matching ${selectedContentType} found"
4302
4517
  msgstr ""
4303
4518
 
@@ -4391,6 +4606,9 @@ msgstr ""
4391
4606
  msgid "No products are enabled."
4392
4607
  msgstr ""
4393
4608
 
4609
+ msgid "No profiles to show"
4610
+ msgstr ""
4611
+
4394
4612
  msgid "No pulp workers running."
4395
4613
  msgstr ""
4396
4614
 
@@ -4527,6 +4745,9 @@ msgstr ""
4527
4745
  msgid "On Demand"
4528
4746
  msgstr ""
4529
4747
 
4748
+ msgid "On the RHUA Instance, check the available repositories."
4749
+ msgstr ""
4750
+
4530
4751
  msgid "On-disk location for exported repositories"
4531
4752
  msgstr ""
4532
4753
 
@@ -4950,6 +5171,9 @@ msgstr ""
4950
5171
  msgid "Please wait while the task starts.."
4951
5172
  msgstr ""
4952
5173
 
5174
+ msgid "Please wait..."
5175
+ msgstr ""
5176
+
4953
5177
  msgid "Policy to set for mirroring content. Must be one of %s."
4954
5178
  msgstr ""
4955
5179
 
@@ -5043,9 +5267,18 @@ msgstr ""
5043
5267
  msgid "Product: '%{product}', Repository: '%{repository}'"
5044
5268
  msgstr ""
5045
5269
 
5270
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5271
+ msgstr ""
5272
+
5046
5273
  msgid "Products"
5047
5274
  msgstr "Produkty"
5048
5275
 
5276
+ msgid "Products updated."
5277
+ msgstr ""
5278
+
5279
+ msgid "Profiles"
5280
+ msgstr ""
5281
+
5049
5282
  msgid "Promote"
5050
5283
  msgstr ""
5051
5284
 
@@ -5224,6 +5457,9 @@ msgstr ""
5224
5457
  msgid "RH Repos"
5225
5458
  msgstr ""
5226
5459
 
5460
+ msgid "RHUI"
5461
+ msgstr ""
5462
+
5227
5463
  msgid "RPM"
5228
5464
  msgstr ""
5229
5465
 
@@ -5236,6 +5472,12 @@ msgstr ""
5236
5472
  msgid "RPM name"
5237
5473
  msgstr ""
5238
5474
 
5475
+ msgid "RPM package groups"
5476
+ msgstr ""
5477
+
5478
+ msgid "RPM package updates"
5479
+ msgstr ""
5480
+
5239
5481
  msgid "RPM packages"
5240
5482
  msgstr ""
5241
5483
 
@@ -5304,6 +5546,9 @@ msgstr ""
5304
5546
  msgid "Red Hat content will be consumed from the {type}."
5305
5547
  msgstr ""
5306
5548
 
5549
+ msgid "Red Hat content will be consumed from {type}."
5550
+ msgstr ""
5551
+
5307
5552
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5308
5553
  msgstr ""
5309
5554
 
@@ -5332,7 +5577,7 @@ msgstr "Smazat role"
5332
5577
  msgid "Refresh alternate content sources"
5333
5578
  msgstr ""
5334
5579
 
5335
- msgid "Refresh an alternate content source"
5580
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5336
5581
  msgstr ""
5337
5582
 
5338
5583
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5350,6 +5595,9 @@ msgstr ""
5350
5595
  msgid "Register host '%s' before attaching subscriptions"
5351
5596
  msgstr ""
5352
5597
 
5598
+ msgid "Registered"
5599
+ msgstr ""
5600
+
5353
5601
  msgid "Registered by"
5354
5602
  msgstr ""
5355
5603
 
@@ -5480,7 +5728,7 @@ msgstr ""
5480
5728
  msgid "Remove one or more host collections from one or more hosts"
5481
5729
  msgstr ""
5482
5730
 
5483
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5731
+ msgid "Remove one or more subscriptions from an upstream manifest"
5484
5732
  msgstr ""
5485
5733
 
5486
5734
  #, fuzzy
@@ -5535,6 +5783,9 @@ msgstr "Skupiny balíčků"
5535
5783
  msgid "Removing Package..."
5536
5784
  msgstr "Smazat balíček filtrů"
5537
5785
 
5786
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5787
+ msgstr ""
5788
+
5538
5789
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5539
5790
  msgstr ""
5540
5791
 
@@ -5779,9 +6030,6 @@ msgstr ""
5779
6030
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5780
6031
  msgstr ""
5781
6032
 
5782
- msgid "Review Details"
5783
- msgstr ""
5784
-
5785
6033
  msgid "Review affected environment"
5786
6034
  msgstr ""
5787
6035
 
@@ -5791,6 +6039,9 @@ msgstr ""
5791
6039
  msgid "Review details"
5792
6040
  msgstr ""
5793
6041
 
6042
+ msgid "Review the information below and click "
6043
+ msgstr ""
6044
+
5794
6045
  msgid "Review your currently selected changes for "
5795
6046
  msgstr ""
5796
6047
 
@@ -5830,9 +6081,6 @@ msgstr ""
5830
6081
  msgid "SSL CA certificate"
5831
6082
  msgstr ""
5832
6083
 
5833
- msgid "SSL Cert"
5834
- msgstr ""
5835
-
5836
6084
  msgid "SSL client certificate"
5837
6085
  msgstr ""
5838
6086
 
@@ -5967,6 +6215,9 @@ msgstr ""
5967
6215
  msgid "Select an environment above"
5968
6216
  msgstr ""
5969
6217
 
6218
+ msgid "Select an option"
6219
+ msgstr ""
6220
+
5970
6221
  msgid "Select an organization"
5971
6222
  msgstr ""
5972
6223
 
@@ -6006,6 +6257,12 @@ msgstr ""
6006
6257
  msgid "Select page"
6007
6258
  msgstr ""
6008
6259
 
6260
+ msgid "Select products"
6261
+ msgstr ""
6262
+
6263
+ msgid "Select products to associate to this source."
6264
+ msgstr ""
6265
+
6009
6266
  msgid "Select row"
6010
6267
  msgstr ""
6011
6268
 
@@ -6130,7 +6387,7 @@ msgstr ""
6130
6387
  msgid "Show an activation key"
6131
6388
  msgstr "Číst aktivační klíče"
6132
6389
 
6133
- msgid "Show an alternate content source"
6390
+ msgid "Show an alternate content source."
6134
6391
  msgstr ""
6135
6392
 
6136
6393
  #, fuzzy
@@ -6183,6 +6440,9 @@ msgstr ""
6183
6440
  msgid "Simple Content Access has been enabled for '%{subject}'."
6184
6441
  msgstr ""
6185
6442
 
6443
+ msgid "Simplified"
6444
+ msgstr ""
6445
+
6186
6446
  msgid "Single content view consisting of e.g. repositories"
6187
6447
  msgstr ""
6188
6448
 
@@ -6219,7 +6479,7 @@ msgstr ""
6219
6479
  msgid "Solve dependencies"
6220
6480
  msgstr ""
6221
6481
 
6222
- msgid "Some hosts are ignored!"
6482
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6223
6483
  msgstr ""
6224
6484
 
6225
6485
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6243,13 +6503,13 @@ msgstr ""
6243
6503
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6244
6504
  msgstr ""
6245
6505
 
6246
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6506
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6247
6507
  msgstr ""
6248
6508
 
6249
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6509
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6250
6510
  msgstr ""
6251
6511
 
6252
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6512
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6253
6513
  msgstr ""
6254
6514
 
6255
6515
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6297,10 +6557,13 @@ msgstr ""
6297
6557
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6298
6558
  msgstr ""
6299
6559
 
6560
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6561
+ msgstr ""
6562
+
6300
6563
  msgid "Something went wrong while loading the content views. See the logs for more information"
6301
6564
  msgstr ""
6302
6565
 
6303
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6566
+ msgid "Something went wrong while refreshing alternate content sources: "
6304
6567
  msgstr ""
6305
6568
 
6306
6569
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6315,6 +6578,9 @@ msgstr ""
6315
6578
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6316
6579
  msgstr ""
6317
6580
 
6581
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6582
+ msgstr ""
6583
+
6318
6584
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6319
6585
  msgstr ""
6320
6586
 
@@ -6333,9 +6599,33 @@ msgstr ""
6333
6599
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6334
6600
  msgstr ""
6335
6601
 
6602
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6603
+ msgstr ""
6604
+
6605
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6606
+ msgstr ""
6607
+
6608
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6609
+ msgstr ""
6610
+
6611
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6612
+ msgstr ""
6613
+
6336
6614
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6337
6615
  msgstr ""
6338
6616
 
6617
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6618
+ msgstr ""
6619
+
6620
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6621
+ msgstr ""
6622
+
6623
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6624
+ msgstr ""
6625
+
6626
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6627
+ msgstr ""
6628
+
6339
6629
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6340
6630
  msgstr ""
6341
6631
 
@@ -6422,9 +6712,6 @@ msgstr ""
6422
6712
  msgid "Subscription"
6423
6713
  msgstr "organizace"
6424
6714
 
6425
- msgid "Subscription Allocation"
6426
- msgstr ""
6427
-
6428
6715
  msgid "Subscription Details"
6429
6716
  msgstr ""
6430
6717
 
@@ -6484,6 +6771,9 @@ msgstr ""
6484
6771
  msgid "Subscription not found"
6485
6772
  msgstr ""
6486
6773
 
6774
+ msgid "Subscription status"
6775
+ msgstr ""
6776
+
6487
6777
  msgid "Subscription was not persisted - %{error_message}"
6488
6778
  msgstr ""
6489
6779
 
@@ -6530,6 +6820,9 @@ msgstr ""
6530
6820
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6531
6821
  msgstr "úspěšně vytvořen."
6532
6822
 
6823
+ msgid "Successfully synced capsule."
6824
+ msgstr ""
6825
+
6533
6826
  msgid "Successfully synchronized."
6534
6827
  msgstr ""
6535
6828
 
@@ -6617,6 +6910,9 @@ msgstr ""
6617
6910
  msgid "Sync plan identifier to attach"
6618
6911
  msgstr ""
6619
6912
 
6913
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6914
+ msgstr ""
6915
+
6620
6916
  msgid "Sync state"
6621
6917
  msgstr ""
6622
6918
 
@@ -6710,9 +7006,6 @@ msgstr ""
6710
7006
  msgid "The Alternate Content Source type"
6711
7007
  msgstr ""
6712
7008
 
6713
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6714
- msgstr ""
6715
-
6716
7009
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6717
7010
  msgstr ""
6718
7011
 
@@ -6764,9 +7057,6 @@ msgstr ""
6764
7057
  msgid "The field to sort the data by. Defaults to the created date."
6765
7058
  msgstr ""
6766
7059
 
6767
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6768
- msgstr ""
6769
-
6770
7060
  msgid "The following hosts have errata that apply to them: "
6771
7061
  msgstr ""
6772
7062
 
@@ -6793,6 +7083,9 @@ msgstr ""
6793
7083
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6794
7084
  msgstr ""
6795
7085
 
7086
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
7087
+ msgstr ""
7088
+
6796
7089
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6797
7090
  msgstr ""
6798
7091
 
@@ -6837,6 +7130,9 @@ msgstr ""
6837
7130
  msgid "The port used by Pulp Crane to provide Docker Registries"
6838
7131
  msgstr ""
6839
7132
 
7133
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
7134
+ msgstr ""
7135
+
6840
7136
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6841
7137
  msgstr ""
6842
7138
 
@@ -6883,13 +7179,19 @@ msgstr ""
6883
7179
  msgid "The token key to use for authentication."
6884
7180
  msgstr ""
6885
7181
 
7182
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
7183
+ msgstr ""
7184
+
7185
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
7186
+ msgstr ""
7187
+
6886
7188
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6887
7189
  msgstr ""
6888
7190
 
6889
7191
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6890
7192
  msgstr ""
6891
7193
 
6892
- msgid "There are no Subscription Allocations to display"
7194
+ msgid "There are no Manifests to display"
6893
7195
  msgstr ""
6894
7196
 
6895
7197
  msgid "There are no Subscriptions to display"
@@ -6961,6 +7263,9 @@ msgstr ""
6961
7263
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6962
7264
  msgstr ""
6963
7265
 
7266
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7267
+ msgstr ""
7268
+
6964
7269
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6965
7270
  msgstr ""
6966
7271
 
@@ -7000,7 +7305,7 @@ msgstr ""
7000
7305
  msgid "This is disabled because a manifest task is in progress"
7001
7306
  msgstr ""
7002
7307
 
7003
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7308
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7004
7309
  msgstr ""
7005
7310
 
7006
7311
  msgid "This is disabled because no manifest exists"
@@ -7069,6 +7374,9 @@ msgstr ""
7069
7374
  msgid "Title"
7070
7375
  msgstr ""
7071
7376
 
7377
+ msgid "To get started, add this host to a host collection."
7378
+ msgstr ""
7379
+
7072
7380
  msgid "Toggling Simple Content Access will refresh your manifest."
7073
7381
  msgstr ""
7074
7382
 
@@ -7111,6 +7419,9 @@ msgstr ""
7111
7419
  msgid "Traces will be shown here to a user with the appropriate permissions."
7112
7420
  msgstr ""
7113
7421
 
7422
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7423
+ msgstr ""
7424
+
7114
7425
  msgid "Trigger an auto-attach of subscriptions"
7115
7426
  msgstr ""
7116
7427
 
@@ -7141,12 +7452,18 @@ msgstr ""
7141
7452
  msgid "Type of content: \"cert\", \"gpg_key\""
7142
7453
  msgstr ""
7143
7454
 
7455
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7456
+ msgstr ""
7457
+
7144
7458
  msgid "URL"
7145
7459
  msgstr ""
7146
7460
 
7147
7461
  msgid "URL and paths"
7148
7462
  msgstr ""
7149
7463
 
7464
+ msgid "URL and subpaths"
7465
+ msgstr ""
7466
+
7150
7467
  msgid "URL needs to have a trailing /"
7151
7468
  msgstr ""
7152
7469
 
@@ -7353,7 +7670,7 @@ msgstr ""
7353
7670
  msgid "Update an activation key"
7354
7671
  msgstr "Číst aktivační klíče"
7355
7672
 
7356
- msgid "Update an alternate content source"
7673
+ msgid "Update an alternate content source."
7357
7674
  msgstr ""
7358
7675
 
7359
7676
  #, fuzzy
@@ -7566,6 +7883,12 @@ msgstr ""
7566
7883
  msgid "Usage type"
7567
7884
  msgstr ""
7568
7885
 
7886
+ msgid "Use HTTP Proxies"
7887
+ msgstr ""
7888
+
7889
+ msgid "Use HTTP proxies"
7890
+ msgstr ""
7891
+
7569
7892
  msgid "Use remote execution by default"
7570
7893
  msgstr ""
7571
7894
 
@@ -7641,6 +7964,12 @@ msgstr ""
7641
7964
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7642
7965
  msgstr ""
7643
7966
 
7967
+ msgid "Version ${versionOne}"
7968
+ msgstr ""
7969
+
7970
+ msgid "Version ${versionTwo}"
7971
+ msgstr ""
7972
+
7644
7973
  msgid "Version details updated."
7645
7974
  msgstr ""
7646
7975
 
@@ -7653,6 +7982,9 @@ msgstr ""
7653
7982
  msgid "Versions "
7654
7983
  msgstr ""
7655
7984
 
7985
+ msgid "Versions to compare"
7986
+ msgstr ""
7987
+
7656
7988
  msgid "Versions to exclusively include in the action"
7657
7989
  msgstr ""
7658
7990
 
@@ -7668,6 +8000,9 @@ msgstr ""
7668
8000
  msgid "View a report of the affected hosts"
7669
8001
  msgstr ""
7670
8002
 
8003
+ msgid "View by"
8004
+ msgstr ""
8005
+
7671
8006
  msgid "View matching content"
7672
8007
  msgstr ""
7673
8008
 
@@ -7732,6 +8067,9 @@ msgstr ""
7732
8067
  msgid "Whether to include available content attribute in results"
7733
8068
  msgstr ""
7734
8069
 
8070
+ msgid "Whether to turn on Simple Content Access for the organization."
8071
+ msgstr ""
8072
+
7735
8073
  msgid "Workers"
7736
8074
  msgstr ""
7737
8075
 
@@ -7828,6 +8166,9 @@ msgstr ""
7828
8166
  msgid "Your search returned no matching "
7829
8167
  msgstr ""
7830
8168
 
8169
+ msgid "Your search returned no matching ${name}."
8170
+ msgstr ""
8171
+
7831
8172
  msgid "Your search returned no matching DEBs."
7832
8173
  msgstr ""
7833
8174
 
@@ -7852,6 +8193,9 @@ msgstr ""
7852
8193
  msgid "a content unit"
7853
8194
  msgstr ""
7854
8195
 
8196
+ msgid "a custom CDN URL"
8197
+ msgstr ""
8198
+
7855
8199
  msgid "a deb package"
7856
8200
  msgstr ""
7857
8201
 
@@ -8036,9 +8380,6 @@ msgstr ""
8036
8380
  msgid "content release version"
8037
8381
  msgstr "Vyhledat obsah"
8038
8382
 
8039
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
8040
- msgstr ""
8041
-
8042
8383
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
8043
8384
  msgstr ""
8044
8385
 
@@ -8326,9 +8667,6 @@ msgstr ""
8326
8667
  msgid "label of the repository"
8327
8668
  msgstr ""
8328
8669
 
8329
- msgid "limit to only repositories of this type"
8330
- msgstr ""
8331
-
8332
8670
  msgid "limit to only repositories with this download policy"
8333
8671
  msgstr ""
8334
8672
 
@@ -8456,9 +8794,6 @@ msgstr ""
8456
8794
  msgid "of environment must be unique within one organization"
8457
8795
  msgstr "Název musí být unikátní vrámci jedné organizace."
8458
8796
 
8459
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8460
- msgstr ""
8461
-
8462
8797
  msgid "only show the repositories readable by this user with this username"
8463
8798
  msgstr ""
8464
8799
 
@@ -8653,9 +8988,6 @@ msgstr ""
8653
8988
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8654
8989
  msgstr ""
8655
8990
 
8656
- msgid "type of repo"
8657
- msgstr ""
8658
-
8659
8991
  msgid "types of filters"
8660
8992
  msgstr ""
8661
8993