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/it/katello.po CHANGED
@@ -49,6 +49,12 @@ msgstr ""
49
49
  msgid " RPMs"
50
50
  msgstr ""
51
51
 
52
+ msgid " The base path can be a web address or a filesystem location."
53
+ msgstr ""
54
+
55
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
56
+ msgstr ""
57
+
52
58
  msgid " View task details "
53
59
  msgstr ""
54
60
 
@@ -79,12 +85,18 @@ msgstr ""
79
85
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
80
86
  msgstr ""
81
87
 
88
+ msgid " or any step on the left."
89
+ msgstr ""
90
+
82
91
  msgid " to manage and promote content views, or select a different environment."
83
92
  msgstr ""
84
93
 
85
94
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
86
95
  msgstr ""
87
96
 
97
+ msgid "${option}"
98
+ msgstr ""
99
+
88
100
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
89
101
  msgstr ""
90
102
 
@@ -327,6 +339,24 @@ msgstr ""
327
339
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
328
340
  msgstr ""
329
341
 
342
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
343
+ msgstr ""
344
+
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
352
+ msgstr ""
353
+
354
+ 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. "
355
+ msgstr ""
356
+
357
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
358
+ msgstr ""
359
+
330
360
  msgid "(Orphaned)"
331
361
  msgstr "(Orfano)"
332
362
 
@@ -546,10 +576,10 @@ msgstr ""
546
576
  msgid "Add subscriptions to one or more hosts"
547
577
  msgstr ""
548
578
 
549
- msgid "Add to this filter using the 'Add Deb rule' button."
579
+ msgid "Add to a host collection"
550
580
  msgstr ""
551
581
 
552
- msgid "Add to this filter using the 'Add RPM rule' button."
582
+ msgid "Add to this filter using the 'Add Deb rule' button."
553
583
  msgstr ""
554
584
 
555
585
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -609,6 +639,9 @@ msgstr ""
609
639
  msgid "All subpaths must have a slash at the end and none at the front"
610
640
  msgstr ""
611
641
 
642
+ msgid "All up to date"
643
+ msgstr ""
644
+
612
645
  msgid "All versions"
613
646
  msgstr ""
614
647
 
@@ -636,6 +669,9 @@ msgstr ""
636
669
  msgid "Alter a host's host collections"
637
670
  msgstr ""
638
671
 
672
+ msgid "Alternate Content Source HTTP Proxy"
673
+ msgstr ""
674
+
639
675
  msgid "Alternate Content Sources"
640
676
  msgstr ""
641
677
 
@@ -648,7 +684,10 @@ msgstr ""
648
684
  msgid "Alternate content source deleted"
649
685
  msgstr ""
650
686
 
651
- msgid "Alternate content sources"
687
+ msgid "Alternate content source edited"
688
+ msgstr ""
689
+
690
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
652
691
  msgstr ""
653
692
 
654
693
  msgid "Always Use Latest (currently %{version})"
@@ -660,7 +699,7 @@ msgstr ""
660
699
  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."
661
700
  msgstr ""
662
701
 
663
- msgid "An alternate content source can be added by using the \"Add source\" button above."
702
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
664
703
  msgstr ""
665
704
 
666
705
  msgid "An environment is missing a prior"
@@ -697,9 +736,15 @@ msgstr ""
697
736
  msgid "Applicability Batch Size"
698
737
  msgstr ""
699
738
 
739
+ msgid "Applicable"
740
+ msgstr ""
741
+
700
742
  msgid "Applicable Content Hosts"
701
743
  msgstr ""
702
744
 
745
+ msgid "Applicable errata apply to at least one package installed on the host."
746
+ msgstr ""
747
+
703
748
  msgid "Application"
704
749
  msgstr "Applicazione"
705
750
 
@@ -876,6 +921,9 @@ msgstr ""
876
921
  msgid "Available Schema Versions"
877
922
  msgstr ""
878
923
 
924
+ msgid "Back"
925
+ msgstr ""
926
+
879
927
  msgid "Backend System Status"
880
928
  msgstr "Stato sistema di backend"
881
929
 
@@ -942,6 +990,12 @@ msgstr "Bugfix"
942
990
  msgid "Bugs"
943
991
  msgstr ""
944
992
 
993
+ msgid "Bulk alternate content source delete has started."
994
+ msgstr ""
995
+
996
+ msgid "Bulk alternate content source refresh has started."
997
+ msgstr ""
998
+
945
999
  msgid "Bulk generate applicability for host %s"
946
1000
  msgstr ""
947
1001
 
@@ -951,9 +1005,6 @@ msgstr ""
951
1005
  msgid "Bulk remove versions from a content view and reassign systems and keys"
952
1006
  msgstr ""
953
1007
 
954
- msgid "CA Cert"
955
- msgstr ""
956
-
957
1008
  msgid "CDN Configuration"
958
1009
  msgstr ""
959
1010
 
@@ -1059,6 +1110,9 @@ msgstr "Impossibile aggiungere le versioni composite ad un'altra visualizzazione
1059
1110
  msgid "Cannot add default content view to composite content view"
1060
1111
  msgstr "Impossibile aggiungere la visualizzazione del contenuto predefinita ad una visualizzazione composita"
1061
1112
 
1113
+ msgid "Cannot add generated content view versions to composite content view"
1114
+ msgstr ""
1115
+
1062
1116
  msgid "Cannot add repositories to a composite content view"
1063
1117
  msgstr "Impossibile aggiungere i repositori ad una visualizzazione del contenuto composita"
1064
1118
 
@@ -1200,6 +1254,9 @@ msgstr ""
1200
1254
  msgid "Checksum"
1201
1255
  msgstr "Checksum"
1202
1256
 
1257
+ msgid "Checksum is a required parameter."
1258
+ msgstr ""
1259
+
1203
1260
  msgid "Checksum of file to upload"
1204
1261
  msgstr ""
1205
1262
 
@@ -1209,6 +1266,9 @@ msgstr ""
1209
1266
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1210
1267
  msgstr ""
1211
1268
 
1269
+ msgid "Choose content credentials if required for this RHUI source."
1270
+ msgstr ""
1271
+
1212
1272
  msgid "Clear any previous registration and run subscription-manager with --force."
1213
1273
  msgstr ""
1214
1274
 
@@ -1224,9 +1284,6 @@ msgstr ""
1224
1284
  msgid "Click {update} below to save changes."
1225
1285
  msgstr ""
1226
1286
 
1227
- msgid "Client key"
1228
- msgstr ""
1229
-
1230
1287
  msgid "Clone"
1231
1288
  msgstr "Clona"
1232
1289
 
@@ -1242,6 +1299,9 @@ msgstr ""
1242
1299
  msgid "Combined Profile Update for %s"
1243
1300
  msgstr ""
1244
1301
 
1302
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1303
+ msgstr ""
1304
+
1245
1305
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1246
1306
  msgstr ""
1247
1307
 
@@ -1251,12 +1311,18 @@ msgstr ""
1251
1311
  msgid "Comma-separated list of tags to sync for a container image repository"
1252
1312
  msgstr ""
1253
1313
 
1314
+ msgid "Compare"
1315
+ msgstr ""
1316
+
1254
1317
  msgid "Component"
1255
1318
  msgstr "Componente"
1256
1319
 
1257
1320
  msgid "Component Content View"
1258
1321
  msgstr ""
1259
1322
 
1323
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1324
+ msgstr ""
1325
+
1260
1326
  msgid "Components"
1261
1327
  msgstr "Componenti"
1262
1328
 
@@ -1407,6 +1473,9 @@ msgstr ""
1407
1473
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1408
1474
  msgstr ""
1409
1475
 
1476
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1477
+ msgstr ""
1478
+
1410
1479
  msgid "Content View and Environment not set for registration."
1411
1480
  msgstr ""
1412
1481
 
@@ -1419,6 +1488,9 @@ msgstr ""
1419
1488
  msgid "Content Views"
1420
1489
  msgstr "Visualizzazioni contenuto"
1421
1490
 
1491
+ msgid "Content cannot be imported into a Composite Content View. "
1492
+ msgstr ""
1493
+
1422
1494
  msgid "Content credential"
1423
1495
  msgstr ""
1424
1496
 
@@ -1443,6 +1515,9 @@ msgstr ""
1443
1515
  msgid "Content override search parameters"
1444
1516
  msgstr ""
1445
1517
 
1518
+ msgid "Content source"
1519
+ msgstr ""
1520
+
1446
1521
  msgid "Content source ID"
1447
1522
  msgstr ""
1448
1523
 
@@ -1509,6 +1584,9 @@ msgstr ""
1509
1584
  msgid "Content views"
1510
1585
  msgstr ""
1511
1586
 
1587
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1588
+ msgstr ""
1589
+
1512
1590
  msgid "Content_Host_Status"
1513
1591
  msgstr ""
1514
1592
 
@@ -1650,6 +1728,9 @@ msgstr "Impossibile trovare l'ambiente precendete '%s'"
1650
1728
  msgid "Couldn't find product with id '%s'"
1651
1729
  msgstr "Impossibile trovare il prodotto con id '%s'"
1652
1730
 
1731
+ msgid "Couldn't find products with id '%s'"
1732
+ msgstr ""
1733
+
1653
1734
  msgid "Couldn't find repository '%s'"
1654
1735
  msgstr "Impossibile trovare il repositorio '%s'"
1655
1736
 
@@ -1719,12 +1800,12 @@ msgstr "Crea un prodotto"
1719
1800
  msgid "Create a sync plan"
1720
1801
  msgstr "Crea programmazione per la sincronizzazione"
1721
1802
 
1722
- msgid "Create an ACS"
1723
- msgstr ""
1724
-
1725
1803
  msgid "Create an activation key"
1726
1804
  msgstr "Crea una chiave di attivazione"
1727
1805
 
1806
+ 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."
1807
+ msgstr ""
1808
+
1728
1809
  msgid "Create an environment"
1729
1810
  msgstr "Crea un ambiente"
1730
1811
 
@@ -1734,6 +1815,9 @@ msgstr "Crea un ambiente in una organizzazione"
1734
1815
  msgid "Create an upload request"
1735
1816
  msgstr "Crea una richiesta di ricarica"
1736
1817
 
1818
+ msgid "Create content credentials with the generated SSL certificate and key."
1819
+ msgstr ""
1820
+
1737
1821
  msgid "Create content view"
1738
1822
  msgstr ""
1739
1823
 
@@ -1773,6 +1857,9 @@ msgstr ""
1773
1857
  msgid "Custom"
1774
1858
  msgstr ""
1775
1859
 
1860
+ msgid "Custom CDN"
1861
+ msgstr ""
1862
+
1776
1863
  msgid "Custom Content Repositories"
1777
1864
  msgstr "Repositori del contenuto personalizzati"
1778
1865
 
@@ -1788,6 +1875,9 @@ msgstr ""
1788
1875
  msgid "DEB name"
1789
1876
  msgstr ""
1790
1877
 
1878
+ msgid "DEB package updates"
1879
+ msgstr ""
1880
+
1791
1881
  msgid "Database connection"
1792
1882
  msgstr ""
1793
1883
 
@@ -1923,6 +2013,12 @@ msgstr ""
1923
2013
  msgid "Default user data for new Operating Systems created from synced content"
1924
2014
  msgstr ""
1925
2015
 
2016
+ msgid "Define RHUI repository paths with guided steps."
2017
+ msgstr ""
2018
+
2019
+ msgid "Define repositories structured under a common web or filesystem path."
2020
+ msgstr ""
2021
+
1926
2022
  msgid "Delete"
1927
2023
  msgstr "Cancella"
1928
2024
 
@@ -2061,7 +2157,7 @@ msgstr "Elimina programmazione sincronizzazione"
2061
2157
  msgid "Destroy an activation key"
2062
2158
  msgstr "Elimina chiave di attivazione"
2063
2159
 
2064
- msgid "Destroy an alternate content source"
2160
+ msgid "Destroy an alternate content source."
2065
2161
  msgstr ""
2066
2162
 
2067
2163
  msgid "Destroy an environment"
@@ -2124,6 +2220,9 @@ msgstr "Trova"
2124
2220
  msgid "Discover Repositories"
2125
2221
  msgstr "Trova repositori"
2126
2222
 
2223
+ msgid "Distribute archived content view versions"
2224
+ msgstr ""
2225
+
2127
2226
  msgid "Do not include this array of content views"
2128
2227
  msgstr "Non includere questo insieme di visualizzazioni del contenuto"
2129
2228
 
@@ -2157,21 +2256,51 @@ msgstr ""
2157
2256
  msgid "Edit"
2158
2257
  msgstr "Modifica"
2159
2258
 
2259
+ msgid "Edit ACS"
2260
+ msgstr ""
2261
+
2262
+ msgid "Edit ACS credentials"
2263
+ msgstr ""
2264
+
2265
+ msgid "Edit ACS details"
2266
+ msgstr ""
2267
+
2268
+ msgid "Edit ACS products"
2269
+ msgstr ""
2270
+
2271
+ msgid "Edit ACS smart proxies"
2272
+ msgstr ""
2273
+
2160
2274
  msgid "Edit RPM rule"
2161
2275
  msgstr ""
2162
2276
 
2277
+ msgid "Edit URL and subpaths"
2278
+ msgstr ""
2279
+
2163
2280
  msgid "Edit content view assignment"
2164
2281
  msgstr ""
2165
2282
 
2283
+ msgid "Edit credentials"
2284
+ msgstr ""
2285
+
2286
+ msgid "Edit details"
2287
+ msgstr ""
2288
+
2166
2289
  msgid "Edit filter rule"
2167
2290
  msgstr ""
2168
2291
 
2169
2292
  msgid "Edit package filter rule"
2170
2293
  msgstr ""
2171
2294
 
2295
+ msgid "Edit products"
2296
+ msgstr ""
2297
+
2172
2298
  msgid "Edit rule"
2173
2299
  msgstr ""
2174
2300
 
2301
+ msgid "Edit smart proxies"
2302
+ msgstr ""
2303
+
2175
2304
  msgid "Edit system purpose attributes"
2176
2305
  msgstr ""
2177
2306
 
@@ -2196,6 +2325,9 @@ msgstr ""
2196
2325
  msgid "Either set the latest content view or the content view version. Cannot set both"
2197
2326
  msgstr ""
2198
2327
 
2328
+ msgid "Empty content view versions"
2329
+ msgstr ""
2330
+
2199
2331
  msgid "Enable"
2200
2332
  msgstr "Abilita"
2201
2333
 
@@ -2214,6 +2346,9 @@ msgstr ""
2214
2346
  msgid "Enable a repository from the set"
2215
2347
  msgstr "Abilita un repositorio dall'insieme"
2216
2348
 
2349
+ msgid "Enable repository sets"
2350
+ msgstr ""
2351
+
2217
2352
  msgid "Enable simple content access for a manifest"
2218
2353
  msgstr ""
2219
2354
 
@@ -2256,6 +2391,9 @@ msgstr ""
2256
2391
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2257
2392
  msgstr ""
2258
2393
 
2394
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2395
+ msgstr ""
2396
+
2259
2397
  msgid "Entitlements"
2260
2398
  msgstr ""
2261
2399
 
@@ -2512,6 +2650,9 @@ msgstr "Filtra i prodotti per sottoscrizione"
2512
2650
  msgid "Filter products by sync plan id"
2513
2651
  msgstr ""
2514
2652
 
2653
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2654
+ msgstr ""
2655
+
2515
2656
  msgid "Filter rule added"
2516
2657
  msgstr ""
2517
2658
 
@@ -2548,6 +2689,9 @@ msgstr ""
2548
2689
  msgid "Filters will appear here when the filter is created."
2549
2690
  msgstr ""
2550
2691
 
2692
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2693
+ msgstr ""
2694
+
2551
2695
  msgid "Finish"
2552
2696
  msgstr ""
2553
2697
 
@@ -2607,6 +2751,9 @@ msgstr ""
2607
2751
  msgid "GPG Key URL"
2608
2752
  msgstr "URL chiave GPG"
2609
2753
 
2754
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2755
+ msgstr ""
2756
+
2610
2757
  msgid "Generate and Download"
2611
2758
  msgstr "Genera e scarica"
2612
2759
 
@@ -2817,6 +2964,9 @@ msgstr ""
2817
2964
  msgid "Hosts"
2818
2965
  msgstr "Hosts"
2819
2966
 
2967
+ msgid "Hosts to update"
2968
+ msgstr ""
2969
+
2820
2970
  msgid "Hosts with Installable Errata"
2821
2971
  msgstr "Host con errata installabili"
2822
2972
 
@@ -2895,6 +3045,9 @@ msgstr "ID del programma di sincronizzazione"
2895
3045
  msgid "ID: %s doesn't exist "
2896
3046
  msgstr "ID: %s non esiste"
2897
3047
 
3048
+ 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."
3049
+ msgstr ""
3050
+
2898
3051
  msgid "Id of a deb package to find repositories that contain the deb"
2899
3052
  msgstr ""
2900
3053
 
@@ -2910,6 +3063,9 @@ msgstr ""
2910
3063
  msgid "Id of an erratum to find repositories that contain the erratum"
2911
3064
  msgstr ""
2912
3065
 
3066
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3067
+ msgstr ""
3068
+
2913
3069
  msgid "Id of the content host"
2914
3070
  msgstr ""
2915
3071
 
@@ -2982,6 +3138,9 @@ msgstr ""
2982
3138
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2983
3139
  msgstr ""
2984
3140
 
3141
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3142
+ msgstr ""
3143
+
2985
3144
  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."
2986
3145
  msgstr ""
2987
3146
 
@@ -2994,6 +3153,9 @@ msgstr ""
2994
3153
  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."
2995
3154
  msgstr ""
2996
3155
 
3156
+ 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/...'."
3157
+ msgstr ""
3158
+
2997
3159
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2998
3160
  msgstr ""
2999
3161
 
@@ -3027,6 +3189,9 @@ msgstr ""
3027
3189
  msgid "Ignore subscriptions that are unavailable to the specified host"
3028
3190
  msgstr ""
3029
3191
 
3192
+ msgid "Ignored hosts"
3193
+ msgstr ""
3194
+
3030
3195
  msgid "Immediate"
3031
3196
  msgstr ""
3032
3197
 
@@ -3171,9 +3336,6 @@ msgstr ""
3171
3336
  msgid "Index package groups"
3172
3337
  msgstr ""
3173
3338
 
3174
- msgid "Indicate the source type."
3175
- msgstr ""
3176
-
3177
3339
  msgid "Informable Type must be one of the following [ %{list} ]"
3178
3340
  msgstr "Tipo di informazioni deve essere una delle seguenti [ %{list} ]"
3179
3341
 
@@ -3243,12 +3405,15 @@ msgstr ""
3243
3405
  msgid "Installable"
3244
3406
  msgstr "Installabile"
3245
3407
 
3246
- msgid "Installable errata"
3408
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3247
3409
  msgstr ""
3248
3410
 
3249
3411
  msgid "Installable errata from content view"
3250
3412
  msgstr ""
3251
3413
 
3414
+ msgid "Installable updates"
3415
+ msgstr ""
3416
+
3252
3417
  msgid "Installation of errata requested: %{errata}"
3253
3418
  msgstr ""
3254
3419
 
@@ -3309,9 +3474,6 @@ msgstr ""
3309
3474
  msgid "Invalid"
3310
3475
  msgstr "Non valido"
3311
3476
 
3312
- msgid "Invalid SSL CA certificate given for CDN"
3313
- msgstr ""
3314
-
3315
3477
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3316
3478
  msgstr ""
3317
3479
 
@@ -3360,6 +3522,12 @@ msgstr ""
3360
3522
  msgid "Invalid params provided - date_type must be one of %s"
3361
3523
  msgstr ""
3362
3524
 
3525
+ msgid "Invalid params provided - with_content must be one of %s"
3526
+ msgstr ""
3527
+
3528
+ msgid "Invalid path provided. Content can be only imported from file system. "
3529
+ msgstr ""
3530
+
3363
3531
  msgid "Invalid release version: [%s]"
3364
3532
  msgstr ""
3365
3533
 
@@ -3381,6 +3549,9 @@ msgstr "Emesso"
3381
3549
  msgid "Issued from"
3382
3550
  msgstr ""
3383
3551
 
3552
+ msgid "Items will appear here when a filter rule is added."
3553
+ msgstr ""
3554
+
3384
3555
  msgid "Job '${description}' completed"
3385
3556
  msgstr ""
3386
3557
 
@@ -3456,15 +3627,18 @@ msgstr "Etichetta del contenuto"
3456
3627
  msgid "Label of the content view"
3457
3628
  msgstr ""
3458
3629
 
3459
- msgid "Last Refresh"
3630
+ msgid "Last check-in:"
3460
3631
  msgstr ""
3461
3632
 
3462
- msgid "Last check-in:"
3633
+ msgid "Last checkin"
3463
3634
  msgstr ""
3464
3635
 
3465
3636
  msgid "Last published"
3466
3637
  msgstr ""
3467
3638
 
3639
+ msgid "Last refresh"
3640
+ msgstr ""
3641
+
3468
3642
  msgid "Last refresh :"
3469
3643
  msgstr ""
3470
3644
 
@@ -3483,6 +3657,9 @@ msgstr ""
3483
3657
  msgid "Learn more about adding Subscription Manifests"
3484
3658
  msgstr ""
3485
3659
 
3660
+ msgid "Legacy content host UI"
3661
+ msgstr ""
3662
+
3486
3663
  msgid "Less than"
3487
3664
  msgstr ""
3488
3665
 
@@ -3549,6 +3726,9 @@ msgstr ""
3549
3726
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3550
3727
  msgstr ""
3551
3728
 
3729
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3730
+ msgstr ""
3731
+
3552
3732
  msgid "Limit to environment"
3553
3733
  msgstr ""
3554
3734
 
@@ -3579,6 +3759,9 @@ msgstr "Elenca tutte le :resource_id"
3579
3759
  msgid "List all organizations"
3580
3760
  msgstr "Elenca tutte le organizzazioni"
3581
3761
 
3762
+ msgid "List alternate content sources."
3763
+ msgstr ""
3764
+
3582
3765
  msgid "List an activation key's subscriptions"
3583
3766
  msgstr "Elenca le sottoscrizioni di una chiave di attivazione"
3584
3767
 
@@ -3651,9 +3834,6 @@ msgstr ""
3651
3834
  msgid "List of alternate content source IDs"
3652
3835
  msgstr ""
3653
3836
 
3654
- msgid "List of alternate_content_sources"
3655
- msgstr ""
3656
-
3657
3837
  msgid "List of component content view version ids for composite views"
3658
3838
  msgstr "Elenco id delle versioni per la visualizzazione del contenuto per il componente per le visualizzazioni composite"
3659
3839
 
@@ -3744,6 +3924,9 @@ msgstr ""
3744
3924
  msgid "List of repository ids"
3745
3925
  msgstr "Elenco id dei repositori"
3746
3926
 
3927
+ msgid "List of resources types that will be automatically associated"
3928
+ msgstr ""
3929
+
3747
3930
  msgid "List of subscription products in a subscription"
3748
3931
  msgstr "Elenco prodotti in una sottoscrizione"
3749
3932
 
@@ -3948,6 +4131,9 @@ msgstr ""
3948
4131
  msgid "Multi-entitlement"
3949
4132
  msgstr "Entitlement-multipli"
3950
4133
 
4134
+ msgid "Multiple environments are not supported."
4135
+ msgstr ""
4136
+
3951
4137
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3952
4138
  msgstr ""
3953
4139
 
@@ -3960,11 +4146,19 @@ msgstr "NA"
3960
4146
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3961
4147
  msgstr ""
3962
4148
 
4149
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4150
+ msgstr ""
4151
+
3963
4152
  msgid ""
3964
4153
  "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"
3965
4154
  " %{repos}"
3966
4155
  msgstr ""
3967
4156
 
4157
+ msgid ""
4158
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4159
+ " %{repos}"
4160
+ msgstr ""
4161
+
3968
4162
  msgid ""
3969
4163
  "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"
3970
4164
  " %{repos}"
@@ -3976,6 +4170,12 @@ msgstr ""
3976
4170
  msgid "Name"
3977
4171
  msgstr "Nome"
3978
4172
 
4173
+ msgid "Name and label of default content view should not be changed"
4174
+ msgstr ""
4175
+
4176
+ msgid "Name is a required parameter."
4177
+ msgstr ""
4178
+
3979
4179
  msgid "Name of new activation key"
3980
4180
  msgstr "Nome della nuova chiave di attivazione"
3981
4181
 
@@ -4021,6 +4221,12 @@ msgstr ""
4021
4221
  msgid "Never Synced"
4022
4222
  msgstr "Mai sincronizzato"
4023
4223
 
4224
+ msgid "Never checked in"
4225
+ msgstr ""
4226
+
4227
+ msgid "Never registered"
4228
+ msgstr ""
4229
+
4024
4230
  msgid "New Errata"
4025
4231
  msgstr "Nuovo errata"
4026
4232
 
@@ -4114,6 +4320,9 @@ msgstr "Non è stato fornito alcun contenuto."
4114
4320
  msgid "No content ids provided"
4115
4321
  msgstr ""
4116
4322
 
4323
+ msgid "No content in selected versions."
4324
+ msgstr ""
4325
+
4117
4326
  msgid "No content view history events found."
4118
4327
  msgstr "Non è stato trovato alcun evento per la cronologia della visualizzazione del contenuto."
4119
4328
 
@@ -4165,6 +4374,9 @@ msgstr ""
4165
4374
  msgid "No host collections found."
4166
4375
  msgstr "Nessun insieme di host trovato."
4167
4376
 
4377
+ msgid "No host collections yet"
4378
+ msgstr ""
4379
+
4168
4380
  msgid "No hosts have been specified."
4169
4381
  msgstr ""
4170
4382
 
@@ -4189,6 +4401,9 @@ msgstr ""
4189
4401
  msgid "No matching "
4190
4402
  msgstr ""
4191
4403
 
4404
+ msgid "No matching ${name} found."
4405
+ msgstr ""
4406
+
4192
4407
  msgid "No matching ${selectedContentType} found"
4193
4408
  msgstr ""
4194
4409
 
@@ -4279,6 +4494,9 @@ msgstr ""
4279
4494
  msgid "No products are enabled."
4280
4495
  msgstr ""
4281
4496
 
4497
+ msgid "No profiles to show"
4498
+ msgstr ""
4499
+
4282
4500
  msgid "No pulp workers running."
4283
4501
  msgstr ""
4284
4502
 
@@ -4414,6 +4632,9 @@ msgstr ""
4414
4632
  msgid "On Demand"
4415
4633
  msgstr ""
4416
4634
 
4635
+ msgid "On the RHUA Instance, check the available repositories."
4636
+ msgstr ""
4637
+
4417
4638
  msgid "On-disk location for exported repositories"
4418
4639
  msgstr ""
4419
4640
 
@@ -4792,6 +5013,9 @@ msgstr "Selezionarne uno dall'elenco di seguito riportato e verrai ridirezionato
4792
5013
  msgid "Please wait while the task starts.."
4793
5014
  msgstr ""
4794
5015
 
5016
+ msgid "Please wait..."
5017
+ msgstr ""
5018
+
4795
5019
  msgid "Policy to set for mirroring content. Must be one of %s."
4796
5020
  msgstr ""
4797
5021
 
@@ -4881,9 +5105,18 @@ msgstr ""
4881
5105
  msgid "Product: '%{product}', Repository: '%{repository}'"
4882
5106
  msgstr ""
4883
5107
 
5108
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5109
+ msgstr ""
5110
+
4884
5111
  msgid "Products"
4885
5112
  msgstr "Prodotti"
4886
5113
 
5114
+ msgid "Products updated."
5115
+ msgstr ""
5116
+
5117
+ msgid "Profiles"
5118
+ msgstr ""
5119
+
4887
5120
  msgid "Promote"
4888
5121
  msgstr "Avanzamento"
4889
5122
 
@@ -5061,6 +5294,9 @@ msgstr "RAM: %s GB"
5061
5294
  msgid "RH Repos"
5062
5295
  msgstr ""
5063
5296
 
5297
+ msgid "RHUI"
5298
+ msgstr ""
5299
+
5064
5300
  msgid "RPM"
5065
5301
  msgstr ""
5066
5302
 
@@ -5073,6 +5309,12 @@ msgstr ""
5073
5309
  msgid "RPM name"
5074
5310
  msgstr ""
5075
5311
 
5312
+ msgid "RPM package groups"
5313
+ msgstr ""
5314
+
5315
+ msgid "RPM package updates"
5316
+ msgstr ""
5317
+
5076
5318
  msgid "RPM packages"
5077
5319
  msgstr ""
5078
5320
 
@@ -5139,6 +5381,9 @@ msgstr ""
5139
5381
  msgid "Red Hat content will be consumed from the {type}."
5140
5382
  msgstr ""
5141
5383
 
5384
+ msgid "Red Hat content will be consumed from {type}."
5385
+ msgstr ""
5386
+
5142
5387
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5143
5388
  msgstr ""
5144
5389
 
@@ -5166,7 +5411,7 @@ msgstr "Aggiorna il manifesto"
5166
5411
  msgid "Refresh alternate content sources"
5167
5412
  msgstr ""
5168
5413
 
5169
- msgid "Refresh an alternate content source"
5414
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5170
5415
  msgstr ""
5171
5416
 
5172
5417
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5184,6 +5429,9 @@ msgstr ""
5184
5429
  msgid "Register host '%s' before attaching subscriptions"
5185
5430
  msgstr ""
5186
5431
 
5432
+ msgid "Registered"
5433
+ msgstr ""
5434
+
5187
5435
  msgid "Registered by"
5188
5436
  msgstr ""
5189
5437
 
@@ -5310,7 +5558,7 @@ msgstr ""
5310
5558
  msgid "Remove one or more host collections from one or more hosts"
5311
5559
  msgstr ""
5312
5560
 
5313
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5561
+ msgid "Remove one or more subscriptions from an upstream manifest"
5314
5562
  msgstr ""
5315
5563
 
5316
5564
  msgid "Remove package"
@@ -5361,6 +5609,9 @@ msgstr "Rimozione gruppo di pacchetti in corso..."
5361
5609
  msgid "Removing Package..."
5362
5610
  msgstr "Rimozione pacchetto in corso..."
5363
5611
 
5612
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5613
+ msgstr ""
5614
+
5364
5615
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5365
5616
  msgstr ""
5366
5617
 
@@ -5601,9 +5852,6 @@ msgstr ""
5601
5852
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5602
5853
  msgstr ""
5603
5854
 
5604
- msgid "Review Details"
5605
- msgstr ""
5606
-
5607
5855
  msgid "Review affected environment"
5608
5856
  msgstr ""
5609
5857
 
@@ -5613,6 +5861,9 @@ msgstr ""
5613
5861
  msgid "Review details"
5614
5862
  msgstr ""
5615
5863
 
5864
+ msgid "Review the information below and click "
5865
+ msgstr ""
5866
+
5616
5867
  msgid "Review your currently selected changes for "
5617
5868
  msgstr ""
5618
5869
 
@@ -5652,9 +5903,6 @@ msgstr ""
5652
5903
  msgid "SSL CA certificate"
5653
5904
  msgstr ""
5654
5905
 
5655
- msgid "SSL Cert"
5656
- msgstr ""
5657
-
5658
5906
  msgid "SSL client certificate"
5659
5907
  msgstr ""
5660
5908
 
@@ -5784,6 +6032,9 @@ msgstr ""
5784
6032
  msgid "Select an environment above"
5785
6033
  msgstr ""
5786
6034
 
6035
+ msgid "Select an option"
6036
+ msgstr ""
6037
+
5787
6038
  msgid "Select an organization"
5788
6039
  msgstr ""
5789
6040
 
@@ -5823,6 +6074,12 @@ msgstr ""
5823
6074
  msgid "Select page"
5824
6075
  msgstr ""
5825
6076
 
6077
+ msgid "Select products"
6078
+ msgstr ""
6079
+
6080
+ msgid "Select products to associate to this source."
6081
+ msgstr ""
6082
+
5826
6083
  msgid "Select row"
5827
6084
  msgstr ""
5828
6085
 
@@ -5940,7 +6197,7 @@ msgstr ""
5940
6197
  msgid "Show an activation key"
5941
6198
  msgstr "Mostra una chiave di attivazione"
5942
6199
 
5943
- msgid "Show an alternate content source"
6200
+ msgid "Show an alternate content source."
5944
6201
  msgstr ""
5945
6202
 
5946
6203
  msgid "Show an environment"
@@ -5991,6 +6248,9 @@ msgstr ""
5991
6248
  msgid "Simple Content Access has been enabled for '%{subject}'."
5992
6249
  msgstr ""
5993
6250
 
6251
+ msgid "Simplified"
6252
+ msgstr ""
6253
+
5994
6254
  msgid "Single content view consisting of e.g. repositories"
5995
6255
  msgstr ""
5996
6256
 
@@ -6027,7 +6287,7 @@ msgstr ""
6027
6287
  msgid "Solve dependencies"
6028
6288
  msgstr ""
6029
6289
 
6030
- msgid "Some hosts are ignored!"
6290
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6031
6291
  msgstr ""
6032
6292
 
6033
6293
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6051,13 +6311,13 @@ msgstr ""
6051
6311
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6052
6312
  msgstr ""
6053
6313
 
6054
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6314
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6055
6315
  msgstr ""
6056
6316
 
6057
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6317
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6058
6318
  msgstr ""
6059
6319
 
6060
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6320
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6061
6321
  msgstr ""
6062
6322
 
6063
6323
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6105,10 +6365,13 @@ msgstr ""
6105
6365
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6106
6366
  msgstr ""
6107
6367
 
6368
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6369
+ msgstr ""
6370
+
6108
6371
  msgid "Something went wrong while loading the content views. See the logs for more information"
6109
6372
  msgstr ""
6110
6373
 
6111
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6374
+ msgid "Something went wrong while refreshing alternate content sources: "
6112
6375
  msgstr ""
6113
6376
 
6114
6377
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6123,6 +6386,9 @@ msgstr ""
6123
6386
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6124
6387
  msgstr ""
6125
6388
 
6389
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6390
+ msgstr ""
6391
+
6126
6392
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6127
6393
  msgstr ""
6128
6394
 
@@ -6141,9 +6407,33 @@ msgstr ""
6141
6407
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6142
6408
  msgstr ""
6143
6409
 
6410
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6411
+ msgstr ""
6412
+
6413
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6414
+ msgstr ""
6415
+
6416
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6417
+ msgstr ""
6418
+
6419
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6420
+ msgstr ""
6421
+
6144
6422
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6145
6423
  msgstr ""
6146
6424
 
6425
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6426
+ msgstr ""
6427
+
6428
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6429
+ msgstr ""
6430
+
6431
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6432
+ msgstr ""
6433
+
6434
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6435
+ msgstr ""
6436
+
6147
6437
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6148
6438
  msgstr ""
6149
6439
 
@@ -6228,9 +6518,6 @@ msgstr ""
6228
6518
  msgid "Subscription"
6229
6519
  msgstr "Sottoscrizione"
6230
6520
 
6231
- msgid "Subscription Allocation"
6232
- msgstr ""
6233
-
6234
6521
  msgid "Subscription Details"
6235
6522
  msgstr "Informazioni sulla sottoscrizione"
6236
6523
 
@@ -6288,6 +6575,9 @@ msgstr "File manifesto della sottoscrizione"
6288
6575
  msgid "Subscription not found"
6289
6576
  msgstr ""
6290
6577
 
6578
+ msgid "Subscription status"
6579
+ msgstr ""
6580
+
6291
6581
  msgid "Subscription was not persisted - %{error_message}"
6292
6582
  msgstr ""
6293
6583
 
@@ -6333,6 +6623,9 @@ msgstr ""
6333
6623
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6334
6624
  msgstr "Rimossi con successo %{count} host di contenuto dall'insieme %{host_collection}."
6335
6625
 
6626
+ msgid "Successfully synced capsule."
6627
+ msgstr ""
6628
+
6336
6629
  msgid "Successfully synchronized."
6337
6630
  msgstr ""
6338
6631
 
@@ -6414,6 +6707,9 @@ msgstr "Sincronizza uno o più prodotti"
6414
6707
  msgid "Sync plan identifier to attach"
6415
6708
  msgstr "identificatore programmazione della sincronizzazione da assegnare"
6416
6709
 
6710
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6711
+ msgstr ""
6712
+
6417
6713
  msgid "Sync state"
6418
6714
  msgstr ""
6419
6715
 
@@ -6504,9 +6800,6 @@ msgstr "L'ambiente '%s' non può contenere un changeset!"
6504
6800
  msgid "The Alternate Content Source type"
6505
6801
  msgstr ""
6506
6802
 
6507
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6508
- msgstr ""
6509
-
6510
6803
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6511
6804
  msgstr ""
6512
6805
 
@@ -6558,9 +6851,6 @@ msgstr ""
6558
6851
  msgid "The field to sort the data by. Defaults to the created date."
6559
6852
  msgstr ""
6560
6853
 
6561
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6562
- msgstr ""
6563
-
6564
6854
  msgid "The following hosts have errata that apply to them: "
6565
6855
  msgstr "I seguenti host dispongono di errata da applicare:"
6566
6856
 
@@ -6587,6 +6877,9 @@ msgstr ""
6587
6877
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6588
6878
  msgstr ""
6589
6879
 
6880
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6881
+ msgstr ""
6882
+
6590
6883
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6591
6884
  msgstr ""
6592
6885
 
@@ -6631,6 +6924,9 @@ msgstr ""
6631
6924
  msgid "The port used by Pulp Crane to provide Docker Registries"
6632
6925
  msgstr ""
6633
6926
 
6927
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6928
+ msgstr ""
6929
+
6634
6930
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6635
6931
  msgstr "L'avanzamento di %{content_view} in %{environment} è terminato. Sono disponibili %{count} errata per gli host."
6636
6932
 
@@ -6676,13 +6972,19 @@ msgstr "Il processo di sincronizzazione di \"%s\" è terminato. Di seguito vien
6676
6972
  msgid "The token key to use for authentication."
6677
6973
  msgstr ""
6678
6974
 
6975
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6976
+ msgstr ""
6977
+
6978
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6979
+ msgstr ""
6980
+
6679
6981
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6680
6982
  msgstr "Il tipo di contenuto. Sono supportati i seguenti tipi: 'package' e 'package_group."
6681
6983
 
6682
6984
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6683
6985
  msgstr "Il tipo di contenuto. Sono supportati i seguenti tipi: 'package' e 'package_group' e 'errata'."
6684
6986
 
6685
- msgid "There are no Subscription Allocations to display"
6987
+ msgid "There are no Manifests to display"
6686
6988
  msgstr ""
6687
6989
 
6688
6990
  msgid "There are no Subscriptions to display"
@@ -6754,6 +7056,9 @@ msgstr ""
6754
7056
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6755
7057
  msgstr ""
6756
7058
 
7059
+ 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."
7060
+ msgstr ""
7061
+
6757
7062
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6758
7063
  msgstr "Questo certificato permette all'utente di visualizzare i repositori in qualsiasi ambiente del browser."
6759
7064
 
@@ -6793,7 +7098,7 @@ msgstr ""
6793
7098
  msgid "This is disabled because a manifest task is in progress"
6794
7099
  msgstr ""
6795
7100
 
6796
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7101
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6797
7102
  msgstr ""
6798
7103
 
6799
7104
  msgid "This is disabled because no manifest exists"
@@ -6862,6 +7167,9 @@ msgstr ""
6862
7167
  msgid "Title"
6863
7168
  msgstr "Titolo"
6864
7169
 
7170
+ msgid "To get started, add this host to a host collection."
7171
+ msgstr ""
7172
+
6865
7173
  msgid "Toggling Simple Content Access will refresh your manifest."
6866
7174
  msgstr ""
6867
7175
 
@@ -6904,6 +7212,9 @@ msgstr ""
6904
7212
  msgid "Traces will be shown here to a user with the appropriate permissions."
6905
7213
  msgstr ""
6906
7214
 
7215
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7216
+ msgstr ""
7217
+
6907
7218
  msgid "Trigger an auto-attach of subscriptions"
6908
7219
  msgstr ""
6909
7220
 
@@ -6934,12 +7245,18 @@ msgstr ""
6934
7245
  msgid "Type of content: \"cert\", \"gpg_key\""
6935
7246
  msgstr ""
6936
7247
 
7248
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7249
+ msgstr ""
7250
+
6937
7251
  msgid "URL"
6938
7252
  msgstr "URL"
6939
7253
 
6940
7254
  msgid "URL and paths"
6941
7255
  msgstr ""
6942
7256
 
7257
+ msgid "URL and subpaths"
7258
+ msgstr ""
7259
+
6943
7260
  msgid "URL needs to have a trailing /"
6944
7261
  msgstr ""
6945
7262
 
@@ -7141,7 +7458,7 @@ msgstr "Aggiorna programmazione sincronizzazione"
7141
7458
  msgid "Update an activation key"
7142
7459
  msgstr "Aggiorna una chiave di attivazione"
7143
7460
 
7144
- msgid "Update an alternate content source"
7461
+ msgid "Update an alternate content source."
7145
7462
  msgstr ""
7146
7463
 
7147
7464
  msgid "Update an environment"
@@ -7348,6 +7665,12 @@ msgstr ""
7348
7665
  msgid "Usage type"
7349
7666
  msgstr ""
7350
7667
 
7668
+ msgid "Use HTTP Proxies"
7669
+ msgstr ""
7670
+
7671
+ msgid "Use HTTP proxies"
7672
+ msgstr ""
7673
+
7351
7674
  msgid "Use remote execution by default"
7352
7675
  msgstr ""
7353
7676
 
@@ -7423,6 +7746,12 @@ msgstr ""
7423
7746
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7424
7747
  msgstr ""
7425
7748
 
7749
+ msgid "Version ${versionOne}"
7750
+ msgstr ""
7751
+
7752
+ msgid "Version ${versionTwo}"
7753
+ msgstr ""
7754
+
7426
7755
  msgid "Version details updated."
7427
7756
  msgstr ""
7428
7757
 
@@ -7435,6 +7764,9 @@ msgstr "Versioni"
7435
7764
  msgid "Versions "
7436
7765
  msgstr ""
7437
7766
 
7767
+ msgid "Versions to compare"
7768
+ msgstr ""
7769
+
7438
7770
  msgid "Versions to exclusively include in the action"
7439
7771
  msgstr ""
7440
7772
 
@@ -7450,6 +7782,9 @@ msgstr "La visualizzazione %{view} non è stata avanzata su %{env}"
7450
7782
  msgid "View a report of the affected hosts"
7451
7783
  msgstr ""
7452
7784
 
7785
+ msgid "View by"
7786
+ msgstr ""
7787
+
7453
7788
  msgid "View matching content"
7454
7789
  msgstr ""
7455
7790
 
@@ -7513,6 +7848,9 @@ msgstr ""
7513
7848
  msgid "Whether to include available content attribute in results"
7514
7849
  msgstr ""
7515
7850
 
7851
+ msgid "Whether to turn on Simple Content Access for the organization."
7852
+ msgstr ""
7853
+
7516
7854
  msgid "Workers"
7517
7855
  msgstr ""
7518
7856
 
@@ -7609,6 +7947,9 @@ msgstr ""
7609
7947
  msgid "Your search returned no matching "
7610
7948
  msgstr ""
7611
7949
 
7950
+ msgid "Your search returned no matching ${name}."
7951
+ msgstr ""
7952
+
7612
7953
  msgid "Your search returned no matching DEBs."
7613
7954
  msgstr ""
7614
7955
 
@@ -7633,6 +7974,9 @@ msgstr ""
7633
7974
  msgid "a content unit"
7634
7975
  msgstr ""
7635
7976
 
7977
+ msgid "a custom CDN URL"
7978
+ msgstr ""
7979
+
7636
7980
  msgid "a deb package"
7637
7981
  msgstr ""
7638
7982
 
@@ -7804,9 +8148,6 @@ msgstr ""
7804
8148
  msgid "content release version"
7805
8149
  msgstr "Versione release del contenuto"
7806
8150
 
7807
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7808
- msgstr ""
7809
-
7810
8151
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7811
8152
  msgstr ""
7812
8153
 
@@ -8080,9 +8421,6 @@ msgstr "etichetta dell'ambiente"
8080
8421
  msgid "label of the repository"
8081
8422
  msgstr ""
8082
8423
 
8083
- msgid "limit to only repositories of this type"
8084
- msgstr ""
8085
-
8086
8424
  msgid "limit to only repositories with this download policy"
8087
8425
  msgstr ""
8088
8426
 
@@ -8200,9 +8538,6 @@ msgstr "ottieni la cronologia del manifesto per le sottoscrizioni"
8200
8538
  msgid "of environment must be unique within one organization"
8201
8539
  msgstr "ambiente deve essere unico all'interno di una organizzazione"
8202
8540
 
8203
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8204
- msgstr ""
8205
-
8206
8541
  msgid "only show the repositories readable by this user with this username"
8207
8542
  msgstr ""
8208
8543
 
@@ -8386,9 +8721,6 @@ msgstr ""
8386
8721
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8387
8722
  msgstr ""
8388
8723
 
8389
- msgid "type of repo"
8390
- msgstr ""
8391
-
8392
8724
  msgid "types of filters"
8393
8725
  msgstr ""
8394
8726